pds-dev-kit-web 2.2.259 → 2.2.261
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 +2 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +2 -1
- package/dist/src/common/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +5 -2
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/package.json +1 -1
- package/release-note.md +2 -2
|
@@ -379,5 +379,6 @@
|
|
|
379
379
|
"sys_component_border_01": "grey100/opacity50",
|
|
380
380
|
"sys_widget_grey_08": "grey400",
|
|
381
381
|
"sys_on_base_hover_01": "black/opacity05",
|
|
382
|
-
"sys_on_base_pressed_01": "black/opacity10"
|
|
382
|
+
"sys_on_base_pressed_01": "black/opacity10",
|
|
383
|
+
"usr_brand_secondary_opacity50": "darkgreen500/opacity50"
|
|
383
384
|
}
|
|
@@ -379,5 +379,6 @@
|
|
|
379
379
|
"sys_component_border_01": "grey100/opacity50",
|
|
380
380
|
"sys_widget_grey_08": "darkgrey500",
|
|
381
381
|
"sys_on_base_hover_01": "white/opacity10",
|
|
382
|
-
"sys_on_base_pressed_01": "white/opacity20"
|
|
382
|
+
"sys_on_base_pressed_01": "white/opacity20",
|
|
383
|
+
"usr_brand_secondary_opacity50": "green500/opacity50"
|
|
383
384
|
}
|
|
@@ -910,5 +910,6 @@
|
|
|
910
910
|
"ui_cpnt_message_reaction_base_02": "sys_component_pastel_base_02",
|
|
911
911
|
"ui_cpnt_message_reaction_base_03": "sys_component_pastel_base_03",
|
|
912
912
|
"ui_cpnt_message_reaction_base_04": "sys_component_pastel_base_04",
|
|
913
|
-
"ui_cpnt_message_reaction_base_05": "sys_component_pastel_base_05"
|
|
913
|
+
"ui_cpnt_message_reaction_base_05": "sys_component_pastel_base_05",
|
|
914
|
+
"ui_145": "usr_brand_secondary_opacity50"
|
|
914
915
|
}
|
|
@@ -123,7 +123,7 @@ declare const colorSet: {
|
|
|
123
123
|
grey450: string;
|
|
124
124
|
darkgrey450: string;
|
|
125
125
|
};
|
|
126
|
-
readonly
|
|
126
|
+
readonly PaletteColor_Dark: {
|
|
127
127
|
sys_container_background_01: string;
|
|
128
128
|
sys_container_background_02: string;
|
|
129
129
|
sys_container_background_03: string;
|
|
@@ -505,8 +505,9 @@ declare const colorSet: {
|
|
|
505
505
|
sys_widget_grey_08: string;
|
|
506
506
|
sys_on_base_hover_01: string;
|
|
507
507
|
sys_on_base_pressed_01: string;
|
|
508
|
+
usr_brand_secondary_opacity50: string;
|
|
508
509
|
};
|
|
509
|
-
readonly
|
|
510
|
+
readonly PaletteColor_light: {
|
|
510
511
|
sys_container_background_01: string;
|
|
511
512
|
sys_container_background_02: string;
|
|
512
513
|
sys_container_background_03: string;
|
|
@@ -888,6 +889,7 @@ declare const colorSet: {
|
|
|
888
889
|
sys_widget_grey_08: string;
|
|
889
890
|
sys_on_base_hover_01: string;
|
|
890
891
|
sys_on_base_pressed_01: string;
|
|
892
|
+
usr_brand_secondary_opacity50: string;
|
|
891
893
|
};
|
|
892
894
|
readonly UIColor: {
|
|
893
895
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -1802,6 +1804,7 @@ declare const colorSet: {
|
|
|
1802
1804
|
ui_cpnt_message_reaction_base_03: string;
|
|
1803
1805
|
ui_cpnt_message_reaction_base_04: string;
|
|
1804
1806
|
ui_cpnt_message_reaction_base_05: string;
|
|
1807
|
+
ui_145: string;
|
|
1805
1808
|
};
|
|
1806
1809
|
};
|
|
1807
1810
|
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_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
8
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.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
12
|
SemanticColor: SemanticColor_json_1.default,
|
|
13
|
-
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
13
|
PaletteColor_Dark: PaletteColor_Dark_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