pds-dev-kit-web 0.3.25 → 0.3.26
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 +2 -1
- package/dist/src/common/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +56 -52
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/common/styles/ui-colors.js +1 -1
- package/package.json +1 -1
|
@@ -94,5 +94,6 @@
|
|
|
94
94
|
"sys_temp_grey_06": "darkgrey70",
|
|
95
95
|
"sys_on_base_white_opacity10": "white/opacity10",
|
|
96
96
|
"sys_on_base_black_opacity10": "black/opacity10",
|
|
97
|
-
"sys_component_base_05_opacity00": "grey950/opacity00"
|
|
97
|
+
"sys_component_base_05_opacity00": "grey950/opacity00",
|
|
98
|
+
"sys_papp_post_notice_link": "darkskyblue500"
|
|
98
99
|
}
|
|
@@ -94,5 +94,6 @@
|
|
|
94
94
|
"sys_temp_grey_06": "grey70",
|
|
95
95
|
"sys_on_base_white_opacity10": "white/opacity10",
|
|
96
96
|
"sys_on_base_black_opacity10": "black/opacity10",
|
|
97
|
-
"sys_component_base_05_opacity00": "grey950/opacity00"
|
|
97
|
+
"sys_component_base_05_opacity00": "grey950/opacity00",
|
|
98
|
+
"sys_papp_post_notice_link": "skyblue500"
|
|
98
99
|
}
|
|
@@ -372,5 +372,6 @@
|
|
|
372
372
|
"ui_cpnt_icon_sys_error_01": "sys_widget_error_01",
|
|
373
373
|
"ui_cpnt_icon_sys_warning_01": "sys_widget_warning_01",
|
|
374
374
|
"ui_cpnt_icon_sys_success_01": "sys_widget_success_01",
|
|
375
|
-
"ui_cpnt_icon_usr_brandsecondary": "usr_brand_secondary"
|
|
375
|
+
"ui_cpnt_icon_usr_brandsecondary": "usr_brand_secondary",
|
|
376
|
+
"ui_papp_post_notice_link": "sys_papp_post_notice_link"
|
|
376
377
|
}
|
|
@@ -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;
|
|
@@ -96,8 +96,60 @@ declare const colorSet: {
|
|
|
96
96
|
sys_on_base_white_opacity10: string;
|
|
97
97
|
sys_on_base_black_opacity10: string;
|
|
98
98
|
sys_component_base_05_opacity00: string;
|
|
99
|
+
sys_papp_post_notice_link: string;
|
|
99
100
|
};
|
|
100
|
-
readonly
|
|
101
|
+
readonly SemanticColor: {
|
|
102
|
+
blue500: string;
|
|
103
|
+
blue700: string;
|
|
104
|
+
blue300: string;
|
|
105
|
+
green700: string;
|
|
106
|
+
green500: string;
|
|
107
|
+
green300: string;
|
|
108
|
+
red500: string;
|
|
109
|
+
grey900: string;
|
|
110
|
+
grey500: string;
|
|
111
|
+
grey400: string;
|
|
112
|
+
grey100: string;
|
|
113
|
+
grey50: string;
|
|
114
|
+
white: string;
|
|
115
|
+
black: string;
|
|
116
|
+
darkblue500: string;
|
|
117
|
+
grey950: string;
|
|
118
|
+
darkgrey900: string;
|
|
119
|
+
darkgrey500: string;
|
|
120
|
+
darkgrey400: string;
|
|
121
|
+
darkgrey100: string;
|
|
122
|
+
darkgrey50: string;
|
|
123
|
+
darkred500: string;
|
|
124
|
+
darkgreen700: string;
|
|
125
|
+
orange500: string;
|
|
126
|
+
darkorange500: string;
|
|
127
|
+
opacity00: string;
|
|
128
|
+
opacity20: string;
|
|
129
|
+
opacity30: string;
|
|
130
|
+
opacity65: string;
|
|
131
|
+
darkgreen500: string;
|
|
132
|
+
grey70: string;
|
|
133
|
+
navy500: string;
|
|
134
|
+
lightgreen500: string;
|
|
135
|
+
pink500: string;
|
|
136
|
+
darkgrey70: string;
|
|
137
|
+
darknavy500: string;
|
|
138
|
+
darkpink500: string;
|
|
139
|
+
darklightgreen500: string;
|
|
140
|
+
opacity10: string;
|
|
141
|
+
grey600: string;
|
|
142
|
+
darkgrey600: string;
|
|
143
|
+
skyblue500: string;
|
|
144
|
+
skyblue300: string;
|
|
145
|
+
pink300: string;
|
|
146
|
+
lightpink500: string;
|
|
147
|
+
darkblue300: string;
|
|
148
|
+
darkblue700: string;
|
|
149
|
+
darkgreen300: string;
|
|
150
|
+
darkskyblue500: string;
|
|
151
|
+
};
|
|
152
|
+
readonly PaletteColor_light: {
|
|
101
153
|
sys_container_background_01: string;
|
|
102
154
|
sys_container_background_02: string;
|
|
103
155
|
sys_container_background_03: string;
|
|
@@ -194,56 +246,7 @@ declare const colorSet: {
|
|
|
194
246
|
sys_on_base_white_opacity10: string;
|
|
195
247
|
sys_on_base_black_opacity10: string;
|
|
196
248
|
sys_component_base_05_opacity00: string;
|
|
197
|
-
|
|
198
|
-
readonly SemanticColor: {
|
|
199
|
-
blue500: string;
|
|
200
|
-
blue700: string;
|
|
201
|
-
blue300: string;
|
|
202
|
-
green700: string;
|
|
203
|
-
green500: string;
|
|
204
|
-
green300: string;
|
|
205
|
-
red500: string;
|
|
206
|
-
grey900: string;
|
|
207
|
-
grey500: string;
|
|
208
|
-
grey400: string;
|
|
209
|
-
grey100: string;
|
|
210
|
-
grey50: string;
|
|
211
|
-
white: string;
|
|
212
|
-
black: string;
|
|
213
|
-
darkblue500: string;
|
|
214
|
-
grey950: string;
|
|
215
|
-
darkgrey900: string;
|
|
216
|
-
darkgrey500: string;
|
|
217
|
-
darkgrey400: string;
|
|
218
|
-
darkgrey100: string;
|
|
219
|
-
darkgrey50: string;
|
|
220
|
-
darkred500: string;
|
|
221
|
-
darkgreen700: string;
|
|
222
|
-
orange500: string;
|
|
223
|
-
darkorange500: string;
|
|
224
|
-
opacity00: string;
|
|
225
|
-
opacity20: string;
|
|
226
|
-
opacity30: string;
|
|
227
|
-
opacity65: string;
|
|
228
|
-
darkgreen500: string;
|
|
229
|
-
grey70: string;
|
|
230
|
-
navy500: string;
|
|
231
|
-
lightgreen500: string;
|
|
232
|
-
pink500: string;
|
|
233
|
-
darkgrey70: string;
|
|
234
|
-
darknavy500: string;
|
|
235
|
-
darkpink500: string;
|
|
236
|
-
darklightgreen500: string;
|
|
237
|
-
opacity10: string;
|
|
238
|
-
grey600: string;
|
|
239
|
-
darkgrey600: string;
|
|
240
|
-
skyblue500: string;
|
|
241
|
-
skyblue300: string;
|
|
242
|
-
pink300: string;
|
|
243
|
-
lightpink500: string;
|
|
244
|
-
darkblue300: string;
|
|
245
|
-
darkblue700: string;
|
|
246
|
-
darkgreen300: string;
|
|
249
|
+
sys_papp_post_notice_link: string;
|
|
247
250
|
};
|
|
248
251
|
readonly UIColor: {
|
|
249
252
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -620,6 +623,7 @@ declare const colorSet: {
|
|
|
620
623
|
ui_cpnt_icon_sys_warning_01: string;
|
|
621
624
|
ui_cpnt_icon_sys_success_01: string;
|
|
622
625
|
ui_cpnt_icon_usr_brandsecondary: string;
|
|
626
|
+
ui_papp_post_notice_link: string;
|
|
623
627
|
};
|
|
624
628
|
};
|
|
625
629
|
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
7
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
9
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
12
|
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
14
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;
|