@mirohq/design-system-toolbar 2.1.6 → 2.1.7
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/dist/types.d.ts +1684 -1668
- package/package.json +5 -5
package/dist/types.d.ts
CHANGED
|
@@ -10,434 +10,438 @@ declare const StyledToolbar: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
10
10
|
unstyled?: boolean | "false" | undefined;
|
|
11
11
|
}, "unstyled"> & _stitches_react_types_styled_component.TransformProps<{
|
|
12
12
|
unstyled?: boolean | "false" | undefined;
|
|
13
|
-
}, {}> & _mirohq_design_system_stitches.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
colors: {
|
|
21
|
-
readonly 'blue-100': any;
|
|
22
|
-
readonly 'blue-200': any;
|
|
23
|
-
readonly 'blue-300': any;
|
|
24
|
-
readonly 'blue-400': any;
|
|
25
|
-
readonly 'blue-500': any;
|
|
26
|
-
readonly 'blue-600': any;
|
|
27
|
-
readonly 'blue-700': any;
|
|
28
|
-
readonly 'blue-800': any;
|
|
29
|
-
readonly 'blue-900': any;
|
|
30
|
-
readonly 'blue-1000': any;
|
|
31
|
-
readonly 'gray-100': any;
|
|
32
|
-
readonly 'gray-200': any;
|
|
33
|
-
readonly 'gray-300': any;
|
|
34
|
-
readonly 'gray-400': any;
|
|
35
|
-
readonly 'gray-500': any;
|
|
36
|
-
readonly 'gray-600': any;
|
|
37
|
-
readonly 'gray-700': any;
|
|
38
|
-
readonly 'gray-800': any;
|
|
39
|
-
readonly 'gray-900': any;
|
|
40
|
-
readonly 'indigo-100': any;
|
|
41
|
-
readonly 'indigo-200': any;
|
|
42
|
-
readonly 'indigo-300': any;
|
|
43
|
-
readonly 'indigo-400': any;
|
|
44
|
-
readonly 'indigo-500': any;
|
|
45
|
-
readonly 'indigo-600': any;
|
|
46
|
-
readonly 'indigo-700': any;
|
|
47
|
-
readonly 'indigo-800': any;
|
|
48
|
-
readonly 'indigo-900': any;
|
|
49
|
-
readonly 'red-100': any;
|
|
50
|
-
readonly 'red-200': any;
|
|
51
|
-
readonly 'red-300': any;
|
|
52
|
-
readonly 'red-400': any;
|
|
53
|
-
readonly 'red-500': any;
|
|
54
|
-
readonly 'red-600': any;
|
|
55
|
-
readonly 'red-700': any;
|
|
56
|
-
readonly 'red-800': any;
|
|
57
|
-
readonly 'red-900': any;
|
|
58
|
-
readonly 'yellow-100': any;
|
|
59
|
-
readonly 'yellow-200': any;
|
|
60
|
-
readonly 'yellow-300': any;
|
|
61
|
-
readonly 'yellow-400': any;
|
|
62
|
-
readonly 'yellow-500': any;
|
|
63
|
-
readonly 'yellow-600': any;
|
|
64
|
-
readonly 'yellow-700': any;
|
|
65
|
-
readonly 'yellow-800': any;
|
|
66
|
-
readonly 'yellow-900': any;
|
|
67
|
-
readonly 'green-100': any;
|
|
68
|
-
readonly 'green-200': any;
|
|
69
|
-
readonly 'green-300': any;
|
|
70
|
-
readonly 'green-400': any;
|
|
71
|
-
readonly 'green-500': any;
|
|
72
|
-
readonly 'green-600': any;
|
|
73
|
-
readonly 'green-700': any;
|
|
74
|
-
readonly 'green-800': any;
|
|
75
|
-
readonly 'green-900': any;
|
|
76
|
-
readonly black: any;
|
|
77
|
-
readonly white: any;
|
|
78
|
-
readonly transparent: any;
|
|
79
|
-
readonly 'background-neutrals'?: any;
|
|
80
|
-
readonly 'background-neutrals-body'?: any;
|
|
81
|
-
readonly 'background-neutrals-container'?: any;
|
|
82
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
83
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
84
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
85
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
86
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
87
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
88
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
89
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
90
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
91
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
92
|
-
readonly 'background-primary-prominent'?: any;
|
|
93
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
94
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
95
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
96
|
-
readonly 'background-primary-subtle'?: any;
|
|
97
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
98
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
99
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
100
|
-
readonly 'background-danger-prominent'?: any;
|
|
101
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
102
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
103
|
-
readonly 'background-danger'?: any;
|
|
104
|
-
readonly 'background-danger-hover'?: any;
|
|
105
|
-
readonly 'background-success'?: any;
|
|
106
|
-
readonly 'background-warning-subtle'?: any;
|
|
107
|
-
readonly 'background-warning-prominent'?: any;
|
|
108
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
109
|
-
readonly 'text-neutrals'?: any;
|
|
110
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
111
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
112
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
113
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
114
|
-
readonly 'text-primary-inverted'?: any;
|
|
115
|
-
readonly 'text-primary'?: any;
|
|
116
|
-
readonly 'text-primary-hover'?: any;
|
|
117
|
-
readonly 'text-primary-active'?: any;
|
|
118
|
-
readonly 'text-primary-selected'?: any;
|
|
119
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
120
|
-
readonly 'text-danger-inverted'?: any;
|
|
121
|
-
readonly 'text-danger'?: any;
|
|
122
|
-
readonly 'text-danger-hover'?: any;
|
|
123
|
-
readonly 'text-danger-active'?: any;
|
|
124
|
-
readonly 'text-success'?: any;
|
|
125
|
-
readonly 'text-warning'?: any;
|
|
126
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
127
|
-
readonly 'icon-neutrals'?: any;
|
|
128
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
129
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
130
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
131
|
-
readonly 'icon-neutrals-search'?: any;
|
|
132
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
133
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
134
|
-
readonly 'icon-primary-inverted'?: any;
|
|
135
|
-
readonly 'icon-primary'?: any;
|
|
136
|
-
readonly 'icon-primary-hover'?: any;
|
|
137
|
-
readonly 'icon-primary-active'?: any;
|
|
138
|
-
readonly 'icon-primary-selected'?: any;
|
|
139
|
-
readonly 'icon-danger-inverted'?: any;
|
|
140
|
-
readonly 'icon-danger'?: any;
|
|
141
|
-
readonly 'icon-danger-hover'?: any;
|
|
142
|
-
readonly 'icon-danger-active'?: any;
|
|
143
|
-
readonly 'icon-success-inverted'?: any;
|
|
144
|
-
readonly 'icon-success'?: any;
|
|
145
|
-
readonly 'icon-warning'?: any;
|
|
146
|
-
readonly 'border-focus-outer'?: any;
|
|
147
|
-
readonly 'border-focus-middle'?: any;
|
|
148
|
-
readonly 'border-focus-inner'?: any;
|
|
149
|
-
readonly 'border-neutrals'?: any;
|
|
150
|
-
readonly 'border-neutrals-hover'?: any;
|
|
151
|
-
readonly 'border-neutrals-active'?: any;
|
|
152
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
153
|
-
readonly 'border-neutrals-controls'?: any;
|
|
154
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
155
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
156
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
157
|
-
readonly 'border-primary'?: any;
|
|
158
|
-
readonly 'border-primary-hover'?: any;
|
|
159
|
-
readonly 'border-primary-active'?: any;
|
|
160
|
-
readonly 'border-primary-inverted'?: any;
|
|
161
|
-
readonly 'border-danger'?: any;
|
|
162
|
-
readonly 'border-success'?: any;
|
|
163
|
-
readonly 'border-warning'?: any;
|
|
164
|
-
};
|
|
165
|
-
'font-sizes': {
|
|
166
|
-
readonly 150: "0.75rem";
|
|
167
|
-
readonly 175: "0.875rem";
|
|
168
|
-
readonly 200: "1rem";
|
|
169
|
-
readonly 225: "1.125rem";
|
|
170
|
-
readonly 250: "1.25rem";
|
|
171
|
-
readonly 300: "1.5rem";
|
|
172
|
-
readonly 400: "2rem";
|
|
173
|
-
readonly 500: "2.5rem";
|
|
174
|
-
readonly 600: "3rem";
|
|
175
|
-
readonly 800: "4rem";
|
|
176
|
-
readonly 900: "4.5rem";
|
|
177
|
-
};
|
|
178
|
-
radii: {
|
|
179
|
-
readonly none: 0;
|
|
180
|
-
readonly half: "999em";
|
|
181
|
-
readonly 25: "2px";
|
|
182
|
-
readonly 50: "4px";
|
|
183
|
-
readonly 75: "6px";
|
|
184
|
-
readonly 100: "8px";
|
|
185
|
-
readonly 200: "16px";
|
|
186
|
-
};
|
|
187
|
-
shadows: {
|
|
188
|
-
readonly 50: "0 4px 16px #05003812";
|
|
189
|
-
readonly 100: "0 8px 32px #05003808";
|
|
190
|
-
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
191
|
-
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
192
|
-
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
193
|
-
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
194
|
-
};
|
|
195
|
-
sizes: {
|
|
196
|
-
readonly number: string;
|
|
197
|
-
readonly 'icon-200': "16px";
|
|
198
|
-
readonly 'icon-300': "24px";
|
|
199
|
-
readonly 'icon-400': "32px";
|
|
200
|
-
};
|
|
201
|
-
space: {
|
|
202
|
-
readonly none: 0;
|
|
203
|
-
readonly 50: "4px";
|
|
204
|
-
readonly 100: "8px";
|
|
205
|
-
readonly 150: "12px";
|
|
206
|
-
readonly 200: "16px";
|
|
207
|
-
readonly 300: "24px";
|
|
208
|
-
readonly 400: "32px";
|
|
209
|
-
readonly 500: "64px";
|
|
210
|
-
readonly 600: "48px";
|
|
211
|
-
readonly 800: "64px";
|
|
212
|
-
readonly 1200: "96px";
|
|
213
|
-
readonly 1600: "128px";
|
|
214
|
-
};
|
|
215
|
-
'space-gap': {
|
|
216
|
-
readonly none: any;
|
|
217
|
-
readonly 50: any;
|
|
218
|
-
readonly 100: any;
|
|
219
|
-
readonly 200: any;
|
|
220
|
-
readonly 300: any;
|
|
221
|
-
};
|
|
222
|
-
'space-inset': {
|
|
223
|
-
readonly none: any;
|
|
224
|
-
readonly 50: any;
|
|
225
|
-
readonly 100: any;
|
|
226
|
-
readonly 150: any;
|
|
227
|
-
readonly 200: any;
|
|
228
|
-
readonly 300: any;
|
|
229
|
-
readonly 400: any;
|
|
230
|
-
readonly 600: any;
|
|
231
|
-
readonly 800: any;
|
|
232
|
-
readonly 1200: any;
|
|
233
|
-
readonly 1600: any;
|
|
234
|
-
};
|
|
235
|
-
'space-offset': {
|
|
236
|
-
readonly none: any;
|
|
237
|
-
readonly 50: any;
|
|
238
|
-
readonly 100: any;
|
|
239
|
-
readonly 150: any;
|
|
240
|
-
readonly 200: any;
|
|
241
|
-
readonly 300: any;
|
|
242
|
-
readonly 400: any;
|
|
243
|
-
readonly 600: any;
|
|
244
|
-
readonly 800: any;
|
|
245
|
-
readonly 1200: any;
|
|
246
|
-
readonly 1600: any;
|
|
247
|
-
readonly 'stacking-none': any;
|
|
248
|
-
readonly 'stacking-100': any;
|
|
249
|
-
readonly 'stacking-200': any;
|
|
250
|
-
readonly 'stacking-300': any;
|
|
251
|
-
readonly 'stacking-400': any;
|
|
252
|
-
readonly 'stacking-500': any;
|
|
253
|
-
readonly 'stacking-800': any;
|
|
254
|
-
};
|
|
255
|
-
'z-indices': {
|
|
256
|
-
readonly dropdownMenu: 100;
|
|
257
|
-
readonly popover: 200;
|
|
258
|
-
readonly tooltip: 300;
|
|
259
|
-
};
|
|
260
|
-
}, {
|
|
261
|
-
readonly background: "colors";
|
|
262
|
-
readonly backgroundColor: "colors";
|
|
263
|
-
readonly backgroundImage: "colors";
|
|
264
|
-
readonly blockSize: "sizes";
|
|
265
|
-
readonly border: "colors";
|
|
266
|
-
readonly borderBlock: "colors";
|
|
267
|
-
readonly borderBlockEnd: "colors";
|
|
268
|
-
readonly borderBlockStart: "colors";
|
|
269
|
-
readonly borderBottom: "colors";
|
|
270
|
-
readonly borderBottomColor: "colors";
|
|
271
|
-
readonly borderBottomLeftRadius: "radii";
|
|
272
|
-
readonly borderBottomRightRadius: "radii";
|
|
273
|
-
readonly borderBottomStyle: "border-styles";
|
|
274
|
-
readonly borderBottomWidth: "border-widths";
|
|
275
|
-
readonly borderColor: "colors";
|
|
276
|
-
readonly borderImage: "colors";
|
|
277
|
-
readonly borderInline: "colors";
|
|
278
|
-
readonly borderInlineEnd: "colors";
|
|
279
|
-
readonly borderInlineStart: "colors";
|
|
280
|
-
readonly borderLeft: "colors";
|
|
281
|
-
readonly borderLeftColor: "colors";
|
|
282
|
-
readonly borderLeftStyle: "border-styles";
|
|
283
|
-
readonly borderLeftWidth: "border-widths";
|
|
284
|
-
readonly borderRadius: "radii";
|
|
285
|
-
readonly borderRight: "colors";
|
|
286
|
-
readonly borderRightColor: "colors";
|
|
287
|
-
readonly borderRightStyle: "border-styles";
|
|
288
|
-
readonly borderRightWidth: "border-widths";
|
|
289
|
-
readonly borderStyle: "border-styles";
|
|
290
|
-
readonly borderTop: "colors";
|
|
291
|
-
readonly borderTopColor: "colors";
|
|
292
|
-
readonly borderTopLeftRadius: "radii";
|
|
293
|
-
readonly borderTopRightRadius: "radii";
|
|
294
|
-
readonly borderTopStyle: "border-styles";
|
|
295
|
-
readonly borderTopWidth: "border-widths";
|
|
296
|
-
readonly borderWidth: "border-widths";
|
|
297
|
-
readonly bottom: "space";
|
|
298
|
-
readonly boxShadow: "shadows";
|
|
299
|
-
readonly caretColor: "colors";
|
|
300
|
-
readonly color: "colors";
|
|
301
|
-
readonly columnGap: "space-gap";
|
|
302
|
-
readonly columnRuleColor: "colors";
|
|
303
|
-
readonly fill: "colors";
|
|
304
|
-
readonly flexBasis: "sizes";
|
|
305
|
-
readonly fontFamily: "fonts";
|
|
306
|
-
readonly fontSize: "font-sizes";
|
|
307
|
-
readonly fontWeight: "font-weights";
|
|
308
|
-
readonly gap: "space-gap";
|
|
309
|
-
readonly gridColumnGap: "space-gap";
|
|
310
|
-
readonly gridGap: "space-gap";
|
|
311
|
-
readonly gridRowGap: "space-gap";
|
|
312
|
-
readonly gridTemplateColumns: "sizes";
|
|
313
|
-
readonly gridTemplateRows: "sizes";
|
|
314
|
-
readonly height: "sizes";
|
|
315
|
-
readonly inlineSize: "sizes";
|
|
316
|
-
readonly inset: "space-inset";
|
|
317
|
-
readonly insetBlock: "space-inset";
|
|
318
|
-
readonly insetBlockEnd: "space-inset";
|
|
319
|
-
readonly insetBlockStart: "space-inset";
|
|
320
|
-
readonly insetInline: "space-inset";
|
|
321
|
-
readonly insetInlineEnd: "space-inset";
|
|
322
|
-
readonly insetInlineStart: "space-inset";
|
|
323
|
-
readonly left: "space";
|
|
324
|
-
readonly letterSpacing: "letter-spacings";
|
|
325
|
-
readonly lineHeight: "line-heights";
|
|
326
|
-
readonly margin: "space-offset";
|
|
327
|
-
readonly marginBlock: "space-offset";
|
|
328
|
-
readonly marginBlockEnd: "space-offset";
|
|
329
|
-
readonly marginBlockStart: "space-offset";
|
|
330
|
-
readonly marginBottom: "space-offset";
|
|
331
|
-
readonly marginInline: "space-offset";
|
|
332
|
-
readonly marginInlineEnd: "space-offset";
|
|
333
|
-
readonly marginInlineStart: "space-offset";
|
|
334
|
-
readonly marginLeft: "space-offset";
|
|
335
|
-
readonly marginRight: "space-offset";
|
|
336
|
-
readonly marginTop: "space-offset";
|
|
337
|
-
readonly maxBlockSize: "sizes";
|
|
338
|
-
readonly maxHeight: "sizes";
|
|
339
|
-
readonly maxInlineSize: "sizes";
|
|
340
|
-
readonly maxWidth: "sizes";
|
|
341
|
-
readonly minBlockSize: "sizes";
|
|
342
|
-
readonly minHeight: "sizes";
|
|
343
|
-
readonly minInlineSize: "sizes";
|
|
344
|
-
readonly minWidth: "sizes";
|
|
345
|
-
readonly outline: "colors";
|
|
346
|
-
readonly outlineColor: "colors";
|
|
347
|
-
readonly padding: "space-inset";
|
|
348
|
-
readonly paddingBlock: "space-inset";
|
|
349
|
-
readonly paddingBlockEnd: "space-inset";
|
|
350
|
-
readonly paddingBlockStart: "space-inset";
|
|
351
|
-
readonly paddingBottom: "space-inset";
|
|
352
|
-
readonly paddingInline: "space-inset";
|
|
353
|
-
readonly paddingInlineEnd: "space-inset";
|
|
354
|
-
readonly paddingInlineStart: "space-inset";
|
|
355
|
-
readonly paddingLeft: "space-inset";
|
|
356
|
-
readonly paddingRight: "space-inset";
|
|
357
|
-
readonly paddingTop: "space-inset";
|
|
358
|
-
readonly right: "space";
|
|
359
|
-
readonly rowGap: "space-gap";
|
|
360
|
-
readonly scrollMargin: "space-offset";
|
|
361
|
-
readonly scrollMarginBlock: "space-offset";
|
|
362
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
363
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
364
|
-
readonly scrollMarginBottom: "space-offset";
|
|
365
|
-
readonly scrollMarginInline: "space-offset";
|
|
366
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
367
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
368
|
-
readonly scrollMarginLeft: "space-offset";
|
|
369
|
-
readonly scrollMarginRight: "space-offset";
|
|
370
|
-
readonly scrollMarginTop: "space-offset";
|
|
371
|
-
readonly scrollPadding: "space-inset";
|
|
372
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
373
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
374
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
375
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
376
|
-
readonly scrollPaddingInline: "space-inset";
|
|
377
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
378
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
379
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
380
|
-
readonly scrollPaddingRight: "space-inset";
|
|
381
|
-
readonly scrollPaddingTop: "space-inset";
|
|
382
|
-
readonly stroke: "colors";
|
|
383
|
-
readonly textDecorationColor: "colors";
|
|
384
|
-
readonly textShadow: "shadows";
|
|
385
|
-
readonly top: "space";
|
|
386
|
-
readonly transition: "transitions";
|
|
387
|
-
readonly width: "sizes";
|
|
388
|
-
readonly zIndex: "z-indices";
|
|
389
|
-
}, {
|
|
390
|
-
paddingX: (value: {
|
|
391
|
-
readonly [$$PropertyValue]: "padding";
|
|
392
|
-
}) => {
|
|
393
|
-
paddingLeft: {
|
|
394
|
-
readonly [$$PropertyValue]: "padding";
|
|
13
|
+
}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<_radix_ui_react_toolbar.ToolbarProps & react.RefAttributes<HTMLDivElement>, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
14
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
15
|
+
'border-widths': {
|
|
16
|
+
readonly none: 0;
|
|
17
|
+
readonly sm: "1px";
|
|
18
|
+
readonly md: "2px";
|
|
19
|
+
readonly lg: "4px";
|
|
395
20
|
};
|
|
396
|
-
|
|
397
|
-
readonly
|
|
21
|
+
colors: {
|
|
22
|
+
readonly 'blue-100': any;
|
|
23
|
+
readonly 'blue-200': any;
|
|
24
|
+
readonly 'blue-300': any;
|
|
25
|
+
readonly 'blue-400': any;
|
|
26
|
+
readonly 'blue-500': any;
|
|
27
|
+
readonly 'blue-600': any;
|
|
28
|
+
readonly 'blue-700': any;
|
|
29
|
+
readonly 'blue-800': any;
|
|
30
|
+
readonly 'blue-900': any;
|
|
31
|
+
readonly 'blue-1000': any;
|
|
32
|
+
readonly 'gray-100': any;
|
|
33
|
+
readonly 'gray-200': any;
|
|
34
|
+
readonly 'gray-300': any;
|
|
35
|
+
readonly 'gray-400': any;
|
|
36
|
+
readonly 'gray-500': any;
|
|
37
|
+
readonly 'gray-600': any;
|
|
38
|
+
readonly 'gray-700': any;
|
|
39
|
+
readonly 'gray-800': any;
|
|
40
|
+
readonly 'gray-900': any;
|
|
41
|
+
readonly 'indigo-100': any;
|
|
42
|
+
readonly 'indigo-200': any;
|
|
43
|
+
readonly 'indigo-300': any;
|
|
44
|
+
readonly 'indigo-400': any;
|
|
45
|
+
readonly 'indigo-500': any;
|
|
46
|
+
readonly 'indigo-600': any;
|
|
47
|
+
readonly 'indigo-700': any;
|
|
48
|
+
readonly 'indigo-800': any;
|
|
49
|
+
readonly 'indigo-900': any;
|
|
50
|
+
readonly 'red-100': any;
|
|
51
|
+
readonly 'red-200': any;
|
|
52
|
+
readonly 'red-300': any;
|
|
53
|
+
readonly 'red-400': any;
|
|
54
|
+
readonly 'red-500': any;
|
|
55
|
+
readonly 'red-600': any;
|
|
56
|
+
readonly 'red-700': any;
|
|
57
|
+
readonly 'red-800': any;
|
|
58
|
+
readonly 'red-900': any;
|
|
59
|
+
readonly 'yellow-100': any;
|
|
60
|
+
readonly 'yellow-200': any;
|
|
61
|
+
readonly 'yellow-300': any;
|
|
62
|
+
readonly 'yellow-400': any;
|
|
63
|
+
readonly 'yellow-500': any;
|
|
64
|
+
readonly 'yellow-600': any;
|
|
65
|
+
readonly 'yellow-700': any;
|
|
66
|
+
readonly 'yellow-800': any;
|
|
67
|
+
readonly 'yellow-900': any;
|
|
68
|
+
readonly 'green-100': any;
|
|
69
|
+
readonly 'green-200': any;
|
|
70
|
+
readonly 'green-300': any;
|
|
71
|
+
readonly 'green-400': any;
|
|
72
|
+
readonly 'green-500': any;
|
|
73
|
+
readonly 'green-600': any;
|
|
74
|
+
readonly 'green-700': any;
|
|
75
|
+
readonly 'green-800': any;
|
|
76
|
+
readonly 'green-900': any;
|
|
77
|
+
readonly black: any;
|
|
78
|
+
readonly white: any;
|
|
79
|
+
readonly transparent: any;
|
|
80
|
+
readonly 'background-neutrals'?: any;
|
|
81
|
+
readonly 'background-neutrals-body'?: any;
|
|
82
|
+
readonly 'background-neutrals-container'?: any;
|
|
83
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
84
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
85
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
86
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
87
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
88
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
89
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
90
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
91
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
92
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
93
|
+
readonly 'background-primary-prominent'?: any;
|
|
94
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
95
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
96
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
97
|
+
readonly 'background-primary-subtle'?: any;
|
|
98
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
99
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
100
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
101
|
+
readonly 'background-danger-prominent'?: any;
|
|
102
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
103
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
104
|
+
readonly 'background-danger'?: any;
|
|
105
|
+
readonly 'background-danger-hover'?: any;
|
|
106
|
+
readonly 'background-success'?: any;
|
|
107
|
+
readonly 'background-warning-subtle'?: any;
|
|
108
|
+
readonly 'background-warning-prominent'?: any;
|
|
109
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
110
|
+
readonly 'text-neutrals'?: any;
|
|
111
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
112
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
113
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
114
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
115
|
+
readonly 'text-primary-inverted'?: any;
|
|
116
|
+
readonly 'text-primary'?: any;
|
|
117
|
+
readonly 'text-primary-hover'?: any;
|
|
118
|
+
readonly 'text-primary-active'?: any;
|
|
119
|
+
readonly 'text-primary-selected'?: any;
|
|
120
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
121
|
+
readonly 'text-danger-inverted'?: any;
|
|
122
|
+
readonly 'text-danger'?: any;
|
|
123
|
+
readonly 'text-danger-hover'?: any;
|
|
124
|
+
readonly 'text-danger-active'?: any;
|
|
125
|
+
readonly 'text-success'?: any;
|
|
126
|
+
readonly 'text-warning'?: any;
|
|
127
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
128
|
+
readonly 'icon-neutrals'?: any;
|
|
129
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
130
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
131
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
132
|
+
readonly 'icon-neutrals-search'?: any;
|
|
133
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
134
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
135
|
+
readonly 'icon-primary-inverted'?: any;
|
|
136
|
+
readonly 'icon-primary'?: any;
|
|
137
|
+
readonly 'icon-primary-hover'?: any;
|
|
138
|
+
readonly 'icon-primary-active'?: any;
|
|
139
|
+
readonly 'icon-primary-selected'?: any;
|
|
140
|
+
readonly 'icon-danger-inverted'?: any;
|
|
141
|
+
readonly 'icon-danger'?: any;
|
|
142
|
+
readonly 'icon-danger-hover'?: any;
|
|
143
|
+
readonly 'icon-danger-active'?: any;
|
|
144
|
+
readonly 'icon-success-inverted'?: any;
|
|
145
|
+
readonly 'icon-success'?: any;
|
|
146
|
+
readonly 'icon-warning'?: any;
|
|
147
|
+
readonly 'border-focus-outer'?: any;
|
|
148
|
+
readonly 'border-focus-middle'?: any;
|
|
149
|
+
readonly 'border-focus-inner'?: any;
|
|
150
|
+
readonly 'border-neutrals'?: any;
|
|
151
|
+
readonly 'border-neutrals-hover'?: any;
|
|
152
|
+
readonly 'border-neutrals-active'?: any;
|
|
153
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
154
|
+
readonly 'border-neutrals-controls'?: any;
|
|
155
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
156
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
157
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
158
|
+
readonly 'border-primary'?: any;
|
|
159
|
+
readonly 'border-primary-hover'?: any;
|
|
160
|
+
readonly 'border-primary-active'?: any;
|
|
161
|
+
readonly 'border-primary-inverted'?: any;
|
|
162
|
+
readonly 'border-danger'?: any;
|
|
163
|
+
readonly 'border-success'?: any;
|
|
164
|
+
readonly 'border-warning'?: any;
|
|
398
165
|
};
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
readonly
|
|
166
|
+
'font-sizes': {
|
|
167
|
+
readonly 150: "0.75rem";
|
|
168
|
+
readonly 175: "0.875rem";
|
|
169
|
+
readonly 200: "1rem";
|
|
170
|
+
readonly 225: "1.125rem";
|
|
171
|
+
readonly 250: "1.25rem";
|
|
172
|
+
readonly 300: "1.5rem";
|
|
173
|
+
readonly 400: "2rem";
|
|
174
|
+
readonly 500: "2.5rem";
|
|
175
|
+
readonly 600: "3rem";
|
|
176
|
+
readonly 800: "4rem";
|
|
177
|
+
readonly 900: "4.5rem";
|
|
405
178
|
};
|
|
406
|
-
|
|
407
|
-
readonly
|
|
179
|
+
radii: {
|
|
180
|
+
readonly none: 0;
|
|
181
|
+
readonly half: "999em";
|
|
182
|
+
readonly 25: "2px";
|
|
183
|
+
readonly 50: "4px";
|
|
184
|
+
readonly 75: "6px";
|
|
185
|
+
readonly 100: "8px";
|
|
186
|
+
readonly 200: "16px";
|
|
408
187
|
};
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
readonly
|
|
188
|
+
shadows: {
|
|
189
|
+
readonly 50: "0 4px 16px #05003812";
|
|
190
|
+
readonly 100: "0 8px 32px #05003808";
|
|
191
|
+
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
192
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
193
|
+
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
194
|
+
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
415
195
|
};
|
|
416
|
-
|
|
417
|
-
readonly
|
|
196
|
+
sizes: {
|
|
197
|
+
readonly number: string;
|
|
198
|
+
readonly 'icon-200': "16px";
|
|
199
|
+
readonly 'icon-300': "24px";
|
|
200
|
+
readonly 'icon-400': "32px";
|
|
418
201
|
};
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
readonly
|
|
202
|
+
space: {
|
|
203
|
+
readonly none: 0;
|
|
204
|
+
readonly 50: "4px";
|
|
205
|
+
readonly 100: "8px";
|
|
206
|
+
readonly 150: "12px";
|
|
207
|
+
readonly 200: "16px";
|
|
208
|
+
readonly 300: "24px";
|
|
209
|
+
readonly 400: "32px";
|
|
210
|
+
readonly 500: "64px";
|
|
211
|
+
readonly 600: "48px";
|
|
212
|
+
readonly 800: "64px";
|
|
213
|
+
readonly 1200: "96px";
|
|
214
|
+
readonly 1600: "128px";
|
|
215
|
+
};
|
|
216
|
+
'space-gap': {
|
|
217
|
+
readonly none: any;
|
|
218
|
+
readonly 50: any;
|
|
219
|
+
readonly 100: any;
|
|
220
|
+
readonly 200: any;
|
|
221
|
+
readonly 300: any;
|
|
222
|
+
};
|
|
223
|
+
'space-inset': {
|
|
224
|
+
readonly none: any;
|
|
225
|
+
readonly 50: any;
|
|
226
|
+
readonly 100: any;
|
|
227
|
+
readonly 150: any;
|
|
228
|
+
readonly 200: any;
|
|
229
|
+
readonly 300: any;
|
|
230
|
+
readonly 400: any;
|
|
231
|
+
readonly 600: any;
|
|
232
|
+
readonly 800: any;
|
|
233
|
+
readonly 1200: any;
|
|
234
|
+
readonly 1600: any;
|
|
425
235
|
};
|
|
426
|
-
|
|
236
|
+
'space-offset': {
|
|
237
|
+
readonly none: any;
|
|
238
|
+
readonly 50: any;
|
|
239
|
+
readonly 100: any;
|
|
240
|
+
readonly 150: any;
|
|
241
|
+
readonly 200: any;
|
|
242
|
+
readonly 300: any;
|
|
243
|
+
readonly 400: any;
|
|
244
|
+
readonly 600: any;
|
|
245
|
+
readonly 800: any;
|
|
246
|
+
readonly 1200: any;
|
|
247
|
+
readonly 1600: any;
|
|
248
|
+
readonly 'stacking-none': any;
|
|
249
|
+
readonly 'stacking-100': any;
|
|
250
|
+
readonly 'stacking-200': any;
|
|
251
|
+
readonly 'stacking-300': any;
|
|
252
|
+
readonly 'stacking-400': any;
|
|
253
|
+
readonly 'stacking-500': any;
|
|
254
|
+
readonly 'stacking-800': any;
|
|
255
|
+
};
|
|
256
|
+
'z-indices': {
|
|
257
|
+
readonly dropdownMenu: 100;
|
|
258
|
+
readonly popover: 200;
|
|
259
|
+
readonly tooltip: 300;
|
|
260
|
+
};
|
|
261
|
+
}, {
|
|
262
|
+
readonly background: "colors";
|
|
263
|
+
readonly backgroundColor: "colors";
|
|
264
|
+
readonly backgroundImage: "colors";
|
|
265
|
+
readonly blockSize: "sizes";
|
|
266
|
+
readonly border: "colors";
|
|
267
|
+
readonly borderBlock: "colors";
|
|
268
|
+
readonly borderBlockEnd: "colors";
|
|
269
|
+
readonly borderBlockStart: "colors";
|
|
270
|
+
readonly borderBottom: "colors";
|
|
271
|
+
readonly borderBottomColor: "colors";
|
|
272
|
+
readonly borderBottomLeftRadius: "radii";
|
|
273
|
+
readonly borderBottomRightRadius: "radii";
|
|
274
|
+
readonly borderBottomStyle: "border-styles";
|
|
275
|
+
readonly borderBottomWidth: "border-widths";
|
|
276
|
+
readonly borderColor: "colors";
|
|
277
|
+
readonly borderImage: "colors";
|
|
278
|
+
readonly borderInline: "colors";
|
|
279
|
+
readonly borderInlineEnd: "colors";
|
|
280
|
+
readonly borderInlineStart: "colors";
|
|
281
|
+
readonly borderLeft: "colors";
|
|
282
|
+
readonly borderLeftColor: "colors";
|
|
283
|
+
readonly borderLeftStyle: "border-styles";
|
|
284
|
+
readonly borderLeftWidth: "border-widths";
|
|
285
|
+
readonly borderRadius: "radii";
|
|
286
|
+
readonly borderRight: "colors";
|
|
287
|
+
readonly borderRightColor: "colors";
|
|
288
|
+
readonly borderRightStyle: "border-styles";
|
|
289
|
+
readonly borderRightWidth: "border-widths";
|
|
290
|
+
readonly borderStyle: "border-styles";
|
|
291
|
+
readonly borderTop: "colors";
|
|
292
|
+
readonly borderTopColor: "colors";
|
|
293
|
+
readonly borderTopLeftRadius: "radii";
|
|
294
|
+
readonly borderTopRightRadius: "radii";
|
|
295
|
+
readonly borderTopStyle: "border-styles";
|
|
296
|
+
readonly borderTopWidth: "border-widths";
|
|
297
|
+
readonly borderWidth: "border-widths";
|
|
298
|
+
readonly bottom: "space";
|
|
299
|
+
readonly boxShadow: "shadows";
|
|
300
|
+
readonly caretColor: "colors";
|
|
301
|
+
readonly color: "colors";
|
|
302
|
+
readonly columnGap: "space-gap";
|
|
303
|
+
readonly columnRuleColor: "colors";
|
|
304
|
+
readonly fill: "colors";
|
|
305
|
+
readonly flexBasis: "sizes";
|
|
306
|
+
readonly fontFamily: "fonts";
|
|
307
|
+
readonly fontSize: "font-sizes";
|
|
308
|
+
readonly fontWeight: "font-weights";
|
|
309
|
+
readonly gap: "space-gap";
|
|
310
|
+
readonly gridColumnGap: "space-gap";
|
|
311
|
+
readonly gridGap: "space-gap";
|
|
312
|
+
readonly gridRowGap: "space-gap";
|
|
313
|
+
readonly gridTemplateColumns: "sizes";
|
|
314
|
+
readonly gridTemplateRows: "sizes";
|
|
315
|
+
readonly height: "sizes";
|
|
316
|
+
readonly inlineSize: "sizes";
|
|
317
|
+
readonly inset: "space-inset";
|
|
318
|
+
readonly insetBlock: "space-inset";
|
|
319
|
+
readonly insetBlockEnd: "space-inset";
|
|
320
|
+
readonly insetBlockStart: "space-inset";
|
|
321
|
+
readonly insetInline: "space-inset";
|
|
322
|
+
readonly insetInlineEnd: "space-inset";
|
|
323
|
+
readonly insetInlineStart: "space-inset";
|
|
324
|
+
readonly left: "space";
|
|
325
|
+
readonly letterSpacing: "letter-spacings";
|
|
326
|
+
readonly lineHeight: "line-heights";
|
|
327
|
+
readonly margin: "space-offset";
|
|
328
|
+
readonly marginBlock: "space-offset";
|
|
329
|
+
readonly marginBlockEnd: "space-offset";
|
|
330
|
+
readonly marginBlockStart: "space-offset";
|
|
331
|
+
readonly marginBottom: "space-offset";
|
|
332
|
+
readonly marginInline: "space-offset";
|
|
333
|
+
readonly marginInlineEnd: "space-offset";
|
|
334
|
+
readonly marginInlineStart: "space-offset";
|
|
335
|
+
readonly marginLeft: "space-offset";
|
|
336
|
+
readonly marginRight: "space-offset";
|
|
337
|
+
readonly marginTop: "space-offset";
|
|
338
|
+
readonly maxBlockSize: "sizes";
|
|
339
|
+
readonly maxHeight: "sizes";
|
|
340
|
+
readonly maxInlineSize: "sizes";
|
|
341
|
+
readonly maxWidth: "sizes";
|
|
342
|
+
readonly minBlockSize: "sizes";
|
|
343
|
+
readonly minHeight: "sizes";
|
|
344
|
+
readonly minInlineSize: "sizes";
|
|
345
|
+
readonly minWidth: "sizes";
|
|
346
|
+
readonly outline: "colors";
|
|
347
|
+
readonly outlineColor: "colors";
|
|
348
|
+
readonly padding: "space-inset";
|
|
349
|
+
readonly paddingBlock: "space-inset";
|
|
350
|
+
readonly paddingBlockEnd: "space-inset";
|
|
351
|
+
readonly paddingBlockStart: "space-inset";
|
|
352
|
+
readonly paddingBottom: "space-inset";
|
|
353
|
+
readonly paddingInline: "space-inset";
|
|
354
|
+
readonly paddingInlineEnd: "space-inset";
|
|
355
|
+
readonly paddingInlineStart: "space-inset";
|
|
356
|
+
readonly paddingLeft: "space-inset";
|
|
357
|
+
readonly paddingRight: "space-inset";
|
|
358
|
+
readonly paddingTop: "space-inset";
|
|
359
|
+
readonly right: "space";
|
|
360
|
+
readonly rowGap: "space-gap";
|
|
361
|
+
readonly scrollMargin: "space-offset";
|
|
362
|
+
readonly scrollMarginBlock: "space-offset";
|
|
363
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
364
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
365
|
+
readonly scrollMarginBottom: "space-offset";
|
|
366
|
+
readonly scrollMarginInline: "space-offset";
|
|
367
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
368
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
369
|
+
readonly scrollMarginLeft: "space-offset";
|
|
370
|
+
readonly scrollMarginRight: "space-offset";
|
|
371
|
+
readonly scrollMarginTop: "space-offset";
|
|
372
|
+
readonly scrollPadding: "space-inset";
|
|
373
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
374
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
375
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
376
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
377
|
+
readonly scrollPaddingInline: "space-inset";
|
|
378
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
379
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
380
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
381
|
+
readonly scrollPaddingRight: "space-inset";
|
|
382
|
+
readonly scrollPaddingTop: "space-inset";
|
|
383
|
+
readonly stroke: "colors";
|
|
384
|
+
readonly textDecorationColor: "colors";
|
|
385
|
+
readonly textShadow: "shadows";
|
|
386
|
+
readonly top: "space";
|
|
387
|
+
readonly transition: "transitions";
|
|
388
|
+
readonly width: "sizes";
|
|
389
|
+
readonly zIndex: "z-indices";
|
|
390
|
+
}, {
|
|
391
|
+
paddingX: (value: {
|
|
392
|
+
readonly [$$PropertyValue]: "padding";
|
|
393
|
+
}) => {
|
|
394
|
+
paddingLeft: {
|
|
395
|
+
readonly [$$PropertyValue]: "padding";
|
|
396
|
+
};
|
|
397
|
+
paddingRight: {
|
|
398
|
+
readonly [$$PropertyValue]: "padding";
|
|
399
|
+
};
|
|
400
|
+
};
|
|
401
|
+
paddingY: (value: {
|
|
402
|
+
readonly [$$PropertyValue]: "padding";
|
|
403
|
+
}) => {
|
|
404
|
+
paddingTop: {
|
|
405
|
+
readonly [$$PropertyValue]: "padding";
|
|
406
|
+
};
|
|
407
|
+
paddingBottom: {
|
|
408
|
+
readonly [$$PropertyValue]: "padding";
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
marginX: (value: {
|
|
427
412
|
readonly [$$PropertyValue]: "margin";
|
|
413
|
+
}) => {
|
|
414
|
+
marginLeft: {
|
|
415
|
+
readonly [$$PropertyValue]: "margin";
|
|
416
|
+
};
|
|
417
|
+
marginRight: {
|
|
418
|
+
readonly [$$PropertyValue]: "margin";
|
|
419
|
+
};
|
|
428
420
|
};
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
421
|
+
marginY: (value: {
|
|
422
|
+
readonly [$$PropertyValue]: "margin";
|
|
423
|
+
}) => {
|
|
424
|
+
marginTop: {
|
|
425
|
+
readonly [$$PropertyValue]: "margin";
|
|
426
|
+
};
|
|
427
|
+
marginBottom: {
|
|
428
|
+
readonly [$$PropertyValue]: "margin";
|
|
429
|
+
};
|
|
435
430
|
};
|
|
436
|
-
|
|
431
|
+
square: (value: {
|
|
437
432
|
readonly [$$PropertyValue]: "width";
|
|
433
|
+
}) => {
|
|
434
|
+
width: {
|
|
435
|
+
readonly [$$PropertyValue]: "width";
|
|
436
|
+
};
|
|
437
|
+
height: {
|
|
438
|
+
readonly [$$PropertyValue]: "width";
|
|
439
|
+
};
|
|
438
440
|
};
|
|
439
|
-
};
|
|
440
|
-
}
|
|
441
|
+
}> | undefined;
|
|
442
|
+
}> & {
|
|
443
|
+
children?: react.ReactNode;
|
|
444
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "color" | "translate" | "prefix" | "asChild" | "children" | "slot" | "title" | "loop" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "orientation" | keyof _mirohq_design_system_stitches.CustomStylesProps | "unstyled"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_toolbar.ToolbarProps & react.RefAttributes<HTMLDivElement>>, {
|
|
441
445
|
unstyled?: boolean | "false" | undefined;
|
|
442
446
|
}, {}>;
|
|
443
447
|
declare type StyledToolbarProps = StrictComponentProps<typeof StyledToolbar>;
|
|
@@ -450,434 +454,438 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
450
454
|
unstyled?: boolean | "true" | "false" | undefined;
|
|
451
455
|
wrapper?: boolean | "true" | undefined;
|
|
452
456
|
active?: boolean | "true" | "false" | undefined;
|
|
453
|
-
}, {}> & _mirohq_design_system_stitches.
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
colors: {
|
|
461
|
-
readonly 'blue-100': any;
|
|
462
|
-
readonly 'blue-200': any;
|
|
463
|
-
readonly 'blue-300': any;
|
|
464
|
-
readonly 'blue-400': any;
|
|
465
|
-
readonly 'blue-500': any;
|
|
466
|
-
readonly 'blue-600': any;
|
|
467
|
-
readonly 'blue-700': any;
|
|
468
|
-
readonly 'blue-800': any;
|
|
469
|
-
readonly 'blue-900': any;
|
|
470
|
-
readonly 'blue-1000': any;
|
|
471
|
-
readonly 'gray-100': any;
|
|
472
|
-
readonly 'gray-200': any;
|
|
473
|
-
readonly 'gray-300': any;
|
|
474
|
-
readonly 'gray-400': any;
|
|
475
|
-
readonly 'gray-500': any;
|
|
476
|
-
readonly 'gray-600': any;
|
|
477
|
-
readonly 'gray-700': any;
|
|
478
|
-
readonly 'gray-800': any;
|
|
479
|
-
readonly 'gray-900': any;
|
|
480
|
-
readonly 'indigo-100': any;
|
|
481
|
-
readonly 'indigo-200': any;
|
|
482
|
-
readonly 'indigo-300': any;
|
|
483
|
-
readonly 'indigo-400': any;
|
|
484
|
-
readonly 'indigo-500': any;
|
|
485
|
-
readonly 'indigo-600': any;
|
|
486
|
-
readonly 'indigo-700': any;
|
|
487
|
-
readonly 'indigo-800': any;
|
|
488
|
-
readonly 'indigo-900': any;
|
|
489
|
-
readonly 'red-100': any;
|
|
490
|
-
readonly 'red-200': any;
|
|
491
|
-
readonly 'red-300': any;
|
|
492
|
-
readonly 'red-400': any;
|
|
493
|
-
readonly 'red-500': any;
|
|
494
|
-
readonly 'red-600': any;
|
|
495
|
-
readonly 'red-700': any;
|
|
496
|
-
readonly 'red-800': any;
|
|
497
|
-
readonly 'red-900': any;
|
|
498
|
-
readonly 'yellow-100': any;
|
|
499
|
-
readonly 'yellow-200': any;
|
|
500
|
-
readonly 'yellow-300': any;
|
|
501
|
-
readonly 'yellow-400': any;
|
|
502
|
-
readonly 'yellow-500': any;
|
|
503
|
-
readonly 'yellow-600': any;
|
|
504
|
-
readonly 'yellow-700': any;
|
|
505
|
-
readonly 'yellow-800': any;
|
|
506
|
-
readonly 'yellow-900': any;
|
|
507
|
-
readonly 'green-100': any;
|
|
508
|
-
readonly 'green-200': any;
|
|
509
|
-
readonly 'green-300': any;
|
|
510
|
-
readonly 'green-400': any;
|
|
511
|
-
readonly 'green-500': any;
|
|
512
|
-
readonly 'green-600': any;
|
|
513
|
-
readonly 'green-700': any;
|
|
514
|
-
readonly 'green-800': any;
|
|
515
|
-
readonly 'green-900': any;
|
|
516
|
-
readonly black: any;
|
|
517
|
-
readonly white: any;
|
|
518
|
-
readonly transparent: any;
|
|
519
|
-
readonly 'background-neutrals'?: any;
|
|
520
|
-
readonly 'background-neutrals-body'?: any;
|
|
521
|
-
readonly 'background-neutrals-container'?: any;
|
|
522
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
523
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
524
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
525
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
526
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
527
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
528
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
529
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
530
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
531
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
532
|
-
readonly 'background-primary-prominent'?: any;
|
|
533
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
534
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
535
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
536
|
-
readonly 'background-primary-subtle'?: any;
|
|
537
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
538
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
539
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
540
|
-
readonly 'background-danger-prominent'?: any;
|
|
541
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
542
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
543
|
-
readonly 'background-danger'?: any;
|
|
544
|
-
readonly 'background-danger-hover'?: any;
|
|
545
|
-
readonly 'background-success'?: any;
|
|
546
|
-
readonly 'background-warning-subtle'?: any;
|
|
547
|
-
readonly 'background-warning-prominent'?: any;
|
|
548
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
549
|
-
readonly 'text-neutrals'?: any;
|
|
550
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
551
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
552
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
553
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
554
|
-
readonly 'text-primary-inverted'?: any;
|
|
555
|
-
readonly 'text-primary'?: any;
|
|
556
|
-
readonly 'text-primary-hover'?: any;
|
|
557
|
-
readonly 'text-primary-active'?: any;
|
|
558
|
-
readonly 'text-primary-selected'?: any;
|
|
559
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
560
|
-
readonly 'text-danger-inverted'?: any;
|
|
561
|
-
readonly 'text-danger'?: any;
|
|
562
|
-
readonly 'text-danger-hover'?: any;
|
|
563
|
-
readonly 'text-danger-active'?: any;
|
|
564
|
-
readonly 'text-success'?: any;
|
|
565
|
-
readonly 'text-warning'?: any;
|
|
566
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
567
|
-
readonly 'icon-neutrals'?: any;
|
|
568
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
569
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
570
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
571
|
-
readonly 'icon-neutrals-search'?: any;
|
|
572
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
573
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
574
|
-
readonly 'icon-primary-inverted'?: any;
|
|
575
|
-
readonly 'icon-primary'?: any;
|
|
576
|
-
readonly 'icon-primary-hover'?: any;
|
|
577
|
-
readonly 'icon-primary-active'?: any;
|
|
578
|
-
readonly 'icon-primary-selected'?: any;
|
|
579
|
-
readonly 'icon-danger-inverted'?: any;
|
|
580
|
-
readonly 'icon-danger'?: any;
|
|
581
|
-
readonly 'icon-danger-hover'?: any;
|
|
582
|
-
readonly 'icon-danger-active'?: any;
|
|
583
|
-
readonly 'icon-success-inverted'?: any;
|
|
584
|
-
readonly 'icon-success'?: any;
|
|
585
|
-
readonly 'icon-warning'?: any;
|
|
586
|
-
readonly 'border-focus-outer'?: any;
|
|
587
|
-
readonly 'border-focus-middle'?: any;
|
|
588
|
-
readonly 'border-focus-inner'?: any;
|
|
589
|
-
readonly 'border-neutrals'?: any;
|
|
590
|
-
readonly 'border-neutrals-hover'?: any;
|
|
591
|
-
readonly 'border-neutrals-active'?: any;
|
|
592
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
593
|
-
readonly 'border-neutrals-controls'?: any;
|
|
594
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
595
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
596
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
597
|
-
readonly 'border-primary'?: any;
|
|
598
|
-
readonly 'border-primary-hover'?: any;
|
|
599
|
-
readonly 'border-primary-active'?: any;
|
|
600
|
-
readonly 'border-primary-inverted'?: any;
|
|
601
|
-
readonly 'border-danger'?: any;
|
|
602
|
-
readonly 'border-success'?: any;
|
|
603
|
-
readonly 'border-warning'?: any;
|
|
604
|
-
};
|
|
605
|
-
'font-sizes': {
|
|
606
|
-
readonly 150: "0.75rem";
|
|
607
|
-
readonly 175: "0.875rem";
|
|
608
|
-
readonly 200: "1rem";
|
|
609
|
-
readonly 225: "1.125rem";
|
|
610
|
-
readonly 250: "1.25rem";
|
|
611
|
-
readonly 300: "1.5rem";
|
|
612
|
-
readonly 400: "2rem";
|
|
613
|
-
readonly 500: "2.5rem";
|
|
614
|
-
readonly 600: "3rem";
|
|
615
|
-
readonly 800: "4rem";
|
|
616
|
-
readonly 900: "4.5rem";
|
|
617
|
-
};
|
|
618
|
-
radii: {
|
|
619
|
-
readonly none: 0;
|
|
620
|
-
readonly half: "999em";
|
|
621
|
-
readonly 25: "2px";
|
|
622
|
-
readonly 50: "4px";
|
|
623
|
-
readonly 75: "6px";
|
|
624
|
-
readonly 100: "8px";
|
|
625
|
-
readonly 200: "16px";
|
|
626
|
-
};
|
|
627
|
-
shadows: {
|
|
628
|
-
readonly 50: "0 4px 16px #05003812";
|
|
629
|
-
readonly 100: "0 8px 32px #05003808";
|
|
630
|
-
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
631
|
-
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
632
|
-
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
633
|
-
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
634
|
-
};
|
|
635
|
-
sizes: {
|
|
636
|
-
readonly number: string;
|
|
637
|
-
readonly 'icon-200': "16px";
|
|
638
|
-
readonly 'icon-300': "24px";
|
|
639
|
-
readonly 'icon-400': "32px";
|
|
640
|
-
};
|
|
641
|
-
space: {
|
|
642
|
-
readonly none: 0;
|
|
643
|
-
readonly 50: "4px";
|
|
644
|
-
readonly 100: "8px";
|
|
645
|
-
readonly 150: "12px";
|
|
646
|
-
readonly 200: "16px";
|
|
647
|
-
readonly 300: "24px";
|
|
648
|
-
readonly 400: "32px";
|
|
649
|
-
readonly 500: "64px";
|
|
650
|
-
readonly 600: "48px";
|
|
651
|
-
readonly 800: "64px";
|
|
652
|
-
readonly 1200: "96px";
|
|
653
|
-
readonly 1600: "128px";
|
|
654
|
-
};
|
|
655
|
-
'space-gap': {
|
|
656
|
-
readonly none: any;
|
|
657
|
-
readonly 50: any;
|
|
658
|
-
readonly 100: any;
|
|
659
|
-
readonly 200: any;
|
|
660
|
-
readonly 300: any;
|
|
661
|
-
};
|
|
662
|
-
'space-inset': {
|
|
663
|
-
readonly none: any;
|
|
664
|
-
readonly 50: any;
|
|
665
|
-
readonly 100: any;
|
|
666
|
-
readonly 150: any;
|
|
667
|
-
readonly 200: any;
|
|
668
|
-
readonly 300: any;
|
|
669
|
-
readonly 400: any;
|
|
670
|
-
readonly 600: any;
|
|
671
|
-
readonly 800: any;
|
|
672
|
-
readonly 1200: any;
|
|
673
|
-
readonly 1600: any;
|
|
674
|
-
};
|
|
675
|
-
'space-offset': {
|
|
676
|
-
readonly none: any;
|
|
677
|
-
readonly 50: any;
|
|
678
|
-
readonly 100: any;
|
|
679
|
-
readonly 150: any;
|
|
680
|
-
readonly 200: any;
|
|
681
|
-
readonly 300: any;
|
|
682
|
-
readonly 400: any;
|
|
683
|
-
readonly 600: any;
|
|
684
|
-
readonly 800: any;
|
|
685
|
-
readonly 1200: any;
|
|
686
|
-
readonly 1600: any;
|
|
687
|
-
readonly 'stacking-none': any;
|
|
688
|
-
readonly 'stacking-100': any;
|
|
689
|
-
readonly 'stacking-200': any;
|
|
690
|
-
readonly 'stacking-300': any;
|
|
691
|
-
readonly 'stacking-400': any;
|
|
692
|
-
readonly 'stacking-500': any;
|
|
693
|
-
readonly 'stacking-800': any;
|
|
694
|
-
};
|
|
695
|
-
'z-indices': {
|
|
696
|
-
readonly dropdownMenu: 100;
|
|
697
|
-
readonly popover: 200;
|
|
698
|
-
readonly tooltip: 300;
|
|
699
|
-
};
|
|
700
|
-
}, {
|
|
701
|
-
readonly background: "colors";
|
|
702
|
-
readonly backgroundColor: "colors";
|
|
703
|
-
readonly backgroundImage: "colors";
|
|
704
|
-
readonly blockSize: "sizes";
|
|
705
|
-
readonly border: "colors";
|
|
706
|
-
readonly borderBlock: "colors";
|
|
707
|
-
readonly borderBlockEnd: "colors";
|
|
708
|
-
readonly borderBlockStart: "colors";
|
|
709
|
-
readonly borderBottom: "colors";
|
|
710
|
-
readonly borderBottomColor: "colors";
|
|
711
|
-
readonly borderBottomLeftRadius: "radii";
|
|
712
|
-
readonly borderBottomRightRadius: "radii";
|
|
713
|
-
readonly borderBottomStyle: "border-styles";
|
|
714
|
-
readonly borderBottomWidth: "border-widths";
|
|
715
|
-
readonly borderColor: "colors";
|
|
716
|
-
readonly borderImage: "colors";
|
|
717
|
-
readonly borderInline: "colors";
|
|
718
|
-
readonly borderInlineEnd: "colors";
|
|
719
|
-
readonly borderInlineStart: "colors";
|
|
720
|
-
readonly borderLeft: "colors";
|
|
721
|
-
readonly borderLeftColor: "colors";
|
|
722
|
-
readonly borderLeftStyle: "border-styles";
|
|
723
|
-
readonly borderLeftWidth: "border-widths";
|
|
724
|
-
readonly borderRadius: "radii";
|
|
725
|
-
readonly borderRight: "colors";
|
|
726
|
-
readonly borderRightColor: "colors";
|
|
727
|
-
readonly borderRightStyle: "border-styles";
|
|
728
|
-
readonly borderRightWidth: "border-widths";
|
|
729
|
-
readonly borderStyle: "border-styles";
|
|
730
|
-
readonly borderTop: "colors";
|
|
731
|
-
readonly borderTopColor: "colors";
|
|
732
|
-
readonly borderTopLeftRadius: "radii";
|
|
733
|
-
readonly borderTopRightRadius: "radii";
|
|
734
|
-
readonly borderTopStyle: "border-styles";
|
|
735
|
-
readonly borderTopWidth: "border-widths";
|
|
736
|
-
readonly borderWidth: "border-widths";
|
|
737
|
-
readonly bottom: "space";
|
|
738
|
-
readonly boxShadow: "shadows";
|
|
739
|
-
readonly caretColor: "colors";
|
|
740
|
-
readonly color: "colors";
|
|
741
|
-
readonly columnGap: "space-gap";
|
|
742
|
-
readonly columnRuleColor: "colors";
|
|
743
|
-
readonly fill: "colors";
|
|
744
|
-
readonly flexBasis: "sizes";
|
|
745
|
-
readonly fontFamily: "fonts";
|
|
746
|
-
readonly fontSize: "font-sizes";
|
|
747
|
-
readonly fontWeight: "font-weights";
|
|
748
|
-
readonly gap: "space-gap";
|
|
749
|
-
readonly gridColumnGap: "space-gap";
|
|
750
|
-
readonly gridGap: "space-gap";
|
|
751
|
-
readonly gridRowGap: "space-gap";
|
|
752
|
-
readonly gridTemplateColumns: "sizes";
|
|
753
|
-
readonly gridTemplateRows: "sizes";
|
|
754
|
-
readonly height: "sizes";
|
|
755
|
-
readonly inlineSize: "sizes";
|
|
756
|
-
readonly inset: "space-inset";
|
|
757
|
-
readonly insetBlock: "space-inset";
|
|
758
|
-
readonly insetBlockEnd: "space-inset";
|
|
759
|
-
readonly insetBlockStart: "space-inset";
|
|
760
|
-
readonly insetInline: "space-inset";
|
|
761
|
-
readonly insetInlineEnd: "space-inset";
|
|
762
|
-
readonly insetInlineStart: "space-inset";
|
|
763
|
-
readonly left: "space";
|
|
764
|
-
readonly letterSpacing: "letter-spacings";
|
|
765
|
-
readonly lineHeight: "line-heights";
|
|
766
|
-
readonly margin: "space-offset";
|
|
767
|
-
readonly marginBlock: "space-offset";
|
|
768
|
-
readonly marginBlockEnd: "space-offset";
|
|
769
|
-
readonly marginBlockStart: "space-offset";
|
|
770
|
-
readonly marginBottom: "space-offset";
|
|
771
|
-
readonly marginInline: "space-offset";
|
|
772
|
-
readonly marginInlineEnd: "space-offset";
|
|
773
|
-
readonly marginInlineStart: "space-offset";
|
|
774
|
-
readonly marginLeft: "space-offset";
|
|
775
|
-
readonly marginRight: "space-offset";
|
|
776
|
-
readonly marginTop: "space-offset";
|
|
777
|
-
readonly maxBlockSize: "sizes";
|
|
778
|
-
readonly maxHeight: "sizes";
|
|
779
|
-
readonly maxInlineSize: "sizes";
|
|
780
|
-
readonly maxWidth: "sizes";
|
|
781
|
-
readonly minBlockSize: "sizes";
|
|
782
|
-
readonly minHeight: "sizes";
|
|
783
|
-
readonly minInlineSize: "sizes";
|
|
784
|
-
readonly minWidth: "sizes";
|
|
785
|
-
readonly outline: "colors";
|
|
786
|
-
readonly outlineColor: "colors";
|
|
787
|
-
readonly padding: "space-inset";
|
|
788
|
-
readonly paddingBlock: "space-inset";
|
|
789
|
-
readonly paddingBlockEnd: "space-inset";
|
|
790
|
-
readonly paddingBlockStart: "space-inset";
|
|
791
|
-
readonly paddingBottom: "space-inset";
|
|
792
|
-
readonly paddingInline: "space-inset";
|
|
793
|
-
readonly paddingInlineEnd: "space-inset";
|
|
794
|
-
readonly paddingInlineStart: "space-inset";
|
|
795
|
-
readonly paddingLeft: "space-inset";
|
|
796
|
-
readonly paddingRight: "space-inset";
|
|
797
|
-
readonly paddingTop: "space-inset";
|
|
798
|
-
readonly right: "space";
|
|
799
|
-
readonly rowGap: "space-gap";
|
|
800
|
-
readonly scrollMargin: "space-offset";
|
|
801
|
-
readonly scrollMarginBlock: "space-offset";
|
|
802
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
803
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
804
|
-
readonly scrollMarginBottom: "space-offset";
|
|
805
|
-
readonly scrollMarginInline: "space-offset";
|
|
806
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
807
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
808
|
-
readonly scrollMarginLeft: "space-offset";
|
|
809
|
-
readonly scrollMarginRight: "space-offset";
|
|
810
|
-
readonly scrollMarginTop: "space-offset";
|
|
811
|
-
readonly scrollPadding: "space-inset";
|
|
812
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
813
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
814
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
815
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
816
|
-
readonly scrollPaddingInline: "space-inset";
|
|
817
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
818
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
819
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
820
|
-
readonly scrollPaddingRight: "space-inset";
|
|
821
|
-
readonly scrollPaddingTop: "space-inset";
|
|
822
|
-
readonly stroke: "colors";
|
|
823
|
-
readonly textDecorationColor: "colors";
|
|
824
|
-
readonly textShadow: "shadows";
|
|
825
|
-
readonly top: "space";
|
|
826
|
-
readonly transition: "transitions";
|
|
827
|
-
readonly width: "sizes";
|
|
828
|
-
readonly zIndex: "z-indices";
|
|
829
|
-
}, {
|
|
830
|
-
paddingX: (value: {
|
|
831
|
-
readonly [$$PropertyValue]: "padding";
|
|
832
|
-
}) => {
|
|
833
|
-
paddingLeft: {
|
|
834
|
-
readonly [$$PropertyValue]: "padding";
|
|
457
|
+
}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<_radix_ui_react_toolbar.ToolbarButtonProps & react.RefAttributes<HTMLButtonElement>, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
458
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
459
|
+
'border-widths': {
|
|
460
|
+
readonly none: 0;
|
|
461
|
+
readonly sm: "1px";
|
|
462
|
+
readonly md: "2px";
|
|
463
|
+
readonly lg: "4px";
|
|
835
464
|
};
|
|
836
|
-
|
|
837
|
-
readonly
|
|
465
|
+
colors: {
|
|
466
|
+
readonly 'blue-100': any;
|
|
467
|
+
readonly 'blue-200': any;
|
|
468
|
+
readonly 'blue-300': any;
|
|
469
|
+
readonly 'blue-400': any;
|
|
470
|
+
readonly 'blue-500': any;
|
|
471
|
+
readonly 'blue-600': any;
|
|
472
|
+
readonly 'blue-700': any;
|
|
473
|
+
readonly 'blue-800': any;
|
|
474
|
+
readonly 'blue-900': any;
|
|
475
|
+
readonly 'blue-1000': any;
|
|
476
|
+
readonly 'gray-100': any;
|
|
477
|
+
readonly 'gray-200': any;
|
|
478
|
+
readonly 'gray-300': any;
|
|
479
|
+
readonly 'gray-400': any;
|
|
480
|
+
readonly 'gray-500': any;
|
|
481
|
+
readonly 'gray-600': any;
|
|
482
|
+
readonly 'gray-700': any;
|
|
483
|
+
readonly 'gray-800': any;
|
|
484
|
+
readonly 'gray-900': any;
|
|
485
|
+
readonly 'indigo-100': any;
|
|
486
|
+
readonly 'indigo-200': any;
|
|
487
|
+
readonly 'indigo-300': any;
|
|
488
|
+
readonly 'indigo-400': any;
|
|
489
|
+
readonly 'indigo-500': any;
|
|
490
|
+
readonly 'indigo-600': any;
|
|
491
|
+
readonly 'indigo-700': any;
|
|
492
|
+
readonly 'indigo-800': any;
|
|
493
|
+
readonly 'indigo-900': any;
|
|
494
|
+
readonly 'red-100': any;
|
|
495
|
+
readonly 'red-200': any;
|
|
496
|
+
readonly 'red-300': any;
|
|
497
|
+
readonly 'red-400': any;
|
|
498
|
+
readonly 'red-500': any;
|
|
499
|
+
readonly 'red-600': any;
|
|
500
|
+
readonly 'red-700': any;
|
|
501
|
+
readonly 'red-800': any;
|
|
502
|
+
readonly 'red-900': any;
|
|
503
|
+
readonly 'yellow-100': any;
|
|
504
|
+
readonly 'yellow-200': any;
|
|
505
|
+
readonly 'yellow-300': any;
|
|
506
|
+
readonly 'yellow-400': any;
|
|
507
|
+
readonly 'yellow-500': any;
|
|
508
|
+
readonly 'yellow-600': any;
|
|
509
|
+
readonly 'yellow-700': any;
|
|
510
|
+
readonly 'yellow-800': any;
|
|
511
|
+
readonly 'yellow-900': any;
|
|
512
|
+
readonly 'green-100': any;
|
|
513
|
+
readonly 'green-200': any;
|
|
514
|
+
readonly 'green-300': any;
|
|
515
|
+
readonly 'green-400': any;
|
|
516
|
+
readonly 'green-500': any;
|
|
517
|
+
readonly 'green-600': any;
|
|
518
|
+
readonly 'green-700': any;
|
|
519
|
+
readonly 'green-800': any;
|
|
520
|
+
readonly 'green-900': any;
|
|
521
|
+
readonly black: any;
|
|
522
|
+
readonly white: any;
|
|
523
|
+
readonly transparent: any;
|
|
524
|
+
readonly 'background-neutrals'?: any;
|
|
525
|
+
readonly 'background-neutrals-body'?: any;
|
|
526
|
+
readonly 'background-neutrals-container'?: any;
|
|
527
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
528
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
529
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
530
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
531
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
532
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
533
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
534
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
535
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
536
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
537
|
+
readonly 'background-primary-prominent'?: any;
|
|
538
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
539
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
540
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
541
|
+
readonly 'background-primary-subtle'?: any;
|
|
542
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
543
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
544
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
545
|
+
readonly 'background-danger-prominent'?: any;
|
|
546
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
547
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
548
|
+
readonly 'background-danger'?: any;
|
|
549
|
+
readonly 'background-danger-hover'?: any;
|
|
550
|
+
readonly 'background-success'?: any;
|
|
551
|
+
readonly 'background-warning-subtle'?: any;
|
|
552
|
+
readonly 'background-warning-prominent'?: any;
|
|
553
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
554
|
+
readonly 'text-neutrals'?: any;
|
|
555
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
556
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
557
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
558
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
559
|
+
readonly 'text-primary-inverted'?: any;
|
|
560
|
+
readonly 'text-primary'?: any;
|
|
561
|
+
readonly 'text-primary-hover'?: any;
|
|
562
|
+
readonly 'text-primary-active'?: any;
|
|
563
|
+
readonly 'text-primary-selected'?: any;
|
|
564
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
565
|
+
readonly 'text-danger-inverted'?: any;
|
|
566
|
+
readonly 'text-danger'?: any;
|
|
567
|
+
readonly 'text-danger-hover'?: any;
|
|
568
|
+
readonly 'text-danger-active'?: any;
|
|
569
|
+
readonly 'text-success'?: any;
|
|
570
|
+
readonly 'text-warning'?: any;
|
|
571
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
572
|
+
readonly 'icon-neutrals'?: any;
|
|
573
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
574
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
575
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
576
|
+
readonly 'icon-neutrals-search'?: any;
|
|
577
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
578
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
579
|
+
readonly 'icon-primary-inverted'?: any;
|
|
580
|
+
readonly 'icon-primary'?: any;
|
|
581
|
+
readonly 'icon-primary-hover'?: any;
|
|
582
|
+
readonly 'icon-primary-active'?: any;
|
|
583
|
+
readonly 'icon-primary-selected'?: any;
|
|
584
|
+
readonly 'icon-danger-inverted'?: any;
|
|
585
|
+
readonly 'icon-danger'?: any;
|
|
586
|
+
readonly 'icon-danger-hover'?: any;
|
|
587
|
+
readonly 'icon-danger-active'?: any;
|
|
588
|
+
readonly 'icon-success-inverted'?: any;
|
|
589
|
+
readonly 'icon-success'?: any;
|
|
590
|
+
readonly 'icon-warning'?: any;
|
|
591
|
+
readonly 'border-focus-outer'?: any;
|
|
592
|
+
readonly 'border-focus-middle'?: any;
|
|
593
|
+
readonly 'border-focus-inner'?: any;
|
|
594
|
+
readonly 'border-neutrals'?: any;
|
|
595
|
+
readonly 'border-neutrals-hover'?: any;
|
|
596
|
+
readonly 'border-neutrals-active'?: any;
|
|
597
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
598
|
+
readonly 'border-neutrals-controls'?: any;
|
|
599
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
600
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
601
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
602
|
+
readonly 'border-primary'?: any;
|
|
603
|
+
readonly 'border-primary-hover'?: any;
|
|
604
|
+
readonly 'border-primary-active'?: any;
|
|
605
|
+
readonly 'border-primary-inverted'?: any;
|
|
606
|
+
readonly 'border-danger'?: any;
|
|
607
|
+
readonly 'border-success'?: any;
|
|
608
|
+
readonly 'border-warning'?: any;
|
|
838
609
|
};
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
readonly
|
|
610
|
+
'font-sizes': {
|
|
611
|
+
readonly 150: "0.75rem";
|
|
612
|
+
readonly 175: "0.875rem";
|
|
613
|
+
readonly 200: "1rem";
|
|
614
|
+
readonly 225: "1.125rem";
|
|
615
|
+
readonly 250: "1.25rem";
|
|
616
|
+
readonly 300: "1.5rem";
|
|
617
|
+
readonly 400: "2rem";
|
|
618
|
+
readonly 500: "2.5rem";
|
|
619
|
+
readonly 600: "3rem";
|
|
620
|
+
readonly 800: "4rem";
|
|
621
|
+
readonly 900: "4.5rem";
|
|
845
622
|
};
|
|
846
|
-
|
|
847
|
-
readonly
|
|
623
|
+
radii: {
|
|
624
|
+
readonly none: 0;
|
|
625
|
+
readonly half: "999em";
|
|
626
|
+
readonly 25: "2px";
|
|
627
|
+
readonly 50: "4px";
|
|
628
|
+
readonly 75: "6px";
|
|
629
|
+
readonly 100: "8px";
|
|
630
|
+
readonly 200: "16px";
|
|
848
631
|
};
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
readonly
|
|
632
|
+
shadows: {
|
|
633
|
+
readonly 50: "0 4px 16px #05003812";
|
|
634
|
+
readonly 100: "0 8px 32px #05003808";
|
|
635
|
+
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
636
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
637
|
+
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
638
|
+
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
855
639
|
};
|
|
856
|
-
|
|
857
|
-
readonly
|
|
640
|
+
sizes: {
|
|
641
|
+
readonly number: string;
|
|
642
|
+
readonly 'icon-200': "16px";
|
|
643
|
+
readonly 'icon-300': "24px";
|
|
644
|
+
readonly 'icon-400': "32px";
|
|
858
645
|
};
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
readonly
|
|
646
|
+
space: {
|
|
647
|
+
readonly none: 0;
|
|
648
|
+
readonly 50: "4px";
|
|
649
|
+
readonly 100: "8px";
|
|
650
|
+
readonly 150: "12px";
|
|
651
|
+
readonly 200: "16px";
|
|
652
|
+
readonly 300: "24px";
|
|
653
|
+
readonly 400: "32px";
|
|
654
|
+
readonly 500: "64px";
|
|
655
|
+
readonly 600: "48px";
|
|
656
|
+
readonly 800: "64px";
|
|
657
|
+
readonly 1200: "96px";
|
|
658
|
+
readonly 1600: "128px";
|
|
659
|
+
};
|
|
660
|
+
'space-gap': {
|
|
661
|
+
readonly none: any;
|
|
662
|
+
readonly 50: any;
|
|
663
|
+
readonly 100: any;
|
|
664
|
+
readonly 200: any;
|
|
665
|
+
readonly 300: any;
|
|
666
|
+
};
|
|
667
|
+
'space-inset': {
|
|
668
|
+
readonly none: any;
|
|
669
|
+
readonly 50: any;
|
|
670
|
+
readonly 100: any;
|
|
671
|
+
readonly 150: any;
|
|
672
|
+
readonly 200: any;
|
|
673
|
+
readonly 300: any;
|
|
674
|
+
readonly 400: any;
|
|
675
|
+
readonly 600: any;
|
|
676
|
+
readonly 800: any;
|
|
677
|
+
readonly 1200: any;
|
|
678
|
+
readonly 1600: any;
|
|
865
679
|
};
|
|
866
|
-
|
|
680
|
+
'space-offset': {
|
|
681
|
+
readonly none: any;
|
|
682
|
+
readonly 50: any;
|
|
683
|
+
readonly 100: any;
|
|
684
|
+
readonly 150: any;
|
|
685
|
+
readonly 200: any;
|
|
686
|
+
readonly 300: any;
|
|
687
|
+
readonly 400: any;
|
|
688
|
+
readonly 600: any;
|
|
689
|
+
readonly 800: any;
|
|
690
|
+
readonly 1200: any;
|
|
691
|
+
readonly 1600: any;
|
|
692
|
+
readonly 'stacking-none': any;
|
|
693
|
+
readonly 'stacking-100': any;
|
|
694
|
+
readonly 'stacking-200': any;
|
|
695
|
+
readonly 'stacking-300': any;
|
|
696
|
+
readonly 'stacking-400': any;
|
|
697
|
+
readonly 'stacking-500': any;
|
|
698
|
+
readonly 'stacking-800': any;
|
|
699
|
+
};
|
|
700
|
+
'z-indices': {
|
|
701
|
+
readonly dropdownMenu: 100;
|
|
702
|
+
readonly popover: 200;
|
|
703
|
+
readonly tooltip: 300;
|
|
704
|
+
};
|
|
705
|
+
}, {
|
|
706
|
+
readonly background: "colors";
|
|
707
|
+
readonly backgroundColor: "colors";
|
|
708
|
+
readonly backgroundImage: "colors";
|
|
709
|
+
readonly blockSize: "sizes";
|
|
710
|
+
readonly border: "colors";
|
|
711
|
+
readonly borderBlock: "colors";
|
|
712
|
+
readonly borderBlockEnd: "colors";
|
|
713
|
+
readonly borderBlockStart: "colors";
|
|
714
|
+
readonly borderBottom: "colors";
|
|
715
|
+
readonly borderBottomColor: "colors";
|
|
716
|
+
readonly borderBottomLeftRadius: "radii";
|
|
717
|
+
readonly borderBottomRightRadius: "radii";
|
|
718
|
+
readonly borderBottomStyle: "border-styles";
|
|
719
|
+
readonly borderBottomWidth: "border-widths";
|
|
720
|
+
readonly borderColor: "colors";
|
|
721
|
+
readonly borderImage: "colors";
|
|
722
|
+
readonly borderInline: "colors";
|
|
723
|
+
readonly borderInlineEnd: "colors";
|
|
724
|
+
readonly borderInlineStart: "colors";
|
|
725
|
+
readonly borderLeft: "colors";
|
|
726
|
+
readonly borderLeftColor: "colors";
|
|
727
|
+
readonly borderLeftStyle: "border-styles";
|
|
728
|
+
readonly borderLeftWidth: "border-widths";
|
|
729
|
+
readonly borderRadius: "radii";
|
|
730
|
+
readonly borderRight: "colors";
|
|
731
|
+
readonly borderRightColor: "colors";
|
|
732
|
+
readonly borderRightStyle: "border-styles";
|
|
733
|
+
readonly borderRightWidth: "border-widths";
|
|
734
|
+
readonly borderStyle: "border-styles";
|
|
735
|
+
readonly borderTop: "colors";
|
|
736
|
+
readonly borderTopColor: "colors";
|
|
737
|
+
readonly borderTopLeftRadius: "radii";
|
|
738
|
+
readonly borderTopRightRadius: "radii";
|
|
739
|
+
readonly borderTopStyle: "border-styles";
|
|
740
|
+
readonly borderTopWidth: "border-widths";
|
|
741
|
+
readonly borderWidth: "border-widths";
|
|
742
|
+
readonly bottom: "space";
|
|
743
|
+
readonly boxShadow: "shadows";
|
|
744
|
+
readonly caretColor: "colors";
|
|
745
|
+
readonly color: "colors";
|
|
746
|
+
readonly columnGap: "space-gap";
|
|
747
|
+
readonly columnRuleColor: "colors";
|
|
748
|
+
readonly fill: "colors";
|
|
749
|
+
readonly flexBasis: "sizes";
|
|
750
|
+
readonly fontFamily: "fonts";
|
|
751
|
+
readonly fontSize: "font-sizes";
|
|
752
|
+
readonly fontWeight: "font-weights";
|
|
753
|
+
readonly gap: "space-gap";
|
|
754
|
+
readonly gridColumnGap: "space-gap";
|
|
755
|
+
readonly gridGap: "space-gap";
|
|
756
|
+
readonly gridRowGap: "space-gap";
|
|
757
|
+
readonly gridTemplateColumns: "sizes";
|
|
758
|
+
readonly gridTemplateRows: "sizes";
|
|
759
|
+
readonly height: "sizes";
|
|
760
|
+
readonly inlineSize: "sizes";
|
|
761
|
+
readonly inset: "space-inset";
|
|
762
|
+
readonly insetBlock: "space-inset";
|
|
763
|
+
readonly insetBlockEnd: "space-inset";
|
|
764
|
+
readonly insetBlockStart: "space-inset";
|
|
765
|
+
readonly insetInline: "space-inset";
|
|
766
|
+
readonly insetInlineEnd: "space-inset";
|
|
767
|
+
readonly insetInlineStart: "space-inset";
|
|
768
|
+
readonly left: "space";
|
|
769
|
+
readonly letterSpacing: "letter-spacings";
|
|
770
|
+
readonly lineHeight: "line-heights";
|
|
771
|
+
readonly margin: "space-offset";
|
|
772
|
+
readonly marginBlock: "space-offset";
|
|
773
|
+
readonly marginBlockEnd: "space-offset";
|
|
774
|
+
readonly marginBlockStart: "space-offset";
|
|
775
|
+
readonly marginBottom: "space-offset";
|
|
776
|
+
readonly marginInline: "space-offset";
|
|
777
|
+
readonly marginInlineEnd: "space-offset";
|
|
778
|
+
readonly marginInlineStart: "space-offset";
|
|
779
|
+
readonly marginLeft: "space-offset";
|
|
780
|
+
readonly marginRight: "space-offset";
|
|
781
|
+
readonly marginTop: "space-offset";
|
|
782
|
+
readonly maxBlockSize: "sizes";
|
|
783
|
+
readonly maxHeight: "sizes";
|
|
784
|
+
readonly maxInlineSize: "sizes";
|
|
785
|
+
readonly maxWidth: "sizes";
|
|
786
|
+
readonly minBlockSize: "sizes";
|
|
787
|
+
readonly minHeight: "sizes";
|
|
788
|
+
readonly minInlineSize: "sizes";
|
|
789
|
+
readonly minWidth: "sizes";
|
|
790
|
+
readonly outline: "colors";
|
|
791
|
+
readonly outlineColor: "colors";
|
|
792
|
+
readonly padding: "space-inset";
|
|
793
|
+
readonly paddingBlock: "space-inset";
|
|
794
|
+
readonly paddingBlockEnd: "space-inset";
|
|
795
|
+
readonly paddingBlockStart: "space-inset";
|
|
796
|
+
readonly paddingBottom: "space-inset";
|
|
797
|
+
readonly paddingInline: "space-inset";
|
|
798
|
+
readonly paddingInlineEnd: "space-inset";
|
|
799
|
+
readonly paddingInlineStart: "space-inset";
|
|
800
|
+
readonly paddingLeft: "space-inset";
|
|
801
|
+
readonly paddingRight: "space-inset";
|
|
802
|
+
readonly paddingTop: "space-inset";
|
|
803
|
+
readonly right: "space";
|
|
804
|
+
readonly rowGap: "space-gap";
|
|
805
|
+
readonly scrollMargin: "space-offset";
|
|
806
|
+
readonly scrollMarginBlock: "space-offset";
|
|
807
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
808
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
809
|
+
readonly scrollMarginBottom: "space-offset";
|
|
810
|
+
readonly scrollMarginInline: "space-offset";
|
|
811
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
812
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
813
|
+
readonly scrollMarginLeft: "space-offset";
|
|
814
|
+
readonly scrollMarginRight: "space-offset";
|
|
815
|
+
readonly scrollMarginTop: "space-offset";
|
|
816
|
+
readonly scrollPadding: "space-inset";
|
|
817
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
818
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
819
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
820
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
821
|
+
readonly scrollPaddingInline: "space-inset";
|
|
822
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
823
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
824
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
825
|
+
readonly scrollPaddingRight: "space-inset";
|
|
826
|
+
readonly scrollPaddingTop: "space-inset";
|
|
827
|
+
readonly stroke: "colors";
|
|
828
|
+
readonly textDecorationColor: "colors";
|
|
829
|
+
readonly textShadow: "shadows";
|
|
830
|
+
readonly top: "space";
|
|
831
|
+
readonly transition: "transitions";
|
|
832
|
+
readonly width: "sizes";
|
|
833
|
+
readonly zIndex: "z-indices";
|
|
834
|
+
}, {
|
|
835
|
+
paddingX: (value: {
|
|
836
|
+
readonly [$$PropertyValue]: "padding";
|
|
837
|
+
}) => {
|
|
838
|
+
paddingLeft: {
|
|
839
|
+
readonly [$$PropertyValue]: "padding";
|
|
840
|
+
};
|
|
841
|
+
paddingRight: {
|
|
842
|
+
readonly [$$PropertyValue]: "padding";
|
|
843
|
+
};
|
|
844
|
+
};
|
|
845
|
+
paddingY: (value: {
|
|
846
|
+
readonly [$$PropertyValue]: "padding";
|
|
847
|
+
}) => {
|
|
848
|
+
paddingTop: {
|
|
849
|
+
readonly [$$PropertyValue]: "padding";
|
|
850
|
+
};
|
|
851
|
+
paddingBottom: {
|
|
852
|
+
readonly [$$PropertyValue]: "padding";
|
|
853
|
+
};
|
|
854
|
+
};
|
|
855
|
+
marginX: (value: {
|
|
867
856
|
readonly [$$PropertyValue]: "margin";
|
|
857
|
+
}) => {
|
|
858
|
+
marginLeft: {
|
|
859
|
+
readonly [$$PropertyValue]: "margin";
|
|
860
|
+
};
|
|
861
|
+
marginRight: {
|
|
862
|
+
readonly [$$PropertyValue]: "margin";
|
|
863
|
+
};
|
|
868
864
|
};
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
865
|
+
marginY: (value: {
|
|
866
|
+
readonly [$$PropertyValue]: "margin";
|
|
867
|
+
}) => {
|
|
868
|
+
marginTop: {
|
|
869
|
+
readonly [$$PropertyValue]: "margin";
|
|
870
|
+
};
|
|
871
|
+
marginBottom: {
|
|
872
|
+
readonly [$$PropertyValue]: "margin";
|
|
873
|
+
};
|
|
875
874
|
};
|
|
876
|
-
|
|
875
|
+
square: (value: {
|
|
877
876
|
readonly [$$PropertyValue]: "width";
|
|
877
|
+
}) => {
|
|
878
|
+
width: {
|
|
879
|
+
readonly [$$PropertyValue]: "width";
|
|
880
|
+
};
|
|
881
|
+
height: {
|
|
882
|
+
readonly [$$PropertyValue]: "width";
|
|
883
|
+
};
|
|
878
884
|
};
|
|
879
|
-
};
|
|
880
|
-
}
|
|
885
|
+
}> | undefined;
|
|
886
|
+
}> & {
|
|
887
|
+
children?: react.ReactNode;
|
|
888
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "color" | "translate" | "prefix" | "asChild" | "children" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | keyof _mirohq_design_system_stitches.CustomStylesProps | "unstyled" | "wrapper" | "active"> & react.RefAttributes<HTMLButtonElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_toolbar.ToolbarButtonProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
881
889
|
unstyled?: boolean | "true" | "false" | undefined;
|
|
882
890
|
wrapper?: boolean | "true" | undefined;
|
|
883
891
|
active?: boolean | "true" | "false" | undefined;
|
|
@@ -902,878 +910,886 @@ interface ItemProps extends StyledItemProps {
|
|
|
902
910
|
unstyled?: boolean;
|
|
903
911
|
disabled?: boolean;
|
|
904
912
|
}
|
|
905
|
-
declare const Item: react__default.ForwardRefExoticComponent<Pick<ItemProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "
|
|
913
|
+
declare const Item: react__default.ForwardRefExoticComponent<Pick<ItemProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "children" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "unstyled" | "wrapper" | "active" | "onPress"> & react__default.RefAttributes<HTMLButtonElement>>;
|
|
906
914
|
|
|
907
915
|
declare type IconProps = Omit<ItemProps, 'unstyled'>;
|
|
908
|
-
declare const Icon: react__default.ForwardRefExoticComponent<Pick<IconProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "
|
|
916
|
+
declare const Icon: react__default.ForwardRefExoticComponent<Pick<IconProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "children" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "wrapper" | "active" | "onPress"> & react__default.RefAttributes<HTMLButtonElement>>;
|
|
909
917
|
|
|
910
|
-
declare const StyledSeparator: react.ForwardRefExoticComponent<Pick<Omit<{}, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
colors: {
|
|
918
|
-
readonly 'blue-100': any;
|
|
919
|
-
readonly 'blue-200': any;
|
|
920
|
-
readonly 'blue-300': any;
|
|
921
|
-
readonly 'blue-400': any;
|
|
922
|
-
readonly 'blue-500': any;
|
|
923
|
-
readonly 'blue-600': any;
|
|
924
|
-
readonly 'blue-700': any;
|
|
925
|
-
readonly 'blue-800': any;
|
|
926
|
-
readonly 'blue-900': any;
|
|
927
|
-
readonly 'blue-1000': any;
|
|
928
|
-
readonly 'gray-100': any;
|
|
929
|
-
readonly 'gray-200': any;
|
|
930
|
-
readonly 'gray-300': any;
|
|
931
|
-
readonly 'gray-400': any;
|
|
932
|
-
readonly 'gray-500': any;
|
|
933
|
-
readonly 'gray-600': any;
|
|
934
|
-
readonly 'gray-700': any;
|
|
935
|
-
readonly 'gray-800': any;
|
|
936
|
-
readonly 'gray-900': any;
|
|
937
|
-
readonly 'indigo-100': any;
|
|
938
|
-
readonly 'indigo-200': any;
|
|
939
|
-
readonly 'indigo-300': any;
|
|
940
|
-
readonly 'indigo-400': any;
|
|
941
|
-
readonly 'indigo-500': any;
|
|
942
|
-
readonly 'indigo-600': any;
|
|
943
|
-
readonly 'indigo-700': any;
|
|
944
|
-
readonly 'indigo-800': any;
|
|
945
|
-
readonly 'indigo-900': any;
|
|
946
|
-
readonly 'red-100': any;
|
|
947
|
-
readonly 'red-200': any;
|
|
948
|
-
readonly 'red-300': any;
|
|
949
|
-
readonly 'red-400': any;
|
|
950
|
-
readonly 'red-500': any;
|
|
951
|
-
readonly 'red-600': any;
|
|
952
|
-
readonly 'red-700': any;
|
|
953
|
-
readonly 'red-800': any;
|
|
954
|
-
readonly 'red-900': any;
|
|
955
|
-
readonly 'yellow-100': any;
|
|
956
|
-
readonly 'yellow-200': any;
|
|
957
|
-
readonly 'yellow-300': any;
|
|
958
|
-
readonly 'yellow-400': any;
|
|
959
|
-
readonly 'yellow-500': any;
|
|
960
|
-
readonly 'yellow-600': any;
|
|
961
|
-
readonly 'yellow-700': any;
|
|
962
|
-
readonly 'yellow-800': any;
|
|
963
|
-
readonly 'yellow-900': any;
|
|
964
|
-
readonly 'green-100': any;
|
|
965
|
-
readonly 'green-200': any;
|
|
966
|
-
readonly 'green-300': any;
|
|
967
|
-
readonly 'green-400': any;
|
|
968
|
-
readonly 'green-500': any;
|
|
969
|
-
readonly 'green-600': any;
|
|
970
|
-
readonly 'green-700': any;
|
|
971
|
-
readonly 'green-800': any;
|
|
972
|
-
readonly 'green-900': any;
|
|
973
|
-
readonly black: any;
|
|
974
|
-
readonly white: any;
|
|
975
|
-
readonly transparent: any;
|
|
976
|
-
readonly 'background-neutrals'?: any;
|
|
977
|
-
readonly 'background-neutrals-body'?: any;
|
|
978
|
-
readonly 'background-neutrals-container'?: any;
|
|
979
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
980
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
981
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
982
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
983
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
984
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
985
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
986
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
987
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
988
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
989
|
-
readonly 'background-primary-prominent'?: any;
|
|
990
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
991
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
992
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
993
|
-
readonly 'background-primary-subtle'?: any;
|
|
994
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
995
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
996
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
997
|
-
readonly 'background-danger-prominent'?: any;
|
|
998
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
999
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
1000
|
-
readonly 'background-danger'?: any;
|
|
1001
|
-
readonly 'background-danger-hover'?: any;
|
|
1002
|
-
readonly 'background-success'?: any;
|
|
1003
|
-
readonly 'background-warning-subtle'?: any;
|
|
1004
|
-
readonly 'background-warning-prominent'?: any;
|
|
1005
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
1006
|
-
readonly 'text-neutrals'?: any;
|
|
1007
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
1008
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1009
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
1010
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
1011
|
-
readonly 'text-primary-inverted'?: any;
|
|
1012
|
-
readonly 'text-primary'?: any;
|
|
1013
|
-
readonly 'text-primary-hover'?: any;
|
|
1014
|
-
readonly 'text-primary-active'?: any;
|
|
1015
|
-
readonly 'text-primary-selected'?: any;
|
|
1016
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
1017
|
-
readonly 'text-danger-inverted'?: any;
|
|
1018
|
-
readonly 'text-danger'?: any;
|
|
1019
|
-
readonly 'text-danger-hover'?: any;
|
|
1020
|
-
readonly 'text-danger-active'?: any;
|
|
1021
|
-
readonly 'text-success'?: any;
|
|
1022
|
-
readonly 'text-warning'?: any;
|
|
1023
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
1024
|
-
readonly 'icon-neutrals'?: any;
|
|
1025
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
1026
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
1027
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
1028
|
-
readonly 'icon-neutrals-search'?: any;
|
|
1029
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
1030
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1031
|
-
readonly 'icon-primary-inverted'?: any;
|
|
1032
|
-
readonly 'icon-primary'?: any;
|
|
1033
|
-
readonly 'icon-primary-hover'?: any;
|
|
1034
|
-
readonly 'icon-primary-active'?: any;
|
|
1035
|
-
readonly 'icon-primary-selected'?: any;
|
|
1036
|
-
readonly 'icon-danger-inverted'?: any;
|
|
1037
|
-
readonly 'icon-danger'?: any;
|
|
1038
|
-
readonly 'icon-danger-hover'?: any;
|
|
1039
|
-
readonly 'icon-danger-active'?: any;
|
|
1040
|
-
readonly 'icon-success-inverted'?: any;
|
|
1041
|
-
readonly 'icon-success'?: any;
|
|
1042
|
-
readonly 'icon-warning'?: any;
|
|
1043
|
-
readonly 'border-focus-outer'?: any;
|
|
1044
|
-
readonly 'border-focus-middle'?: any;
|
|
1045
|
-
readonly 'border-focus-inner'?: any;
|
|
1046
|
-
readonly 'border-neutrals'?: any;
|
|
1047
|
-
readonly 'border-neutrals-hover'?: any;
|
|
1048
|
-
readonly 'border-neutrals-active'?: any;
|
|
1049
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
1050
|
-
readonly 'border-neutrals-controls'?: any;
|
|
1051
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
1052
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
1053
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
1054
|
-
readonly 'border-primary'?: any;
|
|
1055
|
-
readonly 'border-primary-hover'?: any;
|
|
1056
|
-
readonly 'border-primary-active'?: any;
|
|
1057
|
-
readonly 'border-primary-inverted'?: any;
|
|
1058
|
-
readonly 'border-danger'?: any;
|
|
1059
|
-
readonly 'border-success'?: any;
|
|
1060
|
-
readonly 'border-warning'?: any;
|
|
1061
|
-
};
|
|
1062
|
-
'font-sizes': {
|
|
1063
|
-
readonly 150: "0.75rem";
|
|
1064
|
-
readonly 175: "0.875rem";
|
|
1065
|
-
readonly 200: "1rem";
|
|
1066
|
-
readonly 225: "1.125rem";
|
|
1067
|
-
readonly 250: "1.25rem";
|
|
1068
|
-
readonly 300: "1.5rem";
|
|
1069
|
-
readonly 400: "2rem";
|
|
1070
|
-
readonly 500: "2.5rem";
|
|
1071
|
-
readonly 600: "3rem";
|
|
1072
|
-
readonly 800: "4rem";
|
|
1073
|
-
readonly 900: "4.5rem";
|
|
1074
|
-
};
|
|
1075
|
-
radii: {
|
|
1076
|
-
readonly none: 0;
|
|
1077
|
-
readonly half: "999em";
|
|
1078
|
-
readonly 25: "2px";
|
|
1079
|
-
readonly 50: "4px";
|
|
1080
|
-
readonly 75: "6px";
|
|
1081
|
-
readonly 100: "8px";
|
|
1082
|
-
readonly 200: "16px";
|
|
1083
|
-
};
|
|
1084
|
-
shadows: {
|
|
1085
|
-
readonly 50: "0 4px 16px #05003812";
|
|
1086
|
-
readonly 100: "0 8px 32px #05003808";
|
|
1087
|
-
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
1088
|
-
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
1089
|
-
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
1090
|
-
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
1091
|
-
};
|
|
1092
|
-
sizes: {
|
|
1093
|
-
readonly number: string;
|
|
1094
|
-
readonly 'icon-200': "16px";
|
|
1095
|
-
readonly 'icon-300': "24px";
|
|
1096
|
-
readonly 'icon-400': "32px";
|
|
1097
|
-
};
|
|
1098
|
-
space: {
|
|
1099
|
-
readonly none: 0;
|
|
1100
|
-
readonly 50: "4px";
|
|
1101
|
-
readonly 100: "8px";
|
|
1102
|
-
readonly 150: "12px";
|
|
1103
|
-
readonly 200: "16px";
|
|
1104
|
-
readonly 300: "24px";
|
|
1105
|
-
readonly 400: "32px";
|
|
1106
|
-
readonly 500: "64px";
|
|
1107
|
-
readonly 600: "48px";
|
|
1108
|
-
readonly 800: "64px";
|
|
1109
|
-
readonly 1200: "96px";
|
|
1110
|
-
readonly 1600: "128px";
|
|
1111
|
-
};
|
|
1112
|
-
'space-gap': {
|
|
1113
|
-
readonly none: any;
|
|
1114
|
-
readonly 50: any;
|
|
1115
|
-
readonly 100: any;
|
|
1116
|
-
readonly 200: any;
|
|
1117
|
-
readonly 300: any;
|
|
1118
|
-
};
|
|
1119
|
-
'space-inset': {
|
|
1120
|
-
readonly none: any;
|
|
1121
|
-
readonly 50: any;
|
|
1122
|
-
readonly 100: any;
|
|
1123
|
-
readonly 150: any;
|
|
1124
|
-
readonly 200: any;
|
|
1125
|
-
readonly 300: any;
|
|
1126
|
-
readonly 400: any;
|
|
1127
|
-
readonly 600: any;
|
|
1128
|
-
readonly 800: any;
|
|
1129
|
-
readonly 1200: any;
|
|
1130
|
-
readonly 1600: any;
|
|
1131
|
-
};
|
|
1132
|
-
'space-offset': {
|
|
1133
|
-
readonly none: any;
|
|
1134
|
-
readonly 50: any;
|
|
1135
|
-
readonly 100: any;
|
|
1136
|
-
readonly 150: any;
|
|
1137
|
-
readonly 200: any;
|
|
1138
|
-
readonly 300: any;
|
|
1139
|
-
readonly 400: any;
|
|
1140
|
-
readonly 600: any;
|
|
1141
|
-
readonly 800: any;
|
|
1142
|
-
readonly 1200: any;
|
|
1143
|
-
readonly 1600: any;
|
|
1144
|
-
readonly 'stacking-none': any;
|
|
1145
|
-
readonly 'stacking-100': any;
|
|
1146
|
-
readonly 'stacking-200': any;
|
|
1147
|
-
readonly 'stacking-300': any;
|
|
1148
|
-
readonly 'stacking-400': any;
|
|
1149
|
-
readonly 'stacking-500': any;
|
|
1150
|
-
readonly 'stacking-800': any;
|
|
1151
|
-
};
|
|
1152
|
-
'z-indices': {
|
|
1153
|
-
readonly dropdownMenu: 100;
|
|
1154
|
-
readonly popover: 200;
|
|
1155
|
-
readonly tooltip: 300;
|
|
1156
|
-
};
|
|
1157
|
-
}, {
|
|
1158
|
-
readonly background: "colors";
|
|
1159
|
-
readonly backgroundColor: "colors";
|
|
1160
|
-
readonly backgroundImage: "colors";
|
|
1161
|
-
readonly blockSize: "sizes";
|
|
1162
|
-
readonly border: "colors";
|
|
1163
|
-
readonly borderBlock: "colors";
|
|
1164
|
-
readonly borderBlockEnd: "colors";
|
|
1165
|
-
readonly borderBlockStart: "colors";
|
|
1166
|
-
readonly borderBottom: "colors";
|
|
1167
|
-
readonly borderBottomColor: "colors";
|
|
1168
|
-
readonly borderBottomLeftRadius: "radii";
|
|
1169
|
-
readonly borderBottomRightRadius: "radii";
|
|
1170
|
-
readonly borderBottomStyle: "border-styles";
|
|
1171
|
-
readonly borderBottomWidth: "border-widths";
|
|
1172
|
-
readonly borderColor: "colors";
|
|
1173
|
-
readonly borderImage: "colors";
|
|
1174
|
-
readonly borderInline: "colors";
|
|
1175
|
-
readonly borderInlineEnd: "colors";
|
|
1176
|
-
readonly borderInlineStart: "colors";
|
|
1177
|
-
readonly borderLeft: "colors";
|
|
1178
|
-
readonly borderLeftColor: "colors";
|
|
1179
|
-
readonly borderLeftStyle: "border-styles";
|
|
1180
|
-
readonly borderLeftWidth: "border-widths";
|
|
1181
|
-
readonly borderRadius: "radii";
|
|
1182
|
-
readonly borderRight: "colors";
|
|
1183
|
-
readonly borderRightColor: "colors";
|
|
1184
|
-
readonly borderRightStyle: "border-styles";
|
|
1185
|
-
readonly borderRightWidth: "border-widths";
|
|
1186
|
-
readonly borderStyle: "border-styles";
|
|
1187
|
-
readonly borderTop: "colors";
|
|
1188
|
-
readonly borderTopColor: "colors";
|
|
1189
|
-
readonly borderTopLeftRadius: "radii";
|
|
1190
|
-
readonly borderTopRightRadius: "radii";
|
|
1191
|
-
readonly borderTopStyle: "border-styles";
|
|
1192
|
-
readonly borderTopWidth: "border-widths";
|
|
1193
|
-
readonly borderWidth: "border-widths";
|
|
1194
|
-
readonly bottom: "space";
|
|
1195
|
-
readonly boxShadow: "shadows";
|
|
1196
|
-
readonly caretColor: "colors";
|
|
1197
|
-
readonly color: "colors";
|
|
1198
|
-
readonly columnGap: "space-gap";
|
|
1199
|
-
readonly columnRuleColor: "colors";
|
|
1200
|
-
readonly fill: "colors";
|
|
1201
|
-
readonly flexBasis: "sizes";
|
|
1202
|
-
readonly fontFamily: "fonts";
|
|
1203
|
-
readonly fontSize: "font-sizes";
|
|
1204
|
-
readonly fontWeight: "font-weights";
|
|
1205
|
-
readonly gap: "space-gap";
|
|
1206
|
-
readonly gridColumnGap: "space-gap";
|
|
1207
|
-
readonly gridGap: "space-gap";
|
|
1208
|
-
readonly gridRowGap: "space-gap";
|
|
1209
|
-
readonly gridTemplateColumns: "sizes";
|
|
1210
|
-
readonly gridTemplateRows: "sizes";
|
|
1211
|
-
readonly height: "sizes";
|
|
1212
|
-
readonly inlineSize: "sizes";
|
|
1213
|
-
readonly inset: "space-inset";
|
|
1214
|
-
readonly insetBlock: "space-inset";
|
|
1215
|
-
readonly insetBlockEnd: "space-inset";
|
|
1216
|
-
readonly insetBlockStart: "space-inset";
|
|
1217
|
-
readonly insetInline: "space-inset";
|
|
1218
|
-
readonly insetInlineEnd: "space-inset";
|
|
1219
|
-
readonly insetInlineStart: "space-inset";
|
|
1220
|
-
readonly left: "space";
|
|
1221
|
-
readonly letterSpacing: "letter-spacings";
|
|
1222
|
-
readonly lineHeight: "line-heights";
|
|
1223
|
-
readonly margin: "space-offset";
|
|
1224
|
-
readonly marginBlock: "space-offset";
|
|
1225
|
-
readonly marginBlockEnd: "space-offset";
|
|
1226
|
-
readonly marginBlockStart: "space-offset";
|
|
1227
|
-
readonly marginBottom: "space-offset";
|
|
1228
|
-
readonly marginInline: "space-offset";
|
|
1229
|
-
readonly marginInlineEnd: "space-offset";
|
|
1230
|
-
readonly marginInlineStart: "space-offset";
|
|
1231
|
-
readonly marginLeft: "space-offset";
|
|
1232
|
-
readonly marginRight: "space-offset";
|
|
1233
|
-
readonly marginTop: "space-offset";
|
|
1234
|
-
readonly maxBlockSize: "sizes";
|
|
1235
|
-
readonly maxHeight: "sizes";
|
|
1236
|
-
readonly maxInlineSize: "sizes";
|
|
1237
|
-
readonly maxWidth: "sizes";
|
|
1238
|
-
readonly minBlockSize: "sizes";
|
|
1239
|
-
readonly minHeight: "sizes";
|
|
1240
|
-
readonly minInlineSize: "sizes";
|
|
1241
|
-
readonly minWidth: "sizes";
|
|
1242
|
-
readonly outline: "colors";
|
|
1243
|
-
readonly outlineColor: "colors";
|
|
1244
|
-
readonly padding: "space-inset";
|
|
1245
|
-
readonly paddingBlock: "space-inset";
|
|
1246
|
-
readonly paddingBlockEnd: "space-inset";
|
|
1247
|
-
readonly paddingBlockStart: "space-inset";
|
|
1248
|
-
readonly paddingBottom: "space-inset";
|
|
1249
|
-
readonly paddingInline: "space-inset";
|
|
1250
|
-
readonly paddingInlineEnd: "space-inset";
|
|
1251
|
-
readonly paddingInlineStart: "space-inset";
|
|
1252
|
-
readonly paddingLeft: "space-inset";
|
|
1253
|
-
readonly paddingRight: "space-inset";
|
|
1254
|
-
readonly paddingTop: "space-inset";
|
|
1255
|
-
readonly right: "space";
|
|
1256
|
-
readonly rowGap: "space-gap";
|
|
1257
|
-
readonly scrollMargin: "space-offset";
|
|
1258
|
-
readonly scrollMarginBlock: "space-offset";
|
|
1259
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
1260
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
1261
|
-
readonly scrollMarginBottom: "space-offset";
|
|
1262
|
-
readonly scrollMarginInline: "space-offset";
|
|
1263
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
1264
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
1265
|
-
readonly scrollMarginLeft: "space-offset";
|
|
1266
|
-
readonly scrollMarginRight: "space-offset";
|
|
1267
|
-
readonly scrollMarginTop: "space-offset";
|
|
1268
|
-
readonly scrollPadding: "space-inset";
|
|
1269
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
1270
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
1271
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
1272
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
1273
|
-
readonly scrollPaddingInline: "space-inset";
|
|
1274
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
1275
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
1276
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
1277
|
-
readonly scrollPaddingRight: "space-inset";
|
|
1278
|
-
readonly scrollPaddingTop: "space-inset";
|
|
1279
|
-
readonly stroke: "colors";
|
|
1280
|
-
readonly textDecorationColor: "colors";
|
|
1281
|
-
readonly textShadow: "shadows";
|
|
1282
|
-
readonly top: "space";
|
|
1283
|
-
readonly transition: "transitions";
|
|
1284
|
-
readonly width: "sizes";
|
|
1285
|
-
readonly zIndex: "z-indices";
|
|
1286
|
-
}, {
|
|
1287
|
-
paddingX: (value: {
|
|
1288
|
-
readonly [$$PropertyValue]: "padding";
|
|
1289
|
-
}) => {
|
|
1290
|
-
paddingLeft: {
|
|
1291
|
-
readonly [$$PropertyValue]: "padding";
|
|
918
|
+
declare const StyledSeparator: react.ForwardRefExoticComponent<Pick<Omit<{}, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<_radix_ui_react_toolbar.ToolbarSeparatorProps & react.RefAttributes<HTMLDivElement>, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
919
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
920
|
+
'border-widths': {
|
|
921
|
+
readonly none: 0;
|
|
922
|
+
readonly sm: "1px";
|
|
923
|
+
readonly md: "2px";
|
|
924
|
+
readonly lg: "4px";
|
|
1292
925
|
};
|
|
1293
|
-
|
|
1294
|
-
readonly
|
|
926
|
+
colors: {
|
|
927
|
+
readonly 'blue-100': any;
|
|
928
|
+
readonly 'blue-200': any;
|
|
929
|
+
readonly 'blue-300': any;
|
|
930
|
+
readonly 'blue-400': any;
|
|
931
|
+
readonly 'blue-500': any;
|
|
932
|
+
readonly 'blue-600': any;
|
|
933
|
+
readonly 'blue-700': any;
|
|
934
|
+
readonly 'blue-800': any;
|
|
935
|
+
readonly 'blue-900': any;
|
|
936
|
+
readonly 'blue-1000': any;
|
|
937
|
+
readonly 'gray-100': any;
|
|
938
|
+
readonly 'gray-200': any;
|
|
939
|
+
readonly 'gray-300': any;
|
|
940
|
+
readonly 'gray-400': any;
|
|
941
|
+
readonly 'gray-500': any;
|
|
942
|
+
readonly 'gray-600': any;
|
|
943
|
+
readonly 'gray-700': any;
|
|
944
|
+
readonly 'gray-800': any;
|
|
945
|
+
readonly 'gray-900': any;
|
|
946
|
+
readonly 'indigo-100': any;
|
|
947
|
+
readonly 'indigo-200': any;
|
|
948
|
+
readonly 'indigo-300': any;
|
|
949
|
+
readonly 'indigo-400': any;
|
|
950
|
+
readonly 'indigo-500': any;
|
|
951
|
+
readonly 'indigo-600': any;
|
|
952
|
+
readonly 'indigo-700': any;
|
|
953
|
+
readonly 'indigo-800': any;
|
|
954
|
+
readonly 'indigo-900': any;
|
|
955
|
+
readonly 'red-100': any;
|
|
956
|
+
readonly 'red-200': any;
|
|
957
|
+
readonly 'red-300': any;
|
|
958
|
+
readonly 'red-400': any;
|
|
959
|
+
readonly 'red-500': any;
|
|
960
|
+
readonly 'red-600': any;
|
|
961
|
+
readonly 'red-700': any;
|
|
962
|
+
readonly 'red-800': any;
|
|
963
|
+
readonly 'red-900': any;
|
|
964
|
+
readonly 'yellow-100': any;
|
|
965
|
+
readonly 'yellow-200': any;
|
|
966
|
+
readonly 'yellow-300': any;
|
|
967
|
+
readonly 'yellow-400': any;
|
|
968
|
+
readonly 'yellow-500': any;
|
|
969
|
+
readonly 'yellow-600': any;
|
|
970
|
+
readonly 'yellow-700': any;
|
|
971
|
+
readonly 'yellow-800': any;
|
|
972
|
+
readonly 'yellow-900': any;
|
|
973
|
+
readonly 'green-100': any;
|
|
974
|
+
readonly 'green-200': any;
|
|
975
|
+
readonly 'green-300': any;
|
|
976
|
+
readonly 'green-400': any;
|
|
977
|
+
readonly 'green-500': any;
|
|
978
|
+
readonly 'green-600': any;
|
|
979
|
+
readonly 'green-700': any;
|
|
980
|
+
readonly 'green-800': any;
|
|
981
|
+
readonly 'green-900': any;
|
|
982
|
+
readonly black: any;
|
|
983
|
+
readonly white: any;
|
|
984
|
+
readonly transparent: any;
|
|
985
|
+
readonly 'background-neutrals'?: any;
|
|
986
|
+
readonly 'background-neutrals-body'?: any;
|
|
987
|
+
readonly 'background-neutrals-container'?: any;
|
|
988
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
989
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
990
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
991
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
992
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
993
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
994
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
995
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
996
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
997
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
998
|
+
readonly 'background-primary-prominent'?: any;
|
|
999
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
1000
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
1001
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
1002
|
+
readonly 'background-primary-subtle'?: any;
|
|
1003
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
1004
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
1005
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
1006
|
+
readonly 'background-danger-prominent'?: any;
|
|
1007
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
1008
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
1009
|
+
readonly 'background-danger'?: any;
|
|
1010
|
+
readonly 'background-danger-hover'?: any;
|
|
1011
|
+
readonly 'background-success'?: any;
|
|
1012
|
+
readonly 'background-warning-subtle'?: any;
|
|
1013
|
+
readonly 'background-warning-prominent'?: any;
|
|
1014
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
1015
|
+
readonly 'text-neutrals'?: any;
|
|
1016
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
1017
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1018
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
1019
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
1020
|
+
readonly 'text-primary-inverted'?: any;
|
|
1021
|
+
readonly 'text-primary'?: any;
|
|
1022
|
+
readonly 'text-primary-hover'?: any;
|
|
1023
|
+
readonly 'text-primary-active'?: any;
|
|
1024
|
+
readonly 'text-primary-selected'?: any;
|
|
1025
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
1026
|
+
readonly 'text-danger-inverted'?: any;
|
|
1027
|
+
readonly 'text-danger'?: any;
|
|
1028
|
+
readonly 'text-danger-hover'?: any;
|
|
1029
|
+
readonly 'text-danger-active'?: any;
|
|
1030
|
+
readonly 'text-success'?: any;
|
|
1031
|
+
readonly 'text-warning'?: any;
|
|
1032
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
1033
|
+
readonly 'icon-neutrals'?: any;
|
|
1034
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
1035
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
1036
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
1037
|
+
readonly 'icon-neutrals-search'?: any;
|
|
1038
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
1039
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1040
|
+
readonly 'icon-primary-inverted'?: any;
|
|
1041
|
+
readonly 'icon-primary'?: any;
|
|
1042
|
+
readonly 'icon-primary-hover'?: any;
|
|
1043
|
+
readonly 'icon-primary-active'?: any;
|
|
1044
|
+
readonly 'icon-primary-selected'?: any;
|
|
1045
|
+
readonly 'icon-danger-inverted'?: any;
|
|
1046
|
+
readonly 'icon-danger'?: any;
|
|
1047
|
+
readonly 'icon-danger-hover'?: any;
|
|
1048
|
+
readonly 'icon-danger-active'?: any;
|
|
1049
|
+
readonly 'icon-success-inverted'?: any;
|
|
1050
|
+
readonly 'icon-success'?: any;
|
|
1051
|
+
readonly 'icon-warning'?: any;
|
|
1052
|
+
readonly 'border-focus-outer'?: any;
|
|
1053
|
+
readonly 'border-focus-middle'?: any;
|
|
1054
|
+
readonly 'border-focus-inner'?: any;
|
|
1055
|
+
readonly 'border-neutrals'?: any;
|
|
1056
|
+
readonly 'border-neutrals-hover'?: any;
|
|
1057
|
+
readonly 'border-neutrals-active'?: any;
|
|
1058
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
1059
|
+
readonly 'border-neutrals-controls'?: any;
|
|
1060
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
1061
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
1062
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
1063
|
+
readonly 'border-primary'?: any;
|
|
1064
|
+
readonly 'border-primary-hover'?: any;
|
|
1065
|
+
readonly 'border-primary-active'?: any;
|
|
1066
|
+
readonly 'border-primary-inverted'?: any;
|
|
1067
|
+
readonly 'border-danger'?: any;
|
|
1068
|
+
readonly 'border-success'?: any;
|
|
1069
|
+
readonly 'border-warning'?: any;
|
|
1295
1070
|
};
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
readonly
|
|
1071
|
+
'font-sizes': {
|
|
1072
|
+
readonly 150: "0.75rem";
|
|
1073
|
+
readonly 175: "0.875rem";
|
|
1074
|
+
readonly 200: "1rem";
|
|
1075
|
+
readonly 225: "1.125rem";
|
|
1076
|
+
readonly 250: "1.25rem";
|
|
1077
|
+
readonly 300: "1.5rem";
|
|
1078
|
+
readonly 400: "2rem";
|
|
1079
|
+
readonly 500: "2.5rem";
|
|
1080
|
+
readonly 600: "3rem";
|
|
1081
|
+
readonly 800: "4rem";
|
|
1082
|
+
readonly 900: "4.5rem";
|
|
1302
1083
|
};
|
|
1303
|
-
|
|
1304
|
-
readonly
|
|
1084
|
+
radii: {
|
|
1085
|
+
readonly none: 0;
|
|
1086
|
+
readonly half: "999em";
|
|
1087
|
+
readonly 25: "2px";
|
|
1088
|
+
readonly 50: "4px";
|
|
1089
|
+
readonly 75: "6px";
|
|
1090
|
+
readonly 100: "8px";
|
|
1091
|
+
readonly 200: "16px";
|
|
1305
1092
|
};
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
readonly
|
|
1093
|
+
shadows: {
|
|
1094
|
+
readonly 50: "0 4px 16px #05003812";
|
|
1095
|
+
readonly 100: "0 8px 32px #05003808";
|
|
1096
|
+
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
1097
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
1098
|
+
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
1099
|
+
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
1312
1100
|
};
|
|
1313
|
-
|
|
1314
|
-
readonly
|
|
1101
|
+
sizes: {
|
|
1102
|
+
readonly number: string;
|
|
1103
|
+
readonly 'icon-200': "16px";
|
|
1104
|
+
readonly 'icon-300': "24px";
|
|
1105
|
+
readonly 'icon-400': "32px";
|
|
1315
1106
|
};
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
readonly
|
|
1107
|
+
space: {
|
|
1108
|
+
readonly none: 0;
|
|
1109
|
+
readonly 50: "4px";
|
|
1110
|
+
readonly 100: "8px";
|
|
1111
|
+
readonly 150: "12px";
|
|
1112
|
+
readonly 200: "16px";
|
|
1113
|
+
readonly 300: "24px";
|
|
1114
|
+
readonly 400: "32px";
|
|
1115
|
+
readonly 500: "64px";
|
|
1116
|
+
readonly 600: "48px";
|
|
1117
|
+
readonly 800: "64px";
|
|
1118
|
+
readonly 1200: "96px";
|
|
1119
|
+
readonly 1600: "128px";
|
|
1120
|
+
};
|
|
1121
|
+
'space-gap': {
|
|
1122
|
+
readonly none: any;
|
|
1123
|
+
readonly 50: any;
|
|
1124
|
+
readonly 100: any;
|
|
1125
|
+
readonly 200: any;
|
|
1126
|
+
readonly 300: any;
|
|
1127
|
+
};
|
|
1128
|
+
'space-inset': {
|
|
1129
|
+
readonly none: any;
|
|
1130
|
+
readonly 50: any;
|
|
1131
|
+
readonly 100: any;
|
|
1132
|
+
readonly 150: any;
|
|
1133
|
+
readonly 200: any;
|
|
1134
|
+
readonly 300: any;
|
|
1135
|
+
readonly 400: any;
|
|
1136
|
+
readonly 600: any;
|
|
1137
|
+
readonly 800: any;
|
|
1138
|
+
readonly 1200: any;
|
|
1139
|
+
readonly 1600: any;
|
|
1322
1140
|
};
|
|
1323
|
-
|
|
1141
|
+
'space-offset': {
|
|
1142
|
+
readonly none: any;
|
|
1143
|
+
readonly 50: any;
|
|
1144
|
+
readonly 100: any;
|
|
1145
|
+
readonly 150: any;
|
|
1146
|
+
readonly 200: any;
|
|
1147
|
+
readonly 300: any;
|
|
1148
|
+
readonly 400: any;
|
|
1149
|
+
readonly 600: any;
|
|
1150
|
+
readonly 800: any;
|
|
1151
|
+
readonly 1200: any;
|
|
1152
|
+
readonly 1600: any;
|
|
1153
|
+
readonly 'stacking-none': any;
|
|
1154
|
+
readonly 'stacking-100': any;
|
|
1155
|
+
readonly 'stacking-200': any;
|
|
1156
|
+
readonly 'stacking-300': any;
|
|
1157
|
+
readonly 'stacking-400': any;
|
|
1158
|
+
readonly 'stacking-500': any;
|
|
1159
|
+
readonly 'stacking-800': any;
|
|
1160
|
+
};
|
|
1161
|
+
'z-indices': {
|
|
1162
|
+
readonly dropdownMenu: 100;
|
|
1163
|
+
readonly popover: 200;
|
|
1164
|
+
readonly tooltip: 300;
|
|
1165
|
+
};
|
|
1166
|
+
}, {
|
|
1167
|
+
readonly background: "colors";
|
|
1168
|
+
readonly backgroundColor: "colors";
|
|
1169
|
+
readonly backgroundImage: "colors";
|
|
1170
|
+
readonly blockSize: "sizes";
|
|
1171
|
+
readonly border: "colors";
|
|
1172
|
+
readonly borderBlock: "colors";
|
|
1173
|
+
readonly borderBlockEnd: "colors";
|
|
1174
|
+
readonly borderBlockStart: "colors";
|
|
1175
|
+
readonly borderBottom: "colors";
|
|
1176
|
+
readonly borderBottomColor: "colors";
|
|
1177
|
+
readonly borderBottomLeftRadius: "radii";
|
|
1178
|
+
readonly borderBottomRightRadius: "radii";
|
|
1179
|
+
readonly borderBottomStyle: "border-styles";
|
|
1180
|
+
readonly borderBottomWidth: "border-widths";
|
|
1181
|
+
readonly borderColor: "colors";
|
|
1182
|
+
readonly borderImage: "colors";
|
|
1183
|
+
readonly borderInline: "colors";
|
|
1184
|
+
readonly borderInlineEnd: "colors";
|
|
1185
|
+
readonly borderInlineStart: "colors";
|
|
1186
|
+
readonly borderLeft: "colors";
|
|
1187
|
+
readonly borderLeftColor: "colors";
|
|
1188
|
+
readonly borderLeftStyle: "border-styles";
|
|
1189
|
+
readonly borderLeftWidth: "border-widths";
|
|
1190
|
+
readonly borderRadius: "radii";
|
|
1191
|
+
readonly borderRight: "colors";
|
|
1192
|
+
readonly borderRightColor: "colors";
|
|
1193
|
+
readonly borderRightStyle: "border-styles";
|
|
1194
|
+
readonly borderRightWidth: "border-widths";
|
|
1195
|
+
readonly borderStyle: "border-styles";
|
|
1196
|
+
readonly borderTop: "colors";
|
|
1197
|
+
readonly borderTopColor: "colors";
|
|
1198
|
+
readonly borderTopLeftRadius: "radii";
|
|
1199
|
+
readonly borderTopRightRadius: "radii";
|
|
1200
|
+
readonly borderTopStyle: "border-styles";
|
|
1201
|
+
readonly borderTopWidth: "border-widths";
|
|
1202
|
+
readonly borderWidth: "border-widths";
|
|
1203
|
+
readonly bottom: "space";
|
|
1204
|
+
readonly boxShadow: "shadows";
|
|
1205
|
+
readonly caretColor: "colors";
|
|
1206
|
+
readonly color: "colors";
|
|
1207
|
+
readonly columnGap: "space-gap";
|
|
1208
|
+
readonly columnRuleColor: "colors";
|
|
1209
|
+
readonly fill: "colors";
|
|
1210
|
+
readonly flexBasis: "sizes";
|
|
1211
|
+
readonly fontFamily: "fonts";
|
|
1212
|
+
readonly fontSize: "font-sizes";
|
|
1213
|
+
readonly fontWeight: "font-weights";
|
|
1214
|
+
readonly gap: "space-gap";
|
|
1215
|
+
readonly gridColumnGap: "space-gap";
|
|
1216
|
+
readonly gridGap: "space-gap";
|
|
1217
|
+
readonly gridRowGap: "space-gap";
|
|
1218
|
+
readonly gridTemplateColumns: "sizes";
|
|
1219
|
+
readonly gridTemplateRows: "sizes";
|
|
1220
|
+
readonly height: "sizes";
|
|
1221
|
+
readonly inlineSize: "sizes";
|
|
1222
|
+
readonly inset: "space-inset";
|
|
1223
|
+
readonly insetBlock: "space-inset";
|
|
1224
|
+
readonly insetBlockEnd: "space-inset";
|
|
1225
|
+
readonly insetBlockStart: "space-inset";
|
|
1226
|
+
readonly insetInline: "space-inset";
|
|
1227
|
+
readonly insetInlineEnd: "space-inset";
|
|
1228
|
+
readonly insetInlineStart: "space-inset";
|
|
1229
|
+
readonly left: "space";
|
|
1230
|
+
readonly letterSpacing: "letter-spacings";
|
|
1231
|
+
readonly lineHeight: "line-heights";
|
|
1232
|
+
readonly margin: "space-offset";
|
|
1233
|
+
readonly marginBlock: "space-offset";
|
|
1234
|
+
readonly marginBlockEnd: "space-offset";
|
|
1235
|
+
readonly marginBlockStart: "space-offset";
|
|
1236
|
+
readonly marginBottom: "space-offset";
|
|
1237
|
+
readonly marginInline: "space-offset";
|
|
1238
|
+
readonly marginInlineEnd: "space-offset";
|
|
1239
|
+
readonly marginInlineStart: "space-offset";
|
|
1240
|
+
readonly marginLeft: "space-offset";
|
|
1241
|
+
readonly marginRight: "space-offset";
|
|
1242
|
+
readonly marginTop: "space-offset";
|
|
1243
|
+
readonly maxBlockSize: "sizes";
|
|
1244
|
+
readonly maxHeight: "sizes";
|
|
1245
|
+
readonly maxInlineSize: "sizes";
|
|
1246
|
+
readonly maxWidth: "sizes";
|
|
1247
|
+
readonly minBlockSize: "sizes";
|
|
1248
|
+
readonly minHeight: "sizes";
|
|
1249
|
+
readonly minInlineSize: "sizes";
|
|
1250
|
+
readonly minWidth: "sizes";
|
|
1251
|
+
readonly outline: "colors";
|
|
1252
|
+
readonly outlineColor: "colors";
|
|
1253
|
+
readonly padding: "space-inset";
|
|
1254
|
+
readonly paddingBlock: "space-inset";
|
|
1255
|
+
readonly paddingBlockEnd: "space-inset";
|
|
1256
|
+
readonly paddingBlockStart: "space-inset";
|
|
1257
|
+
readonly paddingBottom: "space-inset";
|
|
1258
|
+
readonly paddingInline: "space-inset";
|
|
1259
|
+
readonly paddingInlineEnd: "space-inset";
|
|
1260
|
+
readonly paddingInlineStart: "space-inset";
|
|
1261
|
+
readonly paddingLeft: "space-inset";
|
|
1262
|
+
readonly paddingRight: "space-inset";
|
|
1263
|
+
readonly paddingTop: "space-inset";
|
|
1264
|
+
readonly right: "space";
|
|
1265
|
+
readonly rowGap: "space-gap";
|
|
1266
|
+
readonly scrollMargin: "space-offset";
|
|
1267
|
+
readonly scrollMarginBlock: "space-offset";
|
|
1268
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
1269
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
1270
|
+
readonly scrollMarginBottom: "space-offset";
|
|
1271
|
+
readonly scrollMarginInline: "space-offset";
|
|
1272
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
1273
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
1274
|
+
readonly scrollMarginLeft: "space-offset";
|
|
1275
|
+
readonly scrollMarginRight: "space-offset";
|
|
1276
|
+
readonly scrollMarginTop: "space-offset";
|
|
1277
|
+
readonly scrollPadding: "space-inset";
|
|
1278
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
1279
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
1280
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
1281
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
1282
|
+
readonly scrollPaddingInline: "space-inset";
|
|
1283
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
1284
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
1285
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
1286
|
+
readonly scrollPaddingRight: "space-inset";
|
|
1287
|
+
readonly scrollPaddingTop: "space-inset";
|
|
1288
|
+
readonly stroke: "colors";
|
|
1289
|
+
readonly textDecorationColor: "colors";
|
|
1290
|
+
readonly textShadow: "shadows";
|
|
1291
|
+
readonly top: "space";
|
|
1292
|
+
readonly transition: "transitions";
|
|
1293
|
+
readonly width: "sizes";
|
|
1294
|
+
readonly zIndex: "z-indices";
|
|
1295
|
+
}, {
|
|
1296
|
+
paddingX: (value: {
|
|
1297
|
+
readonly [$$PropertyValue]: "padding";
|
|
1298
|
+
}) => {
|
|
1299
|
+
paddingLeft: {
|
|
1300
|
+
readonly [$$PropertyValue]: "padding";
|
|
1301
|
+
};
|
|
1302
|
+
paddingRight: {
|
|
1303
|
+
readonly [$$PropertyValue]: "padding";
|
|
1304
|
+
};
|
|
1305
|
+
};
|
|
1306
|
+
paddingY: (value: {
|
|
1307
|
+
readonly [$$PropertyValue]: "padding";
|
|
1308
|
+
}) => {
|
|
1309
|
+
paddingTop: {
|
|
1310
|
+
readonly [$$PropertyValue]: "padding";
|
|
1311
|
+
};
|
|
1312
|
+
paddingBottom: {
|
|
1313
|
+
readonly [$$PropertyValue]: "padding";
|
|
1314
|
+
};
|
|
1315
|
+
};
|
|
1316
|
+
marginX: (value: {
|
|
1324
1317
|
readonly [$$PropertyValue]: "margin";
|
|
1318
|
+
}) => {
|
|
1319
|
+
marginLeft: {
|
|
1320
|
+
readonly [$$PropertyValue]: "margin";
|
|
1321
|
+
};
|
|
1322
|
+
marginRight: {
|
|
1323
|
+
readonly [$$PropertyValue]: "margin";
|
|
1324
|
+
};
|
|
1325
1325
|
};
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1326
|
+
marginY: (value: {
|
|
1327
|
+
readonly [$$PropertyValue]: "margin";
|
|
1328
|
+
}) => {
|
|
1329
|
+
marginTop: {
|
|
1330
|
+
readonly [$$PropertyValue]: "margin";
|
|
1331
|
+
};
|
|
1332
|
+
marginBottom: {
|
|
1333
|
+
readonly [$$PropertyValue]: "margin";
|
|
1334
|
+
};
|
|
1332
1335
|
};
|
|
1333
|
-
|
|
1336
|
+
square: (value: {
|
|
1334
1337
|
readonly [$$PropertyValue]: "width";
|
|
1338
|
+
}) => {
|
|
1339
|
+
width: {
|
|
1340
|
+
readonly [$$PropertyValue]: "width";
|
|
1341
|
+
};
|
|
1342
|
+
height: {
|
|
1343
|
+
readonly [$$PropertyValue]: "width";
|
|
1344
|
+
};
|
|
1335
1345
|
};
|
|
1336
|
-
};
|
|
1337
|
-
}
|
|
1346
|
+
}> | undefined;
|
|
1347
|
+
}> & {
|
|
1348
|
+
children?: react.ReactNode;
|
|
1349
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "color" | "translate" | "prefix" | "asChild" | "children" | "slot" | "title" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "orientation" | keyof _mirohq_design_system_stitches.CustomStylesProps | "decorative"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_toolbar.ToolbarSeparatorProps & react.RefAttributes<HTMLDivElement>>, {}, {}>;
|
|
1338
1350
|
declare type StyledSeparatorProps = StrictComponentProps<typeof StyledSeparator>;
|
|
1339
1351
|
|
|
1340
1352
|
interface SeparatorProps extends StyledSeparatorProps {
|
|
1341
1353
|
}
|
|
1342
|
-
declare const Separator: react__default.ForwardRefExoticComponent<Pick<SeparatorProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "slot" | "title" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "
|
|
1354
|
+
declare const Separator: react__default.ForwardRefExoticComponent<Pick<SeparatorProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "children" | "slot" | "title" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
1343
1355
|
|
|
1344
|
-
declare const StyledLink: react.ForwardRefExoticComponent<Pick<Omit<{}, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
colors: {
|
|
1352
|
-
readonly 'blue-100': any;
|
|
1353
|
-
readonly 'blue-200': any;
|
|
1354
|
-
readonly 'blue-300': any;
|
|
1355
|
-
readonly 'blue-400': any;
|
|
1356
|
-
readonly 'blue-500': any;
|
|
1357
|
-
readonly 'blue-600': any;
|
|
1358
|
-
readonly 'blue-700': any;
|
|
1359
|
-
readonly 'blue-800': any;
|
|
1360
|
-
readonly 'blue-900': any;
|
|
1361
|
-
readonly 'blue-1000': any;
|
|
1362
|
-
readonly 'gray-100': any;
|
|
1363
|
-
readonly 'gray-200': any;
|
|
1364
|
-
readonly 'gray-300': any;
|
|
1365
|
-
readonly 'gray-400': any;
|
|
1366
|
-
readonly 'gray-500': any;
|
|
1367
|
-
readonly 'gray-600': any;
|
|
1368
|
-
readonly 'gray-700': any;
|
|
1369
|
-
readonly 'gray-800': any;
|
|
1370
|
-
readonly 'gray-900': any;
|
|
1371
|
-
readonly 'indigo-100': any;
|
|
1372
|
-
readonly 'indigo-200': any;
|
|
1373
|
-
readonly 'indigo-300': any;
|
|
1374
|
-
readonly 'indigo-400': any;
|
|
1375
|
-
readonly 'indigo-500': any;
|
|
1376
|
-
readonly 'indigo-600': any;
|
|
1377
|
-
readonly 'indigo-700': any;
|
|
1378
|
-
readonly 'indigo-800': any;
|
|
1379
|
-
readonly 'indigo-900': any;
|
|
1380
|
-
readonly 'red-100': any;
|
|
1381
|
-
readonly 'red-200': any;
|
|
1382
|
-
readonly 'red-300': any;
|
|
1383
|
-
readonly 'red-400': any;
|
|
1384
|
-
readonly 'red-500': any;
|
|
1385
|
-
readonly 'red-600': any;
|
|
1386
|
-
readonly 'red-700': any;
|
|
1387
|
-
readonly 'red-800': any;
|
|
1388
|
-
readonly 'red-900': any;
|
|
1389
|
-
readonly 'yellow-100': any;
|
|
1390
|
-
readonly 'yellow-200': any;
|
|
1391
|
-
readonly 'yellow-300': any;
|
|
1392
|
-
readonly 'yellow-400': any;
|
|
1393
|
-
readonly 'yellow-500': any;
|
|
1394
|
-
readonly 'yellow-600': any;
|
|
1395
|
-
readonly 'yellow-700': any;
|
|
1396
|
-
readonly 'yellow-800': any;
|
|
1397
|
-
readonly 'yellow-900': any;
|
|
1398
|
-
readonly 'green-100': any;
|
|
1399
|
-
readonly 'green-200': any;
|
|
1400
|
-
readonly 'green-300': any;
|
|
1401
|
-
readonly 'green-400': any;
|
|
1402
|
-
readonly 'green-500': any;
|
|
1403
|
-
readonly 'green-600': any;
|
|
1404
|
-
readonly 'green-700': any;
|
|
1405
|
-
readonly 'green-800': any;
|
|
1406
|
-
readonly 'green-900': any;
|
|
1407
|
-
readonly black: any;
|
|
1408
|
-
readonly white: any;
|
|
1409
|
-
readonly transparent: any;
|
|
1410
|
-
readonly 'background-neutrals'?: any;
|
|
1411
|
-
readonly 'background-neutrals-body'?: any;
|
|
1412
|
-
readonly 'background-neutrals-container'?: any;
|
|
1413
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
1414
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1415
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
1416
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
1417
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
1418
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
1419
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1420
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
1421
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
1422
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
1423
|
-
readonly 'background-primary-prominent'?: any;
|
|
1424
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
1425
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
1426
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
1427
|
-
readonly 'background-primary-subtle'?: any;
|
|
1428
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
1429
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
1430
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
1431
|
-
readonly 'background-danger-prominent'?: any;
|
|
1432
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
1433
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
1434
|
-
readonly 'background-danger'?: any;
|
|
1435
|
-
readonly 'background-danger-hover'?: any;
|
|
1436
|
-
readonly 'background-success'?: any;
|
|
1437
|
-
readonly 'background-warning-subtle'?: any;
|
|
1438
|
-
readonly 'background-warning-prominent'?: any;
|
|
1439
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
1440
|
-
readonly 'text-neutrals'?: any;
|
|
1441
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
1442
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1443
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
1444
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
1445
|
-
readonly 'text-primary-inverted'?: any;
|
|
1446
|
-
readonly 'text-primary'?: any;
|
|
1447
|
-
readonly 'text-primary-hover'?: any;
|
|
1448
|
-
readonly 'text-primary-active'?: any;
|
|
1449
|
-
readonly 'text-primary-selected'?: any;
|
|
1450
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
1451
|
-
readonly 'text-danger-inverted'?: any;
|
|
1452
|
-
readonly 'text-danger'?: any;
|
|
1453
|
-
readonly 'text-danger-hover'?: any;
|
|
1454
|
-
readonly 'text-danger-active'?: any;
|
|
1455
|
-
readonly 'text-success'?: any;
|
|
1456
|
-
readonly 'text-warning'?: any;
|
|
1457
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
1458
|
-
readonly 'icon-neutrals'?: any;
|
|
1459
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
1460
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
1461
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
1462
|
-
readonly 'icon-neutrals-search'?: any;
|
|
1463
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
1464
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1465
|
-
readonly 'icon-primary-inverted'?: any;
|
|
1466
|
-
readonly 'icon-primary'?: any;
|
|
1467
|
-
readonly 'icon-primary-hover'?: any;
|
|
1468
|
-
readonly 'icon-primary-active'?: any;
|
|
1469
|
-
readonly 'icon-primary-selected'?: any;
|
|
1470
|
-
readonly 'icon-danger-inverted'?: any;
|
|
1471
|
-
readonly 'icon-danger'?: any;
|
|
1472
|
-
readonly 'icon-danger-hover'?: any;
|
|
1473
|
-
readonly 'icon-danger-active'?: any;
|
|
1474
|
-
readonly 'icon-success-inverted'?: any;
|
|
1475
|
-
readonly 'icon-success'?: any;
|
|
1476
|
-
readonly 'icon-warning'?: any;
|
|
1477
|
-
readonly 'border-focus-outer'?: any;
|
|
1478
|
-
readonly 'border-focus-middle'?: any;
|
|
1479
|
-
readonly 'border-focus-inner'?: any;
|
|
1480
|
-
readonly 'border-neutrals'?: any;
|
|
1481
|
-
readonly 'border-neutrals-hover'?: any;
|
|
1482
|
-
readonly 'border-neutrals-active'?: any;
|
|
1483
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
1484
|
-
readonly 'border-neutrals-controls'?: any;
|
|
1485
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
1486
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
1487
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
1488
|
-
readonly 'border-primary'?: any;
|
|
1489
|
-
readonly 'border-primary-hover'?: any;
|
|
1490
|
-
readonly 'border-primary-active'?: any;
|
|
1491
|
-
readonly 'border-primary-inverted'?: any;
|
|
1492
|
-
readonly 'border-danger'?: any;
|
|
1493
|
-
readonly 'border-success'?: any;
|
|
1494
|
-
readonly 'border-warning'?: any;
|
|
1495
|
-
};
|
|
1496
|
-
'font-sizes': {
|
|
1497
|
-
readonly 150: "0.75rem";
|
|
1498
|
-
readonly 175: "0.875rem";
|
|
1499
|
-
readonly 200: "1rem";
|
|
1500
|
-
readonly 225: "1.125rem";
|
|
1501
|
-
readonly 250: "1.25rem";
|
|
1502
|
-
readonly 300: "1.5rem";
|
|
1503
|
-
readonly 400: "2rem";
|
|
1504
|
-
readonly 500: "2.5rem";
|
|
1505
|
-
readonly 600: "3rem";
|
|
1506
|
-
readonly 800: "4rem";
|
|
1507
|
-
readonly 900: "4.5rem";
|
|
1508
|
-
};
|
|
1509
|
-
radii: {
|
|
1510
|
-
readonly none: 0;
|
|
1511
|
-
readonly half: "999em";
|
|
1512
|
-
readonly 25: "2px";
|
|
1513
|
-
readonly 50: "4px";
|
|
1514
|
-
readonly 75: "6px";
|
|
1515
|
-
readonly 100: "8px";
|
|
1516
|
-
readonly 200: "16px";
|
|
1517
|
-
};
|
|
1518
|
-
shadows: {
|
|
1519
|
-
readonly 50: "0 4px 16px #05003812";
|
|
1520
|
-
readonly 100: "0 8px 32px #05003808";
|
|
1521
|
-
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
1522
|
-
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
1523
|
-
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
1524
|
-
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
1525
|
-
};
|
|
1526
|
-
sizes: {
|
|
1527
|
-
readonly number: string;
|
|
1528
|
-
readonly 'icon-200': "16px";
|
|
1529
|
-
readonly 'icon-300': "24px";
|
|
1530
|
-
readonly 'icon-400': "32px";
|
|
1531
|
-
};
|
|
1532
|
-
space: {
|
|
1533
|
-
readonly none: 0;
|
|
1534
|
-
readonly 50: "4px";
|
|
1535
|
-
readonly 100: "8px";
|
|
1536
|
-
readonly 150: "12px";
|
|
1537
|
-
readonly 200: "16px";
|
|
1538
|
-
readonly 300: "24px";
|
|
1539
|
-
readonly 400: "32px";
|
|
1540
|
-
readonly 500: "64px";
|
|
1541
|
-
readonly 600: "48px";
|
|
1542
|
-
readonly 800: "64px";
|
|
1543
|
-
readonly 1200: "96px";
|
|
1544
|
-
readonly 1600: "128px";
|
|
1545
|
-
};
|
|
1546
|
-
'space-gap': {
|
|
1547
|
-
readonly none: any;
|
|
1548
|
-
readonly 50: any;
|
|
1549
|
-
readonly 100: any;
|
|
1550
|
-
readonly 200: any;
|
|
1551
|
-
readonly 300: any;
|
|
1552
|
-
};
|
|
1553
|
-
'space-inset': {
|
|
1554
|
-
readonly none: any;
|
|
1555
|
-
readonly 50: any;
|
|
1556
|
-
readonly 100: any;
|
|
1557
|
-
readonly 150: any;
|
|
1558
|
-
readonly 200: any;
|
|
1559
|
-
readonly 300: any;
|
|
1560
|
-
readonly 400: any;
|
|
1561
|
-
readonly 600: any;
|
|
1562
|
-
readonly 800: any;
|
|
1563
|
-
readonly 1200: any;
|
|
1564
|
-
readonly 1600: any;
|
|
1565
|
-
};
|
|
1566
|
-
'space-offset': {
|
|
1567
|
-
readonly none: any;
|
|
1568
|
-
readonly 50: any;
|
|
1569
|
-
readonly 100: any;
|
|
1570
|
-
readonly 150: any;
|
|
1571
|
-
readonly 200: any;
|
|
1572
|
-
readonly 300: any;
|
|
1573
|
-
readonly 400: any;
|
|
1574
|
-
readonly 600: any;
|
|
1575
|
-
readonly 800: any;
|
|
1576
|
-
readonly 1200: any;
|
|
1577
|
-
readonly 1600: any;
|
|
1578
|
-
readonly 'stacking-none': any;
|
|
1579
|
-
readonly 'stacking-100': any;
|
|
1580
|
-
readonly 'stacking-200': any;
|
|
1581
|
-
readonly 'stacking-300': any;
|
|
1582
|
-
readonly 'stacking-400': any;
|
|
1583
|
-
readonly 'stacking-500': any;
|
|
1584
|
-
readonly 'stacking-800': any;
|
|
1585
|
-
};
|
|
1586
|
-
'z-indices': {
|
|
1587
|
-
readonly dropdownMenu: 100;
|
|
1588
|
-
readonly popover: 200;
|
|
1589
|
-
readonly tooltip: 300;
|
|
1590
|
-
};
|
|
1591
|
-
}, {
|
|
1592
|
-
readonly background: "colors";
|
|
1593
|
-
readonly backgroundColor: "colors";
|
|
1594
|
-
readonly backgroundImage: "colors";
|
|
1595
|
-
readonly blockSize: "sizes";
|
|
1596
|
-
readonly border: "colors";
|
|
1597
|
-
readonly borderBlock: "colors";
|
|
1598
|
-
readonly borderBlockEnd: "colors";
|
|
1599
|
-
readonly borderBlockStart: "colors";
|
|
1600
|
-
readonly borderBottom: "colors";
|
|
1601
|
-
readonly borderBottomColor: "colors";
|
|
1602
|
-
readonly borderBottomLeftRadius: "radii";
|
|
1603
|
-
readonly borderBottomRightRadius: "radii";
|
|
1604
|
-
readonly borderBottomStyle: "border-styles";
|
|
1605
|
-
readonly borderBottomWidth: "border-widths";
|
|
1606
|
-
readonly borderColor: "colors";
|
|
1607
|
-
readonly borderImage: "colors";
|
|
1608
|
-
readonly borderInline: "colors";
|
|
1609
|
-
readonly borderInlineEnd: "colors";
|
|
1610
|
-
readonly borderInlineStart: "colors";
|
|
1611
|
-
readonly borderLeft: "colors";
|
|
1612
|
-
readonly borderLeftColor: "colors";
|
|
1613
|
-
readonly borderLeftStyle: "border-styles";
|
|
1614
|
-
readonly borderLeftWidth: "border-widths";
|
|
1615
|
-
readonly borderRadius: "radii";
|
|
1616
|
-
readonly borderRight: "colors";
|
|
1617
|
-
readonly borderRightColor: "colors";
|
|
1618
|
-
readonly borderRightStyle: "border-styles";
|
|
1619
|
-
readonly borderRightWidth: "border-widths";
|
|
1620
|
-
readonly borderStyle: "border-styles";
|
|
1621
|
-
readonly borderTop: "colors";
|
|
1622
|
-
readonly borderTopColor: "colors";
|
|
1623
|
-
readonly borderTopLeftRadius: "radii";
|
|
1624
|
-
readonly borderTopRightRadius: "radii";
|
|
1625
|
-
readonly borderTopStyle: "border-styles";
|
|
1626
|
-
readonly borderTopWidth: "border-widths";
|
|
1627
|
-
readonly borderWidth: "border-widths";
|
|
1628
|
-
readonly bottom: "space";
|
|
1629
|
-
readonly boxShadow: "shadows";
|
|
1630
|
-
readonly caretColor: "colors";
|
|
1631
|
-
readonly color: "colors";
|
|
1632
|
-
readonly columnGap: "space-gap";
|
|
1633
|
-
readonly columnRuleColor: "colors";
|
|
1634
|
-
readonly fill: "colors";
|
|
1635
|
-
readonly flexBasis: "sizes";
|
|
1636
|
-
readonly fontFamily: "fonts";
|
|
1637
|
-
readonly fontSize: "font-sizes";
|
|
1638
|
-
readonly fontWeight: "font-weights";
|
|
1639
|
-
readonly gap: "space-gap";
|
|
1640
|
-
readonly gridColumnGap: "space-gap";
|
|
1641
|
-
readonly gridGap: "space-gap";
|
|
1642
|
-
readonly gridRowGap: "space-gap";
|
|
1643
|
-
readonly gridTemplateColumns: "sizes";
|
|
1644
|
-
readonly gridTemplateRows: "sizes";
|
|
1645
|
-
readonly height: "sizes";
|
|
1646
|
-
readonly inlineSize: "sizes";
|
|
1647
|
-
readonly inset: "space-inset";
|
|
1648
|
-
readonly insetBlock: "space-inset";
|
|
1649
|
-
readonly insetBlockEnd: "space-inset";
|
|
1650
|
-
readonly insetBlockStart: "space-inset";
|
|
1651
|
-
readonly insetInline: "space-inset";
|
|
1652
|
-
readonly insetInlineEnd: "space-inset";
|
|
1653
|
-
readonly insetInlineStart: "space-inset";
|
|
1654
|
-
readonly left: "space";
|
|
1655
|
-
readonly letterSpacing: "letter-spacings";
|
|
1656
|
-
readonly lineHeight: "line-heights";
|
|
1657
|
-
readonly margin: "space-offset";
|
|
1658
|
-
readonly marginBlock: "space-offset";
|
|
1659
|
-
readonly marginBlockEnd: "space-offset";
|
|
1660
|
-
readonly marginBlockStart: "space-offset";
|
|
1661
|
-
readonly marginBottom: "space-offset";
|
|
1662
|
-
readonly marginInline: "space-offset";
|
|
1663
|
-
readonly marginInlineEnd: "space-offset";
|
|
1664
|
-
readonly marginInlineStart: "space-offset";
|
|
1665
|
-
readonly marginLeft: "space-offset";
|
|
1666
|
-
readonly marginRight: "space-offset";
|
|
1667
|
-
readonly marginTop: "space-offset";
|
|
1668
|
-
readonly maxBlockSize: "sizes";
|
|
1669
|
-
readonly maxHeight: "sizes";
|
|
1670
|
-
readonly maxInlineSize: "sizes";
|
|
1671
|
-
readonly maxWidth: "sizes";
|
|
1672
|
-
readonly minBlockSize: "sizes";
|
|
1673
|
-
readonly minHeight: "sizes";
|
|
1674
|
-
readonly minInlineSize: "sizes";
|
|
1675
|
-
readonly minWidth: "sizes";
|
|
1676
|
-
readonly outline: "colors";
|
|
1677
|
-
readonly outlineColor: "colors";
|
|
1678
|
-
readonly padding: "space-inset";
|
|
1679
|
-
readonly paddingBlock: "space-inset";
|
|
1680
|
-
readonly paddingBlockEnd: "space-inset";
|
|
1681
|
-
readonly paddingBlockStart: "space-inset";
|
|
1682
|
-
readonly paddingBottom: "space-inset";
|
|
1683
|
-
readonly paddingInline: "space-inset";
|
|
1684
|
-
readonly paddingInlineEnd: "space-inset";
|
|
1685
|
-
readonly paddingInlineStart: "space-inset";
|
|
1686
|
-
readonly paddingLeft: "space-inset";
|
|
1687
|
-
readonly paddingRight: "space-inset";
|
|
1688
|
-
readonly paddingTop: "space-inset";
|
|
1689
|
-
readonly right: "space";
|
|
1690
|
-
readonly rowGap: "space-gap";
|
|
1691
|
-
readonly scrollMargin: "space-offset";
|
|
1692
|
-
readonly scrollMarginBlock: "space-offset";
|
|
1693
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
1694
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
1695
|
-
readonly scrollMarginBottom: "space-offset";
|
|
1696
|
-
readonly scrollMarginInline: "space-offset";
|
|
1697
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
1698
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
1699
|
-
readonly scrollMarginLeft: "space-offset";
|
|
1700
|
-
readonly scrollMarginRight: "space-offset";
|
|
1701
|
-
readonly scrollMarginTop: "space-offset";
|
|
1702
|
-
readonly scrollPadding: "space-inset";
|
|
1703
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
1704
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
1705
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
1706
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
1707
|
-
readonly scrollPaddingInline: "space-inset";
|
|
1708
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
1709
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
1710
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
1711
|
-
readonly scrollPaddingRight: "space-inset";
|
|
1712
|
-
readonly scrollPaddingTop: "space-inset";
|
|
1713
|
-
readonly stroke: "colors";
|
|
1714
|
-
readonly textDecorationColor: "colors";
|
|
1715
|
-
readonly textShadow: "shadows";
|
|
1716
|
-
readonly top: "space";
|
|
1717
|
-
readonly transition: "transitions";
|
|
1718
|
-
readonly width: "sizes";
|
|
1719
|
-
readonly zIndex: "z-indices";
|
|
1720
|
-
}, {
|
|
1721
|
-
paddingX: (value: {
|
|
1722
|
-
readonly [$$PropertyValue]: "padding";
|
|
1723
|
-
}) => {
|
|
1724
|
-
paddingLeft: {
|
|
1725
|
-
readonly [$$PropertyValue]: "padding";
|
|
1356
|
+
declare const StyledLink: react.ForwardRefExoticComponent<Pick<Omit<{}, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<Pick<ItemProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "children" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "unstyled" | "wrapper" | "active" | "onPress"> & react.RefAttributes<HTMLButtonElement>, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
1357
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
1358
|
+
'border-widths': {
|
|
1359
|
+
readonly none: 0;
|
|
1360
|
+
readonly sm: "1px";
|
|
1361
|
+
readonly md: "2px";
|
|
1362
|
+
readonly lg: "4px";
|
|
1726
1363
|
};
|
|
1727
|
-
|
|
1728
|
-
readonly
|
|
1364
|
+
colors: {
|
|
1365
|
+
readonly 'blue-100': any;
|
|
1366
|
+
readonly 'blue-200': any;
|
|
1367
|
+
readonly 'blue-300': any;
|
|
1368
|
+
readonly 'blue-400': any;
|
|
1369
|
+
readonly 'blue-500': any;
|
|
1370
|
+
readonly 'blue-600': any;
|
|
1371
|
+
readonly 'blue-700': any;
|
|
1372
|
+
readonly 'blue-800': any;
|
|
1373
|
+
readonly 'blue-900': any;
|
|
1374
|
+
readonly 'blue-1000': any;
|
|
1375
|
+
readonly 'gray-100': any;
|
|
1376
|
+
readonly 'gray-200': any;
|
|
1377
|
+
readonly 'gray-300': any;
|
|
1378
|
+
readonly 'gray-400': any;
|
|
1379
|
+
readonly 'gray-500': any;
|
|
1380
|
+
readonly 'gray-600': any;
|
|
1381
|
+
readonly 'gray-700': any;
|
|
1382
|
+
readonly 'gray-800': any;
|
|
1383
|
+
readonly 'gray-900': any;
|
|
1384
|
+
readonly 'indigo-100': any;
|
|
1385
|
+
readonly 'indigo-200': any;
|
|
1386
|
+
readonly 'indigo-300': any;
|
|
1387
|
+
readonly 'indigo-400': any;
|
|
1388
|
+
readonly 'indigo-500': any;
|
|
1389
|
+
readonly 'indigo-600': any;
|
|
1390
|
+
readonly 'indigo-700': any;
|
|
1391
|
+
readonly 'indigo-800': any;
|
|
1392
|
+
readonly 'indigo-900': any;
|
|
1393
|
+
readonly 'red-100': any;
|
|
1394
|
+
readonly 'red-200': any;
|
|
1395
|
+
readonly 'red-300': any;
|
|
1396
|
+
readonly 'red-400': any;
|
|
1397
|
+
readonly 'red-500': any;
|
|
1398
|
+
readonly 'red-600': any;
|
|
1399
|
+
readonly 'red-700': any;
|
|
1400
|
+
readonly 'red-800': any;
|
|
1401
|
+
readonly 'red-900': any;
|
|
1402
|
+
readonly 'yellow-100': any;
|
|
1403
|
+
readonly 'yellow-200': any;
|
|
1404
|
+
readonly 'yellow-300': any;
|
|
1405
|
+
readonly 'yellow-400': any;
|
|
1406
|
+
readonly 'yellow-500': any;
|
|
1407
|
+
readonly 'yellow-600': any;
|
|
1408
|
+
readonly 'yellow-700': any;
|
|
1409
|
+
readonly 'yellow-800': any;
|
|
1410
|
+
readonly 'yellow-900': any;
|
|
1411
|
+
readonly 'green-100': any;
|
|
1412
|
+
readonly 'green-200': any;
|
|
1413
|
+
readonly 'green-300': any;
|
|
1414
|
+
readonly 'green-400': any;
|
|
1415
|
+
readonly 'green-500': any;
|
|
1416
|
+
readonly 'green-600': any;
|
|
1417
|
+
readonly 'green-700': any;
|
|
1418
|
+
readonly 'green-800': any;
|
|
1419
|
+
readonly 'green-900': any;
|
|
1420
|
+
readonly black: any;
|
|
1421
|
+
readonly white: any;
|
|
1422
|
+
readonly transparent: any;
|
|
1423
|
+
readonly 'background-neutrals'?: any;
|
|
1424
|
+
readonly 'background-neutrals-body'?: any;
|
|
1425
|
+
readonly 'background-neutrals-container'?: any;
|
|
1426
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
1427
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1428
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
1429
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
1430
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
1431
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
1432
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1433
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
1434
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
1435
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
1436
|
+
readonly 'background-primary-prominent'?: any;
|
|
1437
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
1438
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
1439
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
1440
|
+
readonly 'background-primary-subtle'?: any;
|
|
1441
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
1442
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
1443
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
1444
|
+
readonly 'background-danger-prominent'?: any;
|
|
1445
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
1446
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
1447
|
+
readonly 'background-danger'?: any;
|
|
1448
|
+
readonly 'background-danger-hover'?: any;
|
|
1449
|
+
readonly 'background-success'?: any;
|
|
1450
|
+
readonly 'background-warning-subtle'?: any;
|
|
1451
|
+
readonly 'background-warning-prominent'?: any;
|
|
1452
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
1453
|
+
readonly 'text-neutrals'?: any;
|
|
1454
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
1455
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1456
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
1457
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
1458
|
+
readonly 'text-primary-inverted'?: any;
|
|
1459
|
+
readonly 'text-primary'?: any;
|
|
1460
|
+
readonly 'text-primary-hover'?: any;
|
|
1461
|
+
readonly 'text-primary-active'?: any;
|
|
1462
|
+
readonly 'text-primary-selected'?: any;
|
|
1463
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
1464
|
+
readonly 'text-danger-inverted'?: any;
|
|
1465
|
+
readonly 'text-danger'?: any;
|
|
1466
|
+
readonly 'text-danger-hover'?: any;
|
|
1467
|
+
readonly 'text-danger-active'?: any;
|
|
1468
|
+
readonly 'text-success'?: any;
|
|
1469
|
+
readonly 'text-warning'?: any;
|
|
1470
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
1471
|
+
readonly 'icon-neutrals'?: any;
|
|
1472
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
1473
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
1474
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
1475
|
+
readonly 'icon-neutrals-search'?: any;
|
|
1476
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
1477
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1478
|
+
readonly 'icon-primary-inverted'?: any;
|
|
1479
|
+
readonly 'icon-primary'?: any;
|
|
1480
|
+
readonly 'icon-primary-hover'?: any;
|
|
1481
|
+
readonly 'icon-primary-active'?: any;
|
|
1482
|
+
readonly 'icon-primary-selected'?: any;
|
|
1483
|
+
readonly 'icon-danger-inverted'?: any;
|
|
1484
|
+
readonly 'icon-danger'?: any;
|
|
1485
|
+
readonly 'icon-danger-hover'?: any;
|
|
1486
|
+
readonly 'icon-danger-active'?: any;
|
|
1487
|
+
readonly 'icon-success-inverted'?: any;
|
|
1488
|
+
readonly 'icon-success'?: any;
|
|
1489
|
+
readonly 'icon-warning'?: any;
|
|
1490
|
+
readonly 'border-focus-outer'?: any;
|
|
1491
|
+
readonly 'border-focus-middle'?: any;
|
|
1492
|
+
readonly 'border-focus-inner'?: any;
|
|
1493
|
+
readonly 'border-neutrals'?: any;
|
|
1494
|
+
readonly 'border-neutrals-hover'?: any;
|
|
1495
|
+
readonly 'border-neutrals-active'?: any;
|
|
1496
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
1497
|
+
readonly 'border-neutrals-controls'?: any;
|
|
1498
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
1499
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
1500
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
1501
|
+
readonly 'border-primary'?: any;
|
|
1502
|
+
readonly 'border-primary-hover'?: any;
|
|
1503
|
+
readonly 'border-primary-active'?: any;
|
|
1504
|
+
readonly 'border-primary-inverted'?: any;
|
|
1505
|
+
readonly 'border-danger'?: any;
|
|
1506
|
+
readonly 'border-success'?: any;
|
|
1507
|
+
readonly 'border-warning'?: any;
|
|
1729
1508
|
};
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
readonly
|
|
1509
|
+
'font-sizes': {
|
|
1510
|
+
readonly 150: "0.75rem";
|
|
1511
|
+
readonly 175: "0.875rem";
|
|
1512
|
+
readonly 200: "1rem";
|
|
1513
|
+
readonly 225: "1.125rem";
|
|
1514
|
+
readonly 250: "1.25rem";
|
|
1515
|
+
readonly 300: "1.5rem";
|
|
1516
|
+
readonly 400: "2rem";
|
|
1517
|
+
readonly 500: "2.5rem";
|
|
1518
|
+
readonly 600: "3rem";
|
|
1519
|
+
readonly 800: "4rem";
|
|
1520
|
+
readonly 900: "4.5rem";
|
|
1736
1521
|
};
|
|
1737
|
-
|
|
1738
|
-
readonly
|
|
1522
|
+
radii: {
|
|
1523
|
+
readonly none: 0;
|
|
1524
|
+
readonly half: "999em";
|
|
1525
|
+
readonly 25: "2px";
|
|
1526
|
+
readonly 50: "4px";
|
|
1527
|
+
readonly 75: "6px";
|
|
1528
|
+
readonly 100: "8px";
|
|
1529
|
+
readonly 200: "16px";
|
|
1739
1530
|
};
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
readonly
|
|
1531
|
+
shadows: {
|
|
1532
|
+
readonly 50: "0 4px 16px #05003812";
|
|
1533
|
+
readonly 100: "0 8px 32px #05003808";
|
|
1534
|
+
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
1535
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
1536
|
+
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
1537
|
+
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
1746
1538
|
};
|
|
1747
|
-
|
|
1748
|
-
readonly
|
|
1539
|
+
sizes: {
|
|
1540
|
+
readonly number: string;
|
|
1541
|
+
readonly 'icon-200': "16px";
|
|
1542
|
+
readonly 'icon-300': "24px";
|
|
1543
|
+
readonly 'icon-400': "32px";
|
|
1749
1544
|
};
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
readonly
|
|
1545
|
+
space: {
|
|
1546
|
+
readonly none: 0;
|
|
1547
|
+
readonly 50: "4px";
|
|
1548
|
+
readonly 100: "8px";
|
|
1549
|
+
readonly 150: "12px";
|
|
1550
|
+
readonly 200: "16px";
|
|
1551
|
+
readonly 300: "24px";
|
|
1552
|
+
readonly 400: "32px";
|
|
1553
|
+
readonly 500: "64px";
|
|
1554
|
+
readonly 600: "48px";
|
|
1555
|
+
readonly 800: "64px";
|
|
1556
|
+
readonly 1200: "96px";
|
|
1557
|
+
readonly 1600: "128px";
|
|
1558
|
+
};
|
|
1559
|
+
'space-gap': {
|
|
1560
|
+
readonly none: any;
|
|
1561
|
+
readonly 50: any;
|
|
1562
|
+
readonly 100: any;
|
|
1563
|
+
readonly 200: any;
|
|
1564
|
+
readonly 300: any;
|
|
1565
|
+
};
|
|
1566
|
+
'space-inset': {
|
|
1567
|
+
readonly none: any;
|
|
1568
|
+
readonly 50: any;
|
|
1569
|
+
readonly 100: any;
|
|
1570
|
+
readonly 150: any;
|
|
1571
|
+
readonly 200: any;
|
|
1572
|
+
readonly 300: any;
|
|
1573
|
+
readonly 400: any;
|
|
1574
|
+
readonly 600: any;
|
|
1575
|
+
readonly 800: any;
|
|
1576
|
+
readonly 1200: any;
|
|
1577
|
+
readonly 1600: any;
|
|
1756
1578
|
};
|
|
1757
|
-
|
|
1579
|
+
'space-offset': {
|
|
1580
|
+
readonly none: any;
|
|
1581
|
+
readonly 50: any;
|
|
1582
|
+
readonly 100: any;
|
|
1583
|
+
readonly 150: any;
|
|
1584
|
+
readonly 200: any;
|
|
1585
|
+
readonly 300: any;
|
|
1586
|
+
readonly 400: any;
|
|
1587
|
+
readonly 600: any;
|
|
1588
|
+
readonly 800: any;
|
|
1589
|
+
readonly 1200: any;
|
|
1590
|
+
readonly 1600: any;
|
|
1591
|
+
readonly 'stacking-none': any;
|
|
1592
|
+
readonly 'stacking-100': any;
|
|
1593
|
+
readonly 'stacking-200': any;
|
|
1594
|
+
readonly 'stacking-300': any;
|
|
1595
|
+
readonly 'stacking-400': any;
|
|
1596
|
+
readonly 'stacking-500': any;
|
|
1597
|
+
readonly 'stacking-800': any;
|
|
1598
|
+
};
|
|
1599
|
+
'z-indices': {
|
|
1600
|
+
readonly dropdownMenu: 100;
|
|
1601
|
+
readonly popover: 200;
|
|
1602
|
+
readonly tooltip: 300;
|
|
1603
|
+
};
|
|
1604
|
+
}, {
|
|
1605
|
+
readonly background: "colors";
|
|
1606
|
+
readonly backgroundColor: "colors";
|
|
1607
|
+
readonly backgroundImage: "colors";
|
|
1608
|
+
readonly blockSize: "sizes";
|
|
1609
|
+
readonly border: "colors";
|
|
1610
|
+
readonly borderBlock: "colors";
|
|
1611
|
+
readonly borderBlockEnd: "colors";
|
|
1612
|
+
readonly borderBlockStart: "colors";
|
|
1613
|
+
readonly borderBottom: "colors";
|
|
1614
|
+
readonly borderBottomColor: "colors";
|
|
1615
|
+
readonly borderBottomLeftRadius: "radii";
|
|
1616
|
+
readonly borderBottomRightRadius: "radii";
|
|
1617
|
+
readonly borderBottomStyle: "border-styles";
|
|
1618
|
+
readonly borderBottomWidth: "border-widths";
|
|
1619
|
+
readonly borderColor: "colors";
|
|
1620
|
+
readonly borderImage: "colors";
|
|
1621
|
+
readonly borderInline: "colors";
|
|
1622
|
+
readonly borderInlineEnd: "colors";
|
|
1623
|
+
readonly borderInlineStart: "colors";
|
|
1624
|
+
readonly borderLeft: "colors";
|
|
1625
|
+
readonly borderLeftColor: "colors";
|
|
1626
|
+
readonly borderLeftStyle: "border-styles";
|
|
1627
|
+
readonly borderLeftWidth: "border-widths";
|
|
1628
|
+
readonly borderRadius: "radii";
|
|
1629
|
+
readonly borderRight: "colors";
|
|
1630
|
+
readonly borderRightColor: "colors";
|
|
1631
|
+
readonly borderRightStyle: "border-styles";
|
|
1632
|
+
readonly borderRightWidth: "border-widths";
|
|
1633
|
+
readonly borderStyle: "border-styles";
|
|
1634
|
+
readonly borderTop: "colors";
|
|
1635
|
+
readonly borderTopColor: "colors";
|
|
1636
|
+
readonly borderTopLeftRadius: "radii";
|
|
1637
|
+
readonly borderTopRightRadius: "radii";
|
|
1638
|
+
readonly borderTopStyle: "border-styles";
|
|
1639
|
+
readonly borderTopWidth: "border-widths";
|
|
1640
|
+
readonly borderWidth: "border-widths";
|
|
1641
|
+
readonly bottom: "space";
|
|
1642
|
+
readonly boxShadow: "shadows";
|
|
1643
|
+
readonly caretColor: "colors";
|
|
1644
|
+
readonly color: "colors";
|
|
1645
|
+
readonly columnGap: "space-gap";
|
|
1646
|
+
readonly columnRuleColor: "colors";
|
|
1647
|
+
readonly fill: "colors";
|
|
1648
|
+
readonly flexBasis: "sizes";
|
|
1649
|
+
readonly fontFamily: "fonts";
|
|
1650
|
+
readonly fontSize: "font-sizes";
|
|
1651
|
+
readonly fontWeight: "font-weights";
|
|
1652
|
+
readonly gap: "space-gap";
|
|
1653
|
+
readonly gridColumnGap: "space-gap";
|
|
1654
|
+
readonly gridGap: "space-gap";
|
|
1655
|
+
readonly gridRowGap: "space-gap";
|
|
1656
|
+
readonly gridTemplateColumns: "sizes";
|
|
1657
|
+
readonly gridTemplateRows: "sizes";
|
|
1658
|
+
readonly height: "sizes";
|
|
1659
|
+
readonly inlineSize: "sizes";
|
|
1660
|
+
readonly inset: "space-inset";
|
|
1661
|
+
readonly insetBlock: "space-inset";
|
|
1662
|
+
readonly insetBlockEnd: "space-inset";
|
|
1663
|
+
readonly insetBlockStart: "space-inset";
|
|
1664
|
+
readonly insetInline: "space-inset";
|
|
1665
|
+
readonly insetInlineEnd: "space-inset";
|
|
1666
|
+
readonly insetInlineStart: "space-inset";
|
|
1667
|
+
readonly left: "space";
|
|
1668
|
+
readonly letterSpacing: "letter-spacings";
|
|
1669
|
+
readonly lineHeight: "line-heights";
|
|
1670
|
+
readonly margin: "space-offset";
|
|
1671
|
+
readonly marginBlock: "space-offset";
|
|
1672
|
+
readonly marginBlockEnd: "space-offset";
|
|
1673
|
+
readonly marginBlockStart: "space-offset";
|
|
1674
|
+
readonly marginBottom: "space-offset";
|
|
1675
|
+
readonly marginInline: "space-offset";
|
|
1676
|
+
readonly marginInlineEnd: "space-offset";
|
|
1677
|
+
readonly marginInlineStart: "space-offset";
|
|
1678
|
+
readonly marginLeft: "space-offset";
|
|
1679
|
+
readonly marginRight: "space-offset";
|
|
1680
|
+
readonly marginTop: "space-offset";
|
|
1681
|
+
readonly maxBlockSize: "sizes";
|
|
1682
|
+
readonly maxHeight: "sizes";
|
|
1683
|
+
readonly maxInlineSize: "sizes";
|
|
1684
|
+
readonly maxWidth: "sizes";
|
|
1685
|
+
readonly minBlockSize: "sizes";
|
|
1686
|
+
readonly minHeight: "sizes";
|
|
1687
|
+
readonly minInlineSize: "sizes";
|
|
1688
|
+
readonly minWidth: "sizes";
|
|
1689
|
+
readonly outline: "colors";
|
|
1690
|
+
readonly outlineColor: "colors";
|
|
1691
|
+
readonly padding: "space-inset";
|
|
1692
|
+
readonly paddingBlock: "space-inset";
|
|
1693
|
+
readonly paddingBlockEnd: "space-inset";
|
|
1694
|
+
readonly paddingBlockStart: "space-inset";
|
|
1695
|
+
readonly paddingBottom: "space-inset";
|
|
1696
|
+
readonly paddingInline: "space-inset";
|
|
1697
|
+
readonly paddingInlineEnd: "space-inset";
|
|
1698
|
+
readonly paddingInlineStart: "space-inset";
|
|
1699
|
+
readonly paddingLeft: "space-inset";
|
|
1700
|
+
readonly paddingRight: "space-inset";
|
|
1701
|
+
readonly paddingTop: "space-inset";
|
|
1702
|
+
readonly right: "space";
|
|
1703
|
+
readonly rowGap: "space-gap";
|
|
1704
|
+
readonly scrollMargin: "space-offset";
|
|
1705
|
+
readonly scrollMarginBlock: "space-offset";
|
|
1706
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
1707
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
1708
|
+
readonly scrollMarginBottom: "space-offset";
|
|
1709
|
+
readonly scrollMarginInline: "space-offset";
|
|
1710
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
1711
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
1712
|
+
readonly scrollMarginLeft: "space-offset";
|
|
1713
|
+
readonly scrollMarginRight: "space-offset";
|
|
1714
|
+
readonly scrollMarginTop: "space-offset";
|
|
1715
|
+
readonly scrollPadding: "space-inset";
|
|
1716
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
1717
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
1718
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
1719
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
1720
|
+
readonly scrollPaddingInline: "space-inset";
|
|
1721
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
1722
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
1723
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
1724
|
+
readonly scrollPaddingRight: "space-inset";
|
|
1725
|
+
readonly scrollPaddingTop: "space-inset";
|
|
1726
|
+
readonly stroke: "colors";
|
|
1727
|
+
readonly textDecorationColor: "colors";
|
|
1728
|
+
readonly textShadow: "shadows";
|
|
1729
|
+
readonly top: "space";
|
|
1730
|
+
readonly transition: "transitions";
|
|
1731
|
+
readonly width: "sizes";
|
|
1732
|
+
readonly zIndex: "z-indices";
|
|
1733
|
+
}, {
|
|
1734
|
+
paddingX: (value: {
|
|
1735
|
+
readonly [$$PropertyValue]: "padding";
|
|
1736
|
+
}) => {
|
|
1737
|
+
paddingLeft: {
|
|
1738
|
+
readonly [$$PropertyValue]: "padding";
|
|
1739
|
+
};
|
|
1740
|
+
paddingRight: {
|
|
1741
|
+
readonly [$$PropertyValue]: "padding";
|
|
1742
|
+
};
|
|
1743
|
+
};
|
|
1744
|
+
paddingY: (value: {
|
|
1745
|
+
readonly [$$PropertyValue]: "padding";
|
|
1746
|
+
}) => {
|
|
1747
|
+
paddingTop: {
|
|
1748
|
+
readonly [$$PropertyValue]: "padding";
|
|
1749
|
+
};
|
|
1750
|
+
paddingBottom: {
|
|
1751
|
+
readonly [$$PropertyValue]: "padding";
|
|
1752
|
+
};
|
|
1753
|
+
};
|
|
1754
|
+
marginX: (value: {
|
|
1758
1755
|
readonly [$$PropertyValue]: "margin";
|
|
1756
|
+
}) => {
|
|
1757
|
+
marginLeft: {
|
|
1758
|
+
readonly [$$PropertyValue]: "margin";
|
|
1759
|
+
};
|
|
1760
|
+
marginRight: {
|
|
1761
|
+
readonly [$$PropertyValue]: "margin";
|
|
1762
|
+
};
|
|
1759
1763
|
};
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1764
|
+
marginY: (value: {
|
|
1765
|
+
readonly [$$PropertyValue]: "margin";
|
|
1766
|
+
}) => {
|
|
1767
|
+
marginTop: {
|
|
1768
|
+
readonly [$$PropertyValue]: "margin";
|
|
1769
|
+
};
|
|
1770
|
+
marginBottom: {
|
|
1771
|
+
readonly [$$PropertyValue]: "margin";
|
|
1772
|
+
};
|
|
1766
1773
|
};
|
|
1767
|
-
|
|
1774
|
+
square: (value: {
|
|
1768
1775
|
readonly [$$PropertyValue]: "width";
|
|
1776
|
+
}) => {
|
|
1777
|
+
width: {
|
|
1778
|
+
readonly [$$PropertyValue]: "width";
|
|
1779
|
+
};
|
|
1780
|
+
height: {
|
|
1781
|
+
readonly [$$PropertyValue]: "width";
|
|
1782
|
+
};
|
|
1769
1783
|
};
|
|
1770
|
-
};
|
|
1771
|
-
}
|
|
1784
|
+
}> | undefined;
|
|
1785
|
+
}> & {
|
|
1786
|
+
children?: react.ReactNode;
|
|
1787
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "color" | "translate" | "prefix" | "asChild" | "children" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | keyof _mirohq_design_system_stitches.CustomStylesProps | "unstyled" | "wrapper" | "active" | "onPress"> & react.RefAttributes<HTMLButtonElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<Pick<ItemProps, "color" | "translate" | "css" | "prefix" | "asChild" | "UNSAFE_style" | "children" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "placeholder" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "unstyled" | "wrapper" | "active" | "onPress"> & react.RefAttributes<HTMLButtonElement>>, {}, {}>;
|
|
1772
1788
|
|
|
1773
1789
|
declare type ItemPropsWithAnchor = Omit<ItemProps, 'unstyled'> & AnchorHTMLAttributes<typeof StyledLink>;
|
|
1774
1790
|
interface LinkProps extends ItemPropsWithAnchor {
|
|
1775
1791
|
}
|
|
1776
|
-
declare const Link: react__default.ForwardRefExoticComponent<Pick<LinkProps, "color" | "translate" | "css" | "prefix" | "className" | "style" | "asChild" | "UNSAFE_style" | "media" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "download" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "hrefLang" | "name" | "placeholder" | "rel" | "target" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "
|
|
1792
|
+
declare const Link: react__default.ForwardRefExoticComponent<Pick<LinkProps, "color" | "translate" | "css" | "prefix" | "className" | "style" | "asChild" | "UNSAFE_style" | "children" | "media" | "form" | "slot" | "title" | "autoFocus" | "disabled" | "download" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "hrefLang" | "name" | "placeholder" | "rel" | "target" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "referrerPolicy" | "ping" | "wrapper" | "active" | "onPress"> & react__default.RefAttributes<HTMLButtonElement>>;
|
|
1777
1793
|
|
|
1778
1794
|
interface ToolbarProps extends StyledToolbarProps {
|
|
1779
1795
|
/**
|