@infonomic/uikit 3.6.0 → 3.8.0

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 (102) hide show
  1. package/dist/components/avatar/avatar_module.css +1 -1
  2. package/dist/components/badge/badge_module.css +1 -1
  3. package/dist/components/button/button-group_module.css +1 -1
  4. package/dist/components/button/button_module.css +1 -1
  5. package/dist/components/button/copy-button_module.css +1 -1
  6. package/dist/components/card/card_module.css +1 -1
  7. package/dist/components/container/container_module.css +9 -9
  8. package/dist/components/dropdown/dropdown.js +1 -1
  9. package/dist/components/dropdown/dropdown_module.css +1 -1
  10. package/dist/components/forms/calendar_module.css +2 -2
  11. package/dist/components/forms/checkbox_module.css +1 -1
  12. package/dist/components/forms/error-text_module.css +1 -1
  13. package/dist/components/forms/help-text_module.css +1 -1
  14. package/dist/components/forms/input-adornment_module.css +1 -1
  15. package/dist/components/forms/input_module.css +1 -1
  16. package/dist/components/forms/label_module.css +1 -1
  17. package/dist/components/forms/radio-group_module.css +1 -1
  18. package/dist/components/forms/select_module.css +1 -1
  19. package/dist/components/forms/text-area_module.css +1 -1
  20. package/dist/components/notifications/alert_module.css +1 -1
  21. package/dist/components/notifications/toast_module.css +2 -2
  22. package/dist/components/pager/pagination_module.css +2 -2
  23. package/dist/components/scroll-area/scroll-area_module.css +1 -1
  24. package/dist/components/section/section_module.css +1 -1
  25. package/dist/components/shimmer/shimmer_module.css +1 -1
  26. package/dist/components/table/table_module.css +1 -1
  27. package/dist/components/tabs/tabs_module.css +1 -1
  28. package/dist/components/tooltip/tooltip_module.css +1 -1
  29. package/dist/icons/icon-element.d.ts.map +1 -1
  30. package/dist/icons/icon-element.js +2 -1
  31. package/dist/icons/icons.module.js +2 -0
  32. package/dist/icons/icons_module.css +7 -0
  33. package/dist/styles/styles.css +1 -1
  34. package/dist/styles/typography.css +1 -1
  35. package/dist/widgets/drawer/drawer_module.css +1 -1
  36. package/dist/widgets/modal/modal_module.css +1 -1
  37. package/dist/widgets/timeline/timeline_module.css +1 -1
  38. package/package.json +1 -1
  39. package/src/components/avatar/avatar.module.css +1 -1
  40. package/src/components/badge/badge.module.css +1 -1
  41. package/src/components/button/button-group.module.css +1 -1
  42. package/src/components/button/button.module.css +1 -1
  43. package/src/components/button/copy-button.module.css +1 -1
  44. package/src/components/card/card.module.css +1 -1
  45. package/src/components/container/container.module.css +10 -9
  46. package/src/components/dropdown/dropdown.module.css +1 -1
  47. package/src/components/dropdown/dropdown.stories.tsx +1 -1
  48. package/src/components/dropdown/dropdown.tsx +1 -1
  49. package/src/components/forms/calendar.module.css +2 -2
  50. package/src/components/forms/checkbox.module.css +1 -1
  51. package/src/components/forms/error-text.module.css +1 -1
  52. package/src/components/forms/help-text.module.css +1 -1
  53. package/src/components/forms/input-adornment.module.css +1 -1
  54. package/src/components/forms/input.module.css +1 -1
  55. package/src/components/forms/label.module.css +1 -1
  56. package/src/components/forms/radio-group.module.css +1 -1
  57. package/src/components/forms/select.module.css +1 -1
  58. package/src/components/forms/text-area.module.css +1 -1
  59. package/src/components/notifications/alert.module.css +1 -1
  60. package/src/components/notifications/toast.module.css +2 -2
  61. package/src/components/pager/pagination.module.css +2 -2
  62. package/src/components/scroll-area/scroll-area.module.css +1 -1
  63. package/src/components/section/section.module.css +1 -1
  64. package/src/components/shimmer/shimmer.module.css +1 -1
  65. package/src/components/table/table.module.css +1 -1
  66. package/src/components/tabs/tabs.module.css +1 -1
  67. package/src/components/tooltip/tooltip.module.css +1 -1
  68. package/src/icons/icon-element.tsx +3 -1
  69. package/src/icons/icons.module.css +7 -0
  70. package/src/styles/base/base.css +11 -3
  71. package/src/styles/base/borders.css +30 -0
  72. package/src/styles/base/breakpoints.css +15 -0
  73. package/src/styles/base/colors.stories.tsx +1 -1
  74. package/src/styles/base/opacity.css +12 -0
  75. package/src/styles/base/shadows.css +13 -0
  76. package/src/styles/base/spacing.css +21 -0
  77. package/src/styles/base/transitions.css +7 -0
  78. package/src/styles/base/typography.css +41 -19
  79. package/src/styles/base/z-index.css +12 -0
  80. package/src/styles/components/components.css +1 -8
  81. package/src/styles/components/hamburger.css +1 -1
  82. package/src/styles/{theme/tokens.css → functional/colors.css} +4 -2
  83. package/src/styles/functional/functional.css +2 -0
  84. package/src/styles/functional/grid-flex.css +52 -0
  85. package/src/styles/styles.css +2 -1
  86. package/src/styles/theme/theme.css +1 -1
  87. package/src/styles/theme/theme.stories.tsx +2 -2
  88. package/src/styles/theme/typography.css +26 -0
  89. package/src/styles/typography/prose.css +2 -2
  90. package/src/styles/utils/utility-classes.css +12 -12
  91. package/src/widgets/drawer/drawer.module.css +1 -1
  92. package/src/widgets/modal/modal.module.css +1 -1
  93. package/src/widgets/timeline/timeline.module.css +1 -1
  94. package/src/styles/base/vars.css +0 -188
  95. package/src/styles/components/card.css +0 -20
  96. package/src/styles/components/checkbox.css +0 -55
  97. package/src/styles/components/directional-button.css +0 -92
  98. package/src/styles/components/dropdown.css +0 -19
  99. package/src/styles/components/icon-element.css +0 -10
  100. package/src/styles/components/list-checkbox.css +0 -60
  101. package/src/styles/components/popover.css +0 -15
  102. package/src/styles/components/toast.css +0 -18
