@zohodesk/components 1.0.0-temp-191 → 1.0.0-temp-192

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 (193) hide show
  1. package/.cli/propValidation_report.html +1 -1
  2. package/README.md +4 -0
  3. package/assets/Appearance/dark/mode/Component_DarkMode.module.css +29 -2
  4. package/assets/Appearance/light/mode/Component_LightMode.module.css +29 -2
  5. package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +29 -2
  6. package/es/AppContainer/AppContainer.js +9 -10
  7. package/es/AppContainer/AppContainer.module.css +2 -2
  8. package/es/Avatar/Avatar.js +5 -4
  9. package/es/Avatar/Avatar.module.css +44 -26
  10. package/es/AvatarTeam/AvatarTeam.js +7 -7
  11. package/es/AvatarTeam/AvatarTeam.module.css +62 -74
  12. package/es/Button/Button.js +6 -5
  13. package/es/Button/css/Button.module.css +156 -100
  14. package/es/Buttongroup/Buttongroup.module.css +50 -17
  15. package/es/CheckBox/CheckBox.js +8 -8
  16. package/es/CheckBox/CheckBox.module.css +35 -60
  17. package/es/DateTime/DateTime.module.css +85 -57
  18. package/es/DateTime/DateWidget.module.css +11 -7
  19. package/es/DateTime/YearView.module.css +34 -21
  20. package/es/DropBox/DropBox.js +11 -10
  21. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +100 -81
  22. package/es/DropBox/css/DropBox.module.css +23 -6
  23. package/es/DropDown/DropDown.js +1 -2
  24. package/es/DropDown/DropDown.module.css +2 -2
  25. package/es/DropDown/DropDownHeading.module.css +15 -15
  26. package/es/DropDown/DropDownItem.module.css +40 -22
  27. package/es/DropDown/DropDownSearch.module.css +3 -3
  28. package/es/DropDown/DropDownSeparator.module.css +2 -2
  29. package/es/Heading/Heading.module.css +2 -2
  30. package/es/Label/Label.module.css +11 -23
  31. package/es/Label/LabelColors.module.css +1 -7
  32. package/es/Layout/Layout.module.css +15 -15
  33. package/es/ListItem/ListContainer.js +5 -6
  34. package/es/ListItem/ListItem.js +7 -6
  35. package/es/ListItem/ListItem.module.css +104 -55
  36. package/es/ListItem/ListItemWithAvatar.js +8 -7
  37. package/es/ListItem/ListItemWithCheckBox.js +5 -4
  38. package/es/ListItem/ListItemWithIcon.js +7 -6
  39. package/es/ListItem/ListItemWithRadio.js +5 -4
  40. package/es/Modal/Modal.js +5 -4
  41. package/es/MultiSelect/AdvancedGroupMultiSelect.js +9 -3
  42. package/es/MultiSelect/AdvancedMultiSelect.js +9 -8
  43. package/es/MultiSelect/MobileHeader/MobileHeader.module.css +16 -19
  44. package/es/MultiSelect/MultiSelect.js +9 -3
  45. package/es/MultiSelect/MultiSelect.module.css +55 -69
  46. package/es/MultiSelect/MultiSelectWithAvatar.js +6 -3
  47. package/es/MultiSelect/SelectedOptions.js +8 -6
  48. package/es/MultiSelect/SelectedOptions.module.css +11 -5
  49. package/es/MultiSelect/Suggestions.js +16 -10
  50. package/es/MultiSelect/props/defaultProps.js +9 -3
  51. package/es/MultiSelect/props/propTypes.js +7 -3
  52. package/es/PopOver/PopOver.module.css +2 -2
  53. package/es/Popup/Popup.js +4 -3
  54. package/es/Radio/Radio.js +8 -8
  55. package/es/Radio/Radio.module.css +22 -37
  56. package/es/ResponsiveDropBox/ResponsiveDropBox.js +4 -2
  57. package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +2 -2
  58. package/es/Ribbon/Ribbon.module.css +143 -64
  59. package/es/RippleEffect/RippleEffect.module.css +9 -27
  60. package/es/Select/GroupSelect.js +9 -3
  61. package/es/Select/Select.js +5 -4
  62. package/es/Select/Select.module.css +33 -22
  63. package/es/Select/SelectWithAvatar.js +9 -3
  64. package/es/Select/SelectWithIcon.js +9 -3
  65. package/es/Select/props/defaultProps.js +6 -3
  66. package/es/Select/props/propTypes.js +6 -3
  67. package/es/Stencils/Stencils.module.css +32 -14
  68. package/es/Switch/Switch.js +8 -8
  69. package/es/Switch/Switch.module.css +30 -35
  70. package/es/Tab/Tab.js +5 -4
  71. package/es/Tab/Tab.module.css +28 -39
  72. package/es/Tab/TabContentWrapper.js +5 -4
  73. package/es/Tab/TabWrapper.js +4 -2
  74. package/es/Tab/Tabs.js +16 -16
  75. package/es/Tab/Tabs.module.css +51 -29
  76. package/es/Tag/Tag.module.css +60 -91
  77. package/es/TextBox/TextBox.js +5 -5
  78. package/es/TextBox/TextBox.module.css +19 -23
  79. package/es/TextBoxIcon/TextBoxIcon.js +4 -2
  80. package/es/TextBoxIcon/TextBoxIcon.module.css +15 -8
  81. package/es/Textarea/Textarea.js +6 -4
  82. package/es/Textarea/Textarea.module.css +30 -60
  83. package/es/Tooltip/Tooltip.module.css +12 -13
  84. package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +5 -4
  85. package/es/common/animation.module.css +227 -29
  86. package/es/common/avatarsizes.module.css +16 -16
  87. package/es/common/basicReset.module.css +5 -15
  88. package/es/common/common.module.css +82 -36
  89. package/es/common/customscroll.module.css +33 -12
  90. package/es/common/transition.module.css +50 -10
  91. package/es/deprecated/PortalLayer/PortalLayer.js +6 -8
  92. package/es/semantic/Button/semanticButton.module.css +3 -3
  93. package/es/v1/AppContainer/AppContainer.js +9 -10
  94. package/es/v1/Avatar/Avatar.js +5 -4
  95. package/es/v1/AvatarTeam/AvatarTeam.js +7 -7
  96. package/es/v1/Button/Button.js +6 -5
  97. package/es/v1/CheckBox/CheckBox.js +8 -8
  98. package/es/v1/DropBox/DropBox.js +11 -10
  99. package/es/v1/DropDown/DropDown.js +1 -2
  100. package/es/v1/ListItem/ListContainer.js +5 -6
  101. package/es/v1/ListItem/ListItem.js +5 -4
  102. package/es/v1/ListItem/ListItemWithAvatar.js +5 -4
  103. package/es/v1/ListItem/ListItemWithCheckBox.js +5 -4
  104. package/es/v1/ListItem/ListItemWithIcon.js +5 -4
  105. package/es/v1/ListItem/ListItemWithRadio.js +5 -4
  106. package/es/v1/Modal/Modal.js +5 -4
  107. package/es/v1/MultiSelect/AdvancedMultiSelect.js +9 -8
  108. package/es/v1/MultiSelect/MultiSelectWithAvatar.js +5 -4
  109. package/es/v1/MultiSelect/SelectedOptions.js +8 -6
  110. package/es/v1/MultiSelect/Suggestions.js +8 -6
  111. package/es/v1/MultiSelect/props/defaultProps.js +4 -2
  112. package/es/v1/Popup/Popup.js +4 -3
  113. package/es/v1/Radio/Radio.js +8 -8
  114. package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +4 -2
  115. package/es/v1/Select/Select.js +5 -4
  116. package/es/v1/Switch/Switch.js +8 -8
  117. package/es/v1/Tab/Tab.js +5 -4
  118. package/es/v1/Tab/TabContentWrapper.js +5 -4
  119. package/es/v1/Tab/TabWrapper.js +4 -2
  120. package/es/v1/Tab/Tabs.js +16 -16
  121. package/es/v1/Tab/v1Tab.module.css +28 -39
  122. package/es/v1/Tab/v1Tabs.module.css +51 -29
  123. package/es/v1/TextBox/TextBox.js +5 -5
  124. package/es/v1/TextBoxIcon/TextBoxIcon.js +4 -2
  125. package/es/v1/Textarea/Textarea.js +6 -4
  126. package/es/v1/Typography/css/Typography.module.css +39 -33
  127. package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +5 -4
  128. package/lib/AppContainer/AppContainer.module.css +2 -2
  129. package/lib/Avatar/Avatar.module.css +44 -26
  130. package/lib/AvatarTeam/AvatarTeam.module.css +62 -74
  131. package/lib/Button/css/Button.module.css +156 -100
  132. package/lib/Buttongroup/Buttongroup.module.css +50 -17
  133. package/lib/CheckBox/CheckBox.module.css +35 -60
  134. package/lib/DateTime/DateTime.module.css +85 -57
  135. package/lib/DateTime/DateWidget.module.css +11 -7
  136. package/lib/DateTime/YearView.module.css +34 -21
  137. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +100 -81
  138. package/lib/DropBox/css/DropBox.module.css +23 -6
  139. package/lib/DropDown/DropDown.module.css +2 -2
  140. package/lib/DropDown/DropDownHeading.module.css +15 -15
  141. package/lib/DropDown/DropDownItem.module.css +40 -22
  142. package/lib/DropDown/DropDownSearch.module.css +3 -3
  143. package/lib/DropDown/DropDownSeparator.module.css +2 -2
  144. package/lib/Heading/Heading.module.css +2 -2
  145. package/lib/Label/Label.module.css +11 -23
  146. package/lib/Label/LabelColors.module.css +1 -7
  147. package/lib/Layout/Layout.module.css +15 -15
  148. package/lib/ListItem/ListItem.js +2 -2
  149. package/lib/ListItem/ListItem.module.css +104 -55
  150. package/lib/ListItem/ListItemWithAvatar.js +3 -3
  151. package/lib/ListItem/ListItemWithIcon.js +2 -2
  152. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +7 -3
  153. package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +16 -19
  154. package/lib/MultiSelect/MultiSelect.js +8 -3
  155. package/lib/MultiSelect/MultiSelect.module.css +55 -69
  156. package/lib/MultiSelect/MultiSelectWithAvatar.js +3 -1
  157. package/lib/MultiSelect/SelectedOptions.module.css +11 -5
  158. package/lib/MultiSelect/Suggestions.js +8 -4
  159. package/lib/MultiSelect/props/defaultProps.js +9 -3
  160. package/lib/MultiSelect/props/propTypes.js +9 -6
  161. package/lib/PopOver/PopOver.module.css +2 -2
  162. package/lib/Radio/Radio.module.css +22 -37
  163. package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +2 -2
  164. package/lib/Ribbon/Ribbon.module.css +143 -64
  165. package/lib/RippleEffect/RippleEffect.module.css +9 -27
  166. package/lib/Select/GroupSelect.js +8 -3
  167. package/lib/Select/Select.module.css +33 -22
  168. package/lib/Select/SelectWithAvatar.js +8 -3
  169. package/lib/Select/SelectWithIcon.js +8 -3
  170. package/lib/Select/props/defaultProps.js +5 -3
  171. package/lib/Select/props/propTypes.js +6 -3
  172. package/lib/Stencils/Stencils.module.css +32 -14
  173. package/lib/Switch/Switch.module.css +30 -35
  174. package/lib/Tab/Tab.module.css +28 -39
  175. package/lib/Tab/Tabs.module.css +51 -29
  176. package/lib/Tag/Tag.module.css +60 -91
  177. package/lib/TextBox/TextBox.module.css +19 -23
  178. package/lib/TextBoxIcon/TextBoxIcon.module.css +15 -8
  179. package/lib/Textarea/Textarea.module.css +30 -60
  180. package/lib/Tooltip/Tooltip.module.css +12 -13
  181. package/lib/common/animation.module.css +227 -29
  182. package/lib/common/avatarsizes.module.css +16 -16
  183. package/lib/common/basicReset.module.css +5 -15
  184. package/lib/common/common.module.css +82 -36
  185. package/lib/common/customscroll.module.css +33 -12
  186. package/lib/common/transition.module.css +50 -10
  187. package/lib/semantic/Button/semanticButton.module.css +3 -3
  188. package/lib/v1/MultiSelect/props/defaultProps.js +4 -2
  189. package/lib/v1/Tab/v1Tab.module.css +28 -39
  190. package/lib/v1/Tab/v1Tabs.module.css +51 -29
  191. package/lib/v1/Typography/css/Typography.module.css +39 -33
  192. package/package.json +3 -3
  193. package/result.json +1 -0
