@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.
- package/README.md +10 -0
- package/es/DotProvider/hooks/useDotProvider.js +3 -3
- package/es/DotProvider/libraryChunks/themes/component/blue/Blue_Dark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/blue/Blue_Light_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/blue/Blue_PureDark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/green/Green_Dark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/green/Green_Light_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/green/Green_PureDark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/orange/Orange_Dark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/orange/Orange_Light_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/orange/Orange_PureDark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/red/Red_Dark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/red/Red_Light_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/red/Red_PureDark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/yellow/Yellow_Dark_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/yellow/Yellow_Light_Component.js +2 -0
- package/es/DotProvider/libraryChunks/themes/component/yellow/Yellow_PureDark_Component.js +2 -0
- package/es/DotProvider/utils/constants.js +1 -2
- package/es/DotProvider/utils/themeAppearanceAssetsConfig.js +1 -15
- package/es/DotProvider/utils/themeColorAssetsConfig.js +1 -73
- package/es/list/Comment/Comment.module.css +29 -29
- package/es/list/Dot/Dot.module.css +15 -15
- package/es/list/ListLayout/ListLayout.module.css +79 -79
- package/es/lookup/Lookup/Lookup.js +6 -4
- package/es/lookup/Lookup/__tests__/Lookup.spec.js +101 -4
- package/es/lookup/Lookup/__tests__/__snapshots__/Lookup.spec.js.snap +223 -2
- package/es/lookup/Lookup/props/propTypes.js +6 -1
- package/es/lookup/header/ModuleHeader/ModuleHeader.js +12 -5
- package/es/lookup/header/ModuleHeader/__tests__/ModuleHeader.spec.js +87 -3
- package/es/lookup/header/ModuleHeader/props/defaultProps.js +2 -0
- package/es/lookup/header/ModuleHeader/props/propTypes.js +6 -0
- package/es/version2/lookup/AlertHeader/AlertHeader.js +19 -9
- package/es/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +122 -3
- package/es/version2/lookup/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +1728 -3
- package/es/version2/lookup/AlertHeader/css/cssJSLogic.js +6 -1
- package/es/version2/lookup/AlertHeader/props/defaultProps.js +2 -0
- package/es/version2/lookup/AlertHeader/props/propTypes.js +10 -0
- package/lib/DotProvider/hooks/useDotProvider.js +3 -3
- package/lib/DotProvider/libraryChunks/themes/component/blue/Blue_Dark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/blue/Blue_Light_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/blue/Blue_PureDark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/green/Green_Dark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/green/Green_Light_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/green/Green_PureDark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/orange/Orange_Dark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/orange/Orange_Light_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/orange/Orange_PureDark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/red/Red_Dark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/red/Red_Light_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/red/Red_PureDark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/yellow/Yellow_Dark_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/yellow/Yellow_Light_Component.js +4 -0
- package/lib/DotProvider/libraryChunks/themes/component/yellow/Yellow_PureDark_Component.js +4 -0
- package/lib/DotProvider/utils/constants.js +2 -4
- package/lib/DotProvider/utils/themeAppearanceAssetsConfig.js +2 -17
- package/lib/DotProvider/utils/themeColorAssetsConfig.js +2 -77
- package/lib/list/Comment/Comment.module.css +29 -29
- package/lib/list/Dot/Dot.module.css +15 -15
- package/lib/list/ListLayout/ListLayout.module.css +79 -79
- package/lib/lookup/Lookup/Lookup.js +6 -4
- package/lib/lookup/Lookup/__tests__/Lookup.spec.js +101 -4
- package/lib/lookup/Lookup/__tests__/__snapshots__/Lookup.spec.js.snap +223 -2
- package/lib/lookup/Lookup/props/propTypes.js +8 -1
- package/lib/lookup/header/ModuleHeader/ModuleHeader.js +13 -5
- package/lib/lookup/header/ModuleHeader/__tests__/ModuleHeader.spec.js +86 -2
- package/lib/lookup/header/ModuleHeader/props/defaultProps.js +2 -0
- package/lib/lookup/header/ModuleHeader/props/propTypes.js +6 -0
- package/lib/version2/lookup/AlertHeader/AlertHeader.js +19 -8
- package/lib/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +121 -2
- package/lib/version2/lookup/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +1728 -3
- package/lib/version2/lookup/AlertHeader/css/cssJSLogic.js +4 -2
- package/lib/version2/lookup/AlertHeader/props/defaultProps.js +2 -0
- package/lib/version2/lookup/AlertHeader/props/propTypes.js +10 -0
- package/package.json +6 -6
- package/es/DotProvider/libraryChunks/appearance/variables/Dark_Variables.js +0 -1
- package/es/DotProvider/libraryChunks/appearance/variables/Light_Variables.js +0 -1
- package/es/DotProvider/libraryChunks/appearance/variables/PureDark_Variables.js +0 -1
- package/es/DotProvider/libraryChunks/themes/variables/blue/Blue_Dark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/blue/Blue_Light_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/blue/Blue_PureDark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/green/Green_Dark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/green/Green_Light_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/green/Green_PureDark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/orange/Orange_Dark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/orange/Orange_Light_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/orange/Orange_PureDark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/red/Red_Dark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/red/Red_Light_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/red/Red_PureDark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Dark_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Light_Variables.js +0 -2
- package/es/DotProvider/libraryChunks/themes/variables/yellow/Yellow_PureDark_Variables.js +0 -2
- package/lib/DotProvider/libraryChunks/appearance/variables/Dark_Variables.js +0 -3
- package/lib/DotProvider/libraryChunks/appearance/variables/Light_Variables.js +0 -3
- package/lib/DotProvider/libraryChunks/appearance/variables/PureDark_Variables.js +0 -3
- package/lib/DotProvider/libraryChunks/themes/variables/blue/Blue_Dark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/blue/Blue_Light_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/blue/Blue_PureDark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/green/Green_Dark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/green/Green_Light_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/green/Green_PureDark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/orange/Orange_Dark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/orange/Orange_Light_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/orange/Orange_PureDark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/red/Red_Dark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/red/Red_Light_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/red/Red_PureDark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Dark_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/yellow/Yellow_Light_Variables.js +0 -5
- package/lib/DotProvider/libraryChunks/themes/variables/yellow/Yellow_PureDark_Variables.js +0 -5
|
@@ -7,10 +7,15 @@ export default function cssJSLogic(_ref) {
|
|
|
7
7
|
let {
|
|
8
8
|
children,
|
|
9
9
|
type,
|
|
10
|
-
title
|
|
10
|
+
title,
|
|
11
|
+
customClass
|
|
11
12
|
} = props;
|
|
13
|
+
let {
|
|
14
|
+
container
|
|
15
|
+
} = customClass;
|
|
12
16
|
let alertHeaderContainerClass = compileClassNames({
|
|
13
17
|
[style.container]: true,
|
|
18
|
+
[container]: !!container,
|
|
14
19
|
[style.headerLayout]: !!title || !!children,
|
|
15
20
|
[style[type]]: !!type
|
|
16
21
|
});
|
|
@@ -8,6 +8,16 @@ export default {
|
|
|
8
8
|
onClose: PropTypes.func,
|
|
9
9
|
title: PropTypes.string,
|
|
10
10
|
type: PropTypes.oneOf(['success', 'error', 'danger', 'warning', 'info', 'notification']),
|
|
11
|
+
isDraggable: PropTypes.bool,
|
|
12
|
+
customClass: PropTypes.shape({
|
|
13
|
+
container: PropTypes.string,
|
|
14
|
+
title: PropTypes.string,
|
|
15
|
+
iconContainer: PropTypes.string,
|
|
16
|
+
close: PropTypes.string
|
|
17
|
+
}),
|
|
18
|
+
renderCustomIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),
|
|
19
|
+
renderSecondaryContent: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),
|
|
20
|
+
renderRightActions: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),
|
|
11
21
|
htmlId: PropTypes.string,
|
|
12
22
|
customStyle: PropTypes.object,
|
|
13
23
|
dragBoundaryLimit: PropTypes.shape({
|
|
@@ -9,11 +9,11 @@ var _react = require("react");
|
|
|
9
9
|
|
|
10
10
|
var _useDownloadAssetsAndSetAttr = _interopRequireDefault(require("./useDownloadAssetsAndSetAttr"));
|
|
11
11
|
|
|
12
|
-
require("@zohodesk/
|
|
12
|
+
require("@zohodesk/components/assets/Contrast/lightContrastLightness.module.css");
|
|
13
13
|
|
|
14
|
-
require("@zohodesk/
|
|
14
|
+
require("@zohodesk/components/assets/Contrast/darkContrastLightness.module.css");
|
|
15
15
|
|
|
16
|
-
require("@zohodesk/
|
|
16
|
+
require("@zohodesk/components/assets/Contrast/pureDarkContrastLightness.module.css");
|
|
17
17
|
|
|
18
18
|
require("@zohodesk/variables/assets/colorVariables.module.css");
|
|
19
19
|
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/blue/blue_CTA_DarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/blue/blue_CTA_DarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/dark/themes/blue/blue_ComponentTheme_DarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/light/themes/blue/blue_CTA_LightTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/light/themes/blue/blue_CTA_LightModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/light/themes/blue/blue_ComponentTheme_LightTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/blue/blue_CTA_PureDarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/blue/blue_CTA_PureDarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/pureDark/themes/blue/blue_ComponentTheme_PureDarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/green/green_CTA_DarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/green/green_CTA_DarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/dark/themes/green/green_ComponentTheme_DarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/light/themes/green/green_CTA_LightTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/light/themes/green/green_CTA_LightModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/light/themes/green/green_ComponentTheme_LightTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/green/green_CTA_PureDarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/green/green_CTA_PureDarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/pureDark/themes/green/green_ComponentTheme_PureDarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/orange/orange_CTA_DarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/orange/orange_CTA_DarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/dark/themes/orange/orange_ComponentTheme_DarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/light/themes/orange/orange_CTA_LightTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/light/themes/orange/orange_CTA_LightModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/light/themes/orange/orange_ComponentTheme_LightTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/orange/orange_CTA_PureDarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/orange/orange_CTA_PureDarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/pureDark/themes/orange/orange_ComponentTheme_PureDarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/red/red_CTA_DarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/red/red_CTA_DarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/dark/themes/red/red_ComponentTheme_DarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/light/themes/red/red_CTA_LightTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/light/themes/red/red_CTA_LightModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/light/themes/red/red_ComponentTheme_LightTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/red/red_CTA_PureDarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/red/red_CTA_PureDarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/pureDark/themes/red/red_ComponentTheme_PureDarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/yellow/yellow_CTA_DarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/dark/themes/yellow/yellow_CTA_DarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/dark/themes/yellow/yellow_ComponentTheme_DarkTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/light/themes/yellow/yellow_CTA_LightTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/light/themes/yellow/yellow_CTA_LightModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/light/themes/yellow/yellow_ComponentTheme_LightTheme.module.css");
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/yellow/yellow_CTA_PureDarkTheme.module.css");
|
|
4
|
+
|
|
5
|
+
require("@zohodesk/components/assets/Appearance/pureDark/themes/yellow/yellow_CTA_PureDarkModifyCategory.module.css");
|
|
6
|
+
|
|
3
7
|
require("@zohodesk/components/assets/Appearance/pureDark/themes/yellow/yellow_ComponentTheme_PureDarkTheme.module.css");
|
|
@@ -3,9 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.THEME_COLOR_YELLOW = exports.THEME_COLOR_RED = exports.THEME_COLOR_ORANGE = exports.THEME_COLOR_GREEN = exports.THEME_COLOR_BLUE = exports.THEME_COLORS = exports.THEME_APPEARANCE_PURE_DARK = exports.THEME_APPEARANCE_LIGHT = exports.THEME_APPEARANCE_DARK = exports.THEME_APPEARANCES = exports.
|
|
7
|
-
var LIBRARY_VARIABLES = 'variables';
|
|
8
|
-
exports.LIBRARY_VARIABLES = LIBRARY_VARIABLES;
|
|
6
|
+
exports.THEME_COLOR_YELLOW = exports.THEME_COLOR_RED = exports.THEME_COLOR_ORANGE = exports.THEME_COLOR_GREEN = exports.THEME_COLOR_BLUE = exports.THEME_COLORS = exports.THEME_APPEARANCE_PURE_DARK = exports.THEME_APPEARANCE_LIGHT = exports.THEME_APPEARANCE_DARK = exports.THEME_APPEARANCES = exports.LIBRARY_SVG = exports.LIBRARY_DOT = exports.LIBRARY_COMPONENT = exports.LIBRARIES = void 0;
|
|
9
7
|
var LIBRARY_COMPONENT = 'component';
|
|
10
8
|
exports.LIBRARY_COMPONENT = LIBRARY_COMPONENT;
|
|
11
9
|
var LIBRARY_DOT = 'dot';
|
|
@@ -28,7 +26,7 @@ var THEME_COLOR_RED = 'red';
|
|
|
28
26
|
exports.THEME_COLOR_RED = THEME_COLOR_RED;
|
|
29
27
|
var THEME_COLOR_YELLOW = 'yellow';
|
|
30
28
|
exports.THEME_COLOR_YELLOW = THEME_COLOR_YELLOW;
|
|
31
|
-
var LIBRARIES = [
|
|
29
|
+
var LIBRARIES = [LIBRARY_COMPONENT, LIBRARY_DOT, LIBRARY_SVG];
|
|
32
30
|
exports.LIBRARIES = LIBRARIES;
|
|
33
31
|
var THEME_APPEARANCES = [THEME_APPEARANCE_LIGHT, THEME_APPEARANCE_DARK, THEME_APPEARANCE_PURE_DARK];
|
|
34
32
|
exports.THEME_APPEARANCES = THEME_APPEARANCES;
|
|
@@ -7,7 +7,7 @@ exports.themeAppearanceMapping = exports.themeAppearanceImports = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _constants = require("./constants");
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _LIBRARY_COMPONENT, _LIBRARY_DOT, _LIBRARY_SVG, _themeAppearanceMappi;
|
|
11
11
|
|
|
12
12
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
13
13
|
|
|
@@ -18,21 +18,6 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
18
18
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
19
19
|
|
|
20
20
|
var themeAppearanceImports = {
|
|
21
|
-
Lib_LightMode_Variables: function Lib_LightMode_Variables() {
|
|
22
|
-
return Promise.resolve().then(function () {
|
|
23
|
-
return _interopRequireWildcard(require("../libraryChunks/appearance/variables/Light_Variables"));
|
|
24
|
-
});
|
|
25
|
-
},
|
|
26
|
-
Lib_DarkMode_Variables: function Lib_DarkMode_Variables() {
|
|
27
|
-
return Promise.resolve().then(function () {
|
|
28
|
-
return _interopRequireWildcard(require("../libraryChunks/appearance/variables/Dark_Variables"));
|
|
29
|
-
});
|
|
30
|
-
},
|
|
31
|
-
Lib_PureDarkMode_Variables: function Lib_PureDarkMode_Variables() {
|
|
32
|
-
return Promise.resolve().then(function () {
|
|
33
|
-
return _interopRequireWildcard(require("../libraryChunks/appearance/variables/PureDark_Variables"));
|
|
34
|
-
});
|
|
35
|
-
},
|
|
36
21
|
Lib_LightMode_Component: function Lib_LightMode_Component() {
|
|
37
22
|
return Promise.resolve().then(function () {
|
|
38
23
|
return _interopRequireWildcard(require("../libraryChunks/appearance/component/Light_Component"));
|
|
@@ -80,5 +65,5 @@ var themeAppearanceImports = {
|
|
|
80
65
|
}
|
|
81
66
|
};
|
|
82
67
|
exports.themeAppearanceImports = themeAppearanceImports;
|
|
83
|
-
var themeAppearanceMapping = (_themeAppearanceMappi = {}, _defineProperty(_themeAppearanceMappi, _constants.
|
|
68
|
+
var themeAppearanceMapping = (_themeAppearanceMappi = {}, _defineProperty(_themeAppearanceMappi, _constants.LIBRARY_COMPONENT, (_LIBRARY_COMPONENT = {}, _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_APPEARANCE_LIGHT, 'Lib_LightMode_Component'), _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_APPEARANCE_DARK, 'Lib_DarkMode_Component'), _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_PureDarkMode_Component'), _LIBRARY_COMPONENT)), _defineProperty(_themeAppearanceMappi, _constants.LIBRARY_DOT, (_LIBRARY_DOT = {}, _defineProperty(_LIBRARY_DOT, _constants.THEME_APPEARANCE_LIGHT, 'Lib_LightMode_Dot'), _defineProperty(_LIBRARY_DOT, _constants.THEME_APPEARANCE_DARK, 'Lib_DarkMode_Dot'), _defineProperty(_LIBRARY_DOT, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_PureDarkMode_Dot'), _LIBRARY_DOT)), _defineProperty(_themeAppearanceMappi, _constants.LIBRARY_SVG, (_LIBRARY_SVG = {}, _defineProperty(_LIBRARY_SVG, _constants.THEME_APPEARANCE_LIGHT, 'Lib_LightMode_SVG'), _defineProperty(_LIBRARY_SVG, _constants.THEME_APPEARANCE_DARK, 'Lib_DarkMode_SVG'), _defineProperty(_LIBRARY_SVG, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_PureDarkMode_SVG'), _LIBRARY_SVG)), _themeAppearanceMappi);
|
|
84
69
|
exports.themeAppearanceMapping = themeAppearanceMapping;
|
|
@@ -7,7 +7,7 @@ exports.themeColorMapping = exports.themeColorImports = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _constants = require("./constants");
|
|
9
9
|
|
|
10
|
-
var _THEME_COLOR_BLUE, _THEME_COLOR_GREEN, _THEME_COLOR_ORANGE, _THEME_COLOR_RED, _THEME_COLOR_YELLOW,
|
|
10
|
+
var _THEME_COLOR_BLUE, _THEME_COLOR_GREEN, _THEME_COLOR_ORANGE, _THEME_COLOR_RED, _THEME_COLOR_YELLOW, _LIBRARY_COMPONENT, _THEME_COLOR_BLUE2, _THEME_COLOR_GREEN2, _THEME_COLOR_ORANGE2, _THEME_COLOR_RED2, _THEME_COLOR_YELLOW2, _LIBRARY_DOT, _THEME_COLOR_BLUE3, _THEME_COLOR_GREEN3, _THEME_COLOR_ORANGE3, _THEME_COLOR_RED3, _THEME_COLOR_YELLOW3, _LIBRARY_SVG, _themeColorMapping;
|
|
11
11
|
|
|
12
12
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
13
13
|
|
|
@@ -18,81 +18,6 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
18
18
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
19
19
|
|
|
20
20
|
var themeColorImports = {
|
|
21
|
-
Lib_Blue_Light_Variables: function Lib_Blue_Light_Variables() {
|
|
22
|
-
return Promise.resolve().then(function () {
|
|
23
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/blue/Blue_Light_Variables"));
|
|
24
|
-
});
|
|
25
|
-
},
|
|
26
|
-
Lib_Blue_Dark_Variables: function Lib_Blue_Dark_Variables() {
|
|
27
|
-
return Promise.resolve().then(function () {
|
|
28
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/blue/Blue_Dark_Variables"));
|
|
29
|
-
});
|
|
30
|
-
},
|
|
31
|
-
Lib_Blue_PureDark_Variables: function Lib_Blue_PureDark_Variables() {
|
|
32
|
-
return Promise.resolve().then(function () {
|
|
33
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/blue/Blue_PureDark_Variables"));
|
|
34
|
-
});
|
|
35
|
-
},
|
|
36
|
-
Lib_Green_Light_Variables: function Lib_Green_Light_Variables() {
|
|
37
|
-
return Promise.resolve().then(function () {
|
|
38
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/green/Green_Light_Variables"));
|
|
39
|
-
});
|
|
40
|
-
},
|
|
41
|
-
Lib_Green_Dark_Variables: function Lib_Green_Dark_Variables() {
|
|
42
|
-
return Promise.resolve().then(function () {
|
|
43
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/green/Green_Dark_Variables"));
|
|
44
|
-
});
|
|
45
|
-
},
|
|
46
|
-
Lib_Green_PureDark_Variables: function Lib_Green_PureDark_Variables() {
|
|
47
|
-
return Promise.resolve().then(function () {
|
|
48
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/green/Green_PureDark_Variables"));
|
|
49
|
-
});
|
|
50
|
-
},
|
|
51
|
-
Lib_Orange_Light_Variables: function Lib_Orange_Light_Variables() {
|
|
52
|
-
return Promise.resolve().then(function () {
|
|
53
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/orange/Orange_Light_Variables"));
|
|
54
|
-
});
|
|
55
|
-
},
|
|
56
|
-
Lib_Orange_Dark_Variables: function Lib_Orange_Dark_Variables() {
|
|
57
|
-
return Promise.resolve().then(function () {
|
|
58
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/orange/Orange_Dark_Variables"));
|
|
59
|
-
});
|
|
60
|
-
},
|
|
61
|
-
Lib_Orange_PureDark_Variables: function Lib_Orange_PureDark_Variables() {
|
|
62
|
-
return Promise.resolve().then(function () {
|
|
63
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/orange/Orange_PureDark_Variables"));
|
|
64
|
-
});
|
|
65
|
-
},
|
|
66
|
-
Lib_Red_Light_Variables: function Lib_Red_Light_Variables() {
|
|
67
|
-
return Promise.resolve().then(function () {
|
|
68
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/red/Red_Light_Variables"));
|
|
69
|
-
});
|
|
70
|
-
},
|
|
71
|
-
Lib_Red_Dark_Variables: function Lib_Red_Dark_Variables() {
|
|
72
|
-
return Promise.resolve().then(function () {
|
|
73
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/red/Red_Dark_Variables"));
|
|
74
|
-
});
|
|
75
|
-
},
|
|
76
|
-
Lib_Red_PureDark_Variables: function Lib_Red_PureDark_Variables() {
|
|
77
|
-
return Promise.resolve().then(function () {
|
|
78
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/red/Red_PureDark_Variables"));
|
|
79
|
-
});
|
|
80
|
-
},
|
|
81
|
-
Lib_Yellow_Light_Variables: function Lib_Yellow_Light_Variables() {
|
|
82
|
-
return Promise.resolve().then(function () {
|
|
83
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/yellow/Yellow_Light_Variables"));
|
|
84
|
-
});
|
|
85
|
-
},
|
|
86
|
-
Lib_Yellow_Dark_Variables: function Lib_Yellow_Dark_Variables() {
|
|
87
|
-
return Promise.resolve().then(function () {
|
|
88
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/yellow/Yellow_Dark_Variables"));
|
|
89
|
-
});
|
|
90
|
-
},
|
|
91
|
-
Lib_Yellow_PureDark_Variables: function Lib_Yellow_PureDark_Variables() {
|
|
92
|
-
return Promise.resolve().then(function () {
|
|
93
|
-
return _interopRequireWildcard(require("../libraryChunks/themes/variables/yellow/Yellow_PureDark_Variables"));
|
|
94
|
-
});
|
|
95
|
-
},
|
|
96
21
|
Lib_Blue_Light_Component: function Lib_Blue_Light_Component() {
|
|
97
22
|
return Promise.resolve().then(function () {
|
|
98
23
|
return _interopRequireWildcard(require("../libraryChunks/themes/component/blue/Blue_Light_Component"));
|
|
@@ -320,5 +245,5 @@ var themeColorImports = {
|
|
|
320
245
|
}
|
|
321
246
|
};
|
|
322
247
|
exports.themeColorImports = themeColorImports;
|
|
323
|
-
var themeColorMapping = (_themeColorMapping = {}, _defineProperty(_themeColorMapping, _constants.
|
|
248
|
+
var themeColorMapping = (_themeColorMapping = {}, _defineProperty(_themeColorMapping, _constants.LIBRARY_COMPONENT, (_LIBRARY_COMPONENT = {}, _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_COLOR_BLUE, (_THEME_COLOR_BLUE = {}, _defineProperty(_THEME_COLOR_BLUE, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Blue_Light_Component'), _defineProperty(_THEME_COLOR_BLUE, _constants.THEME_APPEARANCE_DARK, 'Lib_Blue_Dark_Component'), _defineProperty(_THEME_COLOR_BLUE, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Blue_PureDark_Component'), _THEME_COLOR_BLUE)), _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_COLOR_GREEN, (_THEME_COLOR_GREEN = {}, _defineProperty(_THEME_COLOR_GREEN, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Green_Light_Component'), _defineProperty(_THEME_COLOR_GREEN, _constants.THEME_APPEARANCE_DARK, 'Lib_Green_Dark_Component'), _defineProperty(_THEME_COLOR_GREEN, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Green_PureDark_Component'), _THEME_COLOR_GREEN)), _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_COLOR_ORANGE, (_THEME_COLOR_ORANGE = {}, _defineProperty(_THEME_COLOR_ORANGE, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Orange_Light_Component'), _defineProperty(_THEME_COLOR_ORANGE, _constants.THEME_APPEARANCE_DARK, 'Lib_Orange_Dark_Component'), _defineProperty(_THEME_COLOR_ORANGE, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Orange_PureDark_Component'), _THEME_COLOR_ORANGE)), _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_COLOR_RED, (_THEME_COLOR_RED = {}, _defineProperty(_THEME_COLOR_RED, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Red_Light_Component'), _defineProperty(_THEME_COLOR_RED, _constants.THEME_APPEARANCE_DARK, 'Lib_Red_Dark_Component'), _defineProperty(_THEME_COLOR_RED, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Red_PureDark_Component'), _THEME_COLOR_RED)), _defineProperty(_LIBRARY_COMPONENT, _constants.THEME_COLOR_YELLOW, (_THEME_COLOR_YELLOW = {}, _defineProperty(_THEME_COLOR_YELLOW, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Yellow_Light_Component'), _defineProperty(_THEME_COLOR_YELLOW, _constants.THEME_APPEARANCE_DARK, 'Lib_Yellow_Dark_Component'), _defineProperty(_THEME_COLOR_YELLOW, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Yellow_PureDark_Component'), _THEME_COLOR_YELLOW)), _LIBRARY_COMPONENT)), _defineProperty(_themeColorMapping, _constants.LIBRARY_DOT, (_LIBRARY_DOT = {}, _defineProperty(_LIBRARY_DOT, _constants.THEME_COLOR_BLUE, (_THEME_COLOR_BLUE2 = {}, _defineProperty(_THEME_COLOR_BLUE2, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Blue_Light_Dot'), _defineProperty(_THEME_COLOR_BLUE2, _constants.THEME_APPEARANCE_DARK, 'Lib_Blue_Dark_Dot'), _defineProperty(_THEME_COLOR_BLUE2, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Blue_PureDark_Dot'), _THEME_COLOR_BLUE2)), _defineProperty(_LIBRARY_DOT, _constants.THEME_COLOR_GREEN, (_THEME_COLOR_GREEN2 = {}, _defineProperty(_THEME_COLOR_GREEN2, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Green_Light_Dot'), _defineProperty(_THEME_COLOR_GREEN2, _constants.THEME_APPEARANCE_DARK, 'Lib_Green_Dark_Dot'), _defineProperty(_THEME_COLOR_GREEN2, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Green_PureDark_Dot'), _THEME_COLOR_GREEN2)), _defineProperty(_LIBRARY_DOT, _constants.THEME_COLOR_ORANGE, (_THEME_COLOR_ORANGE2 = {}, _defineProperty(_THEME_COLOR_ORANGE2, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Orange_Light_Dot'), _defineProperty(_THEME_COLOR_ORANGE2, _constants.THEME_APPEARANCE_DARK, 'Lib_Orange_Dark_Dot'), _defineProperty(_THEME_COLOR_ORANGE2, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Orange_PureDark_Dot'), _THEME_COLOR_ORANGE2)), _defineProperty(_LIBRARY_DOT, _constants.THEME_COLOR_RED, (_THEME_COLOR_RED2 = {}, _defineProperty(_THEME_COLOR_RED2, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Red_Light_Dot'), _defineProperty(_THEME_COLOR_RED2, _constants.THEME_APPEARANCE_DARK, 'Lib_Red_Dark_Dot'), _defineProperty(_THEME_COLOR_RED2, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Red_PureDark_Dot'), _THEME_COLOR_RED2)), _defineProperty(_LIBRARY_DOT, _constants.THEME_COLOR_YELLOW, (_THEME_COLOR_YELLOW2 = {}, _defineProperty(_THEME_COLOR_YELLOW2, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Yellow_Light_Dot'), _defineProperty(_THEME_COLOR_YELLOW2, _constants.THEME_APPEARANCE_DARK, 'Lib_Yellow_Dark_Dot'), _defineProperty(_THEME_COLOR_YELLOW2, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Yellow_PureDark_Dot'), _THEME_COLOR_YELLOW2)), _LIBRARY_DOT)), _defineProperty(_themeColorMapping, _constants.LIBRARY_SVG, (_LIBRARY_SVG = {}, _defineProperty(_LIBRARY_SVG, _constants.THEME_COLOR_BLUE, (_THEME_COLOR_BLUE3 = {}, _defineProperty(_THEME_COLOR_BLUE3, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Blue_Light_SVG'), _defineProperty(_THEME_COLOR_BLUE3, _constants.THEME_APPEARANCE_DARK, 'Lib_Blue_Dark_SVG'), _defineProperty(_THEME_COLOR_BLUE3, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Blue_PureDark_SVG'), _THEME_COLOR_BLUE3)), _defineProperty(_LIBRARY_SVG, _constants.THEME_COLOR_GREEN, (_THEME_COLOR_GREEN3 = {}, _defineProperty(_THEME_COLOR_GREEN3, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Green_Light_SVG'), _defineProperty(_THEME_COLOR_GREEN3, _constants.THEME_APPEARANCE_DARK, 'Lib_Green_Dark_SVG'), _defineProperty(_THEME_COLOR_GREEN3, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Green_PureDark_SVG'), _THEME_COLOR_GREEN3)), _defineProperty(_LIBRARY_SVG, _constants.THEME_COLOR_ORANGE, (_THEME_COLOR_ORANGE3 = {}, _defineProperty(_THEME_COLOR_ORANGE3, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Orange_Light_SVG'), _defineProperty(_THEME_COLOR_ORANGE3, _constants.THEME_APPEARANCE_DARK, 'Lib_Orange_Dark_SVG'), _defineProperty(_THEME_COLOR_ORANGE3, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Orange_PureDark_SVG'), _THEME_COLOR_ORANGE3)), _defineProperty(_LIBRARY_SVG, _constants.THEME_COLOR_RED, (_THEME_COLOR_RED3 = {}, _defineProperty(_THEME_COLOR_RED3, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Red_Light_SVG'), _defineProperty(_THEME_COLOR_RED3, _constants.THEME_APPEARANCE_DARK, 'Lib_Red_Dark_SVG'), _defineProperty(_THEME_COLOR_RED3, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Red_PureDark_SVG'), _THEME_COLOR_RED3)), _defineProperty(_LIBRARY_SVG, _constants.THEME_COLOR_YELLOW, (_THEME_COLOR_YELLOW3 = {}, _defineProperty(_THEME_COLOR_YELLOW3, _constants.THEME_APPEARANCE_LIGHT, 'Lib_Yellow_Light_SVG'), _defineProperty(_THEME_COLOR_YELLOW3, _constants.THEME_APPEARANCE_DARK, 'Lib_Yellow_Dark_SVG'), _defineProperty(_THEME_COLOR_YELLOW3, _constants.THEME_APPEARANCE_PURE_DARK, 'Lib_Yellow_PureDark_SVG'), _THEME_COLOR_YELLOW3)), _LIBRARY_SVG)), _themeColorMapping);
|
|
324
249
|
exports.themeColorMapping = themeColorMapping;
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
.varClass {
|
|
2
|
-
--icon_color: var(--zdt_comment_iconText);
|
|
3
|
-
}
|
|
4
|
-
.container {
|
|
5
|
-
composes: varClass;
|
|
6
|
-
composes: inlineBlockMiddle from '../listCommon.module.css';
|
|
7
|
-
position: relative;
|
|
8
|
-
color: var(--icon_color);
|
|
9
|
-
padding: 0 var(--zd_size2) ;
|
|
10
|
-
cursor: pointer;
|
|
11
|
-
}
|
|
12
|
-
.container:hover {
|
|
13
|
-
--icon_color: var(--zdt_comment_hover_iconText);
|
|
14
|
-
}
|
|
15
|
-
.count {
|
|
16
|
-
position: absolute;
|
|
17
|
-
top: var(--zd_size1) ;
|
|
18
|
-
font-size: var(--zd_font_size9) ;
|
|
19
|
-
text-align: center;
|
|
20
|
-
}
|
|
21
|
-
[dir=ltr] .count {
|
|
22
|
-
left: 100% ;
|
|
23
|
-
}
|
|
24
|
-
[dir=rtl] .count {
|
|
25
|
-
right: 100% ;
|
|
26
|
-
}
|
|
27
|
-
.commentIcon {
|
|
28
|
-
font-size: var(--zd_font_size13) ;
|
|
29
|
-
}
|
|
1
|
+
.varClass {
|
|
2
|
+
--icon_color: var(--zdt_comment_iconText);
|
|
3
|
+
}
|
|
4
|
+
.container {
|
|
5
|
+
composes: varClass;
|
|
6
|
+
composes: inlineBlockMiddle from '../listCommon.module.css';
|
|
7
|
+
position: relative;
|
|
8
|
+
color: var(--icon_color);
|
|
9
|
+
padding: 0 var(--zd_size2) ;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
.container:hover {
|
|
13
|
+
--icon_color: var(--zdt_comment_hover_iconText);
|
|
14
|
+
}
|
|
15
|
+
.count {
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: var(--zd_size1) ;
|
|
18
|
+
font-size: var(--zd_font_size9) ;
|
|
19
|
+
text-align: center;
|
|
20
|
+
}
|
|
21
|
+
[dir=ltr] .count {
|
|
22
|
+
left: 100% ;
|
|
23
|
+
}
|
|
24
|
+
[dir=rtl] .count {
|
|
25
|
+
right: 100% ;
|
|
26
|
+
}
|
|
27
|
+
.commentIcon {
|
|
28
|
+
font-size: var(--zd_font_size13) ;
|
|
29
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
.varClass {
|
|
2
|
-
--dotColor: var(--zdt_dot_text)
|
|
3
|
-
}
|
|
4
|
-
.dot {
|
|
5
|
-
composes: varClass;
|
|
6
|
-
font-size: var(--zd_font_size16) ;
|
|
7
|
-
color: var(--dotColor);
|
|
8
|
-
transform: perspective(1px);
|
|
9
|
-
}
|
|
10
|
-
.list {
|
|
11
|
-
margin: 0 var(--zd_size6) ;
|
|
12
|
-
}
|
|
13
|
-
.minimalList {
|
|
14
|
-
margin: 0 var(--zd_size6) ;
|
|
15
|
-
}
|
|
1
|
+
.varClass {
|
|
2
|
+
--dotColor: var(--zdt_dot_text)
|
|
3
|
+
}
|
|
4
|
+
.dot {
|
|
5
|
+
composes: varClass;
|
|
6
|
+
font-size: var(--zd_font_size16) ;
|
|
7
|
+
color: var(--dotColor);
|
|
8
|
+
transform: perspective(1px);
|
|
9
|
+
}
|
|
10
|
+
.list {
|
|
11
|
+
margin: 0 var(--zd_size6) ;
|
|
12
|
+
}
|
|
13
|
+
.minimalList {
|
|
14
|
+
margin: 0 var(--zd_size6) ;
|
|
15
|
+
}
|