@synerise/ds-icon 1.14.0 → 1.14.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/CHANGELOG.md +6 -0
- package/dist/DynamicIcon/iconManifest.d.ts +11 -0
- package/dist/DynamicIcon/iconManifest.js +5 -0
- package/dist/icons/L/index.d.ts +35 -35
- package/dist/icons/L/index.js +36 -36
- package/dist/icons/M/index.d.ts +440 -440
- package/dist/icons/M/index.js +440 -440
- package/dist/icons/XL/index.d.ts +50 -50
- package/dist/icons/XL/index.js +50 -50
- package/dist/icons/additional/index.d.ts +55 -55
- package/dist/icons/additional/index.js +55 -55
- package/dist/icons/colorIcons/index.d.ts +6 -6
- package/dist/icons/colorIcons/index.js +6 -6
- package/dist/useIconComponent.d.ts +2 -2
- package/package.json +2 -2
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as ScoreColor } from './ScoreColor';
|
|
2
2
|
export { default as VisualSimilarityColor } from './VisualSimilarityColor';
|
|
3
3
|
export { default as ShopingBagColor } from './ShopingBagColor';
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as UserColor } from './UserColor';
|
|
5
5
|
export { default as ProductsSimilarColor } from './ProductsSimilarColor';
|
|
6
|
-
export { default as QueryDetailsColor } from './QueryDetailsColor';
|
|
7
6
|
export { default as ProductLastSeenColor } from './ProductLastSeenColor';
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as IntegrationColor } from './IntegrationColor';
|
|
10
|
-
export { default as ProductBundleColor } from './ProductBundleColor';
|
|
7
|
+
export { default as QueryDetailsColor } from './QueryDetailsColor';
|
|
11
8
|
export { default as FormulaColor } from './FormulaColor';
|
|
12
9
|
export { default as CreatingFromScratchColor } from './CreatingFromScratchColor';
|
|
13
10
|
export { default as FunnelColor } from './FunnelColor';
|
|
11
|
+
export { default as IntegrationColor } from './IntegrationColor';
|
|
12
|
+
export { default as PredefinedColor } from './PredefinedColor';
|
|
13
|
+
export { default as ProductBundleColor } from './ProductBundleColor';
|
|
14
14
|
export { default as ABtestColor } from './ABtestColor';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as ScoreColor } from './ScoreColor';
|
|
2
2
|
export { default as VisualSimilarityColor } from './VisualSimilarityColor';
|
|
3
3
|
export { default as ShopingBagColor } from './ShopingBagColor';
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as UserColor } from './UserColor';
|
|
5
5
|
export { default as ProductsSimilarColor } from './ProductsSimilarColor';
|
|
6
|
-
export { default as QueryDetailsColor } from './QueryDetailsColor';
|
|
7
6
|
export { default as ProductLastSeenColor } from './ProductLastSeenColor';
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as IntegrationColor } from './IntegrationColor';
|
|
10
|
-
export { default as ProductBundleColor } from './ProductBundleColor';
|
|
7
|
+
export { default as QueryDetailsColor } from './QueryDetailsColor';
|
|
11
8
|
export { default as FormulaColor } from './FormulaColor';
|
|
12
9
|
export { default as CreatingFromScratchColor } from './CreatingFromScratchColor';
|
|
13
10
|
export { default as FunnelColor } from './FunnelColor';
|
|
11
|
+
export { default as IntegrationColor } from './IntegrationColor';
|
|
12
|
+
export { default as PredefinedColor } from './PredefinedColor';
|
|
13
|
+
export { default as ProductBundleColor } from './ProductBundleColor';
|
|
14
14
|
export { default as ABtestColor } from './ABtestColor';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type ComponentType, type SVGProps } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
export type IconName =
|
|
2
|
+
import { type AllIconNames } from './DynamicIcon/iconManifest';
|
|
3
|
+
export type IconName = AllIconNames;
|
|
4
4
|
type IconComponent = ComponentType<SVGProps<SVGSVGElement>>;
|
|
5
5
|
export declare const getIconComponent: (name: string) => IconComponent | null;
|
|
6
6
|
export declare const useIconComponent: (name?: string) => IconComponent | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-icon",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.1",
|
|
4
4
|
"description": "Icon UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"glob": "^11.0.2",
|
|
52
52
|
"string-hash": "^1.1.3"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "b3d1312cbfbe69aba1cb5667b54be7f76938156c"
|
|
55
55
|
}
|