pds-dev-kit-web 2.2.163 → 2.2.165
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/styles/colorSet/PaletteColor_Dark.json +3 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +3 -1
- package/dist/src/common/styles/colorSet/UIColor.json +3 -1
- package/dist/src/common/styles/colorSet/index.d.ts +8 -2
- package/dist/src/common/styles/colorSet/index.js +4 -4
- package/dist/src/common/styles/colorSet/ui-type.d.ts +2 -0
- package/package.json +1 -1
- package/release-note.md +1 -1
|
@@ -373,5 +373,7 @@
|
|
|
373
373
|
"sys_dimmed_01": "black/opacity80",
|
|
374
374
|
"sys_cpnt_sheet_base_51": "black",
|
|
375
375
|
"sys_cpnt_sheet_base_52": "darkgrey50",
|
|
376
|
-
"sys_cpnt_sheet_base_53": "darkgrey70"
|
|
376
|
+
"sys_cpnt_sheet_base_53": "darkgrey70",
|
|
377
|
+
"sys_widget_grey_07": "grey900",
|
|
378
|
+
"sys_cpnt_sheet_base_54": "grey30"
|
|
377
379
|
}
|
|
@@ -373,5 +373,7 @@
|
|
|
373
373
|
"sys_dimmed_01": "black/opacity80",
|
|
374
374
|
"sys_cpnt_sheet_base_51": "white",
|
|
375
375
|
"sys_cpnt_sheet_base_52": "grey30",
|
|
376
|
-
"sys_cpnt_sheet_base_53": "white"
|
|
376
|
+
"sys_cpnt_sheet_base_53": "white",
|
|
377
|
+
"sys_widget_grey_07": "white",
|
|
378
|
+
"sys_cpnt_sheet_base_54": "grey600"
|
|
377
379
|
}
|
|
@@ -897,5 +897,7 @@
|
|
|
897
897
|
"ui_cpnt_selcontrols_icon_white": "sys_widget_white",
|
|
898
898
|
"ui_cpnt_selcontrols_text_white": "sys_text_white",
|
|
899
899
|
"ui_cpnt_selcontrols_icon_grey_01": "sys_widget_grey_01",
|
|
900
|
-
"ui_cpnt_selcontrols_text_grey_01": "sys_text_grey_01"
|
|
900
|
+
"ui_cpnt_selcontrols_text_grey_01": "sys_text_grey_01",
|
|
901
|
+
"ui_cpnt_snackbar_text": "sys_widget_grey_07",
|
|
902
|
+
"ui_cpnt_snackbar_base": "sys_cpnt_sheet_base_54"
|
|
901
903
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const colorSet: {
|
|
2
|
-
readonly
|
|
2
|
+
readonly PaletteColor_Dark: {
|
|
3
3
|
sys_container_background_01: string;
|
|
4
4
|
sys_container_background_02: string;
|
|
5
5
|
sys_container_background_03: string;
|
|
@@ -375,6 +375,8 @@ declare const colorSet: {
|
|
|
375
375
|
sys_cpnt_sheet_base_51: string;
|
|
376
376
|
sys_cpnt_sheet_base_52: string;
|
|
377
377
|
sys_cpnt_sheet_base_53: string;
|
|
378
|
+
sys_widget_grey_07: string;
|
|
379
|
+
sys_cpnt_sheet_base_54: string;
|
|
378
380
|
};
|
|
379
381
|
readonly SemanticColor: {
|
|
380
382
|
blue500: string;
|
|
@@ -500,7 +502,7 @@ declare const colorSet: {
|
|
|
500
502
|
grey450: string;
|
|
501
503
|
darkgrey450: string;
|
|
502
504
|
};
|
|
503
|
-
readonly
|
|
505
|
+
readonly PaletteColor_light: {
|
|
504
506
|
sys_container_background_01: string;
|
|
505
507
|
sys_container_background_02: string;
|
|
506
508
|
sys_container_background_03: string;
|
|
@@ -876,6 +878,8 @@ declare const colorSet: {
|
|
|
876
878
|
sys_cpnt_sheet_base_51: string;
|
|
877
879
|
sys_cpnt_sheet_base_52: string;
|
|
878
880
|
sys_cpnt_sheet_base_53: string;
|
|
881
|
+
sys_widget_grey_07: string;
|
|
882
|
+
sys_cpnt_sheet_base_54: string;
|
|
879
883
|
};
|
|
880
884
|
readonly UIColor: {
|
|
881
885
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -1777,6 +1781,8 @@ declare const colorSet: {
|
|
|
1777
1781
|
ui_cpnt_selcontrols_text_white: string;
|
|
1778
1782
|
ui_cpnt_selcontrols_icon_grey_01: string;
|
|
1779
1783
|
ui_cpnt_selcontrols_text_grey_01: string;
|
|
1784
|
+
ui_cpnt_snackbar_text: string;
|
|
1785
|
+
ui_cpnt_snackbar_base: string;
|
|
1780
1786
|
};
|
|
1781
1787
|
};
|
|
1782
1788
|
export default colorSet;
|
|
@@ -4,14 +4,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
|
-
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
8
|
-
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
9
7
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
8
|
+
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
9
|
+
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
|
-
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
13
|
-
SemanticColor: SemanticColor_json_1.default,
|
|
14
12
|
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
13
|
+
SemanticColor: SemanticColor_json_1.default,
|
|
14
|
+
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
15
15
|
UIColor: UIColor_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
package/package.json
CHANGED
package/release-note.md
CHANGED