@zohodesk/components 1.0.0-temp-242 → 1.0.0-temp-244
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 +0 -4
- package/es/AvatarTeam/AvatarTeam.module.css +189 -189
- package/es/Buttongroup/Buttongroup.module.css +104 -104
- package/es/DropBox/css/DropBox.module.css +58 -58
- package/es/DropDown/DropDownHeading.module.css +53 -53
- package/es/DropDown/DropDownItem.module.css +94 -94
- package/es/Label/Label.module.css +57 -57
- package/es/PopOver/PopOver.module.css +8 -8
- package/es/Popup/Popup.js +1045 -21
- package/es/Popup/PositionMapping.js +72 -0
- package/es/Popup/Registry.js +36 -0
- package/es/Popup/intersectionObserver.js +49 -0
- package/es/Popup/viewPort.js +373 -0
- package/es/Ribbon/Ribbon.module.css +499 -499
- package/es/Switch/Switch.module.css +127 -127
- package/es/Tag/Tag.module.css +253 -253
- package/es/TextBox/TextBox.module.css +196 -196
- package/es/TextBoxIcon/TextBoxIcon.module.css +79 -79
- package/es/Tooltip/Tooltip.js +2 -2
- package/es/common/customscroll.module.css +141 -141
- package/es/utils/Common.js +1 -1
- package/es/v1/Popup/Popup.js +1 -1
- package/lib/AvatarTeam/AvatarTeam.module.css +189 -189
- package/lib/Buttongroup/Buttongroup.module.css +104 -104
- package/lib/DropBox/css/DropBox.module.css +58 -58
- package/lib/DropDown/DropDownHeading.module.css +53 -53
- package/lib/DropDown/DropDownItem.module.css +94 -94
- package/lib/Label/Label.module.css +57 -57
- package/lib/PopOver/PopOver.module.css +8 -8
- package/lib/Popup/Popup.js +1152 -25
- package/lib/Popup/PositionMapping.js +81 -0
- package/lib/Popup/Registry.js +46 -0
- package/lib/Popup/intersectionObserver.js +72 -0
- package/lib/Popup/viewPort.js +367 -0
- package/lib/Ribbon/Ribbon.module.css +499 -499
- package/lib/Switch/Switch.module.css +127 -127
- package/lib/Tag/Tag.module.css +253 -253
- package/lib/TextBox/TextBox.module.css +196 -196
- package/lib/TextBoxIcon/TextBoxIcon.module.css +79 -79
- package/lib/Tooltip/Tooltip.js +2 -2
- package/lib/common/customscroll.module.css +141 -141
- package/lib/utils/Common.js +1 -1
- package/lib/v1/Popup/Popup.js +1 -1
- package/package.json +4 -4
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
.varClass {
|
|
2
|
-
/* label default variables */
|
|
3
|
-
--label_font_size: var(--zd_font_size14);
|
|
4
|
-
--label_text_color: var(--zdt_label_default_text);
|
|
5
|
-
--label_font_family: var(--zd_regular);
|
|
6
|
-
--label_cursor: default;
|
|
7
|
-
--label_line_height: 1.286;
|
|
8
|
-
}
|
|
9
|
-
/* css:lineheight-validation:ignore */
|
|
10
|
-
.label {
|
|
11
|
-
composes: varClass;
|
|
12
|
-
vertical-align: middle;
|
|
13
|
-
line-height: var(--label_line_height);
|
|
14
|
-
font-size: var(--label_font_size);
|
|
15
|
-
color: var(--label_text_color);
|
|
16
|
-
font-family: var(--label_font_family);
|
|
17
|
-
cursor: var(--label_cursor);
|
|
18
|
-
}
|
|
19
|
-
.xsmall {
|
|
20
|
-
--label_font_size: var(--zd_font_size12);
|
|
21
|
-
--label_line_height:1.5;
|
|
22
|
-
}
|
|
23
|
-
.small {
|
|
24
|
-
--label_font_size: var(--zd_font_size13);
|
|
25
|
-
--label_line_height:1.385;
|
|
26
|
-
}
|
|
27
|
-
.medium {
|
|
28
|
-
--label_font_size: var(--zd_font_size14);
|
|
29
|
-
--label_line_height:1.286;
|
|
30
|
-
}
|
|
31
|
-
.large {
|
|
32
|
-
--label_font_size: var(--zd_font_size26);
|
|
33
|
-
--label_line_height:0.6923;
|
|
34
|
-
composes: semibold from '../common/common.module.css';
|
|
35
|
-
}
|
|
36
|
-
.pointer {
|
|
37
|
-
--label_cursor: pointer;
|
|
38
|
-
}
|
|
39
|
-
.cursor {
|
|
40
|
-
--label_cursor: default;
|
|
41
|
-
}
|
|
42
|
-
.title {
|
|
43
|
-
display: block;
|
|
44
|
-
}
|
|
45
|
-
.subtitle {
|
|
46
|
-
display: inline-block;
|
|
47
|
-
}
|
|
48
|
-
.font_default {
|
|
49
|
-
--label_font_family: var(--zd_regular);
|
|
50
|
-
}
|
|
51
|
-
.font_primary {
|
|
52
|
-
--label_font_family: var(--zd_semibold);
|
|
53
|
-
composes: ftsmooth from '../common/common.module.css';
|
|
54
|
-
}
|
|
55
|
-
.dotted {
|
|
56
|
-
composes: dotted from '../common/common.module.css';
|
|
57
|
-
}
|
|
1
|
+
.varClass {
|
|
2
|
+
/* label default variables */
|
|
3
|
+
--label_font_size: var(--zd_font_size14);
|
|
4
|
+
--label_text_color: var(--zdt_label_default_text);
|
|
5
|
+
--label_font_family: var(--zd_regular);
|
|
6
|
+
--label_cursor: default;
|
|
7
|
+
--label_line_height: 1.286;
|
|
8
|
+
}
|
|
9
|
+
/* css:lineheight-validation:ignore */
|
|
10
|
+
.label {
|
|
11
|
+
composes: varClass;
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
line-height: var(--label_line_height);
|
|
14
|
+
font-size: var(--label_font_size);
|
|
15
|
+
color: var(--label_text_color);
|
|
16
|
+
font-family: var(--label_font_family);
|
|
17
|
+
cursor: var(--label_cursor);
|
|
18
|
+
}
|
|
19
|
+
.xsmall {
|
|
20
|
+
--label_font_size: var(--zd_font_size12);
|
|
21
|
+
--label_line_height:1.5;
|
|
22
|
+
}
|
|
23
|
+
.small {
|
|
24
|
+
--label_font_size: var(--zd_font_size13);
|
|
25
|
+
--label_line_height:1.385;
|
|
26
|
+
}
|
|
27
|
+
.medium {
|
|
28
|
+
--label_font_size: var(--zd_font_size14);
|
|
29
|
+
--label_line_height:1.286;
|
|
30
|
+
}
|
|
31
|
+
.large {
|
|
32
|
+
--label_font_size: var(--zd_font_size26);
|
|
33
|
+
--label_line_height:0.6923;
|
|
34
|
+
composes: semibold from '../common/common.module.css';
|
|
35
|
+
}
|
|
36
|
+
.pointer {
|
|
37
|
+
--label_cursor: pointer;
|
|
38
|
+
}
|
|
39
|
+
.cursor {
|
|
40
|
+
--label_cursor: default;
|
|
41
|
+
}
|
|
42
|
+
.title {
|
|
43
|
+
display: block;
|
|
44
|
+
}
|
|
45
|
+
.subtitle {
|
|
46
|
+
display: inline-block;
|
|
47
|
+
}
|
|
48
|
+
.font_default {
|
|
49
|
+
--label_font_family: var(--zd_regular);
|
|
50
|
+
}
|
|
51
|
+
.font_primary {
|
|
52
|
+
--label_font_family: var(--zd_semibold);
|
|
53
|
+
composes: ftsmooth from '../common/common.module.css';
|
|
54
|
+
}
|
|
55
|
+
.dotted {
|
|
56
|
+
composes: dotted from '../common/common.module.css';
|
|
57
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.popup {
|
|
2
|
-
position: relative;
|
|
3
|
-
background-color: var(--zdt_popover_default_bg);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.target {
|
|
7
|
-
composes: offSelection from '../common/common.module.css';
|
|
8
|
-
cursor: pointer;
|
|
1
|
+
.popup {
|
|
2
|
+
position: relative;
|
|
3
|
+
background-color: var(--zdt_popover_default_bg);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.target {
|
|
7
|
+
composes: offSelection from '../common/common.module.css';
|
|
8
|
+
cursor: pointer;
|
|
9
9
|
}
|