pds-dev-kit-web 1.3.9 → 1.3.10
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 +3 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +3 -1
- package/dist/src/common/styles/colorSet/UIColor.json +7 -1
- package/dist/src/common/styles/colorSet/index.d.ts +219 -209
- package/dist/src/common/styles/colorSet/index.js +4 -4
- package/dist/src/common/styles/colorSet/ui-type.d.ts +6 -0
- package/dist/src/common/styles/theme.js +1 -1
- package/dist/src/common/styles/ui-colors.d.ts +3 -1
- package/dist/src/common/styles/ui-colors.js +5 -4
- package/dist/src/desktop/components/AdminList/AdminList.js +1 -1
- package/package.json +1 -1
- package/release-note.md +4 -18
|
@@ -150,5 +150,7 @@
|
|
|
150
150
|
"usr_menu_background": "grey950",
|
|
151
151
|
"sys_cpnt_base_white_opacity50": "white/opacity50",
|
|
152
152
|
"sys_widget_dark_01": "grey950",
|
|
153
|
-
"usr_menu_background_gradient_opacity00": "grey950/opacity00"
|
|
153
|
+
"usr_menu_background_gradient_opacity00": "grey950/opacity00",
|
|
154
|
+
"sys_border_line_white": "white",
|
|
155
|
+
"sys_component_base_white_opacity10": "white/opacity10"
|
|
154
156
|
}
|
|
@@ -150,5 +150,7 @@
|
|
|
150
150
|
"usr_menu_background": "white",
|
|
151
151
|
"sys_cpnt_base_white_opacity50": "white/opacity50",
|
|
152
152
|
"sys_widget_dark_01": "grey900",
|
|
153
|
-
"usr_menu_background_gradient_opacity00": "white/opacity00"
|
|
153
|
+
"usr_menu_background_gradient_opacity00": "white/opacity00",
|
|
154
|
+
"sys_border_line_white": "white",
|
|
155
|
+
"sys_component_base_white_opacity10": "white/opacity10"
|
|
154
156
|
}
|
|
@@ -480,5 +480,11 @@
|
|
|
480
480
|
"ui_menu_background": "usr_menu_background",
|
|
481
481
|
"ui_cpnt_video_progress_base": "sys_cpnt_base_white_opacity50",
|
|
482
482
|
"ui_cpnt_icon_sys_dark": "sys_widget_dark_01",
|
|
483
|
-
"ui_menu_background_gradient_opacity00": "usr_menu_background_gradient_opacity00"
|
|
483
|
+
"ui_menu_background_gradient_opacity00": "usr_menu_background_gradient_opacity00",
|
|
484
|
+
"ui_cpnt_dropdown_border_white_normal": "sys_border_line_white",
|
|
485
|
+
"ui_cpnt_dropdown_text_white_enabled": "sys_text_white",
|
|
486
|
+
"ui_cpnt_dropdown_text_white_hint": "sys_text_white",
|
|
487
|
+
"ui_cpnt_dropdown_icon_white_default": "sys_widget_white",
|
|
488
|
+
"ui_cpnt_dropdown_border_white_focus": "sys_border_line_03",
|
|
489
|
+
"ui_cpnt_dropdown_base_white_normal": "sys_component_base_white_opacity10"
|
|
484
490
|
}
|
|
@@ -1,157 +1,60 @@
|
|
|
1
1
|
declare const colorSet: {
|
|
2
|
-
readonly
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
sys_text_brand_secondary_variant: string;
|
|
59
|
-
sys_component_base_navy: string;
|
|
60
|
-
sys_widget_lightgreen: string;
|
|
61
|
-
sys_border_line_06: string;
|
|
62
|
-
sys_background_dimmed_20: string;
|
|
63
|
-
sys_widget_pink: string;
|
|
64
|
-
sys_widget_primary_opacity20: string;
|
|
65
|
-
sys_widget_secondary_variant_01: string;
|
|
66
|
-
usr_component_base_brand_primary_opacity10: string;
|
|
67
|
-
sys_temp_grey_01: string;
|
|
68
|
-
sys_temp_grey_02: string;
|
|
69
|
-
sys_temp_grey_03: string;
|
|
70
|
-
sys_temp_grey_04: string;
|
|
71
|
-
sys_temp_grey_05: string;
|
|
72
|
-
sys_temp_white: string;
|
|
73
|
-
sys_temp_primary_01: string;
|
|
74
|
-
sys_temp_secondary_01: string;
|
|
75
|
-
sys_temp_red: string;
|
|
76
|
-
sys_temp_white_opacity_00: string;
|
|
77
|
-
sys_temp_dimmed: string;
|
|
78
|
-
sys_temp_black: string;
|
|
79
|
-
sys_temp_primary_02: string;
|
|
80
|
-
sys_temp_primary_03: string;
|
|
81
|
-
sys_temp_secondary_02: string;
|
|
82
|
-
sys_temp_lightgreen_01: string;
|
|
83
|
-
sys_text_grey_04: string;
|
|
84
|
-
sys_papp_post_social_background: string;
|
|
85
|
-
sys_papp_post_notice_background: string;
|
|
86
|
-
sys_papp_post_free_background: string;
|
|
87
|
-
sys_papp_vod_background: string;
|
|
88
|
-
sys_papp_vodplus_background: string;
|
|
89
|
-
sys_papp_live_background: string;
|
|
90
|
-
sys_selcontrols_base_off_disabled: string;
|
|
91
|
-
sys_selcontrols_base_on_disabled: string;
|
|
92
|
-
sys_component_base_blue_opacity10: string;
|
|
93
|
-
sys_component_base_05: string;
|
|
94
|
-
sys_background_dimmed_65: string;
|
|
95
|
-
sys_temp_grey_06: string;
|
|
96
|
-
sys_on_base_white_opacity10: string;
|
|
97
|
-
sys_on_base_black_opacity10: string;
|
|
98
|
-
sys_component_base_05_opacity00: string;
|
|
99
|
-
sys_papp_post_notice_link: string;
|
|
100
|
-
sys_component_base_navy_light: string;
|
|
101
|
-
sys_component_base_orange: string;
|
|
102
|
-
sys_component_base_grey: string;
|
|
103
|
-
sys_component_base_black_opacity80: string;
|
|
104
|
-
sys_text_darkgrey_02: string;
|
|
105
|
-
sys_border_line_darktheme_01: string;
|
|
106
|
-
sys_border_line_darktheme_02: string;
|
|
107
|
-
sys_component_base_darktheme_01: string;
|
|
108
|
-
sys_component_base_darktheme_02: string;
|
|
109
|
-
sys_component_base_darktheme_03: string;
|
|
110
|
-
sys_text_grey_darktheme_01: string;
|
|
111
|
-
sys_text_grey_darktheme_02: string;
|
|
112
|
-
sys_text_grey_darktheme_03: string;
|
|
113
|
-
sys_widget_grey_darktheme_01: string;
|
|
114
|
-
sys_widget_grey_darktheme_02: string;
|
|
115
|
-
sys_widget_grey_darktheme_03: string;
|
|
116
|
-
sys_component_base_green: string;
|
|
117
|
-
sys_text_error_darktheme_01: string;
|
|
118
|
-
sys_border_line_darktheme_03: string;
|
|
119
|
-
sys_border_line_darktheme_04: string;
|
|
120
|
-
usr_widget_brand_primary_darktheme_01: string;
|
|
121
|
-
usr_text_brand_primary_darktheme_01: string;
|
|
122
|
-
sys_component_base_black_opacity50: string;
|
|
123
|
-
sys_component_base_card: string;
|
|
124
|
-
sys_cpnt_textlabel_sys_brand_primary_opacity50: string;
|
|
125
|
-
sys_widget_green_01: string;
|
|
126
|
-
sys_component_base_black_opacity30: string;
|
|
127
|
-
sys_area_background: string;
|
|
128
|
-
sys_border_white_opacity30: string;
|
|
129
|
-
sys_container_background_wt: string;
|
|
130
|
-
sys_channeldesc_grey_03: string;
|
|
131
|
-
sys_channeldesc_border_grey_03: string;
|
|
132
|
-
sys_gradient_base_01: string;
|
|
133
|
-
sys_gradient_base_01_opacity00: string;
|
|
134
|
-
sys_channeldesc_background: string;
|
|
135
|
-
sys_channeldesc_bottomsheet_base: string;
|
|
136
|
-
sys_channeldesc_bottomsheet_border: string;
|
|
137
|
-
sys_channeldesc_contents_base: string;
|
|
138
|
-
sys_channeldesc_dimmed: string;
|
|
139
|
-
sys_gradient_base_01_opacity50: string;
|
|
140
|
-
sys_gradient_base_01_opacity75: string;
|
|
141
|
-
sys_gradient_base_01_opacity40: string;
|
|
142
|
-
sys_widget_black: string;
|
|
143
|
-
usr_temp_primary_01: string;
|
|
144
|
-
sys_cpnt_sheet_base_02_opacity50: string;
|
|
145
|
-
usr_menu_primarymenu_main: string;
|
|
146
|
-
usr_menu_primarymenu_sub: string;
|
|
147
|
-
usr_menu_secondarymenu_main: string;
|
|
148
|
-
usr_menu_secondarymenu_sub: string;
|
|
149
|
-
usr_menu_hover: string;
|
|
150
|
-
usr_menu_active: string;
|
|
151
|
-
usr_menu_background: string;
|
|
152
|
-
sys_cpnt_base_white_opacity50: string;
|
|
153
|
-
sys_widget_dark_01: string;
|
|
154
|
-
usr_menu_background_gradient_opacity00: string;
|
|
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;
|
|
155
58
|
};
|
|
156
59
|
readonly PaletteColor_light: {
|
|
157
60
|
sys_container_background_01: string;
|
|
@@ -306,6 +209,8 @@ declare const colorSet: {
|
|
|
306
209
|
sys_cpnt_base_white_opacity50: string;
|
|
307
210
|
sys_widget_dark_01: string;
|
|
308
211
|
usr_menu_background_gradient_opacity00: string;
|
|
212
|
+
sys_border_line_white: string;
|
|
213
|
+
sys_component_base_white_opacity10: string;
|
|
309
214
|
};
|
|
310
215
|
readonly UIColor: {
|
|
311
216
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -790,63 +695,168 @@ declare const colorSet: {
|
|
|
790
695
|
ui_cpnt_video_progress_base: string;
|
|
791
696
|
ui_cpnt_icon_sys_dark: string;
|
|
792
697
|
ui_menu_background_gradient_opacity00: string;
|
|
698
|
+
ui_cpnt_dropdown_border_white_normal: string;
|
|
699
|
+
ui_cpnt_dropdown_text_white_enabled: string;
|
|
700
|
+
ui_cpnt_dropdown_text_white_hint: string;
|
|
701
|
+
ui_cpnt_dropdown_icon_white_default: string;
|
|
702
|
+
ui_cpnt_dropdown_border_white_focus: string;
|
|
703
|
+
ui_cpnt_dropdown_base_white_normal: string;
|
|
793
704
|
};
|
|
794
|
-
readonly
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
705
|
+
readonly PaletteColor_Dark: {
|
|
706
|
+
sys_container_background_01: string;
|
|
707
|
+
sys_container_background_02: string;
|
|
708
|
+
sys_container_background_03: string;
|
|
709
|
+
sys_background_dimmed: string;
|
|
710
|
+
sys_text_grey_01: string;
|
|
711
|
+
sys_text_grey_02: string;
|
|
712
|
+
sys_text_grey_03: string;
|
|
713
|
+
sys_text_white: string;
|
|
714
|
+
sys_text_brand_primary: string;
|
|
715
|
+
sys_text_error_01: string;
|
|
716
|
+
sys_widget_grey_01: string;
|
|
717
|
+
sys_widget_grey_02: string;
|
|
718
|
+
sys_widget_grey_03: string;
|
|
719
|
+
sys_widget_primary_01: string;
|
|
720
|
+
sys_widget_error_01: string;
|
|
721
|
+
sys_widget_warning_01: string;
|
|
722
|
+
sys_widget_success_01: string;
|
|
723
|
+
sys_widget_white: string;
|
|
724
|
+
sys_border_area_01: string;
|
|
725
|
+
sys_border_line_01: string;
|
|
726
|
+
sys_border_line_02: string;
|
|
727
|
+
sys_border_line_03: string;
|
|
728
|
+
sys_border_line_04: string;
|
|
729
|
+
sys_border_line_05: string;
|
|
730
|
+
sys_component_base_01: string;
|
|
731
|
+
sys_component_base_02: string;
|
|
732
|
+
sys_component_base_03: string;
|
|
733
|
+
sys_component_base_red: string;
|
|
734
|
+
sys_component_base_white: string;
|
|
735
|
+
sys_component_base_white_opacity00: string;
|
|
736
|
+
sys_on_base_white_opacity00: string;
|
|
737
|
+
sys_on_base_white_opacity30: string;
|
|
738
|
+
sys_on_base_black_opacity20: string;
|
|
739
|
+
usr_brand_primary: string;
|
|
740
|
+
usr_brand_secondary: string;
|
|
741
|
+
usr_brand_secondary_variant: string;
|
|
742
|
+
usr_background: string;
|
|
743
|
+
usr_surface: string;
|
|
744
|
+
usr_border: string;
|
|
745
|
+
usr_on_brand_primary: string;
|
|
746
|
+
usr_on_brand_secondary: string;
|
|
747
|
+
usr_on_background: string;
|
|
748
|
+
usr_on_surface: string;
|
|
749
|
+
sys_widget_status_active_01: string;
|
|
750
|
+
sys_text_success_01: string;
|
|
751
|
+
sys_widget_grey_04: string;
|
|
752
|
+
sys_text_active: string;
|
|
753
|
+
sys_component_base_blue: string;
|
|
754
|
+
sys_on_base_black_opacity65: string;
|
|
755
|
+
sys_component_base_04: string;
|
|
756
|
+
sys_component_base_black: string;
|
|
757
|
+
sys_component_base_black_opacity00: string;
|
|
758
|
+
usr_text_brand_secondary_variant: string;
|
|
759
|
+
usr_text_brand_primary: string;
|
|
760
|
+
usr_text_brand_on_primary: string;
|
|
761
|
+
sys_text_brand_secondary_variant: string;
|
|
762
|
+
sys_component_base_navy: string;
|
|
763
|
+
sys_widget_lightgreen: string;
|
|
764
|
+
sys_border_line_06: string;
|
|
765
|
+
sys_background_dimmed_20: string;
|
|
766
|
+
sys_widget_pink: string;
|
|
767
|
+
sys_widget_primary_opacity20: string;
|
|
768
|
+
sys_widget_secondary_variant_01: string;
|
|
769
|
+
usr_component_base_brand_primary_opacity10: string;
|
|
770
|
+
sys_temp_grey_01: string;
|
|
771
|
+
sys_temp_grey_02: string;
|
|
772
|
+
sys_temp_grey_03: string;
|
|
773
|
+
sys_temp_grey_04: string;
|
|
774
|
+
sys_temp_grey_05: string;
|
|
775
|
+
sys_temp_white: string;
|
|
776
|
+
sys_temp_primary_01: string;
|
|
777
|
+
sys_temp_secondary_01: string;
|
|
778
|
+
sys_temp_red: string;
|
|
779
|
+
sys_temp_white_opacity_00: string;
|
|
780
|
+
sys_temp_dimmed: string;
|
|
781
|
+
sys_temp_black: string;
|
|
782
|
+
sys_temp_primary_02: string;
|
|
783
|
+
sys_temp_primary_03: string;
|
|
784
|
+
sys_temp_secondary_02: string;
|
|
785
|
+
sys_temp_lightgreen_01: string;
|
|
786
|
+
sys_text_grey_04: string;
|
|
787
|
+
sys_papp_post_social_background: string;
|
|
788
|
+
sys_papp_post_notice_background: string;
|
|
789
|
+
sys_papp_post_free_background: string;
|
|
790
|
+
sys_papp_vod_background: string;
|
|
791
|
+
sys_papp_vodplus_background: string;
|
|
792
|
+
sys_papp_live_background: string;
|
|
793
|
+
sys_selcontrols_base_off_disabled: string;
|
|
794
|
+
sys_selcontrols_base_on_disabled: string;
|
|
795
|
+
sys_component_base_blue_opacity10: string;
|
|
796
|
+
sys_component_base_05: string;
|
|
797
|
+
sys_background_dimmed_65: string;
|
|
798
|
+
sys_temp_grey_06: string;
|
|
799
|
+
sys_on_base_white_opacity10: string;
|
|
800
|
+
sys_on_base_black_opacity10: string;
|
|
801
|
+
sys_component_base_05_opacity00: string;
|
|
802
|
+
sys_papp_post_notice_link: string;
|
|
803
|
+
sys_component_base_navy_light: string;
|
|
804
|
+
sys_component_base_orange: string;
|
|
805
|
+
sys_component_base_grey: string;
|
|
806
|
+
sys_component_base_black_opacity80: string;
|
|
807
|
+
sys_text_darkgrey_02: string;
|
|
808
|
+
sys_border_line_darktheme_01: string;
|
|
809
|
+
sys_border_line_darktheme_02: string;
|
|
810
|
+
sys_component_base_darktheme_01: string;
|
|
811
|
+
sys_component_base_darktheme_02: string;
|
|
812
|
+
sys_component_base_darktheme_03: string;
|
|
813
|
+
sys_text_grey_darktheme_01: string;
|
|
814
|
+
sys_text_grey_darktheme_02: string;
|
|
815
|
+
sys_text_grey_darktheme_03: string;
|
|
816
|
+
sys_widget_grey_darktheme_01: string;
|
|
817
|
+
sys_widget_grey_darktheme_02: string;
|
|
818
|
+
sys_widget_grey_darktheme_03: string;
|
|
819
|
+
sys_component_base_green: string;
|
|
820
|
+
sys_text_error_darktheme_01: string;
|
|
821
|
+
sys_border_line_darktheme_03: string;
|
|
822
|
+
sys_border_line_darktheme_04: string;
|
|
823
|
+
usr_widget_brand_primary_darktheme_01: string;
|
|
824
|
+
usr_text_brand_primary_darktheme_01: string;
|
|
825
|
+
sys_component_base_black_opacity50: string;
|
|
826
|
+
sys_component_base_card: string;
|
|
827
|
+
sys_cpnt_textlabel_sys_brand_primary_opacity50: string;
|
|
828
|
+
sys_widget_green_01: string;
|
|
829
|
+
sys_component_base_black_opacity30: string;
|
|
830
|
+
sys_area_background: string;
|
|
831
|
+
sys_border_white_opacity30: string;
|
|
832
|
+
sys_container_background_wt: string;
|
|
833
|
+
sys_channeldesc_grey_03: string;
|
|
834
|
+
sys_channeldesc_border_grey_03: string;
|
|
835
|
+
sys_gradient_base_01: string;
|
|
836
|
+
sys_gradient_base_01_opacity00: string;
|
|
837
|
+
sys_channeldesc_background: string;
|
|
838
|
+
sys_channeldesc_bottomsheet_base: string;
|
|
839
|
+
sys_channeldesc_bottomsheet_border: string;
|
|
840
|
+
sys_channeldesc_contents_base: string;
|
|
841
|
+
sys_channeldesc_dimmed: string;
|
|
842
|
+
sys_gradient_base_01_opacity50: string;
|
|
843
|
+
sys_gradient_base_01_opacity75: string;
|
|
844
|
+
sys_gradient_base_01_opacity40: string;
|
|
845
|
+
sys_widget_black: string;
|
|
846
|
+
usr_temp_primary_01: string;
|
|
847
|
+
sys_cpnt_sheet_base_02_opacity50: string;
|
|
848
|
+
usr_menu_primarymenu_main: string;
|
|
849
|
+
usr_menu_primarymenu_sub: string;
|
|
850
|
+
usr_menu_secondarymenu_main: string;
|
|
851
|
+
usr_menu_secondarymenu_sub: string;
|
|
852
|
+
usr_menu_hover: string;
|
|
853
|
+
usr_menu_active: string;
|
|
854
|
+
usr_menu_background: string;
|
|
855
|
+
sys_cpnt_base_white_opacity50: string;
|
|
856
|
+
sys_widget_dark_01: string;
|
|
857
|
+
usr_menu_background_gradient_opacity00: string;
|
|
858
|
+
sys_border_line_white: string;
|
|
859
|
+
sys_component_base_white_opacity10: string;
|
|
850
860
|
};
|
|
851
861
|
};
|
|
852
862
|
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
|
|
7
|
+
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
8
8
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
9
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
10
|
-
var
|
|
10
|
+
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
11
11
|
var colorSet = {
|
|
12
|
-
|
|
12
|
+
SemanticColor: SemanticColor_json_1.default,
|
|
13
13
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
14
|
UIColor: UIColor_json_1.default,
|
|
15
|
-
|
|
15
|
+
PaletteColor_Dark: PaletteColor_Dark_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -481,4 +481,10 @@ export interface UITheme {
|
|
|
481
481
|
ui_cpnt_video_progress_base: string;
|
|
482
482
|
ui_cpnt_icon_sys_dark: string;
|
|
483
483
|
ui_menu_background_gradient_opacity00: string;
|
|
484
|
+
ui_cpnt_dropdown_border_white_normal: string;
|
|
485
|
+
ui_cpnt_dropdown_text_white_enabled: string;
|
|
486
|
+
ui_cpnt_dropdown_text_white_hint: string;
|
|
487
|
+
ui_cpnt_dropdown_icon_white_default: string;
|
|
488
|
+
ui_cpnt_dropdown_border_white_focus: string;
|
|
489
|
+
ui_cpnt_dropdown_base_white_normal: string;
|
|
484
490
|
}
|
|
@@ -95,5 +95,5 @@ exports.spacing = {
|
|
|
95
95
|
spacingM: '288px',
|
|
96
96
|
spacingN: '320px'
|
|
97
97
|
};
|
|
98
|
-
var theme = __assign({ fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing }, (0, ui_colors_1.customTheme)(window.PdsUtils ? window.PdsUtils.tone : 'DARK'));
|
|
98
|
+
var theme = __assign({ fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing }, (0, ui_colors_1.customTheme)(window.PdsUtils ? window.PdsUtils.tone : 'DARK', window.PdsUtils ? window.PdsUtils.palette : {}));
|
|
99
99
|
exports.default = theme;
|
|
@@ -28,20 +28,21 @@ function buildCascadedColors(lowLevel, highLevel, override) {
|
|
|
28
28
|
// from server (원래는 비동기)
|
|
29
29
|
var colorSetting = {
|
|
30
30
|
tone: 'DARK',
|
|
31
|
-
|
|
31
|
+
palette: {
|
|
32
32
|
usr_good_job: '#999999'
|
|
33
33
|
}
|
|
34
34
|
};
|
|
35
35
|
var phaseTwoJSON = colorSetting.tone === 'LIGHT' ? colorSet_1.default.PaletteColor_light : colorSet_1.default.PaletteColor_Dark;
|
|
36
36
|
// ui-color-build-phase
|
|
37
|
-
var paletteColors = buildCascadedColors(colorSet_1.default.SemanticColor, phaseTwoJSON, colorSetting.
|
|
37
|
+
var paletteColors = buildCascadedColors(colorSet_1.default.SemanticColor, phaseTwoJSON, colorSetting.palette);
|
|
38
38
|
exports.uiColors = buildCascadedColors(paletteColors, colorSet_1.default.UIColor);
|
|
39
39
|
window.PdsUtils = {
|
|
40
40
|
tone: 'DARK'
|
|
41
41
|
};
|
|
42
|
-
var customTheme = function (tone) {
|
|
42
|
+
var customTheme = function (tone, palette) {
|
|
43
43
|
window.PdsUtils.tone = tone;
|
|
44
|
-
|
|
44
|
+
window.PdsUtils.palette = palette;
|
|
45
|
+
var buildedColors = buildCascadedColors(buildCascadedColors(colorSet_1.default.SemanticColor, tone === 'LIGHT' ? colorSet_1.default.PaletteColor_light : colorSet_1.default.PaletteColor_Dark, palette), colorSet_1.default.UIColor);
|
|
45
46
|
return buildedColors;
|
|
46
47
|
};
|
|
47
48
|
exports.customTheme = customTheme;
|
|
@@ -85,7 +85,7 @@ function AdminList(_a) {
|
|
|
85
85
|
}
|
|
86
86
|
setIsBulkActionBarOpen(true);
|
|
87
87
|
selectedIds.forEach(function (val) { return checkboxMethods.setValue(val.toString(), true); });
|
|
88
|
-
}, [selectedIds]);
|
|
88
|
+
}, [selectedIds, maintainIds]);
|
|
89
89
|
var handleSelectAllCheckbox = function () {
|
|
90
90
|
var allIds = Object.keys(checkboxMethods.getValues()).map(function (id) { return Number(id); });
|
|
91
91
|
var basicIds = allIds.filter(function (id) { return !(maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.includes(id)); });
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,24 +1,10 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.3.
|
|
2
|
+
## [v1.3.10]
|
|
3
3
|
|
|
4
4
|
### Component
|
|
5
5
|
* AdminList
|
|
6
|
-
*
|
|
7
|
-
* 전체선택 체크박스를 해제할 시 maintain 되어야 하는 아이템의 체크박스를 유지하게 수정
|
|
8
|
-
* quickActionBtnType이 ‘fix’ 일 경우 퀵 액션 버튼이 호버했을 시에만 버튼이 보여지게 수정
|
|
9
|
-
* Dropdown
|
|
10
|
-
* selectMode?: 'one' | 'multi'; -> selectionMode?: 'single' | 'multi’;로 변경 (문구의 통일성 위해)
|
|
11
|
-
* DesktopBasicModal
|
|
12
|
-
* prop추가
|
|
13
|
-
* mBtn1Type
|
|
14
|
-
* mBtn2Type
|
|
15
|
-
* mBtn3Type
|
|
16
|
-
* Icon
|
|
17
|
-
* line icon value추가
|
|
18
|
-
* ic_folder
|
|
19
|
-
* ic_download
|
|
20
|
-
* ic_arrow_left_thin
|
|
21
|
-
* ic_arrow_right_thin
|
|
6
|
+
* 벌크액션바 정상 작동 위해 maintinIds를 디펜던시에 추가
|
|
22
7
|
|
|
23
8
|
### Color
|
|
24
|
-
* 컬러
|
|
9
|
+
* 커스텀 컬러 작동을 위해 palette를 받을 수 있도록 수정
|
|
10
|
+
* 컬러 키 값 22.05.02 22시 15분 기준 싱크
|