gd-design-library 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/README.md +201 -0
  2. package/assets/icons/arrow-forward.d.ts +6 -0
  3. package/assets/icons/check.d.ts +6 -0
  4. package/assets/icons/chevron-right.d.ts +6 -0
  5. package/assets/icons/cross.d.ts +6 -0
  6. package/assets/icons/dot.d.ts +6 -0
  7. package/assets/icons/home.d.ts +6 -0
  8. package/assets/icons/slash.d.ts +6 -0
  9. package/assets/icons/star.d.ts +5 -0
  10. package/assets/icons/toast_error.d.ts +5 -0
  11. package/assets/icons/toast_info.d.ts +5 -0
  12. package/assets/icons/toast_success.d.ts +5 -0
  13. package/assets/icons/toast_warning.d.ts +5 -0
  14. package/assets/index.d.ts +83 -0
  15. package/components/core/Breadcrumbs/Breadcrumbs.d.ts +2 -0
  16. package/components/core/Breadcrumbs/Breadcrumbs.types.d.ts +14 -0
  17. package/components/core/Breadcrumbs/StyledBreadcrumbs.d.ts +6 -0
  18. package/components/core/Breadcrumbs/constants.d.ts +1 -0
  19. package/components/core/Breadcrumbs/index.d.ts +2 -0
  20. package/components/core/Button/Button.d.ts +5 -0
  21. package/components/core/Button/Button.types.d.ts +52 -0
  22. package/components/core/Button/StyledButton.d.ts +5 -0
  23. package/components/core/Button/constants.d.ts +1 -0
  24. package/components/core/Button/index.d.ts +2 -0
  25. package/components/core/Form/Form.d.ts +5 -0
  26. package/components/core/Form/Form.types.d.ts +24 -0
  27. package/components/core/Form/StyledForm.d.ts +2 -0
  28. package/components/core/Form/constants.d.ts +1 -0
  29. package/components/core/Form/index.d.ts +2 -0
  30. package/components/core/Form/utils.d.ts +3 -0
  31. package/components/core/Icon/Icon.d.ts +5 -0
  32. package/components/core/Icon/Icon.types.d.ts +8 -0
  33. package/components/core/Icon/constants.d.ts +1 -0
  34. package/components/core/Icon/index.d.ts +2 -0
  35. package/components/core/Input/Input.d.ts +3 -0
  36. package/components/core/Input/Input.types.d.ts +68 -0
  37. package/components/core/Input/StyledInput.d.ts +3 -0
  38. package/components/core/Input/constants.d.ts +1 -0
  39. package/components/core/Input/index.d.ts +2 -0
  40. package/components/core/Label/Label.d.ts +5 -0
  41. package/components/core/Label/Label.types.d.ts +23 -0
  42. package/components/core/Label/StyledLabel.d.ts +2 -0
  43. package/components/core/Label/constants.d.ts +1 -0
  44. package/components/core/Label/index.d.ts +2 -0
  45. package/components/core/Link/Link.d.ts +4 -0
  46. package/components/core/Link/Link.types.d.ts +35 -0
  47. package/components/core/Link/StyledLink.d.ts +2 -0
  48. package/components/core/Link/constants.d.ts +1 -0
  49. package/components/core/Link/index.d.ts +2 -0
  50. package/components/core/List/List.d.ts +3 -0
  51. package/components/core/List/List.types.d.ts +12 -0
  52. package/components/core/List/StyledList.d.ts +3 -0
  53. package/components/core/List/constants.d.ts +1 -0
  54. package/components/core/List/index.d.ts +2 -0
  55. package/components/core/Loader/Loader.d.ts +4 -0
  56. package/components/core/Loader/Loader.types.d.ts +13 -0
  57. package/components/core/Loader/StyledLoader.d.ts +2 -0
  58. package/components/core/Loader/constants.d.ts +2 -0
  59. package/components/core/Loader/index.d.ts +2 -0
  60. package/components/core/Modal/Modal.d.ts +2 -0
  61. package/components/core/Modal/Modal.types.d.ts +12 -0
  62. package/components/core/Modal/StyledModal.d.ts +7 -0
  63. package/components/core/Modal/constants.d.ts +1 -0
  64. package/components/core/Modal/index.d.ts +2 -0
  65. package/components/core/Portal/Portal.d.ts +4 -0
  66. package/components/core/Portal/Portal.types.d.ts +7 -0
  67. package/components/core/Portal/constants.d.ts +1 -0
  68. package/components/core/Portal/index.d.ts +2 -0
  69. package/components/core/Skeleton/Skeleton.d.ts +4 -0
  70. package/components/core/Skeleton/Skeleton.types.d.ts +19 -0
  71. package/components/core/Skeleton/StyledSkeleton.d.ts +2 -0
  72. package/components/core/Skeleton/constants.d.ts +2 -0
  73. package/components/core/Skeleton/index.d.ts +2 -0
  74. package/components/core/Snackbar/Snackbar.d.ts +2 -0
  75. package/components/core/Snackbar/Snackbar.types.d.ts +41 -0
  76. package/components/core/Snackbar/SnackbarManager.d.ts +3 -0
  77. package/components/core/Snackbar/StyledSnackbar.d.ts +13 -0
  78. package/components/core/Snackbar/constants.d.ts +8 -0
  79. package/components/core/Snackbar/index.d.ts +4 -0
  80. package/components/core/Switch/StyledSwitch.d.ts +2 -0
  81. package/components/core/Switch/Switch.d.ts +2 -0
  82. package/components/core/Switch/constants.d.ts +1 -0
  83. package/components/core/Switch/index.d.ts +2 -0
  84. package/components/core/Switch/types.d.ts +18 -0
  85. package/components/core/Textarea/StyledTextarea.d.ts +3 -0
  86. package/components/core/Textarea/Textarea.d.ts +3 -0
  87. package/components/core/Textarea/Textarea.types.d.ts +42 -0
  88. package/components/core/Textarea/TextareaWidget.d.ts +3 -0
  89. package/components/core/Textarea/constants.d.ts +1 -0
  90. package/components/core/Textarea/hooks/index.d.ts +2 -0
  91. package/components/core/Textarea/hooks/useDynamicHeightAdjustment.d.ts +2 -0
  92. package/components/core/Textarea/hooks/useResizeObserver.d.ts +2 -0
  93. package/components/core/Textarea/index.d.ts +3 -0
  94. package/components/core/Tooltip/StyledTooltip.d.ts +3 -0
  95. package/components/core/Tooltip/Tooltip.d.ts +3 -0
  96. package/components/core/Tooltip/Tooltip.types.d.ts +17 -0
  97. package/components/core/Tooltip/constants.d.ts +3 -0
  98. package/components/core/Tooltip/index.d.ts +1 -0
  99. package/components/core/Tooltip/utils.d.ts +22 -0
  100. package/components/core/Typography/StyledTypography.d.ts +2 -0
  101. package/components/core/Typography/Typography.d.ts +3 -0
  102. package/components/core/Typography/Typography.types.d.ts +58 -0
  103. package/components/core/Typography/constants.d.ts +3 -0
  104. package/components/core/Typography/index.d.ts +2 -0
  105. package/components/core/Typography/utils.d.ts +2 -0
  106. package/components/core/Wrapper/StyledWrapper.d.ts +2 -0
  107. package/components/core/Wrapper/Wrapper.d.ts +5 -0
  108. package/components/core/Wrapper/Wrapper.types.d.ts +8 -0
  109. package/components/core/Wrapper/constants.d.ts +1 -0
  110. package/components/core/Wrapper/index.d.ts +2 -0
  111. package/components/core/index.d.ts +19 -0
  112. package/components/core/types/common.types.d.ts +24 -0
  113. package/components/core/types/cursors.types.d.ts +14 -0
  114. package/components/core/types/index.types.d.ts +3 -0
  115. package/components/core/types/roles.types.d.ts +3 -0
  116. package/components/domainSpecific/Stepper/Stepper.d.ts +2 -0
  117. package/components/domainSpecific/Stepper/Stepper.types.d.ts +39 -0
  118. package/components/domainSpecific/Stepper/StyledStepper.d.ts +6 -0
  119. package/components/domainSpecific/Stepper/constants.d.ts +1 -0
  120. package/components/domainSpecific/Stepper/index.d.ts +2 -0
  121. package/components/domainSpecific/Stepper/utils.d.ts +2 -0
  122. package/components/domainSpecific/Tabs/StyledTabs.d.ts +7 -0
  123. package/components/domainSpecific/Tabs/Tabs.d.ts +2 -0
  124. package/components/domainSpecific/Tabs/Tabs.types.d.ts +19 -0
  125. package/components/domainSpecific/Tabs/constants.d.ts +6 -0
  126. package/components/domainSpecific/Tabs/index.d.ts +2 -0
  127. package/components/domainSpecific/index.d.ts +2 -0
  128. package/components/index.d.ts +4 -0
  129. package/components/index.types.d.ts +37 -0
  130. package/components/layout/Column/Column.d.ts +4 -0
  131. package/components/layout/Column/Column.types.d.ts +5 -0
  132. package/components/layout/Column/StyledColumn.d.ts +2 -0
  133. package/components/layout/Column/constants.d.ts +1 -0
  134. package/components/layout/Column/index.d.ts +1 -0
  135. package/components/layout/FlexContainer/FlexContainer.d.ts +5 -0
  136. package/components/layout/FlexContainer/FlexContainer.types.d.ts +9 -0
  137. package/components/layout/FlexContainer/StyledFlexContainer.d.ts +2 -0
  138. package/components/layout/FlexContainer/constants.d.ts +1 -0
  139. package/components/layout/FlexContainer/index.d.ts +2 -0
  140. package/components/layout/FlexContainer/utils.d.ts +2 -0
  141. package/components/layout/Row/Row.d.ts +5 -0
  142. package/components/layout/Row/Row.types.d.ts +5 -0
  143. package/components/layout/Row/StyledRow.d.ts +2 -0
  144. package/components/layout/Row/constants.d.ts +1 -0
  145. package/components/layout/Row/index.d.ts +1 -0
  146. package/components/layout/index.d.ts +4 -0
  147. package/components/layout/index.types.d.ts +1 -0
  148. package/components/layout/utils.d.ts +4 -0
  149. package/constants/index.d.ts +2 -0
  150. package/constants/keyboard.d.ts +3 -0
  151. package/constants/positioning.d.ts +6 -0
  152. package/constants/timers.d.ts +2 -0
  153. package/hooks/index.d.ts +1 -0
  154. package/hooks/useAutoFocus/index.d.ts +1 -0
  155. package/hooks/useAutoFocus/useAutoFocus.d.ts +2 -0
  156. package/hooks/useTheme/index.d.ts +3 -0
  157. package/hooks/useTheme/useTheme.d.ts +4 -0
  158. package/hooks/useTheme/useTheme.types.d.ts +14 -0
  159. package/index.d.ts +3 -0
  160. package/index.js +124 -0
  161. package/index.mjs +8627 -0
  162. package/package.json +14 -0
  163. package/style.css +1 -0
  164. package/tokens/animations.d.ts +41 -0
  165. package/tokens/borders.d.ts +8 -0
  166. package/tokens/breadcrumbs.d.ts +23 -0
  167. package/tokens/button.d.ts +109 -0
  168. package/tokens/colors.d.ts +150 -0
  169. package/tokens/column.d.ts +5 -0
  170. package/tokens/cursors.d.ts +16 -0
  171. package/tokens/defaultTheme.d.ts +1425 -0
  172. package/tokens/display.d.ts +15 -0
  173. package/tokens/flexContainer.d.ts +7 -0
  174. package/tokens/font.d.ts +47 -0
  175. package/tokens/form.d.ts +3 -0
  176. package/tokens/icon.d.ts +28 -0
  177. package/tokens/index.d.ts +1339 -0
  178. package/tokens/input.d.ts +66 -0
  179. package/tokens/label.d.ts +18 -0
  180. package/tokens/link.d.ts +64 -0
  181. package/tokens/list.d.ts +76 -0
  182. package/tokens/loader.d.ts +42 -0
  183. package/tokens/modal.d.ts +59 -0
  184. package/tokens/radius.d.ts +10 -0
  185. package/tokens/reset.d.ts +1 -0
  186. package/tokens/row.d.ts +5 -0
  187. package/tokens/shadow.d.ts +10 -0
  188. package/tokens/skeleton.d.ts +24 -0
  189. package/tokens/snackbar.d.ts +198 -0
  190. package/tokens/spacing.d.ts +9 -0
  191. package/tokens/stepper.d.ts +110 -0
  192. package/tokens/switch.d.ts +8 -0
  193. package/tokens/tabs.d.ts +76 -0
  194. package/tokens/textarea.d.ts +55 -0
  195. package/tokens/tooltip.d.ts +54 -0
  196. package/tokens/types/index.types.d.ts +8 -0
  197. package/tokens/typography.d.ts +116 -0
  198. package/tokens/utils.d.ts +17 -0
  199. package/tokens/values.d.ts +28 -0
  200. package/tokens/wrapper.d.ts +29 -0
  201. package/types/accesability.d.ts +5 -0
  202. package/types/index.d.ts +2 -0
  203. package/types/misc.d.ts +6 -0
  204. package/utils/getCharCount.d.ts +3 -0
  205. package/utils/index.d.ts +2 -0
  206. package/utils/uniqueKeys.d.ts +1 -0
