gd-design-library 1.0.2 → 1.2.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 (230) hide show
  1. package/README.md +2 -2
  2. package/ai/README.md +210 -16
  3. package/ai/schemas/components/Accordion.d.ts +84 -0
  4. package/ai/schemas/components/Button.d.ts +12 -0
  5. package/ai/schemas/components/ChatContainer.d.ts +0 -8
  6. package/ai/schemas/components/Column.d.ts +5 -5
  7. package/ai/schemas/components/InputFile.d.ts +17 -5
  8. package/ai/schemas/components/Menu.d.ts +37 -0
  9. package/ai/schemas/components/Row.d.ts +6 -6
  10. package/ai/schemas/components/Scroll.d.ts +7 -0
  11. package/ai/schemas/components/Typography.d.ts +0 -21
  12. package/assets/icons/account_circle.d.ts +1 -3
  13. package/assets/icons/account_circle.js +7 -14
  14. package/assets/icons/arrow-down.d.ts +2 -3
  15. package/assets/icons/arrow-down.js +6 -11
  16. package/assets/icons/arrow-forward.d.ts +1 -3
  17. package/assets/icons/arrow-forward.js +6 -13
  18. package/assets/icons/attachment.d.ts +1 -3
  19. package/assets/icons/attachment.js +7 -14
  20. package/assets/icons/check.d.ts +1 -3
  21. package/assets/icons/check.js +5 -11
  22. package/assets/icons/chevron-left.d.ts +1 -3
  23. package/assets/icons/chevron-left.js +7 -14
  24. package/assets/icons/chevron-right.d.ts +1 -3
  25. package/assets/icons/chevron-right.js +6 -13
  26. package/assets/icons/content-copy.d.ts +1 -3
  27. package/assets/icons/content-copy.js +7 -14
  28. package/assets/icons/delete_outlined.d.ts +1 -3
  29. package/assets/icons/delete_outlined.js +5 -12
  30. package/assets/icons/dot.d.ts +1 -3
  31. package/assets/icons/dot.js +5 -11
  32. package/assets/icons/error_outline.d.ts +1 -4
  33. package/assets/icons/error_outline.js +6 -18
  34. package/assets/icons/eye.d.ts +1 -3
  35. package/assets/icons/eye.js +7 -14
  36. package/assets/icons/file-copy.d.ts +1 -3
  37. package/assets/icons/file-copy.js +7 -13
  38. package/assets/icons/filter.d.ts +1 -3
  39. package/assets/icons/filter.js +6 -13
  40. package/assets/icons/folder.d.ts +1 -3
  41. package/assets/icons/folder.js +6 -13
  42. package/assets/icons/folderOpen.d.ts +1 -3
  43. package/assets/icons/folderOpen.js +7 -14
  44. package/assets/icons/home.d.ts +1 -3
  45. package/assets/icons/home.js +6 -13
  46. package/assets/icons/local_shipping.d.ts +1 -3
  47. package/assets/icons/local_shipping.js +4 -11
  48. package/assets/icons/minus.d.ts +1 -3
  49. package/assets/icons/minus.js +7 -13
  50. package/assets/icons/mobile_menu_button.d.ts +1 -3
  51. package/assets/icons/mobile_menu_button.js +7 -14
  52. package/assets/icons/paymentCard.d.ts +1 -3
  53. package/assets/icons/paymentCard.js +6 -13
  54. package/assets/icons/plus.d.ts +1 -3
  55. package/assets/icons/plus.js +5 -11
  56. package/assets/icons/portrait.d.ts +1 -3
  57. package/assets/icons/portrait.js +5 -12
  58. package/assets/icons/processing.d.ts +1 -3
  59. package/assets/icons/processing.js +6 -13
  60. package/assets/icons/ruler.d.ts +1 -3
  61. package/assets/icons/ruler.js +6 -13
  62. package/assets/icons/search.d.ts +1 -3
  63. package/assets/icons/search.js +6 -13
  64. package/assets/icons/shopping_bag.d.ts +1 -3
  65. package/assets/icons/shopping_bag.js +7 -14
  66. package/assets/icons/slash.d.ts +1 -3
  67. package/assets/icons/slash.js +6 -13
  68. package/assets/icons/star.d.ts +1 -3
  69. package/assets/icons/star.js +6 -12
  70. package/assets/icons/starOutlined.d.ts +1 -3
  71. package/assets/icons/starOutlined.js +5 -11
  72. package/assets/icons/toast_error.d.ts +1 -3
  73. package/assets/icons/toast_error.js +9 -15
  74. package/assets/icons/toast_info.d.ts +1 -3
  75. package/assets/icons/toast_info.js +7 -13
  76. package/assets/icons/toast_warning.d.ts +1 -3
  77. package/assets/icons/toast_warning.js +7 -13
  78. package/assets/icons/upload.d.ts +1 -3
  79. package/assets/icons/upload.js +6 -13
  80. package/assets/icons/volume-up.d.ts +1 -3
  81. package/assets/icons/volume-up.js +6 -13
  82. package/assets/icons/wifiTethering.d.ts +1 -3
  83. package/assets/icons/wifiTethering.js +4 -11
  84. package/components/core/Button/Button.js +30 -27
  85. package/components/core/Button/Button.types.d.ts +2 -2
  86. package/components/core/Button/ButtonStyled.js +40 -39
  87. package/components/core/Dropdown/Dropdown.d.ts +1 -1
  88. package/components/core/Dropdown/Dropdown.js +16 -16
  89. package/components/core/Dropdown/Dropdown.types.d.ts +3 -3
  90. package/components/core/Dropdown/DropdownStyled.js +13 -14
  91. package/components/core/Icon/Icon.js +41 -33
  92. package/components/core/Icon/Icon.types.d.ts +2 -1
  93. package/components/core/Icon/constants.d.ts +37 -109
  94. package/components/core/Input/Input.d.ts +1 -1
  95. package/components/core/InputFile/InputFile.d.ts +0 -32
  96. package/components/core/InputFile/InputFile.js +47 -33
  97. package/components/core/InputFile/InputFileStyled.js +24 -22
  98. package/components/core/Loader/Loader.js +19 -17
  99. package/components/core/Loader/Loader.types.d.ts +3 -1
  100. package/components/core/Loader/LoaderStyled.js +34 -30
  101. package/components/core/Menu/Menu.d.ts +2 -2
  102. package/components/core/Menu/Menu.js +113 -93
  103. package/components/core/Menu/Menu.types.d.ts +16 -11
  104. package/components/core/Menu/MenuStyled.d.ts +1 -1
  105. package/components/core/Menu/constants.js +4 -12
  106. package/components/core/Modal/Modal.js +60 -36
  107. package/components/core/Modal/ModalStyled.js +21 -22
  108. package/components/core/Scroll/Scroll.d.ts +6 -0
  109. package/components/core/Scroll/Scroll.js +53 -31
  110. package/components/core/Scroll/Scroll.types.d.ts +5 -0
  111. package/components/core/Scroll/ScrollBar.js +45 -43
  112. package/components/core/Scroll/ScrollStyled.js +46 -42
  113. package/components/core/Scroll/constants.d.ts +2 -0
  114. package/components/core/Scroll/constants.js +6 -4
  115. package/components/core/Select/Select.js +162 -134
  116. package/components/core/Select/Select.types.d.ts +2 -4
  117. package/components/core/Snackbar/Snackbar.js +60 -37
  118. package/components/core/Snackbar/Snackbar.types.d.ts +1 -2
  119. package/components/core/Snackbar/SnackbarManager.js +45 -30
  120. package/components/core/Snackbar/SnackbarStyled.d.ts +5 -5
  121. package/components/core/Snackbar/SnackbarStyled.js +111 -101
  122. package/components/core/Textarea/Textarea.d.ts +4 -0
  123. package/components/core/Tooltip/Tooltip.js +68 -44
  124. package/components/core/Tooltip/TooltipStyled.js +26 -27
  125. package/components/core/Tooltip/utils.js +47 -45
  126. package/components/core/Typography/Typography.js +18 -18
  127. package/components/core/Typography/Typography.types.d.ts +3 -3
  128. package/components/core/Typography/TypographyStyled.js +28 -29
  129. package/components/domainSpecific/Accordion/Accordion.d.ts +1 -1
  130. package/components/domainSpecific/Accordion/Accordion.js +19 -17
  131. package/components/domainSpecific/Accordion/Accordion.types.d.ts +7 -4
  132. package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.d.ts +1 -1
  133. package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.js +13 -12
  134. package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.d.ts +1 -1
  135. package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.js +15 -14
  136. package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.d.ts +1 -1
  137. package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.js +18 -16
  138. package/components/domainSpecific/Accordion/AccordionStyled.js +44 -35
  139. package/components/domainSpecific/Card/Card.js +31 -27
  140. package/components/domainSpecific/Card/CardTitle/constants.js +4 -4
  141. package/components/domainSpecific/Header/Header.js +4 -4
  142. package/components/domainSpecific/SearchModal/SearchModal.js +0 -1
  143. package/components/domainSpecific/SearchModal/SearchModal.types.d.ts +1 -1
  144. package/components/index.types.d.ts +1 -0
  145. package/components/layout/ChatContainer/ChatContainer.d.ts +1 -1
  146. package/components/layout/ChatContainer/ChatContainer.js +58 -41
  147. package/components/layout/ChatContainer/ChatContainer.types.d.ts +8 -5
  148. package/components/layout/ChatContainer/ChatContainerStyled.d.ts +2 -0
  149. package/components/layout/ChatContainer/ChatContainerStyled.js +105 -84
  150. package/components/layout/Column/Column.types.d.ts +3 -1
  151. package/components/layout/Column/ColumnStyled.js +23 -23
  152. package/components/layout/FlexContainer/FlexContainerStyled.js +7 -8
  153. package/components/layout/Row/Row.d.ts +1 -1
  154. package/components/layout/Row/Row.js +20 -20
  155. package/components/layout/Row/Row.types.d.ts +3 -1
  156. package/components/layout/Row/RowStyled.js +26 -26
  157. package/constants/index.d.ts +0 -1
  158. package/hooks/index.d.ts +1 -0
  159. package/hooks/useLogger/NoOpLogger.d.ts +11 -0
  160. package/hooks/useLogger/NoOpLogger.js +15 -0
  161. package/hooks/useLogger/index.d.ts +2 -0
  162. package/hooks/useLogger/useLogger.d.ts +4 -0
  163. package/hooks/useLogger/useLogger.js +27 -0
  164. package/hooks/useLogger/useLogger.types.d.ts +30 -0
  165. package/hooks/useTheme/NoOpTheme.d.ts +4050 -0
  166. package/hooks/useTheme/NoOpTheme.js +15 -0
  167. package/hooks/useTheme/useTheme.d.ts +3 -4
  168. package/hooks/useTheme/useTheme.js +62 -41
  169. package/hooks/useTheme/useTheme.types.d.ts +3 -2
  170. package/index.d.ts +4 -0
  171. package/index.js +354 -350
  172. package/llms.txt +39 -19
  173. package/package.json +1 -1
  174. package/tokens/accordion.d.ts +9 -3
  175. package/tokens/accordion.js +14 -11
  176. package/tokens/button.d.ts +17 -19
  177. package/tokens/button.js +54 -56
  178. package/tokens/card.d.ts +2 -3
  179. package/tokens/card.js +50 -53
  180. package/tokens/carousel.d.ts +2 -2
  181. package/tokens/carousel.js +8 -9
  182. package/tokens/chat.d.ts +69 -48
  183. package/tokens/chat.js +86 -68
  184. package/tokens/constants.d.ts +0 -1
  185. package/tokens/constants.js +1 -1
  186. package/tokens/defaultTheme.d.ts +199 -112
  187. package/tokens/defaultTheme.js +27 -25
  188. package/tokens/header.d.ts +1 -1
  189. package/tokens/header.js +3 -4
  190. package/tokens/index.d.ts +175 -104
  191. package/tokens/index.js +102 -101
  192. package/tokens/input.d.ts +2 -2
  193. package/tokens/input.js +25 -26
  194. package/tokens/inputfile.d.ts +1 -1
  195. package/tokens/inputfile.js +4 -4
  196. package/tokens/link.d.ts +5 -0
  197. package/tokens/loader.d.ts +3 -0
  198. package/tokens/loader.js +3 -0
  199. package/tokens/menu.d.ts +1 -0
  200. package/tokens/menu.js +1 -0
  201. package/tokens/modal.d.ts +6 -4
  202. package/tokens/modal.js +42 -60
  203. package/tokens/scroll.d.ts +19 -2
  204. package/tokens/scroll.js +23 -7
  205. package/tokens/select.d.ts +9 -7
  206. package/tokens/select.js +30 -29
  207. package/tokens/snackbar.d.ts +36 -20
  208. package/tokens/snackbar.js +92 -93
  209. package/tokens/stepper.d.ts +1 -1
  210. package/tokens/stepper.js +3 -3
  211. package/tokens/tabs.d.ts +1 -1
  212. package/tokens/tabs.js +1 -1
  213. package/tokens/textarea.d.ts +4 -0
  214. package/tokens/tooltip.d.ts +5 -1
  215. package/tokens/tooltip.js +23 -21
  216. package/tokens/typography.js +114 -116
  217. package/tokens/values.d.ts +5 -1
  218. package/tokens/values.js +12 -8
  219. package/tokens/wrapper.d.ts +2 -2
  220. package/tokens/wrapper.js +7 -7
  221. package/tokens/zIndex.d.ts +9 -0
  222. package/tokens/zIndex.js +12 -0
  223. package/types/index.d.ts +0 -1
  224. package/types/styles.d.ts +1 -0
  225. package/utils/helpers.js +14 -15
  226. package/CHANGELOG.md +0 -177
  227. package/constants/positioning.d.ts +0 -9
  228. package/constants/positioning.js +0 -11
  229. package/types/chat.d.ts +0 -5
  230. package/types/chat.js +0 -4
