@koobiq/components 17.0.0-beta.1 → 17.0.0-rc.1

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 (162) hide show
  1. package/autocomplete/autocomplete-trigger.directive.d.ts +7 -1
  2. package/button-toggle/_button-toggle-theme.scss +4 -0
  3. package/checkbox/checkbox.scss +0 -1
  4. package/code-block/_code-block-theme.scss +15 -9
  5. package/code-block/actionbar.component.scss +1 -1
  6. package/code-block/code-block.component.d.ts +3 -0
  7. package/code-block/code-block.scss +14 -4
  8. package/core/datetime/date-adapter.d.ts +1 -1
  9. package/core/datetime/date-formats.d.ts +1 -1
  10. package/core/formatters/date/formatter.d.ts +2 -2
  11. package/core/formatters/date/formatter.pipe.d.ts +1 -1
  12. package/core/locales/en-US.d.ts +25 -22
  13. package/core/locales/es-LA.d.ts +24 -27
  14. package/core/locales/fa-IR.d.ts +24 -28
  15. package/core/locales/formatters.d.ts +121 -0
  16. package/core/locales/index.d.ts +7 -0
  17. package/core/locales/locale-service.d.ts +146 -32
  18. package/core/locales/pt-BR.d.ts +24 -27
  19. package/core/locales/ru-RU.d.ts +25 -23
  20. package/core/locales/zh-CN.d.ts +25 -27
  21. package/core/styles/_koobiq-theme.scss +3 -1
  22. package/core/styles/_variables.scss +0 -9
  23. package/core/styles/common/_overlay.scss +4 -0
  24. package/core/styles/theming/_components-theming.scss +59 -21
  25. package/core/styles/theming/{_scrollbars-theme.scss → _scrollbar-theme.scss} +19 -3
  26. package/core/styles/typography/_typography.scss +3 -1
  27. package/core/utils/data-size/data-size.pipe.d.ts +1 -1
  28. package/ellipsis-center/ellipsis-center.directive.d.ts +3 -3
  29. package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +14 -2
  30. package/esm2022/code-block/actionbar.component.mjs +2 -2
  31. package/esm2022/code-block/code-block.component.mjs +21 -5
  32. package/esm2022/core/datetime/date-adapter.mjs +2 -2
  33. package/esm2022/core/datetime/date-formats.mjs +1 -1
  34. package/esm2022/core/formatters/date/formatter.mjs +4 -4
  35. package/esm2022/core/formatters/date/formatter.pipe.mjs +1 -1
  36. package/esm2022/core/locales/en-US.mjs +25 -22
  37. package/esm2022/core/locales/es-LA.mjs +24 -29
  38. package/esm2022/core/locales/fa-IR.mjs +24 -28
  39. package/esm2022/core/locales/formatters.mjs +126 -0
  40. package/esm2022/core/locales/index.mjs +8 -1
  41. package/esm2022/core/locales/locale-service.mjs +9 -8
  42. package/esm2022/core/locales/pt-BR.mjs +24 -27
  43. package/esm2022/core/locales/ru-RU.mjs +25 -25
  44. package/esm2022/core/locales/zh-CN.mjs +25 -27
  45. package/esm2022/core/utils/data-size/data-size.pipe.mjs +3 -3
  46. package/esm2022/core/version.mjs +2 -2
  47. package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +13 -13
  48. package/esm2022/file-upload/file-upload.mjs +15 -1
  49. package/esm2022/file-upload/file-upload.module.mjs +8 -4
  50. package/esm2022/file-upload/multiple-file-upload.component.mjs +74 -67
  51. package/esm2022/file-upload/single-file-upload.component.mjs +70 -62
  52. package/esm2022/modal/modal.component.mjs +3 -6
  53. package/esm2022/modal/modal.type.mjs +1 -1
  54. package/esm2022/navbar/navbar-item.component.mjs +24 -68
  55. package/esm2022/navbar/navbar.component.mjs +4 -4
  56. package/esm2022/navbar/navbar.module.mjs +2 -6
  57. package/esm2022/navbar/vertical-navbar.component.mjs +3 -8
  58. package/esm2022/popover/popover-confirm.component.mjs +3 -3
  59. package/esm2022/popover/popover.component.mjs +3 -3
  60. package/esm2022/scrollbar/index.mjs +2 -0
  61. package/esm2022/scrollbar/koobiq-components-scrollbar.mjs +5 -0
  62. package/esm2022/scrollbar/public-api.mjs +5 -0
  63. package/esm2022/scrollbar/scrollbar.component.mjs +130 -0
  64. package/esm2022/scrollbar/scrollbar.directive.mjs +97 -0
  65. package/esm2022/scrollbar/scrollbar.module.mjs +20 -0
  66. package/esm2022/scrollbar/scrollbar.types.mjs +13 -0
  67. package/esm2022/select/select.component.mjs +26 -17
  68. package/esm2022/sidepanel/sidepanel-animations.mjs +5 -5
  69. package/esm2022/sidepanel/sidepanel-container.component.mjs +6 -6
  70. package/esm2022/sidepanel/sidepanel-directives.mjs +13 -13
  71. package/esm2022/tabs/tab-body.component.mjs +3 -3
  72. package/esm2022/tags/tag-input.mjs +28 -8
  73. package/esm2022/timezone/timezone-option.component.mjs +7 -6
  74. package/esm2022/timezone/timezone-select.component.mjs +3 -3
  75. package/esm2022/timezone/timezone.utils.mjs +9 -4
  76. package/esm2022/timezone/utc-offset.pipe.mjs +3 -3
  77. package/esm2022/toast/toast-animations.mjs +3 -3
  78. package/esm2022/toast/toast-container.component.mjs +2 -2
  79. package/esm2022/toast/toast.component.mjs +4 -4
  80. package/esm2022/toast/toast.service.mjs +13 -5
  81. package/esm2022/tooltip/tooltip.component.mjs +3 -3
  82. package/esm2022/tree-select/tree-select.component.mjs +7 -5
  83. package/fesm2022/koobiq-components-autocomplete.mjs +13 -1
  84. package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
  85. package/fesm2022/koobiq-components-code-block.mjs +22 -6
  86. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  87. package/fesm2022/koobiq-components-core.mjs +277 -162
  88. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  89. package/fesm2022/koobiq-components-ellipsis-center.mjs +12 -12
  90. package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
  91. package/fesm2022/koobiq-components-file-upload.mjs +153 -121
  92. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  93. package/fesm2022/koobiq-components-modal.mjs +2 -5
  94. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  95. package/fesm2022/koobiq-components-navbar.mjs +29 -91
  96. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  97. package/fesm2022/koobiq-components-popover.mjs +4 -4
  98. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  99. package/fesm2022/koobiq-components-scrollbar.mjs +256 -0
  100. package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -0
  101. package/fesm2022/koobiq-components-select.mjs +22 -13
  102. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  103. package/fesm2022/koobiq-components-sidepanel.mjs +20 -20
  104. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  105. package/fesm2022/koobiq-components-tabs.mjs +2 -2
  106. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  107. package/fesm2022/koobiq-components-tags.mjs +26 -7
  108. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  109. package/fesm2022/koobiq-components-timezone.mjs +20 -15
  110. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  111. package/fesm2022/koobiq-components-toast.mjs +17 -9
  112. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  113. package/fesm2022/koobiq-components-tooltip.mjs +2 -2
  114. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  115. package/fesm2022/koobiq-components-tree-select.mjs +6 -4
  116. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  117. package/file-upload/file-upload.d.ts +1 -1
  118. package/file-upload/file-upload.module.d.ts +2 -1
  119. package/file-upload/multiple-file-upload.component.d.ts +20 -14
  120. package/file-upload/single-file-upload.component.d.ts +21 -18
  121. package/loader-overlay/loader-overlay.scss +2 -2
  122. package/modal/modal.component.d.ts +1 -2
  123. package/modal/modal.scss +0 -5
  124. package/modal/modal.type.d.ts +0 -1
  125. package/navbar/_navbar-item_horizontal.scss +97 -0
  126. package/navbar/_navbar-item_vertical.scss +98 -0
  127. package/navbar/_navbar-theme.scss +57 -60
  128. package/navbar/navbar-brand.scss +76 -16
  129. package/navbar/navbar-divider.scss +13 -4
  130. package/navbar/navbar-item.component.d.ts +1 -15
  131. package/navbar/navbar-item.scss +39 -90
  132. package/navbar/navbar.module.d.ts +1 -1
  133. package/navbar/navbar.scss +13 -1
  134. package/navbar/vertical-navbar.scss +7 -14
  135. package/package.json +16 -8
  136. package/popover/popover.scss +4 -9
  137. package/prebuilt-themes/dark-theme.css +1 -1
  138. package/prebuilt-themes/light-theme.css +1 -1
  139. package/scrollbar/_scrollbar-component-theme.scss +52 -0
  140. package/scrollbar/index.d.ts +1 -0
  141. package/scrollbar/public-api.d.ts +4 -0
  142. package/scrollbar/scrollbar.component.d.ts +33 -0
  143. package/scrollbar/scrollbar.component.scss +559 -0
  144. package/scrollbar/scrollbar.directive.d.ts +48 -0
  145. package/scrollbar/scrollbar.module.d.ts +8 -0
  146. package/scrollbar/scrollbar.types.d.ts +33 -0
  147. package/select/select.component.d.ts +4 -3
  148. package/sidepanel/sidepanel-animations.d.ts +2 -2
  149. package/sidepanel/sidepanel-directives.d.ts +5 -5
  150. package/tags/tag-input.d.ts +9 -4
  151. package/timezone/_timezone-option-theme.scss +8 -0
  152. package/timezone/timezone-option.component.scss +4 -0
  153. package/timezone/timezone-select.component.scss +13 -0
  154. package/timezone/timezone.utils.d.ts +4 -0
  155. package/timezone/utc-offset.pipe.d.ts +3 -1
  156. package/toast/toast-animations.d.ts +1 -1
  157. package/toast/toast-container.component.scss +1 -9
  158. package/toast/toast.component.scss +0 -4
  159. package/toast/toast.service.d.ts +5 -3
  160. package/tooltip/tooltip.scss +0 -3
  161. package/esm2022/navbar/vertical-navbar.animation.mjs +0 -10
  162. package/navbar/vertical-navbar.animation.d.ts +0 -2
