pds-dev-kit-web 1.3.8 → 1.3.11
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/src/common/assets/icons/line/ArrowLeftThin.d.ts +4 -0
- package/dist/src/common/assets/icons/line/ArrowLeftThin.js +34 -0
- package/dist/src/common/assets/icons/line/ArrowRightThin.d.ts +4 -0
- package/dist/src/common/assets/icons/line/ArrowRightThin.js +34 -0
- package/dist/src/common/assets/icons/line/Download.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Download.js +34 -0
- package/dist/src/common/assets/icons/line/Folder.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Folder.js +34 -0
- package/dist/src/common/assets/icons/line/index.d.ts +4 -0
- package/dist/src/common/assets/icons/line/index.js +8 -0
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +4 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +4 -1
- package/dist/src/common/styles/colorSet/UIColor.json +8 -1
- package/dist/src/common/styles/colorSet/index.d.ts +166 -153
- package/dist/src/common/styles/colorSet/index.js +3 -3
- package/dist/src/common/styles/colorSet/ui-type.d.ts +7 -0
- package/dist/src/common/styles/theme.js +1 -1
- package/dist/src/common/styles/ui-colors.d.ts +3 -1
- package/dist/src/common/styles/ui-colors.js +5 -4
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +3 -2
- package/dist/src/desktop/components/AdminList/AdminList.js +53 -17
- package/dist/src/desktop/components/AdminList/HeaderRow.d.ts +1 -1
- package/dist/src/desktop/components/AdminList/HeaderRow.js +2 -2
- package/dist/src/desktop/components/AdminListItem/AdminListItem.d.ts +1 -1
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +9 -8
- package/dist/src/desktop/components/Checkbox/Checkbox.js +2 -1
- package/dist/src/desktop/components/DesktopBasicModal/DesktopBasicModal.d.ts +5 -1
- package/dist/src/desktop/components/DesktopBasicModal/DesktopBasicModal.js +21 -18
- package/dist/src/desktop/components/Dropdown/Dropdown.d.ts +2 -2
- package/dist/src/desktop/components/Dropdown/Dropdown.js +3 -3
- package/dist/src/mobile/components/Dropdown/Dropdown.d.ts +2 -2
- package/dist/src/mobile/components/Dropdown/Dropdown.js +2 -2
- package/dist/src/mobile/components/MobileBasicModal/MobileBasicModal.d.ts +2 -1
- package/dist/src/mobile/components/MobileBasicModal/MobileBasicModal.js +18 -15
- package/package.json +1 -1
- package/release-note.md +5 -10
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var ArrowLeftThin = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: ".5", d: "M14.5773,19.5001 L7.6663,12.5891 C7.3413,12.2641 7.3413,11.7361 7.6663,11.4111 L14.5773,4.5001" })));
|
|
33
|
+
};
|
|
34
|
+
exports.default = ArrowLeftThin;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var ArrowRightThin = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: ".5", d: "M9.4226,4.4998 L16.3336,11.4108 C16.6586,11.7358 16.6586,12.2638 16.3336,12.5888 L9.4226,19.4998" })));
|
|
33
|
+
};
|
|
34
|
+
exports.default = ArrowRightThin;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var Download = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeWidth: "1.5", d: "M2.9862,17.9383317 L2.9862,19.0423317 C2.9862,19.7843317 3.6952,20.3863317 4.5702,20.3863317 L19.4292,20.3863317 C20.3042,20.3863317 21.0142,19.7843317 21.0142,19.0423317 L21.0142,17.5903317 M6.8379,10.9865317 L11.9999,16.4265317 L17.5199,10.9865317 M12,16.4265317 L12,3.4" })));
|
|
33
|
+
};
|
|
34
|
+
exports.default = Download;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var Folder = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("path", { fill: "none", stroke: color, strokeWidth: "1.5", d: "M22.0516,11.7128 L20.6576,17.8908 C20.4536,18.8198 19.6486,19.4788 18.7196,19.4788 L4.9806,19.4788 C3.7006,19.4788 2.7486,18.2438 3.0426,16.9488 L4.4256,10.7718 C4.6416,9.8418 5.4456,9.1708 6.3636,9.1708 L20.1016,9.1708 C20.1696,9.1708 20.2376,9.1708 20.3056,9.1948 C21.4966,9.3128 22.3236,10.4888 22.0516,11.7128 Z M20.306,8.3827 L20.306,9.1947 C20.238,9.1707 20.17,9.1707 20.102,9.1707 L6.364,9.1707 C5.446,9.1707 4.641,9.8417 4.426,10.7717 L3.043,16.9487 C2.748,18.2437 3.7,19.4787 4.981,19.4787 L4.879,19.4787 C3.621,19.4787 2.59,18.4197 2.59,17.1137 L2.59,6.3467 C2.59,5.0287 3.621,3.9697 4.879,3.9697 L7.588,3.9697 C8.296,3.9697 8.981,4.2187 9.524,4.6737 L10.601,5.5767 C10.932,5.8537 11.35,6.0057 11.782,6.0057 L18.016,6.0057 C19.275,6.0057 20.306,7.0767 20.306,8.3827 Z" })));
|
|
33
|
+
};
|
|
34
|
+
exports.default = Folder;
|
|
@@ -5,9 +5,11 @@ declare const lineIcons: {
|
|
|
5
5
|
readonly ic_arrow_left: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
6
6
|
readonly ic_arrow_left_2: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
7
7
|
readonly ic_arrow_left_bold: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
8
|
+
readonly ic_arrow_left_thin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
8
9
|
readonly ic_arrow_right: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
9
10
|
readonly ic_arrow_right_2: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
10
11
|
readonly ic_arrow_right_bold: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
12
|
+
readonly ic_arrow_right_thin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
11
13
|
readonly ic_arrow_round_left: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
12
14
|
readonly ic_arrow_up: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
13
15
|
readonly ic_arrow_up_bold: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -34,6 +36,7 @@ declare const lineIcons: {
|
|
|
34
36
|
readonly ic_dashboard: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
35
37
|
readonly ic_design_preference: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
36
38
|
readonly ic_developer: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
39
|
+
readonly ic_download: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
37
40
|
readonly ic_edit: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
38
41
|
readonly ic_editor: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
39
42
|
readonly ic_end: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -41,6 +44,7 @@ declare const lineIcons: {
|
|
|
41
44
|
readonly ic_eye: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
42
45
|
readonly ic_eye_close: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
43
46
|
readonly ic_filter: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
47
|
+
readonly ic_folder: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
44
48
|
readonly ic_information: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
45
49
|
readonly ic_language: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
46
50
|
readonly ic_links: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -8,9 +8,11 @@ var ArrowDownBold_1 = __importDefault(require("./ArrowDownBold"));
|
|
|
8
8
|
var ArrowLeft_1 = __importDefault(require("./ArrowLeft"));
|
|
9
9
|
var ArrowLeft2_1 = __importDefault(require("./ArrowLeft2"));
|
|
10
10
|
var ArrowLeftBold_1 = __importDefault(require("./ArrowLeftBold"));
|
|
11
|
+
var ArrowLeftThin_1 = __importDefault(require("./ArrowLeftThin"));
|
|
11
12
|
var ArrowRight_1 = __importDefault(require("./ArrowRight"));
|
|
12
13
|
var ArrowRight2_1 = __importDefault(require("./ArrowRight2"));
|
|
13
14
|
var ArrowRightBold_1 = __importDefault(require("./ArrowRightBold"));
|
|
15
|
+
var ArrowRightThin_1 = __importDefault(require("./ArrowRightThin"));
|
|
14
16
|
var ArrowRoundLeft_1 = __importDefault(require("./ArrowRoundLeft"));
|
|
15
17
|
var ArrowUp_1 = __importDefault(require("./ArrowUp"));
|
|
16
18
|
var ArrowUpBold_1 = __importDefault(require("./ArrowUpBold"));
|
|
@@ -37,6 +39,7 @@ var Cs_1 = __importDefault(require("./Cs"));
|
|
|
37
39
|
var Dashboard_1 = __importDefault(require("./Dashboard"));
|
|
38
40
|
var DesignPreference_1 = __importDefault(require("./DesignPreference"));
|
|
39
41
|
var Developer_1 = __importDefault(require("./Developer"));
|
|
42
|
+
var Download_1 = __importDefault(require("./Download"));
|
|
40
43
|
var Edit_1 = __importDefault(require("./Edit"));
|
|
41
44
|
var Editor_1 = __importDefault(require("./Editor"));
|
|
42
45
|
var End_1 = __importDefault(require("./End"));
|
|
@@ -44,6 +47,7 @@ var Error_1 = __importDefault(require("./Error"));
|
|
|
44
47
|
var Eye_1 = __importDefault(require("./Eye"));
|
|
45
48
|
var EyeClose_1 = __importDefault(require("./EyeClose"));
|
|
46
49
|
var Filter_1 = __importDefault(require("./Filter"));
|
|
50
|
+
var Folder_1 = __importDefault(require("./Folder"));
|
|
47
51
|
var Information_1 = __importDefault(require("./Information"));
|
|
48
52
|
var Language_1 = __importDefault(require("./Language"));
|
|
49
53
|
var Links_1 = __importDefault(require("./Links"));
|
|
@@ -138,9 +142,11 @@ var lineIcons = {
|
|
|
138
142
|
ic_arrow_left: ArrowLeft_1.default,
|
|
139
143
|
ic_arrow_left_2: ArrowLeft2_1.default,
|
|
140
144
|
ic_arrow_left_bold: ArrowLeftBold_1.default,
|
|
145
|
+
ic_arrow_left_thin: ArrowLeftThin_1.default,
|
|
141
146
|
ic_arrow_right: ArrowRight_1.default,
|
|
142
147
|
ic_arrow_right_2: ArrowRight2_1.default,
|
|
143
148
|
ic_arrow_right_bold: ArrowRightBold_1.default,
|
|
149
|
+
ic_arrow_right_thin: ArrowRightThin_1.default,
|
|
144
150
|
ic_arrow_round_left: ArrowRoundLeft_1.default,
|
|
145
151
|
ic_arrow_up: ArrowUp_1.default,
|
|
146
152
|
ic_arrow_up_bold: ArrowUpBold_1.default,
|
|
@@ -167,6 +173,7 @@ var lineIcons = {
|
|
|
167
173
|
ic_dashboard: Dashboard_1.default,
|
|
168
174
|
ic_design_preference: DesignPreference_1.default,
|
|
169
175
|
ic_developer: Developer_1.default,
|
|
176
|
+
ic_download: Download_1.default,
|
|
170
177
|
ic_edit: Edit_1.default,
|
|
171
178
|
ic_editor: Editor_1.default,
|
|
172
179
|
ic_end: End_1.default,
|
|
@@ -174,6 +181,7 @@ var lineIcons = {
|
|
|
174
181
|
ic_eye: Eye_1.default,
|
|
175
182
|
ic_eye_close: EyeClose_1.default,
|
|
176
183
|
ic_filter: Filter_1.default,
|
|
184
|
+
ic_folder: Folder_1.default,
|
|
177
185
|
ic_information: Information_1.default,
|
|
178
186
|
ic_language: Language_1.default,
|
|
179
187
|
ic_links: Links_1.default,
|
|
@@ -149,5 +149,8 @@
|
|
|
149
149
|
"usr_menu_active": "darkblue500",
|
|
150
150
|
"usr_menu_background": "grey950",
|
|
151
151
|
"sys_cpnt_base_white_opacity50": "white/opacity50",
|
|
152
|
-
"sys_widget_dark_01": "grey950"
|
|
152
|
+
"sys_widget_dark_01": "grey950",
|
|
153
|
+
"usr_menu_background_gradient_opacity00": "grey950/opacity00",
|
|
154
|
+
"sys_border_line_white": "white",
|
|
155
|
+
"sys_component_base_white_opacity10": "white/opacity10"
|
|
153
156
|
}
|
|
@@ -149,5 +149,8 @@
|
|
|
149
149
|
"usr_menu_active": "blue500",
|
|
150
150
|
"usr_menu_background": "white",
|
|
151
151
|
"sys_cpnt_base_white_opacity50": "white/opacity50",
|
|
152
|
-
"sys_widget_dark_01": "grey900"
|
|
152
|
+
"sys_widget_dark_01": "grey900",
|
|
153
|
+
"usr_menu_background_gradient_opacity00": "white/opacity00",
|
|
154
|
+
"sys_border_line_white": "white",
|
|
155
|
+
"sys_component_base_white_opacity10": "white/opacity10"
|
|
153
156
|
}
|
|
@@ -479,5 +479,12 @@
|
|
|
479
479
|
"ui_menu_active": "usr_menu_active",
|
|
480
480
|
"ui_menu_background": "usr_menu_background",
|
|
481
481
|
"ui_cpnt_video_progress_base": "sys_cpnt_base_white_opacity50",
|
|
482
|
-
"ui_cpnt_icon_sys_dark": "sys_widget_dark_01"
|
|
482
|
+
"ui_cpnt_icon_sys_dark": "sys_widget_dark_01",
|
|
483
|
+
"ui_menu_background_gradient_opacity00": "usr_menu_background_gradient_opacity00",
|
|
484
|
+
"ui_cpnt_dropdown_border_white_normal": "sys_border_line_white",
|
|
485
|
+
"ui_cpnt_dropdown_text_white_enabled": "sys_text_white",
|
|
486
|
+
"ui_cpnt_dropdown_text_white_hint": "sys_text_white",
|
|
487
|
+
"ui_cpnt_dropdown_icon_white_default": "sys_widget_white",
|
|
488
|
+
"ui_cpnt_dropdown_border_white_focus": "sys_border_line_03",
|
|
489
|
+
"ui_cpnt_dropdown_base_white_normal": "sys_component_base_white_opacity10"
|
|
483
490
|
}
|
|
@@ -56,159 +56,6 @@ declare const colorSet: {
|
|
|
56
56
|
grey30: string;
|
|
57
57
|
opacity95: string;
|
|
58
58
|
};
|
|
59
|
-
readonly PaletteColor_Dark: {
|
|
60
|
-
sys_container_background_01: string;
|
|
61
|
-
sys_container_background_02: string;
|
|
62
|
-
sys_container_background_03: string;
|
|
63
|
-
sys_background_dimmed: string;
|
|
64
|
-
sys_text_grey_01: string;
|
|
65
|
-
sys_text_grey_02: string;
|
|
66
|
-
sys_text_grey_03: string;
|
|
67
|
-
sys_text_white: string;
|
|
68
|
-
sys_text_brand_primary: string;
|
|
69
|
-
sys_text_error_01: string;
|
|
70
|
-
sys_widget_grey_01: string;
|
|
71
|
-
sys_widget_grey_02: string;
|
|
72
|
-
sys_widget_grey_03: string;
|
|
73
|
-
sys_widget_primary_01: string;
|
|
74
|
-
sys_widget_error_01: string;
|
|
75
|
-
sys_widget_warning_01: string;
|
|
76
|
-
sys_widget_success_01: string;
|
|
77
|
-
sys_widget_white: string;
|
|
78
|
-
sys_border_area_01: string;
|
|
79
|
-
sys_border_line_01: string;
|
|
80
|
-
sys_border_line_02: string;
|
|
81
|
-
sys_border_line_03: string;
|
|
82
|
-
sys_border_line_04: string;
|
|
83
|
-
sys_border_line_05: string;
|
|
84
|
-
sys_component_base_01: string;
|
|
85
|
-
sys_component_base_02: string;
|
|
86
|
-
sys_component_base_03: string;
|
|
87
|
-
sys_component_base_red: string;
|
|
88
|
-
sys_component_base_white: string;
|
|
89
|
-
sys_component_base_white_opacity00: string;
|
|
90
|
-
sys_on_base_white_opacity00: string;
|
|
91
|
-
sys_on_base_white_opacity30: string;
|
|
92
|
-
sys_on_base_black_opacity20: string;
|
|
93
|
-
usr_brand_primary: string;
|
|
94
|
-
usr_brand_secondary: string;
|
|
95
|
-
usr_brand_secondary_variant: string;
|
|
96
|
-
usr_background: string;
|
|
97
|
-
usr_surface: string;
|
|
98
|
-
usr_border: string;
|
|
99
|
-
usr_on_brand_primary: string;
|
|
100
|
-
usr_on_brand_secondary: string;
|
|
101
|
-
usr_on_background: string;
|
|
102
|
-
usr_on_surface: string;
|
|
103
|
-
sys_widget_status_active_01: string;
|
|
104
|
-
sys_text_success_01: string;
|
|
105
|
-
sys_widget_grey_04: string;
|
|
106
|
-
sys_text_active: string;
|
|
107
|
-
sys_component_base_blue: string;
|
|
108
|
-
sys_on_base_black_opacity65: string;
|
|
109
|
-
sys_component_base_04: string;
|
|
110
|
-
sys_component_base_black: string;
|
|
111
|
-
sys_component_base_black_opacity00: string;
|
|
112
|
-
usr_text_brand_secondary_variant: string;
|
|
113
|
-
usr_text_brand_primary: string;
|
|
114
|
-
usr_text_brand_on_primary: string;
|
|
115
|
-
sys_text_brand_secondary_variant: string;
|
|
116
|
-
sys_component_base_navy: string;
|
|
117
|
-
sys_widget_lightgreen: string;
|
|
118
|
-
sys_border_line_06: string;
|
|
119
|
-
sys_background_dimmed_20: string;
|
|
120
|
-
sys_widget_pink: string;
|
|
121
|
-
sys_widget_primary_opacity20: string;
|
|
122
|
-
sys_widget_secondary_variant_01: string;
|
|
123
|
-
usr_component_base_brand_primary_opacity10: string;
|
|
124
|
-
sys_temp_grey_01: string;
|
|
125
|
-
sys_temp_grey_02: string;
|
|
126
|
-
sys_temp_grey_03: string;
|
|
127
|
-
sys_temp_grey_04: string;
|
|
128
|
-
sys_temp_grey_05: string;
|
|
129
|
-
sys_temp_white: string;
|
|
130
|
-
sys_temp_primary_01: string;
|
|
131
|
-
sys_temp_secondary_01: string;
|
|
132
|
-
sys_temp_red: string;
|
|
133
|
-
sys_temp_white_opacity_00: string;
|
|
134
|
-
sys_temp_dimmed: string;
|
|
135
|
-
sys_temp_black: string;
|
|
136
|
-
sys_temp_primary_02: string;
|
|
137
|
-
sys_temp_primary_03: string;
|
|
138
|
-
sys_temp_secondary_02: string;
|
|
139
|
-
sys_temp_lightgreen_01: string;
|
|
140
|
-
sys_text_grey_04: string;
|
|
141
|
-
sys_papp_post_social_background: string;
|
|
142
|
-
sys_papp_post_notice_background: string;
|
|
143
|
-
sys_papp_post_free_background: string;
|
|
144
|
-
sys_papp_vod_background: string;
|
|
145
|
-
sys_papp_vodplus_background: string;
|
|
146
|
-
sys_papp_live_background: string;
|
|
147
|
-
sys_selcontrols_base_off_disabled: string;
|
|
148
|
-
sys_selcontrols_base_on_disabled: string;
|
|
149
|
-
sys_component_base_blue_opacity10: string;
|
|
150
|
-
sys_component_base_05: string;
|
|
151
|
-
sys_background_dimmed_65: string;
|
|
152
|
-
sys_temp_grey_06: string;
|
|
153
|
-
sys_on_base_white_opacity10: string;
|
|
154
|
-
sys_on_base_black_opacity10: string;
|
|
155
|
-
sys_component_base_05_opacity00: string;
|
|
156
|
-
sys_papp_post_notice_link: string;
|
|
157
|
-
sys_component_base_navy_light: string;
|
|
158
|
-
sys_component_base_orange: string;
|
|
159
|
-
sys_component_base_grey: string;
|
|
160
|
-
sys_component_base_black_opacity80: string;
|
|
161
|
-
sys_text_darkgrey_02: string;
|
|
162
|
-
sys_border_line_darktheme_01: string;
|
|
163
|
-
sys_border_line_darktheme_02: string;
|
|
164
|
-
sys_component_base_darktheme_01: string;
|
|
165
|
-
sys_component_base_darktheme_02: string;
|
|
166
|
-
sys_component_base_darktheme_03: string;
|
|
167
|
-
sys_text_grey_darktheme_01: string;
|
|
168
|
-
sys_text_grey_darktheme_02: string;
|
|
169
|
-
sys_text_grey_darktheme_03: string;
|
|
170
|
-
sys_widget_grey_darktheme_01: string;
|
|
171
|
-
sys_widget_grey_darktheme_02: string;
|
|
172
|
-
sys_widget_grey_darktheme_03: string;
|
|
173
|
-
sys_component_base_green: string;
|
|
174
|
-
sys_text_error_darktheme_01: string;
|
|
175
|
-
sys_border_line_darktheme_03: string;
|
|
176
|
-
sys_border_line_darktheme_04: string;
|
|
177
|
-
usr_widget_brand_primary_darktheme_01: string;
|
|
178
|
-
usr_text_brand_primary_darktheme_01: string;
|
|
179
|
-
sys_component_base_black_opacity50: string;
|
|
180
|
-
sys_component_base_card: string;
|
|
181
|
-
sys_cpnt_textlabel_sys_brand_primary_opacity50: string;
|
|
182
|
-
sys_widget_green_01: string;
|
|
183
|
-
sys_component_base_black_opacity30: string;
|
|
184
|
-
sys_area_background: string;
|
|
185
|
-
sys_border_white_opacity30: string;
|
|
186
|
-
sys_container_background_wt: string;
|
|
187
|
-
sys_channeldesc_grey_03: string;
|
|
188
|
-
sys_channeldesc_border_grey_03: string;
|
|
189
|
-
sys_gradient_base_01: string;
|
|
190
|
-
sys_gradient_base_01_opacity00: string;
|
|
191
|
-
sys_channeldesc_background: string;
|
|
192
|
-
sys_channeldesc_bottomsheet_base: string;
|
|
193
|
-
sys_channeldesc_bottomsheet_border: string;
|
|
194
|
-
sys_channeldesc_contents_base: string;
|
|
195
|
-
sys_channeldesc_dimmed: string;
|
|
196
|
-
sys_gradient_base_01_opacity50: string;
|
|
197
|
-
sys_gradient_base_01_opacity75: string;
|
|
198
|
-
sys_gradient_base_01_opacity40: string;
|
|
199
|
-
sys_widget_black: string;
|
|
200
|
-
usr_temp_primary_01: string;
|
|
201
|
-
sys_cpnt_sheet_base_02_opacity50: string;
|
|
202
|
-
usr_menu_primarymenu_main: string;
|
|
203
|
-
usr_menu_primarymenu_sub: string;
|
|
204
|
-
usr_menu_secondarymenu_main: string;
|
|
205
|
-
usr_menu_secondarymenu_sub: string;
|
|
206
|
-
usr_menu_hover: string;
|
|
207
|
-
usr_menu_active: string;
|
|
208
|
-
usr_menu_background: string;
|
|
209
|
-
sys_cpnt_base_white_opacity50: string;
|
|
210
|
-
sys_widget_dark_01: string;
|
|
211
|
-
};
|
|
212
59
|
readonly PaletteColor_light: {
|
|
213
60
|
sys_container_background_01: string;
|
|
214
61
|
sys_container_background_02: string;
|
|
@@ -361,6 +208,9 @@ declare const colorSet: {
|
|
|
361
208
|
usr_menu_background: string;
|
|
362
209
|
sys_cpnt_base_white_opacity50: string;
|
|
363
210
|
sys_widget_dark_01: string;
|
|
211
|
+
usr_menu_background_gradient_opacity00: string;
|
|
212
|
+
sys_border_line_white: string;
|
|
213
|
+
sys_component_base_white_opacity10: string;
|
|
364
214
|
};
|
|
365
215
|
readonly UIColor: {
|
|
366
216
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -844,6 +694,169 @@ declare const colorSet: {
|
|
|
844
694
|
ui_menu_background: string;
|
|
845
695
|
ui_cpnt_video_progress_base: string;
|
|
846
696
|
ui_cpnt_icon_sys_dark: string;
|
|
697
|
+
ui_menu_background_gradient_opacity00: string;
|
|
698
|
+
ui_cpnt_dropdown_border_white_normal: string;
|
|
699
|
+
ui_cpnt_dropdown_text_white_enabled: string;
|
|
700
|
+
ui_cpnt_dropdown_text_white_hint: string;
|
|
701
|
+
ui_cpnt_dropdown_icon_white_default: string;
|
|
702
|
+
ui_cpnt_dropdown_border_white_focus: string;
|
|
703
|
+
ui_cpnt_dropdown_base_white_normal: string;
|
|
704
|
+
};
|
|
705
|
+
readonly PaletteColor_Dark: {
|
|
706
|
+
sys_container_background_01: string;
|
|
707
|
+
sys_container_background_02: string;
|
|
708
|
+
sys_container_background_03: string;
|
|
709
|
+
sys_background_dimmed: string;
|
|
710
|
+
sys_text_grey_01: string;
|
|
711
|
+
sys_text_grey_02: string;
|
|
712
|
+
sys_text_grey_03: string;
|
|
713
|
+
sys_text_white: string;
|
|
714
|
+
sys_text_brand_primary: string;
|
|
715
|
+
sys_text_error_01: string;
|
|
716
|
+
sys_widget_grey_01: string;
|
|
717
|
+
sys_widget_grey_02: string;
|
|
718
|
+
sys_widget_grey_03: string;
|
|
719
|
+
sys_widget_primary_01: string;
|
|
720
|
+
sys_widget_error_01: string;
|
|
721
|
+
sys_widget_warning_01: string;
|
|
722
|
+
sys_widget_success_01: string;
|
|
723
|
+
sys_widget_white: string;
|
|
724
|
+
sys_border_area_01: string;
|
|
725
|
+
sys_border_line_01: string;
|
|
726
|
+
sys_border_line_02: string;
|
|
727
|
+
sys_border_line_03: string;
|
|
728
|
+
sys_border_line_04: string;
|
|
729
|
+
sys_border_line_05: string;
|
|
730
|
+
sys_component_base_01: string;
|
|
731
|
+
sys_component_base_02: string;
|
|
732
|
+
sys_component_base_03: string;
|
|
733
|
+
sys_component_base_red: string;
|
|
734
|
+
sys_component_base_white: string;
|
|
735
|
+
sys_component_base_white_opacity00: string;
|
|
736
|
+
sys_on_base_white_opacity00: string;
|
|
737
|
+
sys_on_base_white_opacity30: string;
|
|
738
|
+
sys_on_base_black_opacity20: string;
|
|
739
|
+
usr_brand_primary: string;
|
|
740
|
+
usr_brand_secondary: string;
|
|
741
|
+
usr_brand_secondary_variant: string;
|
|
742
|
+
usr_background: string;
|
|
743
|
+
usr_surface: string;
|
|
744
|
+
usr_border: string;
|
|
745
|
+
usr_on_brand_primary: string;
|
|
746
|
+
usr_on_brand_secondary: string;
|
|
747
|
+
usr_on_background: string;
|
|
748
|
+
usr_on_surface: string;
|
|
749
|
+
sys_widget_status_active_01: string;
|
|
750
|
+
sys_text_success_01: string;
|
|
751
|
+
sys_widget_grey_04: string;
|
|
752
|
+
sys_text_active: string;
|
|
753
|
+
sys_component_base_blue: string;
|
|
754
|
+
sys_on_base_black_opacity65: string;
|
|
755
|
+
sys_component_base_04: string;
|
|
756
|
+
sys_component_base_black: string;
|
|
757
|
+
sys_component_base_black_opacity00: string;
|
|
758
|
+
usr_text_brand_secondary_variant: string;
|
|
759
|
+
usr_text_brand_primary: string;
|
|
760
|
+
usr_text_brand_on_primary: string;
|
|
761
|
+
sys_text_brand_secondary_variant: string;
|
|
762
|
+
sys_component_base_navy: string;
|
|
763
|
+
sys_widget_lightgreen: string;
|
|
764
|
+
sys_border_line_06: string;
|
|
765
|
+
sys_background_dimmed_20: string;
|
|
766
|
+
sys_widget_pink: string;
|
|
767
|
+
sys_widget_primary_opacity20: string;
|
|
768
|
+
sys_widget_secondary_variant_01: string;
|
|
769
|
+
usr_component_base_brand_primary_opacity10: string;
|
|
770
|
+
sys_temp_grey_01: string;
|
|
771
|
+
sys_temp_grey_02: string;
|
|
772
|
+
sys_temp_grey_03: string;
|
|
773
|
+
sys_temp_grey_04: string;
|
|
774
|
+
sys_temp_grey_05: string;
|
|
775
|
+
sys_temp_white: string;
|
|
776
|
+
sys_temp_primary_01: string;
|
|
777
|
+
sys_temp_secondary_01: string;
|
|
778
|
+
sys_temp_red: string;
|
|
779
|
+
sys_temp_white_opacity_00: string;
|
|
780
|
+
sys_temp_dimmed: string;
|
|
781
|
+
sys_temp_black: string;
|
|
782
|
+
sys_temp_primary_02: string;
|
|
783
|
+
sys_temp_primary_03: string;
|
|
784
|
+
sys_temp_secondary_02: string;
|
|
785
|
+
sys_temp_lightgreen_01: string;
|
|
786
|
+
sys_text_grey_04: string;
|
|
787
|
+
sys_papp_post_social_background: string;
|
|
788
|
+
sys_papp_post_notice_background: string;
|
|
789
|
+
sys_papp_post_free_background: string;
|
|
790
|
+
sys_papp_vod_background: string;
|
|
791
|
+
sys_papp_vodplus_background: string;
|
|
792
|
+
sys_papp_live_background: string;
|
|
793
|
+
sys_selcontrols_base_off_disabled: string;
|
|
794
|
+
sys_selcontrols_base_on_disabled: string;
|
|
795
|
+
sys_component_base_blue_opacity10: string;
|
|
796
|
+
sys_component_base_05: string;
|
|
797
|
+
sys_background_dimmed_65: string;
|
|
798
|
+
sys_temp_grey_06: string;
|
|
799
|
+
sys_on_base_white_opacity10: string;
|
|
800
|
+
sys_on_base_black_opacity10: string;
|
|
801
|
+
sys_component_base_05_opacity00: string;
|
|
802
|
+
sys_papp_post_notice_link: string;
|
|
803
|
+
sys_component_base_navy_light: string;
|
|
804
|
+
sys_component_base_orange: string;
|
|
805
|
+
sys_component_base_grey: string;
|
|
806
|
+
sys_component_base_black_opacity80: string;
|
|
807
|
+
sys_text_darkgrey_02: string;
|
|
808
|
+
sys_border_line_darktheme_01: string;
|
|
809
|
+
sys_border_line_darktheme_02: string;
|
|
810
|
+
sys_component_base_darktheme_01: string;
|
|
811
|
+
sys_component_base_darktheme_02: string;
|
|
812
|
+
sys_component_base_darktheme_03: string;
|
|
813
|
+
sys_text_grey_darktheme_01: string;
|
|
814
|
+
sys_text_grey_darktheme_02: string;
|
|
815
|
+
sys_text_grey_darktheme_03: string;
|
|
816
|
+
sys_widget_grey_darktheme_01: string;
|
|
817
|
+
sys_widget_grey_darktheme_02: string;
|
|
818
|
+
sys_widget_grey_darktheme_03: string;
|
|
819
|
+
sys_component_base_green: string;
|
|
820
|
+
sys_text_error_darktheme_01: string;
|
|
821
|
+
sys_border_line_darktheme_03: string;
|
|
822
|
+
sys_border_line_darktheme_04: string;
|
|
823
|
+
usr_widget_brand_primary_darktheme_01: string;
|
|
824
|
+
usr_text_brand_primary_darktheme_01: string;
|
|
825
|
+
sys_component_base_black_opacity50: string;
|
|
826
|
+
sys_component_base_card: string;
|
|
827
|
+
sys_cpnt_textlabel_sys_brand_primary_opacity50: string;
|
|
828
|
+
sys_widget_green_01: string;
|
|
829
|
+
sys_component_base_black_opacity30: string;
|
|
830
|
+
sys_area_background: string;
|
|
831
|
+
sys_border_white_opacity30: string;
|
|
832
|
+
sys_container_background_wt: string;
|
|
833
|
+
sys_channeldesc_grey_03: string;
|
|
834
|
+
sys_channeldesc_border_grey_03: string;
|
|
835
|
+
sys_gradient_base_01: string;
|
|
836
|
+
sys_gradient_base_01_opacity00: string;
|
|
837
|
+
sys_channeldesc_background: string;
|
|
838
|
+
sys_channeldesc_bottomsheet_base: string;
|
|
839
|
+
sys_channeldesc_bottomsheet_border: string;
|
|
840
|
+
sys_channeldesc_contents_base: string;
|
|
841
|
+
sys_channeldesc_dimmed: string;
|
|
842
|
+
sys_gradient_base_01_opacity50: string;
|
|
843
|
+
sys_gradient_base_01_opacity75: string;
|
|
844
|
+
sys_gradient_base_01_opacity40: string;
|
|
845
|
+
sys_widget_black: string;
|
|
846
|
+
usr_temp_primary_01: string;
|
|
847
|
+
sys_cpnt_sheet_base_02_opacity50: string;
|
|
848
|
+
usr_menu_primarymenu_main: string;
|
|
849
|
+
usr_menu_primarymenu_sub: string;
|
|
850
|
+
usr_menu_secondarymenu_main: string;
|
|
851
|
+
usr_menu_secondarymenu_sub: string;
|
|
852
|
+
usr_menu_hover: string;
|
|
853
|
+
usr_menu_active: string;
|
|
854
|
+
usr_menu_background: string;
|
|
855
|
+
sys_cpnt_base_white_opacity50: string;
|
|
856
|
+
sys_widget_dark_01: string;
|
|
857
|
+
usr_menu_background_gradient_opacity00: string;
|
|
858
|
+
sys_border_line_white: string;
|
|
859
|
+
sys_component_base_white_opacity10: string;
|
|
847
860
|
};
|
|
848
861
|
};
|
|
849
862
|
export default colorSet;
|
|
@@ -5,13 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
7
|
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
8
|
-
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
9
8
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
10
9
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
10
|
+
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
11
11
|
var colorSet = {
|
|
12
12
|
SemanticColor: SemanticColor_json_1.default,
|
|
13
|
-
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
14
13
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
15
|
-
UIColor: UIColor_json_1.default
|
|
14
|
+
UIColor: UIColor_json_1.default,
|
|
15
|
+
PaletteColor_Dark: PaletteColor_Dark_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -480,4 +480,11 @@ export interface UITheme {
|
|
|
480
480
|
ui_menu_background: string;
|
|
481
481
|
ui_cpnt_video_progress_base: string;
|
|
482
482
|
ui_cpnt_icon_sys_dark: string;
|
|
483
|
+
ui_menu_background_gradient_opacity00: string;
|
|
484
|
+
ui_cpnt_dropdown_border_white_normal: string;
|
|
485
|
+
ui_cpnt_dropdown_text_white_enabled: string;
|
|
486
|
+
ui_cpnt_dropdown_text_white_hint: string;
|
|
487
|
+
ui_cpnt_dropdown_icon_white_default: string;
|
|
488
|
+
ui_cpnt_dropdown_border_white_focus: string;
|
|
489
|
+
ui_cpnt_dropdown_base_white_normal: string;
|
|
483
490
|
}
|
|
@@ -95,5 +95,5 @@ exports.spacing = {
|
|
|
95
95
|
spacingM: '288px',
|
|
96
96
|
spacingN: '320px'
|
|
97
97
|
};
|
|
98
|
-
var theme = __assign({ fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing }, (0, ui_colors_1.customTheme)(window.PdsUtils ? window.PdsUtils.tone : 'DARK'));
|
|
98
|
+
var theme = __assign({ fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing }, (0, ui_colors_1.customTheme)(window.PdsUtils ? window.PdsUtils.tone : 'DARK', window.PdsUtils ? window.PdsUtils.palette : {}));
|
|
99
99
|
exports.default = theme;
|