pds-dev-kit-web 1.4.56 → 1.4.58
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 +3 -0
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/common/types/components.d.ts +1 -1
- package/package.json +1 -1
- package/release-note.md +12 -8
|
@@ -179,5 +179,6 @@
|
|
|
179
179
|
"sys_papp_livechat_link": "darkskyblue500",
|
|
180
180
|
"sys_text_lighttone_grey_01": "grey900",
|
|
181
181
|
"sys_widget_lighttone_primary_01": "blue500",
|
|
182
|
-
"sys_text_lighttone_grey_02": "grey500"
|
|
182
|
+
"sys_text_lighttone_grey_02": "grey500",
|
|
183
|
+
"sys_component_base_09": "darygrey70"
|
|
183
184
|
}
|
|
@@ -179,5 +179,6 @@
|
|
|
179
179
|
"sys_papp_livechat_link": "skyblue500",
|
|
180
180
|
"sys_text_lighttone_grey_01": "grey900",
|
|
181
181
|
"sys_widget_lighttone_primary_01": "blue500",
|
|
182
|
-
"sys_text_lighttone_grey_02": "grey500"
|
|
182
|
+
"sys_text_lighttone_grey_02": "grey500",
|
|
183
|
+
"sys_component_base_09": "white"
|
|
183
184
|
}
|
|
@@ -546,5 +546,6 @@
|
|
|
546
546
|
"ui_53": "sys_widget_primary_01",
|
|
547
547
|
"ui_54": "sys_text_lighttone_grey_01",
|
|
548
548
|
"ui_55": "sys_widget_lighttone_primary_01",
|
|
549
|
-
"ui_56": "sys_text_lighttone_grey_02"
|
|
549
|
+
"ui_56": "sys_text_lighttone_grey_02",
|
|
550
|
+
"ui_cpnt_sheet_base_04": "sys_component_base_09"
|
|
550
551
|
}
|
|
@@ -241,6 +241,7 @@ declare const colorSet: {
|
|
|
241
241
|
sys_text_lighttone_grey_01: string;
|
|
242
242
|
sys_widget_lighttone_primary_01: string;
|
|
243
243
|
sys_text_lighttone_grey_02: string;
|
|
244
|
+
sys_component_base_09: string;
|
|
244
245
|
};
|
|
245
246
|
readonly PaletteColor_light: {
|
|
246
247
|
sys_container_background_01: string;
|
|
@@ -424,6 +425,7 @@ declare const colorSet: {
|
|
|
424
425
|
sys_text_lighttone_grey_01: string;
|
|
425
426
|
sys_widget_lighttone_primary_01: string;
|
|
426
427
|
sys_text_lighttone_grey_02: string;
|
|
428
|
+
sys_component_base_09: string;
|
|
427
429
|
};
|
|
428
430
|
readonly UIColor: {
|
|
429
431
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -974,6 +976,7 @@ declare const colorSet: {
|
|
|
974
976
|
ui_54: string;
|
|
975
977
|
ui_55: string;
|
|
976
978
|
ui_56: string;
|
|
979
|
+
ui_cpnt_sheet_base_04: string;
|
|
977
980
|
};
|
|
978
981
|
};
|
|
979
982
|
export default colorSet;
|
|
@@ -7,6 +7,6 @@ export declare type PDSValueOption = {
|
|
|
7
7
|
export declare type PDSTabItemOption = {
|
|
8
8
|
title: PDSTextType;
|
|
9
9
|
isActive: boolean;
|
|
10
|
-
onClick?: (e: React.MouseEvent<
|
|
10
|
+
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
11
11
|
};
|
|
12
12
|
export declare type ForwardedRefType<T> = ForwardedRef<T | null>;
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.4.
|
|
2
|
+
## [v1.4.58]
|
|
3
|
+
|
|
4
|
+
### Type
|
|
5
|
+
* PDSTabItemOption 내부 onClick type 변경
|
|
3
6
|
|
|
4
7
|
### Component
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* onClick type 변경
|
|
9
|
-
|
|
10
|
-
*
|
|
11
|
-
|
|
8
|
+
* DesktopTabBar
|
|
9
|
+
* 내부에서 쓰인 PDSTabItemOption 내부 onClick type 변경
|
|
10
|
+
* UserDesktopSideTab
|
|
11
|
+
* 내부에서 쓰인 PDSTabItemOption 내부 onClick type 변경
|
|
12
|
+
* UserDesktopTabBar
|
|
13
|
+
* 내부에서 쓰인 PDSTabItemOption 내부 onClick type 변경
|
|
14
|
+
* MobileTabBar
|
|
15
|
+
* 내부에서 쓰인 PDSTabItemOption 내부 onClick type 변경
|