@@ -0,0 +1,4050 @@
1
+ import { ITheme } from './useTheme.types';
2
+ export declare class NoOpTheme implements ITheme {
3
+ theme: {
4
+ separator: {
5
+ default: {
6
+ alignItems: string;
7
+ justifyItems: string;
8
+ gap: string | number;
9
+ };
10
+ horizontal: {
11
+ width: string;
12
+ display: string;
13
+ flexDirection: import('../../types').FlexDirection;
14
+ };
15
+ vertical: {
16
+ height: string;
17
+ display: string;
18
+ flexDirection: import('../../types').FlexDirection;
19
+ };
20
+ line: {
21
+ default: {};
22
+ horizontal: {
23
+ width: string;
24
+ };
25
+ vertical: {
26
+ height: string;
27
+ };
28
+ };
29
+ label: {
30
+ default: {};
31
+ attrs: {
32
+ xs: {
33
+ $variant: import('../../types').TypographyVariant;
34
+ $as: import('../../types').TypographyVariant;
35
+ };
36
+ sm: {
37
+ $variant: import('../../types').TypographyVariant;
38
+ $as: import('../../types').TypographyVariant;
39
+ };
40
+ md: {
41
+ $variant: import('../../types').TypographyVariant;
42
+ $as: import('../../types').TypographyVariant;
43
+ };
44
+ lg: {
45
+ $variant: import('../../types').TypographyVariant;
46
+ $as: import('../../types').TypographyVariant;
47
+ };
48
+ xl: {
49
+ $variant: import('../../types').TypographyVariant;
50
+ $as: import('../../types').TypographyVariant;
51
+ };
52
+ xxl: {
53
+ $variant: import('../../types').TypographyVariant;
54
+ $as: import('../../types').TypographyVariant;
55
+ };
56
+ };
57
+ };
58
+ };
59
+ draganddrop: {
60
+ default: {
61
+ position: string;
62
+ };
63
+ dragAndDropArea: {
64
+ default: {
65
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
66
+ border: (theme: Record<symbol, unknown>) => string;
67
+ borderRadius: (theme: Record<symbol, unknown>) => string;
68
+ padding: (theme: Record<symbol, unknown>) => string;
69
+ '&:hover': {
70
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
71
+ border: (theme: Record<symbol, unknown>) => string;
72
+ };
73
+ };
74
+ disabled: {
75
+ '&, &:hover': {
76
+ cursor: string;
77
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
78
+ };
79
+ };
80
+ error: {
81
+ border: (theme: Record<symbol, unknown>) => string;
82
+ };
83
+ loading: {
84
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
85
+ cursor: string;
86
+ };
87
+ };
88
+ dragOverContent: {
89
+ default: {
90
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
91
+ width: string;
92
+ height: string;
93
+ display: string;
94
+ justifyContent: string;
95
+ alignItems: string;
96
+ border: (theme: Record<symbol, unknown>) => string;
97
+ borderRadius: (theme: Record<symbol, unknown>) => string;
98
+ };
99
+ };
100
+ uploadIcon: {
101
+ default: {
102
+ name: string;
103
+ width: number;
104
+ height: number;
105
+ };
106
+ disabled: {
107
+ fill: (theme: Record<symbol, unknown>) => string;
108
+ };
109
+ };
110
+ contentTypography: {
111
+ default: {
112
+ margin: (theme: Record<symbol, unknown>) => string;
113
+ };
114
+ disabled: {
115
+ color: (theme: Record<symbol, unknown>) => string;
116
+ };
117
+ };
118
+ };
119
+ avatar: {
120
+ default: {
121
+ borderRadius: string;
122
+ position: string;
123
+ width: number;
124
+ height: number;
125
+ };
126
+ imageWrapper: {
127
+ default: {
128
+ borderRadius: string;
129
+ overflow: string;
130
+ height: string;
131
+ width: string;
132
+ alignContent: string;
133
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
134
+ };
135
+ };
136
+ badge: {
137
+ default: {
138
+ position: string;
139
+ borderRadius: string;
140
+ width: number;
141
+ height: number;
142
+ border: string;
143
+ top: number;
144
+ right: number;
145
+ };
146
+ size: {
147
+ xs: {
148
+ width: number;
149
+ height: number;
150
+ border: string;
151
+ top: number;
152
+ right: number;
153
+ };
154
+ sm: {
155
+ width: number;
156
+ height: number;
157
+ border: string;
158
+ top: number;
159
+ right: number;
160
+ };
161
+ md: {
162
+ width: number;
163
+ height: number;
164
+ border: string;
165
+ top: number;
166
+ right: number;
167
+ };
168
+ lg: {
169
+ width: number;
170
+ height: number;
171
+ border: string;
172
+ top: number;
173
+ right: number;
174
+ };
175
+ xl: {
176
+ width: number;
177
+ height: number;
178
+ border: string;
179
+ top: number;
180
+ right: number;
181
+ };
182
+ };
183
+ };
184
+ fallbackText: {
185
+ default: {
186
+ overflow: string;
187
+ textOverflow: string;
188
+ whiteSpace: string;
189
+ };
190
+ attrs: {
191
+ default: {
192
+ variant: import('../../types').TypographyVariant;
193
+ align: import('../../types').TextAlign;
194
+ };
195
+ size: {
196
+ xs: {
197
+ variant: import('../../types').TypographyVariant;
198
+ };
199
+ sm: {
200
+ variant: import('../../types').TypographyVariant;
201
+ };
202
+ md: {
203
+ variant: import('../../types').TypographyVariant;
204
+ };
205
+ lg: {
206
+ variant: import('../../types').TypographyVariant;
207
+ };
208
+ xl: {
209
+ variant: import('../../types').TypographyVariant;
210
+ };
211
+ };
212
+ };
213
+ };
214
+ size: {
215
+ xs: {
216
+ width: number;
217
+ height: number;
218
+ };
219
+ sm: {
220
+ width: number;
221
+ height: number;
222
+ };
223
+ md: {
224
+ width: number;
225
+ height: number;
226
+ };
227
+ lg: {
228
+ width: number;
229
+ height: number;
230
+ };
231
+ xl: {
232
+ width: number;
233
+ height: number;
234
+ };
235
+ };
236
+ };
237
+ chatbubble: {
238
+ default: {
239
+ display: string;
240
+ flexDirection: import('../../types').FlexDirection;
241
+ gap: (theme: Record<symbol, unknown>) => string;
242
+ clear: string;
243
+ margin: (theme: Record<symbol, unknown>) => string;
244
+ fontSize: (theme: Record<symbol, unknown>) => string;
245
+ fontWeight: (theme: Record<symbol, unknown>) => string;
246
+ lineHeight: (theme: Record<symbol, unknown>) => string;
247
+ };
248
+ question: {
249
+ default: {
250
+ padding: (theme: Record<symbol, unknown>) => string;
251
+ float: string;
252
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
253
+ };
254
+ xs: {
255
+ maxWidth: string;
256
+ };
257
+ sm: {
258
+ maxWidth: string;
259
+ };
260
+ md: {
261
+ maxWidth: string;
262
+ };
263
+ lg: {
264
+ maxWidth: string;
265
+ };
266
+ };
267
+ answer: {
268
+ default: {
269
+ padding: (theme: Record<symbol, unknown>) => string;
270
+ width: string;
271
+ };
272
+ };
273
+ pending: {};
274
+ fulfilled: {};
275
+ rejected: {};
276
+ content: {
277
+ default: {
278
+ gap: (theme: Record<symbol, unknown>) => string;
279
+ display: string;
280
+ flexDirection: import('../../types').FlexDirection;
281
+ };
282
+ pending: {
283
+ alignItems: string;
284
+ };
285
+ fulfilled: {};
286
+ rejected: {};
287
+ };
288
+ actions: {
289
+ display: string;
290
+ flexDirection: import('../../types').FlexDirection;
291
+ };
292
+ loader: {
293
+ props: {
294
+ name: string;
295
+ size: string;
296
+ withWrapper: boolean;
297
+ };
298
+ };
299
+ };
300
+ draganddropfiles: {
301
+ default: {};
302
+ };
303
+ searchModal: {
304
+ default: {};
305
+ wrapper: {
306
+ padding: (theme: Record<symbol, unknown>) => string;
307
+ overflowY: string;
308
+ };
309
+ input: {
310
+ default: {
311
+ '& input[type="search"]': {
312
+ padding: (theme: Record<symbol, unknown>) => string;
313
+ height: string;
314
+ fontSize: (theme: Record<symbol, unknown>) => string;
315
+ '&::placeholder': {
316
+ color: (theme: Record<symbol, unknown>) => string;
317
+ };
318
+ '&::-webkit-search-cancel-button': {
319
+ appearance: string;
320
+ };
321
+ '&::-ms-clear': {
322
+ display: string;
323
+ };
324
+ };
325
+ };
326
+ endIcon: {
327
+ margin: (theme: Record<symbol, unknown>) => string;
328
+ padding: (theme: Record<symbol, unknown>) => string;
329
+ cursor: string;
330
+ };
331
+ icons: {
332
+ close: {
333
+ name: string;
334
+ width: number;
335
+ height: number;
336
+ };
337
+ };
338
+ };
339
+ loader: {
340
+ default: {
341
+ display: string;
342
+ flexDirection: import('../../types').FlexDirection;
343
+ gap: (theme: Record<symbol, unknown>) => string;
344
+ };
345
+ };
346
+ items: {
347
+ default: {
348
+ display: string;
349
+ flexDirection: import('../../types').FlexDirection;
350
+ };
351
+ newSearchBtn: {
352
+ styles: {
353
+ textAlign: string;
354
+ color: (theme: Record<symbol, unknown>) => string;
355
+ padding: (theme: Record<symbol, unknown>) => string;
356
+ fontSize: (theme: Record<symbol, unknown>) => string;
357
+ fontWeight: (theme: Record<symbol, unknown>) => string;
358
+ lineHeight: (theme: Record<symbol, unknown>) => string;
359
+ '.gd-button__content': {
360
+ justifyContent: string;
361
+ };
362
+ };
363
+ attrs: {
364
+ variant: import('../../types').ButtonVariant;
365
+ };
366
+ };
367
+ noResult: {
368
+ display: string;
369
+ flexDirection: import('../../types').FlexDirection;
370
+ alignItems: string;
371
+ gap: (theme: Record<symbol, unknown>) => string;
372
+ padding: (theme: Record<symbol, unknown>) => string;
373
+ color: (theme: Record<symbol, unknown>) => string;
374
+ fontSize: (theme: Record<symbol, unknown>) => string;
375
+ fontWeight: (theme: Record<symbol, unknown>) => string;
376
+ lineHeight: (theme: Record<symbol, unknown>) => string;
377
+ };
378
+ groupTitle: {
379
+ textAlign: string;
380
+ padding: (theme: Record<symbol, unknown>) => string;
381
+ color: (theme: Record<symbol, unknown>) => string;
382
+ fontSize: (theme: Record<symbol, unknown>) => string;
383
+ fontWeight: (theme: Record<symbol, unknown>) => string;
384
+ lineHeight: (theme: Record<symbol, unknown>) => string;
385
+ };
386
+ item: {
387
+ styles: {
388
+ textAlign: string;
389
+ gap: (theme: Record<symbol, unknown>) => string;
390
+ padding: (theme: Record<symbol, unknown>) => string;
391
+ color: (theme: Record<symbol, unknown>) => string;
392
+ '.gd-button__content': {
393
+ display: string;
394
+ };
395
+ fontSize: (theme: Record<symbol, unknown>) => string;
396
+ fontWeight: (theme: Record<symbol, unknown>) => string;
397
+ lineHeight: (theme: Record<symbol, unknown>) => string;
398
+ };
399
+ attrs: {
400
+ variant: import('../../types').ButtonVariant;
401
+ };
402
+ };
403
+ itemRow: {
404
+ alignItems: string;
405
+ justifyContent: string;
406
+ gap: (theme: Record<symbol, unknown>) => string;
407
+ flexWrap: string;
408
+ };
409
+ itemColumn: {
410
+ gap: (theme: Record<symbol, unknown>) => string;
411
+ minWidth: number;
412
+ flexWrap: string;
413
+ };
414
+ itemContent: {
415
+ default: {};
416
+ title: {
417
+ flex: number;
418
+ minWidth: number;
419
+ whiteSpace: string;
420
+ textOverflow: string;
421
+ overflow: string;
422
+ };
423
+ description: {
424
+ flex: number;
425
+ minWidth: number;
426
+ whiteSpace: string;
427
+ textOverflow: string;
428
+ overflow: string;
429
+ color: (theme: Record<symbol, unknown>) => string;
430
+ };
431
+ date: {
432
+ flex: string;
433
+ whiteSpace: string;
434
+ color: (theme: Record<symbol, unknown>) => string;
435
+ };
436
+ };
437
+ icons: {
438
+ newChat: {
439
+ width: number;
440
+ height: number;
441
+ name: string;
442
+ };
443
+ noResults: {
444
+ width: number;
445
+ height: number;
446
+ name: string;
447
+ };
448
+ item: {
449
+ width: number;
450
+ height: number;
451
+ };
452
+ };
453
+ };
454
+ };
455
+ inputfile: {
456
+ default: {
457
+ overflow: string;
458
+ position: string;
459
+ };
460
+ input: {
461
+ opacity: number;
462
+ inset: number;
463
+ width: string;
464
+ height: string;
465
+ position: string;
466
+ zIndex: (theme: Record<symbol, unknown>) => string;
467
+ };
468
+ };
469
+ carousel: {
470
+ default: {};
471
+ container: {
472
+ default: {
473
+ position: string;
474
+ overflow: string;
475
+ width: string;
476
+ display: string;
477
+ zIndex: (theme: Record<symbol, unknown>) => string;
478
+ gap: string;
479
+ };
480
+ variant: {
481
+ cards: {
482
+ gap: string;
483
+ };
484
+ single: {
485
+ '.embla__slide': {
486
+ padding: number;
487
+ };
488
+ };
489
+ };
490
+ layout: {
491
+ horizontal: {
492
+ flexDirection: string;
493
+ };
494
+ vertical: {
495
+ flexDirection: string;
496
+ height: string;
497
+ };
498
+ };
499
+ };
500
+ contentContainer: {
501
+ flexDirection: string;
502
+ height: string;
503
+ width: string;
504
+ position: string;
505
+ justifyContent: string;
506
+ alignItems: string;
507
+ zIndex: string;
508
+ };
509
+ carouselViewport: {
510
+ overflow: string;
511
+ };
512
+ carouselViewportSlideWrapper: {
513
+ display: string;
514
+ };
515
+ carouselSlide: {
516
+ flex: (theme: Record<symbol, unknown>) => string;
517
+ width: string;
518
+ padding: (theme: Record<symbol, unknown>) => string;
519
+ '& img': {
520
+ width: string;
521
+ height: string;
522
+ objectFit: string;
523
+ borderRadius: (theme: Record<symbol, unknown>) => string;
524
+ };
525
+ };
526
+ footer: {
527
+ display: string;
528
+ justifyContent: string;
529
+ alignItems: string;
530
+ };
531
+ footerControls: {
532
+ display: string;
533
+ };
534
+ contentSlide: {
535
+ display: string;
536
+ paddingLeft: (theme: Record<symbol, unknown>) => string;
537
+ '&:first-of-type': {
538
+ paddingLeft: (theme: Record<symbol, unknown>) => string;
539
+ };
540
+ };
541
+ carouselControlsWrapper: {
542
+ position: string;
543
+ };
544
+ carouselControls: {
545
+ display: string;
546
+ justifyContent: string;
547
+ alignItems: string;
548
+ position: string;
549
+ top: string;
550
+ left: (theme: Record<symbol, unknown>) => string;
551
+ transform: string;
552
+ width: string;
553
+ padding: string;
554
+ zIndex: (theme: Record<symbol, unknown>) => string;
555
+ };
556
+ carouselDots: {
557
+ display: string;
558
+ justifyContent: string;
559
+ gap: string;
560
+ marginTop: string;
561
+ };
562
+ carouselDot: {
563
+ default: {
564
+ width: string;
565
+ height: string;
566
+ border: string;
567
+ cursor: string;
568
+ transition: string;
569
+ };
570
+ active: {
571
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
572
+ width: string;
573
+ '&:hover': {};
574
+ };
575
+ nonActive: {
576
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
577
+ '&:hover': {};
578
+ };
579
+ };
580
+ carouselThumbs: {
581
+ default: {
582
+ display: string;
583
+ justifyContent: string;
584
+ gap: string;
585
+ };
586
+ vertical: {
587
+ flexDirection: import('../../types').FlexDirection;
588
+ flex: string;
589
+ overflowX: string;
590
+ alignItems: string;
591
+ };
592
+ horizontal: {
593
+ overflowX: string;
594
+ };
595
+ };
596
+ carouselThumbsViewport: {
597
+ default: {
598
+ overflow: string;
599
+ };
600
+ vertical: {
601
+ maxHeight: string;
602
+ };
603
+ horizontal: {
604
+ width: string;
605
+ };
606
+ };
607
+ carouselThumbsWrapper: {
608
+ default: {};
609
+ vertical: {
610
+ display: string;
611
+ height: string;
612
+ };
613
+ horizontal: {
614
+ display: string;
615
+ };
616
+ };
617
+ carouselThumb: {
618
+ default: {
619
+ minWidth: string;
620
+ minHeight: string;
621
+ border: string;
622
+ padding: (theme: Record<symbol, unknown>) => string;
623
+ background: string;
624
+ cursor: string;
625
+ opacity: number;
626
+ transition: string;
627
+ '&:hover': {
628
+ opacity: number;
629
+ };
630
+ };
631
+ active: {
632
+ opacity: number;
633
+ };
634
+ vertical: {
635
+ height: string;
636
+ };
637
+ horizontal: {
638
+ marginLeft: string;
639
+ };
640
+ };
641
+ controlsButton: {
642
+ default: {
643
+ width: (theme: Record<symbol, unknown>) => string;
644
+ height: (theme: Record<symbol, unknown>) => string;
645
+ };
646
+ attrs: {
647
+ variant: import('../../types').ButtonVariant;
648
+ isIcon: boolean;
649
+ };
650
+ };
651
+ icons: {
652
+ base: {
653
+ width: number;
654
+ height: number;
655
+ };
656
+ controlLeft: {
657
+ name: string;
658
+ };
659
+ controlRight: {
660
+ name: string;
661
+ };
662
+ };
663
+ };
664
+ progressbar: {
665
+ styledProgressBar: {
666
+ default: {
667
+ width: string;
668
+ display: string;
669
+ };
670
+ };
671
+ styledTrack: {
672
+ default: {
673
+ position: string;
674
+ width: string;
675
+ height: (theme: Record<symbol, unknown>) => string;
676
+ overflow: string;
677
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
678
+ };
679
+ };
680
+ styledDeterminateFill: {
681
+ default: {
682
+ display: string;
683
+ alignItems: string;
684
+ justifyContent: string;
685
+ paddingRight: (theme: Record<symbol, unknown>) => string;
686
+ whiteSpace: string;
687
+ height: string;
688
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
689
+ transition: (theme: Record<symbol, unknown>) => string;
690
+ };
691
+ };
692
+ styledIndeterminateFill: {
693
+ default: {
694
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
695
+ width: string;
696
+ height: string;
697
+ };
698
+ };
699
+ styledIndeterminateFillAnimations: {
700
+ animationName: string;
701
+ animationProps: string;
702
+ };
703
+ styledPercentLabel: {
704
+ default: {
705
+ display: string;
706
+ alignItems: string;
707
+ color: (theme: Record<symbol, unknown>) => string;
708
+ fontSize: (theme: Record<symbol, unknown>) => string;
709
+ fontWeight: (theme: Record<symbol, unknown>) => string;
710
+ height: string;
711
+ userSelect: string;
712
+ };
713
+ };
714
+ };
715
+ card: {
716
+ default: {};
717
+ title: {
718
+ default: (theme: Record<symbol, unknown>) => {
719
+ margin: string;
720
+ padding: string;
721
+ };
722
+ vertical: {
723
+ default: {};
724
+ sm: {};
725
+ };
726
+ horizontal: {
727
+ default: {};
728
+ sm: {};
729
+ };
730
+ };
731
+ description: {
732
+ default: (theme: Record<symbol, unknown>) => {
733
+ margin: string;
734
+ padding: string;
735
+ };
736
+ vertical: {
737
+ default: {};
738
+ sm: {};
739
+ };
740
+ horizontal: {
741
+ default: {};
742
+ sm: {};
743
+ };
744
+ };
745
+ rating: {
746
+ default: (theme: Record<symbol, unknown>) => {
747
+ display: string;
748
+ alignItems: string;
749
+ gap: string;
750
+ };
751
+ vertical: {
752
+ default: (theme: Record<symbol, unknown>) => {
753
+ color: string;
754
+ fontSize: string;
755
+ fontWeight: string;
756
+ lineHeight: string;
757
+ };
758
+ sm: (theme: Record<symbol, unknown>) => {
759
+ color: string;
760
+ flexDirection: string;
761
+ fontSize: string;
762
+ fontWeight: string;
763
+ lineHeight: string;
764
+ };
765
+ };
766
+ horizontal: {
767
+ default: (theme: Record<symbol, unknown>) => {
768
+ color: string;
769
+ fontSize: string;
770
+ fontWeight: string;
771
+ lineHeight: string;
772
+ };
773
+ sm: (theme: Record<symbol, unknown>) => {
774
+ color: string;
775
+ flexDirection: string;
776
+ fontSize: string;
777
+ fontWeight: string;
778
+ lineHeight: string;
779
+ };
780
+ };
781
+ };
782
+ button: {
783
+ default: {
784
+ display: string;
785
+ };
786
+ vertical: {
787
+ default: {};
788
+ sm: {};
789
+ };
790
+ horizontal: {
791
+ default: {};
792
+ sm: {};
793
+ };
794
+ };
795
+ image: {
796
+ default: {};
797
+ vertical: {
798
+ default: {};
799
+ sm: {};
800
+ };
801
+ horizontal: {
802
+ default: {};
803
+ sm: {};
804
+ };
805
+ };
806
+ counter: {
807
+ default: {};
808
+ vertical: {
809
+ default: {};
810
+ sm: {};
811
+ };
812
+ horizontal: {
813
+ default: {};
814
+ sm: {};
815
+ };
816
+ };
817
+ price: {
818
+ default: {
819
+ display: string;
820
+ };
821
+ vertical: {
822
+ default: {};
823
+ sm: (theme: Record<symbol, unknown>) => {
824
+ '& > div > *': {
825
+ fontSize: string;
826
+ fontWeight: string;
827
+ lineHeight: string;
828
+ marginTop: string;
829
+ marginBottom: string;
830
+ };
831
+ };
832
+ };
833
+ horizontal: {
834
+ default: {};
835
+ sm: (theme: Record<symbol, unknown>) => {
836
+ '& > div > *': {
837
+ fontSize: string;
838
+ fontWeight: string;
839
+ lineHeight: string;
840
+ marginTop: string;
841
+ marginBottom: string;
842
+ };
843
+ };
844
+ };
845
+ };
846
+ };
847
+ counter: {
848
+ default: {
849
+ display: string;
850
+ width: string;
851
+ '& input': {
852
+ width: string;
853
+ textAlign: import('../../types').TextAlign;
854
+ };
855
+ };
856
+ navButton: {
857
+ default: {
858
+ padding: string | number;
859
+ borderWidth: (theme: Record<symbol, unknown>) => string;
860
+ '&:disabled': {
861
+ opacity: number;
862
+ backgroundColor: string;
863
+ borderWidth: (theme: Record<symbol, unknown>) => string;
864
+ };
865
+ };
866
+ attrs: {
867
+ variant: import('../../types').ButtonVariant;
868
+ isIcon: boolean;
869
+ };
870
+ };
871
+ icons: {
872
+ plus: {
873
+ name: string;
874
+ width: number;
875
+ height: number;
876
+ };
877
+ minus: {
878
+ name: string;
879
+ width: number;
880
+ height: number;
881
+ };
882
+ };
883
+ };
884
+ name: string;
885
+ spacing: {
886
+ none: number;
887
+ xs: string;
888
+ sm: string;
889
+ md: string;
890
+ lg: string;
891
+ xl: string;
892
+ xxl: string;
893
+ };
894
+ space: {
895
+ '0': string;
896
+ '050': string;
897
+ '100': string;
898
+ '150': string;
899
+ '200': string;
900
+ '300': string;
901
+ '400': string;
902
+ '500': string;
903
+ '600': string;
904
+ '700': string;
905
+ '800': string;
906
+ '900': string;
907
+ '1000': string;
908
+ };
909
+ scale: {
910
+ '050': string;
911
+ '100': string;
912
+ '200': string;
913
+ '300': string;
914
+ '400': string;
915
+ '500': string;
916
+ };
917
+ reset: {};
918
+ typography: {
919
+ base: {
920
+ fontFamily: (theme: Record<symbol, unknown>) => string;
921
+ };
922
+ span: {
923
+ fontSize: string;
924
+ fontWeight: string;
925
+ lineHeight: string;
926
+ };
927
+ h1: {
928
+ fontSize: (theme: Record<symbol, unknown>) => string;
929
+ fontWeight: (theme: Record<symbol, unknown>) => string;
930
+ lineHeight: (theme: Record<symbol, unknown>) => string;
931
+ marginTop: (theme: Record<symbol, unknown>) => string;
932
+ marginBottom: (theme: Record<symbol, unknown>) => string;
933
+ };
934
+ h2: {
935
+ fontSize: (theme: Record<symbol, unknown>) => string;
936
+ fontWeight: (theme: Record<symbol, unknown>) => string;
937
+ lineHeight: (theme: Record<symbol, unknown>) => string;
938
+ marginTop: (theme: Record<symbol, unknown>) => string;
939
+ marginBottom: (theme: Record<symbol, unknown>) => string;
940
+ };
941
+ h3: {
942
+ fontSize: (theme: Record<symbol, unknown>) => string;
943
+ fontWeight: (theme: Record<symbol, unknown>) => string;
944
+ lineHeight: (theme: Record<symbol, unknown>) => string;
945
+ marginTop: (theme: Record<symbol, unknown>) => string;
946
+ marginBottom: (theme: Record<symbol, unknown>) => string;
947
+ };
948
+ h4: {
949
+ fontSize: (theme: Record<symbol, unknown>) => string;
950
+ fontWeight: (theme: Record<symbol, unknown>) => string;
951
+ lineHeight: (theme: Record<symbol, unknown>) => string;
952
+ marginTop: (theme: Record<symbol, unknown>) => string;
953
+ marginBottom: (theme: Record<symbol, unknown>) => string;
954
+ };
955
+ h5: {
956
+ fontSize: (theme: Record<symbol, unknown>) => string;
957
+ fontWeight: (theme: Record<symbol, unknown>) => string;
958
+ lineHeight: (theme: Record<symbol, unknown>) => string;
959
+ marginTop: (theme: Record<symbol, unknown>) => string;
960
+ marginBottom: (theme: Record<symbol, unknown>) => string;
961
+ };
962
+ h6: {
963
+ fontSize: (theme: Record<symbol, unknown>) => string;
964
+ fontWeight: (theme: Record<symbol, unknown>) => string;
965
+ lineHeight: (theme: Record<symbol, unknown>) => string;
966
+ marginTop: (theme: Record<symbol, unknown>) => string;
967
+ marginBottom: (theme: Record<symbol, unknown>) => string;
968
+ };
969
+ strong: {
970
+ fontWeight: (theme: Record<symbol, unknown>) => string;
971
+ };
972
+ i: {
973
+ fontStyle: string;
974
+ };
975
+ p: {
976
+ fontSize: (theme: Record<symbol, unknown>) => string;
977
+ fontWeight: (theme: Record<symbol, unknown>) => string;
978
+ lineHeight: (theme: Record<symbol, unknown>) => string;
979
+ };
980
+ small: {
981
+ fontSize: (theme: Record<symbol, unknown>) => string;
982
+ fontWeight: (theme: Record<symbol, unknown>) => string;
983
+ lineHeight: (theme: Record<symbol, unknown>) => string;
984
+ };
985
+ caption: {
986
+ fontSize: (theme: Record<symbol, unknown>) => string;
987
+ fontWeight: (theme: Record<symbol, unknown>) => string;
988
+ lineHeight: (theme: Record<symbol, unknown>) => string;
989
+ };
990
+ header: {
991
+ fontSize: (theme: Record<symbol, unknown>) => string;
992
+ fontWeight: (theme: Record<symbol, unknown>) => string;
993
+ lineHeight: (theme: Record<symbol, unknown>) => string;
994
+ };
995
+ code: {
996
+ fontFamily: (theme: Record<symbol, unknown>) => string;
997
+ fontSize: (theme: Record<symbol, unknown>) => string;
998
+ fontWeight: (theme: Record<symbol, unknown>) => string;
999
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1000
+ };
1001
+ kbd: {
1002
+ fontFamily: (theme: Record<symbol, unknown>) => string;
1003
+ fontSize: (theme: Record<symbol, unknown>) => string;
1004
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1005
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1006
+ };
1007
+ div: {
1008
+ xs: {
1009
+ fontSize: (theme: Record<symbol, unknown>) => string;
1010
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1011
+ };
1012
+ sm: {
1013
+ fontSize: (theme: Record<symbol, unknown>) => string;
1014
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1015
+ };
1016
+ md: {
1017
+ fontSize: (theme: Record<symbol, unknown>) => string;
1018
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1019
+ };
1020
+ lg: {
1021
+ fontSize: (theme: Record<symbol, unknown>) => string;
1022
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1023
+ };
1024
+ xl: {
1025
+ fontSize: (theme: Record<symbol, unknown>) => string;
1026
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1027
+ };
1028
+ };
1029
+ styleVariant: {
1030
+ light: {
1031
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1032
+ };
1033
+ normal: {
1034
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1035
+ };
1036
+ semibold: {
1037
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1038
+ };
1039
+ bold: {
1040
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1041
+ };
1042
+ italic: {
1043
+ fontStyle: string;
1044
+ };
1045
+ small: {
1046
+ fontSize: (theme: Record<symbol, unknown>) => string;
1047
+ };
1048
+ uppercase: {
1049
+ textTransform: string;
1050
+ };
1051
+ lowercase: {
1052
+ textTransform: string;
1053
+ };
1054
+ underline: {
1055
+ textDecoration: string;
1056
+ };
1057
+ strike: {
1058
+ textDecoration: string;
1059
+ };
1060
+ };
1061
+ };
1062
+ button: {
1063
+ default: {
1064
+ border: number;
1065
+ outline: number;
1066
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1067
+ padding: (theme: Record<symbol, unknown>) => string;
1068
+ display: string;
1069
+ alignItems: string;
1070
+ gap: (theme: Record<symbol, unknown>) => string;
1071
+ transition: (theme: Record<symbol, unknown>) => string;
1072
+ cursor: string;
1073
+ '&:focus-visible': (theme: Record<symbol, unknown>) => {
1074
+ position: string;
1075
+ '&::after': {
1076
+ content: string;
1077
+ position: string;
1078
+ top: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1079
+ right: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1080
+ bottom: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1081
+ left: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1082
+ border: string;
1083
+ borderRadius: `${number}px` | `${number}rem` | `${number}%` | `${number}em` | undefined;
1084
+ };
1085
+ };
1086
+ '&:disabled, &:disabled *': {
1087
+ cursor: string;
1088
+ color: (theme: Record<symbol, unknown>) => string;
1089
+ };
1090
+ };
1091
+ attrs: {
1092
+ rounded: string;
1093
+ };
1094
+ icon: {
1095
+ padding: (theme: Record<symbol, unknown>) => string;
1096
+ '& span': {
1097
+ display: string;
1098
+ justifyContent: string;
1099
+ alignItems: string;
1100
+ };
1101
+ };
1102
+ content: {
1103
+ default: {
1104
+ display: string;
1105
+ justifyContent: string;
1106
+ alignItems: string;
1107
+ width: string;
1108
+ minWidth: string;
1109
+ };
1110
+ };
1111
+ fullWidth: {
1112
+ width: string;
1113
+ };
1114
+ startIcon: {
1115
+ default: {};
1116
+ };
1117
+ endIcon: {
1118
+ default: {};
1119
+ };
1120
+ primary: {
1121
+ color: (theme: Record<symbol, unknown>) => string;
1122
+ background: (theme: Record<symbol, unknown>) => string;
1123
+ '&:hover, &.hover': {
1124
+ background: (theme: Record<symbol, unknown>) => string;
1125
+ };
1126
+ '&:active, &.active': {
1127
+ background: (theme: Record<symbol, unknown>) => string;
1128
+ };
1129
+ '&:disabled, &.disabled': {
1130
+ background: (theme: Record<symbol, unknown>) => string;
1131
+ };
1132
+ };
1133
+ secondary: {
1134
+ color: (theme: Record<symbol, unknown>) => string;
1135
+ background: (theme: Record<symbol, unknown>) => string;
1136
+ '&:hover, &.hover': {
1137
+ background: (theme: Record<symbol, unknown>) => string;
1138
+ color: (theme: Record<symbol, unknown>) => string;
1139
+ };
1140
+ '&:active, &.active': {
1141
+ color: (theme: Record<symbol, unknown>) => string;
1142
+ background: (theme: Record<symbol, unknown>) => string;
1143
+ };
1144
+ '&:disabled, &.disabled': {
1145
+ background: (theme: Record<symbol, unknown>) => string;
1146
+ };
1147
+ };
1148
+ tertiary: {
1149
+ background: string;
1150
+ color: (theme: Record<symbol, unknown>) => string;
1151
+ '&:hover, &.hover': {
1152
+ background: (theme: Record<symbol, unknown>) => string;
1153
+ };
1154
+ '&:active, &.active': {
1155
+ background: (theme: Record<symbol, unknown>) => string;
1156
+ };
1157
+ '&:disabled, &.disabled': {
1158
+ background: string;
1159
+ };
1160
+ };
1161
+ outlined: {
1162
+ background: string;
1163
+ color: (theme: Record<symbol, unknown>) => string;
1164
+ border: (theme: Record<symbol, unknown>) => string;
1165
+ '&:hover, &.hover': {
1166
+ background: (theme: Record<symbol, unknown>) => string;
1167
+ };
1168
+ '&:active, &.active': {
1169
+ color: (theme: Record<symbol, unknown>) => string;
1170
+ background: (theme: Record<symbol, unknown>) => string;
1171
+ };
1172
+ '&:disabled, &.disabled': {
1173
+ background: string;
1174
+ borderColor: (theme: Record<symbol, unknown>) => string;
1175
+ };
1176
+ };
1177
+ text: {
1178
+ background: string;
1179
+ color: (theme: Record<symbol, unknown>) => string;
1180
+ '&:hover, &.hover': {
1181
+ color: (theme: Record<symbol, unknown>) => string;
1182
+ };
1183
+ '&:active, &.active': {
1184
+ color: (theme: Record<symbol, unknown>) => string;
1185
+ };
1186
+ };
1187
+ inherit: {
1188
+ fontWeight: string;
1189
+ '&:not(:disabled):active, &.active': {
1190
+ transform: string;
1191
+ };
1192
+ '&:hover, &.hover': {};
1193
+ '&:disabled, &.disabled': {};
1194
+ };
1195
+ };
1196
+ input: {
1197
+ wrapper: {
1198
+ default: {
1199
+ boxSizing: string;
1200
+ display: string;
1201
+ alignSelf: string;
1202
+ alignItems: string;
1203
+ borderRadius: number;
1204
+ position: string;
1205
+ };
1206
+ withGap: {
1207
+ flexDirection: import('../../types').FlexDirection;
1208
+ alignItems: string;
1209
+ gap: (theme: Record<symbol, unknown>) => string;
1210
+ };
1211
+ };
1212
+ input: {
1213
+ default: {
1214
+ borderRadius: number;
1215
+ padding: (theme: Record<symbol, unknown>) => string;
1216
+ outline: string;
1217
+ position: string;
1218
+ cursor: string;
1219
+ border: number;
1220
+ backgroundColor: string;
1221
+ '&::placeholder': {
1222
+ color: (theme: Record<symbol, unknown>) => string;
1223
+ };
1224
+ '&:not([type="radio"], [type="checkbox"], [type="range"])': {
1225
+ height: string;
1226
+ width: string;
1227
+ zIndex: (theme: Record<symbol, unknown>) => string;
1228
+ };
1229
+ '&[type="number"]': {
1230
+ appearance: string;
1231
+ '&::-webkit-outer-spin-button, &::-webkit-inner-spin-button': {
1232
+ appearance: string;
1233
+ margin: number;
1234
+ };
1235
+ };
1236
+ '&[readonly], &:disabled': {
1237
+ color: (theme: Record<symbol, unknown>) => string;
1238
+ cursor: string;
1239
+ };
1240
+ '&[type="checkbox"]': {
1241
+ cursor: string;
1242
+ appearance: string;
1243
+ height: string;
1244
+ width: string;
1245
+ backgroundColor: string;
1246
+ border: string;
1247
+ backgroundImage: string;
1248
+ '&:focus-visible': (theme: Record<symbol, unknown>) => {
1249
+ position: string;
1250
+ '&::after': {
1251
+ content: string;
1252
+ position: string;
1253
+ top: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1254
+ right: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1255
+ bottom: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1256
+ left: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1257
+ border: string;
1258
+ borderRadius: `${number}px` | `${number}rem` | `${number}%` | `${number}em` | undefined;
1259
+ };
1260
+ };
1261
+ };
1262
+ '&[type="checkbox"]:not(:checked)': {
1263
+ '&[readonly], &:disabled': {
1264
+ opacity: number;
1265
+ };
1266
+ };
1267
+ '&[type="checkbox"]:checked': {
1268
+ backgroundRepeat: string;
1269
+ backgroundPosition: string;
1270
+ backgroundSize: string;
1271
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
1272
+ border: string;
1273
+ backgroundImage: string;
1274
+ '&[readonly], &:disabled': {
1275
+ backgroundImage: string;
1276
+ };
1277
+ };
1278
+ '&[type="radio"]': {
1279
+ cursor: string;
1280
+ appearance: string;
1281
+ height: string;
1282
+ width: string;
1283
+ border: string;
1284
+ backgroundImage: string;
1285
+ '&:focus-visible': {
1286
+ position: string;
1287
+ '&::after': {
1288
+ content: string;
1289
+ position: string;
1290
+ top: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1291
+ right: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1292
+ bottom: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1293
+ left: `${number}px` | `${number}rem` | `${number}%` | `${number}em`;
1294
+ border: string;
1295
+ borderRadius: `${number}px` | `${number}rem` | `${number}%` | `${number}em` | undefined;
1296
+ };
1297
+ };
1298
+ '&[readonly], &:disabled': {
1299
+ opacity: number;
1300
+ };
1301
+ };
1302
+ '&[type="radio"]:checked': {
1303
+ backgroundImage: string;
1304
+ };
1305
+ };
1306
+ defaultInteraction: {
1307
+ "&:focus-visible ~ .Input__outline": {
1308
+ position: string;
1309
+ top: number;
1310
+ left: number;
1311
+ bottom: number;
1312
+ width: string;
1313
+ outline: string;
1314
+ outlineOffset: string;
1315
+ };
1316
+ };
1317
+ mouseInteraction: {};
1318
+ primary: {
1319
+ "& + .Input__border": (theme: Record<symbol, unknown>) => {
1320
+ position: string;
1321
+ top: number;
1322
+ left: number;
1323
+ width: string;
1324
+ height: string;
1325
+ border: string;
1326
+ };
1327
+ };
1328
+ success: {
1329
+ "& + .Input__border": (theme: Record<symbol, unknown>) => {
1330
+ position: string;
1331
+ top: number;
1332
+ left: number;
1333
+ width: string;
1334
+ height: string;
1335
+ border: string;
1336
+ };
1337
+ };
1338
+ warning: {
1339
+ "& + .Input__border": (theme: Record<symbol, unknown>) => {
1340
+ position: string;
1341
+ top: number;
1342
+ left: number;
1343
+ width: string;
1344
+ height: string;
1345
+ border: string;
1346
+ };
1347
+ };
1348
+ error: {
1349
+ "& + .Input__border": (theme: Record<symbol, unknown>) => {
1350
+ position: string;
1351
+ top: number;
1352
+ left: number;
1353
+ width: string;
1354
+ height: string;
1355
+ border: string;
1356
+ };
1357
+ };
1358
+ };
1359
+ helper: {
1360
+ default: {
1361
+ sm: {
1362
+ fontSize: (theme: Record<symbol, unknown>) => string;
1363
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1364
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1365
+ };
1366
+ md: {
1367
+ color: (theme: Record<symbol, unknown>) => string;
1368
+ fontSize: (theme: Record<symbol, unknown>) => string;
1369
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1370
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1371
+ };
1372
+ };
1373
+ primary: {
1374
+ sm: {
1375
+ color: (theme: Record<symbol, unknown>) => string;
1376
+ };
1377
+ md: {};
1378
+ };
1379
+ success: {
1380
+ sm: {
1381
+ color: (theme: Record<symbol, unknown>) => string;
1382
+ };
1383
+ md: {};
1384
+ };
1385
+ warning: {
1386
+ sm: {
1387
+ color: (theme: Record<symbol, unknown>) => string;
1388
+ };
1389
+ md: {};
1390
+ };
1391
+ error: {
1392
+ sm: {
1393
+ color: (theme: Record<symbol, unknown>) => string;
1394
+ };
1395
+ md: {};
1396
+ };
1397
+ };
1398
+ adornment: {
1399
+ default: {
1400
+ display: string;
1401
+ alignItems: string;
1402
+ position: string;
1403
+ zIndex: (theme: Record<symbol, unknown>) => string;
1404
+ };
1405
+ };
1406
+ };
1407
+ label: {
1408
+ default: {
1409
+ cursor: string;
1410
+ display: string;
1411
+ };
1412
+ };
1413
+ flexContainer: {
1414
+ default: {
1415
+ display: string;
1416
+ width: string;
1417
+ margin: string;
1418
+ flexDirection: import('../../types').FlexDirection;
1419
+ };
1420
+ };
1421
+ link: {
1422
+ default: {
1423
+ fontFamily: (theme: Record<symbol, unknown>) => string;
1424
+ fontSize: string;
1425
+ fontWeight: string;
1426
+ lineHeight: string;
1427
+ color: (theme: Record<symbol, unknown>) => string;
1428
+ position: string;
1429
+ '&:visited': {
1430
+ color: (theme: Record<symbol, unknown>) => string;
1431
+ '&::after': {
1432
+ borderBottom: (theme: Record<symbol, unknown>) => string;
1433
+ };
1434
+ };
1435
+ '&:focus, &:active, &:focus-visible': {
1436
+ outline: (theme: Record<symbol, unknown>) => string;
1437
+ };
1438
+ "&.Link--disabled": {
1439
+ color: (theme: Record<symbol, unknown>) => string;
1440
+ cursor: import('../../types').Cursors;
1441
+ textDecoration: string;
1442
+ backgroundColor: string;
1443
+ '&::after': {
1444
+ borderBottomColor: string;
1445
+ };
1446
+ };
1447
+ };
1448
+ primary: {
1449
+ '&::after': {
1450
+ content: string;
1451
+ position: string;
1452
+ right: (theme: Record<symbol, unknown>) => string;
1453
+ bottom: (theme: Record<symbol, unknown>) => string;
1454
+ left: (theme: Record<symbol, unknown>) => string;
1455
+ borderBottom: (theme: Record<symbol, unknown>) => string;
1456
+ };
1457
+ '&:hover': {
1458
+ backgroundColor: string;
1459
+ '&::after': {
1460
+ borderBottomColor: (theme: Record<symbol, unknown>) => string;
1461
+ };
1462
+ };
1463
+ };
1464
+ secondary: {
1465
+ '&::after': {
1466
+ content: string;
1467
+ position: string;
1468
+ right: (theme: Record<symbol, unknown>) => string;
1469
+ bottom: (theme: Record<symbol, unknown>) => string;
1470
+ left: (theme: Record<symbol, unknown>) => string;
1471
+ borderBottom: (theme: Record<symbol, unknown>) => string;
1472
+ };
1473
+ '&:hover': {
1474
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
1475
+ '&::after': {
1476
+ borderBottomColor: string;
1477
+ };
1478
+ };
1479
+ };
1480
+ inverted: {
1481
+ '&::after': {
1482
+ content: string;
1483
+ position: string;
1484
+ right: (theme: Record<symbol, unknown>) => string;
1485
+ bottom: (theme: Record<symbol, unknown>) => string;
1486
+ left: (theme: Record<symbol, unknown>) => string;
1487
+ borderBottom: (theme: Record<symbol, unknown>) => string;
1488
+ };
1489
+ '&:hover': {
1490
+ backgroundColor: string;
1491
+ '&::after': {
1492
+ borderBottomColor: string;
1493
+ };
1494
+ };
1495
+ };
1496
+ inherit: {
1497
+ color: string;
1498
+ };
1499
+ };
1500
+ form: {
1501
+ default: {};
1502
+ };
1503
+ wrapper: {
1504
+ default: {
1505
+ justifyContent: string;
1506
+ alignItems: string;
1507
+ backdropFilter: string;
1508
+ backgroundColor: string;
1509
+ };
1510
+ inline: {
1511
+ display: string;
1512
+ };
1513
+ section: {
1514
+ display: string;
1515
+ top: number;
1516
+ left: number;
1517
+ width: string;
1518
+ height: string;
1519
+ position: string;
1520
+ zIndex: (theme: Record<symbol, unknown>) => string;
1521
+ };
1522
+ fullPage: {
1523
+ display: string;
1524
+ position: string;
1525
+ top: number;
1526
+ left: number;
1527
+ width: string;
1528
+ height: string;
1529
+ zIndex: (theme: Record<symbol, unknown>) => string;
1530
+ };
1531
+ };
1532
+ loader: {
1533
+ default: {
1534
+ display: string;
1535
+ };
1536
+ attrs: {
1537
+ rounded: string;
1538
+ };
1539
+ inline: {};
1540
+ section: {};
1541
+ fullPage: {};
1542
+ circle: {
1543
+ default: {
1544
+ border: (theme: Record<symbol, unknown>) => string;
1545
+ borderTop: (theme: Record<symbol, unknown>) => string;
1546
+ borderRadius: (theme: Record<symbol, unknown>) => string;
1547
+ };
1548
+ xs: {
1549
+ borderWidth: string;
1550
+ width: string;
1551
+ height: string;
1552
+ minWidth: string;
1553
+ minHeight: string;
1554
+ };
1555
+ sm: {
1556
+ borderWidth: string;
1557
+ width: string;
1558
+ height: string;
1559
+ maxWidth: string;
1560
+ maxHeight: string;
1561
+ };
1562
+ md: {
1563
+ borderWidth: string;
1564
+ width: string;
1565
+ height: string;
1566
+ maxWidth: string;
1567
+ maxHeight: string;
1568
+ };
1569
+ lg: {
1570
+ borderWidth: string;
1571
+ width: string;
1572
+ height: string;
1573
+ maxWidth: string;
1574
+ maxHeight: string;
1575
+ };
1576
+ xl: {
1577
+ borderWidth: string;
1578
+ width: string;
1579
+ height: string;
1580
+ maxWidth: string;
1581
+ maxHeight: string;
1582
+ };
1583
+ };
1584
+ dots: {
1585
+ default: {
1586
+ display: string;
1587
+ justifyContent: string;
1588
+ alignItems: string;
1589
+ };
1590
+ xs: {
1591
+ gap: (theme: Record<symbol, unknown>) => string;
1592
+ '.dot': {
1593
+ background: (theme: Record<symbol, unknown>) => string;
1594
+ width: string;
1595
+ height: string;
1596
+ '&:nth-of-type(1)': {
1597
+ animationDelay: string;
1598
+ };
1599
+ '&:nth-of-type(2)': {
1600
+ animationDelay: string;
1601
+ };
1602
+ };
1603
+ };
1604
+ sm: {
1605
+ gap: (theme: Record<symbol, unknown>) => string;
1606
+ '.dot': {
1607
+ background: (theme: Record<symbol, unknown>) => string;
1608
+ width: string;
1609
+ height: string;
1610
+ '&:nth-of-type(1)': {
1611
+ animationDelay: string;
1612
+ };
1613
+ '&:nth-of-type(2)': {
1614
+ animationDelay: string;
1615
+ };
1616
+ };
1617
+ };
1618
+ md: {
1619
+ gap: (theme: Record<symbol, unknown>) => string;
1620
+ '.dot': {
1621
+ background: (theme: Record<symbol, unknown>) => string;
1622
+ width: string;
1623
+ height: string;
1624
+ '&:nth-of-type(1)': {
1625
+ animationDelay: string;
1626
+ };
1627
+ '&:nth-of-type(2)': {
1628
+ animationDelay: string;
1629
+ };
1630
+ };
1631
+ };
1632
+ lg: {
1633
+ gap: (theme: Record<symbol, unknown>) => string;
1634
+ '.dot': {
1635
+ background: (theme: Record<symbol, unknown>) => string;
1636
+ width: string;
1637
+ height: string;
1638
+ '&:nth-of-type(1)': {
1639
+ animationDelay: string;
1640
+ };
1641
+ '&:nth-of-type(2)': {
1642
+ animationDelay: string;
1643
+ };
1644
+ };
1645
+ };
1646
+ xl: {
1647
+ gap: (theme: Record<symbol, unknown>) => string;
1648
+ '.dot': {
1649
+ background: (theme: Record<symbol, unknown>) => string;
1650
+ width: string;
1651
+ height: string;
1652
+ '&:nth-of-type(1)': {
1653
+ animationDelay: string;
1654
+ };
1655
+ '&:nth-of-type(2)': {
1656
+ animationDelay: string;
1657
+ };
1658
+ };
1659
+ };
1660
+ };
1661
+ animation: {
1662
+ circle: {
1663
+ name: string;
1664
+ };
1665
+ dots: {
1666
+ name: string;
1667
+ };
1668
+ };
1669
+ };
1670
+ display: {
1671
+ flex: string;
1672
+ inlineFlex: string;
1673
+ grid: string;
1674
+ block: string;
1675
+ inline: string;
1676
+ inlineBlock: string;
1677
+ none: string;
1678
+ };
1679
+ cursors: {
1680
+ default: string;
1681
+ pointer: string;
1682
+ text: string;
1683
+ move: string;
1684
+ wait: string;
1685
+ crosshair: string;
1686
+ notAllowed: string;
1687
+ grab: string;
1688
+ grabbing: string;
1689
+ help: string;
1690
+ progress: string;
1691
+ alias: string;
1692
+ zoomIn: string;
1693
+ zoomOut: string;
1694
+ inherit: string;
1695
+ };
1696
+ values: {
1697
+ borderThin: string;
1698
+ borderMedium: string;
1699
+ borderThick: string;
1700
+ borderNone: number;
1701
+ border: {
1702
+ radius: {
1703
+ none: string;
1704
+ };
1705
+ };
1706
+ screenSmall: string;
1707
+ screenMedium: string;
1708
+ screenLarge: string;
1709
+ screenXLarge: string;
1710
+ responsiveSmall: string;
1711
+ responsiveMedium: string;
1712
+ responsiveLarge: string;
1713
+ responsiveXLarge: string;
1714
+ zIndex: {
1715
+ snackbar: (theme: Record<symbol, unknown>) => string;
1716
+ };
1717
+ transitions: {
1718
+ stepper: {
1719
+ separator: string;
1720
+ stepIcon: string;
1721
+ };
1722
+ button: {
1723
+ default: string;
1724
+ };
1725
+ scroll: {
1726
+ scrollbar: string;
1727
+ thumb: string;
1728
+ };
1729
+ rating: {
1730
+ label: string;
1731
+ };
1732
+ progressbar: {
1733
+ styledDeterminateFill: string;
1734
+ };
1735
+ accordion: {
1736
+ toggle: string;
1737
+ icon: string;
1738
+ };
1739
+ select: {
1740
+ arrowIconWrapper: string;
1741
+ };
1742
+ tabs: {
1743
+ label: string;
1744
+ };
1745
+ chat: {
1746
+ sidebar: string;
1747
+ sidebarWrapper: string;
1748
+ };
1749
+ };
1750
+ transform: {
1751
+ rotateUp: string;
1752
+ rotateReset: string;
1753
+ };
1754
+ separator: {
1755
+ thickness: {
1756
+ xs: string;
1757
+ sm: string;
1758
+ md: string;
1759
+ lg: string;
1760
+ xl: string;
1761
+ xxl: string;
1762
+ };
1763
+ };
1764
+ };
1765
+ flexAlignItems: {
1766
+ start: string;
1767
+ center: string;
1768
+ end: string;
1769
+ baseline: string;
1770
+ stretch: string;
1771
+ };
1772
+ textarea: {
1773
+ default: {
1774
+ width: string;
1775
+ };
1776
+ outlined: {
1777
+ primary: {
1778
+ '&:hover': {};
1779
+ '&:active': {};
1780
+ '&:focus': {};
1781
+ '&:disabled': {};
1782
+ '&:read-only': {};
1783
+ };
1784
+ secondary: {
1785
+ '&:hover': {};
1786
+ '&:active': {};
1787
+ '&:focus': {};
1788
+ '&:disabled': {};
1789
+ '&:read-only': {};
1790
+ };
1791
+ success: {
1792
+ '&:hover': {};
1793
+ '&:active': {};
1794
+ '&:focus': {};
1795
+ '&:disabled': {};
1796
+ '&:read-only': {};
1797
+ };
1798
+ warning: {
1799
+ '&:hover': {};
1800
+ '&:active': {};
1801
+ '&:focus': {};
1802
+ '&:disabled': {};
1803
+ '&:read-only': {};
1804
+ };
1805
+ error: {
1806
+ '&:hover': {};
1807
+ '&:active': {};
1808
+ '&:focus': {};
1809
+ '&:disabled': {};
1810
+ '&:read-only': {};
1811
+ };
1812
+ };
1813
+ contained: {};
1814
+ text: {};
1815
+ };
1816
+ image: {
1817
+ default: {
1818
+ width: string;
1819
+ height: string;
1820
+ transition: string;
1821
+ };
1822
+ wrapper: {
1823
+ position: "relative";
1824
+ display: string;
1825
+ flexDirection: import('../../types').FlexDirection;
1826
+ alignItems: string;
1827
+ };
1828
+ placeholder: {
1829
+ position: string;
1830
+ top: number;
1831
+ left: number;
1832
+ width: string;
1833
+ height: string;
1834
+ display: string;
1835
+ alignItems: string;
1836
+ justifyContent: string;
1837
+ background: (theme: Record<symbol, unknown>) => string;
1838
+ };
1839
+ caption: {
1840
+ marginTop: (theme: Record<symbol, unknown>) => string;
1841
+ fontSize: (theme: Record<symbol, unknown>) => string;
1842
+ color: (theme: Record<symbol, unknown>) => string;
1843
+ textAlign: import('../../types').TextAlign;
1844
+ };
1845
+ };
1846
+ row: {
1847
+ default: {
1848
+ display: string;
1849
+ };
1850
+ };
1851
+ switchToggle: {
1852
+ default: {
1853
+ display: string;
1854
+ position: string;
1855
+ padding: (theme: Record<symbol, unknown>) => string;
1856
+ border: (theme: Record<symbol, unknown>) => string;
1857
+ };
1858
+ disabled: {};
1859
+ };
1860
+ column: {
1861
+ default: {
1862
+ maxWidth: string;
1863
+ display: string;
1864
+ };
1865
+ };
1866
+ tooltip: {
1867
+ default: {
1868
+ position: string;
1869
+ display: string;
1870
+ whiteSpace: string;
1871
+ color: (theme: Record<symbol, unknown>) => string;
1872
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
1873
+ padding: (theme: Record<symbol, unknown>) => string;
1874
+ zIndex: (theme: Record<symbol, unknown>) => string;
1875
+ fontSize: (theme: Record<symbol, unknown>) => string;
1876
+ fontWeight: (theme: Record<symbol, unknown>) => string;
1877
+ lineHeight: (theme: Record<symbol, unknown>) => string;
1878
+ '&::after': {
1879
+ position: string;
1880
+ content: string;
1881
+ border: string;
1882
+ };
1883
+ '&.tooltip-bottom': {
1884
+ transform: string;
1885
+ '&::after': {
1886
+ top: number;
1887
+ left: string;
1888
+ borderLeftColor: (theme: Record<symbol, unknown>) => string;
1889
+ borderTopColor: (theme: Record<symbol, unknown>) => string;
1890
+ transform: string;
1891
+ };
1892
+ };
1893
+ '&.tooltip-top': {
1894
+ transform: string;
1895
+ '&::after': {
1896
+ bottom: number;
1897
+ left: string;
1898
+ borderRightColor: (theme: Record<symbol, unknown>) => string;
1899
+ borderBottomColor: (theme: Record<symbol, unknown>) => string;
1900
+ transform: string;
1901
+ };
1902
+ };
1903
+ '&.tooltip-left': {
1904
+ transform: string;
1905
+ '&::after': {
1906
+ right: number;
1907
+ top: string;
1908
+ borderRightColor: (theme: Record<symbol, unknown>) => string;
1909
+ borderTopColor: (theme: Record<symbol, unknown>) => string;
1910
+ transform: string;
1911
+ };
1912
+ };
1913
+ '&.tooltip-right': {
1914
+ transform: string;
1915
+ '&::after': {
1916
+ left: number;
1917
+ top: string;
1918
+ borderLeftColor: (theme: Record<symbol, unknown>) => string;
1919
+ borderBottomColor: (theme: Record<symbol, unknown>) => string;
1920
+ transform: string;
1921
+ };
1922
+ };
1923
+ };
1924
+ wrapper: {
1925
+ default: {
1926
+ display: string;
1927
+ position: string;
1928
+ };
1929
+ };
1930
+ };
1931
+ animations: {
1932
+ spinKeyframes: {
1933
+ '0%': {
1934
+ transform: string;
1935
+ };
1936
+ '100%': {
1937
+ transform: string;
1938
+ };
1939
+ };
1940
+ bounceKeyframes: {
1941
+ '0%, 80%, 100%': {
1942
+ transform: string;
1943
+ };
1944
+ '40%': {
1945
+ transform: string;
1946
+ };
1947
+ };
1948
+ slideIn: {
1949
+ '0%': {
1950
+ transform: string;
1951
+ opacity: number;
1952
+ };
1953
+ '100%': {
1954
+ transform: string;
1955
+ opacity: number;
1956
+ };
1957
+ };
1958
+ slideOut: {
1959
+ '0%': {
1960
+ transform: string;
1961
+ opacity: number;
1962
+ };
1963
+ '100%': {
1964
+ transform: string;
1965
+ opacity: number;
1966
+ };
1967
+ };
1968
+ blinkKeyframes: {
1969
+ '0%': {
1970
+ opacity: number;
1971
+ };
1972
+ '50%': {
1973
+ opacity: number;
1974
+ };
1975
+ '100%': {
1976
+ opacity: number;
1977
+ };
1978
+ };
1979
+ progressIndeterminate: {
1980
+ '0%': {
1981
+ transform: string;
1982
+ };
1983
+ '50%': {
1984
+ transform: string;
1985
+ };
1986
+ '100%': {
1987
+ transform: string;
1988
+ };
1989
+ };
1990
+ };
1991
+ modal: {
1992
+ header: {
1993
+ default: {
1994
+ display: string;
1995
+ alignItems: string;
1996
+ justifyContent: string;
1997
+ padding: string;
1998
+ borderBottom: (theme: Record<symbol, unknown>) => string;
1999
+ };
2000
+ withTitle: {
2001
+ justifyContent: string;
2002
+ };
2003
+ };
2004
+ title: {
2005
+ default: {
2006
+ display: string;
2007
+ alignItems: string;
2008
+ fontSize: (theme: Record<symbol, unknown>) => string;
2009
+ fontWeight: (theme: Record<symbol, unknown>) => string;
2010
+ color: (theme: Record<symbol, unknown>) => string;
2011
+ padding: (theme: Record<symbol, unknown>) => string;
2012
+ margin: (theme: Record<symbol, unknown>) => string;
2013
+ };
2014
+ };
2015
+ body: {
2016
+ default: {
2017
+ padding: (theme: Record<symbol, unknown>) => string;
2018
+ fontSize: (theme: Record<symbol, unknown>) => string;
2019
+ color: (theme: Record<symbol, unknown>) => string;
2020
+ overflowY: string;
2021
+ };
2022
+ };
2023
+ content: {
2024
+ default: {
2025
+ background: (theme: Record<symbol, unknown>) => string;
2026
+ padding: (theme: Record<symbol, unknown>) => string;
2027
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2028
+ boxShadow: (theme: Record<symbol, unknown>) => string;
2029
+ position: string;
2030
+ display: string;
2031
+ flexDirection: string;
2032
+ width: string;
2033
+ maxWidth: string;
2034
+ maxHeight: string;
2035
+ '@media (max-width: 768px)': {
2036
+ maxWidth: string;
2037
+ width: string;
2038
+ height: string;
2039
+ };
2040
+ };
2041
+ };
2042
+ footer: {
2043
+ default: {
2044
+ display: string;
2045
+ justifyContent: string;
2046
+ gap: (theme: Record<symbol, unknown>) => string;
2047
+ padding: (theme: Record<symbol, unknown>) => string;
2048
+ borderTop: (theme: Record<symbol, unknown>) => string;
2049
+ };
2050
+ };
2051
+ closeButton: {
2052
+ default: {
2053
+ background: (theme: Record<symbol, unknown>) => string;
2054
+ border: string;
2055
+ cursor: string;
2056
+ padding: (theme: Record<symbol, unknown>) => string;
2057
+ };
2058
+ };
2059
+ overlay: {
2060
+ default: {
2061
+ position: string;
2062
+ top: number;
2063
+ left: number;
2064
+ width: string;
2065
+ height: string;
2066
+ background: (theme: Record<symbol, unknown>) => string;
2067
+ display: string;
2068
+ alignItems: string;
2069
+ justifyContent: string;
2070
+ zIndex: (theme: Record<symbol, unknown>) => string;
2071
+ };
2072
+ };
2073
+ icons: {
2074
+ close: {
2075
+ name: string;
2076
+ fill: string;
2077
+ width: number;
2078
+ height: number;
2079
+ };
2080
+ };
2081
+ };
2082
+ snackbar: {
2083
+ title: {
2084
+ attrs: {
2085
+ as: string;
2086
+ align: string;
2087
+ variant: string;
2088
+ styleVariant: string;
2089
+ color: string;
2090
+ };
2091
+ };
2092
+ description: {
2093
+ attrs: {
2094
+ as: string;
2095
+ align: string;
2096
+ variant: string;
2097
+ styleVariant: string;
2098
+ color: string;
2099
+ };
2100
+ };
2101
+ container: {
2102
+ default: {
2103
+ position: string;
2104
+ display: string;
2105
+ flexDirection: string;
2106
+ gap: (theme: Record<symbol, unknown>) => string;
2107
+ padding: (theme: Record<symbol, unknown>) => string;
2108
+ boxSizing: string;
2109
+ maxHeight: (theme: Record<symbol, unknown>) => string;
2110
+ overflowY: string;
2111
+ overflowX: string;
2112
+ scrollbarWidth: string;
2113
+ scrollbarColor: (theme: Record<symbol, unknown>) => string;
2114
+ zIndex: (theme: Record<symbol, unknown>) => string;
2115
+ '&::-webkit-scrollbar': {
2116
+ width: (theme: Record<symbol, unknown>) => string;
2117
+ background: (theme: Record<symbol, unknown>) => string;
2118
+ };
2119
+ '&::-webkit-scrollbar-thumb': {
2120
+ background: (theme: Record<symbol, unknown>) => string;
2121
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2122
+ };
2123
+ '&::-webkit-scrollbar-track': {
2124
+ background: (theme: Record<symbol, unknown>) => string;
2125
+ };
2126
+ '&:hover::-webkit-scrollbar-thumb': {
2127
+ background: string;
2128
+ };
2129
+ '&.scrolling::-webkit-scrollbar-thumb': {
2130
+ background: string;
2131
+ };
2132
+ };
2133
+ };
2134
+ snackbar: {
2135
+ default: {
2136
+ position: string;
2137
+ boxShadow: (theme: Record<symbol, unknown>) => string;
2138
+ width: string;
2139
+ fontSize: (theme: Record<symbol, unknown>) => string;
2140
+ display: string;
2141
+ flexDirection: string;
2142
+ gap: (theme: Record<symbol, unknown>) => string;
2143
+ color: (theme: Record<symbol, unknown>) => string;
2144
+ padding: (theme: Record<symbol, unknown>) => string;
2145
+ };
2146
+ background: {
2147
+ default: (theme: Record<symbol, unknown>) => string;
2148
+ variants: {
2149
+ success: (theme: Record<symbol, unknown>) => string;
2150
+ error: (theme: Record<symbol, unknown>) => string;
2151
+ warning: (theme: Record<symbol, unknown>) => string;
2152
+ info: (theme: Record<symbol, unknown>) => string;
2153
+ };
2154
+ };
2155
+ animation: {
2156
+ closeEffect: string;
2157
+ openEffect: string;
2158
+ };
2159
+ };
2160
+ positions: {
2161
+ 'top-left': {
2162
+ top: number;
2163
+ left: number;
2164
+ alignItems: string;
2165
+ };
2166
+ 'top-center': {
2167
+ top: (theme: Record<symbol, unknown>) => string;
2168
+ left: string;
2169
+ transform: string;
2170
+ alignItems: string;
2171
+ };
2172
+ 'top-right': {
2173
+ top: (theme: Record<symbol, unknown>) => string;
2174
+ right: (theme: Record<symbol, unknown>) => string;
2175
+ alignItems: string;
2176
+ };
2177
+ 'bottom-left': {
2178
+ bottom: (theme: Record<symbol, unknown>) => string;
2179
+ left: (theme: Record<symbol, unknown>) => string;
2180
+ alignItems: string;
2181
+ flexDirection: string;
2182
+ };
2183
+ 'bottom-center': {
2184
+ bottom: (theme: Record<symbol, unknown>) => string;
2185
+ left: string;
2186
+ transform: string;
2187
+ alignItems: string;
2188
+ flexDirection: string;
2189
+ };
2190
+ 'bottom-right': {
2191
+ bottom: (theme: Record<symbol, unknown>) => string;
2192
+ right: (theme: Record<symbol, unknown>) => string;
2193
+ alignItems: string;
2194
+ flexDirection: string;
2195
+ };
2196
+ };
2197
+ closeButton: {
2198
+ position: string;
2199
+ top: (theme: Record<symbol, unknown>) => string;
2200
+ right: (theme: Record<symbol, unknown>) => string;
2201
+ background: (theme: Record<symbol, unknown>) => string;
2202
+ border: number;
2203
+ cursor: string;
2204
+ padding: number;
2205
+ width: number;
2206
+ height: number;
2207
+ };
2208
+ icons: {
2209
+ close: {
2210
+ name: string;
2211
+ width: number;
2212
+ height: number;
2213
+ };
2214
+ success: {
2215
+ name: string;
2216
+ fill: string;
2217
+ width: number;
2218
+ height: number;
2219
+ };
2220
+ error: {
2221
+ name: string;
2222
+ fill: string;
2223
+ width: number;
2224
+ height: number;
2225
+ };
2226
+ warning: {
2227
+ name: string;
2228
+ fill: string;
2229
+ width: number;
2230
+ height: number;
2231
+ };
2232
+ info: {
2233
+ name: string;
2234
+ fill: string;
2235
+ width: number;
2236
+ height: number;
2237
+ };
2238
+ };
2239
+ snackbarBody: {
2240
+ display: string;
2241
+ alignItems: string;
2242
+ gap: (theme: Record<symbol, unknown>) => string;
2243
+ };
2244
+ snackbarContent: {
2245
+ display: string;
2246
+ flexDirection: string;
2247
+ alignItems: string;
2248
+ gap: string | number;
2249
+ flex: number;
2250
+ };
2251
+ actionsContainer: {
2252
+ paddingTop: string | number;
2253
+ };
2254
+ };
2255
+ skeleton: {
2256
+ default: {
2257
+ display: string;
2258
+ position: string;
2259
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2260
+ alignItems: string;
2261
+ justifyContent: string;
2262
+ width: string;
2263
+ height: string;
2264
+ overflow: string;
2265
+ '&:empty::before': {
2266
+ content: string;
2267
+ };
2268
+ };
2269
+ rounded: {
2270
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2271
+ };
2272
+ rectangular: {
2273
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2274
+ };
2275
+ circular: {
2276
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2277
+ };
2278
+ cards: {
2279
+ search: {
2280
+ default: {};
2281
+ container: {
2282
+ padding: (theme: Record<symbol, unknown>) => string;
2283
+ boxSizing: string;
2284
+ flexWrap: string;
2285
+ flexDirection: string;
2286
+ };
2287
+ header: {
2288
+ width: string;
2289
+ marginBottom: (theme: Record<symbol, unknown>) => string;
2290
+ };
2291
+ row: {
2292
+ width: string;
2293
+ marginBottom: (theme: Record<symbol, unknown>) => string;
2294
+ gap: (theme: Record<symbol, unknown>) => string;
2295
+ };
2296
+ columnImage: {
2297
+ default: {
2298
+ flex: number;
2299
+ };
2300
+ image: {
2301
+ width: string;
2302
+ height: string;
2303
+ };
2304
+ };
2305
+ columnText: {
2306
+ default: {
2307
+ flex: number;
2308
+ };
2309
+ description: {
2310
+ width: string;
2311
+ height: (theme: Record<symbol, unknown>) => string;
2312
+ marginBottom: (theme: Record<symbol, unknown>) => string;
2313
+ };
2314
+ price: {
2315
+ width: string;
2316
+ height: (theme: Record<symbol, unknown>) => string;
2317
+ marginBottom: (theme: Record<symbol, unknown>) => string;
2318
+ };
2319
+ };
2320
+ };
2321
+ };
2322
+ };
2323
+ list: {
2324
+ wrapper: {
2325
+ default: {
2326
+ listStyle: string;
2327
+ padding: (theme: Record<symbol, unknown>) => string;
2328
+ margin: (theme: Record<symbol, unknown>) => string;
2329
+ };
2330
+ "ordered-circle": {
2331
+ counterReset: string;
2332
+ paddingLeft: (theme: Record<symbol, unknown>) => string;
2333
+ };
2334
+ "ordered-square": {
2335
+ counterReset: string;
2336
+ paddingLeft: (theme: Record<symbol, unknown>) => string;
2337
+ };
2338
+ };
2339
+ item: {
2340
+ default: {
2341
+ display: string;
2342
+ alignItems: string;
2343
+ flexDirection: string;
2344
+ margin: (theme: Record<symbol, unknown>) => string;
2345
+ '&:first-of-type': {
2346
+ margin: (theme: Record<symbol, unknown>) => string;
2347
+ };
2348
+ };
2349
+ "ordered-circle": {
2350
+ '&::before': (theme: Record<symbol, unknown>) => {
2351
+ content: string;
2352
+ counterIncrement: string;
2353
+ background: string;
2354
+ fontFamily: string;
2355
+ fontSize: string;
2356
+ fontWeight: string;
2357
+ width: string;
2358
+ height: string;
2359
+ color: string;
2360
+ display: string;
2361
+ alignItems: string;
2362
+ justifyContent: string;
2363
+ marginRight: string;
2364
+ borderRadius: string;
2365
+ };
2366
+ };
2367
+ "ordered-square": {
2368
+ '&::before': (theme: Record<symbol, unknown>) => {
2369
+ content: string;
2370
+ counterIncrement: string;
2371
+ background: string;
2372
+ fontFamily: string;
2373
+ fontSize: string;
2374
+ fontWeight: string;
2375
+ width: string;
2376
+ height: string;
2377
+ color: string;
2378
+ display: string;
2379
+ alignItems: string;
2380
+ justifyContent: string;
2381
+ marginRight: string;
2382
+ };
2383
+ };
2384
+ "unordered-check": (theme: Record<symbol, unknown>) => {
2385
+ counterReset: string;
2386
+ paddingLeft: string;
2387
+ "& .List__bulletPoint": {
2388
+ marginRight: string;
2389
+ color: string;
2390
+ };
2391
+ };
2392
+ "unordered-dot": (theme: Record<symbol, unknown>) => {
2393
+ counterReset: string;
2394
+ paddingLeft: string;
2395
+ "& .List__bulletPoint": {
2396
+ marginRight: string;
2397
+ color: string;
2398
+ };
2399
+ };
2400
+ };
2401
+ icons: {
2402
+ bulletDot: {
2403
+ name: string;
2404
+ width: number;
2405
+ height: number;
2406
+ };
2407
+ bulletCheck: {
2408
+ name: string;
2409
+ };
2410
+ };
2411
+ };
2412
+ select: {
2413
+ default: {
2414
+ display: string;
2415
+ position: string;
2416
+ };
2417
+ initiatorWrapper: {
2418
+ '& > *': {
2419
+ width: string;
2420
+ };
2421
+ '.gd-button__content': {
2422
+ whiteSpace: string;
2423
+ overflow: string;
2424
+ textOverflow: string;
2425
+ display: string;
2426
+ };
2427
+ };
2428
+ dropdown: {
2429
+ position: string;
2430
+ textAlign: string;
2431
+ background: (theme: Record<symbol, unknown>) => string;
2432
+ boxShadow: (theme: Record<symbol, unknown>) => string;
2433
+ fontFamily: (theme: Record<symbol, unknown>) => string;
2434
+ fontSize: (theme: Record<symbol, unknown>) => string;
2435
+ fontWeight: (theme: Record<symbol, unknown>) => string;
2436
+ listStyleType: string;
2437
+ margin: (theme: Record<symbol, unknown>) => string;
2438
+ padding: (theme: Record<symbol, unknown>) => string;
2439
+ zIndex: (theme: Record<symbol, unknown>) => string;
2440
+ overflowY: string;
2441
+ };
2442
+ button: {
2443
+ default: {
2444
+ border: (theme: Record<symbol, unknown>) => string;
2445
+ padding: (theme: Record<symbol, unknown>) => string;
2446
+ width: string;
2447
+ display: string;
2448
+ flexDirection: string;
2449
+ justifyContent: string;
2450
+ alignItems: string;
2451
+ textAlign: import('../../types').TextAlign;
2452
+ '.gd-button__content': {
2453
+ justifyContent: string;
2454
+ };
2455
+ };
2456
+ attrs: {
2457
+ variant: import('../../types').ButtonVariant;
2458
+ };
2459
+ };
2460
+ item: {
2461
+ default: {
2462
+ cursor: import('../../types').Cursors;
2463
+ padding: string | number;
2464
+ '&:hover, &.active': {
2465
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2466
+ };
2467
+ };
2468
+ disabled: {
2469
+ opacity: number;
2470
+ cursor: import('../../types').Cursors;
2471
+ pointerEvents: string;
2472
+ };
2473
+ };
2474
+ arrowIconWrapper: {
2475
+ default: {
2476
+ transition: (theme: Record<symbol, unknown>) => string;
2477
+ };
2478
+ transform: {
2479
+ open: {
2480
+ transform: string;
2481
+ };
2482
+ close: {
2483
+ transform: string;
2484
+ };
2485
+ };
2486
+ };
2487
+ icons: {
2488
+ arrowIcon: {
2489
+ name: string;
2490
+ fill: string;
2491
+ width: number;
2492
+ height: number;
2493
+ };
2494
+ };
2495
+ adornment: {
2496
+ default: {
2497
+ display: string;
2498
+ alignItems: string;
2499
+ flexDirection: import('../../types').FlexDirection;
2500
+ position: string;
2501
+ zIndex: (theme: Record<symbol, unknown>) => string;
2502
+ };
2503
+ };
2504
+ };
2505
+ search: {
2506
+ default: {};
2507
+ input: {
2508
+ default: {
2509
+ width: string;
2510
+ boxSizing: string;
2511
+ };
2512
+ };
2513
+ dropdownHeader: {
2514
+ row: {};
2515
+ link: {
2516
+ default: {};
2517
+ typography: {};
2518
+ };
2519
+ icon: {};
2520
+ };
2521
+ renderer: {
2522
+ row: {
2523
+ width: string;
2524
+ padding: (theme: Record<symbol, unknown>) => string;
2525
+ };
2526
+ link: {
2527
+ display: string;
2528
+ alignItems: string;
2529
+ '&:after': {
2530
+ borderBottom: string;
2531
+ };
2532
+ '& svg': {
2533
+ marginLeft: (theme: Record<symbol, unknown>) => string;
2534
+ };
2535
+ };
2536
+ linkIcon: {
2537
+ fill: (theme: Record<symbol, unknown>) => string;
2538
+ name: string;
2539
+ width: number;
2540
+ height: number;
2541
+ };
2542
+ };
2543
+ };
2544
+ breadcrumbs: {
2545
+ default: {
2546
+ display: string;
2547
+ alignItems: string;
2548
+ gap: (theme: Record<symbol, unknown>) => string;
2549
+ };
2550
+ bordered: {
2551
+ padding: (theme: Record<symbol, unknown>) => string;
2552
+ border: (theme: Record<symbol, unknown>) => string;
2553
+ };
2554
+ item: {
2555
+ default: {};
2556
+ itemStart: {
2557
+ color: (theme: Record<symbol, unknown>) => string;
2558
+ };
2559
+ itemEnd: {
2560
+ color: (theme: Record<symbol, unknown>) => string;
2561
+ };
2562
+ };
2563
+ separator: {
2564
+ default: {
2565
+ display: string;
2566
+ alignItems: string;
2567
+ color: (theme: Record<symbol, unknown>) => string;
2568
+ };
2569
+ };
2570
+ };
2571
+ scroll: {
2572
+ container: {
2573
+ default: {
2574
+ position: string;
2575
+ display: string;
2576
+ overflow: string;
2577
+ isolation: string;
2578
+ maxBlockSize: string;
2579
+ '&::-webkit-scrollbar, &::-webkit-scrollbar-thumb': {
2580
+ background: string;
2581
+ width: string;
2582
+ height: string;
2583
+ };
2584
+ };
2585
+ };
2586
+ content: {
2587
+ default: {
2588
+ position: string;
2589
+ zIndex: (theme: Record<symbol, unknown>) => string;
2590
+ flex: number;
2591
+ flexBasis: string;
2592
+ height: string;
2593
+ };
2594
+ };
2595
+ scrollbars: {
2596
+ default: {
2597
+ position: string;
2598
+ top: string;
2599
+ left: string;
2600
+ zIndex: (theme: Record<symbol, unknown>) => string;
2601
+ minWidth: string;
2602
+ minHeight: string;
2603
+ maxWidth: string;
2604
+ maxHeight: string;
2605
+ float: string;
2606
+ marginRight: string;
2607
+ marginInlineStart: string;
2608
+ marginInlineEnd: string;
2609
+ pointerEvents: string;
2610
+ };
2611
+ };
2612
+ scrollbar: {
2613
+ default: {
2614
+ position: string;
2615
+ pointerEvents: string;
2616
+ opacity: number;
2617
+ transition: (theme: Record<symbol, unknown>) => string;
2618
+ '&:hover': {
2619
+ opacity: number;
2620
+ };
2621
+ };
2622
+ vertical: {
2623
+ right: number;
2624
+ bottom: string;
2625
+ top: number;
2626
+ width: string;
2627
+ };
2628
+ horizontal: {
2629
+ left: number;
2630
+ bottom: number;
2631
+ right: string;
2632
+ height: string;
2633
+ };
2634
+ autoHide: {
2635
+ opacity: number;
2636
+ transition: string;
2637
+ };
2638
+ autoHideScrolling: {
2639
+ opacity: number;
2640
+ '&:hover': {
2641
+ opacity: number;
2642
+ };
2643
+ };
2644
+ };
2645
+ thumb: {
2646
+ default: {
2647
+ position: string;
2648
+ cursor: string;
2649
+ pointerEvents: string;
2650
+ background: (theme: Record<symbol, unknown>) => string;
2651
+ backgroundClip: string;
2652
+ boxSizing: string;
2653
+ };
2654
+ vertical: {
2655
+ right: number;
2656
+ bottom: number;
2657
+ top: number;
2658
+ width: string;
2659
+ minHeight: (theme: Record<symbol, unknown>) => string;
2660
+ transition: (theme: Record<symbol, unknown>) => string;
2661
+ };
2662
+ horizontal: {
2663
+ left: number;
2664
+ right: number;
2665
+ bottom: number;
2666
+ height: string;
2667
+ minWidth: (theme: Record<symbol, unknown>) => string;
2668
+ transition: (theme: Record<symbol, unknown>) => string;
2669
+ };
2670
+ autoHide: {
2671
+ opacity: number;
2672
+ transition: string;
2673
+ };
2674
+ autoHideScrolling: {
2675
+ opacity: number;
2676
+ };
2677
+ };
2678
+ };
2679
+ icon: {
2680
+ size: {
2681
+ xs: {
2682
+ width: number;
2683
+ height: number;
2684
+ };
2685
+ sm: {
2686
+ width: number;
2687
+ height: number;
2688
+ };
2689
+ md: {
2690
+ width: number;
2691
+ height: number;
2692
+ };
2693
+ lg: {
2694
+ width: number;
2695
+ height: number;
2696
+ };
2697
+ xl: {
2698
+ width: number;
2699
+ height: number;
2700
+ };
2701
+ xxl: {
2702
+ width: number;
2703
+ height: number;
2704
+ };
2705
+ };
2706
+ };
2707
+ tabs: {
2708
+ default: {
2709
+ display: string;
2710
+ flexDirection: string;
2711
+ width: string;
2712
+ };
2713
+ header: {
2714
+ default: {
2715
+ display: string;
2716
+ flexDirection: string;
2717
+ position: string;
2718
+ overflow: string;
2719
+ '&::after': {
2720
+ content: string;
2721
+ position: string;
2722
+ width: string;
2723
+ bottom: number;
2724
+ zIndex: (theme: Record<symbol, unknown>) => number;
2725
+ borderBottom: (theme: Record<symbol, unknown>) => string;
2726
+ };
2727
+ };
2728
+ };
2729
+ label: {
2730
+ default: {
2731
+ fontWeight: (theme: Record<symbol, unknown>) => string;
2732
+ fontSize: (theme: Record<symbol, unknown>) => string;
2733
+ color: (theme: Record<symbol, unknown>) => string;
2734
+ transition: (theme: Record<symbol, unknown>) => string;
2735
+ borderBottom: (theme: Record<symbol, unknown>) => string;
2736
+ whiteSpace: string;
2737
+ flex: number;
2738
+ '&:hover': {
2739
+ ".Tabs__noticeCounter": {
2740
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2741
+ };
2742
+ };
2743
+ };
2744
+ active: {
2745
+ borderBottomColor: (theme: Record<symbol, unknown>) => string;
2746
+ };
2747
+ disabled: {
2748
+ default: {
2749
+ '&:hover': {
2750
+ ".Tabs__noticeCounter": {
2751
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2752
+ };
2753
+ };
2754
+ ".Tabs__noticeCounter": {
2755
+ color: (theme: Record<symbol, unknown>) => string;
2756
+ };
2757
+ borderBottom: (theme: Record<symbol, unknown>) => string;
2758
+ };
2759
+ active: {
2760
+ borderBottomWidth: string;
2761
+ borderBottomColor: (theme: Record<symbol, unknown>) => string;
2762
+ };
2763
+ };
2764
+ };
2765
+ panelsWrapper: {
2766
+ default: {};
2767
+ };
2768
+ panel: {
2769
+ default: {};
2770
+ };
2771
+ noticeCounter: {
2772
+ default: {
2773
+ display: string;
2774
+ alignItems: string;
2775
+ justifyContent: string;
2776
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2777
+ color: (theme: Record<symbol, unknown>) => string;
2778
+ fontWeight: (theme: Record<symbol, unknown>) => string;
2779
+ fontSize: (theme: Record<symbol, unknown>) => string;
2780
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2781
+ };
2782
+ active: {
2783
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2784
+ };
2785
+ disabled: {
2786
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2787
+ };
2788
+ };
2789
+ tabButton: {
2790
+ default: {
2791
+ width: string;
2792
+ };
2793
+ };
2794
+ };
2795
+ stepper: {
2796
+ default: {
2797
+ display: string;
2798
+ flexDirection: string;
2799
+ justifyContent: string;
2800
+ width: string;
2801
+ };
2802
+ separator: {
2803
+ default: {
2804
+ width: string;
2805
+ position: string;
2806
+ zIndex: (theme: Record<symbol, unknown>) => number;
2807
+ top: string;
2808
+ marginLeft: string;
2809
+ marginRight: string;
2810
+ transition: (theme: Record<symbol, unknown>) => string;
2811
+ borderTop: (theme: Record<symbol, unknown>) => string;
2812
+ };
2813
+ active: {};
2814
+ complete: {
2815
+ borderTopColor: (theme: Record<symbol, unknown>) => string;
2816
+ };
2817
+ inactive: {};
2818
+ };
2819
+ step: {
2820
+ default: {
2821
+ display: string;
2822
+ flexDirection: string;
2823
+ alignItems: string;
2824
+ justifyContent: string;
2825
+ minWidth: string;
2826
+ };
2827
+ active: {};
2828
+ inactive: {};
2829
+ complete: {
2830
+ cursor: import('../../types').Cursors;
2831
+ };
2832
+ };
2833
+ stepIcon: {
2834
+ default: {
2835
+ width: number;
2836
+ height: number;
2837
+ display: string;
2838
+ alignItems: string;
2839
+ justifyContent: string;
2840
+ borderRadius: (theme: Record<symbol, unknown>) => string;
2841
+ border: (theme: Record<symbol, unknown>) => string;
2842
+ fontSize: (theme: Record<symbol, unknown>) => string;
2843
+ transition: (theme: Record<symbol, unknown>) => string;
2844
+ colors: (theme: Record<symbol, unknown>) => string;
2845
+ };
2846
+ active: {
2847
+ default: {
2848
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2849
+ borderColor: (theme: Record<symbol, unknown>) => string;
2850
+ };
2851
+ success: {};
2852
+ error: {
2853
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2854
+ borderColor: (theme: Record<symbol, unknown>) => string;
2855
+ };
2856
+ };
2857
+ inactive: {
2858
+ default: {
2859
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2860
+ };
2861
+ success: {};
2862
+ error: {};
2863
+ };
2864
+ complete: {
2865
+ default: {
2866
+ fontWeight: (theme: Record<symbol, unknown>) => string;
2867
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2868
+ };
2869
+ success: {};
2870
+ error: {
2871
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
2872
+ borderColor: (theme: Record<symbol, unknown>) => string;
2873
+ };
2874
+ };
2875
+ success: {
2876
+ default: {};
2877
+ success: {};
2878
+ error: {};
2879
+ };
2880
+ };
2881
+ stepLabel: {
2882
+ default: {
2883
+ marginTop: (theme: Record<symbol, unknown>) => string;
2884
+ fontSize: (theme: Record<symbol, unknown>) => string;
2885
+ colors: (theme: Record<symbol, unknown>) => string;
2886
+ };
2887
+ active: {};
2888
+ inactive: {};
2889
+ complete: {};
2890
+ error: {};
2891
+ success: {};
2892
+ };
2893
+ icons: {
2894
+ active: {
2895
+ name: string;
2896
+ fill: string;
2897
+ };
2898
+ inactive: {
2899
+ name: string;
2900
+ fill: string;
2901
+ };
2902
+ complete: {
2903
+ name: string;
2904
+ fill: string;
2905
+ };
2906
+ error: {
2907
+ name: string;
2908
+ fill: string;
2909
+ };
2910
+ errorActive: {
2911
+ name: string;
2912
+ fill: string;
2913
+ };
2914
+ };
2915
+ };
2916
+ colors: {
2917
+ transparent: string;
2918
+ bg: {
2919
+ default: string;
2920
+ surface: string;
2921
+ input: {
2922
+ default: string;
2923
+ disabled: string;
2924
+ };
2925
+ fill: {
2926
+ disabled: string;
2927
+ hover: string;
2928
+ primary: string;
2929
+ secondary: string;
2930
+ error: {
2931
+ primary: {
2932
+ default: string;
2933
+ hover: string;
2934
+ };
2935
+ secondary: {
2936
+ default: string;
2937
+ hover: string;
2938
+ };
2939
+ };
2940
+ success: {
2941
+ primary: {
2942
+ default: string;
2943
+ hover: string;
2944
+ };
2945
+ secondary: {
2946
+ default: string;
2947
+ hover: string;
2948
+ };
2949
+ };
2950
+ warning: {
2951
+ primary: {
2952
+ default: string;
2953
+ hover: string;
2954
+ };
2955
+ secondary: {
2956
+ default: string;
2957
+ hover: string;
2958
+ };
2959
+ };
2960
+ info: {
2961
+ primary: {
2962
+ default: string;
2963
+ hover: string;
2964
+ };
2965
+ secondary: {
2966
+ default: string;
2967
+ hover: string;
2968
+ };
2969
+ };
2970
+ tooltip: {
2971
+ default: string;
2972
+ };
2973
+ input: {
2974
+ default: string;
2975
+ disabled: string;
2976
+ };
2977
+ };
2978
+ toast: {
2979
+ success: string;
2980
+ error: string;
2981
+ warning: string;
2982
+ info: string;
2983
+ };
2984
+ };
2985
+ primary: {
2986
+ default: string;
2987
+ 'default.80': string;
2988
+ 'default.10': string;
2989
+ };
2990
+ secondary: {
2991
+ default: string;
2992
+ 'default.80': string;
2993
+ 'default.10': string;
2994
+ };
2995
+ status: {
2996
+ red: string;
2997
+ 'red.80': string;
2998
+ 'red.20': string;
2999
+ 'red.10': string;
3000
+ green: string;
3001
+ 'green.80': string;
3002
+ 'green.20': string;
3003
+ 'green.10': string;
3004
+ blue: string;
3005
+ 'blue.80': string;
3006
+ 'blue.20': string;
3007
+ 'blue.10': string;
3008
+ orange: string;
3009
+ 'orange.80': string;
3010
+ 'orange.20': string;
3011
+ 'orange.10': string;
3012
+ };
3013
+ border: {
3014
+ default: string;
3015
+ disabled: string;
3016
+ primary: string;
3017
+ secondary: string;
3018
+ error: string;
3019
+ success: string;
3020
+ info: string;
3021
+ warning: string;
3022
+ focus: string;
3023
+ white: string;
3024
+ black: string;
3025
+ };
3026
+ text: {
3027
+ secondary: string;
3028
+ default: string;
3029
+ active: string;
3030
+ disabled: string;
3031
+ title: string;
3032
+ caption: string;
3033
+ error: string;
3034
+ success: string;
3035
+ info: string;
3036
+ black: string;
3037
+ white: string;
3038
+ link: {
3039
+ default: string;
3040
+ hover: string;
3041
+ };
3042
+ warning: string;
3043
+ primary: string;
3044
+ };
3045
+ icon: {
3046
+ default: string;
3047
+ disabled: string;
3048
+ primary: string;
3049
+ secondary: string;
3050
+ success: string;
3051
+ info: string;
3052
+ warning: string;
3053
+ error: string;
3054
+ link: {
3055
+ default: string;
3056
+ hover: string;
3057
+ };
3058
+ white: string;
3059
+ black: string;
3060
+ };
3061
+ neutral: {
3062
+ default: string;
3063
+ '10': string;
3064
+ '20': string;
3065
+ '30': string;
3066
+ '40': string;
3067
+ '50': string;
3068
+ '60': string;
3069
+ '70': string;
3070
+ '80': string;
3071
+ '90': string;
3072
+ '100': string;
3073
+ white: string;
3074
+ black: string;
3075
+ 'grey.100': string;
3076
+ 'grey.90': string;
3077
+ 'grey.80': string;
3078
+ 'grey.60': string;
3079
+ 'grey.40': string;
3080
+ 'grey.30': string;
3081
+ 'grey.10': string;
3082
+ };
3083
+ yellow: {
3084
+ '5': string;
3085
+ '10': string;
3086
+ '20': string;
3087
+ '30': string;
3088
+ '40': string;
3089
+ '50': string;
3090
+ '60': string;
3091
+ '70': string;
3092
+ '80': string;
3093
+ '90': string;
3094
+ '100': string;
3095
+ };
3096
+ orange: {
3097
+ '5': string;
3098
+ '10': string;
3099
+ '20': string;
3100
+ '30': string;
3101
+ '40': string;
3102
+ '50': string;
3103
+ '60': string;
3104
+ '70': string;
3105
+ '80': string;
3106
+ '90': string;
3107
+ '95': string;
3108
+ };
3109
+ red: {
3110
+ '5': string;
3111
+ '10': string;
3112
+ '20': string;
3113
+ '30': string;
3114
+ '40': string;
3115
+ '50': string;
3116
+ '60': string;
3117
+ '70': string;
3118
+ '80': string;
3119
+ '90': string;
3120
+ '95': string;
3121
+ };
3122
+ pink: {
3123
+ '5': string;
3124
+ '10': string;
3125
+ '20': string;
3126
+ '30': string;
3127
+ '40': string;
3128
+ '50': string;
3129
+ '60': string;
3130
+ '70': string;
3131
+ '80': string;
3132
+ '90': string;
3133
+ '95': string;
3134
+ };
3135
+ purple: {
3136
+ '5': string;
3137
+ '10': string;
3138
+ '20': string;
3139
+ '30': string;
3140
+ '40': string;
3141
+ '50': string;
3142
+ '60': string;
3143
+ '70': string;
3144
+ '80': string;
3145
+ '90': string;
3146
+ '95': string;
3147
+ };
3148
+ blue: {
3149
+ '5': string;
3150
+ '10': string;
3151
+ '20': string;
3152
+ '30': string;
3153
+ '40': string;
3154
+ '50': string;
3155
+ '60': string;
3156
+ '70': string;
3157
+ '80': string;
3158
+ '90': string;
3159
+ '95': string;
3160
+ };
3161
+ lightBlue: {
3162
+ '5': string;
3163
+ '10': string;
3164
+ '20': string;
3165
+ '30': string;
3166
+ '40': string;
3167
+ '50': string;
3168
+ '60': string;
3169
+ '70': string;
3170
+ '80': string;
3171
+ '90': string;
3172
+ '95': string;
3173
+ };
3174
+ teal: {
3175
+ '5': string;
3176
+ '10': string;
3177
+ '20': string;
3178
+ '30': string;
3179
+ '40': string;
3180
+ '50': string;
3181
+ '60': string;
3182
+ '70': string;
3183
+ '80': string;
3184
+ '90': string;
3185
+ '95': string;
3186
+ };
3187
+ green: {
3188
+ '5': string;
3189
+ '10': string;
3190
+ '20': string;
3191
+ '30': string;
3192
+ '40': string;
3193
+ '50': string;
3194
+ '60': string;
3195
+ '70': string;
3196
+ '80': string;
3197
+ '90': string;
3198
+ '95': string;
3199
+ };
3200
+ };
3201
+ menu: {
3202
+ wrapper: {
3203
+ default: {};
3204
+ };
3205
+ content: {
3206
+ default: {
3207
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3208
+ position: string;
3209
+ overflow: string;
3210
+ boxShadow: (theme: Record<symbol, unknown>) => string;
3211
+ };
3212
+ };
3213
+ };
3214
+ price: {
3215
+ default: {
3216
+ display: string;
3217
+ alignItems: string;
3218
+ gap: (theme: Record<symbol, unknown>) => string;
3219
+ };
3220
+ currentPrice: {
3221
+ default: {
3222
+ fontSize: (theme: Record<symbol, unknown>) => string;
3223
+ fontWeight: (theme: Record<symbol, unknown>) => string;
3224
+ lineHeight: (theme: Record<symbol, unknown>) => string;
3225
+ color: (theme: Record<symbol, unknown>) => string;
3226
+ };
3227
+ };
3228
+ oldPrice: {
3229
+ default: {
3230
+ fontSize: (theme: Record<symbol, unknown>) => string;
3231
+ fontWeight: (theme: Record<symbol, unknown>) => string;
3232
+ lineHeight: (theme: Record<symbol, unknown>) => string;
3233
+ color: (theme: Record<symbol, unknown>) => string;
3234
+ };
3235
+ };
3236
+ };
3237
+ header: {
3238
+ container: {
3239
+ fontFamily: (theme: Record<symbol, unknown>) => string;
3240
+ alignItems: string;
3241
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3242
+ maxWidth: string;
3243
+ };
3244
+ topBannerRow: {
3245
+ width: string;
3246
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3247
+ color: (theme: Record<symbol, unknown>) => string;
3248
+ };
3249
+ searchColumn: {
3250
+ default: {
3251
+ flexDirection: string;
3252
+ justifyContent: string;
3253
+ '& a': {
3254
+ margin: (theme: Record<symbol, unknown>) => string;
3255
+ };
3256
+ };
3257
+ };
3258
+ navigationRow: {
3259
+ default: {
3260
+ width: string;
3261
+ padding: (theme: Record<symbol, unknown>) => string;
3262
+ alignItems: string;
3263
+ };
3264
+ };
3265
+ actionsColumn: {
3266
+ default: {
3267
+ flexDirection: string;
3268
+ '& > button': {
3269
+ margin: (theme: Record<symbol, unknown>) => string;
3270
+ };
3271
+ };
3272
+ };
3273
+ menuRow: {
3274
+ default: {
3275
+ width: string;
3276
+ justifyContent: string;
3277
+ };
3278
+ column: {
3279
+ flexDirection: string;
3280
+ '& a': {
3281
+ margin: (theme: Record<symbol, unknown>) => string;
3282
+ };
3283
+ };
3284
+ };
3285
+ children: {
3286
+ default: {
3287
+ margin: (theme: Record<symbol, unknown>) => string;
3288
+ };
3289
+ };
3290
+ mobile: {
3291
+ openedDropdownWrapper: {
3292
+ position: string;
3293
+ top: (theme: Record<symbol, unknown>) => string;
3294
+ left: (theme: Record<symbol, unknown>) => string;
3295
+ zIndex: (theme: Record<symbol, unknown>) => string;
3296
+ background: (theme: Record<symbol, unknown>) => string;
3297
+ width: string;
3298
+ height: string;
3299
+ padding: (theme: Record<symbol, unknown>) => string;
3300
+ overflowY: string;
3301
+ };
3302
+ closeMenuIconWrapper: {
3303
+ width: string;
3304
+ height: string;
3305
+ display: string;
3306
+ justifyContent: string;
3307
+ alignItems: string;
3308
+ };
3309
+ openMenuIconWrapper: {
3310
+ width: string;
3311
+ height: string;
3312
+ display: string;
3313
+ justifyContent: string;
3314
+ alignItems: string;
3315
+ };
3316
+ menuWrapper: {
3317
+ margin: (theme: Record<symbol, unknown>) => string;
3318
+ borderTop: (theme: Record<symbol, unknown>) => string;
3319
+ };
3320
+ menuItemWrapper: {
3321
+ padding: (theme: Record<symbol, unknown>) => string;
3322
+ borderBottom: (theme: Record<symbol, unknown>) => string;
3323
+ cursor: string;
3324
+ };
3325
+ };
3326
+ icons: {
3327
+ close: {
3328
+ name: string;
3329
+ width: number;
3330
+ height: number;
3331
+ };
3332
+ right: {
3333
+ name: string;
3334
+ width: number;
3335
+ height: number;
3336
+ };
3337
+ menu: {
3338
+ name: string;
3339
+ width: number;
3340
+ height: number;
3341
+ };
3342
+ };
3343
+ };
3344
+ rating: {
3345
+ default: {
3346
+ display: string;
3347
+ gap: number;
3348
+ position: string;
3349
+ overflow: string;
3350
+ };
3351
+ progress: {
3352
+ default: {
3353
+ position: string;
3354
+ display: string;
3355
+ overflow: string;
3356
+ left: number;
3357
+ svg: {
3358
+ flexShrink: number;
3359
+ flexGrow: number;
3360
+ };
3361
+ };
3362
+ };
3363
+ radioInput: {
3364
+ default: {
3365
+ display: string;
3366
+ };
3367
+ };
3368
+ label: {
3369
+ default: {
3370
+ cursor: string;
3371
+ };
3372
+ active: {
3373
+ '&:hover': {
3374
+ transform: string;
3375
+ transition: (theme: Record<symbol, unknown>) => string;
3376
+ };
3377
+ };
3378
+ readOnly: {
3379
+ cursor: string;
3380
+ };
3381
+ };
3382
+ size: {
3383
+ sm: {
3384
+ width: number;
3385
+ height: number;
3386
+ };
3387
+ md: {
3388
+ width: number;
3389
+ height: number;
3390
+ };
3391
+ lg: {
3392
+ width: number;
3393
+ height: number;
3394
+ };
3395
+ xl: {
3396
+ width: number;
3397
+ height: number;
3398
+ };
3399
+ };
3400
+ icons: {
3401
+ rateActive: {
3402
+ name: string;
3403
+ fill: string;
3404
+ };
3405
+ rateInactive: {
3406
+ name: string;
3407
+ fill: string;
3408
+ };
3409
+ };
3410
+ };
3411
+ accordion: {
3412
+ header: {
3413
+ default: {
3414
+ width: string;
3415
+ textAlign: string;
3416
+ cursor: string;
3417
+ border: string;
3418
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3419
+ paddingTop: (theme: Record<symbol, unknown>) => string;
3420
+ paddingBottom: (theme: Record<symbol, unknown>) => string;
3421
+ display: string;
3422
+ alignItems: string;
3423
+ justifyContent: string;
3424
+ ':first-of-type': {
3425
+ flex: string;
3426
+ };
3427
+ };
3428
+ };
3429
+ content: {
3430
+ default: {
3431
+ overflow: string;
3432
+ transition: (theme: Record<symbol, unknown>) => string;
3433
+ height: string;
3434
+ };
3435
+ opened: {
3436
+ paddingTop: (theme: Record<symbol, unknown>) => string;
3437
+ paddingBottom: (theme: Record<symbol, unknown>) => string;
3438
+ };
3439
+ closed: {
3440
+ maxHeight: (theme: Record<symbol, unknown>) => string;
3441
+ paddingTop: (theme: Record<symbol, unknown>) => string;
3442
+ paddingBottom: (theme: Record<symbol, unknown>) => string;
3443
+ };
3444
+ };
3445
+ item: {
3446
+ default: {
3447
+ position: string;
3448
+ padding: (theme: Record<symbol, unknown>) => string;
3449
+ '&::after': {
3450
+ content: string;
3451
+ position: string;
3452
+ bottom: (theme: Record<symbol, unknown>) => string;
3453
+ left: (theme: Record<symbol, unknown>) => string;
3454
+ right: (theme: Record<symbol, unknown>) => string;
3455
+ height: string;
3456
+ width: string;
3457
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3458
+ };
3459
+ };
3460
+ };
3461
+ itemNoSeparator: {
3462
+ default: {
3463
+ position: string;
3464
+ padding: (theme: Record<symbol, unknown>) => string;
3465
+ };
3466
+ };
3467
+ icon: {
3468
+ default: {
3469
+ transition: (theme: Record<symbol, unknown>) => string;
3470
+ };
3471
+ opened: {
3472
+ transform: (theme: Record<symbol, unknown>) => string;
3473
+ };
3474
+ closed: {
3475
+ transform: (theme: Record<symbol, unknown>) => string;
3476
+ };
3477
+ };
3478
+ };
3479
+ inlineNotification: {
3480
+ default: {
3481
+ wrapper: {
3482
+ display: string;
3483
+ alignItems: string;
3484
+ gap: (theme: Record<symbol, unknown>) => string;
3485
+ width: string;
3486
+ };
3487
+ content: {
3488
+ flex: number;
3489
+ fontFamily: (theme: Record<symbol, unknown>) => string;
3490
+ fontWeight: (theme: Record<symbol, unknown>) => string;
3491
+ fontSize: (theme: Record<symbol, unknown>) => string;
3492
+ lineHeight: (theme: Record<symbol, unknown>) => string;
3493
+ };
3494
+ };
3495
+ success: {
3496
+ wrapper: {};
3497
+ content: {};
3498
+ icon: {
3499
+ name: string;
3500
+ fill: string;
3501
+ };
3502
+ };
3503
+ warning: {
3504
+ wrapper: {};
3505
+ content: {};
3506
+ icon: {
3507
+ name: string;
3508
+ fill: string;
3509
+ };
3510
+ };
3511
+ error: {
3512
+ wrapper: {};
3513
+ content: {};
3514
+ icon: {
3515
+ name: string;
3516
+ fill: string;
3517
+ };
3518
+ };
3519
+ info: {
3520
+ wrapper: {};
3521
+ content: {};
3522
+ icon: {
3523
+ name: string;
3524
+ fill: string;
3525
+ };
3526
+ };
3527
+ basic: {
3528
+ wrapper: {
3529
+ border: (theme: Record<symbol, unknown>) => string;
3530
+ boxShadow: (theme: Record<symbol, unknown>) => string;
3531
+ padding: (theme: Record<symbol, unknown>) => string;
3532
+ };
3533
+ content: {
3534
+ fontWeight: (theme: Record<symbol, unknown>) => string;
3535
+ };
3536
+ icon: {
3537
+ name: string;
3538
+ };
3539
+ };
3540
+ };
3541
+ switchToken: {
3542
+ default: {
3543
+ position: string;
3544
+ display: string;
3545
+ width: string;
3546
+ height: string;
3547
+ flexShrink: number;
3548
+ borderRadius: string;
3549
+ };
3550
+ label: {
3551
+ right: {
3552
+ order: number;
3553
+ };
3554
+ };
3555
+ wrapper: {
3556
+ default: {
3557
+ display: string;
3558
+ gap: string | number;
3559
+ justifyContent: string;
3560
+ cursor: string;
3561
+ };
3562
+ disabled: {
3563
+ cursor: string;
3564
+ opacity: string;
3565
+ };
3566
+ };
3567
+ slider: {
3568
+ default: {
3569
+ position: string;
3570
+ left: number;
3571
+ right: number;
3572
+ top: number;
3573
+ bottom: number;
3574
+ transition: string;
3575
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3576
+ borderRadius: string;
3577
+ '&::before': {
3578
+ position: string;
3579
+ content: string;
3580
+ borderRadius: string;
3581
+ width: string;
3582
+ height: string;
3583
+ left: string;
3584
+ bottom: string;
3585
+ transition: string;
3586
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3587
+ };
3588
+ };
3589
+ checked: {
3590
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3591
+ '&::before': {
3592
+ transform: string;
3593
+ };
3594
+ };
3595
+ };
3596
+ checkbox: {
3597
+ border: number;
3598
+ clip: string;
3599
+ height: string;
3600
+ margin: string;
3601
+ overflow: string;
3602
+ padding: number;
3603
+ position: string;
3604
+ whiteSpace: string;
3605
+ width: string;
3606
+ };
3607
+ };
3608
+ chat: {
3609
+ wrapper: {
3610
+ default: {
3611
+ display: string;
3612
+ position: string;
3613
+ height: string;
3614
+ width: string;
3615
+ overflow: string;
3616
+ };
3617
+ };
3618
+ content: {
3619
+ default: {
3620
+ boxSizing: string;
3621
+ position: string;
3622
+ width: string;
3623
+ height: string;
3624
+ display: string;
3625
+ flexDirection: string;
3626
+ justifyContent: string;
3627
+ alignItems: string;
3628
+ paddingBottom: string | number;
3629
+ gap: string | number;
3630
+ minHeight: number;
3631
+ margin: string;
3632
+ };
3633
+ md: {
3634
+ paddingLeft: string;
3635
+ paddingRight: string;
3636
+ };
3637
+ mdXl: {
3638
+ maxWidth: string;
3639
+ };
3640
+ xl: {
3641
+ maxWidth: string;
3642
+ };
3643
+ };
3644
+ mainHeader: {
3645
+ minHeight: string;
3646
+ height: string;
3647
+ display: string;
3648
+ overflow: string;
3649
+ alignItems: string;
3650
+ padding: string;
3651
+ borderBottom: string;
3652
+ borderColor: (theme: Record<symbol, unknown>) => string;
3653
+ };
3654
+ body: {
3655
+ display: string;
3656
+ flex: number;
3657
+ flexDirection: string;
3658
+ };
3659
+ sidebar: {
3660
+ default: {
3661
+ overflow: string;
3662
+ borderRight: string;
3663
+ position: string;
3664
+ transition: (theme: Record<symbol, unknown>) => string;
3665
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3666
+ borderColor: (theme: Record<symbol, unknown>) => string;
3667
+ display: string;
3668
+ flexDirection: string;
3669
+ minHeight: string;
3670
+ transform: string;
3671
+ pointerEvents: string;
3672
+ };
3673
+ open: {
3674
+ width: string;
3675
+ };
3676
+ close: {
3677
+ width: number;
3678
+ transform: string;
3679
+ pointerEvents: string;
3680
+ };
3681
+ };
3682
+ sidebarMinified: {
3683
+ default: {
3684
+ overflow: string;
3685
+ borderRight: string;
3686
+ position: string;
3687
+ transition: (theme: Record<symbol, unknown>) => string;
3688
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3689
+ borderColor: (theme: Record<symbol, unknown>) => string;
3690
+ display: string;
3691
+ flexDirection: string;
3692
+ minHeight: string;
3693
+ transform: string;
3694
+ pointerEvents: string;
3695
+ opacity: number;
3696
+ };
3697
+ open: {};
3698
+ close: {
3699
+ opacity: number;
3700
+ width: number;
3701
+ transform: string;
3702
+ pointerEvents: string;
3703
+ };
3704
+ };
3705
+ sidebarWrapper: {
3706
+ default: {
3707
+ transition: (theme: Record<symbol, unknown>) => string;
3708
+ };
3709
+ open: {
3710
+ opacity: number;
3711
+ pointerEvents: string;
3712
+ };
3713
+ close: {
3714
+ opacity: number;
3715
+ pointerEvents: string;
3716
+ };
3717
+ md: (theme: Record<symbol, unknown>) => {
3718
+ position: string;
3719
+ display: string;
3720
+ flexDirection: string;
3721
+ left: number;
3722
+ top: number;
3723
+ right: number;
3724
+ bottom: number;
3725
+ backgroundColor: string;
3726
+ zIndex: string;
3727
+ };
3728
+ };
3729
+ sidebarContentWrapper: {};
3730
+ sidebarHeader: {
3731
+ minHeight: string;
3732
+ height: string;
3733
+ display: string;
3734
+ overflow: string;
3735
+ alignItems: string;
3736
+ padding: string;
3737
+ borderBottom: string;
3738
+ borderColor: (theme: Record<symbol, unknown>) => string;
3739
+ };
3740
+ toggleButton: {
3741
+ default: {
3742
+ height: string;
3743
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3744
+ padding: (theme: Record<symbol, unknown>) => string;
3745
+ transform: string;
3746
+ '&:hover': {
3747
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3748
+ };
3749
+ };
3750
+ attrs: {
3751
+ variant: string;
3752
+ };
3753
+ open: {
3754
+ transform: string;
3755
+ };
3756
+ };
3757
+ toggleIcon: {
3758
+ name: string;
3759
+ fill: string;
3760
+ width: number;
3761
+ height: number;
3762
+ };
3763
+ };
3764
+ slider: {
3765
+ default: {
3766
+ position: string;
3767
+ display: string;
3768
+ inlineSize: string;
3769
+ color: (theme: Record<symbol, unknown>) => string;
3770
+ cursor: string;
3771
+ WebkitAppearance: string;
3772
+ appearance: string;
3773
+ padding: string;
3774
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3775
+ outline: string;
3776
+ '&[disabled]': {
3777
+ opacity: string;
3778
+ cursor: string;
3779
+ };
3780
+ '&::-webkit-slider-thumb': (theme: Record<symbol, unknown>) => {
3781
+ isolation: string;
3782
+ appearance: string;
3783
+ backgroundColor: string;
3784
+ borderRadius: string;
3785
+ blockSize: string;
3786
+ inlineSize: string;
3787
+ boxSizing: string;
3788
+ border: string;
3789
+ marginTop: string;
3790
+ };
3791
+ '&::-webkit-slider-runnable-track': (theme: Record<symbol, unknown>) => {
3792
+ blockSize: string;
3793
+ borderRadius: string;
3794
+ backgroundRepeat: string;
3795
+ backgroundColor: string;
3796
+ backgroundImage: string;
3797
+ backgroundPositionX: string;
3798
+ backgroundSize: string;
3799
+ };
3800
+ '&::-moz-range-thumb': (theme: Record<symbol, unknown>) => {
3801
+ isolation: string;
3802
+ appearance: string;
3803
+ backgroundColor: string;
3804
+ borderRadius: string;
3805
+ blockSize: string;
3806
+ inlineSize: string;
3807
+ boxSizing: string;
3808
+ border: string;
3809
+ marginTop: string;
3810
+ };
3811
+ '&::-moz-range-track': (theme: Record<symbol, unknown>) => {
3812
+ blockSize: string;
3813
+ borderRadius: string;
3814
+ backgroundRepeat: string;
3815
+ backgroundColor: string;
3816
+ backgroundImage: string;
3817
+ backgroundPositionX: string;
3818
+ backgroundSize: string;
3819
+ };
3820
+ };
3821
+ };
3822
+ radiogroup: {
3823
+ input: {
3824
+ position: string;
3825
+ opacity: number;
3826
+ pointerEvents: string;
3827
+ };
3828
+ default: {
3829
+ margin: (theme: Record<symbol, unknown>) => string;
3830
+ padding: (theme: Record<symbol, unknown>) => string;
3831
+ border: number;
3832
+ };
3833
+ label: {
3834
+ default: {
3835
+ display: string;
3836
+ padding: (theme: Record<symbol, unknown>) => string;
3837
+ fontSize: (theme: Record<symbol, unknown>) => string;
3838
+ fontWeight: (theme: Record<symbol, unknown>) => string;
3839
+ cursor: string;
3840
+ color: (theme: Record<symbol, unknown>) => string;
3841
+ width: string;
3842
+ height: string;
3843
+ alignContent: import('../../types').TextAlign;
3844
+ textAlign: import('../../types').TextAlign;
3845
+ };
3846
+ disabled: {};
3847
+ selected: {};
3848
+ hover: {
3849
+ '&:hover': {
3850
+ color: (theme: Record<symbol, unknown>) => string;
3851
+ };
3852
+ };
3853
+ };
3854
+ item: {
3855
+ default: {
3856
+ position: string;
3857
+ cursor: string;
3858
+ border: (theme: Record<symbol, unknown>) => string;
3859
+ '&:focus-within': {
3860
+ outline: (theme: Record<symbol, unknown>) => string;
3861
+ outlineOffset: string;
3862
+ };
3863
+ };
3864
+ disabled: {
3865
+ cursor: string;
3866
+ backgroundColor: (theme: Record<symbol, unknown>) => string;
3867
+ '&::after': {
3868
+ content: string;
3869
+ position: string;
3870
+ top: (theme: Record<symbol, unknown>) => string;
3871
+ left: (theme: Record<symbol, unknown>) => string;
3872
+ width: string;
3873
+ height: string;
3874
+ background: string;
3875
+ };
3876
+ };
3877
+ selected: {
3878
+ boxShadow: (theme: Record<symbol, unknown>) => string;
3879
+ border: (theme: Record<symbol, unknown>) => string;
3880
+ };
3881
+ hover: {
3882
+ '&:hover': {
3883
+ border: (theme: Record<symbol, unknown>) => string;
3884
+ };
3885
+ };
3886
+ };
3887
+ layouts: {
3888
+ column: {
3889
+ display: string;
3890
+ flexDirection: import('../../types').FlexDirection;
3891
+ };
3892
+ row: {
3893
+ display: string;
3894
+ flexDirection: import('../../types').FlexDirection;
3895
+ };
3896
+ grid: {
3897
+ display: string;
3898
+ };
3899
+ };
3900
+ };
3901
+ font: {
3902
+ family: string;
3903
+ 'family.code': string;
3904
+ weight: {
3905
+ light: number;
3906
+ normal: number;
3907
+ medium: number;
3908
+ bold: number;
3909
+ };
3910
+ size: {
3911
+ xs: string;
3912
+ sm: string;
3913
+ md: string;
3914
+ lg: string;
3915
+ xl: string;
3916
+ h1: string;
3917
+ h2: string;
3918
+ h3: string;
3919
+ h4: string;
3920
+ h5: string;
3921
+ h6: string;
3922
+ p: string;
3923
+ small: string;
3924
+ caption: string;
3925
+ header: string;
3926
+ code: string;
3927
+ kbd: string;
3928
+ sub: string;
3929
+ sup: string;
3930
+ };
3931
+ line: {
3932
+ height: {
3933
+ xs: string;
3934
+ sm: string;
3935
+ md: string;
3936
+ lg: string;
3937
+ xl: string;
3938
+ h1: string;
3939
+ h2: string;
3940
+ h3: string;
3941
+ h4: string;
3942
+ h5: string;
3943
+ h6: string;
3944
+ p: string;
3945
+ small: string;
3946
+ caption: string;
3947
+ header: string;
3948
+ code: string;
3949
+ kbd: string;
3950
+ sub: string;
3951
+ sup: string;
3952
+ };
3953
+ };
3954
+ };
3955
+ radius: {
3956
+ none: string;
3957
+ default: string;
3958
+ xs: string;
3959
+ sm: string;
3960
+ md: string;
3961
+ lg: string;
3962
+ xl: string;
3963
+ round: string;
3964
+ };
3965
+ shadows: {
3966
+ box: {
3967
+ '1': string;
3968
+ '2': string;
3969
+ '3': string;
3970
+ '4': string;
3971
+ '5': string;
3972
+ };
3973
+ modal: {
3974
+ default: string;
3975
+ content: string;
3976
+ };
3977
+ snackbar: {
3978
+ default: string;
3979
+ };
3980
+ inlineNotification: {
3981
+ default: string;
3982
+ };
3983
+ };
3984
+ breakpoints: {
3985
+ xs: string;
3986
+ sm: string;
3987
+ md: string;
3988
+ lg: string;
3989
+ xl: string;
3990
+ xxl: string;
3991
+ };
3992
+ box: {
3993
+ default: {
3994
+ display: string;
3995
+ '&:focus-visible': (theme: Record<symbol, unknown>) => {
3996
+ outline: string;
3997
+ '&:hover': {
3998
+ boxShadow: string;
3999
+ };
4000
+ };
4001
+ };
4002
+ shadowHover: {
4003
+ '&:hover': {
4004
+ boxShadow: (theme: Record<symbol, unknown>) => string;
4005
+ };
4006
+ };
4007
+ vertical: {
4008
+ default: {
4009
+ flexDirection: string;
4010
+ };
4011
+ bordered: (theme: Record<symbol, unknown>) => {
4012
+ border: string;
4013
+ };
4014
+ highlighted: (theme: Record<symbol, unknown>) => {
4015
+ '&:not(:focus-visible):hover': {
4016
+ outline: string;
4017
+ };
4018
+ };
4019
+ };
4020
+ horizontal: {
4021
+ default: {
4022
+ flexDirection: string;
4023
+ };
4024
+ bordered: (theme: Record<symbol, unknown>) => {
4025
+ border: string;
4026
+ };
4027
+ highlighted: (theme: Record<symbol, unknown>) => {
4028
+ '&:not(:focus-visible):hover': {
4029
+ outline: string;
4030
+ };
4031
+ };
4032
+ };
4033
+ };
4034
+ zIndex: {
4035
+ zero: number;
4036
+ negative: number;
4037
+ first: number;
4038
+ low: number;
4039
+ medium: number;
4040
+ high: number;
4041
+ top: number;
4042
+ };
4043
+ };
4044
+ setTheme(): void;
4045
+ addTheme(): void;
4046
+ }
4047
+ /**
4048
+ * Create a no-op theme instance
4049
+ */
4050
+ export declare const noOpTheme: NoOpTheme;