@@ -2,26 +2,29 @@
2
2
  position: fixed;
3
3
  z-index: 9999999;
4
4
  /*Hook for editor alert*/
5
- animation: tooltip-grow var(--zd_transition7) cubic-bezier(0.175, 0.885, 0.32, 1.15);
6
5
  pointer-events: none;
7
6
  box-shadow: 0 4px 12px 0 var(--zdt_tooltip_default_box_shadow);
8
7
  border-radius: var(--zd_size4);
8
+ }[dir=ltr] .tooltiptext {
9
+ animation: tooltip-grow var(--zd_transition7) cubic-bezier(0.175, 0.885, 0.32, 1.15);
10
+ }[dir=rtl] .tooltiptext {
11
+ animation: tooltip-grow var(--zd_transition7) cubic-bezier(0.175, 0.885, 0.32, 1.15);
9
12
  }
10
13
 
11
14
  .tooltipcont {
12
- background-color: var(--zdt_tooltip_default_bg);
13
15
  color: var(--zdt_tooltip_default_text);
14
- padding: 0 10px;
15
- font-size: 13px;
16
+ font-size: var(--zd_font_size13) ;
16
17
  font-family: var(--zd_semibold);
17
18
  word-break: break-word;
19
+ max-width: var(--zd_size420) ;
20
+ line-height: 1.5385;
21
+ min-height: var(--zd_size24) ;
22
+ overflow: hidden;
23
+ background-color: var(--zdt_tooltip_default_bg);
24
+ padding: 0 var(--zd_size10) ;
18
25
  border-style: solid;
19
26
  border-color: transparent;
20
27
  border-radius: var(--zd_size4);
21
- max-width: 420px;
22
- line-height: 1.5385;
23
- min-height: 24px;
24
- overflow: hidden;
25
28
  }
