@justfixnyc/component-library 0.60.1 → 0.61.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/src/assets/index.css +647 -11
- package/dist/src/assets/index.es.css +647 -11
- package/dist/src/index.es.js +417 -29
- package/dist/src/index.js +425 -27
- package/dist/typings/Components/Accordion/Accordion.d.ts +11 -0
- package/dist/typings/Components/ButtonStyledLink/ButtonStyledLink.d.ts +15 -0
- package/dist/typings/Components/CalloutBox/CalloutBox.d.ts +9 -0
- package/dist/typings/Components/Dropdown/Dropdown.d.ts +15 -10
- package/dist/typings/Components/GeoSearchDropdown/GeoSearchDropdown.d.ts +53 -0
- package/dist/typings/Components/Heading/Heading.d.ts +8 -0
- package/dist/typings/Components/InfoBox/InfoBox.d.ts +10 -0
- package/dist/typings/Components/LinkStyledButton/LinkStyledButton.d.ts +12 -0
- package/dist/typings/Components/Notice/Notice.d.ts +14 -0
- package/dist/typings/Components/Pill/Pill.d.ts +9 -0
- package/dist/typings/index.d.ts +9 -0
- package/jfcl.scss +235 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,13 +21,13 @@ This package is live on both GitHub Package Registry (GPR) and NPM registry
|
|
|
21
21
|
|
|
22
22
|
GitHub Actions triggers a publish to GPR from any branch that runs the version bump. Should probably change to allow this version bump to only happen on `main` before we fully integrate this library
|
|
23
23
|
|
|
24
|
-
```
|
|
24
|
+
```shell
|
|
25
25
|
npm run lint
|
|
26
26
|
npm version [major]|[minor]|[patch]
|
|
27
27
|
git push --follow-tags
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
Publishing to NPM registry is more manual because of permission issues that couldn't be resolved in Github Actions. You will need to authenticate your account (w/ permissions to the JustFix organization) via the terminal.
|
|
30
|
+
Publishing to NPM registry is more manual because of permission issues that couldn't be resolved in Github Actions. You will need to authenticate your account (w/ permissions to the JustFix organization) via the terminal.
|
|
31
31
|
|
|
32
32
|
```shell
|
|
33
33
|
npm run build
|