@zohodesk/dot 1.0.0-temp-226.1 → 1.0.0-temp-227

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.
Files changed (110) hide show
  1. package/README.md +10 -0
  2. package/es/DotProvider/hooks/useDotProvider.js +3 -3
  3. package/es/DotProvider/libraryChunks/themes/component/blue/Blue_Dark_Component.js +2 -0
  4. package/es/DotProvider/libraryChunks/themes/component/blue/Blue_Light_Component.js +2 -0
  5. package/es/DotProvider/libraryChunks/themes/component/blue/Blue_PureDark_Component.js +2 -0
  6. package/es/DotProvider/libraryChunks/themes/component/green/Green_Dark_Component.js +2 -0
  7. package/es/DotProvider/libraryChunks/themes/component/green/Green_Light_Component.js +2 -0
  8. package/es/DotProvider/libraryChunks/themes/component/green/Green_PureDark_Component.js +2 -0
  9. package/es/DotProvider/libraryChunks/themes/component/orange/Orange_Dark_Component.js +2 -0
  10. package/es/DotProvider/libraryChunks/themes/component/orange/Orange_Light_Component.js +2 -0
  11. package/es/DotProvider/libraryChunks/themes/component/orange/Orange_PureDark_Component.js +2 -0
  12. package/es/DotProvider/libraryChunks/themes/component/red/Red_Dark_Component.js +2 -0
  13. package/es/DotProvider/libraryChunks/themes/component/red/Red_Light_Component.js +2 -0
  14. package/es/DotProvider/libraryChunks/themes/component/red/Red_PureDark_Component.js +2 -0
  15. package/es/DotProvider/libraryChunks/themes/component/yellow/Yellow_Dark_Component.js +2 -0
  16. package/es/DotProvider/libraryChunks/themes/component/yellow/Yellow_Light_Component.js +2 -0
  17. package/es/DotProvider/libraryChunks/themes/component/yellow/Yellow_PureDark_Component.js +2 -0
  18. package/es/DotProvider/utils/constants.js +1 -2
  19. package/es/DotProvider/utils/themeAppearanceAssetsConfig.js +1 -15
  20. package/es/DotProvider/utils/themeColorAssetsConfig.js +1 -73
  21. package/es/list/Comment/Comment.module.css +29 -29
  22. package/es/list/Dot/Dot.module.css +15 -15
  23. package/es/list/ListLayout/ListLayout.module.css +79 -79
  24. package/es/lookup/Lookup/Lookup.js +6 -4
  25. package/es/lookup/Lookup/__tests__/Lookup.spec.js +101 -4
  26. package/es/lookup/Lookup/__tests__/__snapshots__/Lookup.spec.js.snap +223 -2
  27. package/es/lookup/Lookup/props/propTypes.js +6 -1
  28. package/es/lookup/header/ModuleHeader/ModuleHeader.js +12 -5
  29. package/es/lookup/header/ModuleHeader/__tests__/ModuleHeader.spec.js +87 -3
  30. package/es/lookup/header/ModuleHeader/props/defaultProps.js +2 -0
  31. package/es/lookup/header/ModuleHeader/props/propTypes.js +6 -0
  32. package/es/version2/lookup/AlertHeader/AlertHeader.js +19 -9
  33. package/es/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +122 -3
  34. package/es/version2/lookup/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +1728 -3
  35. package/es/version2/lookup/AlertHeader/css/cssJSLogic.js +6 -1
  36. package/es/version2/lookup/AlertHeader/props/defaultProps.js +2 -0
  37. package/es/version2/lookup/AlertHeader/props/propTypes.js +10 -0
  38. package/lib/DotProvider/hooks/useDotProvider.js +3 -3
  39. package/lib/DotProvider/libraryChunks/themes/component/blue/Blue_Dark_Component.js +4 -0
  40. package/lib/DotProvider/libraryChunks/themes/component/blue/Blue_Light_Component.js +4 -0
  41. package/lib/DotProvider/libraryChunks/themes/component/blue/Blue_PureDark_Component.js +4 -0
  42. package/lib/DotProvider/libraryChunks/themes/component/green/Green_Dark_Component.js +4 -0
  43. package/lib/DotProvider/libraryChunks/themes/component/green/Green_Light_Component.js +4 -0
  44. package/lib/DotProvider/libraryChunks/themes/component/green/Green_PureDark_Component.js +4 -0
  45. package/lib/DotProvider/libraryChunks/themes/component/orange/Orange_Dark_Component.js +4 -0
  46. package/lib/DotProvider/libraryChunks/themes/component/orange/Orange_Light_Component.js +4 -0
  47. package/lib/DotProvider/libraryChunks/themes/component/orange/Orange_PureDark_Component.js +4 -0
  48. package/lib/DotProvider/libraryChunks/themes/component/red/Red_Dark_Component.js +4 -0
  49. package/lib/DotProvider/libraryChunks/themes/component/red/Red_Light_Component.js +4 -0
  50. package/lib/DotProvider/libraryChunks/themes/component/red/Red_PureDark_Component.js +4 -0
  51. package/lib/DotProvider/libraryChunks/themes/component/yellow/Yellow_Dark_Component.js +4 -0
  52. package/lib/DotProvider/libraryChunks/themes/component/yellow/Yellow_Light_Component.js +4 -0
  53. package/lib/DotProvider/libraryChunks/themes/component/yellow/Yellow_PureDark_Component.js +4 -0
  54. package/lib/DotProvider/utils/constants.js +2 -4
  55. package/lib/DotProvider/utils/themeAppearanceAssetsConfig.js +2 -17
  56. package/lib/DotProvider/utils/themeColorAssetsConfig.js +2 -77
  57. package/lib/list/Comment/Comment.module.css +29 -29
  58. package/lib/list/Dot/Dot.module.css +15 -15
  59. package/lib/list/ListLayout/ListLayout.module.css +79 -79
  60. package/lib/lookup/Lookup/Lookup.js +6 -4
  61. package/lib/lookup/Lookup/__tests__/Lookup.spec.js +101 -4
  62. package/lib/lookup/Lookup/__tests__/__snapshots__/Lookup.spec.js.snap +223 -2
  63. package/lib/lookup/Lookup/props/propTypes.js +8 -1
  64. package/lib/lookup/header/ModuleHeader/ModuleHeader.js +13 -5
  65. package/lib/lookup/header/ModuleHeader/__tests__/ModuleHeader.spec.js +86 -2
  66. package/lib/lookup/header/ModuleHeader/props/defaultProps.js +2 -0
  67. package/lib/lookup/header/ModuleHeader/props/propTypes.js +6 -0
  68. package/lib/version2/lookup/AlertHeader/AlertHeader.js +19 -8
  69. package/lib/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +121 -2
  70. package/lib/version2/lookup/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +1728 -3
  71. package/lib/version2/lookup/AlertHeader/css/cssJSLogic.js +4 -2
  72. package/lib/version2/lookup/AlertHeader/props/defaultProps.js +2 -0
  73. package/lib/version2/lookup/AlertHeader/props/propTypes.js +10 -0
  74. package/package.json +6 -6
  75. package/es/DotProvider/libraryChunks/appearance/variables/Dark_Variables.js +0 -1
  76. package/es/DotProvider/libraryChunks/appearance/variables/Light_Variables.js +0 -1
  77. package/es/DotProvider/libraryChunks/appearance/variables/PureDark_Variables.js +0 -1
  78. package/es/DotProvider/libraryChunks/themes/variables/blue/Blue_Dark_Variables.js +0 -2
  79. package/es/DotProvider/libraryChunks/themes/variables/blue/Blue_Light_Variables.js +0 -2
  80. package/es/DotProvider/libraryChunks/themes/variables/blue/Blue_PureDark_Variables.js +0 -2
  81. package/es/DotProvider/libraryChunks/themes/variables/green/Green_Dark_Variables.js +0 -2
  82. package/es/DotProvider/libraryChunks/themes/variables/green/Green_Light_Variables.js +0 -2
  83. package/es/DotProvider/libraryChunks/themes/variables/green/Green_PureDark_Variables.js +0 -2
  84. package/es/DotProvider/libraryChunks/themes/variables/orange/Orange_Dark_Variables.js +0 -2
  85. package/es/DotProvider/libraryChunks/themes/variables/orange/Orange_Light_Variables.js +0 -2
  86. package/es/DotProvider/libraryChunks/themes/variables/orange/Orange_PureDark_Variables.js +0 -2
  87. package/es/DotProvider/libraryChunks/themes/variables/red/Red_Dark_Variables.js +0 -2
  88. package/es/DotProvider/libraryChunks/themes/variables/red/Red_Light_Variables.js +0 -2
  89. package/es/DotProvider/libraryChunks/themes/variables/red/Red_PureDark_Variables.js +0 -2
  90. package/es/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Dark_Variables.js +0 -2
  91. package/es/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Light_Variables.js +0 -2
  92. package/es/DotProvider/libraryChunks/themes/variables/yellow/Yellow_PureDark_Variables.js +0 -2
  93. package/lib/DotProvider/libraryChunks/appearance/variables/Dark_Variables.js +0 -3
  94. package/lib/DotProvider/libraryChunks/appearance/variables/Light_Variables.js +0 -3
  95. package/lib/DotProvider/libraryChunks/appearance/variables/PureDark_Variables.js +0 -3
  96. package/lib/DotProvider/libraryChunks/themes/variables/blue/Blue_Dark_Variables.js +0 -5
  97. package/lib/DotProvider/libraryChunks/themes/variables/blue/Blue_Light_Variables.js +0 -5
  98. package/lib/DotProvider/libraryChunks/themes/variables/blue/Blue_PureDark_Variables.js +0 -5
  99. package/lib/DotProvider/libraryChunks/themes/variables/green/Green_Dark_Variables.js +0 -5
  100. package/lib/DotProvider/libraryChunks/themes/variables/green/Green_Light_Variables.js +0 -5
  101. package/lib/DotProvider/libraryChunks/themes/variables/green/Green_PureDark_Variables.js +0 -5
  102. package/lib/DotProvider/libraryChunks/themes/variables/orange/Orange_Dark_Variables.js +0 -5
  103. package/lib/DotProvider/libraryChunks/themes/variables/orange/Orange_Light_Variables.js +0 -5
  104. package/lib/DotProvider/libraryChunks/themes/variables/orange/Orange_PureDark_Variables.js +0 -5
  105. package/lib/DotProvider/libraryChunks/themes/variables/red/Red_Dark_Variables.js +0 -5
  106. package/lib/DotProvider/libraryChunks/themes/variables/red/Red_Light_Variables.js +0 -5
  107. package/lib/DotProvider/libraryChunks/themes/variables/red/Red_PureDark_Variables.js +0 -5
  108. package/lib/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Dark_Variables.js +0 -5
  109. package/lib/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Light_Variables.js +0 -5
  110. package/lib/DotProvider/libraryChunks/themes/variables/yellow/Yellow_PureDark_Variables.js +0 -5
