@narmi/design_system 4.46.0 → 4.46.1
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/dist/index.js +102 -3
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -2132
- 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.esm.js +99 -0
- package/dist/tokens/js/colors.js +1 -1
- package/dist/tokens/js/manifest.esm.js +187 -0
- package/dist/tokens/js/manifest.js +148 -2664
- package/dist/tokens/js/reactNativeWeb.js +1 -1
- package/dist/types/Alert/index.d.ts +2 -2
- package/dist/types/AutocompleteModal/AutoComplete.d.ts +1 -1
- package/dist/types/AutocompleteModal/Item.d.ts +1 -1
- package/dist/types/AutocompleteModal/index.d.ts +4 -4
- package/dist/types/Button/index.d.ts +2 -2
- package/dist/types/Checkbox/index.d.ts +1 -1
- package/dist/types/Chip/index.d.ts +2 -2
- package/dist/types/ContentCard/index.d.ts +1 -1
- package/dist/types/ContextMenu/index.d.ts +1 -1
- package/dist/types/Dialog/index.d.ts +1 -1
- package/dist/types/DisabledShim/index.d.ts +2 -2
- package/dist/types/LoadingSkeleton/index.d.ts +1 -1
- package/dist/types/Radio/index.d.ts +1 -1
- package/dist/types/RadioButtons/index.d.ts +2 -2
- package/dist/types/Row/RowItem.d.ts +1 -1
- package/dist/types/Row/index.d.ts +2 -2
- package/dist/types/SeparatorList/index.d.ts +1 -1
- package/dist/types/Snackbar/index.d.ts +1 -1
- package/dist/types/SplitButton/SplitButtonMenu.d.ts +1 -1
- package/dist/types/SplitButton/SplitButtonPopover.d.ts +1 -1
- package/dist/types/SplitButton/index.d.ts +4 -4
- package/dist/types/Table/Body.d.ts +1 -1
- package/dist/types/Table/Cell.d.ts +1 -1
- package/dist/types/Table/Header.d.ts +1 -1
- package/dist/types/Table/HeaderCell.d.ts +1 -1
- package/dist/types/Table/Row.d.ts +1 -1
- package/dist/types/Table/index.d.ts +4 -4
- package/dist/types/Table/util/breakpoint.d.ts +1 -1
- package/dist/types/Table/util/colVisibilityContext.d.ts +2 -2
- package/dist/types/Table/util/grid.d.ts +1 -1
- package/dist/types/TableAutocomplete/Item.d.ts +1 -1
- package/dist/types/TableAutocomplete/index.d.ts +3 -3
- package/dist/types/TableInput/index.d.ts +1 -1
- package/dist/types/Tabs/TabsList.d.ts +1 -1
- package/dist/types/Tabs/TabsPanel.d.ts +1 -1
- package/dist/types/Tabs/context.d.ts +1 -1
- package/dist/types/Tabs/index.d.ts +4 -4
- package/dist/types/Tooltip/index.d.ts +1 -1
- package/dist/types/index.d.ts +30 -33
- package/package.json +14 -11
- package/dist/fonts/8b53d5067b416b155cc8.woff +0 -0
- package/dist/fonts/d819207ee2e092cc2735.woff2 +0 -0
- package/dist/icons/Icons.stories.jsx +0 -74
- package/dist/icons/README.md +0 -29
- package/dist/icons/fonts/icomoon.svg +0 -347
- package/dist/icons/fonts/icomoon.ttf +0 -0
- package/dist/icons/fonts/icomoon.woff +0 -0
- package/dist/index.js.LICENSE.txt +0 -35
package/dist/icons/README.md
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# Working with Icons
|
|
2
|
-
|
|
3
|
-
Until this process has better automation, please follow the instructions below
|
|
4
|
-
when updating our icon set.
|
|
5
|
-
|
|
6
|
-
## Updating icons
|
|
7
|
-
|
|
8
|
-
1. Log into icomoon using our narmi engineering account
|
|
9
|
-
2. Upload `selection.json` - this config file holds all shape information and metadata
|
|
10
|
-
3. Modify the icon set in the icomoon UI as needed
|
|
11
|
-
4. Click "Generate font" from the project view in the icomoon UI, then click "Download"
|
|
12
|
-
5. Copy assets (**SEE BELOW**)
|
|
13
|
-
6. `npm run build:types` will regenerate `src/Icon.types.ts`
|
|
14
|
-
7. Commit the changes & submit a PR
|
|
15
|
-
|
|
16
|
-
### Copying assets into NDS
|
|
17
|
-
|
|
18
|
-
Unzip the icomoon download. Copy all of the following into `src/icons/` in NDS:
|
|
19
|
-
|
|
20
|
-
- `fonts/`
|
|
21
|
-
- `selection.json`
|
|
22
|
-
- `style.css`
|
|
23
|
-
|
|
24
|
-
NOTE: style.css may include multiple urls as the src for @font-face. Please remove all except the woff url.
|
|
25
|
-
|
|
26
|
-
### Testing icon changes
|
|
27
|
-
|
|
28
|
-
Run storybook with `npm run dev` and navigate to the icons page. Icon additions
|
|
29
|
-
and changes should be visible in the story.
|