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