@mirohq/design-system-grid 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 +849 -831
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { ComponentPropsWithRef } from 'react';
|
|
3
|
+
import * as _mirohq_design_system_primitive from '@mirohq/design-system-primitive';
|
|
3
4
|
import * as _mirohq_design_system_stitches from '@mirohq/design-system-stitches';
|
|
4
5
|
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
5
|
-
import * as _mirohq_design_system_primitive from '@mirohq/design-system-primitive';
|
|
6
6
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
7
7
|
|
|
8
8
|
declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
@@ -25,433 +25,442 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
25
25
|
rows?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
26
26
|
justify?: "end" | "start" | "center" | "stretch" | "between" | "around" | "evenly" | undefined;
|
|
27
27
|
justifyItems?: "end" | "start" | "center" | "stretch" | undefined;
|
|
28
|
-
}, {}> & _mirohq_design_system_stitches.
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
readonly 'blue-400': any;
|
|
40
|
-
readonly 'blue-500': any;
|
|
41
|
-
readonly 'blue-600': any;
|
|
42
|
-
readonly 'blue-700': any;
|
|
43
|
-
readonly 'blue-800': any;
|
|
44
|
-
readonly 'blue-900': any;
|
|
45
|
-
readonly 'blue-1000': any;
|
|
46
|
-
readonly 'gray-100': any;
|
|
47
|
-
readonly 'gray-200': any;
|
|
48
|
-
readonly 'gray-300': any;
|
|
49
|
-
readonly 'gray-400': any;
|
|
50
|
-
readonly 'gray-500': any;
|
|
51
|
-
readonly 'gray-600': any;
|
|
52
|
-
readonly 'gray-700': any;
|
|
53
|
-
readonly 'gray-800': any;
|
|
54
|
-
readonly 'gray-900': any;
|
|
55
|
-
readonly 'indigo-100': any;
|
|
56
|
-
readonly 'indigo-200': any;
|
|
57
|
-
readonly 'indigo-300': any;
|
|
58
|
-
readonly 'indigo-400': any;
|
|
59
|
-
readonly 'indigo-500': any;
|
|
60
|
-
readonly 'indigo-600': any;
|
|
61
|
-
readonly 'indigo-700': any;
|
|
62
|
-
readonly 'indigo-800': any;
|
|
63
|
-
readonly 'indigo-900': any;
|
|
64
|
-
readonly 'red-100': any;
|
|
65
|
-
readonly 'red-200': any;
|
|
66
|
-
readonly 'red-300': any;
|
|
67
|
-
readonly 'red-400': any;
|
|
68
|
-
readonly 'red-500': any;
|
|
69
|
-
readonly 'red-600': any;
|
|
70
|
-
readonly 'red-700': any;
|
|
71
|
-
readonly 'red-800': any;
|
|
72
|
-
readonly 'red-900': any;
|
|
73
|
-
readonly 'yellow-100': any;
|
|
74
|
-
readonly 'yellow-200': any;
|
|
75
|
-
readonly 'yellow-300': any;
|
|
76
|
-
readonly 'yellow-400': any;
|
|
77
|
-
readonly 'yellow-500': any;
|
|
78
|
-
readonly 'yellow-600': any;
|
|
79
|
-
readonly 'yellow-700': any;
|
|
80
|
-
readonly 'yellow-800': any;
|
|
81
|
-
readonly 'yellow-900': any;
|
|
82
|
-
readonly 'green-100': any;
|
|
83
|
-
readonly 'green-200': any;
|
|
84
|
-
readonly 'green-300': any;
|
|
85
|
-
readonly 'green-400': any;
|
|
86
|
-
readonly 'green-500': any;
|
|
87
|
-
readonly 'green-600': any;
|
|
88
|
-
readonly 'green-700': any;
|
|
89
|
-
readonly 'green-800': any;
|
|
90
|
-
readonly 'green-900': any;
|
|
91
|
-
readonly black: any;
|
|
92
|
-
readonly white: any;
|
|
93
|
-
readonly transparent: any;
|
|
94
|
-
readonly 'background-neutrals'?: any;
|
|
95
|
-
readonly 'background-neutrals-body'?: any;
|
|
96
|
-
readonly 'background-neutrals-container'?: any;
|
|
97
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
98
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
99
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
100
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
101
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
102
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
103
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
104
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
105
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
106
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
107
|
-
readonly 'background-primary-prominent'?: any;
|
|
108
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
109
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
110
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
111
|
-
readonly 'background-primary-subtle'?: any;
|
|
112
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
113
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
114
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
115
|
-
readonly 'background-danger-prominent'?: any;
|
|
116
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
117
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
118
|
-
readonly 'background-danger'?: any;
|
|
119
|
-
readonly 'background-danger-hover'?: any;
|
|
120
|
-
readonly 'background-success'?: any;
|
|
121
|
-
readonly 'background-warning-subtle'?: any;
|
|
122
|
-
readonly 'background-warning-prominent'?: any;
|
|
123
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
124
|
-
readonly 'text-neutrals'?: any;
|
|
125
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
126
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
127
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
128
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
129
|
-
readonly 'text-primary-inverted'?: any;
|
|
130
|
-
readonly 'text-primary'?: any;
|
|
131
|
-
readonly 'text-primary-hover'?: any;
|
|
132
|
-
readonly 'text-primary-active'?: any;
|
|
133
|
-
readonly 'text-primary-selected'?: any;
|
|
134
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
135
|
-
readonly 'text-danger-inverted'?: any;
|
|
136
|
-
readonly 'text-danger'?: any;
|
|
137
|
-
readonly 'text-danger-hover'?: any;
|
|
138
|
-
readonly 'text-danger-active'?: any;
|
|
139
|
-
readonly 'text-success'?: any;
|
|
140
|
-
readonly 'text-warning'?: any;
|
|
141
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
142
|
-
readonly 'icon-neutrals'?: any;
|
|
143
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
144
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
145
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
146
|
-
readonly 'icon-neutrals-search'?: any;
|
|
147
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
148
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
149
|
-
readonly 'icon-primary-inverted'?: any;
|
|
150
|
-
readonly 'icon-primary'?: any;
|
|
151
|
-
readonly 'icon-primary-hover'?: any;
|
|
152
|
-
readonly 'icon-primary-active'?: any;
|
|
153
|
-
readonly 'icon-primary-selected'?: any;
|
|
154
|
-
readonly 'icon-danger-inverted'?: any;
|
|
155
|
-
readonly 'icon-danger'?: any;
|
|
156
|
-
readonly 'icon-danger-hover'?: any;
|
|
157
|
-
readonly 'icon-danger-active'?: any;
|
|
158
|
-
readonly 'icon-success-inverted'?: any;
|
|
159
|
-
readonly 'icon-success'?: any;
|
|
160
|
-
readonly 'icon-warning'?: any;
|
|
161
|
-
readonly 'border-focus-outer'?: any;
|
|
162
|
-
readonly 'border-focus-middle'?: any;
|
|
163
|
-
readonly 'border-focus-inner'?: any;
|
|
164
|
-
readonly 'border-neutrals'?: any;
|
|
165
|
-
readonly 'border-neutrals-hover'?: any;
|
|
166
|
-
readonly 'border-neutrals-active'?: any;
|
|
167
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
168
|
-
readonly 'border-neutrals-controls'?: any;
|
|
169
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
170
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
171
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
172
|
-
readonly 'border-primary'?: any;
|
|
173
|
-
readonly 'border-primary-hover'?: any;
|
|
174
|
-
readonly 'border-primary-active'?: any;
|
|
175
|
-
readonly 'border-primary-inverted'?: any;
|
|
176
|
-
readonly 'border-danger'?: any;
|
|
177
|
-
readonly 'border-success'?: any;
|
|
178
|
-
readonly 'border-warning'?: any;
|
|
179
|
-
};
|
|
180
|
-
'font-sizes': {
|
|
181
|
-
readonly 150: "0.75rem";
|
|
182
|
-
readonly 175: "0.875rem";
|
|
183
|
-
readonly 200: "1rem";
|
|
184
|
-
readonly 225: "1.125rem";
|
|
185
|
-
readonly 250: "1.25rem";
|
|
186
|
-
readonly 300: "1.5rem";
|
|
187
|
-
readonly 400: "2rem";
|
|
188
|
-
readonly 500: "2.5rem";
|
|
189
|
-
readonly 600: "3rem";
|
|
190
|
-
readonly 800: "4rem";
|
|
191
|
-
readonly 900: "4.5rem";
|
|
192
|
-
};
|
|
193
|
-
radii: {
|
|
194
|
-
readonly none: 0;
|
|
195
|
-
readonly half: "999em";
|
|
196
|
-
readonly 25: "2px";
|
|
197
|
-
readonly 50: "4px";
|
|
198
|
-
readonly 75: "6px";
|
|
199
|
-
readonly 100: "8px";
|
|
200
|
-
readonly 200: "16px";
|
|
201
|
-
};
|
|
202
|
-
shadows: {
|
|
203
|
-
readonly 50: "0 4px 16px #05003812";
|
|
204
|
-
readonly 100: "0 8px 32px #05003808";
|
|
205
|
-
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";
|
|
206
|
-
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";
|
|
207
|
-
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";
|
|
208
|
-
};
|
|
209
|
-
sizes: {
|
|
210
|
-
readonly number: string;
|
|
211
|
-
readonly 'icon-200': "16px";
|
|
212
|
-
readonly 'icon-300': "24px";
|
|
213
|
-
readonly 'icon-400': "32px";
|
|
214
|
-
};
|
|
215
|
-
space: {
|
|
216
|
-
readonly none: 0;
|
|
217
|
-
readonly 50: "4px";
|
|
218
|
-
readonly 100: "8px";
|
|
219
|
-
readonly 150: "12px";
|
|
220
|
-
readonly 200: "16px";
|
|
221
|
-
readonly 300: "24px";
|
|
222
|
-
readonly 400: "32px";
|
|
223
|
-
readonly 500: "64px";
|
|
224
|
-
readonly 600: "48px";
|
|
225
|
-
readonly 800: "64px";
|
|
226
|
-
readonly 1200: "96px";
|
|
227
|
-
readonly 1600: "128px";
|
|
228
|
-
};
|
|
229
|
-
'space-gap': {
|
|
230
|
-
readonly none: any;
|
|
231
|
-
readonly 50: any;
|
|
232
|
-
readonly 100: any;
|
|
233
|
-
readonly 200: any;
|
|
234
|
-
readonly 300: any;
|
|
235
|
-
};
|
|
236
|
-
'space-inset': {
|
|
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
|
-
};
|
|
249
|
-
'space-offset': {
|
|
250
|
-
readonly none: any;
|
|
251
|
-
readonly 50: any;
|
|
252
|
-
readonly 100: any;
|
|
253
|
-
readonly 150: any;
|
|
254
|
-
readonly 200: any;
|
|
255
|
-
readonly 300: any;
|
|
256
|
-
readonly 400: any;
|
|
257
|
-
readonly 600: any;
|
|
258
|
-
readonly 800: any;
|
|
259
|
-
readonly 1200: any;
|
|
260
|
-
readonly 1600: any;
|
|
261
|
-
readonly 'stacking-none': any;
|
|
262
|
-
readonly 'stacking-100': any;
|
|
263
|
-
readonly 'stacking-200': any;
|
|
264
|
-
readonly 'stacking-300': any;
|
|
265
|
-
readonly 'stacking-400': any;
|
|
266
|
-
readonly 'stacking-500': any;
|
|
267
|
-
readonly 'stacking-800': any;
|
|
268
|
-
};
|
|
269
|
-
'z-indices': {
|
|
270
|
-
readonly dropdownMenu: 100;
|
|
271
|
-
readonly popover: 200;
|
|
272
|
-
readonly tooltip: 300;
|
|
273
|
-
};
|
|
274
|
-
}, {
|
|
275
|
-
readonly background: "colors";
|
|
276
|
-
readonly backgroundColor: "colors";
|
|
277
|
-
readonly backgroundImage: "colors";
|
|
278
|
-
readonly blockSize: "sizes";
|
|
279
|
-
readonly border: "colors";
|
|
280
|
-
readonly borderBlock: "colors";
|
|
281
|
-
readonly borderBlockEnd: "colors";
|
|
282
|
-
readonly borderBlockStart: "colors";
|
|
283
|
-
readonly borderBottom: "colors";
|
|
284
|
-
readonly borderBottomColor: "colors";
|
|
285
|
-
readonly borderBottomLeftRadius: "radii";
|
|
286
|
-
readonly borderBottomRightRadius: "radii";
|
|
287
|
-
readonly borderBottomStyle: "border-styles";
|
|
288
|
-
readonly borderBottomWidth: "border-widths";
|
|
289
|
-
readonly borderColor: "colors";
|
|
290
|
-
readonly borderImage: "colors";
|
|
291
|
-
readonly borderInline: "colors";
|
|
292
|
-
readonly borderInlineEnd: "colors";
|
|
293
|
-
readonly borderInlineStart: "colors";
|
|
294
|
-
readonly borderLeft: "colors";
|
|
295
|
-
readonly borderLeftColor: "colors";
|
|
296
|
-
readonly borderLeftStyle: "border-styles";
|
|
297
|
-
readonly borderLeftWidth: "border-widths";
|
|
298
|
-
readonly borderRadius: "radii";
|
|
299
|
-
readonly borderRight: "colors";
|
|
300
|
-
readonly borderRightColor: "colors";
|
|
301
|
-
readonly borderRightStyle: "border-styles";
|
|
302
|
-
readonly borderRightWidth: "border-widths";
|
|
303
|
-
readonly borderStyle: "border-styles";
|
|
304
|
-
readonly borderTop: "colors";
|
|
305
|
-
readonly borderTopColor: "colors";
|
|
306
|
-
readonly borderTopLeftRadius: "radii";
|
|
307
|
-
readonly borderTopRightRadius: "radii";
|
|
308
|
-
readonly borderTopStyle: "border-styles";
|
|
309
|
-
readonly borderTopWidth: "border-widths";
|
|
310
|
-
readonly borderWidth: "border-widths";
|
|
311
|
-
readonly bottom: "space";
|
|
312
|
-
readonly boxShadow: "shadows";
|
|
313
|
-
readonly caretColor: "colors";
|
|
314
|
-
readonly color: "colors";
|
|
315
|
-
readonly columnGap: "space-gap";
|
|
316
|
-
readonly columnRuleColor: "colors";
|
|
317
|
-
readonly fill: "colors";
|
|
318
|
-
readonly flexBasis: "sizes";
|
|
319
|
-
readonly fontFamily: "fonts";
|
|
320
|
-
readonly fontSize: "font-sizes";
|
|
321
|
-
readonly fontWeight: "font-weights";
|
|
322
|
-
readonly gap: "space-gap";
|
|
323
|
-
readonly gridColumnGap: "space-gap";
|
|
324
|
-
readonly gridGap: "space-gap";
|
|
325
|
-
readonly gridRowGap: "space-gap";
|
|
326
|
-
readonly gridTemplateColumns: "sizes";
|
|
327
|
-
readonly gridTemplateRows: "sizes";
|
|
328
|
-
readonly height: "sizes";
|
|
329
|
-
readonly inlineSize: "sizes";
|
|
330
|
-
readonly inset: "space-inset";
|
|
331
|
-
readonly insetBlock: "space-inset";
|
|
332
|
-
readonly insetBlockEnd: "space-inset";
|
|
333
|
-
readonly insetBlockStart: "space-inset";
|
|
334
|
-
readonly insetInline: "space-inset";
|
|
335
|
-
readonly insetInlineEnd: "space-inset";
|
|
336
|
-
readonly insetInlineStart: "space-inset";
|
|
337
|
-
readonly left: "space";
|
|
338
|
-
readonly letterSpacing: "letter-spacings";
|
|
339
|
-
readonly lineHeight: "line-heights";
|
|
340
|
-
readonly margin: "space-offset";
|
|
341
|
-
readonly marginBlock: "space-offset";
|
|
342
|
-
readonly marginBlockEnd: "space-offset";
|
|
343
|
-
readonly marginBlockStart: "space-offset";
|
|
344
|
-
readonly marginBottom: "space-offset";
|
|
345
|
-
readonly marginInline: "space-offset";
|
|
346
|
-
readonly marginInlineEnd: "space-offset";
|
|
347
|
-
readonly marginInlineStart: "space-offset";
|
|
348
|
-
readonly marginLeft: "space-offset";
|
|
349
|
-
readonly marginRight: "space-offset";
|
|
350
|
-
readonly marginTop: "space-offset";
|
|
351
|
-
readonly maxBlockSize: "sizes";
|
|
352
|
-
readonly maxHeight: "sizes";
|
|
353
|
-
readonly maxInlineSize: "sizes";
|
|
354
|
-
readonly maxWidth: "sizes";
|
|
355
|
-
readonly minBlockSize: "sizes";
|
|
356
|
-
readonly minHeight: "sizes";
|
|
357
|
-
readonly minInlineSize: "sizes";
|
|
358
|
-
readonly minWidth: "sizes";
|
|
359
|
-
readonly outline: "colors";
|
|
360
|
-
readonly outlineColor: "colors";
|
|
361
|
-
readonly padding: "space-inset";
|
|
362
|
-
readonly paddingBlock: "space-inset";
|
|
363
|
-
readonly paddingBlockEnd: "space-inset";
|
|
364
|
-
readonly paddingBlockStart: "space-inset";
|
|
365
|
-
readonly paddingBottom: "space-inset";
|
|
366
|
-
readonly paddingInline: "space-inset";
|
|
367
|
-
readonly paddingInlineEnd: "space-inset";
|
|
368
|
-
readonly paddingInlineStart: "space-inset";
|
|
369
|
-
readonly paddingLeft: "space-inset";
|
|
370
|
-
readonly paddingRight: "space-inset";
|
|
371
|
-
readonly paddingTop: "space-inset";
|
|
372
|
-
readonly right: "space";
|
|
373
|
-
readonly rowGap: "space-gap";
|
|
374
|
-
readonly scrollMargin: "space-offset";
|
|
375
|
-
readonly scrollMarginBlock: "space-offset";
|
|
376
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
377
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
378
|
-
readonly scrollMarginBottom: "space-offset";
|
|
379
|
-
readonly scrollMarginInline: "space-offset";
|
|
380
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
381
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
382
|
-
readonly scrollMarginLeft: "space-offset";
|
|
383
|
-
readonly scrollMarginRight: "space-offset";
|
|
384
|
-
readonly scrollMarginTop: "space-offset";
|
|
385
|
-
readonly scrollPadding: "space-inset";
|
|
386
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
387
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
388
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
389
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
390
|
-
readonly scrollPaddingInline: "space-inset";
|
|
391
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
392
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
393
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
394
|
-
readonly scrollPaddingRight: "space-inset";
|
|
395
|
-
readonly scrollPaddingTop: "space-inset";
|
|
396
|
-
readonly stroke: "colors";
|
|
397
|
-
readonly textDecorationColor: "colors";
|
|
398
|
-
readonly textShadow: "shadows";
|
|
399
|
-
readonly top: "space";
|
|
400
|
-
readonly transition: "transitions";
|
|
401
|
-
readonly width: "sizes";
|
|
402
|
-
readonly zIndex: "z-indices";
|
|
403
|
-
}, {
|
|
404
|
-
paddingX: (value: {
|
|
405
|
-
readonly [$$PropertyValue]: "padding";
|
|
406
|
-
}) => {
|
|
407
|
-
paddingLeft: {
|
|
408
|
-
readonly [$$PropertyValue]: "padding";
|
|
28
|
+
}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<Pick<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof react.HTMLAttributes<HTMLDivElement>> & {
|
|
29
|
+
ref?: ((instance: HTMLDivElement | null) => void) | react.RefObject<HTMLDivElement> | null | undefined;
|
|
30
|
+
} & {
|
|
31
|
+
asChild?: boolean | undefined;
|
|
32
|
+
}, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
33
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
34
|
+
'border-widths': {
|
|
35
|
+
readonly none: 0;
|
|
36
|
+
readonly sm: "1px";
|
|
37
|
+
readonly md: "2px";
|
|
38
|
+
readonly lg: "4px";
|
|
409
39
|
};
|
|
410
|
-
|
|
411
|
-
readonly
|
|
40
|
+
colors: {
|
|
41
|
+
readonly 'blue-100': any;
|
|
42
|
+
readonly 'blue-200': any;
|
|
43
|
+
readonly 'blue-300': any;
|
|
44
|
+
readonly 'blue-400': any;
|
|
45
|
+
readonly 'blue-500': any;
|
|
46
|
+
readonly 'blue-600': any;
|
|
47
|
+
readonly 'blue-700': any;
|
|
48
|
+
readonly 'blue-800': any;
|
|
49
|
+
readonly 'blue-900': any;
|
|
50
|
+
readonly 'blue-1000': any;
|
|
51
|
+
readonly 'gray-100': any;
|
|
52
|
+
readonly 'gray-200': any;
|
|
53
|
+
readonly 'gray-300': any;
|
|
54
|
+
readonly 'gray-400': any;
|
|
55
|
+
readonly 'gray-500': any;
|
|
56
|
+
readonly 'gray-600': any;
|
|
57
|
+
readonly 'gray-700': any;
|
|
58
|
+
readonly 'gray-800': any;
|
|
59
|
+
readonly 'gray-900': any;
|
|
60
|
+
readonly 'indigo-100': any;
|
|
61
|
+
readonly 'indigo-200': any;
|
|
62
|
+
readonly 'indigo-300': any;
|
|
63
|
+
readonly 'indigo-400': any;
|
|
64
|
+
readonly 'indigo-500': any;
|
|
65
|
+
readonly 'indigo-600': any;
|
|
66
|
+
readonly 'indigo-700': any;
|
|
67
|
+
readonly 'indigo-800': any;
|
|
68
|
+
readonly 'indigo-900': any;
|
|
69
|
+
readonly 'red-100': any;
|
|
70
|
+
readonly 'red-200': any;
|
|
71
|
+
readonly 'red-300': any;
|
|
72
|
+
readonly 'red-400': any;
|
|
73
|
+
readonly 'red-500': any;
|
|
74
|
+
readonly 'red-600': any;
|
|
75
|
+
readonly 'red-700': any;
|
|
76
|
+
readonly 'red-800': any;
|
|
77
|
+
readonly 'red-900': any;
|
|
78
|
+
readonly 'yellow-100': any;
|
|
79
|
+
readonly 'yellow-200': any;
|
|
80
|
+
readonly 'yellow-300': any;
|
|
81
|
+
readonly 'yellow-400': any;
|
|
82
|
+
readonly 'yellow-500': any;
|
|
83
|
+
readonly 'yellow-600': any;
|
|
84
|
+
readonly 'yellow-700': any;
|
|
85
|
+
readonly 'yellow-800': any;
|
|
86
|
+
readonly 'yellow-900': any;
|
|
87
|
+
readonly 'green-100': any;
|
|
88
|
+
readonly 'green-200': any;
|
|
89
|
+
readonly 'green-300': any;
|
|
90
|
+
readonly 'green-400': any;
|
|
91
|
+
readonly 'green-500': any;
|
|
92
|
+
readonly 'green-600': any;
|
|
93
|
+
readonly 'green-700': any;
|
|
94
|
+
readonly 'green-800': any;
|
|
95
|
+
readonly 'green-900': any;
|
|
96
|
+
readonly black: any;
|
|
97
|
+
readonly white: any;
|
|
98
|
+
readonly transparent: any;
|
|
99
|
+
readonly 'background-neutrals'?: any;
|
|
100
|
+
readonly 'background-neutrals-body'?: any;
|
|
101
|
+
readonly 'background-neutrals-container'?: any;
|
|
102
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
103
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
104
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
105
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
106
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
107
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
108
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
109
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
110
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
111
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
112
|
+
readonly 'background-primary-prominent'?: any;
|
|
113
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
114
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
115
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
116
|
+
readonly 'background-primary-subtle'?: any;
|
|
117
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
118
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
119
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
120
|
+
readonly 'background-danger-prominent'?: any;
|
|
121
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
122
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
123
|
+
readonly 'background-danger'?: any;
|
|
124
|
+
readonly 'background-danger-hover'?: any;
|
|
125
|
+
readonly 'background-success'?: any;
|
|
126
|
+
readonly 'background-warning-subtle'?: any;
|
|
127
|
+
readonly 'background-warning-prominent'?: any;
|
|
128
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
129
|
+
readonly 'text-neutrals'?: any;
|
|
130
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
131
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
132
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
133
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
134
|
+
readonly 'text-primary-inverted'?: any;
|
|
135
|
+
readonly 'text-primary'?: any;
|
|
136
|
+
readonly 'text-primary-hover'?: any;
|
|
137
|
+
readonly 'text-primary-active'?: any;
|
|
138
|
+
readonly 'text-primary-selected'?: any;
|
|
139
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
140
|
+
readonly 'text-danger-inverted'?: any;
|
|
141
|
+
readonly 'text-danger'?: any;
|
|
142
|
+
readonly 'text-danger-hover'?: any;
|
|
143
|
+
readonly 'text-danger-active'?: any;
|
|
144
|
+
readonly 'text-success'?: any;
|
|
145
|
+
readonly 'text-warning'?: any;
|
|
146
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
147
|
+
readonly 'icon-neutrals'?: any;
|
|
148
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
149
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
150
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
151
|
+
readonly 'icon-neutrals-search'?: any;
|
|
152
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
153
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
154
|
+
readonly 'icon-primary-inverted'?: any;
|
|
155
|
+
readonly 'icon-primary'?: any;
|
|
156
|
+
readonly 'icon-primary-hover'?: any;
|
|
157
|
+
readonly 'icon-primary-active'?: any;
|
|
158
|
+
readonly 'icon-primary-selected'?: any;
|
|
159
|
+
readonly 'icon-danger-inverted'?: any;
|
|
160
|
+
readonly 'icon-danger'?: any;
|
|
161
|
+
readonly 'icon-danger-hover'?: any;
|
|
162
|
+
readonly 'icon-danger-active'?: any;
|
|
163
|
+
readonly 'icon-success-inverted'?: any;
|
|
164
|
+
readonly 'icon-success'?: any;
|
|
165
|
+
readonly 'icon-warning'?: any;
|
|
166
|
+
readonly 'border-focus-outer'?: any;
|
|
167
|
+
readonly 'border-focus-middle'?: any;
|
|
168
|
+
readonly 'border-focus-inner'?: any;
|
|
169
|
+
readonly 'border-neutrals'?: any;
|
|
170
|
+
readonly 'border-neutrals-hover'?: any;
|
|
171
|
+
readonly 'border-neutrals-active'?: any;
|
|
172
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
173
|
+
readonly 'border-neutrals-controls'?: any;
|
|
174
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
175
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
176
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
177
|
+
readonly 'border-primary'?: any;
|
|
178
|
+
readonly 'border-primary-hover'?: any;
|
|
179
|
+
readonly 'border-primary-active'?: any;
|
|
180
|
+
readonly 'border-primary-inverted'?: any;
|
|
181
|
+
readonly 'border-danger'?: any;
|
|
182
|
+
readonly 'border-success'?: any;
|
|
183
|
+
readonly 'border-warning'?: any;
|
|
412
184
|
};
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
readonly
|
|
185
|
+
'font-sizes': {
|
|
186
|
+
readonly 150: "0.75rem";
|
|
187
|
+
readonly 175: "0.875rem";
|
|
188
|
+
readonly 200: "1rem";
|
|
189
|
+
readonly 225: "1.125rem";
|
|
190
|
+
readonly 250: "1.25rem";
|
|
191
|
+
readonly 300: "1.5rem";
|
|
192
|
+
readonly 400: "2rem";
|
|
193
|
+
readonly 500: "2.5rem";
|
|
194
|
+
readonly 600: "3rem";
|
|
195
|
+
readonly 800: "4rem";
|
|
196
|
+
readonly 900: "4.5rem";
|
|
419
197
|
};
|
|
420
|
-
|
|
421
|
-
readonly
|
|
198
|
+
radii: {
|
|
199
|
+
readonly none: 0;
|
|
200
|
+
readonly half: "999em";
|
|
201
|
+
readonly 25: "2px";
|
|
202
|
+
readonly 50: "4px";
|
|
203
|
+
readonly 75: "6px";
|
|
204
|
+
readonly 100: "8px";
|
|
205
|
+
readonly 200: "16px";
|
|
422
206
|
};
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
readonly
|
|
207
|
+
shadows: {
|
|
208
|
+
readonly 50: "0 4px 16px #05003812";
|
|
209
|
+
readonly 100: "0 8px 32px #05003808";
|
|
210
|
+
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";
|
|
211
|
+
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";
|
|
212
|
+
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";
|
|
213
|
+
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";
|
|
429
214
|
};
|
|
430
|
-
|
|
431
|
-
readonly
|
|
215
|
+
sizes: {
|
|
216
|
+
readonly number: string;
|
|
217
|
+
readonly 'icon-200': "16px";
|
|
218
|
+
readonly 'icon-300': "24px";
|
|
219
|
+
readonly 'icon-400': "32px";
|
|
432
220
|
};
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
readonly
|
|
221
|
+
space: {
|
|
222
|
+
readonly none: 0;
|
|
223
|
+
readonly 50: "4px";
|
|
224
|
+
readonly 100: "8px";
|
|
225
|
+
readonly 150: "12px";
|
|
226
|
+
readonly 200: "16px";
|
|
227
|
+
readonly 300: "24px";
|
|
228
|
+
readonly 400: "32px";
|
|
229
|
+
readonly 500: "64px";
|
|
230
|
+
readonly 600: "48px";
|
|
231
|
+
readonly 800: "64px";
|
|
232
|
+
readonly 1200: "96px";
|
|
233
|
+
readonly 1600: "128px";
|
|
439
234
|
};
|
|
440
|
-
|
|
235
|
+
'space-gap': {
|
|
236
|
+
readonly none: any;
|
|
237
|
+
readonly 50: any;
|
|
238
|
+
readonly 100: any;
|
|
239
|
+
readonly 200: any;
|
|
240
|
+
readonly 300: any;
|
|
241
|
+
};
|
|
242
|
+
'space-inset': {
|
|
243
|
+
readonly none: any;
|
|
244
|
+
readonly 50: any;
|
|
245
|
+
readonly 100: any;
|
|
246
|
+
readonly 150: any;
|
|
247
|
+
readonly 200: any;
|
|
248
|
+
readonly 300: any;
|
|
249
|
+
readonly 400: any;
|
|
250
|
+
readonly 600: any;
|
|
251
|
+
readonly 800: any;
|
|
252
|
+
readonly 1200: any;
|
|
253
|
+
readonly 1600: any;
|
|
254
|
+
};
|
|
255
|
+
'space-offset': {
|
|
256
|
+
readonly none: any;
|
|
257
|
+
readonly 50: any;
|
|
258
|
+
readonly 100: any;
|
|
259
|
+
readonly 150: any;
|
|
260
|
+
readonly 200: any;
|
|
261
|
+
readonly 300: any;
|
|
262
|
+
readonly 400: any;
|
|
263
|
+
readonly 600: any;
|
|
264
|
+
readonly 800: any;
|
|
265
|
+
readonly 1200: any;
|
|
266
|
+
readonly 1600: any;
|
|
267
|
+
readonly 'stacking-none': any;
|
|
268
|
+
readonly 'stacking-100': any;
|
|
269
|
+
readonly 'stacking-200': any;
|
|
270
|
+
readonly 'stacking-300': any;
|
|
271
|
+
readonly 'stacking-400': any;
|
|
272
|
+
readonly 'stacking-500': any;
|
|
273
|
+
readonly 'stacking-800': any;
|
|
274
|
+
};
|
|
275
|
+
'z-indices': {
|
|
276
|
+
readonly dropdownMenu: 100;
|
|
277
|
+
readonly popover: 200;
|
|
278
|
+
readonly tooltip: 300;
|
|
279
|
+
};
|
|
280
|
+
}, {
|
|
281
|
+
readonly background: "colors";
|
|
282
|
+
readonly backgroundColor: "colors";
|
|
283
|
+
readonly backgroundImage: "colors";
|
|
284
|
+
readonly blockSize: "sizes";
|
|
285
|
+
readonly border: "colors";
|
|
286
|
+
readonly borderBlock: "colors";
|
|
287
|
+
readonly borderBlockEnd: "colors";
|
|
288
|
+
readonly borderBlockStart: "colors";
|
|
289
|
+
readonly borderBottom: "colors";
|
|
290
|
+
readonly borderBottomColor: "colors";
|
|
291
|
+
readonly borderBottomLeftRadius: "radii";
|
|
292
|
+
readonly borderBottomRightRadius: "radii";
|
|
293
|
+
readonly borderBottomStyle: "border-styles";
|
|
294
|
+
readonly borderBottomWidth: "border-widths";
|
|
295
|
+
readonly borderColor: "colors";
|
|
296
|
+
readonly borderImage: "colors";
|
|
297
|
+
readonly borderInline: "colors";
|
|
298
|
+
readonly borderInlineEnd: "colors";
|
|
299
|
+
readonly borderInlineStart: "colors";
|
|
300
|
+
readonly borderLeft: "colors";
|
|
301
|
+
readonly borderLeftColor: "colors";
|
|
302
|
+
readonly borderLeftStyle: "border-styles";
|
|
303
|
+
readonly borderLeftWidth: "border-widths";
|
|
304
|
+
readonly borderRadius: "radii";
|
|
305
|
+
readonly borderRight: "colors";
|
|
306
|
+
readonly borderRightColor: "colors";
|
|
307
|
+
readonly borderRightStyle: "border-styles";
|
|
308
|
+
readonly borderRightWidth: "border-widths";
|
|
309
|
+
readonly borderStyle: "border-styles";
|
|
310
|
+
readonly borderTop: "colors";
|
|
311
|
+
readonly borderTopColor: "colors";
|
|
312
|
+
readonly borderTopLeftRadius: "radii";
|
|
313
|
+
readonly borderTopRightRadius: "radii";
|
|
314
|
+
readonly borderTopStyle: "border-styles";
|
|
315
|
+
readonly borderTopWidth: "border-widths";
|
|
316
|
+
readonly borderWidth: "border-widths";
|
|
317
|
+
readonly bottom: "space";
|
|
318
|
+
readonly boxShadow: "shadows";
|
|
319
|
+
readonly caretColor: "colors";
|
|
320
|
+
readonly color: "colors";
|
|
321
|
+
readonly columnGap: "space-gap";
|
|
322
|
+
readonly columnRuleColor: "colors";
|
|
323
|
+
readonly fill: "colors";
|
|
324
|
+
readonly flexBasis: "sizes";
|
|
325
|
+
readonly fontFamily: "fonts";
|
|
326
|
+
readonly fontSize: "font-sizes";
|
|
327
|
+
readonly fontWeight: "font-weights";
|
|
328
|
+
readonly gap: "space-gap";
|
|
329
|
+
readonly gridColumnGap: "space-gap";
|
|
330
|
+
readonly gridGap: "space-gap";
|
|
331
|
+
readonly gridRowGap: "space-gap";
|
|
332
|
+
readonly gridTemplateColumns: "sizes";
|
|
333
|
+
readonly gridTemplateRows: "sizes";
|
|
334
|
+
readonly height: "sizes";
|
|
335
|
+
readonly inlineSize: "sizes";
|
|
336
|
+
readonly inset: "space-inset";
|
|
337
|
+
readonly insetBlock: "space-inset";
|
|
338
|
+
readonly insetBlockEnd: "space-inset";
|
|
339
|
+
readonly insetBlockStart: "space-inset";
|
|
340
|
+
readonly insetInline: "space-inset";
|
|
341
|
+
readonly insetInlineEnd: "space-inset";
|
|
342
|
+
readonly insetInlineStart: "space-inset";
|
|
343
|
+
readonly left: "space";
|
|
344
|
+
readonly letterSpacing: "letter-spacings";
|
|
345
|
+
readonly lineHeight: "line-heights";
|
|
346
|
+
readonly margin: "space-offset";
|
|
347
|
+
readonly marginBlock: "space-offset";
|
|
348
|
+
readonly marginBlockEnd: "space-offset";
|
|
349
|
+
readonly marginBlockStart: "space-offset";
|
|
350
|
+
readonly marginBottom: "space-offset";
|
|
351
|
+
readonly marginInline: "space-offset";
|
|
352
|
+
readonly marginInlineEnd: "space-offset";
|
|
353
|
+
readonly marginInlineStart: "space-offset";
|
|
354
|
+
readonly marginLeft: "space-offset";
|
|
355
|
+
readonly marginRight: "space-offset";
|
|
356
|
+
readonly marginTop: "space-offset";
|
|
357
|
+
readonly maxBlockSize: "sizes";
|
|
358
|
+
readonly maxHeight: "sizes";
|
|
359
|
+
readonly maxInlineSize: "sizes";
|
|
360
|
+
readonly maxWidth: "sizes";
|
|
361
|
+
readonly minBlockSize: "sizes";
|
|
362
|
+
readonly minHeight: "sizes";
|
|
363
|
+
readonly minInlineSize: "sizes";
|
|
364
|
+
readonly minWidth: "sizes";
|
|
365
|
+
readonly outline: "colors";
|
|
366
|
+
readonly outlineColor: "colors";
|
|
367
|
+
readonly padding: "space-inset";
|
|
368
|
+
readonly paddingBlock: "space-inset";
|
|
369
|
+
readonly paddingBlockEnd: "space-inset";
|
|
370
|
+
readonly paddingBlockStart: "space-inset";
|
|
371
|
+
readonly paddingBottom: "space-inset";
|
|
372
|
+
readonly paddingInline: "space-inset";
|
|
373
|
+
readonly paddingInlineEnd: "space-inset";
|
|
374
|
+
readonly paddingInlineStart: "space-inset";
|
|
375
|
+
readonly paddingLeft: "space-inset";
|
|
376
|
+
readonly paddingRight: "space-inset";
|
|
377
|
+
readonly paddingTop: "space-inset";
|
|
378
|
+
readonly right: "space";
|
|
379
|
+
readonly rowGap: "space-gap";
|
|
380
|
+
readonly scrollMargin: "space-offset";
|
|
381
|
+
readonly scrollMarginBlock: "space-offset";
|
|
382
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
383
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
384
|
+
readonly scrollMarginBottom: "space-offset";
|
|
385
|
+
readonly scrollMarginInline: "space-offset";
|
|
386
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
387
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
388
|
+
readonly scrollMarginLeft: "space-offset";
|
|
389
|
+
readonly scrollMarginRight: "space-offset";
|
|
390
|
+
readonly scrollMarginTop: "space-offset";
|
|
391
|
+
readonly scrollPadding: "space-inset";
|
|
392
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
393
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
394
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
395
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
396
|
+
readonly scrollPaddingInline: "space-inset";
|
|
397
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
398
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
399
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
400
|
+
readonly scrollPaddingRight: "space-inset";
|
|
401
|
+
readonly scrollPaddingTop: "space-inset";
|
|
402
|
+
readonly stroke: "colors";
|
|
403
|
+
readonly textDecorationColor: "colors";
|
|
404
|
+
readonly textShadow: "shadows";
|
|
405
|
+
readonly top: "space";
|
|
406
|
+
readonly transition: "transitions";
|
|
407
|
+
readonly width: "sizes";
|
|
408
|
+
readonly zIndex: "z-indices";
|
|
409
|
+
}, {
|
|
410
|
+
paddingX: (value: {
|
|
411
|
+
readonly [$$PropertyValue]: "padding";
|
|
412
|
+
}) => {
|
|
413
|
+
paddingLeft: {
|
|
414
|
+
readonly [$$PropertyValue]: "padding";
|
|
415
|
+
};
|
|
416
|
+
paddingRight: {
|
|
417
|
+
readonly [$$PropertyValue]: "padding";
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
paddingY: (value: {
|
|
421
|
+
readonly [$$PropertyValue]: "padding";
|
|
422
|
+
}) => {
|
|
423
|
+
paddingTop: {
|
|
424
|
+
readonly [$$PropertyValue]: "padding";
|
|
425
|
+
};
|
|
426
|
+
paddingBottom: {
|
|
427
|
+
readonly [$$PropertyValue]: "padding";
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
marginX: (value: {
|
|
441
431
|
readonly [$$PropertyValue]: "margin";
|
|
432
|
+
}) => {
|
|
433
|
+
marginLeft: {
|
|
434
|
+
readonly [$$PropertyValue]: "margin";
|
|
435
|
+
};
|
|
436
|
+
marginRight: {
|
|
437
|
+
readonly [$$PropertyValue]: "margin";
|
|
438
|
+
};
|
|
442
439
|
};
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
440
|
+
marginY: (value: {
|
|
441
|
+
readonly [$$PropertyValue]: "margin";
|
|
442
|
+
}) => {
|
|
443
|
+
marginTop: {
|
|
444
|
+
readonly [$$PropertyValue]: "margin";
|
|
445
|
+
};
|
|
446
|
+
marginBottom: {
|
|
447
|
+
readonly [$$PropertyValue]: "margin";
|
|
448
|
+
};
|
|
449
449
|
};
|
|
450
|
-
|
|
450
|
+
square: (value: {
|
|
451
451
|
readonly [$$PropertyValue]: "width";
|
|
452
|
+
}) => {
|
|
453
|
+
width: {
|
|
454
|
+
readonly [$$PropertyValue]: "width";
|
|
455
|
+
};
|
|
456
|
+
height: {
|
|
457
|
+
readonly [$$PropertyValue]: "width";
|
|
458
|
+
};
|
|
452
459
|
};
|
|
453
|
-
};
|
|
454
|
-
}
|
|
460
|
+
}> | undefined;
|
|
461
|
+
}> & {
|
|
462
|
+
children?: react.ReactNode;
|
|
463
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "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" | "children" | "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" | "rows" | "align" | "justify" | "asChild" | "justifyItems" | "columns" | "gap" | "flow" | keyof _mirohq_design_system_stitches.CustomStylesProps | "gapX" | "gapY"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>, {
|
|
455
464
|
align?: "end" | "baseline" | "start" | "center" | "stretch" | undefined;
|
|
456
465
|
flow?: "row" | "column" | "dense" | "rowDense" | "columnDense" | undefined;
|
|
457
466
|
gap?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
@@ -474,433 +483,442 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
474
483
|
rowStart?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -1 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "-1" | undefined;
|
|
475
484
|
columnEnd?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -1 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "-1" | undefined;
|
|
476
485
|
rowEnd?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -1 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "-1" | undefined;
|
|
477
|
-
}, {}> & _mirohq_design_system_stitches.
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
readonly 'blue-400': any;
|
|
489
|
-
readonly 'blue-500': any;
|
|
490
|
-
readonly 'blue-600': any;
|
|
491
|
-
readonly 'blue-700': any;
|
|
492
|
-
readonly 'blue-800': any;
|
|
493
|
-
readonly 'blue-900': any;
|
|
494
|
-
readonly 'blue-1000': any;
|
|
495
|
-
readonly 'gray-100': any;
|
|
496
|
-
readonly 'gray-200': any;
|
|
497
|
-
readonly 'gray-300': any;
|
|
498
|
-
readonly 'gray-400': any;
|
|
499
|
-
readonly 'gray-500': any;
|
|
500
|
-
readonly 'gray-600': any;
|
|
501
|
-
readonly 'gray-700': any;
|
|
502
|
-
readonly 'gray-800': any;
|
|
503
|
-
readonly 'gray-900': any;
|
|
504
|
-
readonly 'indigo-100': any;
|
|
505
|
-
readonly 'indigo-200': any;
|
|
506
|
-
readonly 'indigo-300': any;
|
|
507
|
-
readonly 'indigo-400': any;
|
|
508
|
-
readonly 'indigo-500': any;
|
|
509
|
-
readonly 'indigo-600': any;
|
|
510
|
-
readonly 'indigo-700': any;
|
|
511
|
-
readonly 'indigo-800': any;
|
|
512
|
-
readonly 'indigo-900': any;
|
|
513
|
-
readonly 'red-100': any;
|
|
514
|
-
readonly 'red-200': any;
|
|
515
|
-
readonly 'red-300': any;
|
|
516
|
-
readonly 'red-400': any;
|
|
517
|
-
readonly 'red-500': any;
|
|
518
|
-
readonly 'red-600': any;
|
|
519
|
-
readonly 'red-700': any;
|
|
520
|
-
readonly 'red-800': any;
|
|
521
|
-
readonly 'red-900': any;
|
|
522
|
-
readonly 'yellow-100': any;
|
|
523
|
-
readonly 'yellow-200': any;
|
|
524
|
-
readonly 'yellow-300': any;
|
|
525
|
-
readonly 'yellow-400': any;
|
|
526
|
-
readonly 'yellow-500': any;
|
|
527
|
-
readonly 'yellow-600': any;
|
|
528
|
-
readonly 'yellow-700': any;
|
|
529
|
-
readonly 'yellow-800': any;
|
|
530
|
-
readonly 'yellow-900': any;
|
|
531
|
-
readonly 'green-100': any;
|
|
532
|
-
readonly 'green-200': any;
|
|
533
|
-
readonly 'green-300': any;
|
|
534
|
-
readonly 'green-400': any;
|
|
535
|
-
readonly 'green-500': any;
|
|
536
|
-
readonly 'green-600': any;
|
|
537
|
-
readonly 'green-700': any;
|
|
538
|
-
readonly 'green-800': any;
|
|
539
|
-
readonly 'green-900': any;
|
|
540
|
-
readonly black: any;
|
|
541
|
-
readonly white: any;
|
|
542
|
-
readonly transparent: any;
|
|
543
|
-
readonly 'background-neutrals'?: any;
|
|
544
|
-
readonly 'background-neutrals-body'?: any;
|
|
545
|
-
readonly 'background-neutrals-container'?: any;
|
|
546
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
547
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
548
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
549
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
550
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
551
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
552
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
553
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
554
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
555
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
556
|
-
readonly 'background-primary-prominent'?: any;
|
|
557
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
558
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
559
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
560
|
-
readonly 'background-primary-subtle'?: any;
|
|
561
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
562
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
563
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
564
|
-
readonly 'background-danger-prominent'?: any;
|
|
565
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
566
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
567
|
-
readonly 'background-danger'?: any;
|
|
568
|
-
readonly 'background-danger-hover'?: any;
|
|
569
|
-
readonly 'background-success'?: any;
|
|
570
|
-
readonly 'background-warning-subtle'?: any;
|
|
571
|
-
readonly 'background-warning-prominent'?: any;
|
|
572
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
573
|
-
readonly 'text-neutrals'?: any;
|
|
574
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
575
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
576
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
577
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
578
|
-
readonly 'text-primary-inverted'?: any;
|
|
579
|
-
readonly 'text-primary'?: any;
|
|
580
|
-
readonly 'text-primary-hover'?: any;
|
|
581
|
-
readonly 'text-primary-active'?: any;
|
|
582
|
-
readonly 'text-primary-selected'?: any;
|
|
583
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
584
|
-
readonly 'text-danger-inverted'?: any;
|
|
585
|
-
readonly 'text-danger'?: any;
|
|
586
|
-
readonly 'text-danger-hover'?: any;
|
|
587
|
-
readonly 'text-danger-active'?: any;
|
|
588
|
-
readonly 'text-success'?: any;
|
|
589
|
-
readonly 'text-warning'?: any;
|
|
590
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
591
|
-
readonly 'icon-neutrals'?: any;
|
|
592
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
593
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
594
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
595
|
-
readonly 'icon-neutrals-search'?: any;
|
|
596
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
597
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
598
|
-
readonly 'icon-primary-inverted'?: any;
|
|
599
|
-
readonly 'icon-primary'?: any;
|
|
600
|
-
readonly 'icon-primary-hover'?: any;
|
|
601
|
-
readonly 'icon-primary-active'?: any;
|
|
602
|
-
readonly 'icon-primary-selected'?: any;
|
|
603
|
-
readonly 'icon-danger-inverted'?: any;
|
|
604
|
-
readonly 'icon-danger'?: any;
|
|
605
|
-
readonly 'icon-danger-hover'?: any;
|
|
606
|
-
readonly 'icon-danger-active'?: any;
|
|
607
|
-
readonly 'icon-success-inverted'?: any;
|
|
608
|
-
readonly 'icon-success'?: any;
|
|
609
|
-
readonly 'icon-warning'?: any;
|
|
610
|
-
readonly 'border-focus-outer'?: any;
|
|
611
|
-
readonly 'border-focus-middle'?: any;
|
|
612
|
-
readonly 'border-focus-inner'?: any;
|
|
613
|
-
readonly 'border-neutrals'?: any;
|
|
614
|
-
readonly 'border-neutrals-hover'?: any;
|
|
615
|
-
readonly 'border-neutrals-active'?: any;
|
|
616
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
617
|
-
readonly 'border-neutrals-controls'?: any;
|
|
618
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
619
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
620
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
621
|
-
readonly 'border-primary'?: any;
|
|
622
|
-
readonly 'border-primary-hover'?: any;
|
|
623
|
-
readonly 'border-primary-active'?: any;
|
|
624
|
-
readonly 'border-primary-inverted'?: any;
|
|
625
|
-
readonly 'border-danger'?: any;
|
|
626
|
-
readonly 'border-success'?: any;
|
|
627
|
-
readonly 'border-warning'?: any;
|
|
628
|
-
};
|
|
629
|
-
'font-sizes': {
|
|
630
|
-
readonly 150: "0.75rem";
|
|
631
|
-
readonly 175: "0.875rem";
|
|
632
|
-
readonly 200: "1rem";
|
|
633
|
-
readonly 225: "1.125rem";
|
|
634
|
-
readonly 250: "1.25rem";
|
|
635
|
-
readonly 300: "1.5rem";
|
|
636
|
-
readonly 400: "2rem";
|
|
637
|
-
readonly 500: "2.5rem";
|
|
638
|
-
readonly 600: "3rem";
|
|
639
|
-
readonly 800: "4rem";
|
|
640
|
-
readonly 900: "4.5rem";
|
|
641
|
-
};
|
|
642
|
-
radii: {
|
|
643
|
-
readonly none: 0;
|
|
644
|
-
readonly half: "999em";
|
|
645
|
-
readonly 25: "2px";
|
|
646
|
-
readonly 50: "4px";
|
|
647
|
-
readonly 75: "6px";
|
|
648
|
-
readonly 100: "8px";
|
|
649
|
-
readonly 200: "16px";
|
|
650
|
-
};
|
|
651
|
-
shadows: {
|
|
652
|
-
readonly 50: "0 4px 16px #05003812";
|
|
653
|
-
readonly 100: "0 8px 32px #05003808";
|
|
654
|
-
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";
|
|
655
|
-
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";
|
|
656
|
-
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";
|
|
657
|
-
};
|
|
658
|
-
sizes: {
|
|
659
|
-
readonly number: string;
|
|
660
|
-
readonly 'icon-200': "16px";
|
|
661
|
-
readonly 'icon-300': "24px";
|
|
662
|
-
readonly 'icon-400': "32px";
|
|
663
|
-
};
|
|
664
|
-
space: {
|
|
665
|
-
readonly none: 0;
|
|
666
|
-
readonly 50: "4px";
|
|
667
|
-
readonly 100: "8px";
|
|
668
|
-
readonly 150: "12px";
|
|
669
|
-
readonly 200: "16px";
|
|
670
|
-
readonly 300: "24px";
|
|
671
|
-
readonly 400: "32px";
|
|
672
|
-
readonly 500: "64px";
|
|
673
|
-
readonly 600: "48px";
|
|
674
|
-
readonly 800: "64px";
|
|
675
|
-
readonly 1200: "96px";
|
|
676
|
-
readonly 1600: "128px";
|
|
677
|
-
};
|
|
678
|
-
'space-gap': {
|
|
679
|
-
readonly none: any;
|
|
680
|
-
readonly 50: any;
|
|
681
|
-
readonly 100: any;
|
|
682
|
-
readonly 200: any;
|
|
683
|
-
readonly 300: any;
|
|
684
|
-
};
|
|
685
|
-
'space-inset': {
|
|
686
|
-
readonly none: any;
|
|
687
|
-
readonly 50: any;
|
|
688
|
-
readonly 100: any;
|
|
689
|
-
readonly 150: any;
|
|
690
|
-
readonly 200: any;
|
|
691
|
-
readonly 300: any;
|
|
692
|
-
readonly 400: any;
|
|
693
|
-
readonly 600: any;
|
|
694
|
-
readonly 800: any;
|
|
695
|
-
readonly 1200: any;
|
|
696
|
-
readonly 1600: any;
|
|
697
|
-
};
|
|
698
|
-
'space-offset': {
|
|
699
|
-
readonly none: any;
|
|
700
|
-
readonly 50: any;
|
|
701
|
-
readonly 100: any;
|
|
702
|
-
readonly 150: any;
|
|
703
|
-
readonly 200: any;
|
|
704
|
-
readonly 300: any;
|
|
705
|
-
readonly 400: any;
|
|
706
|
-
readonly 600: any;
|
|
707
|
-
readonly 800: any;
|
|
708
|
-
readonly 1200: any;
|
|
709
|
-
readonly 1600: any;
|
|
710
|
-
readonly 'stacking-none': any;
|
|
711
|
-
readonly 'stacking-100': any;
|
|
712
|
-
readonly 'stacking-200': any;
|
|
713
|
-
readonly 'stacking-300': any;
|
|
714
|
-
readonly 'stacking-400': any;
|
|
715
|
-
readonly 'stacking-500': any;
|
|
716
|
-
readonly 'stacking-800': any;
|
|
717
|
-
};
|
|
718
|
-
'z-indices': {
|
|
719
|
-
readonly dropdownMenu: 100;
|
|
720
|
-
readonly popover: 200;
|
|
721
|
-
readonly tooltip: 300;
|
|
722
|
-
};
|
|
723
|
-
}, {
|
|
724
|
-
readonly background: "colors";
|
|
725
|
-
readonly backgroundColor: "colors";
|
|
726
|
-
readonly backgroundImage: "colors";
|
|
727
|
-
readonly blockSize: "sizes";
|
|
728
|
-
readonly border: "colors";
|
|
729
|
-
readonly borderBlock: "colors";
|
|
730
|
-
readonly borderBlockEnd: "colors";
|
|
731
|
-
readonly borderBlockStart: "colors";
|
|
732
|
-
readonly borderBottom: "colors";
|
|
733
|
-
readonly borderBottomColor: "colors";
|
|
734
|
-
readonly borderBottomLeftRadius: "radii";
|
|
735
|
-
readonly borderBottomRightRadius: "radii";
|
|
736
|
-
readonly borderBottomStyle: "border-styles";
|
|
737
|
-
readonly borderBottomWidth: "border-widths";
|
|
738
|
-
readonly borderColor: "colors";
|
|
739
|
-
readonly borderImage: "colors";
|
|
740
|
-
readonly borderInline: "colors";
|
|
741
|
-
readonly borderInlineEnd: "colors";
|
|
742
|
-
readonly borderInlineStart: "colors";
|
|
743
|
-
readonly borderLeft: "colors";
|
|
744
|
-
readonly borderLeftColor: "colors";
|
|
745
|
-
readonly borderLeftStyle: "border-styles";
|
|
746
|
-
readonly borderLeftWidth: "border-widths";
|
|
747
|
-
readonly borderRadius: "radii";
|
|
748
|
-
readonly borderRight: "colors";
|
|
749
|
-
readonly borderRightColor: "colors";
|
|
750
|
-
readonly borderRightStyle: "border-styles";
|
|
751
|
-
readonly borderRightWidth: "border-widths";
|
|
752
|
-
readonly borderStyle: "border-styles";
|
|
753
|
-
readonly borderTop: "colors";
|
|
754
|
-
readonly borderTopColor: "colors";
|
|
755
|
-
readonly borderTopLeftRadius: "radii";
|
|
756
|
-
readonly borderTopRightRadius: "radii";
|
|
757
|
-
readonly borderTopStyle: "border-styles";
|
|
758
|
-
readonly borderTopWidth: "border-widths";
|
|
759
|
-
readonly borderWidth: "border-widths";
|
|
760
|
-
readonly bottom: "space";
|
|
761
|
-
readonly boxShadow: "shadows";
|
|
762
|
-
readonly caretColor: "colors";
|
|
763
|
-
readonly color: "colors";
|
|
764
|
-
readonly columnGap: "space-gap";
|
|
765
|
-
readonly columnRuleColor: "colors";
|
|
766
|
-
readonly fill: "colors";
|
|
767
|
-
readonly flexBasis: "sizes";
|
|
768
|
-
readonly fontFamily: "fonts";
|
|
769
|
-
readonly fontSize: "font-sizes";
|
|
770
|
-
readonly fontWeight: "font-weights";
|
|
771
|
-
readonly gap: "space-gap";
|
|
772
|
-
readonly gridColumnGap: "space-gap";
|
|
773
|
-
readonly gridGap: "space-gap";
|
|
774
|
-
readonly gridRowGap: "space-gap";
|
|
775
|
-
readonly gridTemplateColumns: "sizes";
|
|
776
|
-
readonly gridTemplateRows: "sizes";
|
|
777
|
-
readonly height: "sizes";
|
|
778
|
-
readonly inlineSize: "sizes";
|
|
779
|
-
readonly inset: "space-inset";
|
|
780
|
-
readonly insetBlock: "space-inset";
|
|
781
|
-
readonly insetBlockEnd: "space-inset";
|
|
782
|
-
readonly insetBlockStart: "space-inset";
|
|
783
|
-
readonly insetInline: "space-inset";
|
|
784
|
-
readonly insetInlineEnd: "space-inset";
|
|
785
|
-
readonly insetInlineStart: "space-inset";
|
|
786
|
-
readonly left: "space";
|
|
787
|
-
readonly letterSpacing: "letter-spacings";
|
|
788
|
-
readonly lineHeight: "line-heights";
|
|
789
|
-
readonly margin: "space-offset";
|
|
790
|
-
readonly marginBlock: "space-offset";
|
|
791
|
-
readonly marginBlockEnd: "space-offset";
|
|
792
|
-
readonly marginBlockStart: "space-offset";
|
|
793
|
-
readonly marginBottom: "space-offset";
|
|
794
|
-
readonly marginInline: "space-offset";
|
|
795
|
-
readonly marginInlineEnd: "space-offset";
|
|
796
|
-
readonly marginInlineStart: "space-offset";
|
|
797
|
-
readonly marginLeft: "space-offset";
|
|
798
|
-
readonly marginRight: "space-offset";
|
|
799
|
-
readonly marginTop: "space-offset";
|
|
800
|
-
readonly maxBlockSize: "sizes";
|
|
801
|
-
readonly maxHeight: "sizes";
|
|
802
|
-
readonly maxInlineSize: "sizes";
|
|
803
|
-
readonly maxWidth: "sizes";
|
|
804
|
-
readonly minBlockSize: "sizes";
|
|
805
|
-
readonly minHeight: "sizes";
|
|
806
|
-
readonly minInlineSize: "sizes";
|
|
807
|
-
readonly minWidth: "sizes";
|
|
808
|
-
readonly outline: "colors";
|
|
809
|
-
readonly outlineColor: "colors";
|
|
810
|
-
readonly padding: "space-inset";
|
|
811
|
-
readonly paddingBlock: "space-inset";
|
|
812
|
-
readonly paddingBlockEnd: "space-inset";
|
|
813
|
-
readonly paddingBlockStart: "space-inset";
|
|
814
|
-
readonly paddingBottom: "space-inset";
|
|
815
|
-
readonly paddingInline: "space-inset";
|
|
816
|
-
readonly paddingInlineEnd: "space-inset";
|
|
817
|
-
readonly paddingInlineStart: "space-inset";
|
|
818
|
-
readonly paddingLeft: "space-inset";
|
|
819
|
-
readonly paddingRight: "space-inset";
|
|
820
|
-
readonly paddingTop: "space-inset";
|
|
821
|
-
readonly right: "space";
|
|
822
|
-
readonly rowGap: "space-gap";
|
|
823
|
-
readonly scrollMargin: "space-offset";
|
|
824
|
-
readonly scrollMarginBlock: "space-offset";
|
|
825
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
826
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
827
|
-
readonly scrollMarginBottom: "space-offset";
|
|
828
|
-
readonly scrollMarginInline: "space-offset";
|
|
829
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
830
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
831
|
-
readonly scrollMarginLeft: "space-offset";
|
|
832
|
-
readonly scrollMarginRight: "space-offset";
|
|
833
|
-
readonly scrollMarginTop: "space-offset";
|
|
834
|
-
readonly scrollPadding: "space-inset";
|
|
835
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
836
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
837
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
838
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
839
|
-
readonly scrollPaddingInline: "space-inset";
|
|
840
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
841
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
842
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
843
|
-
readonly scrollPaddingRight: "space-inset";
|
|
844
|
-
readonly scrollPaddingTop: "space-inset";
|
|
845
|
-
readonly stroke: "colors";
|
|
846
|
-
readonly textDecorationColor: "colors";
|
|
847
|
-
readonly textShadow: "shadows";
|
|
848
|
-
readonly top: "space";
|
|
849
|
-
readonly transition: "transitions";
|
|
850
|
-
readonly width: "sizes";
|
|
851
|
-
readonly zIndex: "z-indices";
|
|
852
|
-
}, {
|
|
853
|
-
paddingX: (value: {
|
|
854
|
-
readonly [$$PropertyValue]: "padding";
|
|
855
|
-
}) => {
|
|
856
|
-
paddingLeft: {
|
|
857
|
-
readonly [$$PropertyValue]: "padding";
|
|
486
|
+
}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<Pick<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof react.HTMLAttributes<HTMLDivElement>> & {
|
|
487
|
+
ref?: ((instance: HTMLDivElement | null) => void) | react.RefObject<HTMLDivElement> | null | undefined;
|
|
488
|
+
} & {
|
|
489
|
+
asChild?: boolean | undefined;
|
|
490
|
+
}, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
491
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
492
|
+
'border-widths': {
|
|
493
|
+
readonly none: 0;
|
|
494
|
+
readonly sm: "1px";
|
|
495
|
+
readonly md: "2px";
|
|
496
|
+
readonly lg: "4px";
|
|
858
497
|
};
|
|
859
|
-
|
|
860
|
-
readonly
|
|
498
|
+
colors: {
|
|
499
|
+
readonly 'blue-100': any;
|
|
500
|
+
readonly 'blue-200': any;
|
|
501
|
+
readonly 'blue-300': any;
|
|
502
|
+
readonly 'blue-400': any;
|
|
503
|
+
readonly 'blue-500': any;
|
|
504
|
+
readonly 'blue-600': any;
|
|
505
|
+
readonly 'blue-700': any;
|
|
506
|
+
readonly 'blue-800': any;
|
|
507
|
+
readonly 'blue-900': any;
|
|
508
|
+
readonly 'blue-1000': any;
|
|
509
|
+
readonly 'gray-100': any;
|
|
510
|
+
readonly 'gray-200': any;
|
|
511
|
+
readonly 'gray-300': any;
|
|
512
|
+
readonly 'gray-400': any;
|
|
513
|
+
readonly 'gray-500': any;
|
|
514
|
+
readonly 'gray-600': any;
|
|
515
|
+
readonly 'gray-700': any;
|
|
516
|
+
readonly 'gray-800': any;
|
|
517
|
+
readonly 'gray-900': any;
|
|
518
|
+
readonly 'indigo-100': any;
|
|
519
|
+
readonly 'indigo-200': any;
|
|
520
|
+
readonly 'indigo-300': any;
|
|
521
|
+
readonly 'indigo-400': any;
|
|
522
|
+
readonly 'indigo-500': any;
|
|
523
|
+
readonly 'indigo-600': any;
|
|
524
|
+
readonly 'indigo-700': any;
|
|
525
|
+
readonly 'indigo-800': any;
|
|
526
|
+
readonly 'indigo-900': any;
|
|
527
|
+
readonly 'red-100': any;
|
|
528
|
+
readonly 'red-200': any;
|
|
529
|
+
readonly 'red-300': any;
|
|
530
|
+
readonly 'red-400': any;
|
|
531
|
+
readonly 'red-500': any;
|
|
532
|
+
readonly 'red-600': any;
|
|
533
|
+
readonly 'red-700': any;
|
|
534
|
+
readonly 'red-800': any;
|
|
535
|
+
readonly 'red-900': any;
|
|
536
|
+
readonly 'yellow-100': any;
|
|
537
|
+
readonly 'yellow-200': any;
|
|
538
|
+
readonly 'yellow-300': any;
|
|
539
|
+
readonly 'yellow-400': any;
|
|
540
|
+
readonly 'yellow-500': any;
|
|
541
|
+
readonly 'yellow-600': any;
|
|
542
|
+
readonly 'yellow-700': any;
|
|
543
|
+
readonly 'yellow-800': any;
|
|
544
|
+
readonly 'yellow-900': any;
|
|
545
|
+
readonly 'green-100': any;
|
|
546
|
+
readonly 'green-200': any;
|
|
547
|
+
readonly 'green-300': any;
|
|
548
|
+
readonly 'green-400': any;
|
|
549
|
+
readonly 'green-500': any;
|
|
550
|
+
readonly 'green-600': any;
|
|
551
|
+
readonly 'green-700': any;
|
|
552
|
+
readonly 'green-800': any;
|
|
553
|
+
readonly 'green-900': any;
|
|
554
|
+
readonly black: any;
|
|
555
|
+
readonly white: any;
|
|
556
|
+
readonly transparent: any;
|
|
557
|
+
readonly 'background-neutrals'?: any;
|
|
558
|
+
readonly 'background-neutrals-body'?: any;
|
|
559
|
+
readonly 'background-neutrals-container'?: any;
|
|
560
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
561
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
562
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
563
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
564
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
565
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
566
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
567
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
568
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
569
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
570
|
+
readonly 'background-primary-prominent'?: any;
|
|
571
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
572
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
573
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
574
|
+
readonly 'background-primary-subtle'?: any;
|
|
575
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
576
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
577
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
578
|
+
readonly 'background-danger-prominent'?: any;
|
|
579
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
580
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
581
|
+
readonly 'background-danger'?: any;
|
|
582
|
+
readonly 'background-danger-hover'?: any;
|
|
583
|
+
readonly 'background-success'?: any;
|
|
584
|
+
readonly 'background-warning-subtle'?: any;
|
|
585
|
+
readonly 'background-warning-prominent'?: any;
|
|
586
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
587
|
+
readonly 'text-neutrals'?: any;
|
|
588
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
589
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
590
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
591
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
592
|
+
readonly 'text-primary-inverted'?: any;
|
|
593
|
+
readonly 'text-primary'?: any;
|
|
594
|
+
readonly 'text-primary-hover'?: any;
|
|
595
|
+
readonly 'text-primary-active'?: any;
|
|
596
|
+
readonly 'text-primary-selected'?: any;
|
|
597
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
598
|
+
readonly 'text-danger-inverted'?: any;
|
|
599
|
+
readonly 'text-danger'?: any;
|
|
600
|
+
readonly 'text-danger-hover'?: any;
|
|
601
|
+
readonly 'text-danger-active'?: any;
|
|
602
|
+
readonly 'text-success'?: any;
|
|
603
|
+
readonly 'text-warning'?: any;
|
|
604
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
605
|
+
readonly 'icon-neutrals'?: any;
|
|
606
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
607
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
608
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
609
|
+
readonly 'icon-neutrals-search'?: any;
|
|
610
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
611
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
612
|
+
readonly 'icon-primary-inverted'?: any;
|
|
613
|
+
readonly 'icon-primary'?: any;
|
|
614
|
+
readonly 'icon-primary-hover'?: any;
|
|
615
|
+
readonly 'icon-primary-active'?: any;
|
|
616
|
+
readonly 'icon-primary-selected'?: any;
|
|
617
|
+
readonly 'icon-danger-inverted'?: any;
|
|
618
|
+
readonly 'icon-danger'?: any;
|
|
619
|
+
readonly 'icon-danger-hover'?: any;
|
|
620
|
+
readonly 'icon-danger-active'?: any;
|
|
621
|
+
readonly 'icon-success-inverted'?: any;
|
|
622
|
+
readonly 'icon-success'?: any;
|
|
623
|
+
readonly 'icon-warning'?: any;
|
|
624
|
+
readonly 'border-focus-outer'?: any;
|
|
625
|
+
readonly 'border-focus-middle'?: any;
|
|
626
|
+
readonly 'border-focus-inner'?: any;
|
|
627
|
+
readonly 'border-neutrals'?: any;
|
|
628
|
+
readonly 'border-neutrals-hover'?: any;
|
|
629
|
+
readonly 'border-neutrals-active'?: any;
|
|
630
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
631
|
+
readonly 'border-neutrals-controls'?: any;
|
|
632
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
633
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
634
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
635
|
+
readonly 'border-primary'?: any;
|
|
636
|
+
readonly 'border-primary-hover'?: any;
|
|
637
|
+
readonly 'border-primary-active'?: any;
|
|
638
|
+
readonly 'border-primary-inverted'?: any;
|
|
639
|
+
readonly 'border-danger'?: any;
|
|
640
|
+
readonly 'border-success'?: any;
|
|
641
|
+
readonly 'border-warning'?: any;
|
|
861
642
|
};
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
readonly
|
|
643
|
+
'font-sizes': {
|
|
644
|
+
readonly 150: "0.75rem";
|
|
645
|
+
readonly 175: "0.875rem";
|
|
646
|
+
readonly 200: "1rem";
|
|
647
|
+
readonly 225: "1.125rem";
|
|
648
|
+
readonly 250: "1.25rem";
|
|
649
|
+
readonly 300: "1.5rem";
|
|
650
|
+
readonly 400: "2rem";
|
|
651
|
+
readonly 500: "2.5rem";
|
|
652
|
+
readonly 600: "3rem";
|
|
653
|
+
readonly 800: "4rem";
|
|
654
|
+
readonly 900: "4.5rem";
|
|
868
655
|
};
|
|
869
|
-
|
|
870
|
-
readonly
|
|
656
|
+
radii: {
|
|
657
|
+
readonly none: 0;
|
|
658
|
+
readonly half: "999em";
|
|
659
|
+
readonly 25: "2px";
|
|
660
|
+
readonly 50: "4px";
|
|
661
|
+
readonly 75: "6px";
|
|
662
|
+
readonly 100: "8px";
|
|
663
|
+
readonly 200: "16px";
|
|
871
664
|
};
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
readonly
|
|
665
|
+
shadows: {
|
|
666
|
+
readonly 50: "0 4px 16px #05003812";
|
|
667
|
+
readonly 100: "0 8px 32px #05003808";
|
|
668
|
+
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";
|
|
669
|
+
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";
|
|
670
|
+
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";
|
|
671
|
+
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";
|
|
878
672
|
};
|
|
879
|
-
|
|
880
|
-
readonly
|
|
673
|
+
sizes: {
|
|
674
|
+
readonly number: string;
|
|
675
|
+
readonly 'icon-200': "16px";
|
|
676
|
+
readonly 'icon-300': "24px";
|
|
677
|
+
readonly 'icon-400': "32px";
|
|
881
678
|
};
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
readonly
|
|
679
|
+
space: {
|
|
680
|
+
readonly none: 0;
|
|
681
|
+
readonly 50: "4px";
|
|
682
|
+
readonly 100: "8px";
|
|
683
|
+
readonly 150: "12px";
|
|
684
|
+
readonly 200: "16px";
|
|
685
|
+
readonly 300: "24px";
|
|
686
|
+
readonly 400: "32px";
|
|
687
|
+
readonly 500: "64px";
|
|
688
|
+
readonly 600: "48px";
|
|
689
|
+
readonly 800: "64px";
|
|
690
|
+
readonly 1200: "96px";
|
|
691
|
+
readonly 1600: "128px";
|
|
692
|
+
};
|
|
693
|
+
'space-gap': {
|
|
694
|
+
readonly none: any;
|
|
695
|
+
readonly 50: any;
|
|
696
|
+
readonly 100: any;
|
|
697
|
+
readonly 200: any;
|
|
698
|
+
readonly 300: any;
|
|
888
699
|
};
|
|
889
|
-
|
|
700
|
+
'space-inset': {
|
|
701
|
+
readonly none: any;
|
|
702
|
+
readonly 50: any;
|
|
703
|
+
readonly 100: any;
|
|
704
|
+
readonly 150: any;
|
|
705
|
+
readonly 200: any;
|
|
706
|
+
readonly 300: any;
|
|
707
|
+
readonly 400: any;
|
|
708
|
+
readonly 600: any;
|
|
709
|
+
readonly 800: any;
|
|
710
|
+
readonly 1200: any;
|
|
711
|
+
readonly 1600: any;
|
|
712
|
+
};
|
|
713
|
+
'space-offset': {
|
|
714
|
+
readonly none: any;
|
|
715
|
+
readonly 50: any;
|
|
716
|
+
readonly 100: any;
|
|
717
|
+
readonly 150: any;
|
|
718
|
+
readonly 200: any;
|
|
719
|
+
readonly 300: any;
|
|
720
|
+
readonly 400: any;
|
|
721
|
+
readonly 600: any;
|
|
722
|
+
readonly 800: any;
|
|
723
|
+
readonly 1200: any;
|
|
724
|
+
readonly 1600: any;
|
|
725
|
+
readonly 'stacking-none': any;
|
|
726
|
+
readonly 'stacking-100': any;
|
|
727
|
+
readonly 'stacking-200': any;
|
|
728
|
+
readonly 'stacking-300': any;
|
|
729
|
+
readonly 'stacking-400': any;
|
|
730
|
+
readonly 'stacking-500': any;
|
|
731
|
+
readonly 'stacking-800': any;
|
|
732
|
+
};
|
|
733
|
+
'z-indices': {
|
|
734
|
+
readonly dropdownMenu: 100;
|
|
735
|
+
readonly popover: 200;
|
|
736
|
+
readonly tooltip: 300;
|
|
737
|
+
};
|
|
738
|
+
}, {
|
|
739
|
+
readonly background: "colors";
|
|
740
|
+
readonly backgroundColor: "colors";
|
|
741
|
+
readonly backgroundImage: "colors";
|
|
742
|
+
readonly blockSize: "sizes";
|
|
743
|
+
readonly border: "colors";
|
|
744
|
+
readonly borderBlock: "colors";
|
|
745
|
+
readonly borderBlockEnd: "colors";
|
|
746
|
+
readonly borderBlockStart: "colors";
|
|
747
|
+
readonly borderBottom: "colors";
|
|
748
|
+
readonly borderBottomColor: "colors";
|
|
749
|
+
readonly borderBottomLeftRadius: "radii";
|
|
750
|
+
readonly borderBottomRightRadius: "radii";
|
|
751
|
+
readonly borderBottomStyle: "border-styles";
|
|
752
|
+
readonly borderBottomWidth: "border-widths";
|
|
753
|
+
readonly borderColor: "colors";
|
|
754
|
+
readonly borderImage: "colors";
|
|
755
|
+
readonly borderInline: "colors";
|
|
756
|
+
readonly borderInlineEnd: "colors";
|
|
757
|
+
readonly borderInlineStart: "colors";
|
|
758
|
+
readonly borderLeft: "colors";
|
|
759
|
+
readonly borderLeftColor: "colors";
|
|
760
|
+
readonly borderLeftStyle: "border-styles";
|
|
761
|
+
readonly borderLeftWidth: "border-widths";
|
|
762
|
+
readonly borderRadius: "radii";
|
|
763
|
+
readonly borderRight: "colors";
|
|
764
|
+
readonly borderRightColor: "colors";
|
|
765
|
+
readonly borderRightStyle: "border-styles";
|
|
766
|
+
readonly borderRightWidth: "border-widths";
|
|
767
|
+
readonly borderStyle: "border-styles";
|
|
768
|
+
readonly borderTop: "colors";
|
|
769
|
+
readonly borderTopColor: "colors";
|
|
770
|
+
readonly borderTopLeftRadius: "radii";
|
|
771
|
+
readonly borderTopRightRadius: "radii";
|
|
772
|
+
readonly borderTopStyle: "border-styles";
|
|
773
|
+
readonly borderTopWidth: "border-widths";
|
|
774
|
+
readonly borderWidth: "border-widths";
|
|
775
|
+
readonly bottom: "space";
|
|
776
|
+
readonly boxShadow: "shadows";
|
|
777
|
+
readonly caretColor: "colors";
|
|
778
|
+
readonly color: "colors";
|
|
779
|
+
readonly columnGap: "space-gap";
|
|
780
|
+
readonly columnRuleColor: "colors";
|
|
781
|
+
readonly fill: "colors";
|
|
782
|
+
readonly flexBasis: "sizes";
|
|
783
|
+
readonly fontFamily: "fonts";
|
|
784
|
+
readonly fontSize: "font-sizes";
|
|
785
|
+
readonly fontWeight: "font-weights";
|
|
786
|
+
readonly gap: "space-gap";
|
|
787
|
+
readonly gridColumnGap: "space-gap";
|
|
788
|
+
readonly gridGap: "space-gap";
|
|
789
|
+
readonly gridRowGap: "space-gap";
|
|
790
|
+
readonly gridTemplateColumns: "sizes";
|
|
791
|
+
readonly gridTemplateRows: "sizes";
|
|
792
|
+
readonly height: "sizes";
|
|
793
|
+
readonly inlineSize: "sizes";
|
|
794
|
+
readonly inset: "space-inset";
|
|
795
|
+
readonly insetBlock: "space-inset";
|
|
796
|
+
readonly insetBlockEnd: "space-inset";
|
|
797
|
+
readonly insetBlockStart: "space-inset";
|
|
798
|
+
readonly insetInline: "space-inset";
|
|
799
|
+
readonly insetInlineEnd: "space-inset";
|
|
800
|
+
readonly insetInlineStart: "space-inset";
|
|
801
|
+
readonly left: "space";
|
|
802
|
+
readonly letterSpacing: "letter-spacings";
|
|
803
|
+
readonly lineHeight: "line-heights";
|
|
804
|
+
readonly margin: "space-offset";
|
|
805
|
+
readonly marginBlock: "space-offset";
|
|
806
|
+
readonly marginBlockEnd: "space-offset";
|
|
807
|
+
readonly marginBlockStart: "space-offset";
|
|
808
|
+
readonly marginBottom: "space-offset";
|
|
809
|
+
readonly marginInline: "space-offset";
|
|
810
|
+
readonly marginInlineEnd: "space-offset";
|
|
811
|
+
readonly marginInlineStart: "space-offset";
|
|
812
|
+
readonly marginLeft: "space-offset";
|
|
813
|
+
readonly marginRight: "space-offset";
|
|
814
|
+
readonly marginTop: "space-offset";
|
|
815
|
+
readonly maxBlockSize: "sizes";
|
|
816
|
+
readonly maxHeight: "sizes";
|
|
817
|
+
readonly maxInlineSize: "sizes";
|
|
818
|
+
readonly maxWidth: "sizes";
|
|
819
|
+
readonly minBlockSize: "sizes";
|
|
820
|
+
readonly minHeight: "sizes";
|
|
821
|
+
readonly minInlineSize: "sizes";
|
|
822
|
+
readonly minWidth: "sizes";
|
|
823
|
+
readonly outline: "colors";
|
|
824
|
+
readonly outlineColor: "colors";
|
|
825
|
+
readonly padding: "space-inset";
|
|
826
|
+
readonly paddingBlock: "space-inset";
|
|
827
|
+
readonly paddingBlockEnd: "space-inset";
|
|
828
|
+
readonly paddingBlockStart: "space-inset";
|
|
829
|
+
readonly paddingBottom: "space-inset";
|
|
830
|
+
readonly paddingInline: "space-inset";
|
|
831
|
+
readonly paddingInlineEnd: "space-inset";
|
|
832
|
+
readonly paddingInlineStart: "space-inset";
|
|
833
|
+
readonly paddingLeft: "space-inset";
|
|
834
|
+
readonly paddingRight: "space-inset";
|
|
835
|
+
readonly paddingTop: "space-inset";
|
|
836
|
+
readonly right: "space";
|
|
837
|
+
readonly rowGap: "space-gap";
|
|
838
|
+
readonly scrollMargin: "space-offset";
|
|
839
|
+
readonly scrollMarginBlock: "space-offset";
|
|
840
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
841
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
842
|
+
readonly scrollMarginBottom: "space-offset";
|
|
843
|
+
readonly scrollMarginInline: "space-offset";
|
|
844
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
845
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
846
|
+
readonly scrollMarginLeft: "space-offset";
|
|
847
|
+
readonly scrollMarginRight: "space-offset";
|
|
848
|
+
readonly scrollMarginTop: "space-offset";
|
|
849
|
+
readonly scrollPadding: "space-inset";
|
|
850
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
851
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
852
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
853
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
854
|
+
readonly scrollPaddingInline: "space-inset";
|
|
855
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
856
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
857
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
858
|
+
readonly scrollPaddingRight: "space-inset";
|
|
859
|
+
readonly scrollPaddingTop: "space-inset";
|
|
860
|
+
readonly stroke: "colors";
|
|
861
|
+
readonly textDecorationColor: "colors";
|
|
862
|
+
readonly textShadow: "shadows";
|
|
863
|
+
readonly top: "space";
|
|
864
|
+
readonly transition: "transitions";
|
|
865
|
+
readonly width: "sizes";
|
|
866
|
+
readonly zIndex: "z-indices";
|
|
867
|
+
}, {
|
|
868
|
+
paddingX: (value: {
|
|
869
|
+
readonly [$$PropertyValue]: "padding";
|
|
870
|
+
}) => {
|
|
871
|
+
paddingLeft: {
|
|
872
|
+
readonly [$$PropertyValue]: "padding";
|
|
873
|
+
};
|
|
874
|
+
paddingRight: {
|
|
875
|
+
readonly [$$PropertyValue]: "padding";
|
|
876
|
+
};
|
|
877
|
+
};
|
|
878
|
+
paddingY: (value: {
|
|
879
|
+
readonly [$$PropertyValue]: "padding";
|
|
880
|
+
}) => {
|
|
881
|
+
paddingTop: {
|
|
882
|
+
readonly [$$PropertyValue]: "padding";
|
|
883
|
+
};
|
|
884
|
+
paddingBottom: {
|
|
885
|
+
readonly [$$PropertyValue]: "padding";
|
|
886
|
+
};
|
|
887
|
+
};
|
|
888
|
+
marginX: (value: {
|
|
890
889
|
readonly [$$PropertyValue]: "margin";
|
|
890
|
+
}) => {
|
|
891
|
+
marginLeft: {
|
|
892
|
+
readonly [$$PropertyValue]: "margin";
|
|
893
|
+
};
|
|
894
|
+
marginRight: {
|
|
895
|
+
readonly [$$PropertyValue]: "margin";
|
|
896
|
+
};
|
|
891
897
|
};
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
+
marginY: (value: {
|
|
899
|
+
readonly [$$PropertyValue]: "margin";
|
|
900
|
+
}) => {
|
|
901
|
+
marginTop: {
|
|
902
|
+
readonly [$$PropertyValue]: "margin";
|
|
903
|
+
};
|
|
904
|
+
marginBottom: {
|
|
905
|
+
readonly [$$PropertyValue]: "margin";
|
|
906
|
+
};
|
|
898
907
|
};
|
|
899
|
-
|
|
908
|
+
square: (value: {
|
|
900
909
|
readonly [$$PropertyValue]: "width";
|
|
910
|
+
}) => {
|
|
911
|
+
width: {
|
|
912
|
+
readonly [$$PropertyValue]: "width";
|
|
913
|
+
};
|
|
914
|
+
height: {
|
|
915
|
+
readonly [$$PropertyValue]: "width";
|
|
916
|
+
};
|
|
901
917
|
};
|
|
902
|
-
};
|
|
903
|
-
}
|
|
918
|
+
}> | undefined;
|
|
919
|
+
}> & {
|
|
920
|
+
children?: react.ReactNode;
|
|
921
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "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" | "children" | "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" | "asChild" | keyof _mirohq_design_system_stitches.CustomStylesProps | "columnStart" | "rowStart" | "columnEnd" | "rowEnd"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>, {
|
|
904
922
|
columnStart?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -1 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "-1" | undefined;
|
|
905
923
|
rowStart?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -1 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "-1" | undefined;
|
|
906
924
|
columnEnd?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -1 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "-1" | undefined;
|