@@ -16,8 +16,10 @@ function cssJSLogic(_ref) {
16
16
  style = _ref.style;
17
17
  var children = props.children,
18
18
  type = props.type,
19
- title = props.title;
20
- var alertHeaderContainerClass = (0, _utils.compileClassNames)((_compileClassNames = {}, _defineProperty(_compileClassNames, style.container, true), _defineProperty(_compileClassNames, style.headerLayout, !!title || !!children), _defineProperty(_compileClassNames, style[type], !!type), _compileClassNames));
19
+ title = props.title,
20
+ customClass = props.customClass;
21
+ var container = customClass.container;
22
+ var alertHeaderContainerClass = (0, _utils.compileClassNames)((_compileClassNames = {}, _defineProperty(_compileClassNames, style.container, true), _defineProperty(_compileClassNames, container, !!container), _defineProperty(_compileClassNames, style.headerLayout, !!title || !!children), _defineProperty(_compileClassNames, style[type], !!type), _compileClassNames));
21
23
  return {
22
24
  alertHeaderContainerClass: alertHeaderContainerClass
23
25
  };
@@ -9,6 +9,8 @@ var _default = {
9
9
  type: 'danger',
10
10
  breakChildren: false,
11
11
  dataId: 'alertHeader',
12
+ isDraggable: true,
13
+ customClass: {},
12
14
  dragBoundaryLimit: {
13
15
  top: 0,
14
16
  left: 50,
@@ -18,6 +18,16 @@ var _default = {
18
18
  onClose: _propTypes["default"].func,
19
19
  title: _propTypes["default"].string,
20
20
  type: _propTypes["default"].oneOf(['success', 'error', 'danger', 'warning', 'info', 'notification']),
21
+ isDraggable: _propTypes["default"].bool,
22
+ customClass: _propTypes["default"].shape({
23
+ container: _propTypes["default"].string,
24
+ title: _propTypes["default"].string,
25
+ iconContainer: _propTypes["default"].string,
26
+ close: _propTypes["default"].string
27
+ }),
28
+ renderCustomIcon: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].node]),
29
+ renderSecondaryContent: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].node]),
30
+ renderRightActions: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].node]),
21
31
  htmlId: _propTypes["default"].string,
