@zohodesk/components 1.6.6 → 1.6.7

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.
Files changed (53) hide show
  1. package/README.md +4 -0
  2. package/es/Avatar/Avatar.module.css +8 -8
  3. package/es/AvatarTeam/AvatarTeam.module.css +30 -30
  4. package/es/Button/css/Button.module.css +19 -19
  5. package/es/Buttongroup/Buttongroup.module.css +3 -5
  6. package/es/Card/Card.module.css +6 -4
  7. package/es/DateTime/DateWidget.module.css +1 -1
  8. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +2 -2
  9. package/es/DropDown/DropDownHeading.module.css +4 -4
  10. package/es/DropDown/DropDownItem.module.css +4 -4
  11. package/es/DropDown/DropDownSearch.module.css +3 -3
  12. package/es/Label/Label.module.css +5 -5
  13. package/es/ListItem/ListItem.module.css +19 -30
  14. package/es/MultiSelect/MobileHeader/MobileHeader.module.css +1 -1
  15. package/es/Radio/Radio.module.css +8 -9
  16. package/es/Ribbon/Ribbon.module.css +16 -19
  17. package/es/RippleEffect/RippleEffect.module.css +55 -17
  18. package/es/Stencils/Stencils.module.css +30 -14
  19. package/es/Tag/Tag.module.css +17 -18
  20. package/es/TextBox/TextBox.module.css +9 -9
  21. package/es/TextBoxIcon/TextBoxIcon.module.css +1 -1
  22. package/es/Textarea/Textarea.module.css +18 -18
  23. package/es/Tooltip/Tooltip.module.css +2 -2
  24. package/es/common/avatarsizes.module.css +16 -16
  25. package/es/shared/InputFieldLine/InputFieldLine.module.css +2 -2
  26. package/es/v1/Switch/css/Switch_v1.module.css +28 -28
  27. package/lib/Avatar/Avatar.module.css +8 -8
  28. package/lib/AvatarTeam/AvatarTeam.module.css +30 -30
  29. package/lib/Button/css/Button.module.css +19 -19
  30. package/lib/Buttongroup/Buttongroup.module.css +3 -5
  31. package/lib/Card/Card.module.css +6 -4
  32. package/lib/DateTime/DateWidget.module.css +1 -1
  33. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +2 -2
  34. package/lib/DropDown/DropDownHeading.module.css +4 -4
  35. package/lib/DropDown/DropDownItem.module.css +4 -4
  36. package/lib/DropDown/DropDownSearch.module.css +3 -3
  37. package/lib/Label/Label.module.css +5 -5
  38. package/lib/ListItem/ListItem.module.css +19 -30
  39. package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +1 -1
  40. package/lib/Radio/Radio.module.css +8 -9
  41. package/lib/Ribbon/Ribbon.module.css +16 -19
  42. package/lib/RippleEffect/RippleEffect.module.css +55 -17
  43. package/lib/Stencils/Stencils.module.css +30 -14
  44. package/lib/Tag/Tag.module.css +17 -18
  45. package/lib/TextBox/TextBox.module.css +9 -9
  46. package/lib/TextBoxIcon/TextBoxIcon.module.css +1 -1
  47. package/lib/Textarea/Textarea.module.css +18 -18
  48. package/lib/Tooltip/Tooltip.module.css +2 -2
  49. package/lib/common/avatarsizes.module.css +16 -16
  50. package/lib/shared/InputFieldLine/InputFieldLine.module.css +2 -2
  51. package/lib/v1/Switch/css/Switch_v1.module.css +28 -28
  52. package/package.json +8 -5
  53. package/_react-cli.config.js +0 -24
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development across projects.
4
4
 
5
+ # 1.6.7
6
+
7
+ - PX to variable conversion was not applied due to the CBT migration. The issue has now been fixed.
8
+
5
9
  # 1.6.6
6
10
 
7
11
  - CTA theme variable tokens moved to variables package
@@ -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: 14px;
4
+ --avatar_font_size: var(--zd_font_size14);
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: 8px;
144
+ --avatar_font_size: var(--zd_font_size8);
145
145
  }