@@ -1,19 +1,15 @@
1
1
  @use 'sass:meta';
2
2
  @use 'sass:map';
3
3
 
4
- @use '../core/styles/tokens';
4
+ @use '../core/styles/common/list';
5
5
 
6
+ @use '../core/styles/tokens';
6
7
 
7
- $tokens: meta.module-variables(tokens) !default;
8
+ @use 'navbar-item_vertical';
9
+ @use 'navbar-item_horizontal';
8
10
 
9
- .kbq-navbar-title,
10
- .kbq-navbar-subtitle {
11
- display: inline-block;
12
11
 
13
- text-overflow: ellipsis;
14
- white-space: nowrap;
15
- overflow: hidden;
16
- }
12
+ $tokens: meta.module-variables(tokens) !default;
17
13
 
18
14
  .kbq-navbar-item {
19
15
  box-sizing: border-box;
@@ -23,14 +19,45 @@ $tokens: meta.module-variables(tokens) !default;
23
19
  display: flex;
24
20
  align-items: center;
25
21
 
26
- padding-left: var(--kbq-navbar-item-size-padding, map.get($tokens, navbar-item-size-padding));
27
- padding-right: var(--kbq-navbar-item-size-padding, map.get($tokens, navbar-item-size-padding));
22
+ border-radius: var(
23
+ --kbq-navbar-item-size-content-border-radius,
24
+ map.get($tokens, navbar-item-size-content-border-radius)
25
+ );
26
+
27
+ & .kbq-icon {
28
+ min-width: map.get($tokens, size-l);
29
+ min-height: map.get($tokens, size-l);
30
+ }
28
31
 
29
- .kbq-badge {
32
+ &:after {
30
33
  position: absolute;
34
+ content: '';
35
+
36
+ display: none;
37
+
38
+ border-radius: var(
39
+ --kbq-navbar-item-size-content-border-radius,
40
+ map.get($tokens, navbar-item-size-content-border-radius)
41
+ );
42
+ }
43
+
44
+ &.kbq-horizontal {
45
+ @extend navbar-item_horizontal !optional;
46
+ }
47
+
48
+ &.kbq-vertical {
49
+ @extend navbar-item_vertical !optional;
31
50
  }
32
51
  }
33
52
 
53
+ .kbq-navbar-title {
54
+ display: inline-block;
55
+
56
+ text-overflow: ellipsis;
57
+ white-space: nowrap;
58
+ overflow: hidden;
59
+ }
60
+
34
61
  .kbq-navbar-item__title {
35
62
  display: flex;
36
63
 
@@ -55,75 +82,6 @@ $tokens: meta.module-variables(tokens) !default;
55
82
  }
56
83
  }
