@giv-igniteui/react 2.0.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.
- package/.eslintrc.json +3 -0
- package/.turbo/turbo-build.log +18 -0
- package/CHANGELOG.md +7 -0
- package/dist/index.d.mts +1682 -0
- package/dist/index.d.ts +1682 -0
- package/dist/index.js +546 -0
- package/dist/index.mjs +504 -0
- package/package.json +32 -0
- package/src/components/Avatar/index.tsx +18 -0
- package/src/components/Avatar/styles.ts +29 -0
- package/src/components/Box.tsx +12 -0
- package/src/components/Button.tsx +84 -0
- package/src/components/Checkbox/index.tsx +20 -0
- package/src/components/Checkbox/styles.ts +55 -0
- package/src/components/Heading.tsx +27 -0
- package/src/components/MultiStep/index.tsx +23 -0
- package/src/components/MultiStep/styles.ts +33 -0
- package/src/components/Text.tsx +32 -0
- package/src/components/TextArea.tsx +34 -0
- package/src/components/TextInput/index.tsx +17 -0
- package/src/components/TextInput/styles.ts +43 -0
- package/src/index.tsx +9 -0
- package/src/styles/index.ts +36 -0
- package/tsconfig.json +6 -0
package/dist/index.d.ts
ADDED
@@ -0,0 +1,1682 @@
|
|
1
|
+
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
2
|
+
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
3
|
+
import * as react from 'react';
|
4
|
+
import { ComponentProps, ElementType } from 'react';
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
6
|
+
import * as Avatar$1 from '@radix-ui/react-avatar';
|
7
|
+
import * as Checkbox$1 from '@radix-ui/react-checkbox';
|
8
|
+
|
9
|
+
declare const Box: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
10
|
+
colors: {
|
11
|
+
white: string;
|
12
|
+
black: string;
|
13
|
+
gray100: string;
|
14
|
+
gray200: string;
|
15
|
+
gray400: string;
|
16
|
+
gray500: string;
|
17
|
+
gray600: string;
|
18
|
+
gray700: string;
|
19
|
+
gray800: string;
|
20
|
+
gray900: string;
|
21
|
+
ignite300: string;
|
22
|
+
ignite500: string;
|
23
|
+
ignite700: string;
|
24
|
+
ignite900: string;
|
25
|
+
};
|
26
|
+
fontSizes: {
|
27
|
+
xxs: string;
|
28
|
+
xs: string;
|
29
|
+
sm: string;
|
30
|
+
md: string;
|
31
|
+
lg: string;
|
32
|
+
xl: string;
|
33
|
+
'2xl': string;
|
34
|
+
'4xl': string;
|
35
|
+
'5xl': string;
|
36
|
+
'6xl': string;
|
37
|
+
'7xl': string;
|
38
|
+
'8xl': string;
|
39
|
+
'9xl': string;
|
40
|
+
};
|
41
|
+
fontWeights: {
|
42
|
+
regular: string;
|
43
|
+
medium: string;
|
44
|
+
bold: string;
|
45
|
+
};
|
46
|
+
fonts: {
|
47
|
+
default: string;
|
48
|
+
code: string;
|
49
|
+
};
|
50
|
+
lineHeights: {
|
51
|
+
shorter: string;
|
52
|
+
short: string;
|
53
|
+
base: string;
|
54
|
+
tall: string;
|
55
|
+
};
|
56
|
+
radii: {
|
57
|
+
px: string;
|
58
|
+
xs: string;
|
59
|
+
sm: string;
|
60
|
+
md: string;
|
61
|
+
lg: string;
|
62
|
+
full: string;
|
63
|
+
};
|
64
|
+
space: {
|
65
|
+
1: string;
|
66
|
+
2: string;
|
67
|
+
3: string;
|
68
|
+
4: string;
|
69
|
+
5: string;
|
70
|
+
6: string;
|
71
|
+
7: string;
|
72
|
+
8: string;
|
73
|
+
10: string;
|
74
|
+
12: string;
|
75
|
+
16: string;
|
76
|
+
20: string;
|
77
|
+
40: string;
|
78
|
+
64: string;
|
79
|
+
80: string;
|
80
|
+
};
|
81
|
+
}, {
|
82
|
+
height: "space";
|
83
|
+
width: "space";
|
84
|
+
gap: "space";
|
85
|
+
gridGap: "space";
|
86
|
+
columnGap: "space";
|
87
|
+
gridColumnGap: "space";
|
88
|
+
rowGap: "space";
|
89
|
+
gridRowGap: "space";
|
90
|
+
inset: "space";
|
91
|
+
insetBlock: "space";
|
92
|
+
insetBlockEnd: "space";
|
93
|
+
insetBlockStart: "space";
|
94
|
+
insetInline: "space";
|
95
|
+
insetInlineEnd: "space";
|
96
|
+
insetInlineStart: "space";
|
97
|
+
margin: "space";
|
98
|
+
marginTop: "space";
|
99
|
+
marginRight: "space";
|
100
|
+
marginBottom: "space";
|
101
|
+
marginLeft: "space";
|
102
|
+
marginBlock: "space";
|
103
|
+
marginBlockEnd: "space";
|
104
|
+
marginBlockStart: "space";
|
105
|
+
marginInline: "space";
|
106
|
+
marginInlineEnd: "space";
|
107
|
+
marginInlineStart: "space";
|
108
|
+
padding: "space";
|
109
|
+
paddingTop: "space";
|
110
|
+
paddingRight: "space";
|
111
|
+
paddingBottom: "space";
|
112
|
+
paddingLeft: "space";
|
113
|
+
paddingBlock: "space";
|
114
|
+
paddingBlockEnd: "space";
|
115
|
+
paddingBlockStart: "space";
|
116
|
+
paddingInline: "space";
|
117
|
+
paddingInlineEnd: "space";
|
118
|
+
paddingInlineStart: "space";
|
119
|
+
scrollMargin: "space";
|
120
|
+
scrollMarginTop: "space";
|
121
|
+
scrollMarginRight: "space";
|
122
|
+
scrollMarginBottom: "space";
|
123
|
+
scrollMarginLeft: "space";
|
124
|
+
scrollMarginBlock: "space";
|
125
|
+
scrollMarginBlockEnd: "space";
|
126
|
+
scrollMarginBlockStart: "space";
|
127
|
+
scrollMarginInline: "space";
|
128
|
+
scrollMarginInlineEnd: "space";
|
129
|
+
scrollMarginInlineStart: "space";
|
130
|
+
scrollPadding: "space";
|
131
|
+
scrollPaddingTop: "space";
|
132
|
+
scrollPaddingRight: "space";
|
133
|
+
scrollPaddingBottom: "space";
|
134
|
+
scrollPaddingLeft: "space";
|
135
|
+
scrollPaddingBlock: "space";
|
136
|
+
scrollPaddingBlockEnd: "space";
|
137
|
+
scrollPaddingBlockStart: "space";
|
138
|
+
scrollPaddingInline: "space";
|
139
|
+
scrollPaddingInlineEnd: "space";
|
140
|
+
scrollPaddingInlineStart: "space";
|
141
|
+
top: "space";
|
142
|
+
right: "space";
|
143
|
+
bottom: "space";
|
144
|
+
left: "space";
|
145
|
+
fontSize: "fontSizes";
|
146
|
+
background: "colors";
|
147
|
+
backgroundColor: "colors";
|
148
|
+
backgroundImage: "colors";
|
149
|
+
borderImage: "colors";
|
150
|
+
border: "colors";
|
151
|
+
borderBlock: "colors";
|
152
|
+
borderBlockEnd: "colors";
|
153
|
+
borderBlockStart: "colors";
|
154
|
+
borderBottom: "colors";
|
155
|
+
borderBottomColor: "colors";
|
156
|
+
borderColor: "colors";
|
157
|
+
borderInline: "colors";
|
158
|
+
borderInlineEnd: "colors";
|
159
|
+
borderInlineStart: "colors";
|
160
|
+
borderLeft: "colors";
|
161
|
+
borderLeftColor: "colors";
|
162
|
+
borderRight: "colors";
|
163
|
+
borderRightColor: "colors";
|
164
|
+
borderTop: "colors";
|
165
|
+
borderTopColor: "colors";
|
166
|
+
caretColor: "colors";
|
167
|
+
color: "colors";
|
168
|
+
columnRuleColor: "colors";
|
169
|
+
outline: "colors";
|
170
|
+
outlineColor: "colors";
|
171
|
+
fill: "colors";
|
172
|
+
stroke: "colors";
|
173
|
+
textDecorationColor: "colors";
|
174
|
+
fontFamily: "fonts";
|
175
|
+
fontWeight: "fontWeights";
|
176
|
+
lineHeight: "lineHeights";
|
177
|
+
letterSpacing: "letterSpacings";
|
178
|
+
blockSize: "sizes";
|
179
|
+
minBlockSize: "sizes";
|
180
|
+
maxBlockSize: "sizes";
|
181
|
+
inlineSize: "sizes";
|
182
|
+
minInlineSize: "sizes";
|
183
|
+
maxInlineSize: "sizes";
|
184
|
+
minWidth: "sizes";
|
185
|
+
maxWidth: "sizes";
|
186
|
+
minHeight: "sizes";
|
187
|
+
maxHeight: "sizes";
|
188
|
+
flexBasis: "sizes";
|
189
|
+
gridTemplateColumns: "sizes";
|
190
|
+
gridTemplateRows: "sizes";
|
191
|
+
borderWidth: "borderWidths";
|
192
|
+
borderTopWidth: "borderWidths";
|
193
|
+
borderLeftWidth: "borderWidths";
|
194
|
+
borderRightWidth: "borderWidths";
|
195
|
+
borderBottomWidth: "borderWidths";
|
196
|
+
borderStyle: "borderStyles";
|
197
|
+
borderTopStyle: "borderStyles";
|
198
|
+
borderLeftStyle: "borderStyles";
|
199
|
+
borderRightStyle: "borderStyles";
|
200
|
+
borderBottomStyle: "borderStyles";
|
201
|
+
borderRadius: "radii";
|
202
|
+
borderTopLeftRadius: "radii";
|
203
|
+
borderTopRightRadius: "radii";
|
204
|
+
borderBottomRightRadius: "radii";
|
205
|
+
borderBottomLeftRadius: "radii";
|
206
|
+
boxShadow: "shadows";
|
207
|
+
textShadow: "shadows";
|
208
|
+
transition: "transitions";
|
209
|
+
zIndex: "zIndices";
|
210
|
+
}, {}>>;
|
211
|
+
interface BoxProps extends ComponentProps<typeof Box> {
|
212
|
+
}
|
213
|
+
|
214
|
+
declare const Text: _stitches_react_types_styled_component.StyledComponent<"p", {
|
215
|
+
size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
216
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
217
|
+
colors: {
|
218
|
+
white: string;
|
219
|
+
black: string;
|
220
|
+
gray100: string;
|
221
|
+
gray200: string;
|
222
|
+
gray400: string;
|
223
|
+
gray500: string;
|
224
|
+
gray600: string;
|
225
|
+
gray700: string;
|
226
|
+
gray800: string;
|
227
|
+
gray900: string;
|
228
|
+
ignite300: string;
|
229
|
+
ignite500: string;
|
230
|
+
ignite700: string;
|
231
|
+
ignite900: string;
|
232
|
+
};
|
233
|
+
fontSizes: {
|
234
|
+
xxs: string;
|
235
|
+
xs: string;
|
236
|
+
sm: string;
|
237
|
+
md: string;
|
238
|
+
lg: string;
|
239
|
+
xl: string;
|
240
|
+
'2xl': string;
|
241
|
+
'4xl': string;
|
242
|
+
'5xl': string;
|
243
|
+
'6xl': string;
|
244
|
+
'7xl': string;
|
245
|
+
'8xl': string;
|
246
|
+
'9xl': string;
|
247
|
+
};
|
248
|
+
fontWeights: {
|
249
|
+
regular: string;
|
250
|
+
medium: string;
|
251
|
+
bold: string;
|
252
|
+
};
|
253
|
+
fonts: {
|
254
|
+
default: string;
|
255
|
+
code: string;
|
256
|
+
};
|
257
|
+
lineHeights: {
|
258
|
+
shorter: string;
|
259
|
+
short: string;
|
260
|
+
base: string;
|
261
|
+
tall: string;
|
262
|
+
};
|
263
|
+
radii: {
|
264
|
+
px: string;
|
265
|
+
xs: string;
|
266
|
+
sm: string;
|
267
|
+
md: string;
|
268
|
+
lg: string;
|
269
|
+
full: string;
|
270
|
+
};
|
271
|
+
space: {
|
272
|
+
1: string;
|
273
|
+
2: string;
|
274
|
+
3: string;
|
275
|
+
4: string;
|
276
|
+
5: string;
|
277
|
+
6: string;
|
278
|
+
7: string;
|
279
|
+
8: string;
|
280
|
+
10: string;
|
281
|
+
12: string;
|
282
|
+
16: string;
|
283
|
+
20: string;
|
284
|
+
40: string;
|
285
|
+
64: string;
|
286
|
+
80: string;
|
287
|
+
};
|
288
|
+
}, {
|
289
|
+
height: "space";
|
290
|
+
width: "space";
|
291
|
+
gap: "space";
|
292
|
+
gridGap: "space";
|
293
|
+
columnGap: "space";
|
294
|
+
gridColumnGap: "space";
|
295
|
+
rowGap: "space";
|
296
|
+
gridRowGap: "space";
|
297
|
+
inset: "space";
|
298
|
+
insetBlock: "space";
|
299
|
+
insetBlockEnd: "space";
|
300
|
+
insetBlockStart: "space";
|
301
|
+
insetInline: "space";
|
302
|
+
insetInlineEnd: "space";
|
303
|
+
insetInlineStart: "space";
|
304
|
+
margin: "space";
|
305
|
+
marginTop: "space";
|
306
|
+
marginRight: "space";
|
307
|
+
marginBottom: "space";
|
308
|
+
marginLeft: "space";
|
309
|
+
marginBlock: "space";
|
310
|
+
marginBlockEnd: "space";
|
311
|
+
marginBlockStart: "space";
|
312
|
+
marginInline: "space";
|
313
|
+
marginInlineEnd: "space";
|
314
|
+
marginInlineStart: "space";
|
315
|
+
padding: "space";
|
316
|
+
paddingTop: "space";
|
317
|
+
paddingRight: "space";
|
318
|
+
paddingBottom: "space";
|
319
|
+
paddingLeft: "space";
|
320
|
+
paddingBlock: "space";
|
321
|
+
paddingBlockEnd: "space";
|
322
|
+
paddingBlockStart: "space";
|
323
|
+
paddingInline: "space";
|
324
|
+
paddingInlineEnd: "space";
|
325
|
+
paddingInlineStart: "space";
|
326
|
+
scrollMargin: "space";
|
327
|
+
scrollMarginTop: "space";
|
328
|
+
scrollMarginRight: "space";
|
329
|
+
scrollMarginBottom: "space";
|
330
|
+
scrollMarginLeft: "space";
|
331
|
+
scrollMarginBlock: "space";
|
332
|
+
scrollMarginBlockEnd: "space";
|
333
|
+
scrollMarginBlockStart: "space";
|
334
|
+
scrollMarginInline: "space";
|
335
|
+
scrollMarginInlineEnd: "space";
|
336
|
+
scrollMarginInlineStart: "space";
|
337
|
+
scrollPadding: "space";
|
338
|
+
scrollPaddingTop: "space";
|
339
|
+
scrollPaddingRight: "space";
|
340
|
+
scrollPaddingBottom: "space";
|
341
|
+
scrollPaddingLeft: "space";
|
342
|
+
scrollPaddingBlock: "space";
|
343
|
+
scrollPaddingBlockEnd: "space";
|
344
|
+
scrollPaddingBlockStart: "space";
|
345
|
+
scrollPaddingInline: "space";
|
346
|
+
scrollPaddingInlineEnd: "space";
|
347
|
+
scrollPaddingInlineStart: "space";
|
348
|
+
top: "space";
|
349
|
+
right: "space";
|
350
|
+
bottom: "space";
|
351
|
+
left: "space";
|
352
|
+
fontSize: "fontSizes";
|
353
|
+
background: "colors";
|
354
|
+
backgroundColor: "colors";
|
355
|
+
backgroundImage: "colors";
|
356
|
+
borderImage: "colors";
|
357
|
+
border: "colors";
|
358
|
+
borderBlock: "colors";
|
359
|
+
borderBlockEnd: "colors";
|
360
|
+
borderBlockStart: "colors";
|
361
|
+
borderBottom: "colors";
|
362
|
+
borderBottomColor: "colors";
|
363
|
+
borderColor: "colors";
|
364
|
+
borderInline: "colors";
|
365
|
+
borderInlineEnd: "colors";
|
366
|
+
borderInlineStart: "colors";
|
367
|
+
borderLeft: "colors";
|
368
|
+
borderLeftColor: "colors";
|
369
|
+
borderRight: "colors";
|
370
|
+
borderRightColor: "colors";
|
371
|
+
borderTop: "colors";
|
372
|
+
borderTopColor: "colors";
|
373
|
+
caretColor: "colors";
|
374
|
+
color: "colors";
|
375
|
+
columnRuleColor: "colors";
|
376
|
+
outline: "colors";
|
377
|
+
outlineColor: "colors";
|
378
|
+
fill: "colors";
|
379
|
+
stroke: "colors";
|
380
|
+
textDecorationColor: "colors";
|
381
|
+
fontFamily: "fonts";
|
382
|
+
fontWeight: "fontWeights";
|
383
|
+
lineHeight: "lineHeights";
|
384
|
+
letterSpacing: "letterSpacings";
|
385
|
+
blockSize: "sizes";
|
386
|
+
minBlockSize: "sizes";
|
387
|
+
maxBlockSize: "sizes";
|
388
|
+
inlineSize: "sizes";
|
389
|
+
minInlineSize: "sizes";
|
390
|
+
maxInlineSize: "sizes";
|
391
|
+
minWidth: "sizes";
|
392
|
+
maxWidth: "sizes";
|
393
|
+
minHeight: "sizes";
|
394
|
+
maxHeight: "sizes";
|
395
|
+
flexBasis: "sizes";
|
396
|
+
gridTemplateColumns: "sizes";
|
397
|
+
gridTemplateRows: "sizes";
|
398
|
+
borderWidth: "borderWidths";
|
399
|
+
borderTopWidth: "borderWidths";
|
400
|
+
borderLeftWidth: "borderWidths";
|
401
|
+
borderRightWidth: "borderWidths";
|
402
|
+
borderBottomWidth: "borderWidths";
|
403
|
+
borderStyle: "borderStyles";
|
404
|
+
borderTopStyle: "borderStyles";
|
405
|
+
borderLeftStyle: "borderStyles";
|
406
|
+
borderRightStyle: "borderStyles";
|
407
|
+
borderBottomStyle: "borderStyles";
|
408
|
+
borderRadius: "radii";
|
409
|
+
borderTopLeftRadius: "radii";
|
410
|
+
borderTopRightRadius: "radii";
|
411
|
+
borderBottomRightRadius: "radii";
|
412
|
+
borderBottomLeftRadius: "radii";
|
413
|
+
boxShadow: "shadows";
|
414
|
+
textShadow: "shadows";
|
415
|
+
transition: "transitions";
|
416
|
+
zIndex: "zIndices";
|
417
|
+
}, {}>>;
|
418
|
+
interface TextProps extends ComponentProps<typeof Text> {
|
419
|
+
}
|
420
|
+
|
421
|
+
declare const Heading: _stitches_react_types_styled_component.StyledComponent<"h2", {
|
422
|
+
size?: "sm" | "md" | "lg" | "2xl" | "4xl" | "5xl" | "6xl" | "3xl" | undefined;
|
423
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
424
|
+
colors: {
|
425
|
+
white: string;
|
426
|
+
black: string;
|
427
|
+
gray100: string;
|
428
|
+
gray200: string;
|
429
|
+
gray400: string;
|
430
|
+
gray500: string;
|
431
|
+
gray600: string;
|
432
|
+
gray700: string;
|
433
|
+
gray800: string;
|
434
|
+
gray900: string;
|
435
|
+
ignite300: string;
|
436
|
+
ignite500: string;
|
437
|
+
ignite700: string;
|
438
|
+
ignite900: string;
|
439
|
+
};
|
440
|
+
fontSizes: {
|
441
|
+
xxs: string;
|
442
|
+
xs: string;
|
443
|
+
sm: string;
|
444
|
+
md: string;
|
445
|
+
lg: string;
|
446
|
+
xl: string;
|
447
|
+
'2xl': string;
|
448
|
+
'4xl': string;
|
449
|
+
'5xl': string;
|
450
|
+
'6xl': string;
|
451
|
+
'7xl': string;
|
452
|
+
'8xl': string;
|
453
|
+
'9xl': string;
|
454
|
+
};
|
455
|
+
fontWeights: {
|
456
|
+
regular: string;
|
457
|
+
medium: string;
|
458
|
+
bold: string;
|
459
|
+
};
|
460
|
+
fonts: {
|
461
|
+
default: string;
|
462
|
+
code: string;
|
463
|
+
};
|
464
|
+
lineHeights: {
|
465
|
+
shorter: string;
|
466
|
+
short: string;
|
467
|
+
base: string;
|
468
|
+
tall: string;
|
469
|
+
};
|
470
|
+
radii: {
|
471
|
+
px: string;
|
472
|
+
xs: string;
|
473
|
+
sm: string;
|
474
|
+
md: string;
|
475
|
+
lg: string;
|
476
|
+
full: string;
|
477
|
+
};
|
478
|
+
space: {
|
479
|
+
1: string;
|
480
|
+
2: string;
|
481
|
+
3: string;
|
482
|
+
4: string;
|
483
|
+
5: string;
|
484
|
+
6: string;
|
485
|
+
7: string;
|
486
|
+
8: string;
|
487
|
+
10: string;
|
488
|
+
12: string;
|
489
|
+
16: string;
|
490
|
+
20: string;
|
491
|
+
40: string;
|
492
|
+
64: string;
|
493
|
+
80: string;
|
494
|
+
};
|
495
|
+
}, {
|
496
|
+
height: "space";
|
497
|
+
width: "space";
|
498
|
+
gap: "space";
|
499
|
+
gridGap: "space";
|
500
|
+
columnGap: "space";
|
501
|
+
gridColumnGap: "space";
|
502
|
+
rowGap: "space";
|
503
|
+
gridRowGap: "space";
|
504
|
+
inset: "space";
|
505
|
+
insetBlock: "space";
|
506
|
+
insetBlockEnd: "space";
|
507
|
+
insetBlockStart: "space";
|
508
|
+
insetInline: "space";
|
509
|
+
insetInlineEnd: "space";
|
510
|
+
insetInlineStart: "space";
|
511
|
+
margin: "space";
|
512
|
+
marginTop: "space";
|
513
|
+
marginRight: "space";
|
514
|
+
marginBottom: "space";
|
515
|
+
marginLeft: "space";
|
516
|
+
marginBlock: "space";
|
517
|
+
marginBlockEnd: "space";
|
518
|
+
marginBlockStart: "space";
|
519
|
+
marginInline: "space";
|
520
|
+
marginInlineEnd: "space";
|
521
|
+
marginInlineStart: "space";
|
522
|
+
padding: "space";
|
523
|
+
paddingTop: "space";
|
524
|
+
paddingRight: "space";
|
525
|
+
paddingBottom: "space";
|
526
|
+
paddingLeft: "space";
|
527
|
+
paddingBlock: "space";
|
528
|
+
paddingBlockEnd: "space";
|
529
|
+
paddingBlockStart: "space";
|
530
|
+
paddingInline: "space";
|
531
|
+
paddingInlineEnd: "space";
|
532
|
+
paddingInlineStart: "space";
|
533
|
+
scrollMargin: "space";
|
534
|
+
scrollMarginTop: "space";
|
535
|
+
scrollMarginRight: "space";
|
536
|
+
scrollMarginBottom: "space";
|
537
|
+
scrollMarginLeft: "space";
|
538
|
+
scrollMarginBlock: "space";
|
539
|
+
scrollMarginBlockEnd: "space";
|
540
|
+
scrollMarginBlockStart: "space";
|
541
|
+
scrollMarginInline: "space";
|
542
|
+
scrollMarginInlineEnd: "space";
|
543
|
+
scrollMarginInlineStart: "space";
|
544
|
+
scrollPadding: "space";
|
545
|
+
scrollPaddingTop: "space";
|
546
|
+
scrollPaddingRight: "space";
|
547
|
+
scrollPaddingBottom: "space";
|
548
|
+
scrollPaddingLeft: "space";
|
549
|
+
scrollPaddingBlock: "space";
|
550
|
+
scrollPaddingBlockEnd: "space";
|
551
|
+
scrollPaddingBlockStart: "space";
|
552
|
+
scrollPaddingInline: "space";
|
553
|
+
scrollPaddingInlineEnd: "space";
|
554
|
+
scrollPaddingInlineStart: "space";
|
555
|
+
top: "space";
|
556
|
+
right: "space";
|
557
|
+
bottom: "space";
|
558
|
+
left: "space";
|
559
|
+
fontSize: "fontSizes";
|
560
|
+
background: "colors";
|
561
|
+
backgroundColor: "colors";
|
562
|
+
backgroundImage: "colors";
|
563
|
+
borderImage: "colors";
|
564
|
+
border: "colors";
|
565
|
+
borderBlock: "colors";
|
566
|
+
borderBlockEnd: "colors";
|
567
|
+
borderBlockStart: "colors";
|
568
|
+
borderBottom: "colors";
|
569
|
+
borderBottomColor: "colors";
|
570
|
+
borderColor: "colors";
|
571
|
+
borderInline: "colors";
|
572
|
+
borderInlineEnd: "colors";
|
573
|
+
borderInlineStart: "colors";
|
574
|
+
borderLeft: "colors";
|
575
|
+
borderLeftColor: "colors";
|
576
|
+
borderRight: "colors";
|
577
|
+
borderRightColor: "colors";
|
578
|
+
borderTop: "colors";
|
579
|
+
borderTopColor: "colors";
|
580
|
+
caretColor: "colors";
|
581
|
+
color: "colors";
|
582
|
+
columnRuleColor: "colors";
|
583
|
+
outline: "colors";
|
584
|
+
outlineColor: "colors";
|
585
|
+
fill: "colors";
|
586
|
+
stroke: "colors";
|
587
|
+
textDecorationColor: "colors";
|
588
|
+
fontFamily: "fonts";
|
589
|
+
fontWeight: "fontWeights";
|
590
|
+
lineHeight: "lineHeights";
|
591
|
+
letterSpacing: "letterSpacings";
|
592
|
+
blockSize: "sizes";
|
593
|
+
minBlockSize: "sizes";
|
594
|
+
maxBlockSize: "sizes";
|
595
|
+
inlineSize: "sizes";
|
596
|
+
minInlineSize: "sizes";
|
597
|
+
maxInlineSize: "sizes";
|
598
|
+
minWidth: "sizes";
|
599
|
+
maxWidth: "sizes";
|
600
|
+
minHeight: "sizes";
|
601
|
+
maxHeight: "sizes";
|
602
|
+
flexBasis: "sizes";
|
603
|
+
gridTemplateColumns: "sizes";
|
604
|
+
gridTemplateRows: "sizes";
|
605
|
+
borderWidth: "borderWidths";
|
606
|
+
borderTopWidth: "borderWidths";
|
607
|
+
borderLeftWidth: "borderWidths";
|
608
|
+
borderRightWidth: "borderWidths";
|
609
|
+
borderBottomWidth: "borderWidths";
|
610
|
+
borderStyle: "borderStyles";
|
611
|
+
borderTopStyle: "borderStyles";
|
612
|
+
borderLeftStyle: "borderStyles";
|
613
|
+
borderRightStyle: "borderStyles";
|
614
|
+
borderBottomStyle: "borderStyles";
|
615
|
+
borderRadius: "radii";
|
616
|
+
borderTopLeftRadius: "radii";
|
617
|
+
borderTopRightRadius: "radii";
|
618
|
+
borderBottomRightRadius: "radii";
|
619
|
+
borderBottomLeftRadius: "radii";
|
620
|
+
boxShadow: "shadows";
|
621
|
+
textShadow: "shadows";
|
622
|
+
transition: "transitions";
|
623
|
+
zIndex: "zIndices";
|
624
|
+
}, {}>>;
|
625
|
+
interface HeadingProps extends ComponentProps<typeof Heading> {
|
626
|
+
}
|
627
|
+
|
628
|
+
declare const AvatarImage: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Avatar$1.AvatarImageProps & react.RefAttributes<HTMLImageElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
629
|
+
colors: {
|
630
|
+
white: string;
|
631
|
+
black: string;
|
632
|
+
gray100: string;
|
633
|
+
gray200: string;
|
634
|
+
gray400: string;
|
635
|
+
gray500: string;
|
636
|
+
gray600: string;
|
637
|
+
gray700: string;
|
638
|
+
gray800: string;
|
639
|
+
gray900: string;
|
640
|
+
ignite300: string;
|
641
|
+
ignite500: string;
|
642
|
+
ignite700: string;
|
643
|
+
ignite900: string;
|
644
|
+
};
|
645
|
+
fontSizes: {
|
646
|
+
xxs: string;
|
647
|
+
xs: string;
|
648
|
+
sm: string;
|
649
|
+
md: string;
|
650
|
+
lg: string;
|
651
|
+
xl: string;
|
652
|
+
'2xl': string;
|
653
|
+
'4xl': string;
|
654
|
+
'5xl': string;
|
655
|
+
'6xl': string;
|
656
|
+
'7xl': string;
|
657
|
+
'8xl': string;
|
658
|
+
'9xl': string;
|
659
|
+
};
|
660
|
+
fontWeights: {
|
661
|
+
regular: string;
|
662
|
+
medium: string;
|
663
|
+
bold: string;
|
664
|
+
};
|
665
|
+
fonts: {
|
666
|
+
default: string;
|
667
|
+
code: string;
|
668
|
+
};
|
669
|
+
lineHeights: {
|
670
|
+
shorter: string;
|
671
|
+
short: string;
|
672
|
+
base: string;
|
673
|
+
tall: string;
|
674
|
+
};
|
675
|
+
radii: {
|
676
|
+
px: string;
|
677
|
+
xs: string;
|
678
|
+
sm: string;
|
679
|
+
md: string;
|
680
|
+
lg: string;
|
681
|
+
full: string;
|
682
|
+
};
|
683
|
+
space: {
|
684
|
+
1: string;
|
685
|
+
2: string;
|
686
|
+
3: string;
|
687
|
+
4: string;
|
688
|
+
5: string;
|
689
|
+
6: string;
|
690
|
+
7: string;
|
691
|
+
8: string;
|
692
|
+
10: string;
|
693
|
+
12: string;
|
694
|
+
16: string;
|
695
|
+
20: string;
|
696
|
+
40: string;
|
697
|
+
64: string;
|
698
|
+
80: string;
|
699
|
+
};
|
700
|
+
}, {
|
701
|
+
height: "space";
|
702
|
+
width: "space";
|
703
|
+
gap: "space";
|
704
|
+
gridGap: "space";
|
705
|
+
columnGap: "space";
|
706
|
+
gridColumnGap: "space";
|
707
|
+
rowGap: "space";
|
708
|
+
gridRowGap: "space";
|
709
|
+
inset: "space";
|
710
|
+
insetBlock: "space";
|
711
|
+
insetBlockEnd: "space";
|
712
|
+
insetBlockStart: "space";
|
713
|
+
insetInline: "space";
|
714
|
+
insetInlineEnd: "space";
|
715
|
+
insetInlineStart: "space";
|
716
|
+
margin: "space";
|
717
|
+
marginTop: "space";
|
718
|
+
marginRight: "space";
|
719
|
+
marginBottom: "space";
|
720
|
+
marginLeft: "space";
|
721
|
+
marginBlock: "space";
|
722
|
+
marginBlockEnd: "space";
|
723
|
+
marginBlockStart: "space";
|
724
|
+
marginInline: "space";
|
725
|
+
marginInlineEnd: "space";
|
726
|
+
marginInlineStart: "space";
|
727
|
+
padding: "space";
|
728
|
+
paddingTop: "space";
|
729
|
+
paddingRight: "space";
|
730
|
+
paddingBottom: "space";
|
731
|
+
paddingLeft: "space";
|
732
|
+
paddingBlock: "space";
|
733
|
+
paddingBlockEnd: "space";
|
734
|
+
paddingBlockStart: "space";
|
735
|
+
paddingInline: "space";
|
736
|
+
paddingInlineEnd: "space";
|
737
|
+
paddingInlineStart: "space";
|
738
|
+
scrollMargin: "space";
|
739
|
+
scrollMarginTop: "space";
|
740
|
+
scrollMarginRight: "space";
|
741
|
+
scrollMarginBottom: "space";
|
742
|
+
scrollMarginLeft: "space";
|
743
|
+
scrollMarginBlock: "space";
|
744
|
+
scrollMarginBlockEnd: "space";
|
745
|
+
scrollMarginBlockStart: "space";
|
746
|
+
scrollMarginInline: "space";
|
747
|
+
scrollMarginInlineEnd: "space";
|
748
|
+
scrollMarginInlineStart: "space";
|
749
|
+
scrollPadding: "space";
|
750
|
+
scrollPaddingTop: "space";
|
751
|
+
scrollPaddingRight: "space";
|
752
|
+
scrollPaddingBottom: "space";
|
753
|
+
scrollPaddingLeft: "space";
|
754
|
+
scrollPaddingBlock: "space";
|
755
|
+
scrollPaddingBlockEnd: "space";
|
756
|
+
scrollPaddingBlockStart: "space";
|
757
|
+
scrollPaddingInline: "space";
|
758
|
+
scrollPaddingInlineEnd: "space";
|
759
|
+
scrollPaddingInlineStart: "space";
|
760
|
+
top: "space";
|
761
|
+
right: "space";
|
762
|
+
bottom: "space";
|
763
|
+
left: "space";
|
764
|
+
fontSize: "fontSizes";
|
765
|
+
background: "colors";
|
766
|
+
backgroundColor: "colors";
|
767
|
+
backgroundImage: "colors";
|
768
|
+
borderImage: "colors";
|
769
|
+
border: "colors";
|
770
|
+
borderBlock: "colors";
|
771
|
+
borderBlockEnd: "colors";
|
772
|
+
borderBlockStart: "colors";
|
773
|
+
borderBottom: "colors";
|
774
|
+
borderBottomColor: "colors";
|
775
|
+
borderColor: "colors";
|
776
|
+
borderInline: "colors";
|
777
|
+
borderInlineEnd: "colors";
|
778
|
+
borderInlineStart: "colors";
|
779
|
+
borderLeft: "colors";
|
780
|
+
borderLeftColor: "colors";
|
781
|
+
borderRight: "colors";
|
782
|
+
borderRightColor: "colors";
|
783
|
+
borderTop: "colors";
|
784
|
+
borderTopColor: "colors";
|
785
|
+
caretColor: "colors";
|
786
|
+
color: "colors";
|
787
|
+
columnRuleColor: "colors";
|
788
|
+
outline: "colors";
|
789
|
+
outlineColor: "colors";
|
790
|
+
fill: "colors";
|
791
|
+
stroke: "colors";
|
792
|
+
textDecorationColor: "colors";
|
793
|
+
fontFamily: "fonts";
|
794
|
+
fontWeight: "fontWeights";
|
795
|
+
lineHeight: "lineHeights";
|
796
|
+
letterSpacing: "letterSpacings";
|
797
|
+
blockSize: "sizes";
|
798
|
+
minBlockSize: "sizes";
|
799
|
+
maxBlockSize: "sizes";
|
800
|
+
inlineSize: "sizes";
|
801
|
+
minInlineSize: "sizes";
|
802
|
+
maxInlineSize: "sizes";
|
803
|
+
minWidth: "sizes";
|
804
|
+
maxWidth: "sizes";
|
805
|
+
minHeight: "sizes";
|
806
|
+
maxHeight: "sizes";
|
807
|
+
flexBasis: "sizes";
|
808
|
+
gridTemplateColumns: "sizes";
|
809
|
+
gridTemplateRows: "sizes";
|
810
|
+
borderWidth: "borderWidths";
|
811
|
+
borderTopWidth: "borderWidths";
|
812
|
+
borderLeftWidth: "borderWidths";
|
813
|
+
borderRightWidth: "borderWidths";
|
814
|
+
borderBottomWidth: "borderWidths";
|
815
|
+
borderStyle: "borderStyles";
|
816
|
+
borderTopStyle: "borderStyles";
|
817
|
+
borderLeftStyle: "borderStyles";
|
818
|
+
borderRightStyle: "borderStyles";
|
819
|
+
borderBottomStyle: "borderStyles";
|
820
|
+
borderRadius: "radii";
|
821
|
+
borderTopLeftRadius: "radii";
|
822
|
+
borderTopRightRadius: "radii";
|
823
|
+
borderBottomRightRadius: "radii";
|
824
|
+
borderBottomLeftRadius: "radii";
|
825
|
+
boxShadow: "shadows";
|
826
|
+
textShadow: "shadows";
|
827
|
+
transition: "transitions";
|
828
|
+
zIndex: "zIndices";
|
829
|
+
}, {}>>;
|
830
|
+
|
831
|
+
interface AvatarProps extends ComponentProps<typeof AvatarImage> {
|
832
|
+
}
|
833
|
+
declare function Avatar(props: AvatarProps): react_jsx_runtime.JSX.Element;
|
834
|
+
declare namespace Avatar {
|
835
|
+
var displayName: string;
|
836
|
+
}
|
837
|
+
|
838
|
+
declare const Button: _stitches_react_types_styled_component.StyledComponent<"button", {
|
839
|
+
variant?: "primary" | "secondary" | "tertiary" | undefined;
|
840
|
+
size?: "sm" | "md" | undefined;
|
841
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
842
|
+
colors: {
|
843
|
+
white: string;
|
844
|
+
black: string;
|
845
|
+
gray100: string;
|
846
|
+
gray200: string;
|
847
|
+
gray400: string;
|
848
|
+
gray500: string;
|
849
|
+
gray600: string;
|
850
|
+
gray700: string;
|
851
|
+
gray800: string;
|
852
|
+
gray900: string;
|
853
|
+
ignite300: string;
|
854
|
+
ignite500: string;
|
855
|
+
ignite700: string;
|
856
|
+
ignite900: string;
|
857
|
+
};
|
858
|
+
fontSizes: {
|
859
|
+
xxs: string;
|
860
|
+
xs: string;
|
861
|
+
sm: string;
|
862
|
+
md: string;
|
863
|
+
lg: string;
|
864
|
+
xl: string;
|
865
|
+
'2xl': string;
|
866
|
+
'4xl': string;
|
867
|
+
'5xl': string;
|
868
|
+
'6xl': string;
|
869
|
+
'7xl': string;
|
870
|
+
'8xl': string;
|
871
|
+
'9xl': string;
|
872
|
+
};
|
873
|
+
fontWeights: {
|
874
|
+
regular: string;
|
875
|
+
medium: string;
|
876
|
+
bold: string;
|
877
|
+
};
|
878
|
+
fonts: {
|
879
|
+
default: string;
|
880
|
+
code: string;
|
881
|
+
};
|
882
|
+
lineHeights: {
|
883
|
+
shorter: string;
|
884
|
+
short: string;
|
885
|
+
base: string;
|
886
|
+
tall: string;
|
887
|
+
};
|
888
|
+
radii: {
|
889
|
+
px: string;
|
890
|
+
xs: string;
|
891
|
+
sm: string;
|
892
|
+
md: string;
|
893
|
+
lg: string;
|
894
|
+
full: string;
|
895
|
+
};
|
896
|
+
space: {
|
897
|
+
1: string;
|
898
|
+
2: string;
|
899
|
+
3: string;
|
900
|
+
4: string;
|
901
|
+
5: string;
|
902
|
+
6: string;
|
903
|
+
7: string;
|
904
|
+
8: string;
|
905
|
+
10: string;
|
906
|
+
12: string;
|
907
|
+
16: string;
|
908
|
+
20: string;
|
909
|
+
40: string;
|
910
|
+
64: string;
|
911
|
+
80: string;
|
912
|
+
};
|
913
|
+
}, {
|
914
|
+
height: "space";
|
915
|
+
width: "space";
|
916
|
+
gap: "space";
|
917
|
+
gridGap: "space";
|
918
|
+
columnGap: "space";
|
919
|
+
gridColumnGap: "space";
|
920
|
+
rowGap: "space";
|
921
|
+
gridRowGap: "space";
|
922
|
+
inset: "space";
|
923
|
+
insetBlock: "space";
|
924
|
+
insetBlockEnd: "space";
|
925
|
+
insetBlockStart: "space";
|
926
|
+
insetInline: "space";
|
927
|
+
insetInlineEnd: "space";
|
928
|
+
insetInlineStart: "space";
|
929
|
+
margin: "space";
|
930
|
+
marginTop: "space";
|
931
|
+
marginRight: "space";
|
932
|
+
marginBottom: "space";
|
933
|
+
marginLeft: "space";
|
934
|
+
marginBlock: "space";
|
935
|
+
marginBlockEnd: "space";
|
936
|
+
marginBlockStart: "space";
|
937
|
+
marginInline: "space";
|
938
|
+
marginInlineEnd: "space";
|
939
|
+
marginInlineStart: "space";
|
940
|
+
padding: "space";
|
941
|
+
paddingTop: "space";
|
942
|
+
paddingRight: "space";
|
943
|
+
paddingBottom: "space";
|
944
|
+
paddingLeft: "space";
|
945
|
+
paddingBlock: "space";
|
946
|
+
paddingBlockEnd: "space";
|
947
|
+
paddingBlockStart: "space";
|
948
|
+
paddingInline: "space";
|
949
|
+
paddingInlineEnd: "space";
|
950
|
+
paddingInlineStart: "space";
|
951
|
+
scrollMargin: "space";
|
952
|
+
scrollMarginTop: "space";
|
953
|
+
scrollMarginRight: "space";
|
954
|
+
scrollMarginBottom: "space";
|
955
|
+
scrollMarginLeft: "space";
|
956
|
+
scrollMarginBlock: "space";
|
957
|
+
scrollMarginBlockEnd: "space";
|
958
|
+
scrollMarginBlockStart: "space";
|
959
|
+
scrollMarginInline: "space";
|
960
|
+
scrollMarginInlineEnd: "space";
|
961
|
+
scrollMarginInlineStart: "space";
|
962
|
+
scrollPadding: "space";
|
963
|
+
scrollPaddingTop: "space";
|
964
|
+
scrollPaddingRight: "space";
|
965
|
+
scrollPaddingBottom: "space";
|
966
|
+
scrollPaddingLeft: "space";
|
967
|
+
scrollPaddingBlock: "space";
|
968
|
+
scrollPaddingBlockEnd: "space";
|
969
|
+
scrollPaddingBlockStart: "space";
|
970
|
+
scrollPaddingInline: "space";
|
971
|
+
scrollPaddingInlineEnd: "space";
|
972
|
+
scrollPaddingInlineStart: "space";
|
973
|
+
top: "space";
|
974
|
+
right: "space";
|
975
|
+
bottom: "space";
|
976
|
+
left: "space";
|
977
|
+
fontSize: "fontSizes";
|
978
|
+
background: "colors";
|
979
|
+
backgroundColor: "colors";
|
980
|
+
backgroundImage: "colors";
|
981
|
+
borderImage: "colors";
|
982
|
+
border: "colors";
|
983
|
+
borderBlock: "colors";
|
984
|
+
borderBlockEnd: "colors";
|
985
|
+
borderBlockStart: "colors";
|
986
|
+
borderBottom: "colors";
|
987
|
+
borderBottomColor: "colors";
|
988
|
+
borderColor: "colors";
|
989
|
+
borderInline: "colors";
|
990
|
+
borderInlineEnd: "colors";
|
991
|
+
borderInlineStart: "colors";
|
992
|
+
borderLeft: "colors";
|
993
|
+
borderLeftColor: "colors";
|
994
|
+
borderRight: "colors";
|
995
|
+
borderRightColor: "colors";
|
996
|
+
borderTop: "colors";
|
997
|
+
borderTopColor: "colors";
|
998
|
+
caretColor: "colors";
|
999
|
+
color: "colors";
|
1000
|
+
columnRuleColor: "colors";
|
1001
|
+
outline: "colors";
|
1002
|
+
outlineColor: "colors";
|
1003
|
+
fill: "colors";
|
1004
|
+
stroke: "colors";
|
1005
|
+
textDecorationColor: "colors";
|
1006
|
+
fontFamily: "fonts";
|
1007
|
+
fontWeight: "fontWeights";
|
1008
|
+
lineHeight: "lineHeights";
|
1009
|
+
letterSpacing: "letterSpacings";
|
1010
|
+
blockSize: "sizes";
|
1011
|
+
minBlockSize: "sizes";
|
1012
|
+
maxBlockSize: "sizes";
|
1013
|
+
inlineSize: "sizes";
|
1014
|
+
minInlineSize: "sizes";
|
1015
|
+
maxInlineSize: "sizes";
|
1016
|
+
minWidth: "sizes";
|
1017
|
+
maxWidth: "sizes";
|
1018
|
+
minHeight: "sizes";
|
1019
|
+
maxHeight: "sizes";
|
1020
|
+
flexBasis: "sizes";
|
1021
|
+
gridTemplateColumns: "sizes";
|
1022
|
+
gridTemplateRows: "sizes";
|
1023
|
+
borderWidth: "borderWidths";
|
1024
|
+
borderTopWidth: "borderWidths";
|
1025
|
+
borderLeftWidth: "borderWidths";
|
1026
|
+
borderRightWidth: "borderWidths";
|
1027
|
+
borderBottomWidth: "borderWidths";
|
1028
|
+
borderStyle: "borderStyles";
|
1029
|
+
borderTopStyle: "borderStyles";
|
1030
|
+
borderLeftStyle: "borderStyles";
|
1031
|
+
borderRightStyle: "borderStyles";
|
1032
|
+
borderBottomStyle: "borderStyles";
|
1033
|
+
borderRadius: "radii";
|
1034
|
+
borderTopLeftRadius: "radii";
|
1035
|
+
borderTopRightRadius: "radii";
|
1036
|
+
borderBottomRightRadius: "radii";
|
1037
|
+
borderBottomLeftRadius: "radii";
|
1038
|
+
boxShadow: "shadows";
|
1039
|
+
textShadow: "shadows";
|
1040
|
+
transition: "transitions";
|
1041
|
+
zIndex: "zIndices";
|
1042
|
+
}, {}>>;
|
1043
|
+
interface ButtonProps extends ComponentProps<typeof Button> {
|
1044
|
+
as?: ElementType;
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
declare const Input: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
1048
|
+
colors: {
|
1049
|
+
white: string;
|
1050
|
+
black: string;
|
1051
|
+
gray100: string;
|
1052
|
+
gray200: string;
|
1053
|
+
gray400: string;
|
1054
|
+
gray500: string;
|
1055
|
+
gray600: string;
|
1056
|
+
gray700: string;
|
1057
|
+
gray800: string;
|
1058
|
+
gray900: string;
|
1059
|
+
ignite300: string;
|
1060
|
+
ignite500: string;
|
1061
|
+
ignite700: string;
|
1062
|
+
ignite900: string;
|
1063
|
+
};
|
1064
|
+
fontSizes: {
|
1065
|
+
xxs: string;
|
1066
|
+
xs: string;
|
1067
|
+
sm: string;
|
1068
|
+
md: string;
|
1069
|
+
lg: string;
|
1070
|
+
xl: string;
|
1071
|
+
'2xl': string;
|
1072
|
+
'4xl': string;
|
1073
|
+
'5xl': string;
|
1074
|
+
'6xl': string;
|
1075
|
+
'7xl': string;
|
1076
|
+
'8xl': string;
|
1077
|
+
'9xl': string;
|
1078
|
+
};
|
1079
|
+
fontWeights: {
|
1080
|
+
regular: string;
|
1081
|
+
medium: string;
|
1082
|
+
bold: string;
|
1083
|
+
};
|
1084
|
+
fonts: {
|
1085
|
+
default: string;
|
1086
|
+
code: string;
|
1087
|
+
};
|
1088
|
+
lineHeights: {
|
1089
|
+
shorter: string;
|
1090
|
+
short: string;
|
1091
|
+
base: string;
|
1092
|
+
tall: string;
|
1093
|
+
};
|
1094
|
+
radii: {
|
1095
|
+
px: string;
|
1096
|
+
xs: string;
|
1097
|
+
sm: string;
|
1098
|
+
md: string;
|
1099
|
+
lg: string;
|
1100
|
+
full: string;
|
1101
|
+
};
|
1102
|
+
space: {
|
1103
|
+
1: string;
|
1104
|
+
2: string;
|
1105
|
+
3: string;
|
1106
|
+
4: string;
|
1107
|
+
5: string;
|
1108
|
+
6: string;
|
1109
|
+
7: string;
|
1110
|
+
8: string;
|
1111
|
+
10: string;
|
1112
|
+
12: string;
|
1113
|
+
16: string;
|
1114
|
+
20: string;
|
1115
|
+
40: string;
|
1116
|
+
64: string;
|
1117
|
+
80: string;
|
1118
|
+
};
|
1119
|
+
}, {
|
1120
|
+
height: "space";
|
1121
|
+
width: "space";
|
1122
|
+
gap: "space";
|
1123
|
+
gridGap: "space";
|
1124
|
+
columnGap: "space";
|
1125
|
+
gridColumnGap: "space";
|
1126
|
+
rowGap: "space";
|
1127
|
+
gridRowGap: "space";
|
1128
|
+
inset: "space";
|
1129
|
+
insetBlock: "space";
|
1130
|
+
insetBlockEnd: "space";
|
1131
|
+
insetBlockStart: "space";
|
1132
|
+
insetInline: "space";
|
1133
|
+
insetInlineEnd: "space";
|
1134
|
+
insetInlineStart: "space";
|
1135
|
+
margin: "space";
|
1136
|
+
marginTop: "space";
|
1137
|
+
marginRight: "space";
|
1138
|
+
marginBottom: "space";
|
1139
|
+
marginLeft: "space";
|
1140
|
+
marginBlock: "space";
|
1141
|
+
marginBlockEnd: "space";
|
1142
|
+
marginBlockStart: "space";
|
1143
|
+
marginInline: "space";
|
1144
|
+
marginInlineEnd: "space";
|
1145
|
+
marginInlineStart: "space";
|
1146
|
+
padding: "space";
|
1147
|
+
paddingTop: "space";
|
1148
|
+
paddingRight: "space";
|
1149
|
+
paddingBottom: "space";
|
1150
|
+
paddingLeft: "space";
|
1151
|
+
paddingBlock: "space";
|
1152
|
+
paddingBlockEnd: "space";
|
1153
|
+
paddingBlockStart: "space";
|
1154
|
+
paddingInline: "space";
|
1155
|
+
paddingInlineEnd: "space";
|
1156
|
+
paddingInlineStart: "space";
|
1157
|
+
scrollMargin: "space";
|
1158
|
+
scrollMarginTop: "space";
|
1159
|
+
scrollMarginRight: "space";
|
1160
|
+
scrollMarginBottom: "space";
|
1161
|
+
scrollMarginLeft: "space";
|
1162
|
+
scrollMarginBlock: "space";
|
1163
|
+
scrollMarginBlockEnd: "space";
|
1164
|
+
scrollMarginBlockStart: "space";
|
1165
|
+
scrollMarginInline: "space";
|
1166
|
+
scrollMarginInlineEnd: "space";
|
1167
|
+
scrollMarginInlineStart: "space";
|
1168
|
+
scrollPadding: "space";
|
1169
|
+
scrollPaddingTop: "space";
|
1170
|
+
scrollPaddingRight: "space";
|
1171
|
+
scrollPaddingBottom: "space";
|
1172
|
+
scrollPaddingLeft: "space";
|
1173
|
+
scrollPaddingBlock: "space";
|
1174
|
+
scrollPaddingBlockEnd: "space";
|
1175
|
+
scrollPaddingBlockStart: "space";
|
1176
|
+
scrollPaddingInline: "space";
|
1177
|
+
scrollPaddingInlineEnd: "space";
|
1178
|
+
scrollPaddingInlineStart: "space";
|
1179
|
+
top: "space";
|
1180
|
+
right: "space";
|
1181
|
+
bottom: "space";
|
1182
|
+
left: "space";
|
1183
|
+
fontSize: "fontSizes";
|
1184
|
+
background: "colors";
|
1185
|
+
backgroundColor: "colors";
|
1186
|
+
backgroundImage: "colors";
|
1187
|
+
borderImage: "colors";
|
1188
|
+
border: "colors";
|
1189
|
+
borderBlock: "colors";
|
1190
|
+
borderBlockEnd: "colors";
|
1191
|
+
borderBlockStart: "colors";
|
1192
|
+
borderBottom: "colors";
|
1193
|
+
borderBottomColor: "colors";
|
1194
|
+
borderColor: "colors";
|
1195
|
+
borderInline: "colors";
|
1196
|
+
borderInlineEnd: "colors";
|
1197
|
+
borderInlineStart: "colors";
|
1198
|
+
borderLeft: "colors";
|
1199
|
+
borderLeftColor: "colors";
|
1200
|
+
borderRight: "colors";
|
1201
|
+
borderRightColor: "colors";
|
1202
|
+
borderTop: "colors";
|
1203
|
+
borderTopColor: "colors";
|
1204
|
+
caretColor: "colors";
|
1205
|
+
color: "colors";
|
1206
|
+
columnRuleColor: "colors";
|
1207
|
+
outline: "colors";
|
1208
|
+
outlineColor: "colors";
|
1209
|
+
fill: "colors";
|
1210
|
+
stroke: "colors";
|
1211
|
+
textDecorationColor: "colors";
|
1212
|
+
fontFamily: "fonts";
|
1213
|
+
fontWeight: "fontWeights";
|
1214
|
+
lineHeight: "lineHeights";
|
1215
|
+
letterSpacing: "letterSpacings";
|
1216
|
+
blockSize: "sizes";
|
1217
|
+
minBlockSize: "sizes";
|
1218
|
+
maxBlockSize: "sizes";
|
1219
|
+
inlineSize: "sizes";
|
1220
|
+
minInlineSize: "sizes";
|
1221
|
+
maxInlineSize: "sizes";
|
1222
|
+
minWidth: "sizes";
|
1223
|
+
maxWidth: "sizes";
|
1224
|
+
minHeight: "sizes";
|
1225
|
+
maxHeight: "sizes";
|
1226
|
+
flexBasis: "sizes";
|
1227
|
+
gridTemplateColumns: "sizes";
|
1228
|
+
gridTemplateRows: "sizes";
|
1229
|
+
borderWidth: "borderWidths";
|
1230
|
+
borderTopWidth: "borderWidths";
|
1231
|
+
borderLeftWidth: "borderWidths";
|
1232
|
+
borderRightWidth: "borderWidths";
|
1233
|
+
borderBottomWidth: "borderWidths";
|
1234
|
+
borderStyle: "borderStyles";
|
1235
|
+
borderTopStyle: "borderStyles";
|
1236
|
+
borderLeftStyle: "borderStyles";
|
1237
|
+
borderRightStyle: "borderStyles";
|
1238
|
+
borderBottomStyle: "borderStyles";
|
1239
|
+
borderRadius: "radii";
|
1240
|
+
borderTopLeftRadius: "radii";
|
1241
|
+
borderTopRightRadius: "radii";
|
1242
|
+
borderBottomRightRadius: "radii";
|
1243
|
+
borderBottomLeftRadius: "radii";
|
1244
|
+
boxShadow: "shadows";
|
1245
|
+
textShadow: "shadows";
|
1246
|
+
transition: "transitions";
|
1247
|
+
zIndex: "zIndices";
|
1248
|
+
}, {}>>;
|
1249
|
+
|
1250
|
+
interface TextInputProps extends ComponentProps<typeof Input> {
|
1251
|
+
prefix?: string;
|
1252
|
+
}
|
1253
|
+
declare function TextInput({ prefix, ...props }: TextInputProps): react_jsx_runtime.JSX.Element;
|
1254
|
+
declare namespace TextInput {
|
1255
|
+
var displayName: string;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
declare const TextArea: _stitches_react_types_styled_component.StyledComponent<"textarea", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
1259
|
+
colors: {
|
1260
|
+
white: string;
|
1261
|
+
black: string;
|
1262
|
+
gray100: string;
|
1263
|
+
gray200: string;
|
1264
|
+
gray400: string;
|
1265
|
+
gray500: string;
|
1266
|
+
gray600: string;
|
1267
|
+
gray700: string;
|
1268
|
+
gray800: string;
|
1269
|
+
gray900: string;
|
1270
|
+
ignite300: string;
|
1271
|
+
ignite500: string;
|
1272
|
+
ignite700: string;
|
1273
|
+
ignite900: string;
|
1274
|
+
};
|
1275
|
+
fontSizes: {
|
1276
|
+
xxs: string;
|
1277
|
+
xs: string;
|
1278
|
+
sm: string;
|
1279
|
+
md: string;
|
1280
|
+
lg: string;
|
1281
|
+
xl: string;
|
1282
|
+
'2xl': string;
|
1283
|
+
'4xl': string;
|
1284
|
+
'5xl': string;
|
1285
|
+
'6xl': string;
|
1286
|
+
'7xl': string;
|
1287
|
+
'8xl': string;
|
1288
|
+
'9xl': string;
|
1289
|
+
};
|
1290
|
+
fontWeights: {
|
1291
|
+
regular: string;
|
1292
|
+
medium: string;
|
1293
|
+
bold: string;
|
1294
|
+
};
|
1295
|
+
fonts: {
|
1296
|
+
default: string;
|
1297
|
+
code: string;
|
1298
|
+
};
|
1299
|
+
lineHeights: {
|
1300
|
+
shorter: string;
|
1301
|
+
short: string;
|
1302
|
+
base: string;
|
1303
|
+
tall: string;
|
1304
|
+
};
|
1305
|
+
radii: {
|
1306
|
+
px: string;
|
1307
|
+
xs: string;
|
1308
|
+
sm: string;
|
1309
|
+
md: string;
|
1310
|
+
lg: string;
|
1311
|
+
full: string;
|
1312
|
+
};
|
1313
|
+
space: {
|
1314
|
+
1: string;
|
1315
|
+
2: string;
|
1316
|
+
3: string;
|
1317
|
+
4: string;
|
1318
|
+
5: string;
|
1319
|
+
6: string;
|
1320
|
+
7: string;
|
1321
|
+
8: string;
|
1322
|
+
10: string;
|
1323
|
+
12: string;
|
1324
|
+
16: string;
|
1325
|
+
20: string;
|
1326
|
+
40: string;
|
1327
|
+
64: string;
|
1328
|
+
80: string;
|
1329
|
+
};
|
1330
|
+
}, {
|
1331
|
+
height: "space";
|
1332
|
+
width: "space";
|
1333
|
+
gap: "space";
|
1334
|
+
gridGap: "space";
|
1335
|
+
columnGap: "space";
|
1336
|
+
gridColumnGap: "space";
|
1337
|
+
rowGap: "space";
|
1338
|
+
gridRowGap: "space";
|
1339
|
+
inset: "space";
|
1340
|
+
insetBlock: "space";
|
1341
|
+
insetBlockEnd: "space";
|
1342
|
+
insetBlockStart: "space";
|
1343
|
+
insetInline: "space";
|
1344
|
+
insetInlineEnd: "space";
|
1345
|
+
insetInlineStart: "space";
|
1346
|
+
margin: "space";
|
1347
|
+
marginTop: "space";
|
1348
|
+
marginRight: "space";
|
1349
|
+
marginBottom: "space";
|
1350
|
+
marginLeft: "space";
|
1351
|
+
marginBlock: "space";
|
1352
|
+
marginBlockEnd: "space";
|
1353
|
+
marginBlockStart: "space";
|
1354
|
+
marginInline: "space";
|
1355
|
+
marginInlineEnd: "space";
|
1356
|
+
marginInlineStart: "space";
|
1357
|
+
padding: "space";
|
1358
|
+
paddingTop: "space";
|
1359
|
+
paddingRight: "space";
|
1360
|
+
paddingBottom: "space";
|
1361
|
+
paddingLeft: "space";
|
1362
|
+
paddingBlock: "space";
|
1363
|
+
paddingBlockEnd: "space";
|
1364
|
+
paddingBlockStart: "space";
|
1365
|
+
paddingInline: "space";
|
1366
|
+
paddingInlineEnd: "space";
|
1367
|
+
paddingInlineStart: "space";
|
1368
|
+
scrollMargin: "space";
|
1369
|
+
scrollMarginTop: "space";
|
1370
|
+
scrollMarginRight: "space";
|
1371
|
+
scrollMarginBottom: "space";
|
1372
|
+
scrollMarginLeft: "space";
|
1373
|
+
scrollMarginBlock: "space";
|
1374
|
+
scrollMarginBlockEnd: "space";
|
1375
|
+
scrollMarginBlockStart: "space";
|
1376
|
+
scrollMarginInline: "space";
|
1377
|
+
scrollMarginInlineEnd: "space";
|
1378
|
+
scrollMarginInlineStart: "space";
|
1379
|
+
scrollPadding: "space";
|
1380
|
+
scrollPaddingTop: "space";
|
1381
|
+
scrollPaddingRight: "space";
|
1382
|
+
scrollPaddingBottom: "space";
|
1383
|
+
scrollPaddingLeft: "space";
|
1384
|
+
scrollPaddingBlock: "space";
|
1385
|
+
scrollPaddingBlockEnd: "space";
|
1386
|
+
scrollPaddingBlockStart: "space";
|
1387
|
+
scrollPaddingInline: "space";
|
1388
|
+
scrollPaddingInlineEnd: "space";
|
1389
|
+
scrollPaddingInlineStart: "space";
|
1390
|
+
top: "space";
|
1391
|
+
right: "space";
|
1392
|
+
bottom: "space";
|
1393
|
+
left: "space";
|
1394
|
+
fontSize: "fontSizes";
|
1395
|
+
background: "colors";
|
1396
|
+
backgroundColor: "colors";
|
1397
|
+
backgroundImage: "colors";
|
1398
|
+
borderImage: "colors";
|
1399
|
+
border: "colors";
|
1400
|
+
borderBlock: "colors";
|
1401
|
+
borderBlockEnd: "colors";
|
1402
|
+
borderBlockStart: "colors";
|
1403
|
+
borderBottom: "colors";
|
1404
|
+
borderBottomColor: "colors";
|
1405
|
+
borderColor: "colors";
|
1406
|
+
borderInline: "colors";
|
1407
|
+
borderInlineEnd: "colors";
|
1408
|
+
borderInlineStart: "colors";
|
1409
|
+
borderLeft: "colors";
|
1410
|
+
borderLeftColor: "colors";
|
1411
|
+
borderRight: "colors";
|
1412
|
+
borderRightColor: "colors";
|
1413
|
+
borderTop: "colors";
|
1414
|
+
borderTopColor: "colors";
|
1415
|
+
caretColor: "colors";
|
1416
|
+
color: "colors";
|
1417
|
+
columnRuleColor: "colors";
|
1418
|
+
outline: "colors";
|
1419
|
+
outlineColor: "colors";
|
1420
|
+
fill: "colors";
|
1421
|
+
stroke: "colors";
|
1422
|
+
textDecorationColor: "colors";
|
1423
|
+
fontFamily: "fonts";
|
1424
|
+
fontWeight: "fontWeights";
|
1425
|
+
lineHeight: "lineHeights";
|
1426
|
+
letterSpacing: "letterSpacings";
|
1427
|
+
blockSize: "sizes";
|
1428
|
+
minBlockSize: "sizes";
|
1429
|
+
maxBlockSize: "sizes";
|
1430
|
+
inlineSize: "sizes";
|
1431
|
+
minInlineSize: "sizes";
|
1432
|
+
maxInlineSize: "sizes";
|
1433
|
+
minWidth: "sizes";
|
1434
|
+
maxWidth: "sizes";
|
1435
|
+
minHeight: "sizes";
|
1436
|
+
maxHeight: "sizes";
|
1437
|
+
flexBasis: "sizes";
|
1438
|
+
gridTemplateColumns: "sizes";
|
1439
|
+
gridTemplateRows: "sizes";
|
1440
|
+
borderWidth: "borderWidths";
|
1441
|
+
borderTopWidth: "borderWidths";
|
1442
|
+
borderLeftWidth: "borderWidths";
|
1443
|
+
borderRightWidth: "borderWidths";
|
1444
|
+
borderBottomWidth: "borderWidths";
|
1445
|
+
borderStyle: "borderStyles";
|
1446
|
+
borderTopStyle: "borderStyles";
|
1447
|
+
borderLeftStyle: "borderStyles";
|
1448
|
+
borderRightStyle: "borderStyles";
|
1449
|
+
borderBottomStyle: "borderStyles";
|
1450
|
+
borderRadius: "radii";
|
1451
|
+
borderTopLeftRadius: "radii";
|
1452
|
+
borderTopRightRadius: "radii";
|
1453
|
+
borderBottomRightRadius: "radii";
|
1454
|
+
borderBottomLeftRadius: "radii";
|
1455
|
+
boxShadow: "shadows";
|
1456
|
+
textShadow: "shadows";
|
1457
|
+
transition: "transitions";
|
1458
|
+
zIndex: "zIndices";
|
1459
|
+
}, {}>>;
|
1460
|
+
interface TextAreaProps extends ComponentProps<typeof TextArea> {
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
declare const CheckboxContainer: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Checkbox$1.CheckboxProps & react.RefAttributes<HTMLButtonElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
1464
|
+
colors: {
|
1465
|
+
white: string;
|
1466
|
+
black: string;
|
1467
|
+
gray100: string;
|
1468
|
+
gray200: string;
|
1469
|
+
gray400: string;
|
1470
|
+
gray500: string;
|
1471
|
+
gray600: string;
|
1472
|
+
gray700: string;
|
1473
|
+
gray800: string;
|
1474
|
+
gray900: string;
|
1475
|
+
ignite300: string;
|
1476
|
+
ignite500: string;
|
1477
|
+
ignite700: string;
|
1478
|
+
ignite900: string;
|
1479
|
+
};
|
1480
|
+
fontSizes: {
|
1481
|
+
xxs: string;
|
1482
|
+
xs: string;
|
1483
|
+
sm: string;
|
1484
|
+
md: string;
|
1485
|
+
lg: string;
|
1486
|
+
xl: string;
|
1487
|
+
'2xl': string;
|
1488
|
+
'4xl': string;
|
1489
|
+
'5xl': string;
|
1490
|
+
'6xl': string;
|
1491
|
+
'7xl': string;
|
1492
|
+
'8xl': string;
|
1493
|
+
'9xl': string;
|
1494
|
+
};
|
1495
|
+
fontWeights: {
|
1496
|
+
regular: string;
|
1497
|
+
medium: string;
|
1498
|
+
bold: string;
|
1499
|
+
};
|
1500
|
+
fonts: {
|
1501
|
+
default: string;
|
1502
|
+
code: string;
|
1503
|
+
};
|
1504
|
+
lineHeights: {
|
1505
|
+
shorter: string;
|
1506
|
+
short: string;
|
1507
|
+
base: string;
|
1508
|
+
tall: string;
|
1509
|
+
};
|
1510
|
+
radii: {
|
1511
|
+
px: string;
|
1512
|
+
xs: string;
|
1513
|
+
sm: string;
|
1514
|
+
md: string;
|
1515
|
+
lg: string;
|
1516
|
+
full: string;
|
1517
|
+
};
|
1518
|
+
space: {
|
1519
|
+
1: string;
|
1520
|
+
2: string;
|
1521
|
+
3: string;
|
1522
|
+
4: string;
|
1523
|
+
5: string;
|
1524
|
+
6: string;
|
1525
|
+
7: string;
|
1526
|
+
8: string;
|
1527
|
+
10: string;
|
1528
|
+
12: string;
|
1529
|
+
16: string;
|
1530
|
+
20: string;
|
1531
|
+
40: string;
|
1532
|
+
64: string;
|
1533
|
+
80: string;
|
1534
|
+
};
|
1535
|
+
}, {
|
1536
|
+
height: "space";
|
1537
|
+
width: "space";
|
1538
|
+
gap: "space";
|
1539
|
+
gridGap: "space";
|
1540
|
+
columnGap: "space";
|
1541
|
+
gridColumnGap: "space";
|
1542
|
+
rowGap: "space";
|
1543
|
+
gridRowGap: "space";
|
1544
|
+
inset: "space";
|
1545
|
+
insetBlock: "space";
|
1546
|
+
insetBlockEnd: "space";
|
1547
|
+
insetBlockStart: "space";
|
1548
|
+
insetInline: "space";
|
1549
|
+
insetInlineEnd: "space";
|
1550
|
+
insetInlineStart: "space";
|
1551
|
+
margin: "space";
|
1552
|
+
marginTop: "space";
|
1553
|
+
marginRight: "space";
|
1554
|
+
marginBottom: "space";
|
1555
|
+
marginLeft: "space";
|
1556
|
+
marginBlock: "space";
|
1557
|
+
marginBlockEnd: "space";
|
1558
|
+
marginBlockStart: "space";
|
1559
|
+
marginInline: "space";
|
1560
|
+
marginInlineEnd: "space";
|
1561
|
+
marginInlineStart: "space";
|
1562
|
+
padding: "space";
|
1563
|
+
paddingTop: "space";
|
1564
|
+
paddingRight: "space";
|
1565
|
+
paddingBottom: "space";
|
1566
|
+
paddingLeft: "space";
|
1567
|
+
paddingBlock: "space";
|
1568
|
+
paddingBlockEnd: "space";
|
1569
|
+
paddingBlockStart: "space";
|
1570
|
+
paddingInline: "space";
|
1571
|
+
paddingInlineEnd: "space";
|
1572
|
+
paddingInlineStart: "space";
|
1573
|
+
scrollMargin: "space";
|
1574
|
+
scrollMarginTop: "space";
|
1575
|
+
scrollMarginRight: "space";
|
1576
|
+
scrollMarginBottom: "space";
|
1577
|
+
scrollMarginLeft: "space";
|
1578
|
+
scrollMarginBlock: "space";
|
1579
|
+
scrollMarginBlockEnd: "space";
|
1580
|
+
scrollMarginBlockStart: "space";
|
1581
|
+
scrollMarginInline: "space";
|
1582
|
+
scrollMarginInlineEnd: "space";
|
1583
|
+
scrollMarginInlineStart: "space";
|
1584
|
+
scrollPadding: "space";
|
1585
|
+
scrollPaddingTop: "space";
|
1586
|
+
scrollPaddingRight: "space";
|
1587
|
+
scrollPaddingBottom: "space";
|
1588
|
+
scrollPaddingLeft: "space";
|
1589
|
+
scrollPaddingBlock: "space";
|
1590
|
+
scrollPaddingBlockEnd: "space";
|
1591
|
+
scrollPaddingBlockStart: "space";
|
1592
|
+
scrollPaddingInline: "space";
|
1593
|
+
scrollPaddingInlineEnd: "space";
|
1594
|
+
scrollPaddingInlineStart: "space";
|
1595
|
+
top: "space";
|
1596
|
+
right: "space";
|
1597
|
+
bottom: "space";
|
1598
|
+
left: "space";
|
1599
|
+
fontSize: "fontSizes";
|
1600
|
+
background: "colors";
|
1601
|
+
backgroundColor: "colors";
|
1602
|
+
backgroundImage: "colors";
|
1603
|
+
borderImage: "colors";
|
1604
|
+
border: "colors";
|
1605
|
+
borderBlock: "colors";
|
1606
|
+
borderBlockEnd: "colors";
|
1607
|
+
borderBlockStart: "colors";
|
1608
|
+
borderBottom: "colors";
|
1609
|
+
borderBottomColor: "colors";
|
1610
|
+
borderColor: "colors";
|
1611
|
+
borderInline: "colors";
|
1612
|
+
borderInlineEnd: "colors";
|
1613
|
+
borderInlineStart: "colors";
|
1614
|
+
borderLeft: "colors";
|
1615
|
+
borderLeftColor: "colors";
|
1616
|
+
borderRight: "colors";
|
1617
|
+
borderRightColor: "colors";
|
1618
|
+
borderTop: "colors";
|
1619
|
+
borderTopColor: "colors";
|
1620
|
+
caretColor: "colors";
|
1621
|
+
color: "colors";
|
1622
|
+
columnRuleColor: "colors";
|
1623
|
+
outline: "colors";
|
1624
|
+
outlineColor: "colors";
|
1625
|
+
fill: "colors";
|
1626
|
+
stroke: "colors";
|
1627
|
+
textDecorationColor: "colors";
|
1628
|
+
fontFamily: "fonts";
|
1629
|
+
fontWeight: "fontWeights";
|
1630
|
+
lineHeight: "lineHeights";
|
1631
|
+
letterSpacing: "letterSpacings";
|
1632
|
+
blockSize: "sizes";
|
1633
|
+
minBlockSize: "sizes";
|
1634
|
+
maxBlockSize: "sizes";
|
1635
|
+
inlineSize: "sizes";
|
1636
|
+
minInlineSize: "sizes";
|
1637
|
+
maxInlineSize: "sizes";
|
1638
|
+
minWidth: "sizes";
|
1639
|
+
maxWidth: "sizes";
|
1640
|
+
minHeight: "sizes";
|
1641
|
+
maxHeight: "sizes";
|
1642
|
+
flexBasis: "sizes";
|
1643
|
+
gridTemplateColumns: "sizes";
|
1644
|
+
gridTemplateRows: "sizes";
|
1645
|
+
borderWidth: "borderWidths";
|
1646
|
+
borderTopWidth: "borderWidths";
|
1647
|
+
borderLeftWidth: "borderWidths";
|
1648
|
+
borderRightWidth: "borderWidths";
|
1649
|
+
borderBottomWidth: "borderWidths";
|
1650
|
+
borderStyle: "borderStyles";
|
1651
|
+
borderTopStyle: "borderStyles";
|
1652
|
+
borderLeftStyle: "borderStyles";
|
1653
|
+
borderRightStyle: "borderStyles";
|
1654
|
+
borderBottomStyle: "borderStyles";
|
1655
|
+
borderRadius: "radii";
|
1656
|
+
borderTopLeftRadius: "radii";
|
1657
|
+
borderTopRightRadius: "radii";
|
1658
|
+
borderBottomRightRadius: "radii";
|
1659
|
+
borderBottomLeftRadius: "radii";
|
1660
|
+
boxShadow: "shadows";
|
1661
|
+
textShadow: "shadows";
|
1662
|
+
transition: "transitions";
|
1663
|
+
zIndex: "zIndices";
|
1664
|
+
}, {}>>;
|
1665
|
+
|
1666
|
+
interface CheckboxProps extends ComponentProps<typeof CheckboxContainer> {
|
1667
|
+
}
|
1668
|
+
declare function Checkbox(props: CheckboxProps): react_jsx_runtime.JSX.Element;
|
1669
|
+
declare namespace Checkbox {
|
1670
|
+
var displayName: string;
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
interface MultiStepProps {
|
1674
|
+
size: number;
|
1675
|
+
currentStep?: number;
|
1676
|
+
}
|
1677
|
+
declare function MultiStep({ size, currentStep }: MultiStepProps): react_jsx_runtime.JSX.Element;
|
1678
|
+
declare namespace MultiStep {
|
1679
|
+
var displayName: string;
|
1680
|
+
}
|
1681
|
+
|
1682
|
+
export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Heading, type HeadingProps, MultiStep, type MultiStepProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
|