146
146
 
147
147
  .small {
148
- --avatar_font_size: 9px;
148
+ --avatar_font_size: var(--zd_font_size9);
149
149
  }
150
150
 
151
151
  .xsmall {
152
- --avatar_font_size: 12px;
152
+ --avatar_font_size: var(--zd_font_size12);
153
153
  }
154
154
 
155
155
  .medium {
156
- --avatar_font_size: 14px;
156
+ --avatar_font_size: var(--zd_font_size14);
157
157
  }
158
158
 
159
159
  .xmedium {
160
- --avatar_font_size: 14px;
160
+ --avatar_font_size: var(--zd_font_size14);
161
161
  }
162
162
 
163
163
  .large {
164
- --avatar_font_size: 18px;
164
+ --avatar_font_size: var(--zd_font_size18);
165
165
  }
166
166
 
167
167
  .xlarge {
168
- --avatar_font_size: 28px;
168
+ --avatar_font_size: var(--zd_font_size28);
169
169
  }
170
170
 
171
171
  .white {
@@ -7,13 +7,13 @@
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: 5px;
11
- --avatarteam_height: 5px;
10
+ --avatarteam_width: var(--zd_size5);
11
+ --avatarteam_height: var(--zd_size5);
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: 1px;
16
+ --avatarteam_top_top: var(--zd_size1);
17
17
  }
