Skip to content

Commit

Permalink
added sharp styles (#49)
Browse files Browse the repository at this point in the history
* added sharp styles

* added missed readmes

* fix to get test to pass

* addressed feedback

* another prettier fix

* udpated css on tablet view for filters

* update prettier

* more updates

* more updates
  • Loading branch information
kelseythejackson committed Mar 31, 2023
1 parent 05e2963 commit 0b573ef
Show file tree
Hide file tree
Showing 10 changed files with 378 additions and 103 deletions.
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ and it has three top-level keys:
}
},
"props": {
"version": "5.15.3"
"version": "6.4.0"
}
}
```
Expand All @@ -78,7 +78,7 @@ and it has three top-level keys:
```json
{
"props": {
"version": "5.15.3"
"version": "6.4.0"
}
}
```
Expand Down
19 changes: 9 additions & 10 deletions packages/fa-icon-chooser/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/fa-icon-chooser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@
"format.check": "prettier --check ."
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "^6.4.0",
"@stencil/core": "^2.13.0",
"lodash": "^4.17.21",
"semver": "^6.3.0",
"@fortawesome/fontawesome-common-types": "^6.2.0"
"semver": "^6.3.0"
},
"license": "MIT",
"devDependencies": {
"@stencil/react-output-target": "^0.2.1",
"@types/jest": "^27.4.0",
"@types/puppeteer": "^5.4.4",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"@types/puppeteer": "^5.4.4",
"prettier": "^2.3.2",
"puppeteer": "^13.1.2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,15 @@ button.icon fa-icon {
}

/* custom > tablet */
@media (min-width: 48rem) {

@media (min-width: 62.625rem) {
.icons-style-menu-listing {
flex-wrap: nowrap;
}
}

@media (min-width: 89rem) {
.icons-style-menu-listing .icons-style-choice {
display: block;
display: flex;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ describe('fa-icon-chooser', () => {
{ family: 'classic', style: 'thin' },
{ family: 'duotone', style: 'solid' },
{ family: 'sharp', style: 'solid' },
{ family: 'sharp', style: 'regular' },
{ family: 'sharp', style: 'light' },
],
},
},
Expand All @@ -39,6 +41,8 @@ describe('fa-icon-chooser', () => {
{ family: 'classic', style: 'thin' },
{ family: 'duotone', style: 'solid' },
{ family: 'sharp', style: 'solid' },
{ family: 'sharp', style: 'regular' },
{ family: 'sharp', style: 'light' },
],
},
},
Expand All @@ -54,6 +58,8 @@ describe('fa-icon-chooser', () => {
{ family: 'classic', style: 'thin' },
{ family: 'duotone', style: 'solid' },
{ family: 'sharp', style: 'solid' },
{ family: 'sharp', style: 'regular' },
{ family: 'sharp', style: 'light' },
],
},
},
Expand All @@ -69,6 +75,8 @@ describe('fa-icon-chooser', () => {
{ family: 'classic', style: 'thin' },
{ family: 'duotone', style: 'solid' },
{ family: 'sharp', style: 'solid' },
{ family: 'sharp', style: 'regular' },
{ family: 'sharp', style: 'light' },
],
},
},
Expand All @@ -84,6 +92,8 @@ describe('fa-icon-chooser', () => {
{ family: 'classic', style: 'thin' },
{ family: 'duotone', style: 'solid' },
{ family: 'sharp', style: 'solid' },
{ family: 'sharp', style: 'regular' },
{ family: 'sharp', style: 'light' },
],
},
},
Expand All @@ -102,6 +112,8 @@ describe('fa-icon-chooser', () => {
{ family: 'classic', style: 'thin' },
{ family: 'duotone', style: 'solid' },
{ family: 'sharp', style: 'solid' },
{ family: 'sharp', style: 'regular' },
{ family: 'sharp', style: 'light' },
],
},
},
Expand Down
Loading

0 comments on commit 0b573ef

Please sign in to comment.