26
29
 
27
30
  .tooltipWrapCont {
@@ -31,12 +34,10 @@
31
34
  .tooltipNormalCont {
32
35
  white-space: normal;
33
36
  }
34
-
35
- /*rtl:begin:ignore*/
36
37
  .tooltiparrow {
37
38
  content: '';
38
39
  position: absolute;
39
- top: 0;
40
+ top: 0 ;
40
41
  border-top-left-radius: 3px;
41
42
  }
42
43
 
@@ -99,8 +100,6 @@
99
100
  .arrowRight {
100
101
  transform: rotate(135deg) translateY(50%);
101
102
  }
102
-
103
- /*rtl:end:ignore*/
104
103
  @keyframes tooltip-grow {
105
104
  from {
106
105
  opacity: 0;
@@ -1,16 +1,33 @@
1
- .modeForward {
1
+ [dir=ltr] .modeForward {
2
2
  animation-fill-mode: forwards;
3
3
  -webkit-animation-fill-mode: forwards;
4
4
  -ms-animation-fill-mode: forwards;
5
5
  -moz-animation-fill-mode: forwards;
6
+ }[dir=rtl] .modeForward {
7
+ animation-fill-mode: forwards;
8
+ -webkit-animation-fill-mode: forwards;
9
+ -ms-animation-fill-mode: forwards;
10
+ -moz-animation-fill-mode: forwards;
11
+ }
12
+ [dir=ltr] .infinite {
13
+ animation-iteration-count: infinite;
14
+ -moz-animation-iteration-count: infinite;
15
+ -webkit-animation-iteration-count: infinite;
16
+ -ms-animation-iteration-count: infinite;
6
17
  }
7
- .infinite {
18
+ [dir=rtl] .infinite {
8
19
  animation-iteration-count: infinite;
9
20
  -moz-animation-iteration-count: infinite;
10
21
  -webkit-animation-iteration-count: infinite;
11
22
  -ms-animation-iteration-count: infinite;
12
23
  }
13
- .both {
24
+ [dir=ltr] .both {
25
+ animation-fill-mode: both;
26
+ -webkit-animation-fill-mode: both;
27
+ -ms-animation-fill-mode: both;
28
+ -moz-animation-fill-mode: both;
29
+ }
30
+ [dir=rtl] .both {
14
31
  animation-fill-mode: both;
15
32
  -webkit-animation-fill-mode: both;
16
33
  -ms-animation-fill-mode: both;
@@ -18,6 +35,14 @@
18
35
  }
19
36
  .fadeIn {
20
37
  opacity: 0;
38
+ }
39
+ [dir=ltr] .fadeIn {
40
+ animation-name: fadeIn;
41
+ -webkit-animation-name: fadeIn;
42
+ -moz-animation-name: fadeIn;
43
+ -ms-animation-name: fadeIn;
44
+ }
45
+ [dir=rtl] .fadeIn {
21
46
  animation-name: fadeIn;
22
47
  -webkit-animation-name: fadeIn;
23
48
  -moz-animation-name: fadeIn;
@@ -41,12 +66,23 @@
41
66
 
42
67
  .slideLeft {
43
68
  opacity: 0;
69
+ }
70
+
71
+ [dir=ltr] .slideLeft {
44
72
  transform: translateX(110%) scale(0);
45
73
  animation-name: slideLeft;
46
74
  -webkit-animation-name: slideLeft;
47
75
  -moz-animation-name: slideLeft;
48
76
  -ms-animation-name: slideLeft;
49
77
  }
78
+
79
+ [dir=rtl] .slideLeft {
80
+ transform: translateX(-110%) scale(0);
81
+ animation-name: slideLeft;
82
+ -webkit-animation-name: slideLeft;
83
+ -moz-animation-name: slideLeft;
84
+ -ms-animation-name: slideLeft;
85
+ }
50
86
  @keyframes slideLeft {
51
87
  100% {
52
88
  opacity: 1;
@@ -69,60 +105,126 @@
69
105
  .slideRight {
70
106
  opacity: 1;
71
107
  transform: translateX(0) scale(1);
72
- animation-name: slideRight;
73
- -webkit-animation-name: slideRight;
74
- -moz-animation-name: slideRight;
75
- -ms-animation-name: slideRight;
76
108
  }
77
- @keyframes slideRight {
109
+
110
+ [dir=ltr] .slideRight {
111
+ animation-name: slideRight-ltr ;
112
+ -webkit-animation-name: slideRight-ltr ;
113
+ -moz-animation-name: slideRight-ltr ;
114
+ -ms-animation-name: slideRight-ltr ;
115
+ }
116
+
117
+ [dir=rtl] .slideRight {
118
+ animation-name: slideRight-rtl ;
119
+ -webkit-animation-name: slideRight-rtl ;
120
+ -moz-animation-name: slideRight-rtl ;
121
+ -ms-animation-name: slideRight-rtl ;
122
+ }
123
+ @keyframes slideRight-ltr {
78
124
  100% {
79
125
  opacity: 0;
80
126
  transform: translateX(110%) scale(0);
81
127
  }
82
128
  }
83
- @-webkit-keyframes slideRight {
129
+ @keyframes slideRight-rtl {
130
+ 100% {
131
+ opacity: 0;
132
+ transform: translateX(-110%) scale(0);
133
+ }
134
+ }
135
+ @-webkit-keyframes slideRight-ltr {
84
136
  100% {
85
137
  opacity: 0;
86
138
  transform: translateX(110%) scale(0);
87
139
  }
88
140
  }
89
- @-moz-keyframes slideRight {
141
+ @-webkit-keyframes slideRight-rtl {
142
+ 100% {
143
+ opacity: 0;
144
+ transform: translateX(-110%) scale(0);
145
+ }
146
+ }
147
+ @-moz-keyframes slideRight-ltr {
90
148
  100% {
91
149
  opacity: 0;
92
150
  transform: translateX(110%) scale(0);
93
151
  }
94
152
  }
153
+ @-moz-keyframes slideRight-rtl {
154
+ 100% {
155
+ opacity: 0;
156
+ transform: translateX(-110%) scale(0);
157
+ }
158
+ }
95
159
 
96
160
  .slideTop {
97
161
  opacity: 1;
98
162
  transform: translateY(0) scale(1);
99
- animation-name: slideTop;
100
- -webkit-animation-name: slideTop;
101
- -moz-animation-name: slideTop;
102
- -ms-animation-name: slideTop;
103
163
  }
104
- @keyframes slideTop {
164
+
165
+ [dir=ltr] .slideTop {
166
+ animation-name: slideTop-ltr ;
167
+ -webkit-animation-name: slideTop-ltr ;
168
+ -moz-animation-name: slideTop-ltr ;
169
+ -ms-animation-name: slideTop-ltr ;
170
+ }
171
+
172
+ [dir=rtl] .slideTop {
173
+ animation-name: slideTop-rtl ;
174
+ -webkit-animation-name: slideTop-rtl ;
175
+ -moz-animation-name: slideTop-rtl ;
176
+ -ms-animation-name: slideTop-rtl ;
177
+ }
178
+ @keyframes slideTop-ltr {
105
179
  100% {
106
180
  opacity: 0;
107
181
  transform: translateX(100%) scale(0);
108
182
  }
109
183
  }
110
- @-webkit-keyframes slideTop {
184
+ @keyframes slideTop-rtl {
185
+ 100% {
186
+ opacity: 0;
187
+ transform: translateX(-100%) scale(0);
188
+ }
189
+ }
190
+ @-webkit-keyframes slideTop-ltr {
111
191
  100% {
112
192
  opacity: 0;
113
193
  transform: translateX(100%) scale(0);
114
194
  }
115
195
  }
116
- @-moz-keyframes slideTop {
196
+ @-webkit-keyframes slideTop-rtl {
197
+ 100% {
198
+ opacity: 0;
199
+ transform: translateX(-100%) scale(0);
200
+ }
201
+ }
202
+ @-moz-keyframes slideTop-ltr {
117
203
  100% {
118
204
  opacity: 0;
119
205
  transform: translateX(100%) scale(0);
120
206
  }
121
207
  }
208
+ @-moz-keyframes slideTop-rtl {
209
+ 100% {
210
+ opacity: 0;
211
+ transform: translateX(-100%) scale(0);
212
+ }
213
+ }
122
214
 
123
215
  .fadeInScale {
124
216
  opacity: 0;
125
217
  transform: scale(0.8);
218
+ }
219
+
220
+ [dir=ltr] .fadeInScale {
221
+ animation-name: fadeInScale;
222
+ -webkit-animation-name: fadeInScale;
223
+ -moz-animation-name: fadeInScale;
224
+ -ms-animation-name: fadeInScale;
225
+ }
226
+
227
+ [dir=rtl] .fadeInScale {
126
228
  animation-name: fadeInScale;
127
229
  -webkit-animation-name: fadeInScale;
128
230
  -moz-animation-name: fadeInScale;
@@ -131,6 +233,14 @@
131
233
  .zoomIn {
132
234
  opacity: 0;
133
235
  transform: scale(1.5);
236
+ }
237
+ [dir=ltr] .zoomIn {
238
+ animation-name: fadeInScale;
239
+ -webkit-animation-name: fadeInScale;
240
+ -moz-animation-name: fadeInScale;
241
+ -ms-animation-name: fadeInScale;
242
+ }
243
+ [dir=rtl] .zoomIn {
134
244
  animation-name: fadeInScale;
135
245
  -webkit-animation-name: fadeInScale;
136
246
  -moz-animation-name: fadeInScale;
@@ -156,7 +266,17 @@
156
266
  }
157
267
 
158
268
  .slideUp {
159
- max-height: 0;
269
+ max-height: 0 ;
270
+ }
271
+
272
+ [dir=ltr] .slideUp {
273
+ animation-name: slideUp;
274
+ -webkit-animation-name: slideUp;
275
+ -moz-animation-name: slideUp;
276
+ -ms-animation-name: slideUp;
277
+ }
278
+
279
+ [dir=rtl] .slideUp {
160
280
  animation-name: slideUp;
161
281
  -webkit-animation-name: slideUp;
162
282
  -moz-animation-name: slideUp;
@@ -164,22 +284,32 @@
164
284
  }
165
285
  @keyframes slideUp {
166
286
  100% {
167
- max-height: 100vh;
287
+ max-height: 100vh ;
168
288
  }
169
289
  }
170
290
  @-webkit-keyframes slideUp {
171
291
  100% {
172
- max-height: 100vh;
292
+ max-height: 100vh ;
173
293
  }
174
294
  }
175
295
  @-moz-keyframes slideUp {
176
296
  100% {
177
- max-height: 100vh;
297
+ max-height: 100vh ;
178
298
  }
179
299
  }
180
300
 
181
301
  .slideDown {
182
- max-height: 100vh;
302
+ max-height: 100vh ;
303
+ }
304
+
305
+ [dir=ltr] .slideDown {
306
+ animation-name: slideDown;
307
+ -webkit-animation-name: slideDown;
308
+ -moz-animation-name: slideDown;
309
+ -ms-animation-name: slideDown;
310
+ }
311
+
312
+ [dir=rtl] .slideDown {
183
313
  animation-name: slideDown;
184
314
  -webkit-animation-name: slideDown;
185
315
  -moz-animation-name: slideDown;
@@ -187,21 +317,32 @@
187
317
  }
188
318
  @keyframes slideDown {
189
319
  100% {
190
- max-height: 0;
320
+ max-height: 0 ;
191
321
  }
192
322
  }
193
323
  @-webkit-keyframes slideDown {
194
324
  100% {
195
- max-height: 0;
325
+ max-height: 0 ;
196
326
  }
197
327
  }
198
328
  @-moz-keyframes slideDown {
199
329
  100% {
200
- max-height: 0;
330
+ max-height: 0 ;
201
331
  }
202
332
  }
203
333
 
204
- .navigate::before {
334
+ [dir=ltr] .navigate::before {
335
+ animation-name: navigate;
336
+ -webkit-animation-name: navigate;
337
+ -moz-animation-name: navigate;
338
+ -ms-animation-name: navigate;
339
+ animation-iteration-count: infinite;
340
+ -moz-animation-iteration-count: infinite;
341
+ -webkit-animation-iteration-count: infinite;
342
+ -ms-animation-iteration-count: infinite;
343
+ }
344
+
345
+ [dir=rtl] .navigate::before {
205
346
  animation-name: navigate;
206
347
  -webkit-animation-name: navigate;
207
348
  -moz-animation-name: navigate;
@@ -233,12 +374,22 @@
233
374
  }
234
375
 
235
376
  .scaleIn {
377
+ composes: modeForward;
236
378
  transform: scale(0);
379
+ }
380
+
381
+ [dir=ltr] .scaleIn {
382
+ animation-name: scaleIn;
383
+ -webkit-animation-name: scaleIn;
384
+ -moz-animation-name: scaleIn;
385
+ -ms-animation-name: scaleIn;
386
+ }
387
+
388
+ [dir=rtl] .scaleIn {
237
389
  animation-name: scaleIn;
238
390
  -webkit-animation-name: scaleIn;
239
391
  -moz-animation-name: scaleIn;
240
392
  -ms-animation-name: scaleIn;
241
- composes: modeForward;
242
393
  }
243
394
  @keyframes scaleIn {
244
395
  100% {
@@ -257,12 +408,22 @@
257
408
  }
258
409
 
259
410
  .scaleOut {
411
+ composes: modeForward;
260
412
  transform: scale(1);
413
+ }
414
+
415
+ [dir=ltr] .scaleOut {
416
+ animation-name: scaleOut;
417
+ -webkit-animation-name: scaleOut;
418
+ -moz-animation-name: scaleOut;
419
+ -ms-animation-name: scaleOut;
420
+ }
421
+
422
+ [dir=rtl] .scaleOut {
261
423
  animation-name: scaleOut;
262
424
  -webkit-animation-name: scaleOut;
263
425
  -moz-animation-name: scaleOut;
264
426
  -ms-animation-name: scaleOut;
265
- composes: modeForward;
266
427
  }
267
428
  @keyframes scaleOut {
268
429
  100% {
@@ -282,6 +443,16 @@
282
443
 
283
444
  .flyDown {
284
445
  transform: translateY(-105%);
446
+ }
447
+
448
+ [dir=ltr] .flyDown {
449
+ animation-name: flyDown;
450
+ -webkit-animation-name: flyDown;
451
+ -moz-animation-name: flyDown;
452
+ -ms-animation-name: flyDown;
453
+ }
454
+
455
+ [dir=rtl] .flyDown {
285
456
  animation-name: flyDown;
286
457
  -webkit-animation-name: flyDown;
287
458
  -moz-animation-name: flyDown;
@@ -305,6 +476,16 @@
305
476
 
306
477
  .flyUp {
307
478
  transform: translateY(0%);
479
+ }
480
+
481
+ [dir=ltr] .flyUp {
482
+ animation-name: flyUp;
483
+ -webkit-animation-name: flyUp;
484
+ -moz-animation-name: flyUp;
485
+ -ms-animation-name: flyUp;
486
+ }
487
+
488
+ [dir=rtl] .flyUp {
308
489
  animation-name: flyUp;
309
490
  -webkit-animation-name: flyUp;
310
491
  -moz-animation-name: flyUp;
@@ -322,12 +503,22 @@
322
503
  }
323
504
 
324
505
  .bounceIn {
506
+ composes: modeForward;
325
507
  transform: scale(0);
508
+ }
509
+
510
+ [dir=ltr] .bounceIn {
511
+ animation-name: bounceIn;
512
+ -webkit-animation-name: bounceIn;
513
+ -moz-animation-name: bounceIn;
514
+ -ms-animation-name: bounceIn;
515
+ }
516
+
517
+ [dir=rtl] .bounceIn {
326
518
  animation-name: bounceIn;
327
519
  -webkit-animation-name: bounceIn;
328
520
  -moz-animation-name: bounceIn;
329
521
  -ms-animation-name: bounceIn;
330
- composes: modeForward;
331
522
  }
332
523
  @keyframes bounceIn {
333
524
  0% {
@@ -411,6 +602,13 @@
411
602
  .zoomout {
412
603
  transition: transform var(--zd_transition5), opacity var(--zd_transition5);
413
604
  will-change: transform;
605
+ }
606
+
607
+ [dir=ltr] .zoomout {
608
+ animation: Zoomout 500ms forwards;
609
+ }
610
+
611
+ [dir=rtl] .zoomout {
414
612
  animation: Zoomout 500ms forwards;
415
613
  }
416
614
  @keyframes Zoomout {
@@ -1,8 +1,8 @@
1
1
  /*Avatar common Sizes*/
2
2
  .varClass {
3
3
  /* avatar size default variables */
4
- --avatar_width: 34px;
5
- --avatar_height: 34px;
4
+ --avatar_width: var(--zd_size34);
5
+ --avatar_height: var(--zd_size34);
6
6
  }
7
7
  .small,
8
8
  .xsmall,
@@ -16,34 +16,34 @@
16
16
  height: var(--avatar_height);
17
17
  }
18
18
  .small {
19
- --avatar_height: 22px;
20
- --avatar_width: 22px;
19
+ --avatar_height: var(--zd_size22);
20
+ --avatar_width: var(--zd_size22);
21
21
  }
22
22
  .xxsmall {
23
- --avatar_height: 18px;
24
- --avatar_width: 18px;
23
+ --avatar_height: var(--zd_size18);
24
+ --avatar_width: var(--zd_size18);
25
25
  }
26
26
  .xsmall {
27
- --avatar_height: 30px;
28
- --avatar_width: 30px;
27
+ --avatar_height: var(--zd_size30);
28
+ --avatar_width: var(--zd_size30);
29
29
  }
30
30
 
31
31
  .medium {
32
- --avatar_height: 34px;
33
- --avatar_width: 34px;
32
+ --avatar_height: var(--zd_size34);
33
+ --avatar_width: var(--zd_size34);
34
34
  }
35
35
 
36
36
  .xmedium {
37
- --avatar_height: 40px;
38
- --avatar_width: 40px;
37
+ --avatar_height: var(--zd_size40);
38
+ --avatar_width: var(--zd_size40);
39
39
  }
40
40
 
41
41
  .large {
42
- --avatar_height: 60px;
43
- --avatar_width: 60px;
42
+ --avatar_height: var(--zd_size60);
43
+ --avatar_width: var(--zd_size60);
44
44
  }
45
45
 
46
46
  .xlarge {
47
- --avatar_height: 80px;
48
- --avatar_width: 80px;
47
+ --avatar_height: var(--zd_size80);
48
+ --avatar_width: var(--zd_size80);
49
49
  }
@@ -3,17 +3,11 @@ a {
3
3
  }
4
4
 
5
5
  button {
6
- padding: 0;
6
+ padding: 0 ;
7
7
  }
8
8
 
9
- p,
10
- h1,
11
- h2,
12
- h3,
13
- h4,
14
- h5,
15
- h6 {
16
- margin: 0;
9
+ p, h1, h2, h3, h4, h5, h6 {
10
+ margin: 0 ;
17
11
  }
18
12
 
19
13
  iframe {
@@ -22,7 +16,7 @@ iframe {
22
16
 
23
17
  body {
24
18
  text-rendering: optimizeSpeed;
25
- margin: 0;
19
+ margin: 0 ;
26
20
  }
27
21
 
28
22
  body,
@@ -36,11 +30,7 @@ textarea {
36
30
  font-family: var(--zd_regular);
37
31
  }
38
32
 
39
- label,
40
- input[type='button'],
41
- input[type='submit'],
42
- input[type='file'],
43
- button {
33
+ label, input[type='button'], input[type='submit'], input[type='file'], button {
44
34
  cursor: pointer;
45
35
  }
46
36