pds-dev-kit-web 0.3.31 → 0.3.35
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/SemanticColor.json +2 -1
- package/dist/src/common/styles/colorSet/UIColor.json +5 -1
- package/dist/src/common/styles/colorSet/index.d.ts +11 -2
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/styles/colorSet/ui-type.d.ts +4 -0
- package/package.json +1 -1
|
@@ -98,5 +98,7 @@
|
|
|
98
98
|
"sys_papp_post_notice_link": "darkskyblue500",
|
|
99
99
|
"sys_sys_component_base_navy_light": "darknavy100",
|
|
100
100
|
"sys_component_base_orange": "darkorange500",
|
|
101
|
-
"sys_component_base_grey": "darkgrey400"
|
|
101
|
+
"sys_component_base_grey": "darkgrey400",
|
|
102
|
+
"sys_component_base_black_opacity80": "black/opacity80",
|
|
103
|
+
"sys_text_darkgrey_02": "darkgrey500"
|
|
102
104
|
}
|
|
@@ -98,5 +98,7 @@
|
|
|
98
98
|
"sys_papp_post_notice_link": "skyblue500",
|
|
99
99
|
"sys_sys_component_base_navy_light": "navy100",
|
|
100
100
|
"sys_component_base_orange": "orange500",
|
|
101
|
-
"sys_component_base_grey": "grey400"
|
|
101
|
+
"sys_component_base_grey": "grey400",
|
|
102
|
+
"sys_component_base_black_opacity80": "black/opacity80",
|
|
103
|
+
"sys_text_darkgrey_02": "darkgrey500"
|
|
102
104
|
}
|
|
@@ -384,5 +384,9 @@
|
|
|
384
384
|
"ui_cpnt_statusblock_proceeding": "sys_component_base_red",
|
|
385
385
|
"ui_cpnt_statusblock_cancel": "sys_component_base_grey",
|
|
386
386
|
"ui_cpnt_statusblock_end": "sys_component_base_grey",
|
|
387
|
-
"ui_cpnt_statusblock_error": "sys_component_base_orange"
|
|
387
|
+
"ui_cpnt_statusblock_error": "sys_component_base_orange",
|
|
388
|
+
"ui_cpnt_list_base_area_solid": "sys_component_base_02",
|
|
389
|
+
"ui_cpnt_list_base_area_translucent": "sys_component_base_black_opacity80",
|
|
390
|
+
"ui_cpnt_list_base_area_transparent": "sys_component_base_black_opacity00",
|
|
391
|
+
"ui_cpnt_list_text_caption_02": "sys_text_darkgrey_02"
|
|
388
392
|
}
|
|
@@ -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;
|
|
@@ -100,8 +100,10 @@ declare const colorSet: {
|
|
|
100
100
|
sys_sys_component_base_navy_light: string;
|
|
101
101
|
sys_component_base_orange: string;
|
|
102
102
|
sys_component_base_grey: string;
|
|
103
|
+
sys_component_base_black_opacity80: string;
|
|
104
|
+
sys_text_darkgrey_02: string;
|
|
103
105
|
};
|
|
104
|
-
readonly
|
|
106
|
+
readonly PaletteColor_light: {
|
|
105
107
|
sys_container_background_01: string;
|
|
106
108
|
sys_container_background_02: string;
|
|
107
109
|
sys_container_background_03: string;
|
|
@@ -202,6 +204,8 @@ declare const colorSet: {
|
|
|
202
204
|
sys_sys_component_base_navy_light: string;
|
|
203
205
|
sys_component_base_orange: string;
|
|
204
206
|
sys_component_base_grey: string;
|
|
207
|
+
sys_component_base_black_opacity80: string;
|
|
208
|
+
sys_text_darkgrey_02: string;
|
|
205
209
|
};
|
|
206
210
|
readonly SemanticColor: {
|
|
207
211
|
blue500: string;
|
|
@@ -255,6 +259,7 @@ declare const colorSet: {
|
|
|
255
259
|
darkskyblue500: string;
|
|
256
260
|
navy100: string;
|
|
257
261
|
darknavy100: string;
|
|
262
|
+
opacity80: string;
|
|
258
263
|
};
|
|
259
264
|
readonly UIColor: {
|
|
260
265
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -643,6 +648,10 @@ declare const colorSet: {
|
|
|
643
648
|
ui_cpnt_statusblock_cancel: string;
|
|
644
649
|
ui_cpnt_statusblock_end: string;
|
|
645
650
|
ui_cpnt_statusblock_error: string;
|
|
651
|
+
ui_cpnt_list_base_area_solid: string;
|
|
652
|
+
ui_cpnt_list_base_area_translucent: string;
|
|
653
|
+
ui_cpnt_list_base_area_transparent: string;
|
|
654
|
+
ui_cpnt_list_text_caption_02: string;
|
|
646
655
|
};
|
|
647
656
|
};
|
|
648
657
|
export default colorSet;
|
|
@@ -4,13 +4,13 @@ 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
7
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
8
|
+
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
9
|
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
|
-
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
13
12
|
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
13
|
+
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
14
|
SemanticColor: SemanticColor_json_1.default,
|
|
15
15
|
UIColor: UIColor_json_1.default
|
|
16
16
|
};
|
|
@@ -385,4 +385,8 @@ export interface UITheme {
|
|
|
385
385
|
ui_cpnt_statusblock_cancel: string;
|
|
386
386
|
ui_cpnt_statusblock_end: string;
|
|
387
387
|
ui_cpnt_statusblock_error: string;
|
|
388
|
+
ui_cpnt_list_base_area_solid: string;
|
|
389
|
+
ui_cpnt_list_base_area_translucent: string;
|
|
390
|
+
ui_cpnt_list_base_area_transparent: string;
|
|
391
|
+
ui_cpnt_list_text_caption_02: string;
|
|
388
392
|
}
|