18
18
  .container {
19
19
  position: relative;
@@ -92,18 +92,18 @@
92
92
  .smallteam,
93
93
  .xsmallteam,
94
94
  .xxsmallteam {
95
- --avatarteam_height: 3px;
96
- --avatarteam_width: 3px;
95
+ --avatarteam_height: var(--zd_size3);
96
+ --avatarteam_width: var(--zd_size3);
97
97
  }
98
98
  .mediumteam,
99
99
  .xmediumteam {
100
- --avatarteam_height: 5px;
101
- --avatarteam_width: 5px;
100
+ --avatarteam_height: var(--zd_size5);
101
+ --avatarteam_width: var(--zd_size5);
102
102
  }
103
103
  .largeteam,
104
104
  .xlargeteam {
105
- --avatarteam_height: 7px;
106
- --avatarteam_width: 7px;
105
+ --avatarteam_height: var(--zd_size7);
106
+ --avatarteam_width: var(--zd_size7);
107
107
  }
108
108
 
109
109
  .xxsmallteam {
@@ -112,78 +112,78 @@
112
112
  }
113
113
  .xxsmallteam::after,
114
114
  .xxsmallteam:before {
115
- --avatarteam_bottom_top: 13px;
115
+ --avatarteam_bottom_top: var(--zd_size13);
116
116
  }
117
117
  .xxsmallteam:after {
118
- --avatarteam_bottom_left: -8px;
118
+ --avatarteam_bottom_left: calc( var(--zd_size8) * -1 );
119
119
  }
120
120
  .xxsmallteam:before {
121
- --avatarteam_bottom_right: -8px;
121
+ --avatarteam_bottom_right: calc( var(--zd_size8) * -1 );
122
122
  }
123
123
 
124
124
 
125
125
  .smallteam::after,
126
126
  .smallteam:before {
127
- --avatarteam_bottom_top: 17px;
127
+ --avatarteam_bottom_top: var(--zd_size17);
128
128
  }
129
129
  .smallteam:after {
130
- --avatarteam_bottom_left: -8px;
130
+ --avatarteam_bottom_left: calc( var(--zd_size8) * -1 );
131
131
  }
132
132
  .smallteam:before {
133
- --avatarteam_bottom_right: -8px;
133
+ --avatarteam_bottom_right: calc( var(--zd_size8) * -1 );
134
134
  }
135
135
 
136
136
  .xsmallteam::after,
137
137
  .xsmallteam:before {
138
- --avatarteam_bottom_top: 24px;
138
+ --avatarteam_bottom_top: var(--zd_size24);
139
139
  }
140
140
  .xsmallteam:after {
141
- --avatarteam_bottom_left: -10px;
141
+ --avatarteam_bottom_left: calc( var(--zd_size10) * -1 );
142
142
  }
143
143
  .xsmallteam:before {
144
- --avatarteam_bottom_right: -10px;
144
+ --avatarteam_bottom_right: calc( var(--zd_size10) * -1 );
145
145
  }
146
146
 
147
147
  .mediumteam::after,
148
148
  .mediumteam:before {
149
- --avatarteam_bottom_top: 26px;
149
+ --avatarteam_bottom_top: var(--zd_size26);
150
150
  }
151
151
  .mediumteam:after {
152
- --avatarteam_bottom_left: -13px;
152
+ --avatarteam_bottom_left: calc( var(--zd_size13) * -1 );
153
153
  }
154
154
  .mediumteam:before {
155
- --avatarteam_bottom_right: -13px;
155
+ --avatarteam_bottom_right: calc( var(--zd_size13) * -1 );
156
156
  }
157
157
 
158
158
  .xmediumteam::after,
159
159
  .xmediumteam:before {
160
- --avatarteam_bottom_top: 30px;
160
+ --avatarteam_bottom_top: var(--zd_size30);
161
161
  }
162
162
  .xmediumteam:after {
163
- --avatarteam_bottom_left: -16px;
163
+ --avatarteam_bottom_left: calc( var(--zd_size16) * -1 );
164
164
  }
165
165
  .xmediumteam:before {
166
- --avatarteam_bottom_right: -16px;
166
+ --avatarteam_bottom_right: calc( var(--zd_size16) * -1 );
167
167
  }
168
168
 
169
169
  .largeteam::after,
170
170
  .largeteam:before {
171
- --avatarteam_bottom_top: 46px;
171
+ --avatarteam_bottom_top: var(--zd_size46);
172
172
  }
173
173
  .largeteam:after {
174
- --avatarteam_bottom_left: -24px;
174
+ --avatarteam_bottom_left: calc( var(--zd_size24) * -1 );
175
175
  }
176
176
  .largeteam:before {
177
- --avatarteam_bottom_right: -24px;
177
+ --avatarteam_bottom_right: calc( var(--zd_size24) * -1 );
178
178
  }
179
179
 
180
180
  .xlargeteam::after,
181
181
  .xlargeteam:before {
182
- --avatarteam_bottom_top: 65px;
182
+ --avatarteam_bottom_top: var(--zd_size65);
183
183
  }
184
184
  .xlargeteam:after {
185
- --avatarteam_bottom_left: -29px;
185
+ --avatarteam_bottom_left: calc( var(--zd_size29) * -1 );
186
186
  }
187
187
  .xlargeteam:before {
188
- --avatarteam_bottom_right: -29px;
188
+ --avatarteam_bottom_right: calc( var(--zd_size29) * -1 );
189
189
  }
@@ -3,13 +3,13 @@
3
3
  /* Variable:Ignore */
4
4
  --button_letter_spacing: 0.2px;
5
5
  --button_cursor: pointer;
6
- --button_font_size: 13px;
6
+ --button_font_size: var(--zd_font_size13);
7
7
  --button_text_color: var(--zdt_button_default_text);
8
8
  --button_font_weight: var(--zd-fw-normal);
9
9
  --button_text_transform: capitalize;
10
10
  --button_bg_color: var(--zdt_button_default_bg);
11
11
  --button_border_radius: 4px;
12
- --button_min_width: 90px;
12
+ --button_min_width: var(--zd_size90);
13
13
  --button_height: auto;
14
14
  --button_border_width: 0;
15
15
  --button_border_style: solid;
@@ -72,38 +72,38 @@
72
72
  }
73
73
 
74
74
  .small {
75
- --button_padding: 4px 7px;
76
- --button_min_width: 50px;
77
- --button_font_size: 10px;
75
+ --button_padding: var(--zd_size4) var(--zd_size7);
76
+ --button_min_width: var(--zd_size50);
77
+ --button_font_size: var(--zd_font_size10);
78
78
  }
79
79
 
80
80
  .medium {
81
- --button_padding: 6px 15px;
81
+ --button_padding: var(--zd_size6) var(--zd_size15);
82
82
  }
