-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(icons): [publish_preview] update icon template with new imports, remove unnecessary styling boilerplate from icons template * feat(icons): [publish_preview] work? * chore(rebase): update yarn.lock * feat(icons): add CustomIcon LeadingIcon and InlineSvg to @commercetools-ui-kit/icons namespace, remove unnecessary pure annotations from icon template in svgr.config.js, add CONTRIBUTING.md file explaining how to add/update/remove icons in ui kit * feat(icons): update documentation, remove unnecessary eslint plugin, add preview branch name check back into preview-release github workflow * feat(icons): don't namespace CustomIcon, LeadingIcon, and InlineSvg to @commercetools-uikit/icons for backwards compatibility reasons * feat(icons): update docs
- Loading branch information
1 parent
569fbb3
commit 81e4488
Showing
298 changed files
with
1,841 additions
and
19,763 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@commercetools-uikit/rich-text-utils': minor | ||
'@commercetools-uikit/checkbox-input': minor | ||
'@commercetools-uikit/icons': minor | ||
--- | ||
|
||
Update handling of icons to reduce file size of each icon, update bundling of icons package so that each icon has its own entrypoint to allow for better tree shaking in consuming applications |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Contributing SVG Icons | ||
|
||
## How svg's are defined and built | ||
|
||
All icons that are available in UI Kit are stored as `*.react.svg` files in the `src/svg` folder. This folder is meant to be the single source of truth for all icons. | ||
|
||
To make the svg files consumable by react applications, we run each icon in `src/svg` through [svgr](https://react-svgr.com/docs/cli/). Svgr uses a custom template defined in `svgr.config.js` to transpile each svg into a react component defined in `src/generated`. | ||
|
||
Each `tsx` file generated by svgr in `src/generated` is specified as an entrypoint in the `preconstruct.entrypoints` array in `./package.json` in order to allow for [tree shaking](https://webpack.js.org/guides/tree-shaking/) of individual icons in applications that consume them. | ||
|
||
For all icons to have an entrypoint in the `icons` package, there must be a folder in `./generated` for each icon that contains a `package.json` file and `dist/` folder. Preconstruct handles adding this folder for any `tsx` file that does not have one when you run `preconstruct dev` or `yarn build` from the root of this repository. | ||
|
||
### Adding an svg | ||
|
||
- Add the raw SVG file ending in `.react.svg` to `./src/svg`. | ||
- Run `yarn build` from the root of the application. | ||
- Say yes to the prompt that asks: `? @commercetools-uikit/icons/generated/AatestReact A package.json file does not exist for this entrypoint, would you like to create one automatically? (Y/n) `. | ||
|
||
### Updating an svg | ||
|
||
- update the svg file in `./src/svg` | ||
- run `yarn build` from the repository root | ||
|
||
### Deleting an svg | ||
|
||
- delete the raw svg from `./src/svg` | ||
- delete the `./generated` and `./src/generated` folders. This insures that the deleted icon does not persist in the generated files. | ||
- run `yarn build` | ||
- Hit `a` to select all packages when the prompt asks `🎁 ? A package.json file does not exist for this entrypoint, would you like to create one automatically? … `. This insures that there is an entrypoint package for each icon in `src/generated`. |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleDownReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleDownReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleDownReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleLeftReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleLeftReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleLeftReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleRightReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleRightReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleRightReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleThinLeftReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleThinLeftReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleThinLeftReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleThinRightReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleThinRightReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleThinRightReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleUpDownReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleUpDownReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleUpDownReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/AngleUpReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-AngleUpReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-AngleUpReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowDownReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowDownReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowDownReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowLeftReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowLeftReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowLeftReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowLongDownReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowLongDownReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowLongDownReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowRightReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowRightReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowRightReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowTriangleDownReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowTriangleDownReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowTriangleDownReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowTriangleUpReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowTriangleUpReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowTriangleUpReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowUpReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowUpReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowUpReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ArrowsMinimizeReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowsMinimizeReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowsMinimizeReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ArrowsReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ArrowsReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-BackReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-BackReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/BidirectionalArrowReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-BidirectionalArrowReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-BidirectionalArrowReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/BinFilledReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-BinFilledReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-BinFilledReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/BinLinearReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-BinLinearReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-BinLinearReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-BoxReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-BoxReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-BrainReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-BrainReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CalendarReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CalendarReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CalendarReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CameraReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CameraReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CaretDownReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CaretDownReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CaretDownReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CaretDownSmallReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CaretDownSmallReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CaretDownSmallReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CaretUpReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CaretUpReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CaretUpReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CaretUpSmallReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CaretUpSmallReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CaretUpSmallReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CartReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CartReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ChainBrokenReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ChainBrokenReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ChainBrokenReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ChainReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ChainReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CheckActiveReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CheckActiveReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CheckActiveReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CheckBoldReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CheckBoldReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CheckBoldReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CheckInactiveReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CheckInactiveReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CheckInactiveReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CheckThinReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CheckThinReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CheckThinReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CircleReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CircleReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ClipboardReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ClipboardReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ClipboardReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ClockReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ClockReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ClockWithArrowReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ClockWithArrowReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ClockWithArrowReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CloseBoldReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CloseBoldReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CloseBoldReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CloseReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CloseReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CodeViewReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CodeViewReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CodeViewReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CoinsReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CoinsReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ColumnsReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ColumnsReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ColumnsReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ConnectedSquareReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ConnectedSquareReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ConnectedSquareReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ConnectedTriangleReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ConnectedTriangleReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ConnectedTriangleReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CopyReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CopyReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/CtCheckoutReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CtCheckoutReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CtCheckoutReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CubeReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CubeReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-CubesReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-CubesReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/DiamondReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-DiamondReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-DiamondReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-DomainReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-DomainReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-DotReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-DotReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/DownloadReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-DownloadReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-DownloadReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/DragDropReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-DragDropReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-DragDropReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-DragReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-DragReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-EditReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-EditReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ErrorReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ErrorReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ExpandReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ExpandReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ExportReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ExportReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/ExternalLinkReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-ExternalLinkReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-ExternalLinkReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/EyeCrossedReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-EyeCrossedReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-EyeCrossedReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-EyeReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-EyeReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/FilterAndListReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-FilterAndListReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-FilterAndListReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-FilterReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-FilterReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/FlagFilledReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-FlagFilledReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-FlagFilledReact.esm.js" | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/components/icons/generated/FlagLinearReact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-FlagLinearReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-FlagLinearReact.esm.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"main": "dist/commercetools-uikit-icons-generated-FlameReact.cjs.js", | ||
"module": "dist/commercetools-uikit-icons-generated-FlameReact.esm.js" | ||
} |
Oops, something went wrong.