@@ -0,0 +1,1425 @@
1
+ export declare const defaultTheme: {
2
+ name: string;
3
+ reset: {};
4
+ typography: {
5
+ base: {
6
+ fontFamily: string;
7
+ };
8
+ inherit: {
9
+ fontSize: string;
10
+ fontWeight: string;
11
+ lineHeight: string;
12
+ };
13
+ light: {
14
+ fontWeight: number;
15
+ };
16
+ normal: {
17
+ fontWeight: number;
18
+ };
19
+ semibold: {
20
+ fontWeight: number;
21
+ };
22
+ strong: {
23
+ fontWeight: number;
24
+ };
25
+ i: {
26
+ fontStyle: string;
27
+ };
28
+ uppercase: {
29
+ textTransform: string;
30
+ };
31
+ lowercase: {
32
+ textTransform: string;
33
+ };
34
+ underline: {
35
+ textDecoration: string;
36
+ };
37
+ strike: {
38
+ textDecoration: string;
39
+ };
40
+ h1: {
41
+ fontSize: string;
42
+ fontWeight: number;
43
+ lineHeight: string;
44
+ marginTop: string;
45
+ marginBottom: string;
46
+ };
47
+ h2: {
48
+ fontSize: string;
49
+ fontWeight: number;
50
+ lineHeight: string;
51
+ marginTop: string;
52
+ marginBottom: string;
53
+ };
54
+ h3: {
55
+ fontSize: string;
56
+ fontWeight: number;
57
+ lineHeight: string;
58
+ marginTop: string;
59
+ marginBottom: string;
60
+ };
61
+ h4: {
62
+ fontSize: string;
63
+ fontWeight: number;
64
+ lineHeight: string;
65
+ marginTop: string;
66
+ marginBottom: string;
67
+ };
68
+ h5: {
69
+ fontSize: string;
70
+ fontWeight: number;
71
+ lineHeight: string;
72
+ marginTop: string;
73
+ marginBottom: string;
74
+ };
75
+ h6: {
76
+ fontSize: string;
77
+ fontWeight: number;
78
+ lineHeight: string;
79
+ marginTop: string;
80
+ marginBottom: string;
81
+ };
82
+ p: {
83
+ fontSize: string;
84
+ fontWeight: number;
85
+ lineHeight: string;
86
+ };
87
+ small: {
88
+ fontSize: string;
89
+ fontWeight: number;
90
+ lineHeight: string;
91
+ };
92
+ caption: {
93
+ fontSize: string;
94
+ fontWeight: number;
95
+ lineHeight: string;
96
+ };
97
+ span: {
98
+ xs: {
99
+ fontSize: string;
100
+ lineHeight: string;
101
+ };
102
+ sm: {
103
+ fontSize: string;
104
+ lineHeight: string;
105
+ };
106
+ md: {
107
+ fontSize: string;
108
+ lineHeight: string;
109
+ };
110
+ lg: {
111
+ fontSize: string;
112
+ lineHeight: string;
113
+ };
114
+ xl: {
115
+ fontSize: string;
116
+ lineHeight: string;
117
+ };
118
+ };
119
+ };
120
+ button: {
121
+ default: {
122
+ border: string;
123
+ outline: string;
124
+ padding: string;
125
+ display: string;
126
+ alignItems: string;
127
+ gap: string;
128
+ transition: string;
129
+ cursor: string;
130
+ '&:focus-visible': {
131
+ position: string;
132
+ '&::after': {
133
+ content: string;
134
+ position: string;
135
+ top: string;
136
+ right: string;
137
+ bottom: string;
138
+ left: string;
139
+ border: string;
140
+ };
141
+ };
142
+ '&:disabled, &:disabled *': {
143
+ cursor: string;
144
+ color: string;
145
+ };
146
+ };
147
+ icon: {
148
+ padding: string;
149
+ };
150
+ content: {};
151
+ startIcon: {};
152
+ endIcon: {};
153
+ contained: {
154
+ primary: {
155
+ background: string;
156
+ color: string;
157
+ '&:hover': {
158
+ background: string;
159
+ };
160
+ '&:disabled': {
161
+ background: string;
162
+ };
163
+ };
164
+ secondary: {
165
+ color: string;
166
+ background: string;
167
+ '&:hover': {
168
+ background: string;
169
+ };
170
+ '&:disabled': {
171
+ background: string;
172
+ };
173
+ };
174
+ };
175
+ outlined: {
176
+ primary: {
177
+ border: string;
178
+ background: string;
179
+ color: string;
180
+ '&:hover': {
181
+ background: string;
182
+ };
183
+ '&:disabled': {
184
+ background: string;
185
+ };
186
+ };
187
+ secondary: {
188
+ color: string;
189
+ background: string;
190
+ '&:hover': {
191
+ background: string;
192
+ };
193
+ '&:disabled': {
194
+ background: string;
195
+ };
196
+ };
197
+ };
198
+ text: {
199
+ primary: {
200
+ background: string;
201
+ color: string;
202
+ '&:hover': {
203
+ background: string;
204
+ };
205
+ '&:disabled': {
206
+ background: string;
207
+ };
208
+ };
209
+ secondary: {
210
+ background: string;
211
+ color: string;
212
+ '&:not(:disabled):hover': {
213
+ textDecoration: string;
214
+ };
215
+ '&:disabled': {
216
+ background: string;
217
+ };
218
+ };
219
+ };
220
+ inherit: {
221
+ primary: {
222
+ padding: string;
223
+ };
224
+ secondary: {
225
+ padding: string;
226
+ };
227
+ };
228
+ };
229
+ input: {
230
+ base: {
231
+ display: string;
232
+ boxSizing: string;
233
+ borderRadius: string;
234
+ border: string;
235
+ lineHeight: string;
236
+ paddingLeft: string;
237
+ paddingRight: string;
238
+ outline: string;
239
+ position: string;
240
+ borderColor: string;
241
+ '&[type="text"], &[type="password"]': {
242
+ height: string;
243
+ };
244
+ '&[type="text"].input--error': {
245
+ borderColor: string;
246
+ };
247
+ '&[type="text"].input--success': {
248
+ borderColor: string;
249
+ };
250
+ '&[readonly], &:disabled': {
251
+ backgroundColor: string;
252
+ cursor: string;
253
+ };
254
+ '&[type="checkbox"]': {
255
+ appearance: string;
256
+ height: string;
257
+ width: string;
258
+ backgroundColor: string;
259
+ border: string;
260
+ backgroundImage: string;
261
+ };
262
+ '&[type="checkbox"]:checked': {
263
+ backgroundRepeat: string;
264
+ backgroundPosition: string;
265
+ backgroundSize: string;
266
+ backgroundColor: string;
267
+ border: string;
268
+ backgroundImage: string;
269
+ '&[readonly], &:disabled': {
270
+ backgroundImage: string;
271
+ };
272
+ };
273
+ '&[type="radio"]': {
274
+ appearance: string;
275
+ height: string;
276
+ width: string;
277
+ border: string;
278
+ backgroundImage: string;
279
+ };
280
+ '&[type="radio"]:checked': {
281
+ backgroundImage: string;
282
+ };
283
+ };
284
+ error: {
285
+ '&[type="text"]': {
286
+ borderColor: string;
287
+ };
288
+ };
289
+ success: {
290
+ '&[type="text"]': {
291
+ borderColor: string;
292
+ };
293
+ };
294
+ };
295
+ label: {
296
+ default: {};
297
+ variants: {
298
+ default: {};
299
+ text: {
300
+ '&:hover': {};
301
+ '&:disabled': {};
302
+ primary: {
303
+ '&:hover': {};
304
+ '&:disabled': {};
305
+ };
306
+ error: {
307
+ '&:hover': {};
308
+ '&:disabled': {};
309
+ };
310
+ };
311
+ };
312
+ };
313
+ flexContainer: {
314
+ default: {
315
+ display: string;
316
+ width: string;
317
+ margin: string;
318
+ };
319
+ };
320
+ link: {
321
+ default: {
322
+ fontFamily: string;
323
+ fontSize: string;
324
+ fontWeight: string;
325
+ lineHeight: string;
326
+ color: string;
327
+ position: string;
328
+ '&:visited': {
329
+ color: string;
330
+ '&::after': {
331
+ borderBottom: string;
332
+ };
333
+ };
334
+ '&:focus, &:active, &:focus-visible': {
335
+ outline: string;
336
+ };
337
+ "&.Link--disabled": {
338
+ color: string;
339
+ cursor: import('..').Cursors;
340
+ textDecoration: string;
341
+ backgroundColor: string;
342
+ '&::after': {
343
+ borderBottomColor: string;
344
+ };
345
+ };
346
+ };
347
+ primary: {
348
+ '&::after': {
349
+ content: string;
350
+ position: string;
351
+ right: string;
352
+ bottom: string;
353
+ left: string;
354
+ borderBottom: string;
355
+ };
356
+ '&:hover': {
357
+ backgroundColor: string;
358
+ '&::after': {
359
+ borderBottomColor: string;
360
+ };
361
+ };
362
+ };
363
+ secondary: {
364
+ '&::after': {
365
+ content: string;
366
+ position: string;
367
+ right: string;
368
+ bottom: string;
369
+ left: string;
370
+ borderBottom: string;
371
+ };
372
+ '&:hover': {
373
+ backgroundColor: string;
374
+ '&::after': {
375
+ borderBottomColor: string;
376
+ };
377
+ };
378
+ };
379
+ inherit: {
380
+ color: string;
381
+ };
382
+ };
383
+ form: {
384
+ default: {};
385
+ };
386
+ wrapper: {
387
+ default: {
388
+ justifyContent: string;
389
+ alignItems: string;
390
+ backdropFilter: string;
391
+ backgroundColor: string;
392
+ };
393
+ inline: {
394
+ display: string;
395
+ };
396
+ section: {
397
+ display: string;
398
+ top: number;
399
+ left: number;
400
+ width: string;
401
+ height: string;
402
+ position: string;
403
+ zIndex: number;
404
+ };
405
+ fullPage: {
406
+ display: string;
407
+ position: string;
408
+ top: number;
409
+ left: number;
410
+ width: string;
411
+ height: string;
412
+ zIndex: number;
413
+ };
414
+ };
415
+ loader: {
416
+ default: {
417
+ border: string;
418
+ borderTop: string;
419
+ borderRadius: string;
420
+ };
421
+ xs: {
422
+ borderWidth: string;
423
+ width: string;
424
+ height: string;
425
+ minWidth: string;
426
+ minHeight: string;
427
+ };
428
+ sm: {
429
+ borderWidth: string;
430
+ width: string;
431
+ height: string;
432
+ maxWidth: string;
433
+ maxHeight: string;
434
+ };
435
+ md: {
436
+ borderWidth: string;
437
+ width: string;
438
+ height: string;
439
+ maxWidth: string;
440
+ maxHeight: string;
441
+ };
442
+ lg: {
443
+ borderWidth: string;
444
+ width: string;
445
+ height: string;
446
+ maxWidth: string;
447
+ maxHeight: string;
448
+ };
449
+ xl: {
450
+ borderWidth: string;
451
+ width: string;
452
+ height: string;
453
+ maxWidth: string;
454
+ maxHeight: string;
455
+ };
456
+ };
457
+ display: {
458
+ flex: string;
459
+ grid: string;
460
+ block: string;
461
+ inline: string;
462
+ inlineBlock: string;
463
+ none: string;
464
+ };
465
+ cursors: {
466
+ default: string;
467
+ pointer: string;
468
+ text: string;
469
+ move: string;
470
+ wait: string;
471
+ crosshair: string;
472
+ notAllowed: string;
473
+ grab: string;
474
+ grabbing: string;
475
+ help: string;
476
+ progress: string;
477
+ alias: string;
478
+ zoomIn: string;
479
+ zoomOut: string;
480
+ };
481
+ values: {
482
+ borderThin: string;
483
+ borderMedium: string;
484
+ borderThick: string;
485
+ borderNone: string;
486
+ border: {
487
+ radius: {
488
+ none: string;
489
+ };
490
+ };
491
+ screenSmall: string;
492
+ screenMedium: string;
493
+ screenLarge: string;
494
+ screenXLarge: string;
495
+ responsiveSmall: string;
496
+ responsiveMedium: string;
497
+ responsiveLarge: string;
498
+ responsiveXLarge: string;
499
+ zIndex: {
500
+ snackbar: number;
501
+ };
502
+ transitions: {
503
+ stepper: {
504
+ separator: string;
505
+ stepIcon: string;
506
+ };
507
+ };
508
+ };
509
+ flexAlignItems: {
510
+ start: string;
511
+ center: string;
512
+ end: string;
513
+ baseline: string;
514
+ stretch: string;
515
+ };
516
+ textarea: {
517
+ default: {};
518
+ variants: {
519
+ default: {};
520
+ outlined: {
521
+ '&:hover': {};
522
+ '&:active': {};
523
+ '&:focus': {};
524
+ '&:disabled': {};
525
+ '&:read-only': {};
526
+ primary: {
527
+ '&:hover': {};
528
+ '&:active': {};
529
+ '&:focus': {};
530
+ '&:disabled': {};
531
+ '&:read-only': {};
532
+ };
533
+ secondary: {
534
+ '&:hover': {};
535
+ '&:active': {};
536
+ '&:focus': {};
537
+ '&:disabled': {};
538
+ '&:read-only': {};
539
+ };
540
+ default: {
541
+ '&:hover': {};
542
+ '&:active': {};
543
+ '&:focus': {};
544
+ '&:disabled': {};
545
+ '&:read-only': {};
546
+ };
547
+ success: {
548
+ '&:hover': {};
549
+ '&:active': {};
550
+ '&:focus': {};
551
+ '&:disabled': {};
552
+ '&:read-only': {};
553
+ };
554
+ warning: {
555
+ '&:hover': {};
556
+ '&:active': {};
557
+ '&:focus': {};
558
+ '&:disabled': {};
559
+ '&:read-only': {};
560
+ };
561
+ error: {
562
+ '&:hover': {};
563
+ '&:active': {};
564
+ '&:focus': {};
565
+ '&:disabled': {};
566
+ '&:read-only': {};
567
+ };
568
+ };
569
+ };
570
+ };
571
+ row: {
572
+ default: {
573
+ display: string;
574
+ };
575
+ };
576
+ switchToggle: {
577
+ default: {
578
+ display: string;
579
+ position: string;
580
+ padding: string;
581
+ border: string;
582
+ };
583
+ };
584
+ column: {
585
+ default: {
586
+ display: string;
587
+ };
588
+ };
589
+ tooltip: {
590
+ default: {
591
+ position: "absolute";
592
+ display: string;
593
+ backgroundColor: string;
594
+ padding: string;
595
+ whiteSpace: string;
596
+ '&::after': {
597
+ position: "absolute";
598
+ content: string;
599
+ border: string;
600
+ };
601
+ '&.tooltip-bottom': {
602
+ transform: string;
603
+ '&::after': {
604
+ top: number;
605
+ left: string;
606
+ borderLeftColor: string;
607
+ borderTopColor: string;
608
+ transform: string;
609
+ };
610
+ };
611
+ '&.tooltip-top': {
612
+ transform: string;
613
+ '&::after': {
614
+ bottom: number;
615
+ left: string;
616
+ borderRightColor: string;
617
+ borderBottomColor: string;
618
+ transform: string;
619
+ };
620
+ };
621
+ '&.tooltip-left': {
622
+ transform: string;
623
+ '&::after': {
624
+ right: number;
625
+ top: string;
626
+ borderRightColor: string;
627
+ borderTopColor: string;
628
+ transform: string;
629
+ };
630
+ };
631
+ '&.tooltip-right': {
632
+ transform: string;
633
+ '&::after': {
634
+ left: number;
635
+ top: string;
636
+ borderLeftColor: string;
637
+ borderBottomColor: string;
638
+ transform: string;
639
+ };
640
+ };
641
+ };
642
+ };
643
+ animations: {
644
+ spinKeyframes: {
645
+ '0%': {
646
+ transform: string;
647
+ };
648
+ '100%': {
649
+ transform: string;
650
+ };
651
+ };
652
+ slideIn: {
653
+ '0%': {
654
+ transform: string;
655
+ opacity: number;
656
+ };
657
+ '100%': {
658
+ transform: string;
659
+ opacity: number;
660
+ };
661
+ };
662
+ slideOut: {
663
+ '0%': {
664
+ transform: string;
665
+ opacity: number;
666
+ };
667
+ '100%': {
668
+ transform: string;
669
+ opacity: number;
670
+ };
671
+ };
672
+ blinkKeyframes: {
673
+ '0%': {
674
+ opacity: number;
675
+ };
676
+ '50%': {
677
+ opacity: number;
678
+ };
679
+ '100%': {
680
+ opacity: number;
681
+ };
682
+ };
683
+ };
684
+ modal: {
685
+ header: {
686
+ display: string;
687
+ alignItems: string;
688
+ justifyContent: string;
689
+ padding: string;
690
+ fontSize: string;
691
+ fontWeight: string;
692
+ borderBottom: string;
693
+ };
694
+ title: {
695
+ display: string;
696
+ alignItems: string;
697
+ padding: string;
698
+ margin: string;
699
+ };
700
+ body: {
701
+ padding: string;
702
+ fontSize: string;
703
+ color: string;
704
+ };
705
+ content: {
706
+ background: string;
707
+ padding: string;
708
+ borderRadius: string;
709
+ maxWidth: string;
710
+ width: string;
711
+ boxShadow: string;
712
+ position: string;
713
+ display: string;
714
+ flexDirection: string;
715
+ };
716
+ footer: {
717
+ display: string;
718
+ justifyContent: string;
719
+ gap: string;
720
+ padding: string;
721
+ borderTop: string;
722
+ };
723
+ closeButton: {
724
+ background: string;
725
+ border: string;
726
+ cursor: string;
727
+ padding: string;
728
+ };
729
+ overlay: {
730
+ position: string;
731
+ top: number;
732
+ left: number;
733
+ width: string;
734
+ height: string;
735
+ background: string;
736
+ display: string;
737
+ alignItems: string;
738
+ justifyContent: string;
739
+ zIndex: number;
740
+ };
741
+ };
742
+ snackbar: {
743
+ zIndex: number;
744
+ backgroundColor: {
745
+ success: string;
746
+ error: string;
747
+ warning: string;
748
+ info: string;
749
+ };
750
+ spacing: {
751
+ body: string;
752
+ };
753
+ closeIcon: {
754
+ name: string;
755
+ width: number;
756
+ height: number;
757
+ };
758
+ container: {
759
+ position: string;
760
+ display: string;
761
+ flexDirection: string;
762
+ gap: string;
763
+ padding: string;
764
+ boxSizing: string;
765
+ maxHeight: string;
766
+ overflowY: string;
767
+ overflowX: string;
768
+ scrollbarWidth: string;
769
+ scrollbarColor: string;
770
+ zIndex: number;
771
+ '&::-webkit-scrollbar': {
772
+ width: string;
773
+ background: string;
774
+ };
775
+ '&::-webkit-scrollbar-thumb': {
776
+ background: string;
777
+ borderRadius: string;
778
+ };
779
+ '&::-webkit-scrollbar-track': {
780
+ background: string;
781
+ };
782
+ '&:hover::-webkit-scrollbar-thumb': {
783
+ background: string;
784
+ };
785
+ '&.scrolling::-webkit-scrollbar-thumb': {
786
+ background: string;
787
+ };
788
+ };
789
+ snackbar: {
790
+ base: {
791
+ position: "relative";
792
+ boxShadow: string;
793
+ width: string;
794
+ fontFamily: "\"Fira Sans\", sans-serif";
795
+ fontSize: string;
796
+ display: "flex";
797
+ flexDirection: "column";
798
+ gap: string;
799
+ color: string;
800
+ '& .content': {
801
+ display: "flex";
802
+ alignItems: "flex-start";
803
+ gap: string;
804
+ };
805
+ '& .title': {
806
+ fontWeight: number;
807
+ margin: number;
808
+ };
809
+ '& .description': {
810
+ fontWeight: number;
811
+ margin: number;
812
+ color: string;
813
+ };
814
+ '& .actions': {
815
+ display: "flex";
816
+ justifyContent: "flex-start";
817
+ gap: string;
818
+ paddingTop: string;
819
+ marginLeft: string;
820
+ };
821
+ };
822
+ background: {
823
+ default: string;
824
+ variants: {
825
+ success: string;
826
+ error: string;
827
+ warning: string;
828
+ info: string;
829
+ };
830
+ };
831
+ spacing: {
832
+ body: string;
833
+ };
834
+ animation: {
835
+ duration: string;
836
+ timing: "ease-out";
837
+ };
838
+ content: {
839
+ display: "flex";
840
+ alignItems: "flex-start";
841
+ gap: string;
842
+ };
843
+ title: {
844
+ fontWeight: number;
845
+ margin: number;
846
+ };
847
+ description: {
848
+ fontWeight: number;
849
+ margin: number;
850
+ color: string;
851
+ };
852
+ actions: {
853
+ display: "flex";
854
+ justifyContent: "flex-start";
855
+ gap: string;
856
+ paddingTop: string;
857
+ marginLeft: string;
858
+ };
859
+ };
860
+ scrollbar: {
861
+ width: string;
862
+ background: string;
863
+ thumb: {
864
+ background: string;
865
+ borderRadius: string;
866
+ };
867
+ track: {
868
+ background: string;
869
+ };
870
+ hoverThumb: {
871
+ background: string;
872
+ };
873
+ scrollingThumb: {
874
+ background: string;
875
+ };
876
+ };
877
+ positions: {
878
+ "top-left": {
879
+ top: number;
880
+ left: number;
881
+ alignItems: string;
882
+ };
883
+ "top-center": {
884
+ top: string;
885
+ left: string;
886
+ transform: string;
887
+ alignItems: string;
888
+ };
889
+ "top-right": {
890
+ top: string;
891
+ right: string;
892
+ alignItems: string;
893
+ };
894
+ "bottom-left": {
895
+ bottom: string;
896
+ left: string;
897
+ alignItems: string;
898
+ flexDirection: string;
899
+ };
900
+ "bottom-center": {
901
+ bottom: string;
902
+ left: string;
903
+ transform: string;
904
+ alignItems: string;
905
+ flexDirection: string;
906
+ };
907
+ "bottom-right": {
908
+ bottom: string;
909
+ right: string;
910
+ alignItems: string;
911
+ flexDirection: string;
912
+ };
913
+ };
914
+ defaultPosition: {
915
+ bottom: string;
916
+ right: string;
917
+ alignItems: string;
918
+ flexDirection: string;
919
+ };
920
+ actionButton: {
921
+ base: {
922
+ padding: string;
923
+ borderRadius: string;
924
+ cursor: string;
925
+ fontSize: string;
926
+ transition: "background 0.2s";
927
+ };
928
+ };
929
+ closeButton: {
930
+ position: "absolute";
931
+ top: string;
932
+ right: string;
933
+ background: string;
934
+ border: string;
935
+ cursor: string;
936
+ padding: string;
937
+ };
938
+ };
939
+ skeleton: {
940
+ default: {
941
+ display: string;
942
+ position: string;
943
+ backgroundColor: string;
944
+ alignItems: string;
945
+ justifyContent: string;
946
+ width: string;
947
+ height: string;
948
+ overflow: string;
949
+ '&:empty::before': {
950
+ content: string;
951
+ };
952
+ };
953
+ rounded: {
954
+ borderRadius: string;
955
+ };
956
+ rectangular: {
957
+ borderRadius: string;
958
+ };
959
+ circular: {
960
+ borderRadius: string;
961
+ };
962
+ };
963
+ list: {
964
+ wrapper: {
965
+ base: {
966
+ listStyle: string;
967
+ padding: string;
968
+ margin: string;
969
+ };
970
+ "ordered-circle": {
971
+ counterReset: string;
972
+ paddingLeft: string;
973
+ };
974
+ "ordered-square": {
975
+ counterReset: string;
976
+ paddingLeft: string;
977
+ };
978
+ };
979
+ item: {
980
+ base: {
981
+ display: string;
982
+ alignItems: string;
983
+ flexDirection: string;
984
+ margin: string;
985
+ };
986
+ "ordered-circle": {
987
+ '&::before': {
988
+ content: string;
989
+ counterIncrement: string;
990
+ background: string;
991
+ fontFamily: string;
992
+ fontSize: string;
993
+ fontWeight: number;
994
+ width: string;
995
+ height: string;
996
+ color: string;
997
+ display: string;
998
+ alignItems: string;
999
+ justifyContent: string;
1000
+ marginRight: string;
1001
+ borderRadius: string;
1002
+ };
1003
+ };
1004
+ "ordered-square": {
1005
+ '&::before': {
1006
+ content: string;
1007
+ counterIncrement: string;
1008
+ background: string;
1009
+ fontFamily: string;
1010
+ fontSize: string;
1011
+ fontWeight: number;
1012
+ width: string;
1013
+ height: string;
1014
+ color: string;
1015
+ display: string;
1016
+ alignItems: string;
1017
+ justifyContent: string;
1018
+ marginRight: string;
1019
+ };
1020
+ };
1021
+ "unordered-check": {
1022
+ counterReset: string;
1023
+ paddingLeft: string;
1024
+ "& .List__bulletPoint": {
1025
+ marginRight: string;
1026
+ color: string;
1027
+ };
1028
+ };
1029
+ "unordered-dot": {
1030
+ counterReset: string;
1031
+ paddingLeft: string;
1032
+ "& .List__bulletPoint": {
1033
+ marginRight: string;
1034
+ color: string;
1035
+ };
1036
+ };
1037
+ };
1038
+ };
1039
+ breadcrumbs: {
1040
+ wrapper: {
1041
+ display: string;
1042
+ alignItems: string;
1043
+ gap: number;
1044
+ };
1045
+ bordered: {
1046
+ padding: string;
1047
+ border: string;
1048
+ };
1049
+ itemStart: {
1050
+ color: string;
1051
+ };
1052
+ itemEnd: {
1053
+ color: string;
1054
+ };
1055
+ item: {};
1056
+ separator: {
1057
+ display: string;
1058
+ alignItems: string;
1059
+ color: string;
1060
+ };
1061
+ };
1062
+ icon: {
1063
+ size: {
1064
+ xs: {
1065
+ width: number;
1066
+ height: number;
1067
+ };
1068
+ sm: {
1069
+ width: number;
1070
+ height: number;
1071
+ };
1072
+ md: {
1073
+ width: number;
1074
+ height: number;
1075
+ };
1076
+ lg: {
1077
+ width: number;
1078
+ height: number;
1079
+ };
1080
+ xl: {
1081
+ width: number;
1082
+ height: number;
1083
+ };
1084
+ xxl: {
1085
+ width: number;
1086
+ height: number;
1087
+ };
1088
+ };
1089
+ };
1090
+ tabs: {
1091
+ default: {
1092
+ display: string;
1093
+ flexDirection: string;
1094
+ width: string;
1095
+ };
1096
+ header: {
1097
+ display: string;
1098
+ flexDirection: string;
1099
+ position: string;
1100
+ '&::after': {
1101
+ content: string;
1102
+ position: string;
1103
+ width: string;
1104
+ bottom: number;
1105
+ zIndex: number;
1106
+ borderBottom: string;
1107
+ };
1108
+ };
1109
+ label: {
1110
+ default: {
1111
+ fontWeight: number;
1112
+ fontSize: string;
1113
+ color: string;
1114
+ transition: string;
1115
+ borderBottom: string;
1116
+ '&:hover': {
1117
+ ".Tabs__noticeCounter": {
1118
+ backgroundColor: string;
1119
+ };
1120
+ };
1121
+ };
1122
+ active: {
1123
+ borderBottomColor: string;
1124
+ };
1125
+ disabled: {
1126
+ default: {
1127
+ '&:hover': {
1128
+ ".Tabs__noticeCounter": {
1129
+ backgroundColor: string;
1130
+ };
1131
+ };
1132
+ ".Tabs__noticeCounter": {
1133
+ color: string;
1134
+ };
1135
+ borderBottom: string;
1136
+ };
1137
+ active: {
1138
+ borderBottomWidth: string;
1139
+ borderBottomColor: string;
1140
+ };
1141
+ };
1142
+ };
1143
+ panelsWrapper: {};
1144
+ panel: {};
1145
+ noticeCounter: {
1146
+ default: {
1147
+ width?: number | undefined;
1148
+ height?: number | undefined;
1149
+ display: string;
1150
+ alignItems: string;
1151
+ justifyContent: string;
1152
+ backgroundColor: string;
1153
+ color: string;
1154
+ fontWeight: number;
1155
+ fontSize: string;
1156
+ borderRadius: string;
1157
+ };
1158
+ active: {
1159
+ backgroundColor: string;
1160
+ };
1161
+ disabled: {
1162
+ backgroundColor: string;
1163
+ };
1164
+ };
1165
+ };
1166
+ stepper: {
1167
+ default: {
1168
+ display: string;
1169
+ flexDirection: string;
1170
+ justifyContent: string;
1171
+ width: string;
1172
+ };
1173
+ separator: {
1174
+ default: {
1175
+ width: string;
1176
+ position: string;
1177
+ zIndex: number;
1178
+ top: string;
1179
+ marginLeft: string;
1180
+ marginRight: string;
1181
+ transition: string;
1182
+ borderTop: string;
1183
+ };
1184
+ active: {};
1185
+ complete: {
1186
+ borderTopColor: string;
1187
+ };
1188
+ inactive: {};
1189
+ };
1190
+ step: {
1191
+ default: {
1192
+ display: string;
1193
+ flexDirection: string;
1194
+ alignItems: string;
1195
+ justifyContent: string;
1196
+ minWidth: string;
1197
+ };
1198
+ active: {};
1199
+ inactive: {};
1200
+ complete: {
1201
+ cursor: import('..').Cursors;
1202
+ };
1203
+ };
1204
+ stepIcon: {
1205
+ default: {
1206
+ width: number;
1207
+ height: number;
1208
+ display: string;
1209
+ alignItems: string;
1210
+ justifyContent: string;
1211
+ borderRadius: string;
1212
+ border: string;
1213
+ fontSize: {
1214
+ fontSize: string;
1215
+ fontWeight: number;
1216
+ lineHeight: string;
1217
+ marginTop: string;
1218
+ marginBottom: string;
1219
+ };
1220
+ transition: string;
1221
+ colors: string;
1222
+ };
1223
+ active: {
1224
+ default: {
1225
+ backgroundColor: string;
1226
+ borderColor: string;
1227
+ };
1228
+ success: {};
1229
+ error: {
1230
+ backgroundColor: string;
1231
+ borderColor: string;
1232
+ };
1233
+ };
1234
+ inactive: {
1235
+ default: {
1236
+ backgroundColor: string;
1237
+ };
1238
+ success: {};
1239
+ error: {};
1240
+ };
1241
+ complete: {
1242
+ default: {
1243
+ fontWeight: number;
1244
+ backgroundColor: string;
1245
+ };
1246
+ success: {};
1247
+ error: {
1248
+ backgroundColor: string;
1249
+ borderColor: string;
1250
+ };
1251
+ };
1252
+ success: {
1253
+ default: {};
1254
+ success: {};
1255
+ error: {};
1256
+ };
1257
+ };
1258
+ stepLabel: {
1259
+ default: {
1260
+ marginTop: string;
1261
+ fontSize: {
1262
+ fontSize: string;
1263
+ fontWeight: number;
1264
+ lineHeight: string;
1265
+ };
1266
+ colors: string;
1267
+ };
1268
+ active: {};
1269
+ inactive: {};
1270
+ complete: {};
1271
+ error: {};
1272
+ success: {};
1273
+ };
1274
+ };
1275
+ colors: {
1276
+ transparent: string;
1277
+ primary: {
1278
+ default: string;
1279
+ 'default.80': string;
1280
+ 'default.10': string;
1281
+ };
1282
+ secondary: {
1283
+ default: string;
1284
+ 'default.80': string;
1285
+ 'default.10': string;
1286
+ };
1287
+ neutral: {
1288
+ white: string;
1289
+ black: string;
1290
+ 'grey.100': string;
1291
+ 'grey.90': string;
1292
+ 'grey.80': string;
1293
+ 'grey.40': string;
1294
+ 'grey.30': string;
1295
+ 'grey.10': string;
1296
+ };
1297
+ status: {
1298
+ red: string;
1299
+ 'red.80': string;
1300
+ 'red.20': string;
1301
+ 'red.10': string;
1302
+ green: string;
1303
+ 'green.80': string;
1304
+ 'green.20': string;
1305
+ 'green.10': string;
1306
+ blue: string;
1307
+ 'blue.80': string;
1308
+ 'blue.20': string;
1309
+ 'blue.10': string;
1310
+ orange: string;
1311
+ 'orange.80': string;
1312
+ 'orange.20': string;
1313
+ 'orange.10': string;
1314
+ };
1315
+ bg: {
1316
+ default: string;
1317
+ surface: string;
1318
+ input: {
1319
+ default: string;
1320
+ disabled: string;
1321
+ };
1322
+ fill: {
1323
+ disabled: string;
1324
+ primary: {
1325
+ default: string;
1326
+ hover: string;
1327
+ };
1328
+ secondary: {
1329
+ default: string;
1330
+ hover: string;
1331
+ };
1332
+ error: {
1333
+ primary: {
1334
+ default: string;
1335
+ hover: string;
1336
+ };
1337
+ secondary: {
1338
+ default: string;
1339
+ hover: string;
1340
+ };
1341
+ };
1342
+ success: {
1343
+ primary: {
1344
+ default: string;
1345
+ hover: string;
1346
+ };
1347
+ secondary: {
1348
+ default: string;
1349
+ hover: string;
1350
+ };
1351
+ };
1352
+ warning: {
1353
+ primary: {
1354
+ default: string;
1355
+ hover: string;
1356
+ };
1357
+ secondary: {
1358
+ default: string;
1359
+ hover: string;
1360
+ };
1361
+ };
1362
+ info: {
1363
+ primary: {
1364
+ default: string;
1365
+ hover: string;
1366
+ };
1367
+ secondary: {
1368
+ default: string;
1369
+ hover: string;
1370
+ };
1371
+ };
1372
+ };
1373
+ toast: {
1374
+ success: string;
1375
+ error: string;
1376
+ warning: string;
1377
+ info: string;
1378
+ };
1379
+ };
1380
+ border: {
1381
+ primary: {
1382
+ default: string;
1383
+ hover: string;
1384
+ };
1385
+ secondary: {
1386
+ default: string;
1387
+ disabled: string;
1388
+ hover: string;
1389
+ };
1390
+ error: string;
1391
+ success: string;
1392
+ info: string;
1393
+ warning: string;
1394
+ default: string;
1395
+ focus: string;
1396
+ };
1397
+ text: {
1398
+ default: string;
1399
+ active: string;
1400
+ disabled: string;
1401
+ title: string;
1402
+ caption: string;
1403
+ error: string;
1404
+ success: string;
1405
+ info: string;
1406
+ link: string;
1407
+ warning: string;
1408
+ primary: {
1409
+ default: string;
1410
+ hover: string;
1411
+ };
1412
+ };
1413
+ icon: {
1414
+ primary: {
1415
+ default: string;
1416
+ active: string;
1417
+ disabled: string;
1418
+ };
1419
+ success: string;
1420
+ info: string;
1421
+ warning: string;
1422
+ error: string;
1423
+ };
1424
+ };
1425
+ };