83
83
 
84
84
  .large {
85
- --button_padding: 9px 14px;
86
- --button_min_width: 80px;
87
- --button_font_size: 12px;
85
+ --button_padding: var(--zd_size9) var(--zd_size14);
86
+ --button_min_width: var(--zd_size80);
87
+ --button_font_size: var(--zd_font_size12);
88
88
  }
89
89
 
90
90
  .xlarge {
91
- --button_padding: 12px 25px;
92
- --button_min_width: 90px;
93
- --button_font_size: 13px;
91
+ --button_padding: var(--zd_size12) var(--zd_size25);
92
+ --button_min_width: var(--zd_size90);
93
+ --button_font_size: var(--zd_font_size13);
94
94
  }
95
95
 
96
96
  .mediumBtn {
97
- --button_height: 42px;
98
- --button_min_width: 42px;
99
- --button_font_size: 10px;
97
+ --button_height: var(--zd_size42);
98
+ --button_min_width: var(--zd_size42);
99
+ --button_font_size: var(--zd_font_size10);
100
100
  text-align: center;
101
101
  }
102
102
 
103
103
  .smallBtn {
104
- --button_height: 22px;
105
- --button_min_width: 22px;
106
- --button_font_size: 13px;
104
+ --button_height: var(--zd_size22);
105
+ --button_min_width: var(--zd_size22);
106
+ --button_font_size: var(--zd_font_size13);
107
107
  text-align: center;
108
108
  }
109
109
 
@@ -134,7 +134,7 @@
134
134
  .plaindanger,
135
135
  .plainsuccess,
136
136
  .plainsecondary {
137
- --button_padding: 5px;
137
+ --button_padding: var(--zd_size5);
138
138
  --button_min_width: initial;
139
139
  --button_bg_color: var(--zdt_button_default_bg);
140
140
  }
@@ -24,17 +24,15 @@
24
24
  }
25
25
 
26
26
  [dir=ltr] .footer {
27
- --buttongroup_padding: 20px 0 20px 60px
28
- /*rtl: 20px 60px 20px 0*/
29
- ;
27
+ --buttongroup_padding: var(--zd_size20) 0 var(--zd_size20) var(--zd_size60);
30
28
  }
31
29
 
32
30
  [dir=rtl] .footer {
33
- --buttongroup_padding: 20px 60px 20px 0;
31
+ --buttongroup_padding: var(--zd_size20) var(--zd_size60) var(--zd_size20) 0;
34
32
  }
35
33
 
36
34
  .header {
37
- --buttongroup_padding: 12px 20px;
35
+ --buttongroup_padding: var(--zd_size12) var(--zd_size20);
38
36
  --buttongroup_border_width: 0 0 1px 0;
39
37
  }
40
38
 
@@ -1,20 +1,22 @@
1
1
  .notScroll {
2
2
  position: relative;
3
3
  }
4
+
4
5
  .scroll {
5
6
  /* background: var(--dot_white);
6
7
  position: relative; */
7
8
  }
9
+
8
10
  /*
9
11
  .scroll::after {
10
12
  box-shadow: 0 0 6px var(--zd_dark10);
11
13
  border-radius: 100px / 10px;
12
14
  content: '';
13
- left: var(--zd_size50);
15
+ left: 50px;
14
16
  position: absolute;
15
- right: var(--zd_size50);
17
+ right: 50px;
16
18
  display: block;
17
19
  z-index: -1;
18
- height: var(--zd_size1);
20
+ height: 1px;
19
21
  bottom: 0;
20
- } */
22
+ } */
@@ -3,7 +3,7 @@
3
3
  position: relative;
4
4
  composes: offSelection from '../common/common.module.css';
5
5
  }
6
- .datePickIcon{height:100% }
6
+ .datePickIcon{height:100% }
7
7
  .readOnly, .readOnly > input, .disabled {
8
8
  cursor: not-allowed;
9
9
  }
@@ -33,7 +33,7 @@
33
33
 
