@deriv/quill-icons 1.0.11 → 1.0.12
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/Illustration/index.cjs +1 -0
- package/dist/Illustration/index.d.ts +19 -0
- package/dist/Illustration/index.js +1 -0
- package/dist/index.d.ts +25 -9
- package/dist/index.js +334 -132
- package/dist/types/index.d.ts +1 -0
- package/dist/types/react/Illustration/DarkDependableIcon.d.ts +3 -0
- package/dist/types/react/Illustration/DarkRegulatedIcon.d.ts +3 -0
- package/dist/types/react/Illustration/DarkSafeAndSecureIcon.d.ts +3 -0
- package/dist/types/react/Illustration/DarkTwentyFourSevenSupportIcon.d.ts +3 -0
- package/dist/types/react/Illustration/LightDependableIcon.d.ts +3 -0
- package/dist/types/react/Illustration/LightRegulatedIcon.d.ts +3 -0
- package/dist/types/react/Illustration/LightSafeAndSecureIcon.d.ts +3 -0
- package/dist/types/react/Illustration/LightTwentyFourSevenSupportIcon.d.ts +3 -0
- package/dist/types/react/Illustration/index.d.ts +8 -0
- package/package.json +3 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as DarkTwentyFourSevenSupportIcon } from './DarkTwentyFourSevenSupportIcon';
|
|
2
|
+
export { default as DarkSafeAndSecureIcon } from './DarkSafeAndSecureIcon';
|
|
3
|
+
export { default as DarkRegulatedIcon } from './DarkRegulatedIcon';
|
|
4
|
+
export { default as DarkDependableIcon } from './DarkDependableIcon';
|
|
5
|
+
export { default as LightDependableIcon } from './LightDependableIcon';
|
|
6
|
+
export { default as LightSafeAndSecureIcon } from './LightSafeAndSecureIcon';
|
|
7
|
+
export { default as LightRegulatedIcon } from './LightRegulatedIcon';
|
|
8
|
+
export { default as LightTwentyFourSevenSupportIcon } from './LightTwentyFourSevenSupportIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deriv/quill-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "This is the central repository for quill icons, exported from figma design file",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -56,7 +56,8 @@
|
|
|
56
56
|
"clean": "rimraf stories src/es6 src/react src/index.ts svg storybook-static sprite",
|
|
57
57
|
"export:icons": "ts-node ./node_modules/@figma-export/cli/bin/run use-config ./scripts/figma.config.ts",
|
|
58
58
|
"export:logos": "ts-node ./node_modules/@figma-export/cli/bin/run use-config ./scripts/logo.figma.config.ts",
|
|
59
|
-
"export:
|
|
59
|
+
"export:illustrations": "ts-node ./node_modules/@figma-export/cli/bin/run use-config ./scripts/illustrations.figma.config.ts",
|
|
60
|
+
"export:figma": "npm-run-all export:icons export:logos export:illustrations",
|
|
60
61
|
"rexport": "npm-run-all clean export:figma format",
|
|
61
62
|
"export:barrels": "barrelsby -c barrelsby.config.json",
|
|
62
63
|
"export": "npm-run-all clean export:figma export:barrels format",
|