pds-dev-kit-web 2.2.107 → 2.2.108
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/SemanticColor.json +3 -1
- package/dist/src/common/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +5 -0
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/package.json +1 -1
- package/release-note.md +2 -2
|
@@ -358,5 +358,6 @@
|
|
|
358
358
|
"usr_brand_primary_opacity05": "darkblue500/opacity05",
|
|
359
359
|
"sys_cpnt_sheet_base_15": "grey200",
|
|
360
360
|
"sys_cpnt_sheet_base_16": "grey900/opacity50",
|
|
361
|
-
"sys_cpnt_sheet_base_17": "grey500"
|
|
361
|
+
"sys_cpnt_sheet_base_17": "grey500",
|
|
362
|
+
"sys_component_base_47": "darkyellow500"
|
|
362
363
|
}
|
|
@@ -358,5 +358,6 @@
|
|
|
358
358
|
"usr_brand_primary_opacity05": "blue500/opacity05",
|
|
359
359
|
"sys_cpnt_sheet_base_15": "grey100",
|
|
360
360
|
"sys_cpnt_sheet_base_16": "grey900/opacity50",
|
|
361
|
-
"sys_cpnt_sheet_base_17": "grey500"
|
|
361
|
+
"sys_cpnt_sheet_base_17": "grey500",
|
|
362
|
+
"sys_component_base_47": "yellow500"
|
|
362
363
|
}
|
|
@@ -118,6 +118,8 @@ declare const colorSet: {
|
|
|
118
118
|
darkgrey20: string;
|
|
119
119
|
grey300: string;
|
|
120
120
|
darkgrey300: string;
|
|
121
|
+
yellow500: string;
|
|
122
|
+
darkyellow500: string;
|
|
121
123
|
};
|
|
122
124
|
readonly PaletteColor_light: {
|
|
123
125
|
sys_container_background_01: string;
|
|
@@ -480,6 +482,7 @@ declare const colorSet: {
|
|
|
480
482
|
sys_cpnt_sheet_base_15: string;
|
|
481
483
|
sys_cpnt_sheet_base_16: string;
|
|
482
484
|
sys_cpnt_sheet_base_17: string;
|
|
485
|
+
sys_component_base_47: string;
|
|
483
486
|
};
|
|
484
487
|
readonly PaletteColor_Dark: {
|
|
485
488
|
sys_container_background_01: string;
|
|
@@ -842,6 +845,7 @@ declare const colorSet: {
|
|
|
842
845
|
sys_cpnt_sheet_base_15: string;
|
|
843
846
|
sys_cpnt_sheet_base_16: string;
|
|
844
847
|
sys_cpnt_sheet_base_17: string;
|
|
848
|
+
sys_component_base_47: string;
|
|
845
849
|
};
|
|
846
850
|
readonly UIColor: {
|
|
847
851
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -1711,6 +1715,7 @@ declare const colorSet: {
|
|
|
1711
1715
|
ui_126: string;
|
|
1712
1716
|
ui_127: string;
|
|
1713
1717
|
ui_128: string;
|
|
1718
|
+
ui_cpnt_sheet_base_27: string;
|
|
1714
1719
|
};
|
|
1715
1720
|
};
|
|
1716
1721
|
export default colorSet;
|
package/package.json
CHANGED