@zohodesk/components 1.0.0-temp-157 → 1.0.0-temp-159
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/README.md +4 -0
- package/es/Avatar/Avatar.module.css +8 -8
- package/es/AvatarTeam/AvatarTeam.module.css +33 -32
- package/es/Button/css/Button.module.css +49 -48
- package/es/Buttongroup/Buttongroup.module.css +10 -10
- package/es/CheckBox/CheckBox.module.css +14 -14
- package/es/DateTime/DateTime.js +1 -1
- package/es/DateTime/DateTime.module.css +32 -32
- package/es/DateTime/YearView.module.css +12 -12
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +42 -41
- package/es/DropDown/DropDown.module.css +2 -2
- package/es/DropDown/DropDownHeading.module.css +5 -5
- package/es/DropDown/DropDownItem.module.css +7 -7
- package/es/DropDown/DropDownSearch.module.css +3 -3
- package/es/DropDown/DropDownSeparator.module.css +2 -2
- package/es/Heading/Heading.module.css +1 -1
- package/es/Label/Label.js +2 -7
- package/es/Label/Label.module.css +6 -6
- package/es/Label/props/propTypes.js +1 -4
- package/es/ListItem/ListItem.module.css +37 -37
- package/es/MultiSelect/MultiSelect.module.css +25 -24
- package/es/MultiSelect/SelectedOptions.module.css +4 -4
- package/es/Radio/Radio.module.css +9 -9
- package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +1 -1
- package/es/Ribbon/Ribbon.module.css +44 -42
- package/es/Select/Select.module.css +19 -19
- package/es/Stencils/Stencils.module.css +13 -13
- package/es/Switch/Switch.module.css +22 -22
- package/es/Tab/Tab.module.css +10 -10
- package/es/Tab/Tabs.module.css +12 -12
- package/es/Tag/Tag.module.css +20 -20
- package/es/TextBox/TextBox.module.css +23 -19
- package/es/TextBoxIcon/TextBoxIcon.module.css +2 -1
- package/es/Textarea/Textarea.module.css +24 -25
- package/es/Tooltip/Tooltip.module.css +10 -3
- package/es/common/avatarsizes.module.css +16 -16
- package/es/common/customscroll.module.css +2 -0
- package/es/common/reset.module.css +1 -0
- package/es/deprecated/AdvancedMultiSelect.module.css +16 -16
- package/lib/Avatar/Avatar.module.css +8 -8
- package/lib/AvatarTeam/AvatarTeam.module.css +33 -32
- package/lib/Button/css/Button.module.css +49 -48
- package/lib/Buttongroup/Buttongroup.module.css +10 -10
- package/lib/CheckBox/CheckBox.module.css +14 -14
- package/lib/DateTime/DateTime.js +1 -1
- package/lib/DateTime/DateTime.module.css +32 -32
- package/lib/DateTime/YearView.module.css +12 -12
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +42 -41
- package/lib/DropDown/DropDown.module.css +2 -2
- package/lib/DropDown/DropDownHeading.module.css +5 -5
- package/lib/DropDown/DropDownItem.module.css +7 -7
- package/lib/DropDown/DropDownSearch.module.css +3 -3
- package/lib/DropDown/DropDownSeparator.module.css +2 -2
- package/lib/Heading/Heading.module.css +1 -1
- package/lib/Label/Label.js +2 -6
- package/lib/Label/Label.module.css +6 -6
- package/lib/Label/props/propTypes.js +1 -4
- package/lib/ListItem/ListItem.module.css +37 -37
- package/lib/MultiSelect/MultiSelect.module.css +25 -24
- package/lib/MultiSelect/SelectedOptions.module.css +4 -4
- package/lib/Radio/Radio.module.css +9 -9
- package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +1 -1
- package/lib/Ribbon/Ribbon.module.css +44 -42
- package/lib/Select/Select.module.css +19 -19
- package/lib/Stencils/Stencils.module.css +13 -13
- package/lib/Switch/Switch.module.css +22 -22
- package/lib/Tab/Tab.module.css +10 -10
- package/lib/Tab/Tabs.module.css +12 -12
- package/lib/Tag/Tag.module.css +20 -20
- package/lib/TextBox/TextBox.module.css +23 -19
- package/lib/TextBoxIcon/TextBoxIcon.module.css +2 -1
- package/lib/Textarea/Textarea.module.css +24 -25
- package/lib/Tooltip/Tooltip.module.css +10 -3
- package/lib/common/avatarsizes.module.css +16 -16
- package/lib/common/customscroll.module.css +2 -0
- package/lib/common/reset.module.css +1 -0
- package/lib/deprecated/AdvancedMultiSelect.module.css +16 -16
- package/package.json +19 -12
package/README.md
CHANGED
|
@@ -32,6 +32,10 @@ In this Package, we Provide Some Basic Components to Build Web App
|
|
|
32
32
|
- TextBoxIcon
|
|
33
33
|
- Tooltip
|
|
34
34
|
|
|
35
|
+
# 1.0.0-alpha-269
|
|
36
|
+
|
|
37
|
+
- **DateTime** - 24Hour Suggestion Issue Fixed
|
|
38
|
+
|
|
35
39
|
# 1.0.0-alpha-268
|
|
36
40
|
|
|
37
41
|
- Contrast default variables :root selector removed
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.varClass {
|
|
2
2
|
/* avatar default variables */
|
|
3
3
|
--avatar_text_color: var(--zdt_avatar_default_text);
|
|
4
|
-
--avatar_font_size:
|
|
4
|
+
--avatar_font_size: 14px;
|
|
5
5
|
--avatar_bg_color: var(--zdt_avatar_default_bg);
|
|
6
6
|
--avatar_border_radius: 50%;
|
|
7
7
|
--avatar_border_width: 0;
|
|
@@ -141,31 +141,31 @@
|
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
.xxsmall {
|
|
144
|
-
--avatar_font_size:
|
|
144
|
+
--avatar_font_size: 8px;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
.small {
|
|
148
|
-
--avatar_font_size:
|
|
148
|
+
--avatar_font_size: 9px;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.xsmall {
|
|
152
|
-
--avatar_font_size:
|
|
152
|
+
--avatar_font_size: 12px;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
.medium {
|
|
156
|
-
--avatar_font_size:
|
|
156
|
+
--avatar_font_size: 14px;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
.xmedium {
|
|
160
|
-
--avatar_font_size:
|
|
160
|
+
--avatar_font_size: 14px;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.large {
|
|
164
|
-
--avatar_font_size:
|
|
164
|
+
--avatar_font_size: 18px;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
.xlarge {
|
|
168
|
-
--avatar_font_size:
|
|
168
|
+
--avatar_font_size: 28px;
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
.white {
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
.varClass {
|
|
2
2
|
/* avatar team default variables */
|
|
3
|
-
--avatarteam_border_width:
|
|
3
|
+
--avatarteam_border_width: 1px;
|
|
4
4
|
--avatarteam_border_style: solid;
|
|
5
5
|
--avatarteam_border_color: var(--zdt_avatarteam_default_border);
|
|
6
|
-
--avatarteam_outline_width:
|
|
6
|
+
--avatarteam_outline_width: 1px;
|
|
7
7
|
--avatarteam_outline_style: solid;
|
|
8
8
|
--avatarteam_outline_color: var(--zdt_avatarteam_innerCircle);
|
|
9
9
|
--avatarteam_bg_color: var(--zdt_avatarteam_default_bg);
|
|
10
|
-
--avatarteam_width:
|
|
11
|
-
--avatarteam_height:
|
|
10
|
+
--avatarteam_width: 5px;
|
|
11
|
+
--avatarteam_height: 5px;
|
|
12
12
|
--avatarteam_border_radius: 50%;
|
|
13
13
|
--avatarteam_bottom_top: initial;
|
|
14
14
|
--avatarteam_bottom_left: initial;
|
|
15
15
|
--avatarteam_bottom_right: initial;
|
|
16
|
-
--avatarteam_top_top:
|
|
16
|
+
--avatarteam_top_top: 1px;
|
|
17
17
|
}
|
|
18
18
|
.container {
|
|
19
19
|
position: relative;
|
|
@@ -92,97 +92,98 @@
|
|
|
92
92
|
.smallteam,
|
|
93
93
|
.xsmallteam,
|
|
94
94
|
.xxsmallteam {
|
|
95
|
-
--avatarteam_height:
|
|
96
|
-
--avatarteam_width:
|
|
95
|
+
--avatarteam_height: 3px;
|
|
96
|
+
--avatarteam_width: 3px;
|
|
97
97
|
}
|
|
98
98
|
.mediumteam,
|
|
99
99
|
.xmediumteam {
|
|
100
|
-
--avatarteam_height:
|
|
101
|
-
--avatarteam_width:
|
|
100
|
+
--avatarteam_height: 5px;
|
|
101
|
+
--avatarteam_width: 5px;
|
|
102
102
|
}
|
|
103
103
|
.largeteam,
|
|
104
104
|
.xlargeteam {
|
|
105
|
-
--avatarteam_height:
|
|
106
|
-
--avatarteam_width:
|
|
105
|
+
--avatarteam_height: 7px;
|
|
106
|
+
--avatarteam_width: 7px;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.xxsmallteam {
|
|
110
|
+
/* Variable:Ignore */
|
|
110
111
|
--avatarteam_top_top: 0px;
|
|
111
112
|
}
|
|
112
113
|
.xxsmallteam::after,
|
|
113
114
|
.xxsmallteam:before {
|
|
114
|
-
--avatarteam_bottom_top:
|
|
115
|
+
--avatarteam_bottom_top: 13px;
|
|
115
116
|
}
|
|
116
117
|
.xxsmallteam:after {
|
|
117
|
-
--avatarteam_bottom_left:
|
|
118
|
+
--avatarteam_bottom_left: -8px;
|
|
118
119
|
}
|
|
119
120
|
.xxsmallteam:before {
|
|
120
|
-
--avatarteam_bottom_right:
|
|
121
|
+
--avatarteam_bottom_right: -8px;
|
|
121
122
|
}
|
|
122
123
|
|
|
123
124
|
|
|
124
125
|
.smallteam::after,
|
|
125
126
|
.smallteam:before {
|
|
126
|
-
--avatarteam_bottom_top:
|
|
127
|
+
--avatarteam_bottom_top: 17px;
|
|
127
128
|
}
|
|
128
129
|
.smallteam:after {
|
|
129
|
-
--avatarteam_bottom_left:
|
|
130
|
+
--avatarteam_bottom_left: -8px;
|
|
130
131
|
}
|
|
131
132
|
.smallteam:before {
|
|
132
|
-
--avatarteam_bottom_right:
|
|
133
|
+
--avatarteam_bottom_right: -8px;
|
|
133
134
|
}
|
|
134
135
|
|
|
135
136
|
.xsmallteam::after,
|
|
136
137
|
.xsmallteam:before {
|
|
137
|
-
--avatarteam_bottom_top:
|
|
138
|
+
--avatarteam_bottom_top: 24px;
|
|
138
139
|
}
|
|
139
140
|
.xsmallteam:after {
|
|
140
|
-
--avatarteam_bottom_left:
|
|
141
|
+
--avatarteam_bottom_left: -10px;
|
|
141
142
|
}
|
|
142
143
|
.xsmallteam:before {
|
|
143
|
-
--avatarteam_bottom_right:
|
|
144
|
+
--avatarteam_bottom_right: -10px;
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
.mediumteam::after,
|
|
147
148
|
.mediumteam:before {
|
|
148
|
-
--avatarteam_bottom_top:
|
|
149
|
+
--avatarteam_bottom_top: 26px;
|
|
149
150
|
}
|
|
150
151
|
.mediumteam:after {
|
|
151
|
-
--avatarteam_bottom_left:
|
|
152
|
+
--avatarteam_bottom_left: -13px;
|
|
152
153
|
}
|
|
153
154
|
.mediumteam:before {
|
|
154
|
-
--avatarteam_bottom_right:
|
|
155
|
+
--avatarteam_bottom_right: -13px;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
158
|
.xmediumteam::after,
|
|
158
159
|
.xmediumteam:before {
|
|
159
|
-
--avatarteam_bottom_top:
|
|
160
|
+
--avatarteam_bottom_top: 30px;
|
|
160
161
|
}
|
|
161
162
|
.xmediumteam:after {
|
|
162
|
-
--avatarteam_bottom_left:
|
|
163
|
+
--avatarteam_bottom_left: -16px;
|
|
163
164
|
}
|
|
164
165
|
.xmediumteam:before {
|
|
165
|
-
--avatarteam_bottom_right:
|
|
166
|
+
--avatarteam_bottom_right: -16px;
|
|
166
167
|
}
|
|
167
168
|
|
|
168
169
|
.largeteam::after,
|
|
169
170
|
.largeteam:before {
|
|
170
|
-
--avatarteam_bottom_top:
|
|
171
|
+
--avatarteam_bottom_top: 46px;
|
|
171
172
|
}
|
|
172
173
|
.largeteam:after {
|
|
173
|
-
--avatarteam_bottom_left:
|
|
174
|
+
--avatarteam_bottom_left: -24px;
|
|
174
175
|
}
|
|
175
176
|
.largeteam:before {
|
|
176
|
-
--avatarteam_bottom_right:
|
|
177
|
+
--avatarteam_bottom_right: -24px;
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
.xlargeteam::after,
|
|
180
181
|
.xlargeteam:before {
|
|
181
|
-
--avatarteam_bottom_top:
|
|
182
|
+
--avatarteam_bottom_top: 65px;
|
|
182
183
|
}
|
|
183
184
|
.xlargeteam:after {
|
|
184
|
-
--avatarteam_bottom_left:
|
|
185
|
+
--avatarteam_bottom_left: -29px;
|
|
185
186
|
}
|
|
186
187
|
.xlargeteam:before {
|
|
187
|
-
--avatarteam_bottom_right:
|
|
188
|
+
--avatarteam_bottom_right: -29px;
|
|
188
189
|
}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
.varClass {
|
|
2
2
|
/* button default variables */
|
|
3
|
+
/* Variable:Ignore */
|
|
3
4
|
--button_letter_spacing: 0.2px;
|
|
4
5
|
--button_cursor: pointer;
|
|
5
|
-
--button_font_size:
|
|
6
|
+
--button_font_size: 13px;
|
|
6
7
|
--button_text_color: var(--zdt_button_default_text);
|
|
7
8
|
--button_font_family: var(--zd_regular);
|
|
8
9
|
--button_text_transform: capitalize;
|
|
9
10
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
10
11
|
--button_border_radius: 4px;
|
|
11
|
-
--button_min_width:
|
|
12
|
+
--button_min_width: 90px;
|
|
12
13
|
--button_height: auto;
|
|
13
14
|
--button_border_width: 0;
|
|
14
15
|
--button_border_style: solid;
|
|
@@ -71,38 +72,38 @@
|
|
|
71
72
|
}
|
|
72
73
|
|
|
73
74
|
.small {
|
|
74
|
-
--button_padding:
|
|
75
|
-
--button_min_width:
|
|
76
|
-
--button_font_size:
|
|
75
|
+
--button_padding: 4px 7px;
|
|
76
|
+
--button_min_width: 50px;
|
|
77
|
+
--button_font_size: 10px;
|
|
77
78
|
}
|
|
78
79
|
|
|
79
80
|
.medium {
|
|
80
|
-
--button_padding:
|
|
81
|
+
--button_padding: 6px 15px;
|
|
81
82
|
}
|
|
82
83
|
|
|
83
84
|
.large {
|
|
84
|
-
--button_padding:
|
|
85
|
-
--button_min_width:
|
|
86
|
-
--button_font_size:
|
|
85
|
+
--button_padding: 9px 14px;
|
|
86
|
+
--button_min_width: 80px;
|
|
87
|
+
--button_font_size: 12px;
|
|
87
88
|
}
|
|
88
89
|
|
|
89
90
|
.xlarge {
|
|
90
|
-
--button_padding:
|
|
91
|
-
--button_min_width:
|
|
92
|
-
--button_font_size:
|
|
91
|
+
--button_padding: 12px 25px;
|
|
92
|
+
--button_min_width: 90px;
|
|
93
|
+
--button_font_size: 13px;
|
|
93
94
|
}
|
|
94
95
|
|
|
95
96
|
.mediumBtn {
|
|
96
|
-
--button_height:
|
|
97
|
-
--button_min_width:
|
|
98
|
-
--button_font_size:
|
|
97
|
+
--button_height: 42px;
|
|
98
|
+
--button_min_width: 42px;
|
|
99
|
+
--button_font_size: 10px;
|
|
99
100
|
text-align: center;
|
|
100
101
|
}
|
|
101
102
|
|
|
102
103
|
.smallBtn {
|
|
103
|
-
--button_height:
|
|
104
|
-
--button_min_width:
|
|
105
|
-
--button_font_size:
|
|
104
|
+
--button_height: 22px;
|
|
105
|
+
--button_min_width: 22px;
|
|
106
|
+
--button_font_size: 13px;
|
|
106
107
|
text-align: center;
|
|
107
108
|
}
|
|
108
109
|
|
|
@@ -131,7 +132,7 @@
|
|
|
131
132
|
|
|
132
133
|
.plainprimary {
|
|
133
134
|
--button_text_color: var(--zdt_button_default_text);
|
|
134
|
-
--button_padding:
|
|
135
|
+
--button_padding: 5px;
|
|
135
136
|
--button_min_width: initial;
|
|
136
137
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
137
138
|
}
|
|
@@ -141,7 +142,7 @@
|
|
|
141
142
|
|
|
142
143
|
.plainsecondary {
|
|
143
144
|
--button_text_color: var(--zdt_button_secondary_text);
|
|
144
|
-
--button_padding:
|
|
145
|
+
--button_padding: 5px;
|
|
145
146
|
--button_min_width: initial;
|
|
146
147
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
147
148
|
}
|
|
@@ -251,8 +252,8 @@
|
|
|
251
252
|
.loading {
|
|
252
253
|
position: absolute;
|
|
253
254
|
top: 50%;
|
|
254
|
-
width:
|
|
255
|
-
height:
|
|
255
|
+
width: 20px;
|
|
256
|
+
height: 20px;
|
|
256
257
|
}
|
|
257
258
|
|
|
258
259
|
[dir=ltr] .loading {
|
|
@@ -303,23 +304,23 @@
|
|
|
303
304
|
|
|
304
305
|
.smallloading,
|
|
305
306
|
.mediumloading {
|
|
306
|
-
height:
|
|
307
|
-
width:
|
|
307
|
+
height: 10px;
|
|
308
|
+
width: 10px;
|
|
308
309
|
}
|
|
309
310
|
|
|
310
311
|
.loadingelement:after {
|
|
311
|
-
top:
|
|
312
|
-
bottom:
|
|
312
|
+
top: 1px;
|
|
313
|
+
bottom: 1px;
|
|
313
314
|
}
|
|
314
315
|
|
|
315
316
|
[dir=ltr] .loadingelement:after {
|
|
316
|
-
left:
|
|
317
|
-
right:
|
|
317
|
+
left: 1px;
|
|
318
|
+
right: 1px;
|
|
318
319
|
}
|
|
319
320
|
|
|
320
321
|
[dir=rtl] .loadingelement:after {
|
|
321
|
-
right:
|
|
322
|
-
left:
|
|
322
|
+
right: 1px;
|
|
323
|
+
left: 1px;
|
|
323
324
|
}
|
|
324
325
|
|
|
325
326
|
.loadingelement {
|
|
@@ -346,21 +347,21 @@
|
|
|
346
347
|
}
|
|
347
348
|
|
|
348
349
|
.loadingelement:before {
|
|
349
|
-
top:
|
|
350
|
-
bottom:
|
|
350
|
+
top: -1px;
|
|
351
|
+
bottom: -1px;
|
|
351
352
|
background: var(--zdt_button_loading_linear_gradient);
|
|
352
353
|
background-repeat: no-repeat;
|
|
353
354
|
background-size: 50% 50%;
|
|
354
355
|
}
|
|
355
356
|
|
|
356
357
|
[dir=ltr] .loadingelement:before {
|
|
357
|
-
left:
|
|
358
|
-
right:
|
|
358
|
+
left: -1px;
|
|
359
|
+
right: -1px;
|
|
359
360
|
}
|
|
360
361
|
|
|
361
362
|
[dir=rtl] .loadingelement:before {
|
|
362
|
-
right:
|
|
363
|
-
left:
|
|
363
|
+
right: -1px;
|
|
364
|
+
left: -1px;
|
|
364
365
|
}
|
|
365
366
|
|
|
366
367
|
.primaryelement:before {
|
|
@@ -457,10 +458,10 @@
|
|
|
457
458
|
}
|
|
458
459
|
|
|
459
460
|
.successelement {
|
|
460
|
-
height:
|
|
461
|
+
height: 15px;
|
|
461
462
|
position: relative;
|
|
462
|
-
top:
|
|
463
|
-
width:
|
|
463
|
+
top: -2px;
|
|
464
|
+
width: 6px;
|
|
464
465
|
transform: scaleX(-1) rotate(135deg);
|
|
465
466
|
-moz-transform: scaleX(-1) rotate(135deg);
|
|
466
467
|
-webkit-transform: scaleX(-1) rotate(135deg);
|
|
@@ -479,12 +480,12 @@
|
|
|
479
480
|
|
|
480
481
|
50% {
|
|
481
482
|
height: 0;
|
|
482
|
-
width:
|
|
483
|
+
width: 6px;
|
|
483
484
|
}
|
|
484
485
|
|
|
485
486
|
100% {
|
|
486
|
-
height:
|
|
487
|
-
width:
|
|
487
|
+
height: 15px;
|
|
488
|
+
width: 6px;
|
|
488
489
|
}
|
|
489
490
|
}
|
|
490
491
|
|
|
@@ -496,12 +497,12 @@
|
|
|
496
497
|
|
|
497
498
|
50% {
|
|
498
499
|
height: 0;
|
|
499
|
-
width:
|
|
500
|
+
width: 6px;
|
|
500
501
|
}
|
|
501
502
|
|
|
502
503
|
100% {
|
|
503
|
-
height:
|
|
504
|
-
width:
|
|
504
|
+
height: 15px;
|
|
505
|
+
width: 6px;
|
|
505
506
|
}
|
|
506
507
|
}
|
|
507
508
|
|
|
@@ -513,12 +514,12 @@
|
|
|
513
514
|
|
|
514
515
|
50% {
|
|
515
516
|
height: 0;
|
|
516
|
-
width:
|
|
517
|
+
width: 6px;
|
|
517
518
|
}
|
|
518
519
|
|
|
519
520
|
100% {
|
|
520
|
-
height:
|
|
521
|
-
width:
|
|
521
|
+
height: 15px;
|
|
522
|
+
width: 6px;
|
|
522
523
|
}
|
|
523
524
|
}
|
|
524
525
|
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
[dir=ltr] .footer {
|
|
27
|
-
--buttongroup_padding:
|
|
28
|
-
/*rtl:
|
|
27
|
+
--buttongroup_padding: 20px 0 20px 60px
|
|
28
|
+
/*rtl: 20px 60px 20px 0*/
|
|
29
29
|
;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
[dir=rtl] .footer {
|
|
33
|
-
--buttongroup_padding:
|
|
33
|
+
--buttongroup_padding: 20px 0 20px 60px ;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.header {
|
|
37
|
-
--buttongroup_padding:
|
|
37
|
+
--buttongroup_padding: 12px 20px;
|
|
38
38
|
--buttongroup_border_width: 0 0 1px 0;
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
[dir=ltr] .alignleft>button {
|
|
78
|
-
margin-left:
|
|
78
|
+
margin-left: 15px;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
[dir=rtl] .alignleft>button {
|
|
82
|
-
margin-right:
|
|
82
|
+
margin-right: 15px;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
[dir=ltr] .alignright>button:last-child {
|
|
@@ -91,17 +91,17 @@
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
[dir=ltr] .alignright>button {
|
|
94
|
-
margin-right:
|
|
94
|
+
margin-right: 15px;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
[dir=rtl] .alignright>button {
|
|
98
|
-
margin-left:
|
|
98
|
+
margin-left: 15px;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
[dir=ltr] .aligncenter>button {
|
|
102
|
-
margin-right:
|
|
102
|
+
margin-right: 15px;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
[dir=rtl] .aligncenter>button {
|
|
106
|
-
margin-left:
|
|
106
|
+
margin-left: 15px;
|
|
107
107
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* checkbox default variables */
|
|
3
3
|
--checkbox_bg_color: var(--zdt_checkbox_default_bg);
|
|
4
4
|
--checkbox_cursor: auto;
|
|
5
|
-
--checkbox_stroke_width:
|
|
5
|
+
--checkbox_stroke_width: 2px;
|
|
6
6
|
--checkbox_stroke_color: var(--zdt_checkbox_default_stroke_border);
|
|
7
7
|
|
|
8
8
|
/* checkbox checked state default variables */
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
--checkbox_bg_color: inherit;
|
|
42
42
|
}
|
|
43
43
|
.medium {
|
|
44
|
-
width:
|
|
45
|
-
height:
|
|
44
|
+
width: 16px;
|
|
45
|
+
height: 16px;
|
|
46
46
|
}
|
|
47
47
|
.small {
|
|
48
|
-
width:
|
|
49
|
-
height:
|
|
48
|
+
width: 13px;
|
|
49
|
+
height: 13px;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.checkbox {
|
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
left: 0;
|
|
60
60
|
}
|
|
61
61
|
.mediumtick {
|
|
62
|
-
top:
|
|
63
|
-
height:
|
|
64
|
-
width:
|
|
62
|
+
top: -2px;
|
|
63
|
+
height: 20px;
|
|
64
|
+
width: 20px;
|
|
65
65
|
}
|
|
66
66
|
.smalltick {
|
|
67
|
-
top:
|
|
68
|
-
height:
|
|
69
|
-
width:
|
|
70
|
-
left:
|
|
67
|
+
top: -3px;
|
|
68
|
+
height: 18px;
|
|
69
|
+
width: 18px;
|
|
70
|
+
left: -1px;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.checkedtickPath {
|
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
animation: lineAnimate var(--zd_transition3) ease forwards;
|
|
92
92
|
}
|
|
93
93
|
[dir=ltr] .text {
|
|
94
|
-
margin-left:
|
|
94
|
+
margin-left: 6px;
|
|
95
95
|
}
|
|
96
96
|
[dir=rtl] .text {
|
|
97
|
-
margin-right:
|
|
97
|
+
margin-right: 6px;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.checkedprimary,
|
package/es/DateTime/DateTime.js
CHANGED
|
@@ -622,7 +622,7 @@ export default class DateTime extends React.PureComponent {
|
|
|
622
622
|
}), isDateTimeField ? /*#__PURE__*/React.createElement(Time, {
|
|
623
623
|
timeText: timeText,
|
|
624
624
|
dataId: dataId,
|
|
625
|
-
hourSuggestions: getHourSuggestions(),
|
|
625
|
+
hourSuggestions: getHourSuggestions(is24Hour),
|
|
626
626
|
onHourSelect: this.hoursSelect,
|
|
627
627
|
hours: hours,
|
|
628
628
|
hourEmptyText: hourEmptyText,
|