@synerise/ds-icon 1.8.0 → 1.9.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/CHANGELOG.md +11 -0
- package/dist/DynamicIcon/DynamicIcon.d.ts +1171 -0
- package/dist/DynamicIcon/DynamicIcon.js +19 -0
- package/dist/icons/L/index.d.ts +110 -38
- package/dist/icons/L/index.js +181 -39
- package/dist/icons/XL/index.d.ts +159 -54
- package/dist/icons/XL/index.js +263 -55
- package/dist/icons/additional/index.d.ts +150 -48
- package/dist/icons/additional/index.js +250 -48
- package/dist/icons/colorIcons/index.d.ts +20 -4
- package/dist/icons/colorIcons/index.js +35 -5
- package/dist/icons/index.d.ts +1311 -434
- package/dist/icons/index.js +2188 -436
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
|
@@ -1,14 +1,44 @@
|
|
|
1
|
+
export var colorIconMapping = {
|
|
2
|
+
ABtestColor: ABtestColor,
|
|
3
|
+
CreatingFromScratchColor: CreatingFromScratchColor,
|
|
4
|
+
FormulaColor: FormulaColor,
|
|
5
|
+
FunnelColor: FunnelColor,
|
|
6
|
+
PredefinedColor: PredefinedColor,
|
|
7
|
+
IntegrationColor: IntegrationColor,
|
|
8
|
+
ProductBundleColor: ProductBundleColor,
|
|
9
|
+
QueryDetailsColor: QueryDetailsColor,
|
|
10
|
+
ProductLastSeenColor: ProductLastSeenColor,
|
|
11
|
+
ProductsSimilarColor: ProductsSimilarColor,
|
|
12
|
+
ScoreColor: ScoreColor,
|
|
13
|
+
VisualSimilarityColor: VisualSimilarityColor,
|
|
14
|
+
ShopingBagColor: ShopingBagColor,
|
|
15
|
+
UserColor: UserColor
|
|
16
|
+
};
|
|
17
|
+
import { default as VisualSimilarityColor } from './VisualSimilarityColor';
|
|
1
18
|
export { default as VisualSimilarityColor } from './VisualSimilarityColor';
|
|
2
|
-
|
|
19
|
+
import { default as UserColor } from './UserColor';
|
|
3
20
|
export { default as UserColor } from './UserColor';
|
|
21
|
+
import { default as ScoreColor } from './ScoreColor';
|
|
4
22
|
export { default as ScoreColor } from './ScoreColor';
|
|
23
|
+
import { default as ProductLastSeenColor } from './ProductLastSeenColor';
|
|
24
|
+
export { default as ProductLastSeenColor } from './ProductLastSeenColor';
|
|
25
|
+
import { default as ShopingBagColor } from './ShopingBagColor';
|
|
26
|
+
export { default as ShopingBagColor } from './ShopingBagColor';
|
|
27
|
+
import { default as ProductsSimilarColor } from './ProductsSimilarColor';
|
|
5
28
|
export { default as ProductsSimilarColor } from './ProductsSimilarColor';
|
|
29
|
+
import { default as QueryDetailsColor } from './QueryDetailsColor';
|
|
6
30
|
export { default as QueryDetailsColor } from './QueryDetailsColor';
|
|
7
|
-
|
|
31
|
+
import { default as ProductBundleColor } from './ProductBundleColor';
|
|
8
32
|
export { default as ProductBundleColor } from './ProductBundleColor';
|
|
33
|
+
import { default as FunnelColor } from './FunnelColor';
|
|
9
34
|
export { default as FunnelColor } from './FunnelColor';
|
|
10
|
-
|
|
11
|
-
export { default as CreatingFromScratchColor } from './CreatingFromScratchColor';
|
|
35
|
+
import { default as PredefinedColor } from './PredefinedColor';
|
|
12
36
|
export { default as PredefinedColor } from './PredefinedColor';
|
|
37
|
+
import { default as FormulaColor } from './FormulaColor';
|
|
13
38
|
export { default as FormulaColor } from './FormulaColor';
|
|
14
|
-
|
|
39
|
+
import { default as IntegrationColor } from './IntegrationColor';
|
|
40
|
+
export { default as IntegrationColor } from './IntegrationColor';
|
|
41
|
+
import { default as ABtestColor } from './ABtestColor';
|
|
42
|
+
export { default as ABtestColor } from './ABtestColor';
|
|
43
|
+
import { default as CreatingFromScratchColor } from './CreatingFromScratchColor';
|
|
44
|
+
export { default as CreatingFromScratchColor } from './CreatingFromScratchColor';
|