@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.
Files changed (44) hide show
  1. package/README.md +0 -4
  2. package/es/AvatarTeam/AvatarTeam.module.css +189 -189
  3. package/es/Buttongroup/Buttongroup.module.css +104 -104
  4. package/es/DropBox/css/DropBox.module.css +58 -58
  5. package/es/DropDown/DropDownHeading.module.css +53 -53
  6. package/es/DropDown/DropDownItem.module.css +94 -94
  7. package/es/Label/Label.module.css +57 -57
  8. package/es/PopOver/PopOver.module.css +8 -8
  9. package/es/Popup/Popup.js +1045 -21
  10. package/es/Popup/PositionMapping.js +72 -0
  11. package/es/Popup/Registry.js +36 -0
  12. package/es/Popup/intersectionObserver.js +49 -0
  13. package/es/Popup/viewPort.js +373 -0
  14. package/es/Ribbon/Ribbon.module.css +499 -499
  15. package/es/Switch/Switch.module.css +127 -127
  16. package/es/Tag/Tag.module.css +253 -253
  17. package/es/TextBox/TextBox.module.css +196 -196
  18. package/es/TextBoxIcon/TextBoxIcon.module.css +79 -79
  19. package/es/Tooltip/Tooltip.js +2 -2
  20. package/es/common/customscroll.module.css +141 -141
  21. package/es/utils/Common.js +1 -1
  22. package/es/v1/Popup/Popup.js +1 -1
  23. package/lib/AvatarTeam/AvatarTeam.module.css +189 -189
  24. package/lib/Buttongroup/Buttongroup.module.css +104 -104
  25. package/lib/DropBox/css/DropBox.module.css +58 -58
  26. package/lib/DropDown/DropDownHeading.module.css +53 -53
  27. package/lib/DropDown/DropDownItem.module.css +94 -94
  28. package/lib/Label/Label.module.css +57 -57
  29. package/lib/PopOver/PopOver.module.css +8 -8
  30. package/lib/Popup/Popup.js +1152 -25
  31. package/lib/Popup/PositionMapping.js +81 -0
  32. package/lib/Popup/Registry.js +46 -0
  33. package/lib/Popup/intersectionObserver.js +72 -0
  34. package/lib/Popup/viewPort.js +367 -0
  35. package/lib/Ribbon/Ribbon.module.css +499 -499
  36. package/lib/Switch/Switch.module.css +127 -127
  37. package/lib/Tag/Tag.module.css +253 -253
  38. package/lib/TextBox/TextBox.module.css +196 -196
  39. package/lib/TextBoxIcon/TextBoxIcon.module.css +79 -79
  40. package/lib/Tooltip/Tooltip.js +2 -2
  41. package/lib/common/customscroll.module.css +141 -141
  42. package/lib/utils/Common.js +1 -1
  43. package/lib/v1/Popup/Popup.js +1 -1
  44. 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
  }