34
34
  .mobRadius {
35
35
  --dropbox_border_radius: 30px 30px 0 0;
36
- --dropbox_padding: 10px 0 0 0;
36
+ --dropbox_padding: var(--zd_size10) 0 0 0;
37
37
  }
38
38
 
39
39
  /* sizes */
@@ -437,7 +437,7 @@
437
437
  }
438
438
 
439
439
  .boxPadding {
440
- --dropbox_padding: 10px 0;
440
+ --dropbox_padding: var(--zd_size10) 0;
441
441
  }
442
442
 
443
443
  .darkPalette {
@@ -2,14 +2,14 @@
2
2
  /* dropdownheading default variables */
3
3
  --dropdownheading_text_color: var(--zdt_dropdown_default_text);
4
4
  --dropdownheading_text_transform: uppercase;
5
- --dropdownheading_padding: 10px 20px;
5
+ --dropdownheading_padding: var(--zd_size10) var(--zd_size20);
6
6
  --dropdownheading_bg_color: none;
7
7
 
8
8
  /* dropdownheading underline default variables */
9
- --dropdownheading_underline_width: 20px;
10
- --dropdownheading_underline_height: 1px;
9
+ --dropdownheading_underline_width: var(--zd_size20);
10
+ --dropdownheading_underline_height: var(--zd_size1);
11
11
  --dropdownheading_underline_bg_color: var(--zdt_dropdown_default_bg);
12
- --dropdownheading_underline_left: 20px;
12
+ --dropdownheading_underline_left: var(--zd_size20);
13
13
  }