22
32
  customStyle: _propTypes["default"].object,
23
33
  dragBoundaryLimit: _propTypes["default"].shape({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.0.0-temp-226.1",
3
+ "version": "1.0.0-temp-227",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -34,7 +34,7 @@
34
34
  "snap-update": "npm run test-clean && npm run test -- -u",
35
35
  "sstest": "react-cli sstest",
36
36
  "common_package_build": "cd ../common && npm run build && cd ../dot",
37
- "prepublishOnly": "node prePublish.js && npm run downloadOnly && npm run css:review && npm run review:props",
37
+ "prepublishOnly": "node prePublish.js",
38
38
  "postpublish": "node postPublish.js",
39
39
  "test-clean": "react-cli clean ./coverage && react-cli clean ./unittest react-cli clean ./es && react-cli clean ./lib && react-cli clean ./package-lock.json && react-cli clean ./result.json",
40
40
  "download": "npm run downloadOnly && cd ../ && npm run download",
@@ -68,13 +68,13 @@
68
68
  "@zohodesk-private/node-plugins": "1.1.13",
69
69
  "@zohodesk-private/react-prop-validator": "1.2.3",
70
70
  "@zohodesk/a11y": "2.3.8",
71
- "@zohodesk/components": "1.0.0-temp-250",
71
+ "@zohodesk/components": "1.6.5",
72
72
  "@zohodesk/hooks": "2.0.8",
73
73
  "@zohodesk/icons": "1.2.8",
74
74
  "@zohodesk/layout": "^3.1.0",
75
75
  "@zohodesk/svg": "1.3.3",
76
76
  "@zohodesk/utils": "1.3.16",
77
- "@zohodesk/variables": "1.1.1-exp.4",
77
+ "@zohodesk/variables": "1.2.0",
78
78
  "@zohodesk/virtualizer": "1.0.13",
79
79
  "react-sortable-hoc": "^0.8.3",
80
80
  "velocity-react": "1.4.3",
@@ -84,8 +84,8 @@
84
84
  },
85
85
  "peerDependencies": {
86
86
  "velocity-react": "1.4.3",
87
- "@zohodesk/variables": "1.1.1-exp.4",
88
- "@zohodesk/components": "1.0.0-temp-250",
87
+ "@zohodesk/variables": "1.2.0",
88
+ "@zohodesk/components": "1.6.5",
89
89
  "@zohodesk/icons": "1.2.8",
90
90
  "@zohodesk/svg": "1.3.3",
91
91
  "@zohodesk/virtualizer": "1.0.13",
@@ -1 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/dark/mode/globalTokens_DarkMode.module.css';
@@ -1 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/light/mode/globalTokens_LightMode.module.css';
@@ -1 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/pureDark/mode/globalTokens_PureDarkMode.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/dark/themes/blue/blue_ctaTokens_DarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/dark/themes/blue/blue_ctaTokens_DarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/light/themes/blue/blue_ctaTokens_LightTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/light/themes/blue/blue_ctaTokens_LightModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/blue/blue_ctaTokens_PureDarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/blue/blue_ctaTokens_PureDarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/dark/themes/green/green_ctaTokens_DarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/dark/themes/green/green_ctaTokens_DarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/light/themes/green/green_ctaTokens_LightTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/light/themes/green/green_ctaTokens_LightModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/green/green_ctaTokens_PureDarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/green/green_ctaTokens_PureDarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/dark/themes/orange/orange_ctaTokens_DarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/dark/themes/orange/orange_ctaTokens_DarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/light/themes/orange/orange_ctaTokens_LightTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/light/themes/orange/orange_ctaTokens_LightModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/orange/orange_ctaTokens_PureDarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/orange/orange_ctaTokens_PureDarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/dark/themes/red/red_ctaTokens_DarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/dark/themes/red/red_ctaTokens_DarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/light/themes/red/red_ctaTokens_LightTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/light/themes/red/red_ctaTokens_LightModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/red/red_ctaTokens_PureDarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/red/red_ctaTokens_PureDarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/dark/themes/yellow/yellow_ctaTokens_DarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/dark/themes/yellow/yellow_ctaTokens_DarkModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/light/themes/yellow/yellow_ctaTokens_LightTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/light/themes/yellow/yellow_ctaTokens_LightModifyCategory.module.css';
@@ -1,2 +0,0 @@
1
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/yellow/yellow_ctaTokens_PureDarkTheme.module.css';
2
- import '@zohodesk/variables/assets/Appearance/pureDark/themes/yellow/yellow_ctaTokens_PureDarkModifyCategory.module.css';
@@ -1,3 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/dark/mode/globalTokens_DarkMode.module.css");
@@ -1,3 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/light/mode/globalTokens_LightMode.module.css");
@@ -1,3 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/pureDark/mode/globalTokens_PureDarkMode.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/dark/themes/blue/blue_ctaTokens_DarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/dark/themes/blue/blue_ctaTokens_DarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/light/themes/blue/blue_ctaTokens_LightTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/light/themes/blue/blue_ctaTokens_LightModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/blue/blue_ctaTokens_PureDarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/blue/blue_ctaTokens_PureDarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/dark/themes/green/green_ctaTokens_DarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/dark/themes/green/green_ctaTokens_DarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/light/themes/green/green_ctaTokens_LightTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/light/themes/green/green_ctaTokens_LightModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/green/green_ctaTokens_PureDarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/green/green_ctaTokens_PureDarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/dark/themes/orange/orange_ctaTokens_DarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/dark/themes/orange/orange_ctaTokens_DarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/light/themes/orange/orange_ctaTokens_LightTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/light/themes/orange/orange_ctaTokens_LightModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/orange/orange_ctaTokens_PureDarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/orange/orange_ctaTokens_PureDarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/dark/themes/red/red_ctaTokens_DarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/dark/themes/red/red_ctaTokens_DarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/light/themes/red/red_ctaTokens_LightTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/light/themes/red/red_ctaTokens_LightModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/red/red_ctaTokens_PureDarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/red/red_ctaTokens_PureDarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/dark/themes/yellow/yellow_ctaTokens_DarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/dark/themes/yellow/yellow_ctaTokens_DarkModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/light/themes/yellow/yellow_ctaTokens_LightTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/light/themes/yellow/yellow_ctaTokens_LightModifyCategory.module.css");
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/yellow/yellow_ctaTokens_PureDarkTheme.module.css");
4
-
5
- require("@zohodesk/variables/assets/Appearance/pureDark/themes/yellow/yellow_ctaTokens_PureDarkModifyCategory.module.css");