@zohodesk/components 1.0.0-temp-250 → 1.0.0-temp-253
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 +29 -0
- package/assets/Appearance/dark/mode/Component_v1_DarkMode.module.css +68 -0
- package/assets/Appearance/light/mode/Component_v1_LightMode.module.css +68 -0
- package/assets/Appearance/pureDark/mode/Component_v1_PureDarkMode.module.css +68 -0
- package/es/Avatar/Avatar.module.css +8 -8
- package/es/AvatarTeam/AvatarTeam.module.css +189 -189
- package/es/Button/css/Button.module.css +19 -19
- package/es/Buttongroup/Buttongroup.module.css +85 -107
- package/es/Card/Card.module.css +6 -4
- package/es/CheckBox/CheckBox.module.css +3 -10
- package/es/DateTime/DateTime.module.css +22 -35
- package/es/DateTime/DateWidget.module.css +1 -1
- package/es/DateTime/YearView.module.css +8 -10
- package/es/DropBox/DropBoxElement/DropBoxElement.js +10 -1
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +8 -3
- package/es/DropBox/DropBoxElement/props/propTypes.js +2 -1
- package/es/DropBox/css/DropBox.module.css +58 -58
- package/es/DropDown/DropDown.module.css +2 -1
- package/es/DropDown/DropDownHeading.module.css +53 -53
- package/es/DropDown/DropDownItem.module.css +87 -94
- package/es/DropDown/DropDownSearch.module.css +3 -3
- package/es/DropDown/DropDownSeparator.module.css +2 -1
- package/es/Label/Label.module.css +5 -5
- package/es/ListItem/ListItem.module.css +23 -45
- package/es/MultiSelect/MobileHeader/MobileHeader.module.css +4 -3
- package/es/MultiSelect/MultiSelect.module.css +21 -34
- package/es/MultiSelect/SelectedOptions.module.css +6 -10
- package/es/PopOver/PopOver.module.css +8 -8
- package/es/Radio/Radio.module.css +11 -12
- package/es/ResponsiveDropBox/ResponsiveDropBox.js +1 -0
- package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +1 -1
- package/es/Ribbon/Ribbon.module.css +499 -505
- package/es/RippleEffect/RippleEffect.module.css +55 -17
- package/es/Select/Select.module.css +22 -17
- package/es/Stencils/Stencils.module.css +30 -14
- package/es/Switch/Switch.module.css +121 -128
- package/es/Tab/Tab.module.css +8 -15
- package/es/Tab/Tabs.module.css +12 -22
- package/es/Tag/Tag.module.css +255 -255
- package/es/TextBox/TextBox.module.css +9 -9
- package/es/TextBoxIcon/TextBoxIcon.module.css +1 -1
- package/es/Textarea/Textarea.module.css +18 -18
- package/es/Tooltip/Tooltip.module.css +5 -4
- package/es/Typography/Typography.js +18 -8
- package/es/Typography/__tests__/Typography.spec.js +198 -6
- package/es/Typography/__tests__/__snapshots__/Typography.spec.js.snap +1235 -2
- package/es/Typography/css/Typography.module.css +4 -0
- package/es/Typography/css/cssJSLogic.js +53 -21
- package/es/Typography/props/defaultProps.js +4 -3
- package/es/Typography/props/propTypes.js +68 -26
- package/es/Typography/utils/textHighlighter.js +4 -2
- package/es/common/avatarsizes.module.css +16 -16
- package/es/common/customscroll.module.css +141 -141
- package/es/shared/ArrowIcon/ArrowIcon.module.css +3 -2
- package/es/shared/InputFieldLine/InputFieldLine.module.css +2 -2
- package/es/v1/Button/Button.js +201 -0
- package/es/v1/Button/README.md +110 -0
- package/es/v1/Button/__tests__/Button.spec.js +272 -0
- package/es/v1/Button/__tests__/__snapshots__/Button.spec.js.snap +1160 -0
- package/es/v1/Button/_shared/Loader/Loader.js +33 -0
- package/es/v1/Button/_shared/Loader/Loader_v1.module.css +42 -0
- package/es/v1/Button/_shared/Loader/__tests__/Loader.spec.js +21 -0
- package/es/v1/Button/_shared/Loader/__tests__/__snapshots__/Loader.spec.js.snap +49 -0
- package/es/v1/Button/_shared/Loader/props/defaultProps.js +4 -0
- package/es/v1/Button/_shared/Loader/props/propTypes.js +7 -0
- package/es/v1/Button/_shared/SuccessTick/SuccessTick.js +25 -0
- package/es/v1/Button/_shared/SuccessTick/SuccessTick_v1.module.css +21 -0
- package/es/v1/Button/_shared/SuccessTick/__tests__/SuccessTick.spec.js +21 -0
- package/es/v1/Button/_shared/SuccessTick/__tests__/__snapshots__/SuccessTick.spec.js.snap +31 -0
- package/es/v1/Button/_shared/SuccessTick/props/defaultProps.js +4 -0
- package/es/v1/Button/_shared/SuccessTick/props/propTypes.js +7 -0
- package/es/v1/Button/constants/index.js +82 -0
- package/es/v1/Button/css/Button_v1.module.css +119 -0
- package/es/v1/Button/css/cssJSLogic.js +96 -0
- package/es/v1/Button/index.js +2 -0
- package/es/v1/Button/props/defaultProps.js +26 -0
- package/es/v1/Button/props/propTypes.js +43 -0
- package/es/v1/Switch/css/Switch_v1.module.css +28 -28
- package/es/v1/helpers/colorHelpers/background/backgroundColor.module.css +629 -0
- package/es/v1/helpers/colorHelpers/border/borderColor.module.css +489 -0
- package/es/v1/helpers/colorHelpers/colorHelper.js +176 -0
- package/es/v1/helpers/colorHelpers/constants/index.js +79 -0
- package/es/v1/helpers/colorHelpers/index.js +4 -0
- package/es/v1/helpers/colorHelpers/paletteUtilities.README.md +415 -0
- package/es/v1/helpers/colorHelpers/text/textColor.module.css +368 -0
- package/lib/Avatar/Avatar.module.css +8 -8
- package/lib/AvatarTeam/AvatarTeam.module.css +189 -189
- package/lib/Button/css/Button.module.css +19 -19
- package/lib/Buttongroup/Buttongroup.module.css +85 -107
- package/lib/Card/Card.module.css +6 -4
- package/lib/CheckBox/CheckBox.module.css +3 -10
- package/lib/DateTime/DateTime.module.css +22 -35
- package/lib/DateTime/DateWidget.module.css +1 -1
- package/lib/DateTime/YearView.module.css +8 -10
- package/lib/DropBox/DropBoxElement/DropBoxElement.js +10 -1
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +8 -3
- package/lib/DropBox/DropBoxElement/props/propTypes.js +2 -1
- package/lib/DropBox/css/DropBox.module.css +58 -58
- package/lib/DropDown/DropDown.module.css +2 -1
- package/lib/DropDown/DropDownHeading.module.css +53 -53
- package/lib/DropDown/DropDownItem.module.css +87 -94
- package/lib/DropDown/DropDownSearch.module.css +3 -3
- package/lib/DropDown/DropDownSeparator.module.css +2 -1
- package/lib/Label/Label.module.css +5 -5
- package/lib/ListItem/ListItem.module.css +23 -45
- package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +4 -3
- package/lib/MultiSelect/MultiSelect.module.css +21 -34
- package/lib/MultiSelect/SelectedOptions.module.css +6 -10
- package/lib/PopOver/PopOver.module.css +8 -8
- package/lib/Radio/Radio.module.css +11 -12
- package/lib/ResponsiveDropBox/ResponsiveDropBox.js +1 -0
- package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +1 -1
- package/lib/Ribbon/Ribbon.module.css +499 -505
- package/lib/RippleEffect/RippleEffect.module.css +55 -17
- package/lib/Select/Select.module.css +22 -17
- package/lib/Stencils/Stencils.module.css +30 -14
- package/lib/Switch/Switch.module.css +121 -128
- package/lib/Tab/Tab.module.css +8 -15
- package/lib/Tab/Tabs.module.css +12 -22
- package/lib/Tag/Tag.module.css +255 -255
- package/lib/TextBox/TextBox.module.css +9 -9
- package/lib/TextBoxIcon/TextBoxIcon.module.css +1 -1
- package/lib/Textarea/Textarea.module.css +18 -18
- package/lib/Tooltip/Tooltip.module.css +5 -4
- package/lib/Typography/Typography.js +15 -5
- package/lib/Typography/__tests__/Typography.spec.js +284 -92
- package/lib/Typography/__tests__/__snapshots__/Typography.spec.js.snap +1235 -2
- package/lib/Typography/css/Typography.module.css +4 -0
- package/lib/Typography/css/cssJSLogic.js +38 -6
- package/lib/Typography/props/defaultProps.js +6 -3
- package/lib/Typography/props/propTypes.js +67 -23
- package/lib/Typography/utils/textHighlighter.js +6 -3
- package/lib/common/avatarsizes.module.css +16 -16
- package/lib/common/customscroll.module.css +141 -141
- package/lib/shared/ArrowIcon/ArrowIcon.module.css +3 -2
- package/lib/shared/InputFieldLine/InputFieldLine.module.css +2 -2
- package/lib/v1/Button/Button.js +239 -0
- package/lib/v1/Button/README.md +110 -0
- package/lib/v1/Button/__tests__/Button.spec.js +293 -0
- package/lib/v1/Button/__tests__/__snapshots__/Button.spec.js.snap +1160 -0
- package/lib/v1/Button/_shared/Loader/Loader.js +43 -0
- package/lib/v1/Button/_shared/Loader/Loader_v1.module.css +42 -0
- package/lib/v1/Button/_shared/Loader/__tests__/Loader.spec.js +28 -0
- package/lib/v1/Button/_shared/Loader/__tests__/__snapshots__/Loader.spec.js.snap +49 -0
- package/lib/v1/Button/_shared/Loader/props/defaultProps.js +11 -0
- package/lib/v1/Button/_shared/Loader/props/propTypes.js +18 -0
- package/lib/v1/Button/_shared/SuccessTick/SuccessTick.js +35 -0
- package/lib/v1/Button/_shared/SuccessTick/SuccessTick_v1.module.css +21 -0
- package/lib/v1/Button/_shared/SuccessTick/__tests__/SuccessTick.spec.js +28 -0
- package/lib/v1/Button/_shared/SuccessTick/__tests__/__snapshots__/SuccessTick.spec.js.snap +31 -0
- package/lib/v1/Button/_shared/SuccessTick/props/defaultProps.js +11 -0
- package/lib/v1/Button/_shared/SuccessTick/props/propTypes.js +18 -0
- package/lib/v1/Button/constants/index.js +114 -0
- package/lib/v1/Button/css/Button_v1.module.css +119 -0
- package/lib/v1/Button/css/cssJSLogic.js +88 -0
- package/lib/v1/Button/index.js +21 -0
- package/lib/v1/Button/props/defaultProps.js +36 -0
- package/lib/v1/Button/props/propTypes.js +56 -0
- package/lib/v1/Switch/css/Switch_v1.module.css +28 -28
- package/lib/v1/helpers/colorHelpers/background/backgroundColor.module.css +629 -0
- package/lib/v1/helpers/colorHelpers/border/borderColor.module.css +489 -0
- package/lib/v1/helpers/colorHelpers/colorHelper.js +190 -0
- package/lib/v1/helpers/colorHelpers/constants/index.js +87 -0
- package/lib/v1/helpers/colorHelpers/index.js +57 -0
- package/lib/v1/helpers/colorHelpers/paletteUtilities.README.md +415 -0
- package/lib/v1/helpers/colorHelpers/text/textColor.module.css +368 -0
- package/package.json +17 -14
- package/_react-cli.config.js +0 -24
|
@@ -1,189 +1,189 @@
|
|
|
1
|
-
.varClass {
|
|
2
|
-
/* avatar team default variables */
|
|
3
|
-
--avatarteam_border_width: 1px;
|
|
4
|
-
--avatarteam_border_style: solid;
|
|
5
|
-
--avatarteam_border_color: var(--zdt_avatarteam_default_border);
|
|
6
|
-
--avatarteam_outline_width: 1px;
|
|
7
|
-
--avatarteam_outline_style: solid;
|
|
8
|
-
--avatarteam_outline_color: var(--zdt_avatarteam_innerCircle);
|
|
9
|
-
--avatarteam_bg_color: var(--zdt_avatarteam_default_bg);
|
|
10
|
-
--avatarteam_width:
|
|
11
|
-
--avatarteam_height:
|
|
12
|
-
--avatarteam_border_radius: 50%;
|
|
13
|
-
--avatarteam_bottom_top: initial;
|
|
14
|
-
--avatarteam_bottom_left: initial;
|
|
15
|
-
--avatarteam_bottom_right: initial;
|
|
16
|
-
--avatarteam_top_top:
|
|
17
|
-
}
|
|
18
|
-
.container {
|
|
19
|
-
position: relative;
|
|
20
|
-
display: inline-block;
|
|
21
|
-
font-size: 0 ;
|
|
22
|
-
vertical-align: middle;
|
|
23
|
-
}
|
|
24
|
-
.team {
|
|
25
|
-
composes: varClass;
|
|
26
|
-
composes: posab from '../common/common.module.css';
|
|
27
|
-
top: var(--avatarteam_top_top);
|
|
28
|
-
width: var(--avatarteam_width);
|
|
29
|
-
height: var(--avatarteam_height);
|
|
30
|
-
outline-width: var(--avatarteam_outline_width);
|
|
31
|
-
outline-style: var(--avatarteam_outline_style);
|
|
32
|
-
outline-color: var(--avatarteam_outline_color);
|
|
33
|
-
border-width: var(--avatarteam_border_width);
|
|
34
|
-
border-style: var(--avatarteam_border_style);
|
|
35
|
-
border-color: var(--avatarteam_border_color);
|
|
36
|
-
background-color: var(--avatarteam_bg_color);
|
|
37
|
-
border-radius: var(--avatarteam_border_radius);
|
|
38
|
-
}
|
|
39
|
-
[dir=ltr] .team {
|
|
40
|
-
transform: translate(-50%, -50%);
|
|
41
|
-
left: 50% ;
|
|
42
|
-
}
|
|
43
|
-
[dir=rtl] .team {
|
|
44
|
-
transform: translate(50%, -50%);
|
|
45
|
-
right: 50% ;
|
|
46
|
-
}
|
|
47
|
-
.nofill {
|
|
48
|
-
--avatarteam_border_color: var(--zdt_avatarteam_nofill_hover_border);
|
|
49
|
-
}
|
|
50
|
-
.primaryFilled,
|
|
51
|
-
.infoFilled {
|
|
52
|
-
--avatarteam_bg_color: var(--zdt_avatarteam_primary_hover_bg);
|
|
53
|
-
}
|
|
54
|
-
.secondaryFilled {
|
|
55
|
-
--avatarteam_bg_color: var(--zdt_avatarteam_secondary_bg);
|
|
56
|
-
}
|
|
57
|
-
.borderOnHover:hover .nofill,
|
|
58
|
-
.borderOnActive .nofill {
|
|
59
|
-
--avatarteam_border_color : var(--zdt_avatarteam_nofill_hover_border);
|
|
60
|
-
}
|
|
61
|
-
.borderOnHover:hover .primaryFilled,
|
|
62
|
-
.borderOnActive .primaryFilled,
|
|
63
|
-
.borderOnHover:hover .infoFilled,
|
|
64
|
-
.borderOnActive .infoFilled {
|
|
65
|
-
--avatarteam_bg_color: var(--zdt_avatarteam_primary_hover_bg);
|
|
66
|
-
}
|
|
67
|
-
.team:after,
|
|
68
|
-
.team:before {
|
|
69
|
-
position: absolute;
|
|
70
|
-
content: '';
|
|
71
|
-
height: inherit ;
|
|
72
|
-
width: inherit ;
|
|
73
|
-
top: var(--avatarteam_bottom_top);
|
|
74
|
-
outline-width: var(--avatarteam_outline_width);
|
|
75
|
-
outline-style: var(--avatarteam_outline_style);
|
|
76
|
-
outline-color: var( --avatarteam_outline_color);
|
|
77
|
-
}
|
|
78
|
-
.team:after, .team:before {
|
|
79
|
-
border: inherit;
|
|
80
|
-
background-color: inherit;
|
|
81
|
-
border-radius: inherit;
|
|
82
|
-
box-shadow: inherit;
|
|
83
|
-
}
|
|
84
|
-
[dir=ltr] .team:after, [dir=ltr] .team:before {
|
|
85
|
-
left: var(--avatarteam_bottom_left);
|
|
86
|
-
right: var(--avatarteam_bottom_right);
|
|
87
|
-
}
|
|
88
|
-
[dir=rtl] .team:after, [dir=rtl] .team:before {
|
|
89
|
-
right: var(--avatarteam_bottom_left);
|
|
90
|
-
left: var(--avatarteam_bottom_right);
|
|
91
|
-
}
|
|
92
|
-
.smallteam,
|
|
93
|
-
.xsmallteam,
|
|
94
|
-
.xxsmallteam {
|
|
95
|
-
--avatarteam_height:
|
|
96
|
-
--avatarteam_width:
|
|
97
|
-
}
|
|
98
|
-
.mediumteam,
|
|
99
|
-
.xmediumteam {
|
|
100
|
-
--avatarteam_height:
|
|
101
|
-
--avatarteam_width:
|
|
102
|
-
}
|
|
103
|
-
.largeteam,
|
|
104
|
-
.xlargeteam {
|
|
105
|
-
--avatarteam_height:
|
|
106
|
-
--avatarteam_width:
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.xxsmallteam {
|
|
110
|
-
/* Variable:Ignore */
|
|
111
|
-
--avatarteam_top_top: 0px;
|
|
112
|
-
}
|
|
113
|
-
.xxsmallteam::after,
|
|
114
|
-
.xxsmallteam:before {
|
|
115
|
-
--avatarteam_bottom_top:
|
|
116
|
-
}
|
|
117
|
-
.xxsmallteam:after {
|
|
118
|
-
--avatarteam_bottom_left: -
|
|
119
|
-
}
|
|
120
|
-
.xxsmallteam:before {
|
|
121
|
-
--avatarteam_bottom_right: -
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
.smallteam::after,
|
|
126
|
-
.smallteam:before {
|
|
127
|
-
--avatarteam_bottom_top:
|
|
128
|
-
}
|
|
129
|
-
.smallteam:after {
|
|
130
|
-
--avatarteam_bottom_left: -
|
|
131
|
-
}
|
|
132
|
-
.smallteam:before {
|
|
133
|
-
--avatarteam_bottom_right: -
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.xsmallteam::after,
|
|
137
|
-
.xsmallteam:before {
|
|
138
|
-
--avatarteam_bottom_top:
|
|
139
|
-
}
|
|
140
|
-
.xsmallteam:after {
|
|
141
|
-
--avatarteam_bottom_left: -
|
|
142
|
-
}
|
|
143
|
-
.xsmallteam:before {
|
|
144
|
-
--avatarteam_bottom_right: -
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.mediumteam::after,
|
|
148
|
-
.mediumteam:before {
|
|
149
|
-
--avatarteam_bottom_top:
|
|
150
|
-
}
|
|
151
|
-
.mediumteam:after {
|
|
152
|
-
--avatarteam_bottom_left: -
|
|
153
|
-
}
|
|
154
|
-
.mediumteam:before {
|
|
155
|
-
--avatarteam_bottom_right: -
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.xmediumteam::after,
|
|
159
|
-
.xmediumteam:before {
|
|
160
|
-
--avatarteam_bottom_top:
|
|
161
|
-
}
|
|
162
|
-
.xmediumteam:after {
|
|
163
|
-
--avatarteam_bottom_left: -
|
|
164
|
-
}
|
|
165
|
-
.xmediumteam:before {
|
|
166
|
-
--avatarteam_bottom_right: -
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.largeteam::after,
|
|
170
|
-
.largeteam:before {
|
|
171
|
-
--avatarteam_bottom_top:
|
|
172
|
-
}
|
|
173
|
-
.largeteam:after {
|
|
174
|
-
--avatarteam_bottom_left: -
|
|
175
|
-
}
|
|
176
|
-
.largeteam:before {
|
|
177
|
-
--avatarteam_bottom_right: -
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.xlargeteam::after,
|
|
181
|
-
.xlargeteam:before {
|
|
182
|
-
--avatarteam_bottom_top:
|
|
183
|
-
}
|
|
184
|
-
.xlargeteam:after {
|
|
185
|
-
--avatarteam_bottom_left: -
|
|
186
|
-
}
|
|
187
|
-
.xlargeteam:before {
|
|
188
|
-
--avatarteam_bottom_right: -
|
|
189
|
-
}
|
|
1
|
+
.varClass {
|
|
2
|
+
/* avatar team default variables */
|
|
3
|
+
--avatarteam_border_width: 1px;
|
|
4
|
+
--avatarteam_border_style: solid;
|
|
5
|
+
--avatarteam_border_color: var(--zdt_avatarteam_default_border);
|
|
6
|
+
--avatarteam_outline_width: 1px;
|
|
7
|
+
--avatarteam_outline_style: solid;
|
|
8
|
+
--avatarteam_outline_color: var(--zdt_avatarteam_innerCircle);
|
|
9
|
+
--avatarteam_bg_color: var(--zdt_avatarteam_default_bg);
|
|
10
|
+
--avatarteam_width: var(--zd_size5);
|
|
11
|
+
--avatarteam_height: var(--zd_size5);
|
|
12
|
+
--avatarteam_border_radius: 50%;
|
|
13
|
+
--avatarteam_bottom_top: initial;
|
|
14
|
+
--avatarteam_bottom_left: initial;
|
|
15
|
+
--avatarteam_bottom_right: initial;
|
|
16
|
+
--avatarteam_top_top: var(--zd_size1);
|
|
17
|
+
}
|
|
18
|
+
.container {
|
|
19
|
+
position: relative;
|
|
20
|
+
display: inline-block;
|
|
21
|
+
font-size: 0 ;
|
|
22
|
+
vertical-align: middle;
|
|
23
|
+
}
|
|
24
|
+
.team {
|
|
25
|
+
composes: varClass;
|
|
26
|
+
composes: posab from '../common/common.module.css';
|
|
27
|
+
top: var(--avatarteam_top_top);
|
|
28
|
+
width: var(--avatarteam_width);
|
|
29
|
+
height: var(--avatarteam_height);
|
|
30
|
+
outline-width: var(--avatarteam_outline_width);
|
|
31
|
+
outline-style: var(--avatarteam_outline_style);
|
|
32
|
+
outline-color: var(--avatarteam_outline_color);
|
|
33
|
+
border-width: var(--avatarteam_border_width);
|
|
34
|
+
border-style: var(--avatarteam_border_style);
|
|
35
|
+
border-color: var(--avatarteam_border_color);
|
|
36
|
+
background-color: var(--avatarteam_bg_color);
|
|
37
|
+
border-radius: var(--avatarteam_border_radius);
|
|
38
|
+
}
|
|
39
|
+
[dir=ltr] .team {
|
|
40
|
+
transform: translate(-50%, -50%);
|
|
41
|
+
left: 50% ;
|
|
42
|
+
}
|
|
43
|
+
[dir=rtl] .team {
|
|
44
|
+
transform: translate(50%, -50%);
|
|
45
|
+
right: 50% ;
|
|
46
|
+
}
|
|
47
|
+
.nofill {
|
|
48
|
+
--avatarteam_border_color: var(--zdt_avatarteam_nofill_hover_border);
|
|
49
|
+
}
|
|
50
|
+
.primaryFilled,
|
|
51
|
+
.infoFilled {
|
|
52
|
+
--avatarteam_bg_color: var(--zdt_avatarteam_primary_hover_bg);
|
|
53
|
+
}
|
|
54
|
+
.secondaryFilled {
|
|
55
|
+
--avatarteam_bg_color: var(--zdt_avatarteam_secondary_bg);
|
|
56
|
+
}
|
|
57
|
+
.borderOnHover:hover .nofill,
|
|
58
|
+
.borderOnActive .nofill {
|
|
59
|
+
--avatarteam_border_color : var(--zdt_avatarteam_nofill_hover_border);
|
|
60
|
+
}
|
|
61
|
+
.borderOnHover:hover .primaryFilled,
|
|
62
|
+
.borderOnActive .primaryFilled,
|
|
63
|
+
.borderOnHover:hover .infoFilled,
|
|
64
|
+
.borderOnActive .infoFilled {
|
|
65
|
+
--avatarteam_bg_color: var(--zdt_avatarteam_primary_hover_bg);
|
|
66
|
+
}
|
|
67
|
+
.team:after,
|
|
68
|
+
.team:before {
|
|
69
|
+
position: absolute;
|
|
70
|
+
content: '';
|
|
71
|
+
height: inherit ;
|
|
72
|
+
width: inherit ;
|
|
73
|
+
top: var(--avatarteam_bottom_top);
|
|
74
|
+
outline-width: var(--avatarteam_outline_width);
|
|
75
|
+
outline-style: var(--avatarteam_outline_style);
|
|
76
|
+
outline-color: var( --avatarteam_outline_color);
|
|
77
|
+
}
|
|
78
|
+
.team:after, .team:before {
|
|
79
|
+
border: inherit;
|
|
80
|
+
background-color: inherit;
|
|
81
|
+
border-radius: inherit;
|
|
82
|
+
box-shadow: inherit;
|
|
83
|
+
}
|
|
84
|
+
[dir=ltr] .team:after, [dir=ltr] .team:before {
|
|
85
|
+
left: var(--avatarteam_bottom_left);
|
|
86
|
+
right: var(--avatarteam_bottom_right);
|
|
87
|
+
}
|
|
88
|
+
[dir=rtl] .team:after, [dir=rtl] .team:before {
|
|
89
|
+
right: var(--avatarteam_bottom_left);
|
|
90
|
+
left: var(--avatarteam_bottom_right);
|
|
91
|
+
}
|
|
92
|
+
.smallteam,
|
|
93
|
+
.xsmallteam,
|
|
94
|
+
.xxsmallteam {
|
|
95
|
+
--avatarteam_height: var(--zd_size3);
|
|
96
|
+
--avatarteam_width: var(--zd_size3);
|
|
97
|
+
}
|
|
98
|
+
.mediumteam,
|
|
99
|
+
.xmediumteam {
|
|
100
|
+
--avatarteam_height: var(--zd_size5);
|
|
101
|
+
--avatarteam_width: var(--zd_size5);
|
|
102
|
+
}
|
|
103
|
+
.largeteam,
|
|
104
|
+
.xlargeteam {
|
|
105
|
+
--avatarteam_height: var(--zd_size7);
|
|
106
|
+
--avatarteam_width: var(--zd_size7);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.xxsmallteam {
|
|
110
|
+
/* Variable:Ignore */
|
|
111
|
+
--avatarteam_top_top: 0px;
|
|
112
|
+
}
|
|
113
|
+
.xxsmallteam::after,
|
|
114
|
+
.xxsmallteam:before {
|
|
115
|
+
--avatarteam_bottom_top: var(--zd_size13);
|
|
116
|
+
}
|
|
117
|
+
.xxsmallteam:after {
|
|
118
|
+
--avatarteam_bottom_left: calc( var(--zd_size8) * -1 );
|
|
119
|
+
}
|
|
120
|
+
.xxsmallteam:before {
|
|
121
|
+
--avatarteam_bottom_right: calc( var(--zd_size8) * -1 );
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
.smallteam::after,
|
|
126
|
+
.smallteam:before {
|
|
127
|
+
--avatarteam_bottom_top: var(--zd_size17);
|
|
128
|
+
}
|
|
129
|
+
.smallteam:after {
|
|
130
|
+
--avatarteam_bottom_left: calc( var(--zd_size8) * -1 );
|
|
131
|
+
}
|
|
132
|
+
.smallteam:before {
|
|
133
|
+
--avatarteam_bottom_right: calc( var(--zd_size8) * -1 );
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.xsmallteam::after,
|
|
137
|
+
.xsmallteam:before {
|
|
138
|
+
--avatarteam_bottom_top: var(--zd_size24);
|
|
139
|
+
}
|
|
140
|
+
.xsmallteam:after {
|
|
141
|
+
--avatarteam_bottom_left: calc( var(--zd_size10) * -1 );
|
|
142
|
+
}
|
|
143
|
+
.xsmallteam:before {
|
|
144
|
+
--avatarteam_bottom_right: calc( var(--zd_size10) * -1 );
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.mediumteam::after,
|
|
148
|
+
.mediumteam:before {
|
|
149
|
+
--avatarteam_bottom_top: var(--zd_size26);
|
|
150
|
+
}
|
|
151
|
+
.mediumteam:after {
|
|
152
|
+
--avatarteam_bottom_left: calc( var(--zd_size13) * -1 );
|
|
153
|
+
}
|
|
154
|
+
.mediumteam:before {
|
|
155
|
+
--avatarteam_bottom_right: calc( var(--zd_size13) * -1 );
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.xmediumteam::after,
|
|
159
|
+
.xmediumteam:before {
|
|
160
|
+
--avatarteam_bottom_top: var(--zd_size30);
|
|
161
|
+
}
|
|
162
|
+
.xmediumteam:after {
|
|
163
|
+
--avatarteam_bottom_left: calc( var(--zd_size16) * -1 );
|
|
164
|
+
}
|
|
165
|
+
.xmediumteam:before {
|
|
166
|
+
--avatarteam_bottom_right: calc( var(--zd_size16) * -1 );
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.largeteam::after,
|
|
170
|
+
.largeteam:before {
|
|
171
|
+
--avatarteam_bottom_top: var(--zd_size46);
|
|
172
|
+
}
|
|
173
|
+
.largeteam:after {
|
|
174
|
+
--avatarteam_bottom_left: calc( var(--zd_size24) * -1 );
|
|
175
|
+
}
|
|
176
|
+
.largeteam:before {
|
|
177
|
+
--avatarteam_bottom_right: calc( var(--zd_size24) * -1 );
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.xlargeteam::after,
|
|
181
|
+
.xlargeteam:before {
|
|
182
|
+
--avatarteam_bottom_top: var(--zd_size65);
|
|
183
|
+
}
|
|
184
|
+
.xlargeteam:after {
|
|
185
|
+
--avatarteam_bottom_left: calc( var(--zd_size29) * -1 );
|
|
186
|
+
}
|
|
187
|
+
.xlargeteam:before {
|
|
188
|
+
--avatarteam_bottom_right: calc( var(--zd_size29) * -1 );
|
|
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:
|
|
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:
|
|
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:
|
|
76
|
-
--button_min_width:
|
|
77
|
-
--button_font_size:
|
|
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:
|
|
81
|
+
--button_padding: var(--zd_size6) var(--zd_size15);
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
.large {
|
|
85
|
-
--button_padding:
|
|
86
|
-
--button_min_width:
|
|
87
|
-
--button_font_size:
|
|
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:
|
|
92
|
-
--button_min_width:
|
|
93
|
-
--button_font_size:
|
|
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:
|
|
98
|
-
--button_min_width:
|
|
99
|
-
--button_font_size:
|
|
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:
|
|
105
|
-
--button_min_width:
|
|
106
|
-
--button_font_size:
|
|
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:
|
|
137
|
+
--button_padding: var(--zd_size5);
|
|
138
138
|
--button_min_width: initial;
|
|
139
139
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
140
140
|
}
|
|
@@ -1,107 +1,85 @@
|
|
|
1
|
-
.varClass {
|
|
2
|
-
/* button group default variables */
|
|
3
|
-
--buttongroup_bg_color: var(--zdt_buttongroup_default_bg);
|
|
4
|
-
--buttongroup_box_shadow: none;
|
|
5
|
-
--buttongroup_padding: 0;
|
|
6
|
-
--buttongroup_border_width: 0;
|
|
7
|
-
--buttongroup_border_style: solid;
|
|
8
|
-
--buttongroup_border_color: var(--zdt_buttongroup_default_border);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.buttonGroup {
|
|
12
|
-
composes: varClass;
|
|
13
|
-
composes: cboth from '../common/common.module.css';
|
|
14
|
-
background-color: var(--buttongroup_bg_color);
|
|
15
|
-
box-shadow: var(--buttongroup_box_shadow);
|
|
16
|
-
padding: var(--buttongroup_padding);
|
|
17
|
-
border-width: var(--buttongroup_border_width);
|
|
18
|
-
border-style: var(--buttongroup_border_style);
|
|
19
|
-
border-color: var(--buttongroup_border_color);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.footer {
|
|
23
|
-
--buttongroup_box_shadow: var(--zd_bs_buttongroup_footer);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
[dir=ltr] .footer {
|
|
27
|
-
--buttongroup_padding:
|
|
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
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
margin-right: 0 ;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
[dir=rtl] .alignright>button:last-child {
|
|
90
|
-
margin-left: 0 ;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
[dir=ltr] .alignright>button {
|
|
94
|
-
margin-right: var(--zd_size15) ;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
[dir=rtl] .alignright>button {
|
|
98
|
-
margin-left: var(--zd_size15) ;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
[dir=ltr] .aligncenter>button {
|
|
102
|
-
margin-right: var(--zd_size15) ;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
[dir=rtl] .aligncenter>button {
|
|
106
|
-
margin-left: var(--zd_size15) ;
|
|
107
|
-
}
|
|
1
|
+
.varClass {
|
|
2
|
+
/* button group default variables */
|
|
3
|
+
--buttongroup_bg_color: var(--zdt_buttongroup_default_bg);
|
|
4
|
+
--buttongroup_box_shadow: none;
|
|
5
|
+
--buttongroup_padding: 0;
|
|
6
|
+
--buttongroup_border_width: 0;
|
|
7
|
+
--buttongroup_border_style: solid;
|
|
8
|
+
--buttongroup_border_color: var(--zdt_buttongroup_default_border);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.buttonGroup {
|
|
12
|
+
composes: varClass;
|
|
13
|
+
composes: cboth from '../common/common.module.css';
|
|
14
|
+
background-color: var(--buttongroup_bg_color);
|
|
15
|
+
box-shadow: var(--buttongroup_box_shadow);
|
|
16
|
+
padding: var(--buttongroup_padding);
|
|
17
|
+
border-width: var(--buttongroup_border_width);
|
|
18
|
+
border-style: var(--buttongroup_border_style);
|
|
19
|
+
border-color: var(--buttongroup_border_color);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.footer {
|
|
23
|
+
--buttongroup_box_shadow: var(--zd_bs_buttongroup_footer);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
[dir=ltr] .footer {
|
|
27
|
+
--buttongroup_padding: var(--zd_size20) 0 var(--zd_size20) var(--zd_size60);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
[dir=rtl] .footer {
|
|
31
|
+
--buttongroup_padding: var(--zd_size20) var(--zd_size60) var(--zd_size20) 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.header {
|
|
35
|
+
--buttongroup_padding: var(--zd_size12) var(--zd_size20);
|
|
36
|
+
--buttongroup_border_width: 0 0 1px 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
[dir=ltr] .tab>div button:first-child {
|
|
40
|
+
border-radius: 5px 0 0 5px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
[dir=rtl] .tab>div button:first-child {
|
|
44
|
+
border-radius: 0 5px 5px 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
[dir=ltr] .tab>div button:last-child {
|
|
48
|
+
border-radius: 0 5px 5px 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
[dir=rtl] .tab>div button:last-child {
|
|
52
|
+
border-radius: 5px 0 0 5px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.alignleft {
|
|
56
|
+
composes: fleft from '../common/common.module.css';
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.alignright {
|
|
60
|
+
composes: fright from '../common/common.module.css';
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.aligncenter {
|
|
64
|
+
composes: tcenter from '../common/common.module.css';
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.alignleft>button:first-child {
|
|
68
|
+
margin-inline-start:0 ;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.alignleft>button {
|
|
72
|
+
margin-inline-start:var(--zd_size15) ;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.alignright>button:last-child {
|
|
76
|
+
margin-inline-end:0 ;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.alignright>button {
|
|
80
|
+
margin-inline-end:var(--zd_size15) ;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.aligncenter>button {
|
|
84
|
+
margin-inline-end:var(--zd_size15) ;
|
|
85
|
+
}
|
package/es/Card/Card.module.css
CHANGED
|
@@ -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:
|
|
15
|
+
left: 50px;
|
|
14
16
|
position: absolute;
|
|
15
|
-
right:
|
|
17
|
+
right: 50px;
|
|
16
18
|
display: block;
|
|
17
19
|
z-index: -1;
|
|
18
|
-
height:
|
|
20
|
+
height: 1px;
|
|
19
21
|
bottom: 0;
|
|
20
|
-
} */
|
|
22
|
+
} */
|