57
84
 
58
- .kbq-navbar-item.kbq-horizontal {
59
- height: var(--kbq-navbar-item-size-height, map.get($tokens, navbar-item-size-height));
60
-
61
- & .kbq-icon {
62
- min-width: 16px;
63
- min-height: 16px;
64
- }
65
-
66
- & .kbq-navbar-item__title + .kbq-icon {
67
- margin-left: var(--kbq-navbar-size-right-icon-margin, map.get($tokens, navbar-size-right-icon-margin))
68
- }
69
-
70
- & .kbq-icon + .kbq-navbar-item__container {
71
- margin-left: var(--kbq-navbar-size-icon-margin, map.get($tokens, navbar-size-icon-margin))
72
- }
73
-
74
- &.kbq-navbar-item_collapsed .kbq-navbar-item__container {
75
- display: none;
76
- }
77
-
78
- .kbq-badge {
79
- top: 8px;
80
- right: 8px;
81
- }
82
- }
83
-
84
- .kbq-navbar-item.kbq-vertical {
85
- height: var(--kbq-navbar-item-size-height-vertical, map.get($tokens, navbar-item-size-height-vertical));
86
-
87
- /* stylelint-disable no-descending-specificity */
88
- & > .kbq-icon {
89
- display: flex;
90
- justify-content: center;
91
- align-items: center;
92
-
93
- min-width: 24px;
94
- min-height: 24px;
95
- }
96
-
97
- & .kbq-navbar-item__title,
98
- & .kbq-icon + .kbq-navbar-item__title,
99
- & .kbq-navbar-item__title + .kbq-icon {
100
- padding-left: var(--kbq-vertical-navbar-size-icon-margin, map.get($tokens, vertical-navbar-size-icon-margin));
101
- }
102
-
103
- &.kbq-navbar-item_has-nested {
104
- padding-left: 12px;
105
- padding-right: 12px;
106
- }
107
-
108
- &.kbq-expanded {
109
- & .kbq-badge {
110
- top: 16px;
111
- right: 16px;
112
- }
113
- }
114
-
115
- &.kbq-collapsed {
116
- & .kbq-badge {
117
- top: 4px;
118
- right: 4px;
119
- }
120
-
121
- & .kbq-navbar-item__title {
122
- display: none;
123
- }
124
- }
125
- }
126
-
127
85
  .kbq-navbar-item.kbq-navbar-item_has-nested .kbq-button {
128
86
  flex: 1;
129
87
 
@@ -148,17 +106,8 @@ a.kbq-navbar-title {
148
106
  .kbq-navbar-item,
149
107
  .kbq-navbar-brand,
150
108
  .kbq-navbar-toggle {
151
- & .kbq-navbar-item__overlay {
152
- position: absolute;
153
- top: 0; right: 0; bottom: 0; left: 0;
154
- }
155
-
156
109
  & [kbq-button] {
157
110
  z-index: 1;
158
111
  }
159
112
  }
160
113
 
161
- .kbq-navbar-item.kbq-navbar-item_form-field .kbq-navbar-item__overlay {
162
- display: none;
163
- }
164
-
@@ -9,6 +9,6 @@ import * as i7 from "@koobiq/components/icon";
9
9
  import * as i8 from "@koobiq/components/tooltip";
10
10
  export declare class KbqNavbarModule {
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<KbqNavbarModule, [typeof i1.KbqNavbar, typeof i1.KbqNavbarContainer, typeof i2.KbqNavbarTitle, typeof i2.KbqNavbarItem, typeof i2.KbqNavbarBrand, typeof i2.KbqNavbarLogo, typeof i2.KbqNavbarToggle, typeof i3.KbqVerticalNavbar, typeof i2.KbqNavbarDivider, typeof i2.KbqNavbarFocusableItem, typeof i2.KbqNavbarRectangleElement, typeof i2.KbqNavbarSubTitle, typeof i2.KbqNavbarBento], [typeof i4.CommonModule, typeof i5.A11yModule, typeof i6.PlatformModule, typeof i7.KbqIconModule, typeof i8.KbqToolTipModule], [typeof i1.KbqNavbar, typeof i1.KbqNavbarContainer, typeof i2.KbqNavbarTitle, typeof i2.KbqNavbarItem, typeof i2.KbqNavbarBrand, typeof i2.KbqNavbarLogo, typeof i2.KbqNavbarToggle, typeof i3.KbqVerticalNavbar, typeof i2.KbqNavbarDivider, typeof i2.KbqNavbarFocusableItem, typeof i2.KbqNavbarRectangleElement, typeof i2.KbqNavbarSubTitle, typeof i2.KbqNavbarBento]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KbqNavbarModule, [typeof i1.KbqNavbar, typeof i1.KbqNavbarContainer, typeof i2.KbqNavbarTitle, typeof i2.KbqNavbarItem, typeof i2.KbqNavbarBrand, typeof i2.KbqNavbarLogo, typeof i2.KbqNavbarToggle, typeof i3.KbqVerticalNavbar, typeof i2.KbqNavbarDivider, typeof i2.KbqNavbarFocusableItem, typeof i2.KbqNavbarRectangleElement, typeof i2.KbqNavbarBento], [typeof i4.CommonModule, typeof i5.A11yModule, typeof i6.PlatformModule, typeof i7.KbqIconModule, typeof i8.KbqToolTipModule], [typeof i1.KbqNavbar, typeof i1.KbqNavbarContainer, typeof i2.KbqNavbarTitle, typeof i2.KbqNavbarItem, typeof i2.KbqNavbarBrand, typeof i2.KbqNavbarLogo, typeof i2.KbqNavbarToggle, typeof i3.KbqVerticalNavbar, typeof i2.KbqNavbarDivider, typeof i2.KbqNavbarFocusableItem, typeof i2.KbqNavbarRectangleElement, typeof i2.KbqNavbarBento]>;
13
13
  static ɵinj: i0.ɵɵInjectorDeclaration<KbqNavbarModule>;
14
14
  }
@@ -1,5 +1,13 @@
1
- .kbq-navbar {
1
+ @use 'sass:meta';
2
+ @use 'sass:map';
3
+
4
+ @use '../core/styles/tokens';
5
+
6
+
7
+ $tokens: meta.module-variables(tokens) !default;
2
8
 
9
+
10
+ .kbq-navbar {
3
11
  display: flex;
4
12
  flex-direction: row;
5
13
  justify-content: space-between;
@@ -18,3 +26,7 @@
18
26
 
19
27
  position: relative;
20
28
  }
29
+
30
+ .kbq-navbar .kbq-navbar-container + .kbq-navbar-container {
31
+ margin-left: map.get($tokens, size-xxl);
32
+ }
@@ -9,10 +9,7 @@ $tokens: meta.module-variables(tokens) !default;
9
9
  .kbq-vertical-navbar {
10
10
  position: relative;
11
11
 
12
- min-width: var(
13
- --kbq-vertical-navbar-size-states-collapsed-width,
14
- map.get($tokens, vertical-navbar-size-states-collapsed-width)
15
- );
12
+ min-width: 48px;
16
13
  height: 100%;
17
14
 
18
15
  & .kbq-navbar-container {
@@ -20,6 +17,10 @@ $tokens: meta.module-variables(tokens) !default;
20
17
  align-items: unset;
21
18
  }
22
19
 
20
+ & .kbq-navbar-container + .kbq-navbar-container {
21
+ padding-top: map.get($tokens, size-xxl);
22
+ }
23
+
23
24
  & .kbq-vertical-navbar__container {
24
25
  display: flex;
25
26
  flex-direction: column;
@@ -27,20 +28,12 @@ $tokens: meta.module-variables(tokens) !default;
27
28
  position: absolute;
28
29
  z-index: 998;
29
30
 
30
- height: 100%;
31
-
32
31
  &.kbq-collapsed {
33
- width: var(
34
- --kbq-vertical-navbar-size-states-collapsed-width,
35
- map.get($tokens, vertical-navbar-size-states-collapsed-width)
36
- );
32
+ width: map.get($tokens, size-5xl);
37
33
  }
38
34
 
39
35
  &.kbq-expanded {
40
- width: var(
41
- --kbq-vertical-navbar-size-states-expanded-width,
42
- map.get($tokens, vertical-navbar-size-states-expanded-width)
43
- );
36
+ width: 240px;
44
37
  }
45
38
  }
46
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koobiq/components",
3
- "version": "17.0.0-beta.1",
3
+ "version": "17.0.0-rc.1",
4
4
  "description": "koobiq",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,14 +19,16 @@
19
19
  "peerDependencies": {
20
20
  "@angular/cdk": "^17.2.0",
21
21
  "@angular/forms": "^17.2.0",
22
- "@koobiq/cdk": "^17.0.0-beta.1",
23
- "@koobiq/angular-moment-adapter": "^17.0.0-beta.1",
24
- "@koobiq/angular-luxon-adapter": "^17.0.0-beta.1",
25
- "@mosaic-design/date-formatter": "^2.1.1",
22
+ "@koobiq/cdk": "^17.0.0-rc.1",
23
+ "@koobiq/angular-moment-adapter": "^17.0.0-rc.1",
24
+ "@koobiq/angular-luxon-adapter": "^17.0.0-rc.1",
25
+ "@koobiq/date-formatter": "^3.0.2",
26
26
  "@koobiq/icons": "^7.1.0",
27
- "@koobiq/tokens-builder": "^3.0.0-beta.23",
28
- "@koobiq/design-tokens": "^3.0.0-beta.23",
29
- "marked": "^4.0.18"
27
+ "@koobiq/tokens-builder": "3.0.0-beta.31",
28
+ "@koobiq/design-tokens": "3.0.0-beta.31",
29
+ "marked": "^4.0.18",
30
+ "overlayscrollbars": "^2.2.0",
31
+ "ngx-highlightjs": "^10.0.0"
30
32
  },
31
33
  "dependencies": {
32
34
  "tslib": "^2.6.2"
@@ -230,6 +232,12 @@
230
232
  "esm": "./esm2022/risk-level/koobiq-components-risk-level.mjs",
231
233
  "default": "./fesm2022/koobiq-components-risk-level.mjs"
232
234
  },
235
+ "./scrollbar": {
236
+ "types": "./scrollbar/index.d.ts",
237
+ "esm2022": "./esm2022/scrollbar/koobiq-components-scrollbar.mjs",
238
+ "esm": "./esm2022/scrollbar/koobiq-components-scrollbar.mjs",
239
+ "default": "./fesm2022/koobiq-components-scrollbar.mjs"
240
+ },
233
241
  "./select": {
234
242
  "types": "./select/index.d.ts",
235
243
  "esm2022": "./esm2022/select/koobiq-components-select.mjs",
@@ -1,7 +1,6 @@
1
1
  @use 'sass:meta';
2
2
  @use 'sass:map';
3
3
 
4
- @use '../core/styles/variables';
5
4
  @use '../core/pop-up/pop-up';
6
5
  @use '../core/styles/common';
7
6
 
@@ -24,11 +23,11 @@ $trigger-margin: 9px;
24
23
 
25
24
  box-sizing: border-box;
26
25
 
27
- z-index: variables.$z-index-popover;
28
-
29
26
  list-style: none;
30
27
  white-space: pre-line;
31
28
 
29
+ z-index: 1;
30
+
32
31
  &.kbq-popover_small {
33
32
  max-width: var(--kbq-popover-size-container-width-small, map.get($tokens, popover-size-container-width-small));
34
33
  }
@@ -69,17 +68,13 @@ $trigger-margin: 9px;
69
68
 
70
69
  &.kbq-popover__container_with-header {
71
70
  .kbq-popover__content {
72
- padding-top: var(
73
- --kbq-popover-size-content-padding-vertical, map.get($tokens, popover-size-content-padding-vertical)
74
- );
71
+ padding-top: map.get($tokens, size-s);
75
72
  }
76
73
  }
77
74
 
78
75
  &.kbq-popover__container_with-footer {
79
76
  .kbq-popover__content {
80
- padding-bottom: var(
81
- --kbq-popover-size-content-padding-vertical, map.get($tokens, popover-size-content-padding-vertical)
82
- );
77
+ padding-bottom: map.get($tokens, size-s);
83
78
  }
84
79
  }
85
80
  }