14
14
  .default {
15
15
  composes: dotted semibold from '../common/common.module.css';
@@ -1,11 +1,11 @@
1
1
  .varClass {
2
2
  /* dropdownitem default variables */
3
- --dropdownitem-padding: 9px 19px;
3
+ --dropdownitem-padding: var(--zd_size9) var(--zd_size19);
4
4
  --dropdownitem-border-color: var(--zdt_dropdown_default_border);
5
5
  --dropdownitem-bg-color: var(--zdt_dropdown_mirror_bg);
6
6
 
7
7
  /* dropdownitem user default variables */
8
- --dropdownitem-user-width: 42px;
8
+ --dropdownitem-user-width: var(--zd_size42);
9
9
  --dropdownitem-user-border-style: solid;
10
10
  --dropdownitem-user-border-color: var(--zdt_dropdown_user_default_border);
11
11
  --dropdownitem-user-cursor: pointer;
@@ -42,11 +42,11 @@
42
42
  }
43
43
 
44
44
  [dir=ltr] .padding {
45
- --dropdownitem-padding: 0 50px 0 0/*rtl: 0 0 0 50px*/;
45
+ --dropdownitem-padding: 0 var(--zd_size50) 0 0;
46
46
  }
47
47
 
48
48
  [dir=rtl] .padding {
49
- --dropdownitem-padding: 0 0 0 50px;
49
+ --dropdownitem-padding: 0 0 0 var(--zd_size50);
50
50
  }
51
51
 
52
52
  .children {
@@ -1,14 +1,14 @@
1
1
  .varClass {
2
2
  /* dropdownsearch default variables */
3
- --dropdownsearch-padding: 0 15px 0;
3
+ --dropdownsearch-padding: 0 var(--zd_size15) 0;
4
4
  }
5
5
  .search {
6
6
  composes: varClass;
7
7
  padding: var(--dropdownsearch-padding);
8
8
  }
9
9
  .smallSearch {
10
- --dropdownsearch-padding: 0 5px 0;
10
+ --dropdownsearch-padding: 0 var(--zd_size5) 0;
11
11
  }
12
12
  .mediumSearch {
13
- --dropdownsearch-padding: 0 15px 0;
13
+ --dropdownsearch-padding: 0 var(--zd_size15) 0;
14
14
  }
@@ -1,6 +1,6 @@
1
1
  .varClass {
2
2
  /* label default variables */
3
- --label_font_size: 14px;
3
+ --label_font_size: var(--zd_font_size14);
4
4
  --label_text_color: var(--zdt_label_default_text);
5
5
  --label_font_weight: var(--zd-fw-normal);
6
6
  --label_cursor: default;
@@ -17,19 +17,19 @@
17
17
  cursor: var(--label_cursor);
18
18
  }
19
19
  .xsmall {
20
- --label_font_size: 12px;
20
+ --label_font_size: var(--zd_font_size12);
21
21
  --label_line_height: 1.5;
22
22
  }
23
23
  .small {
24
- --label_font_size: 13px;
24
+ --label_font_size: var(--zd_font_size13);
25
25
  --label_line_height: 1.385;
26
26
  }
27
27
  .medium {
28
- --label_font_size: 14px;
28
+ --label_font_size: var(--zd_font_size14);
29
29
  --label_line_height: 1.286;
30
30
  }
31
31
  .large {
32
- --label_font_size: 26px;
32
+ --label_font_size: var(--zd_font_size26);
33
33
  --label_line_height: 0.6923;
34
34
  composes: semibold from '../common/common.module.css';
35
35
  }
@@ -1,9 +1,9 @@
1
1
  /* css:lineheight-validation:ignore */
2
2
  .varClass {
3
3
  /* listitem default variables */
4
- --listitem_font_size: 13px;
4
+ --listitem_font_size: var(--zd_font_size13);
5
5
  --listitem_text_color: var(--zdt_listitem_default_text);
6
- --listitem_padding: 9px 20px;
6
+ --listitem_padding: var(--zd_size9) var(--zd_size20);
7
7
  --listitem_border_width: 0;
8
8
  --listitem_border_color: var(--zdt_listitem_default_border);
9
9
  --listitem_bg_color: var(--zdt_listitem_default_bg);
@@ -21,11 +21,10 @@
21
21
  --listitem_multiline_lineheight: 1.5385;
22
22
  }
23
23
  [dir=ltr] .varClass {
24
- --listitem_avatar_margin: 0 15px 0 0
25
- /*rtl: 0 0 0 15px*/;
24
+ --listitem_avatar_margin: 0 var(--zd_size15) 0 0;
26
25
  }
27
26
  [dir=rtl] .varClass {
28
- --listitem_avatar_margin: 0 0 0 15px;
27
+ --listitem_avatar_margin: 0 0 0 var(--zd_size15);
29
28
  }
30
29
  .list {
31
30
  composes: varClass;
@@ -55,27 +54,23 @@
55
54
  --listitem_border_color: var(--zdt_listitem_active_border);
56
55
  }
57
56
  [dir=ltr] .small {
58
- --listitem_padding: 7px 3px 7px
59
- 5px
60
- /*rtl: 7px 5px 7px 3px*/;
57
+ --listitem_padding: var(--zd_size7) var(--zd_size3) var(--zd_size7) var(--zd_size5);
61
58
  }
62
59
  [dir=rtl] .small {
63
- --listitem_padding: 7px 5px 7px 3px;
60
+ --listitem_padding: var(--zd_size7) var(--zd_size5) var(--zd_size7) var(--zd_size3);
64
61
  }
65
62
  .medium {
66
- --listitem_padding: 7px 20px;
67
- --listitem_min_height: 35px;
63
+ --listitem_padding: var(--zd_size7) var(--zd_size20);
64
+ --listitem_min_height: var(--zd_size35);
68
65
  }
69
66
  .large {
70
- --listitem_min_height: 48px;
67
+ --listitem_min_height: var(--zd_size48);
71
68
  }
72
69
  [dir=ltr] .large {
73
- --listitem_padding: 10px 3px 10px
74
- 25px
75
- /*rtl: 10px 25px 10px 3px*/;
70
+ --listitem_padding: var(--zd_size10) var(--zd_size3) var(--zd_size10) var(--zd_size25);
76
71
  }
77
72
  [dir=rtl] .large {
78
- --listitem_padding: 10px 25px 10px 3px;
73
+ --listitem_padding: var(--zd_size10) var(--zd_size25) var(--zd_size10) var(--zd_size3);
79
74
  }
80
75
  .value,
81
76
  .children,.secondaryValue {
@@ -267,32 +262,26 @@
267
262
  display: block;
268
263
  }
269
264
  [dir=ltr] .smallwithTick {
270
- --listitem_padding: 7px 39px 7px
271
- 5px
272
- /*rtl: 7px 5px 7px 39px*/;
265
+ --listitem_padding: var(--zd_size7) var(--zd_size39) var(--zd_size7) var(--zd_size5);
273
266
  }
274
267
  [dir=rtl] .smallwithTick {
275
- --listitem_padding: 7px 5px 7px 39px;
268
+ --listitem_padding: var(--zd_size7) var(--zd_size5) var(--zd_size7) var(--zd_size39);
276
269
  }
277
270
  [dir=ltr] .mediumwithTick {
278
- --listitem_padding: 7px 39px 7px
279
- 20px
280
- /*rtl: 7px 20px 7px 39px*/;
271
+ --listitem_padding: var(--zd_size7) var(--zd_size39) var(--zd_size7) var(--zd_size20);
281
272
  }
282
273
  [dir=rtl] .mediumwithTick {
283
- --listitem_padding: 7px 20px 7px 39px;
274
+ --listitem_padding: var(--zd_size7) var(--zd_size20) var(--zd_size7) var(--zd_size39);
284
275
  }
285
276
  [dir=ltr] .largewithTick {
286
- --listitem_padding: 10px 39px 10px
287
- 25px
288
- /*rtl: 10px 25px 10px 39px*/;
277
+ --listitem_padding: var(--zd_size10) var(--zd_size39) var(--zd_size10) var(--zd_size25);
289
278
  }
290
279
  [dir=rtl] .largewithTick {
291
- --listitem_padding: 10px 25px 10px 39px;
280
+ --listitem_padding: var(--zd_size10) var(--zd_size25) var(--zd_size10) var(--zd_size39);
292
281
  }
293
282
  .responsiveHeight {
294
- --listitem_min_height: 45px;
295
- --listitem_font_size: 15px;
283
+ --listitem_min_height: var(--zd_size45);
284
+ --listitem_font_size: var(--zd_font_size15);
296
285
  padding-top: var(--zd_size10) ;
297
286
  padding-bottom: var(--zd_size10) ;
298
287
  }
@@ -12,5 +12,5 @@
12
12
  .buttonText{
13
13
  font-size: var(--zd_font_size15) ;
14
14
  composes: dotted from '../../common/common.module.css';
15
- padding: 0
15
+ padding: 0
16
16
  }
@@ -1,17 +1,16 @@
1
1
  .varClass {
2
2
  /* radio default variables */
3
- --radio_width: 16px;
4
- --radio_height: 16px;
3
+ --radio_width: var(--zd_size16);
4
+ --radio_height: var(--zd_size16);
5
5
  --radio_bg_color: none;
6
6
  --radio_stroke_width: 2px;
7
7
  --radio_stroke_color: var(--zdt_radio_default_stroke);
8
8
  --radio_fill: none;
9
9
  --radio_inner_stroke_width: 0;
10
10
  }[dir=ltr] .varClass {
11
- --radio_label_margin: 0 0 0 6px /*rtl: 0 6px 0 0*/
12
- ;
11
+ --radio_label_margin: 0 0 0 var(--zd_size6);
13
12
  }[dir=rtl] .varClass {
14
- --radio_label_margin: 0 6px 0 0;
13
+ --radio_label_margin: 0 var(--zd_size6) 0 0;
15
14
  }
16
15
 
17
16
  .container {
@@ -49,13 +48,13 @@
49
48
  }
50
49
 
51
50
  .medium {
52
- --radio_width: 16px;
53
- --radio_height: 16px;
51
+ --radio_width: var(--zd_size16);
52
+ --radio_height: var(--zd_size16);
54
53
  }
55
54
 
56
55
  .small {
57
- --radio_width: 13px;
58
- --radio_height: 13px;
56
+ --radio_width: var(--zd_size13);
57
+ --radio_height: var(--zd_size13);
59
58
  }
60
59
 
61
60
  .medium.withSecondaryText {