@narmi/design_system 2.20.0-beta.5 → 2.21.0
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 +5 -5
- package/dist/icons/selection.json +1268 -1213
- package/dist/index.js +2 -1
- package/dist/index.js.LICENSE.txt +11 -0
- package/dist/index.js.map +1 -1
- package/dist/style.css +41 -29
- package/dist/style.css.map +1 -1
- package/dist/tokens/css/rgbColors.css +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/js/colors.js +1 -1
- package/dist/tokens/js/manifest.js +136 -136
- package/package.json +3 -3
- package/dist/icons/1f7fc1b6890182988627.svg +0 -325
- package/dist/icons/4ee166cd6be71eab5e64.eot +0 -0
- package/dist/icons/8b5b5f93bd390ff18971.woff +0 -0
- package/dist/icons/aa84f20b3f976a001195.ttf +0 -0
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Your project must provide the following packages as peer dependencies:
|
|
|
28
28
|
|
|
29
29
|
- 📖 [Storybook (latest)](https://narmi.github.io/design_system/)
|
|
30
30
|
- 🎨 [Design Guidelines](https://zeroheight.com/8ac87d4ba/p/446c38-narmi-design-system-nds)
|
|
31
|
-
- ✏️ [Contributing](https://github.com/narmi/design_system/blob/
|
|
31
|
+
- ✏️ [Contributing](https://github.com/narmi/design_system/blob/main/CONTRIBUTING.md)
|
|
32
32
|
|
|
33
33
|
## Usage
|
|
34
34
|
|
|
@@ -66,11 +66,11 @@ To request a new distribution, please [file an issue](https://github.com/narmi/d
|
|
|
66
66
|
### Versioning
|
|
67
67
|
|
|
68
68
|
This project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
69
|
-
Refer to the [**Changelog**](https://github.com/narmi/design_system/blob/
|
|
69
|
+
Refer to the [**Changelog**](https://github.com/narmi/design_system/blob/main/CHANGELOG.md) for details.
|
|
70
70
|
|
|
71
71
|
### Browser Support
|
|
72
72
|
|
|
73
|
-
See [`.browserslistrc`](https://github.com/narmi/design_system/blob/
|
|
73
|
+
See [`.browserslistrc`](https://github.com/narmi/design_system/blob/main/.editorconfig) for officially supported browsers or
|
|
74
74
|
run `npx browserslist` in this project locally to see a full list of targeted browsers.
|
|
75
75
|
|
|
76
76
|
This project does not support any version of Internet Explorer.
|
|
@@ -105,12 +105,12 @@ npm run dev
|
|
|
105
105
|
This project uses [`semantic-release`](https://semantic-release.gitbook.io/semantic-release/),
|
|
106
106
|
configured to use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).
|
|
107
107
|
|
|
108
|
-
Any time new commits are added to the `
|
|
108
|
+
Any time new commits are added to the `main` branch, the GitHub Action "release" will run `semantic-release`. The job will
|
|
109
109
|
parse recent git tags and commit messages to determine the new version number, tag the release, publish to NPM, and update the changelog.
|
|
110
110
|
|
|
111
111
|
#### Major releases
|
|
112
112
|
|
|
113
|
-
All PRs target `
|
|
113
|
+
All PRs target `main` unless it contains breaking changes. Any branch continaing breaking change commits should target the open major release branch.
|
|
114
114
|
For example, if NDS is on major version `1`, breaking changes should target the branch `major/v2`.
|
|
115
115
|
|
|
116
116
|
Branches containing breaking change commits should follow the naming convention `breaking/<branch name>`.
|