Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0cc8da8
Update README.md
computerscienceiscool Oct 19, 2023
803d7a6
Update README.md
indraraj Oct 23, 2023
bbbb371
fix: upgrade @patternfly/react-icons from 5.0.0 to 5.1.1
snyk-bot Dec 1, 2023
4de2e2f
Merge pull request #182 from patternfly/snyk-upgrade-2155fb5a61a89860…
nicolethoen Dec 18, 2023
c24bf9c
chore(deps-dev): bump semver from 5.7.1 to 5.7.2
dependabot[bot] Dec 18, 2023
98f1c7d
chore(deps-dev): bump minimatch from 3.0.4 to 3.1.2
dependabot[bot] Dec 18, 2023
93044d4
chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.5
dependabot[bot] Dec 18, 2023
231f291
Merge pull request #185 from patternfly/dependabot/npm_and_yarn/word-…
nicolethoen Dec 18, 2023
b8552e1
chore(deps-dev): bump browserify-sign from 4.2.1 to 4.2.2
dependabot[bot] Dec 18, 2023
be59111
chore(deps-dev): bump ua-parser-js from 0.7.28 to 0.7.37
dependabot[bot] Dec 18, 2023
61bbca6
chore(deps): bump @babel/traverse from 7.18.11 to 7.23.6
dependabot[bot] Dec 18, 2023
19bfb75
chore(deps-dev): bump @adobe/css-tools from 4.2.0 to 4.3.2
dependabot[bot] Dec 18, 2023
41614a2
chore(deps): bump json5 from 1.0.1 to 1.0.2
dependabot[bot] Dec 18, 2023
8812919
chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
dependabot[bot] Dec 18, 2023
d3e7c07
Merge pull request #189 from patternfly/dependabot/npm_and_yarn/adobe…
nicolethoen Dec 18, 2023
2d2a9ad
Merge pull request #188 from patternfly/dependabot/npm_and_yarn/babel…
nicolethoen Dec 18, 2023
53fd350
Merge pull request #187 from patternfly/dependabot/npm_and_yarn/brows…
nicolethoen Dec 18, 2023
e30ddcc
Merge pull request #186 from patternfly/dependabot/npm_and_yarn/ua-pa…
nicolethoen Dec 18, 2023
eab46fc
Merge pull request #167 from patternfly/dependabot/npm_and_yarn/semve…
nicolethoen Dec 18, 2023
a1eca82
Merge pull request #166 from patternfly/dependabot/npm_and_yarn/minim…
nicolethoen Dec 18, 2023
e5d4492
Merge pull request #157 from patternfly/dependabot/npm_and_yarn/json5…
nicolethoen Dec 18, 2023
b6aee18
Merge pull request #156 from patternfly/dependabot/npm_and_yarn/decod…
nicolethoen Dec 18, 2023
5fee4a0
fix: bump dependencies
nicolethoen Dec 18, 2023
258791e
Merge pull request #190 from nicolethoen/bump_pf_5.1.1
nicolethoen Dec 18, 2023
01bdfb7
Merge pull request #170 from computerscienceiscool/patch-1
nicolethoen Dec 18, 2023
fbb0283
Merge pull request #171 from indraraj/patch-1
nicolethoen Dec 18, 2023
645d76d
chore(deps): bump loader-utils from 1.4.0 to 1.4.2
dependabot[bot] Dec 18, 2023
8b994cf
chore(deps): bump terser from 4.8.0 to 4.8.1
dependabot[bot] Dec 18, 2023
2fd0b15
Merge pull request #155 from patternfly/dependabot/npm_and_yarn/loade…
nicolethoen Dec 18, 2023
12b1e1d
Merge pull request #146 from patternfly/dependabot/npm_and_yarn/terse…
nicolethoen Dec 18, 2023
ec9494d
Merge branch 'main' into merge_5.1.1_into_v6
nicolethoen Dec 18, 2023
ff1855c
bump to latest v6 alphas
nicolethoen Dec 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ You can use a similar technique to import assets from your local app, just prefi

```js
import loader from '@app/assets/images/loader.gif';
<img src={loader} alt="Content loading />
<img src={loader} alt="Content loading" />
```

## Vector image support
Expand All @@ -88,7 +88,7 @@ body {
```

## Adding custom CSS
When importing CSS from a third-party package for the first time, you may encounter the error `Module parse failed: Unexpected token... You may need an appropriate loader to handle this file typ...`. You need to register the path to the stylesheet directory in [stylePaths.js](./stylePaths.js). We specify these explicity for performance reasons to avoid webpack needing to crawl through the entire node_modules directory when parsing CSS modules.
When importing CSS from a third-party package for the first time, you may encounter the error `Module parse failed: Unexpected token... You may need an appropriate loader to handle this file typ...`. You need to register the path to the stylesheet directory in [stylePaths.js](./stylePaths.js). We specify these explicitly for performance reasons to avoid webpack needing to crawl through the entire node_modules directory when parsing CSS modules.

## Code quality tools
* For accessibility compliance, we use [react-axe](https://github.com/dequelabs/react-axe)
Expand Down
Loading