pds-dev-kit-web 1.4.61 → 1.4.62
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 +4 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +4 -1
- package/dist/src/common/styles/colorSet/UIColor.json +8 -2
- package/dist/src/common/styles/colorSet/index.d.ts +256 -244
- package/dist/src/common/styles/colorSet/index.js +5 -5
- package/dist/src/common/styles/colorSet/ui-type.d.ts +6 -0
- package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.d.ts +3 -3
- package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +4 -4
- package/dist/src/desktop/components/TextButton/TextButton.d.ts +2 -2
- package/dist/src/desktop/components/TextButton/TextButton.js +2 -2
- package/dist/src/hybrid/components/ImageView/ImageView.d.ts +1 -1
- package/dist/src/hybrid/components/ImageView/ImageView.js +2 -0
- package/dist/src/mobile/components/TextButton/TextButton.d.ts +2 -2
- package/dist/src/mobile/components/TextButton/TextButton.js +2 -2
- package/package.json +1 -1
- package/release-note.md +11 -5
|
@@ -180,5 +180,8 @@
|
|
|
180
180
|
"sys_text_lighttone_grey_01": "grey900",
|
|
181
181
|
"sys_widget_lighttone_primary_01": "blue500",
|
|
182
182
|
"sys_text_lighttone_grey_02": "grey500",
|
|
183
|
-
"sys_component_base_09": "darkgrey70"
|
|
183
|
+
"sys_component_base_09": "darkgrey70",
|
|
184
|
+
"sys_component_base_darktheme_opacity20": "darkgrey900/opacity20",
|
|
185
|
+
"sys_component_base_darktheme_disabled_opacity20": "darkgrey70/opacity20",
|
|
186
|
+
"sys_border_white_opacity00": "white/opacity00"
|
|
184
187
|
}
|
|
@@ -180,5 +180,8 @@
|
|
|
180
180
|
"sys_text_lighttone_grey_01": "grey900",
|
|
181
181
|
"sys_widget_lighttone_primary_01": "blue500",
|
|
182
182
|
"sys_text_lighttone_grey_02": "grey500",
|
|
183
|
-
"sys_component_base_09": "white"
|
|
183
|
+
"sys_component_base_09": "white",
|
|
184
|
+
"sys_component_base_darktheme_opacity20": "darkgrey900/opacity20",
|
|
185
|
+
"sys_component_base_darktheme_disabled_opacity20": "darkgrey70/opacity20",
|
|
186
|
+
"sys_border_white_opacity00": "white/opacity00"
|
|
184
187
|
}
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
"ui_cpnt_divider_area": "sys_border_area_01",
|
|
515
515
|
"ui_cpnt_button_white_base_hover": "sys_component_base_darktheme_01",
|
|
516
516
|
"ui_cpnt_button_white_base_pressed": "sys_component_base_darktheme_03",
|
|
517
|
-
"ui_cpnt_list_base_area_hover": "
|
|
517
|
+
"ui_cpnt_list_base_area_hover": "sys_component_base_02",
|
|
518
518
|
"ui_cpnt_sheet_border_01": "sys_border_line_01",
|
|
519
519
|
"ui_cpnt_sheet_border_02": "sys_border_line_03",
|
|
520
520
|
"ui_cpnt_sheet_border_03": "sys_border_line_11",
|
|
@@ -547,5 +547,11 @@
|
|
|
547
547
|
"ui_54": "sys_text_lighttone_grey_01",
|
|
548
548
|
"ui_55": "sys_widget_lighttone_primary_01",
|
|
549
549
|
"ui_56": "sys_text_lighttone_grey_02",
|
|
550
|
-
"ui_cpnt_sheet_base_04": "sys_component_base_09"
|
|
550
|
+
"ui_cpnt_sheet_base_04": "sys_component_base_09",
|
|
551
|
+
"ui_cpnt_masking_base_01": "sys_component_base_03",
|
|
552
|
+
"ui_cpnt_masking_icon_01": "sys_widget_grey_03",
|
|
553
|
+
"ui_cpnt_list_base_area_transparent_seller": "sys_cpnt_base_white_opacity50",
|
|
554
|
+
"ui_57": "sys_component_base_darktheme_opacity20",
|
|
555
|
+
"ui_58": "sys_component_base_darktheme_disabled_opacity20",
|
|
556
|
+
"ui_cpnt_divider_white_opacity00": "sys_border_white_opacity00"
|
|
551
557
|
}
|
|
@@ -1,248 +1,4 @@
|
|
|
1
1
|
declare const colorSet: {
|
|
2
|
-
readonly SemanticColor: {
|
|
3
|
-
blue500: string;
|
|
4
|
-
blue700: string;
|
|
5
|
-
blue300: string;
|
|
6
|
-
green700: string;
|
|
7
|
-
green500: string;
|
|
8
|
-
green300: string;
|
|
9
|
-
red500: string;
|
|
10
|
-
grey900: string;
|
|
11
|
-
grey500: string;
|
|
12
|
-
grey400: string;
|
|
13
|
-
grey100: string;
|
|
14
|
-
grey50: string;
|
|
15
|
-
white: string;
|
|
16
|
-
black: string;
|
|
17
|
-
darkblue500: string;
|
|
18
|
-
grey950: string;
|
|
19
|
-
darkgrey900: string;
|
|
20
|
-
darkgrey500: string;
|
|
21
|
-
darkgrey400: string;
|
|
22
|
-
darkgrey100: string;
|
|
23
|
-
darkgrey50: string;
|
|
24
|
-
darkred500: string;
|
|
25
|
-
darkgreen700: string;
|
|
26
|
-
orange500: string;
|
|
27
|
-
darkorange500: string;
|
|
28
|
-
opacity00: string;
|
|
29
|
-
opacity20: string;
|
|
30
|
-
opacity30: string;
|
|
31
|
-
opacity65: string;
|
|
32
|
-
darkgreen500: string;
|
|
33
|
-
grey70: string;
|
|
34
|
-
navy500: string;
|
|
35
|
-
lightgreen500: string;
|
|
36
|
-
pink500: string;
|
|
37
|
-
darkgrey70: string;
|
|
38
|
-
darknavy500: string;
|
|
39
|
-
darkpink500: string;
|
|
40
|
-
darklightgreen500: string;
|
|
41
|
-
opacity10: string;
|
|
42
|
-
grey600: string;
|
|
43
|
-
darkgrey600: string;
|
|
44
|
-
skyblue500: string;
|
|
45
|
-
skyblue300: string;
|
|
46
|
-
pink300: string;
|
|
47
|
-
lightpink500: string;
|
|
48
|
-
darkblue300: string;
|
|
49
|
-
darkblue700: string;
|
|
50
|
-
darkgreen300: string;
|
|
51
|
-
darkskyblue500: string;
|
|
52
|
-
navy100: string;
|
|
53
|
-
darknavy100: string;
|
|
54
|
-
opacity80: string;
|
|
55
|
-
opacity50: string;
|
|
56
|
-
grey30: string;
|
|
57
|
-
opacity95: string;
|
|
58
|
-
darkgrey30: string;
|
|
59
|
-
opacity40: string;
|
|
60
|
-
kakaoyellow: string;
|
|
61
|
-
};
|
|
62
|
-
readonly PaletteColor_Dark: {
|
|
63
|
-
sys_container_background_01: string;
|
|
64
|
-
sys_container_background_02: string;
|
|
65
|
-
sys_container_background_03: string;
|
|
66
|
-
sys_background_dimmed: string;
|
|
67
|
-
sys_text_grey_01: string;
|
|
68
|
-
sys_text_grey_02: string;
|
|
69
|
-
sys_text_grey_03: string;
|
|
70
|
-
sys_text_white: string;
|
|
71
|
-
sys_text_brand_primary: string;
|
|
72
|
-
sys_text_error_01: string;
|
|
73
|
-
sys_widget_grey_01: string;
|
|
74
|
-
sys_widget_grey_02: string;
|
|
75
|
-
sys_widget_grey_03: string;
|
|
76
|
-
sys_widget_primary_01: string;
|
|
77
|
-
sys_widget_error_01: string;
|
|
78
|
-
sys_widget_warning_01: string;
|
|
79
|
-
sys_widget_success_01: string;
|
|
80
|
-
sys_widget_white: string;
|
|
81
|
-
sys_border_area_01: string;
|
|
82
|
-
sys_border_line_01: string;
|
|
83
|
-
sys_border_line_02: string;
|
|
84
|
-
sys_border_line_03: string;
|
|
85
|
-
sys_border_line_04: string;
|
|
86
|
-
sys_border_line_05: string;
|
|
87
|
-
sys_component_base_01: string;
|
|
88
|
-
sys_component_base_02: string;
|
|
89
|
-
sys_component_base_03: string;
|
|
90
|
-
sys_component_base_red: string;
|
|
91
|
-
sys_component_base_white: string;
|
|
92
|
-
sys_component_base_white_opacity00: string;
|
|
93
|
-
sys_on_base_white_opacity00: string;
|
|
94
|
-
sys_on_base_white_opacity30: string;
|
|
95
|
-
sys_on_base_black_opacity20: string;
|
|
96
|
-
usr_brand_primary: string;
|
|
97
|
-
usr_brand_secondary: string;
|
|
98
|
-
usr_brand_secondary_variant: string;
|
|
99
|
-
usr_background: string;
|
|
100
|
-
usr_surface: string;
|
|
101
|
-
usr_border: string;
|
|
102
|
-
usr_on_brand_primary: string;
|
|
103
|
-
usr_on_brand_secondary: string;
|
|
104
|
-
usr_on_background: string;
|
|
105
|
-
usr_on_surface: string;
|
|
106
|
-
sys_widget_status_active_01: string;
|
|
107
|
-
sys_text_success_01: string;
|
|
108
|
-
sys_widget_grey_04: string;
|
|
109
|
-
sys_text_active: string;
|
|
110
|
-
sys_component_base_blue: string;
|
|
111
|
-
sys_on_base_black_opacity65: string;
|
|
112
|
-
sys_component_base_04: string;
|
|
113
|
-
sys_component_base_black: string;
|
|
114
|
-
sys_component_base_black_opacity00: string;
|
|
115
|
-
usr_text_brand_secondary_variant: string;
|
|
116
|
-
usr_text_brand_primary: string;
|
|
117
|
-
usr_text_brand_on_primary: string;
|
|
118
|
-
sys_text_brand_secondary_variant: string;
|
|
119
|
-
sys_component_base_navy: string;
|
|
120
|
-
sys_widget_lightgreen: string;
|
|
121
|
-
sys_border_line_06: string;
|
|
122
|
-
sys_background_dimmed_20: string;
|
|
123
|
-
sys_widget_pink: string;
|
|
124
|
-
sys_widget_primary_opacity20: string;
|
|
125
|
-
sys_widget_secondary_variant_01: string;
|
|
126
|
-
usr_component_base_brand_primary_opacity10: string;
|
|
127
|
-
sys_temp_grey_01: string;
|
|
128
|
-
sys_temp_grey_02: string;
|
|
129
|
-
sys_temp_grey_03: string;
|
|
130
|
-
sys_temp_grey_04: string;
|
|
131
|
-
sys_temp_grey_05: string;
|
|
132
|
-
sys_temp_white: string;
|
|
133
|
-
sys_temp_primary_01: string;
|
|
134
|
-
sys_temp_secondary_01: string;
|
|
135
|
-
sys_temp_red: string;
|
|
136
|
-
sys_temp_white_opacity_00: string;
|
|
137
|
-
sys_temp_dimmed: string;
|
|
138
|
-
sys_temp_black: string;
|
|
139
|
-
sys_temp_primary_02: string;
|
|
140
|
-
sys_temp_primary_03: string;
|
|
141
|
-
sys_temp_secondary_02: string;
|
|
142
|
-
sys_temp_lightgreen_01: string;
|
|
143
|
-
sys_text_grey_04: string;
|
|
144
|
-
sys_papp_post_social_background: string;
|
|
145
|
-
sys_papp_post_notice_background: string;
|
|
146
|
-
sys_papp_post_free_background: string;
|
|
147
|
-
sys_papp_vod_background: string;
|
|
148
|
-
sys_papp_vodplus_background: string;
|
|
149
|
-
sys_papp_live_background: string;
|
|
150
|
-
sys_selcontrols_base_off_disabled: string;
|
|
151
|
-
sys_selcontrols_base_on_disabled: string;
|
|
152
|
-
sys_component_base_blue_opacity10: string;
|
|
153
|
-
sys_component_base_05: string;
|
|
154
|
-
sys_background_dimmed_65: string;
|
|
155
|
-
sys_temp_grey_06: string;
|
|
156
|
-
sys_on_base_white_opacity10: string;
|
|
157
|
-
sys_on_base_black_opacity10: string;
|
|
158
|
-
sys_component_base_05_opacity00: string;
|
|
159
|
-
sys_papp_post_notice_link: string;
|
|
160
|
-
sys_component_base_navy_light: string;
|
|
161
|
-
sys_component_base_orange: string;
|
|
162
|
-
sys_component_base_grey: string;
|
|
163
|
-
sys_component_base_black_opacity80: string;
|
|
164
|
-
sys_text_darkgrey_02: string;
|
|
165
|
-
sys_border_line_darktheme_01: string;
|
|
166
|
-
sys_border_line_darktheme_02: string;
|
|
167
|
-
sys_component_base_darktheme_01: string;
|
|
168
|
-
sys_component_base_darktheme_02: string;
|
|
169
|
-
sys_component_base_darktheme_03: string;
|
|
170
|
-
sys_text_grey_darktheme_01: string;
|
|
171
|
-
sys_text_grey_darktheme_02: string;
|
|
172
|
-
sys_text_grey_darktheme_03: string;
|
|
173
|
-
sys_widget_grey_darktheme_01: string;
|
|
174
|
-
sys_widget_grey_darktheme_02: string;
|
|
175
|
-
sys_widget_grey_darktheme_03: string;
|
|
176
|
-
sys_component_base_green: string;
|
|
177
|
-
sys_text_error_darktheme_01: string;
|
|
178
|
-
sys_border_line_darktheme_03: string;
|
|
179
|
-
sys_border_line_darktheme_04: string;
|
|
180
|
-
usr_widget_brand_primary_darktheme_01: string;
|
|
181
|
-
usr_text_brand_primary_darktheme_01: string;
|
|
182
|
-
sys_component_base_black_opacity50: string;
|
|
183
|
-
sys_component_base_card: string;
|
|
184
|
-
sys_cpnt_textlabel_sys_brand_primary_opacity50: string;
|
|
185
|
-
sys_widget_green_01: string;
|
|
186
|
-
sys_component_base_black_opacity30: string;
|
|
187
|
-
sys_area_background: string;
|
|
188
|
-
sys_border_white_opacity30: string;
|
|
189
|
-
sys_container_background_wt: string;
|
|
190
|
-
sys_channeldesc_grey_03: string;
|
|
191
|
-
sys_channeldesc_border_grey_03: string;
|
|
192
|
-
sys_gradient_base_01: string;
|
|
193
|
-
sys_gradient_base_01_opacity00: string;
|
|
194
|
-
sys_channeldesc_background: string;
|
|
195
|
-
sys_channeldesc_bottomsheet_base: string;
|
|
196
|
-
sys_channeldesc_bottomsheet_border: string;
|
|
197
|
-
sys_channeldesc_contents_base: string;
|
|
198
|
-
sys_channeldesc_dimmed: string;
|
|
199
|
-
sys_gradient_base_01_opacity50: string;
|
|
200
|
-
sys_gradient_base_01_opacity75: string;
|
|
201
|
-
sys_gradient_base_01_opacity40: string;
|
|
202
|
-
sys_widget_black: string;
|
|
203
|
-
usr_temp_primary_01: string;
|
|
204
|
-
sys_cpnt_sheet_base_02_opacity50: string;
|
|
205
|
-
usr_menu_primarymenu_main: string;
|
|
206
|
-
usr_menu_primarymenu_sub: string;
|
|
207
|
-
usr_menu_secondarymenu_main: string;
|
|
208
|
-
usr_menu_secondarymenu_sub: string;
|
|
209
|
-
usr_menu_hover: string;
|
|
210
|
-
usr_menu_active: string;
|
|
211
|
-
usr_menu_background: string;
|
|
212
|
-
sys_cpnt_base_white_opacity50: string;
|
|
213
|
-
sys_widget_dark_01: string;
|
|
214
|
-
usr_menu_background_gradient_opacity00: string;
|
|
215
|
-
sys_border_line_white: string;
|
|
216
|
-
sys_component_base_white_opacity10: string;
|
|
217
|
-
sys_cpnt_sheet_base_01: string;
|
|
218
|
-
sys_component_base_white_opacity20: string;
|
|
219
|
-
sys_border_line_07: string;
|
|
220
|
-
sys_border_line_white_opacity50: string;
|
|
221
|
-
sys_background_dimmed_02: string;
|
|
222
|
-
sys_border_line_08: string;
|
|
223
|
-
sys_component_base_06: string;
|
|
224
|
-
sys_component_base_07: string;
|
|
225
|
-
sys_border_line_09: string;
|
|
226
|
-
sys_component_base_darktheme_04: string;
|
|
227
|
-
sys_border_line_10: string;
|
|
228
|
-
sys_component_base_darktheme_05: string;
|
|
229
|
-
sys_border_line_darktheme_05: string;
|
|
230
|
-
sys_component_base_darktheme_06: string;
|
|
231
|
-
sys_border_line_darktheme_06: string;
|
|
232
|
-
sys_border_line_darktheme_07: string;
|
|
233
|
-
sys_border_line_11: string;
|
|
234
|
-
sys_base_dimmed_01: string;
|
|
235
|
-
sys_kakao: string;
|
|
236
|
-
sys_border_line_12: string;
|
|
237
|
-
sys_component_base_08: string;
|
|
238
|
-
sys_text_social_login_01: string;
|
|
239
|
-
sys_text_social_login_02: string;
|
|
240
|
-
sys_papp_livechat_link: string;
|
|
241
|
-
sys_text_lighttone_grey_01: string;
|
|
242
|
-
sys_widget_lighttone_primary_01: string;
|
|
243
|
-
sys_text_lighttone_grey_02: string;
|
|
244
|
-
sys_component_base_09: string;
|
|
245
|
-
};
|
|
246
2
|
readonly PaletteColor_light: {
|
|
247
3
|
sys_container_background_01: string;
|
|
248
4
|
sys_container_background_02: string;
|
|
@@ -426,6 +182,69 @@ declare const colorSet: {
|
|
|
426
182
|
sys_widget_lighttone_primary_01: string;
|
|
427
183
|
sys_text_lighttone_grey_02: string;
|
|
428
184
|
sys_component_base_09: string;
|
|
185
|
+
sys_component_base_darktheme_opacity20: string;
|
|
186
|
+
sys_component_base_darktheme_disabled_opacity20: string;
|
|
187
|
+
sys_border_white_opacity00: string;
|
|
188
|
+
};
|
|
189
|
+
readonly SemanticColor: {
|
|
190
|
+
blue500: string;
|
|
191
|
+
blue700: string;
|
|
192
|
+
blue300: string;
|
|
193
|
+
green700: string;
|
|
194
|
+
green500: string;
|
|
195
|
+
green300: string;
|
|
196
|
+
red500: string;
|
|
197
|
+
grey900: string;
|
|
198
|
+
grey500: string;
|
|
199
|
+
grey400: string;
|
|
200
|
+
grey100: string;
|
|
201
|
+
grey50: string;
|
|
202
|
+
white: string;
|
|
203
|
+
black: string;
|
|
204
|
+
darkblue500: string;
|
|
205
|
+
grey950: string;
|
|
206
|
+
darkgrey900: string;
|
|
207
|
+
darkgrey500: string;
|
|
208
|
+
darkgrey400: string;
|
|
209
|
+
darkgrey100: string;
|
|
210
|
+
darkgrey50: string;
|
|
211
|
+
darkred500: string;
|
|
212
|
+
darkgreen700: string;
|
|
213
|
+
orange500: string;
|
|
214
|
+
darkorange500: string;
|
|
215
|
+
opacity00: string;
|
|
216
|
+
opacity20: string;
|
|
217
|
+
opacity30: string;
|
|
218
|
+
opacity65: string;
|
|
219
|
+
darkgreen500: string;
|
|
220
|
+
grey70: string;
|
|
221
|
+
navy500: string;
|
|
222
|
+
lightgreen500: string;
|
|
223
|
+
pink500: string;
|
|
224
|
+
darkgrey70: string;
|
|
225
|
+
darknavy500: string;
|
|
226
|
+
darkpink500: string;
|
|
227
|
+
darklightgreen500: string;
|
|
228
|
+
opacity10: string;
|
|
229
|
+
grey600: string;
|
|
230
|
+
darkgrey600: string;
|
|
231
|
+
skyblue500: string;
|
|
232
|
+
skyblue300: string;
|
|
233
|
+
pink300: string;
|
|
234
|
+
lightpink500: string;
|
|
235
|
+
darkblue300: string;
|
|
236
|
+
darkblue700: string;
|
|
237
|
+
darkgreen300: string;
|
|
238
|
+
darkskyblue500: string;
|
|
239
|
+
navy100: string;
|
|
240
|
+
darknavy100: string;
|
|
241
|
+
opacity80: string;
|
|
242
|
+
opacity50: string;
|
|
243
|
+
grey30: string;
|
|
244
|
+
opacity95: string;
|
|
245
|
+
darkgrey30: string;
|
|
246
|
+
opacity40: string;
|
|
247
|
+
kakaoyellow: string;
|
|
429
248
|
};
|
|
430
249
|
readonly UIColor: {
|
|
431
250
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -977,6 +796,199 @@ declare const colorSet: {
|
|
|
977
796
|
ui_55: string;
|
|
978
797
|
ui_56: string;
|
|
979
798
|
ui_cpnt_sheet_base_04: string;
|
|
799
|
+
ui_cpnt_masking_base_01: string;
|
|
800
|
+
ui_cpnt_masking_icon_01: string;
|
|
801
|
+
ui_cpnt_list_base_area_transparent_seller: string;
|
|
802
|
+
ui_57: string;
|
|
803
|
+
ui_58: string;
|
|
804
|
+
ui_cpnt_divider_white_opacity00: string;
|
|
805
|
+
};
|
|
806
|
+
readonly PaletteColor_Dark: {
|
|
807
|
+
sys_container_background_01: string;
|
|
808
|
+
sys_container_background_02: string;
|
|
809
|
+
sys_container_background_03: string;
|
|
810
|
+
sys_background_dimmed: string;
|
|
811
|
+
sys_text_grey_01: string;
|
|
812
|
+
sys_text_grey_02: string;
|
|
813
|
+
sys_text_grey_03: string;
|
|
814
|
+
sys_text_white: string;
|
|
815
|
+
sys_text_brand_primary: string;
|
|
816
|
+
sys_text_error_01: string;
|
|
817
|
+
sys_widget_grey_01: string;
|
|
818
|
+
sys_widget_grey_02: string;
|
|
819
|
+
sys_widget_grey_03: string;
|
|
820
|
+
sys_widget_primary_01: string;
|
|
821
|
+
sys_widget_error_01: string;
|
|
822
|
+
sys_widget_warning_01: string;
|
|
823
|
+
sys_widget_success_01: string;
|
|
824
|
+
sys_widget_white: string;
|
|
825
|
+
sys_border_area_01: string;
|
|
826
|
+
sys_border_line_01: string;
|
|
827
|
+
sys_border_line_02: string;
|
|
828
|
+
sys_border_line_03: string;
|
|
829
|
+
sys_border_line_04: string;
|
|
830
|
+
sys_border_line_05: string;
|
|
831
|
+
sys_component_base_01: string;
|
|
832
|
+
sys_component_base_02: string;
|
|
833
|
+
sys_component_base_03: string;
|
|
834
|
+
sys_component_base_red: string;
|
|
835
|
+
sys_component_base_white: string;
|
|
836
|
+
sys_component_base_white_opacity00: string;
|
|
837
|
+
sys_on_base_white_opacity00: string;
|
|
838
|
+
sys_on_base_white_opacity30: string;
|
|
839
|
+
sys_on_base_black_opacity20: string;
|
|
840
|
+
usr_brand_primary: string;
|
|
841
|
+
usr_brand_secondary: string;
|
|
842
|
+
usr_brand_secondary_variant: string;
|
|
843
|
+
usr_background: string;
|
|
844
|
+
usr_surface: string;
|
|
845
|
+
usr_border: string;
|
|
846
|
+
usr_on_brand_primary: string;
|
|
847
|
+
usr_on_brand_secondary: string;
|
|
848
|
+
usr_on_background: string;
|
|
849
|
+
usr_on_surface: string;
|
|
850
|
+
sys_widget_status_active_01: string;
|
|
851
|
+
sys_text_success_01: string;
|
|
852
|
+
sys_widget_grey_04: string;
|
|
853
|
+
sys_text_active: string;
|
|
854
|
+
sys_component_base_blue: string;
|
|
855
|
+
sys_on_base_black_opacity65: string;
|
|
856
|
+
sys_component_base_04: string;
|
|
857
|
+
sys_component_base_black: string;
|
|
858
|
+
sys_component_base_black_opacity00: string;
|
|
859
|
+
usr_text_brand_secondary_variant: string;
|
|
860
|
+
usr_text_brand_primary: string;
|
|
861
|
+
usr_text_brand_on_primary: string;
|
|
862
|
+
sys_text_brand_secondary_variant: string;
|
|
863
|
+
sys_component_base_navy: string;
|
|
864
|
+
sys_widget_lightgreen: string;
|
|
865
|
+
sys_border_line_06: string;
|
|
866
|
+
sys_background_dimmed_20: string;
|
|
867
|
+
sys_widget_pink: string;
|
|
868
|
+
sys_widget_primary_opacity20: string;
|
|
869
|
+
sys_widget_secondary_variant_01: string;
|
|
870
|
+
usr_component_base_brand_primary_opacity10: string;
|
|
871
|
+
sys_temp_grey_01: string;
|
|
872
|
+
sys_temp_grey_02: string;
|
|
873
|
+
sys_temp_grey_03: string;
|
|
874
|
+
sys_temp_grey_04: string;
|
|
875
|
+
sys_temp_grey_05: string;
|
|
876
|
+
sys_temp_white: string;
|
|
877
|
+
sys_temp_primary_01: string;
|
|
878
|
+
sys_temp_secondary_01: string;
|
|
879
|
+
sys_temp_red: string;
|
|
880
|
+
sys_temp_white_opacity_00: string;
|
|
881
|
+
sys_temp_dimmed: string;
|
|
882
|
+
sys_temp_black: string;
|
|
883
|
+
sys_temp_primary_02: string;
|
|
884
|
+
sys_temp_primary_03: string;
|
|
885
|
+
sys_temp_secondary_02: string;
|
|
886
|
+
sys_temp_lightgreen_01: string;
|
|
887
|
+
sys_text_grey_04: string;
|
|
888
|
+
sys_papp_post_social_background: string;
|
|
889
|
+
sys_papp_post_notice_background: string;
|
|
890
|
+
sys_papp_post_free_background: string;
|
|
891
|
+
sys_papp_vod_background: string;
|
|
892
|
+
sys_papp_vodplus_background: string;
|
|
893
|
+
sys_papp_live_background: string;
|
|
894
|
+
sys_selcontrols_base_off_disabled: string;
|
|
895
|
+
sys_selcontrols_base_on_disabled: string;
|
|
896
|
+
sys_component_base_blue_opacity10: string;
|
|
897
|
+
sys_component_base_05: string;
|
|
898
|
+
sys_background_dimmed_65: string;
|
|
899
|
+
sys_temp_grey_06: string;
|
|
900
|
+
sys_on_base_white_opacity10: string;
|
|
901
|
+
sys_on_base_black_opacity10: string;
|
|
902
|
+
sys_component_base_05_opacity00: string;
|
|
903
|
+
sys_papp_post_notice_link: string;
|
|
904
|
+
sys_component_base_navy_light: string;
|
|
905
|
+
sys_component_base_orange: string;
|
|
906
|
+
sys_component_base_grey: string;
|
|
907
|
+
sys_component_base_black_opacity80: string;
|
|
908
|
+
sys_text_darkgrey_02: string;
|
|
909
|
+
sys_border_line_darktheme_01: string;
|
|
910
|
+
sys_border_line_darktheme_02: string;
|
|
911
|
+
sys_component_base_darktheme_01: string;
|
|
912
|
+
sys_component_base_darktheme_02: string;
|
|
913
|
+
sys_component_base_darktheme_03: string;
|
|
914
|
+
sys_text_grey_darktheme_01: string;
|
|
915
|
+
sys_text_grey_darktheme_02: string;
|
|
916
|
+
sys_text_grey_darktheme_03: string;
|
|
917
|
+
sys_widget_grey_darktheme_01: string;
|
|
918
|
+
sys_widget_grey_darktheme_02: string;
|
|
919
|
+
sys_widget_grey_darktheme_03: string;
|
|
920
|
+
sys_component_base_green: string;
|
|
921
|
+
sys_text_error_darktheme_01: string;
|
|
922
|
+
sys_border_line_darktheme_03: string;
|
|
923
|
+
sys_border_line_darktheme_04: string;
|
|
924
|
+
usr_widget_brand_primary_darktheme_01: string;
|
|
925
|
+
usr_text_brand_primary_darktheme_01: string;
|
|
926
|
+
sys_component_base_black_opacity50: string;
|
|
927
|
+
sys_component_base_card: string;
|
|
928
|
+
sys_cpnt_textlabel_sys_brand_primary_opacity50: string;
|
|
929
|
+
sys_widget_green_01: string;
|
|
930
|
+
sys_component_base_black_opacity30: string;
|
|
931
|
+
sys_area_background: string;
|
|
932
|
+
sys_border_white_opacity30: string;
|
|
933
|
+
sys_container_background_wt: string;
|
|
934
|
+
sys_channeldesc_grey_03: string;
|
|
935
|
+
sys_channeldesc_border_grey_03: string;
|
|
936
|
+
sys_gradient_base_01: string;
|
|
937
|
+
sys_gradient_base_01_opacity00: string;
|
|
938
|
+
sys_channeldesc_background: string;
|
|
939
|
+
sys_channeldesc_bottomsheet_base: string;
|
|
940
|
+
sys_channeldesc_bottomsheet_border: string;
|
|
941
|
+
sys_channeldesc_contents_base: string;
|
|
942
|
+
sys_channeldesc_dimmed: string;
|
|
943
|
+
sys_gradient_base_01_opacity50: string;
|
|
944
|
+
sys_gradient_base_01_opacity75: string;
|
|
945
|
+
sys_gradient_base_01_opacity40: string;
|
|
946
|
+
sys_widget_black: string;
|
|
947
|
+
usr_temp_primary_01: string;
|
|
948
|
+
sys_cpnt_sheet_base_02_opacity50: string;
|
|
949
|
+
usr_menu_primarymenu_main: string;
|
|
950
|
+
usr_menu_primarymenu_sub: string;
|
|
951
|
+
usr_menu_secondarymenu_main: string;
|
|
952
|
+
usr_menu_secondarymenu_sub: string;
|
|
953
|
+
usr_menu_hover: string;
|
|
954
|
+
usr_menu_active: string;
|
|
955
|
+
usr_menu_background: string;
|
|
956
|
+
sys_cpnt_base_white_opacity50: string;
|
|
957
|
+
sys_widget_dark_01: string;
|
|
958
|
+
usr_menu_background_gradient_opacity00: string;
|
|
959
|
+
sys_border_line_white: string;
|
|
960
|
+
sys_component_base_white_opacity10: string;
|
|
961
|
+
sys_cpnt_sheet_base_01: string;
|
|
962
|
+
sys_component_base_white_opacity20: string;
|
|
963
|
+
sys_border_line_07: string;
|
|
964
|
+
sys_border_line_white_opacity50: string;
|
|
965
|
+
sys_background_dimmed_02: string;
|
|
966
|
+
sys_border_line_08: string;
|
|
967
|
+
sys_component_base_06: string;
|
|
968
|
+
sys_component_base_07: string;
|
|
969
|
+
sys_border_line_09: string;
|
|
970
|
+
sys_component_base_darktheme_04: string;
|
|
971
|
+
sys_border_line_10: string;
|
|
972
|
+
sys_component_base_darktheme_05: string;
|
|
973
|
+
sys_border_line_darktheme_05: string;
|
|
974
|
+
sys_component_base_darktheme_06: string;
|
|
975
|
+
sys_border_line_darktheme_06: string;
|
|
976
|
+
sys_border_line_darktheme_07: string;
|
|
977
|
+
sys_border_line_11: string;
|
|
978
|
+
sys_base_dimmed_01: string;
|
|
979
|
+
sys_kakao: string;
|
|
980
|
+
sys_border_line_12: string;
|
|
981
|
+
sys_component_base_08: string;
|
|
982
|
+
sys_text_social_login_01: string;
|
|
983
|
+
sys_text_social_login_02: string;
|
|
984
|
+
sys_papp_livechat_link: string;
|
|
985
|
+
sys_text_lighttone_grey_01: string;
|
|
986
|
+
sys_widget_lighttone_primary_01: string;
|
|
987
|
+
sys_text_lighttone_grey_02: string;
|
|
988
|
+
sys_component_base_09: string;
|
|
989
|
+
sys_component_base_darktheme_opacity20: string;
|
|
990
|
+
sys_component_base_darktheme_disabled_opacity20: string;
|
|
991
|
+
sys_border_white_opacity00: string;
|
|
980
992
|
};
|
|
981
993
|
};
|
|
982
994
|
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 SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
8
|
-
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
9
7
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
8
|
+
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
10
9
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
10
|
+
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
11
11
|
var colorSet = {
|
|
12
|
-
SemanticColor: SemanticColor_json_1.default,
|
|
13
|
-
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
14
12
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
15
|
-
|
|
13
|
+
SemanticColor: SemanticColor_json_1.default,
|
|
14
|
+
UIColor: UIColor_json_1.default,
|
|
15
|
+
PaletteColor_Dark: PaletteColor_Dark_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -548,4 +548,10 @@ export interface UITheme {
|
|
|
548
548
|
ui_55: string;
|
|
549
549
|
ui_56: string;
|
|
550
550
|
ui_cpnt_sheet_base_04: string;
|
|
551
|
+
ui_cpnt_masking_base_01: string;
|
|
552
|
+
ui_cpnt_masking_icon_01: string;
|
|
553
|
+
ui_cpnt_list_base_area_transparent_seller: string;
|
|
554
|
+
ui_57: string;
|
|
555
|
+
ui_58: string;
|
|
556
|
+
ui_cpnt_divider_white_opacity00: string;
|
|
551
557
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { FillIconNameKeys, LineIconNameKeys, PDSTextType } from '../../../common';
|
|
3
3
|
export declare type FloatingActionButtonProps = {
|
|
4
4
|
text?: PDSTextType;
|
|
@@ -9,8 +9,8 @@ export declare type FloatingActionButtonProps = {
|
|
|
9
9
|
iconName?: FillIconNameKeys | LineIconNameKeys;
|
|
10
10
|
colorTheme?: 'none' | 'theme1' | 'theme2' | 'theme3';
|
|
11
11
|
state?: 'normal' | 'disabled';
|
|
12
|
-
onClick?: (
|
|
13
|
-
onMouseDown?: (
|
|
12
|
+
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => any;
|
|
13
|
+
onMouseDown?: (e: React.MouseEvent<HTMLButtonElement>) => any;
|
|
14
14
|
};
|
|
15
15
|
declare function FloatingActionButton({ text, displayType, size, fontWeight, iconFillType, iconName, colorTheme, state, onClick, onMouseDown }: FloatingActionButtonProps): JSX.Element;
|
|
16
16
|
export default FloatingActionButton;
|
|
@@ -36,14 +36,14 @@ var TextLabel_1 = require("../TextLabel");
|
|
|
36
36
|
// borderColorKey?: string;
|
|
37
37
|
function FloatingActionButton(_a) {
|
|
38
38
|
var text = _a.text, _b = _a.displayType, displayType = _b === void 0 ? 'icon_text' : _b, _c = _a.size, size = _c === void 0 ? 'large' : _c, _d = _a.fontWeight, fontWeight = _d === void 0 ? 'bold' : _d, _e = _a.iconFillType, iconFillType = _e === void 0 ? 'line' : _e, iconName = _a.iconName, _f = _a.colorTheme, colorTheme = _f === void 0 ? 'none' : _f, _g = _a.state, state = _g === void 0 ? 'normal' : _g, onClick = _a.onClick, onMouseDown = _a.onMouseDown;
|
|
39
|
-
var handleClick = function () {
|
|
39
|
+
var handleClick = function (e) {
|
|
40
40
|
if (onClick) {
|
|
41
|
-
onClick();
|
|
41
|
+
onClick(e);
|
|
42
42
|
}
|
|
43
43
|
};
|
|
44
|
-
var handleMouseDown = function () {
|
|
44
|
+
var handleMouseDown = function (e) {
|
|
45
45
|
if (onMouseDown) {
|
|
46
|
-
onMouseDown();
|
|
46
|
+
onMouseDown(e);
|
|
47
47
|
}
|
|
48
48
|
};
|
|
49
49
|
var iconColor = function () {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { PDSTextType } from '../../../common';
|
|
3
3
|
export declare type TextButtonProps = {
|
|
4
4
|
text?: PDSTextType;
|
|
@@ -8,7 +8,7 @@ export declare type TextButtonProps = {
|
|
|
8
8
|
type?: 'submit' | 'reset' | 'button';
|
|
9
9
|
state?: 'normal' | 'disabled';
|
|
10
10
|
colorTheme?: 'none' | 'red' | 'grey_01' | 'white';
|
|
11
|
-
onClick?: (
|
|
11
|
+
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
12
12
|
};
|
|
13
13
|
declare function TextButton({ text, size, responsiveMode, fontWeight, type, state, colorTheme, onClick, ...rest }: TextButtonProps): JSX.Element;
|
|
14
14
|
export default TextButton;
|
|
@@ -66,9 +66,9 @@ var textColor = {
|
|
|
66
66
|
};
|
|
67
67
|
function TextButton(_a) {
|
|
68
68
|
var text = _a.text, _b = _a.size, size = _b === void 0 ? 'large' : _b, _c = _a.responsiveMode, responsiveMode = _c === void 0 ? 'none' : _c, fontWeight = _a.fontWeight, _d = _a.type, type = _d === void 0 ? 'button' : _d, _e = _a.state, state = _e === void 0 ? 'normal' : _e, _f = _a.colorTheme, colorTheme = _f === void 0 ? 'none' : _f, onClick = _a.onClick, rest = __rest(_a, ["text", "size", "responsiveMode", "fontWeight", "type", "state", "colorTheme", "onClick"]);
|
|
69
|
-
var handleClick = function () {
|
|
69
|
+
var handleClick = function (e) {
|
|
70
70
|
if (onClick) {
|
|
71
|
-
onClick();
|
|
71
|
+
onClick(e);
|
|
72
72
|
}
|
|
73
73
|
};
|
|
74
74
|
return (react_1.default.createElement(S_Button, __assign({}, rest, { size: size, responsiveMode: responsiveMode, onClick: handleClick, type: type, fontWeight: fontWeight, disabled: state === 'disabled', state: state, colorTheme: colorTheme }),
|
|
@@ -7,7 +7,7 @@ export declare type ImageViewProps = {
|
|
|
7
7
|
height?: number | 'responsive';
|
|
8
8
|
noImageHeight?: number;
|
|
9
9
|
noImageWidth?: number;
|
|
10
|
-
ratio?: '16_9' | '9_16' | '16_10' | '10_16' | '4_3' | '3_4' | '1_1' | 'auto';
|
|
10
|
+
ratio?: '16_9' | '9_16' | '16_10' | '10_16' | '4_3' | '3_4' | '3_2' | '2_3' | '1_1' | 'auto';
|
|
11
11
|
scaleType?: 'fill' | 'contain' | 'cover' | 'none';
|
|
12
12
|
borderMode?: 'use' | 'none';
|
|
13
13
|
backgroundFillMode?: 'use' | 'none';
|
|
@@ -78,6 +78,8 @@ var S_RatioImageView = styled_components_1.default.div(templateObject_3 || (temp
|
|
|
78
78
|
'10_16': 'padding-top: 159.74%',
|
|
79
79
|
'4_3': 'padding-top: 75%',
|
|
80
80
|
'3_4': 'padding-top: 133.33%',
|
|
81
|
+
'3_2': 'padding-top: 66.66%',
|
|
82
|
+
'2_3': 'padding-top: 150%',
|
|
81
83
|
'1_1': 'padding-top: 100%'
|
|
82
84
|
}[ratio];
|
|
83
85
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { PDSTextType } from '../../../common';
|
|
3
3
|
export declare type TextButtonProps = {
|
|
4
4
|
text?: PDSTextType;
|
|
@@ -8,7 +8,7 @@ export declare type TextButtonProps = {
|
|
|
8
8
|
type?: 'submit' | 'reset' | 'button';
|
|
9
9
|
state?: 'normal' | 'disabled';
|
|
10
10
|
colorTheme?: 'none' | 'red' | 'grey_01' | 'white';
|
|
11
|
-
onClick?: (
|
|
11
|
+
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
12
12
|
};
|
|
13
13
|
declare function TextButton({ text, size, responsiveMode, fontWeight, type, state, colorTheme, onClick, ...rest }: TextButtonProps): JSX.Element;
|
|
14
14
|
export default TextButton;
|
|
@@ -66,9 +66,9 @@ var textColor = {
|
|
|
66
66
|
};
|
|
67
67
|
function TextButton(_a) {
|
|
68
68
|
var text = _a.text, _b = _a.size, size = _b === void 0 ? 'large' : _b, _c = _a.responsiveMode, responsiveMode = _c === void 0 ? 'none' : _c, fontWeight = _a.fontWeight, _d = _a.type, type = _d === void 0 ? 'button' : _d, _e = _a.state, state = _e === void 0 ? 'normal' : _e, _f = _a.colorTheme, colorTheme = _f === void 0 ? 'none' : _f, onClick = _a.onClick, rest = __rest(_a, ["text", "size", "responsiveMode", "fontWeight", "type", "state", "colorTheme", "onClick"]);
|
|
69
|
-
var handleClick = function () {
|
|
69
|
+
var handleClick = function (e) {
|
|
70
70
|
if (onClick) {
|
|
71
|
-
onClick();
|
|
71
|
+
onClick(e);
|
|
72
72
|
}
|
|
73
73
|
};
|
|
74
74
|
return (react_1.default.createElement(S_Button, __assign({}, rest, { size: size, responsiveMode: responsiveMode, onClick: handleClick, type: type, fontWeight: fontWeight, disabled: state === 'disabled', colorTheme: colorTheme }),
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.4.
|
|
2
|
+
## [v1.4.62]
|
|
3
3
|
|
|
4
4
|
### Component
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
|
|
5
|
+
* FloatingActionButton
|
|
6
|
+
* onClick type 변경
|
|
7
|
+
* onMouseDown type 변경
|
|
8
|
+
* TextButton
|
|
9
|
+
* onClick type 변경
|
|
10
|
+
* ImageView
|
|
11
|
+
* ratio에 '3_2'와 '2_3' 추가
|
|
12
|
+
|
|
13
|
+
### Color
|
|
14
|
+
* 컬러 키 값 22.09.29 14시 50분 기준 싱크
|