@@ -1,60 +0,0 @@
1
- ul.check {
2
- padding-left: 0;
3
- }
4
-
5
- .component--list-item-checkbox {
6
- position: relative;
7
- margin-left: 0;
8
- margin-right: 8px;
9
- padding-left: 28px;
10
- padding-right: 24px;
11
- list-style-type: none;
12
- outline: none;
13
- }
14
-
15
- @media screen and (min-width: 768px) {
16
- ul.check {
17
- padding-left: 1rem;
18
- }
19
- }
20
-
21
- .component--list-item-checkbox::before {
22
- content: "";
23
- width: 16px;
24
- height: 16px;
25
- top: 8px;
26
- left: 0;
27
- cursor: pointer;
28
- display: block;
29
- background-size: cover;
30
- position: absolute;
31
- border: 1px solid rgb(125, 125, 125);
32
- border-radius: 2px;
33
- background-repeat: no-repeat;
34
- }
35
-
36
- .component--list-item-checkbox-checked {
37
- text-decoration: line-through;
38
- }
39
-
40
- .component--list-item-checkbox-checked::before {
41
- border: 1px solid var(--secondary-300);
42
- background-color: var(--secondary-400);
43
- background-repeat: no-repeat;
44
- }
45
-
46
- .component--list-item-checkbox-checked::after {
47
- content: "";
48
- cursor: pointer;
49
- border-color: #fff;
50
- border-style: solid;
51
- position: absolute;
52
- display: block;
53
- top: 11px;
54
- width: 4px;
55
- left: 6px;
56
- right: 7px;
57
- height: 8px;
58
- transform: rotate(45deg);
59
- border-width: 0 2px 2px 0;
60
- }
@@ -1,15 +0,0 @@
1
- .popover-content[data-state="open"][data-side="top"] {
2
- animation: slideDownAndFade 100ms ease-in;
3
- }
4
-
5
- .popover-content[data-state="open"][data-side="right"] {
6
- animation: slideLeftAndFade 100ms ease-in;
7
- }
8
-
9
- .popover-content[data-state="open"][data-side="bottom"] {
10
- animation: slideUpAndFade 100ms ease-in;
11
- }
12
-
13
- .popover-content[data-state="open"][data-side="left"] {
14
- animation: slideRightAndFade 100ms ease-in;
15
- }
@@ -1,18 +0,0 @@
1
- /* styles.css */
2
-
3
- .toast-viewport {
4
- --viewport-padding: 25px;
5
- position: fixed;
6
- bottom: 0;
7
- right: 0;
8
- display: flex;
9
- flex-direction: column;
10
- padding: var(--viewport-padding);
11
- gap: 10px;
12
- width: 100vw;
13
- max-width: 100vw;
14
- margin: 0;
15
- list-style: none;
16
- z-index: 2147483647;
17
- outline: none;
18
- }