@livepeer/design-system 0.0.0-beta.9 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +6 -2
  3. package/dist/components/Accordion.d.ts +1512 -0
  4. package/dist/components/Alert.d.ts +752 -0
  5. package/dist/components/AlertDialog.d.ts +9 -7
  6. package/dist/components/AppBar.d.ts +755 -0
  7. package/dist/components/Avatar.d.ts +2270 -0
  8. package/dist/components/Badge.d.ts +147 -385
  9. package/dist/components/Banner.d.ts +754 -1
  10. package/dist/components/Box.d.ts +749 -0
  11. package/dist/components/Button.d.ts +753 -1
  12. package/dist/components/Card.d.ts +147 -385
  13. package/dist/components/Checkbox.d.ts +761 -0
  14. package/dist/components/Code.d.ts +751 -0
  15. package/dist/components/Container.d.ts +148 -386
  16. package/dist/components/ContextMenu.d.ts +3766 -0
  17. package/dist/components/ControlGroup.d.ts +749 -0
  18. package/dist/components/DesignSystemProvider.d.ts +9 -0
  19. package/dist/components/Dialog.d.ts +9 -3
  20. package/dist/components/DropdownMenu.d.ts +6016 -3
  21. package/dist/components/Flex.d.ts +755 -0
  22. package/dist/components/Grid.d.ts +757 -0
  23. package/dist/components/Heading.d.ts +14 -0
  24. package/dist/components/IconButton.d.ts +753 -0
  25. package/dist/components/Image.d.ts +749 -0
  26. package/dist/components/Kbd.d.ts +752 -0
  27. package/dist/components/Label.d.ts +755 -1
  28. package/dist/components/Link.d.ts +148 -386
  29. package/dist/components/Menu.d.ts +10498 -0
  30. package/dist/components/Overlay.d.ts +1498 -0
  31. package/dist/components/Panel.d.ts +1498 -0
  32. package/dist/components/Paragraph.d.ts +14 -0
  33. package/dist/components/Popover.d.ts +13 -0
  34. package/dist/components/ProgressBar.d.ts +761 -0
  35. package/dist/components/Promo.d.ts +754 -1
  36. package/dist/components/Radio.d.ts +1510 -0
  37. package/dist/components/RadioCard.d.ts +149 -389
  38. package/dist/components/RadioGrid.d.ts +1500 -0
  39. package/dist/components/Scrollbar.d.ts +6 -0
  40. package/dist/components/Section.d.ts +751 -0
  41. package/dist/components/Select.d.ts +1504 -1
  42. package/dist/components/Separator.d.ts +753 -0
  43. package/dist/components/Sheet.d.ts +766 -0
  44. package/dist/components/SimpleToggle.d.ts +753 -0
  45. package/dist/components/Skeleton.d.ts +751 -0
  46. package/dist/components/Slider.d.ts +758 -0
  47. package/dist/components/Snackbar/SnackbarProvider.d.ts +2 -2
  48. package/dist/components/Snackbar/transitionStyles.d.ts +58 -58
  49. package/dist/components/Snackbar/useSnackbar.d.ts +1 -1
  50. package/dist/components/Status.d.ts +752 -0
  51. package/dist/components/Sub.d.ts +749 -0
  52. package/dist/components/Sup.d.ts +749 -0
  53. package/dist/components/Switch.d.ts +1509 -1
  54. package/dist/components/TabLink.d.ts +751 -0
  55. package/dist/components/Table.d.ts +1178 -3082
  56. package/dist/components/Tabs.d.ts +4500 -4
  57. package/dist/components/Text.d.ts +753 -1
  58. package/dist/components/TextArea.d.ts +753 -0
  59. package/dist/components/TextField.d.ts +754 -1
  60. package/dist/components/Tooltip.d.ts +10 -0
  61. package/dist/components/TreeItem.d.ts +751 -0
  62. package/dist/components/VerifiedBadge.d.ts +762 -0
  63. package/dist/custom/AppBar.d.ts +148 -386
  64. package/dist/custom/Avatars.d.ts +1 -0
  65. package/dist/custom/DarkThemeButton.d.ts +1 -0
  66. package/dist/custom/Kbds.d.ts +1 -0
  67. package/dist/custom/Snackbar.d.ts +1 -0
  68. package/dist/custom/Toolbar.d.ts +1 -0
  69. package/dist/index.d.ts +53 -20
  70. package/dist/index.es.js +3853 -1645
  71. package/dist/index.js +3884 -1891
  72. package/dist/stitches.config.d.ts +6320 -23
  73. package/package.json +61 -58
  74. package/dist/components/Accordian.d.ts +0 -4
@@ -0,0 +1,3766 @@
1
+ import React from "react";
2
+ import { CSS } from "../stitches.config";
3
+ import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
4
+ declare const ContextMenu: React.FC<ContextMenuPrimitive.ContextMenuProps>;
5
+ declare const ContextMenuTrigger: React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React.RefAttributes<HTMLSpanElement>>;
6
+ declare type ContextMenuContentPrimitiveProps = React.ComponentProps<typeof ContextMenuPrimitive.Content>;
7
+ declare type ContextMenuContentProps = ContextMenuContentPrimitiveProps & {
8
+ css?: CSS;
9
+ };
10
+ declare const ContextMenuContent: React.ForwardRefExoticComponent<Pick<ContextMenuContentProps, "color" | "translate" | "hidden" | "style" | "sticky" | "css" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "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" | "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" | "alignOffset" | "arrowPadding" | "collisionBoundary" | "collisionPadding" | "hideWhenDetached" | "avoidCollisions" | "onCloseAutoFocus" | "loop" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceMount"> & React.RefAttributes<HTMLDivElement>>;
11
+ declare const ContextMenuItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuItemProps & React.RefAttributes<HTMLDivElement>>, {}, {
12
+ bp1: "(min-width: 520px)";
13
+ bp2: "(min-width: 900px)";
14
+ bp3: "(min-width: 1200px)";
15
+ bp4: "(min-width: 1800px)";
16
+ motion: "(prefers-reduced-motion)";
17
+ hover: "(any-hover: hover)";
18
+ dark: "(prefers-color-scheme: dark)";
19
+ light: "(prefers-color-scheme: light)";
20
+ }, import("@stitches/react/types/css-util").CSS<{
21
+ bp1: "(min-width: 520px)";
22
+ bp2: "(min-width: 900px)";
23
+ bp3: "(min-width: 1200px)";
24
+ bp4: "(min-width: 1800px)";
25
+ motion: "(prefers-reduced-motion)";
26
+ hover: "(any-hover: hover)";
27
+ dark: "(prefers-color-scheme: dark)";
28
+ light: "(prefers-color-scheme: light)";
29
+ }, {
30
+ colors: {
31
+ hiContrast: string;
32
+ loContrast: string;
33
+ canvas: string;
34
+ panel: string;
35
+ transparentPanel: string;
36
+ shadowLight: string;
37
+ shadowDark: string;
38
+ blackA1: string;
39
+ blackA2: string;
40
+ blackA3: string;
41
+ blackA4: string;
42
+ blackA5: string;
43
+ blackA6: string;
44
+ blackA7: string;
45
+ blackA8: string;
46
+ blackA9: string;
47
+ blackA10: string;
48
+ blackA11: string;
49
+ blackA12: string;
50
+ whiteA1: string;
51
+ whiteA2: string;
52
+ whiteA3: string;
53
+ whiteA4: string;
54
+ whiteA5: string;
55
+ whiteA6: string;
56
+ whiteA7: string;
57
+ whiteA8: string;
58
+ whiteA9: string;
59
+ whiteA10: string;
60
+ whiteA11: string;
61
+ whiteA12: string;
62
+ gold1: string;
63
+ gold2: string;
64
+ gold3: string;
65
+ gold4: string;
66
+ gold5: string;
67
+ gold6: string;
68
+ gold7: string;
69
+ gold8: string;
70
+ gold9: string;
71
+ gold10: string;
72
+ gold11: string;
73
+ gold12: string;
74
+ bronze1: string;
75
+ bronze2: string;
76
+ bronze3: string;
77
+ bronze4: string;
78
+ bronze5: string;
79
+ bronze6: string;
80
+ bronze7: string;
81
+ bronze8: string;
82
+ bronze9: string;
83
+ bronze10: string;
84
+ bronze11: string;
85
+ bronze12: string;
86
+ brown1: string;
87
+ brown2: string;
88
+ brown3: string;
89
+ brown4: string;
90
+ brown5: string;
91
+ brown6: string;
92
+ brown7: string;
93
+ brown8: string;
94
+ brown9: string;
95
+ brown10: string;
96
+ brown11: string;
97
+ brown12: string;
98
+ orange1: string;
99
+ orange2: string;
100
+ orange3: string;
101
+ orange4: string;
102
+ orange5: string;
103
+ orange6: string;
104
+ orange7: string;
105
+ orange8: string;
106
+ orange9: string;
107
+ orange10: string;
108
+ orange11: string;
109
+ orange12: string;
110
+ amber1: string;
111
+ amber2: string;
112
+ amber3: string;
113
+ amber4: string;
114
+ amber5: string;
115
+ amber6: string;
116
+ amber7: string;
117
+ amber8: string;
118
+ amber9: string;
119
+ amber10: string;
120
+ amber11: string;
121
+ amber12: string;
122
+ yellow1: string;
123
+ yellow2: string;
124
+ yellow3: string;
125
+ yellow4: string;
126
+ yellow5: string;
127
+ yellow6: string;
128
+ yellow7: string;
129
+ yellow8: string;
130
+ yellow9: string;
131
+ yellow10: string;
132
+ yellow11: string;
133
+ yellow12: string;
134
+ lime1: string;
135
+ lime2: string;
136
+ lime3: string;
137
+ lime4: string;
138
+ lime5: string;
139
+ lime6: string;
140
+ lime7: string;
141
+ lime8: string;
142
+ lime9: string;
143
+ lime10: string;
144
+ lime11: string;
145
+ lime12: string;
146
+ grass1: string;
147
+ grass2: string;
148
+ grass3: string;
149
+ grass4: string;
150
+ grass5: string;
151
+ grass6: string;
152
+ grass7: string;
153
+ grass8: string;
154
+ grass9: string;
155
+ grass10: string;
156
+ grass11: string;
157
+ grass12: string;
158
+ green1: string;
159
+ green2: string;
160
+ green3: string;
161
+ green4: string;
162
+ green5: string;
163
+ green6: string;
164
+ green7: string;
165
+ green8: string;
166
+ green9: string;
167
+ green10: string;
168
+ green11: string;
169
+ green12: string;
170
+ teal1: string;
171
+ teal2: string;
172
+ teal3: string;
173
+ teal4: string;
174
+ teal5: string;
175
+ teal6: string;
176
+ teal7: string;
177
+ teal8: string;
178
+ teal9: string;
179
+ teal10: string;
180
+ teal11: string;
181
+ teal12: string;
182
+ cyan1: string;
183
+ cyan2: string;
184
+ cyan3: string;
185
+ cyan4: string;
186
+ cyan5: string;
187
+ cyan6: string;
188
+ cyan7: string;
189
+ cyan8: string;
190
+ cyan9: string;
191
+ cyan10: string;
192
+ cyan11: string;
193
+ cyan12: string;
194
+ mint1: string;
195
+ mint2: string;
196
+ mint3: string;
197
+ mint4: string;
198
+ mint5: string;
199
+ mint6: string;
200
+ mint7: string;
201
+ mint8: string;
202
+ mint9: string;
203
+ mint10: string;
204
+ mint11: string;
205
+ mint12: string;
206
+ sky1: string;
207
+ sky2: string;
208
+ sky3: string;
209
+ sky4: string;
210
+ sky5: string;
211
+ sky6: string;
212
+ sky7: string;
213
+ sky8: string;
214
+ sky9: string;
215
+ sky10: string;
216
+ sky11: string;
217
+ sky12: string;
218
+ blue1: string;
219
+ blue2: string;
220
+ blue3: string;
221
+ blue4: string;
222
+ blue5: string;
223
+ blue6: string;
224
+ blue7: string;
225
+ blue8: string;
226
+ blue9: string;
227
+ blue10: string;
228
+ blue11: string;
229
+ blue12: string;
230
+ indigo1: string;
231
+ indigo2: string;
232
+ indigo3: string;
233
+ indigo4: string;
234
+ indigo5: string;
235
+ indigo6: string;
236
+ indigo7: string;
237
+ indigo8: string;
238
+ indigo9: string;
239
+ indigo10: string;
240
+ indigo11: string;
241
+ indigo12: string;
242
+ violet1: string;
243
+ violet2: string;
244
+ violet3: string;
245
+ violet4: string;
246
+ violet5: string;
247
+ violet6: string;
248
+ violet7: string;
249
+ violet8: string;
250
+ violet9: string;
251
+ violet10: string;
252
+ violet11: string;
253
+ violet12: string;
254
+ purple1: string;
255
+ purple2: string;
256
+ purple3: string;
257
+ purple4: string;
258
+ purple5: string;
259
+ purple6: string;
260
+ purple7: string;
261
+ purple8: string;
262
+ purple9: string;
263
+ purple10: string;
264
+ purple11: string;
265
+ purple12: string;
266
+ plum1: string;
267
+ plum2: string;
268
+ plum3: string;
269
+ plum4: string;
270
+ plum5: string;
271
+ plum6: string;
272
+ plum7: string;
273
+ plum8: string;
274
+ plum9: string;
275
+ plum10: string;
276
+ plum11: string;
277
+ plum12: string;
278
+ pink1: string;
279
+ pink2: string;
280
+ pink3: string;
281
+ pink4: string;
282
+ pink5: string;
283
+ pink6: string;
284
+ pink7: string;
285
+ pink8: string;
286
+ pink9: string;
287
+ pink10: string;
288
+ pink11: string;
289
+ pink12: string;
290
+ crimson1: string;
291
+ crimson2: string;
292
+ crimson3: string;
293
+ crimson4: string;
294
+ crimson5: string;
295
+ crimson6: string;
296
+ crimson7: string;
297
+ crimson8: string;
298
+ crimson9: string;
299
+ crimson10: string;
300
+ crimson11: string;
301
+ crimson12: string;
302
+ red1: string;
303
+ red2: string;
304
+ red3: string;
305
+ red4: string;
306
+ red5: string;
307
+ red6: string;
308
+ red7: string;
309
+ red8: string;
310
+ red9: string;
311
+ red10: string;
312
+ red11: string;
313
+ red12: string;
314
+ tomato1: string;
315
+ tomato2: string;
316
+ tomato3: string;
317
+ tomato4: string;
318
+ tomato5: string;
319
+ tomato6: string;
320
+ tomato7: string;
321
+ tomato8: string;
322
+ tomato9: string;
323
+ tomato10: string;
324
+ tomato11: string;
325
+ tomato12: string;
326
+ sand1: string;
327
+ sand2: string;
328
+ sand3: string;
329
+ sand4: string;
330
+ sand5: string;
331
+ sand6: string;
332
+ sand7: string;
333
+ sand8: string;
334
+ sand9: string;
335
+ sand10: string;
336
+ sand11: string;
337
+ sand12: string;
338
+ olive1: string;
339
+ olive2: string;
340
+ olive3: string;
341
+ olive4: string;
342
+ olive5: string;
343
+ olive6: string;
344
+ olive7: string;
345
+ olive8: string;
346
+ olive9: string;
347
+ olive10: string;
348
+ olive11: string;
349
+ olive12: string;
350
+ sage1: string;
351
+ sage2: string;
352
+ sage3: string;
353
+ sage4: string;
354
+ sage5: string;
355
+ sage6: string;
356
+ sage7: string;
357
+ sage8: string;
358
+ sage9: string;
359
+ sage10: string;
360
+ sage11: string;
361
+ sage12: string;
362
+ slate1: string;
363
+ slate2: string;
364
+ slate3: string;
365
+ slate4: string;
366
+ slate5: string;
367
+ slate6: string;
368
+ slate7: string;
369
+ slate8: string;
370
+ slate9: string;
371
+ slate10: string;
372
+ slate11: string;
373
+ slate12: string;
374
+ mauve1: string;
375
+ mauve2: string;
376
+ mauve3: string;
377
+ mauve4: string;
378
+ mauve5: string;
379
+ mauve6: string;
380
+ mauve7: string;
381
+ mauve8: string;
382
+ mauve9: string;
383
+ mauve10: string;
384
+ mauve11: string;
385
+ mauve12: string;
386
+ gray1: string;
387
+ gray2: string;
388
+ gray3: string;
389
+ gray4: string;
390
+ gray5: string;
391
+ gray6: string;
392
+ gray7: string;
393
+ gray8: string;
394
+ gray9: string;
395
+ gray10: string;
396
+ gray11: string;
397
+ gray12: string;
398
+ };
399
+ fonts: {
400
+ untitled: string;
401
+ mono: string;
402
+ };
403
+ space: {
404
+ 1: string;
405
+ 2: string;
406
+ 3: string;
407
+ 4: string;
408
+ 5: string;
409
+ 6: string;
410
+ 7: string;
411
+ 8: string;
412
+ 9: string;
413
+ };
414
+ sizes: {
415
+ 1: string;
416
+ 2: string;
417
+ 3: string;
418
+ 4: string;
419
+ 5: string;
420
+ 6: string;
421
+ 7: string;
422
+ 8: string;
423
+ 9: string;
424
+ };
425
+ fontSizes: {
426
+ 1: string;
427
+ 2: string;
428
+ 3: string;
429
+ 4: string;
430
+ 5: string;
431
+ 6: string;
432
+ 7: string;
433
+ 8: string;
434
+ 9: string;
435
+ };
436
+ radii: {
437
+ 1: string;
438
+ 2: string;
439
+ 3: string;
440
+ 4: string;
441
+ round: string;
442
+ pill: string;
443
+ };
444
+ zIndices: {
445
+ 1: string;
446
+ 2: string;
447
+ 3: string;
448
+ 4: string;
449
+ max: string;
450
+ };
451
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
452
+ p: (value: {
453
+ readonly [$$PropertyValue]: "padding";
454
+ }) => {
455
+ padding: {
456
+ readonly [$$PropertyValue]: "padding";
457
+ };
458
+ };
459
+ pt: (value: {
460
+ readonly [$$PropertyValue]: "paddingTop";
461
+ }) => {
462
+ paddingTop: {
463
+ readonly [$$PropertyValue]: "paddingTop";
464
+ };
465
+ };
466
+ pr: (value: {
467
+ readonly [$$PropertyValue]: "paddingRight";
468
+ }) => {
469
+ paddingRight: {
470
+ readonly [$$PropertyValue]: "paddingRight";
471
+ };
472
+ };
473
+ pb: (value: {
474
+ readonly [$$PropertyValue]: "paddingBottom";
475
+ }) => {
476
+ paddingBottom: {
477
+ readonly [$$PropertyValue]: "paddingBottom";
478
+ };
479
+ };
480
+ pl: (value: {
481
+ readonly [$$PropertyValue]: "paddingLeft";
482
+ }) => {
483
+ paddingLeft: {
484
+ readonly [$$PropertyValue]: "paddingLeft";
485
+ };
486
+ };
487
+ px: (value: {
488
+ readonly [$$PropertyValue]: "paddingLeft";
489
+ }) => {
490
+ paddingLeft: {
491
+ readonly [$$PropertyValue]: "paddingLeft";
492
+ };
493
+ paddingRight: {
494
+ readonly [$$PropertyValue]: "paddingLeft";
495
+ };
496
+ };
497
+ py: (value: {
498
+ readonly [$$PropertyValue]: "paddingTop";
499
+ }) => {
500
+ paddingTop: {
501
+ readonly [$$PropertyValue]: "paddingTop";
502
+ };
503
+ paddingBottom: {
504
+ readonly [$$PropertyValue]: "paddingTop";
505
+ };
506
+ };
507
+ m: (value: {
508
+ readonly [$$PropertyValue]: "margin";
509
+ }) => {
510
+ margin: {
511
+ readonly [$$PropertyValue]: "margin";
512
+ };
513
+ };
514
+ mt: (value: {
515
+ readonly [$$PropertyValue]: "marginTop";
516
+ }) => {
517
+ marginTop: {
518
+ readonly [$$PropertyValue]: "marginTop";
519
+ };
520
+ };
521
+ mr: (value: {
522
+ readonly [$$PropertyValue]: "marginRight";
523
+ }) => {
524
+ marginRight: {
525
+ readonly [$$PropertyValue]: "marginRight";
526
+ };
527
+ };
528
+ mb: (value: {
529
+ readonly [$$PropertyValue]: "marginBottom";
530
+ }) => {
531
+ marginBottom: {
532
+ readonly [$$PropertyValue]: "marginBottom";
533
+ };
534
+ };
535
+ ml: (value: {
536
+ readonly [$$PropertyValue]: "marginLeft";
537
+ }) => {
538
+ marginLeft: {
539
+ readonly [$$PropertyValue]: "marginLeft";
540
+ };
541
+ };
542
+ mx: (value: {
543
+ readonly [$$PropertyValue]: "marginLeft";
544
+ }) => {
545
+ marginLeft: {
546
+ readonly [$$PropertyValue]: "marginLeft";
547
+ };
548
+ marginRight: {
549
+ readonly [$$PropertyValue]: "marginLeft";
550
+ };
551
+ };
552
+ my: (value: {
553
+ readonly [$$PropertyValue]: "marginTop";
554
+ }) => {
555
+ marginTop: {
556
+ readonly [$$PropertyValue]: "marginTop";
557
+ };
558
+ marginBottom: {
559
+ readonly [$$PropertyValue]: "marginTop";
560
+ };
561
+ };
562
+ ta: (value: {
563
+ readonly [$$PropertyValue]: "textAlign";
564
+ }) => {
565
+ textAlign: {
566
+ readonly [$$PropertyValue]: "textAlign";
567
+ };
568
+ };
569
+ fd: (value: {
570
+ readonly [$$PropertyValue]: "flexDirection";
571
+ }) => {
572
+ flexDirection: {
573
+ readonly [$$PropertyValue]: "flexDirection";
574
+ };
575
+ };
576
+ fw: (value: {
577
+ readonly [$$PropertyValue]: "flexWrap";
578
+ }) => {
579
+ flexWrap: {
580
+ readonly [$$PropertyValue]: "flexWrap";
581
+ };
582
+ };
583
+ ai: (value: {
584
+ readonly [$$PropertyValue]: "alignItems";
585
+ }) => {
586
+ alignItems: {
587
+ readonly [$$PropertyValue]: "alignItems";
588
+ };
589
+ };
590
+ ac: (value: {
591
+ readonly [$$PropertyValue]: "alignContent";
592
+ }) => {
593
+ alignContent: {
594
+ readonly [$$PropertyValue]: "alignContent";
595
+ };
596
+ };
597
+ jc: (value: {
598
+ readonly [$$PropertyValue]: "justifyContent";
599
+ }) => {
600
+ justifyContent: {
601
+ readonly [$$PropertyValue]: "justifyContent";
602
+ };
603
+ };
604
+ as: (value: {
605
+ readonly [$$PropertyValue]: "alignSelf";
606
+ }) => {
607
+ alignSelf: {
608
+ readonly [$$PropertyValue]: "alignSelf";
609
+ };
610
+ };
611
+ fg: (value: {
612
+ readonly [$$PropertyValue]: "flexGrow";
613
+ }) => {
614
+ flexGrow: {
615
+ readonly [$$PropertyValue]: "flexGrow";
616
+ };
617
+ };
618
+ fs: (value: {
619
+ readonly [$$PropertyValue]: "flexShrink";
620
+ }) => {
621
+ flexShrink: {
622
+ readonly [$$PropertyValue]: "flexShrink";
623
+ };
624
+ };
625
+ fb: (value: {
626
+ readonly [$$PropertyValue]: "flexBasis";
627
+ }) => {
628
+ flexBasis: {
629
+ readonly [$$PropertyValue]: "flexBasis";
630
+ };
631
+ };
632
+ bc: (value: {
633
+ readonly [$$PropertyValue]: "backgroundColor";
634
+ }) => {
635
+ backgroundColor: {
636
+ readonly [$$PropertyValue]: "backgroundColor";
637
+ };
638
+ };
639
+ br: (value: {
640
+ readonly [$$PropertyValue]: "borderRadius";
641
+ }) => {
642
+ borderRadius: {
643
+ readonly [$$PropertyValue]: "borderRadius";
644
+ };
645
+ };
646
+ btrr: (value: {
647
+ readonly [$$PropertyValue]: "borderTopRightRadius";
648
+ }) => {
649
+ borderTopRightRadius: {
650
+ readonly [$$PropertyValue]: "borderTopRightRadius";
651
+ };
652
+ };
653
+ bbrr: (value: {
654
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
655
+ }) => {
656
+ borderBottomRightRadius: {
657
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
658
+ };
659
+ };
660
+ bblr: (value: {
661
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
662
+ }) => {
663
+ borderBottomLeftRadius: {
664
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
665
+ };
666
+ };
667
+ btlr: (value: {
668
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
669
+ }) => {
670
+ borderTopLeftRadius: {
671
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
672
+ };
673
+ };
674
+ bs: (value: {
675
+ readonly [$$PropertyValue]: "boxShadow";
676
+ }) => {
677
+ boxShadow: {
678
+ readonly [$$PropertyValue]: "boxShadow";
679
+ };
680
+ };
681
+ lh: (value: {
682
+ readonly [$$PropertyValue]: "lineHeight";
683
+ }) => {
684
+ lineHeight: {
685
+ readonly [$$PropertyValue]: "lineHeight";
686
+ };
687
+ };
688
+ ox: (value: {
689
+ readonly [$$PropertyValue]: "overflowX";
690
+ }) => {
691
+ overflowX: {
692
+ readonly [$$PropertyValue]: "overflowX";
693
+ };
694
+ };
695
+ oy: (value: {
696
+ readonly [$$PropertyValue]: "overflowY";
697
+ }) => {
698
+ overflowY: {
699
+ readonly [$$PropertyValue]: "overflowY";
700
+ };
701
+ };
702
+ pe: (value: {
703
+ readonly [$$PropertyValue]: "pointerEvents";
704
+ }) => {
705
+ pointerEvents: {
706
+ readonly [$$PropertyValue]: "pointerEvents";
707
+ };
708
+ };
709
+ us: (value: {
710
+ readonly [$$PropertyValue]: "userSelect";
711
+ }) => {
712
+ WebkitUserSelect: {
713
+ readonly [$$PropertyValue]: "userSelect";
714
+ };
715
+ userSelect: {
716
+ readonly [$$PropertyValue]: "userSelect";
717
+ };
718
+ };
719
+ userSelect: (value: {
720
+ readonly [$$PropertyValue]: "userSelect";
721
+ }) => {
722
+ WebkitUserSelect: {
723
+ readonly [$$PropertyValue]: "userSelect";
724
+ };
725
+ userSelect: {
726
+ readonly [$$PropertyValue]: "userSelect";
727
+ };
728
+ };
729
+ size: (value: {
730
+ readonly [$$PropertyValue]: "width";
731
+ }) => {
732
+ width: {
733
+ readonly [$$PropertyValue]: "width";
734
+ };
735
+ height: {
736
+ readonly [$$PropertyValue]: "width";
737
+ };
738
+ };
739
+ appearance: (value: {
740
+ readonly [$$PropertyValue]: "appearance";
741
+ }) => {
742
+ WebkitAppearance: {
743
+ readonly [$$PropertyValue]: "appearance";
744
+ };
745
+ appearance: {
746
+ readonly [$$PropertyValue]: "appearance";
747
+ };
748
+ };
749
+ backgroundClip: (value: {
750
+ readonly [$$PropertyValue]: "backgroundClip";
751
+ }) => {
752
+ WebkitBackgroundClip: {
753
+ readonly [$$PropertyValue]: "backgroundClip";
754
+ };
755
+ backgroundClip: {
756
+ readonly [$$PropertyValue]: "backgroundClip";
757
+ };
758
+ };
759
+ }>>;
760
+ declare const ContextMenuGroup: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>, {}, {
761
+ bp1: "(min-width: 520px)";
762
+ bp2: "(min-width: 900px)";
763
+ bp3: "(min-width: 1200px)";
764
+ bp4: "(min-width: 1800px)";
765
+ motion: "(prefers-reduced-motion)";
766
+ hover: "(any-hover: hover)";
767
+ dark: "(prefers-color-scheme: dark)";
768
+ light: "(prefers-color-scheme: light)";
769
+ }, import("@stitches/react/types/css-util").CSS<{
770
+ bp1: "(min-width: 520px)";
771
+ bp2: "(min-width: 900px)";
772
+ bp3: "(min-width: 1200px)";
773
+ bp4: "(min-width: 1800px)";
774
+ motion: "(prefers-reduced-motion)";
775
+ hover: "(any-hover: hover)";
776
+ dark: "(prefers-color-scheme: dark)";
777
+ light: "(prefers-color-scheme: light)";
778
+ }, {
779
+ colors: {
780
+ hiContrast: string;
781
+ loContrast: string;
782
+ canvas: string;
783
+ panel: string;
784
+ transparentPanel: string;
785
+ shadowLight: string;
786
+ shadowDark: string;
787
+ blackA1: string;
788
+ blackA2: string;
789
+ blackA3: string;
790
+ blackA4: string;
791
+ blackA5: string;
792
+ blackA6: string;
793
+ blackA7: string;
794
+ blackA8: string;
795
+ blackA9: string;
796
+ blackA10: string;
797
+ blackA11: string;
798
+ blackA12: string;
799
+ whiteA1: string;
800
+ whiteA2: string;
801
+ whiteA3: string;
802
+ whiteA4: string;
803
+ whiteA5: string;
804
+ whiteA6: string;
805
+ whiteA7: string;
806
+ whiteA8: string;
807
+ whiteA9: string;
808
+ whiteA10: string;
809
+ whiteA11: string;
810
+ whiteA12: string;
811
+ gold1: string;
812
+ gold2: string;
813
+ gold3: string;
814
+ gold4: string;
815
+ gold5: string;
816
+ gold6: string;
817
+ gold7: string;
818
+ gold8: string;
819
+ gold9: string;
820
+ gold10: string;
821
+ gold11: string;
822
+ gold12: string;
823
+ bronze1: string;
824
+ bronze2: string;
825
+ bronze3: string;
826
+ bronze4: string;
827
+ bronze5: string;
828
+ bronze6: string;
829
+ bronze7: string;
830
+ bronze8: string;
831
+ bronze9: string;
832
+ bronze10: string;
833
+ bronze11: string;
834
+ bronze12: string;
835
+ brown1: string;
836
+ brown2: string;
837
+ brown3: string;
838
+ brown4: string;
839
+ brown5: string;
840
+ brown6: string;
841
+ brown7: string;
842
+ brown8: string;
843
+ brown9: string;
844
+ brown10: string;
845
+ brown11: string;
846
+ brown12: string;
847
+ orange1: string;
848
+ orange2: string;
849
+ orange3: string;
850
+ orange4: string;
851
+ orange5: string;
852
+ orange6: string;
853
+ orange7: string;
854
+ orange8: string;
855
+ orange9: string;
856
+ orange10: string;
857
+ orange11: string;
858
+ orange12: string;
859
+ amber1: string;
860
+ amber2: string;
861
+ amber3: string;
862
+ amber4: string;
863
+ amber5: string;
864
+ amber6: string;
865
+ amber7: string;
866
+ amber8: string;
867
+ amber9: string;
868
+ amber10: string;
869
+ amber11: string;
870
+ amber12: string;
871
+ yellow1: string;
872
+ yellow2: string;
873
+ yellow3: string;
874
+ yellow4: string;
875
+ yellow5: string;
876
+ yellow6: string;
877
+ yellow7: string;
878
+ yellow8: string;
879
+ yellow9: string;
880
+ yellow10: string;
881
+ yellow11: string;
882
+ yellow12: string;
883
+ lime1: string;
884
+ lime2: string;
885
+ lime3: string;
886
+ lime4: string;
887
+ lime5: string;
888
+ lime6: string;
889
+ lime7: string;
890
+ lime8: string;
891
+ lime9: string;
892
+ lime10: string;
893
+ lime11: string;
894
+ lime12: string;
895
+ grass1: string;
896
+ grass2: string;
897
+ grass3: string;
898
+ grass4: string;
899
+ grass5: string;
900
+ grass6: string;
901
+ grass7: string;
902
+ grass8: string;
903
+ grass9: string;
904
+ grass10: string;
905
+ grass11: string;
906
+ grass12: string;
907
+ green1: string;
908
+ green2: string;
909
+ green3: string;
910
+ green4: string;
911
+ green5: string;
912
+ green6: string;
913
+ green7: string;
914
+ green8: string;
915
+ green9: string;
916
+ green10: string;
917
+ green11: string;
918
+ green12: string;
919
+ teal1: string;
920
+ teal2: string;
921
+ teal3: string;
922
+ teal4: string;
923
+ teal5: string;
924
+ teal6: string;
925
+ teal7: string;
926
+ teal8: string;
927
+ teal9: string;
928
+ teal10: string;
929
+ teal11: string;
930
+ teal12: string;
931
+ cyan1: string;
932
+ cyan2: string;
933
+ cyan3: string;
934
+ cyan4: string;
935
+ cyan5: string;
936
+ cyan6: string;
937
+ cyan7: string;
938
+ cyan8: string;
939
+ cyan9: string;
940
+ cyan10: string;
941
+ cyan11: string;
942
+ cyan12: string;
943
+ mint1: string;
944
+ mint2: string;
945
+ mint3: string;
946
+ mint4: string;
947
+ mint5: string;
948
+ mint6: string;
949
+ mint7: string;
950
+ mint8: string;
951
+ mint9: string;
952
+ mint10: string;
953
+ mint11: string;
954
+ mint12: string;
955
+ sky1: string;
956
+ sky2: string;
957
+ sky3: string;
958
+ sky4: string;
959
+ sky5: string;
960
+ sky6: string;
961
+ sky7: string;
962
+ sky8: string;
963
+ sky9: string;
964
+ sky10: string;
965
+ sky11: string;
966
+ sky12: string;
967
+ blue1: string;
968
+ blue2: string;
969
+ blue3: string;
970
+ blue4: string;
971
+ blue5: string;
972
+ blue6: string;
973
+ blue7: string;
974
+ blue8: string;
975
+ blue9: string;
976
+ blue10: string;
977
+ blue11: string;
978
+ blue12: string;
979
+ indigo1: string;
980
+ indigo2: string;
981
+ indigo3: string;
982
+ indigo4: string;
983
+ indigo5: string;
984
+ indigo6: string;
985
+ indigo7: string;
986
+ indigo8: string;
987
+ indigo9: string;
988
+ indigo10: string;
989
+ indigo11: string;
990
+ indigo12: string;
991
+ violet1: string;
992
+ violet2: string;
993
+ violet3: string;
994
+ violet4: string;
995
+ violet5: string;
996
+ violet6: string;
997
+ violet7: string;
998
+ violet8: string;
999
+ violet9: string;
1000
+ violet10: string;
1001
+ violet11: string;
1002
+ violet12: string;
1003
+ purple1: string;
1004
+ purple2: string;
1005
+ purple3: string;
1006
+ purple4: string;
1007
+ purple5: string;
1008
+ purple6: string;
1009
+ purple7: string;
1010
+ purple8: string;
1011
+ purple9: string;
1012
+ purple10: string;
1013
+ purple11: string;
1014
+ purple12: string;
1015
+ plum1: string;
1016
+ plum2: string;
1017
+ plum3: string;
1018
+ plum4: string;
1019
+ plum5: string;
1020
+ plum6: string;
1021
+ plum7: string;
1022
+ plum8: string;
1023
+ plum9: string;
1024
+ plum10: string;
1025
+ plum11: string;
1026
+ plum12: string;
1027
+ pink1: string;
1028
+ pink2: string;
1029
+ pink3: string;
1030
+ pink4: string;
1031
+ pink5: string;
1032
+ pink6: string;
1033
+ pink7: string;
1034
+ pink8: string;
1035
+ pink9: string;
1036
+ pink10: string;
1037
+ pink11: string;
1038
+ pink12: string;
1039
+ crimson1: string;
1040
+ crimson2: string;
1041
+ crimson3: string;
1042
+ crimson4: string;
1043
+ crimson5: string;
1044
+ crimson6: string;
1045
+ crimson7: string;
1046
+ crimson8: string;
1047
+ crimson9: string;
1048
+ crimson10: string;
1049
+ crimson11: string;
1050
+ crimson12: string;
1051
+ red1: string;
1052
+ red2: string;
1053
+ red3: string;
1054
+ red4: string;
1055
+ red5: string;
1056
+ red6: string;
1057
+ red7: string;
1058
+ red8: string;
1059
+ red9: string;
1060
+ red10: string;
1061
+ red11: string;
1062
+ red12: string;
1063
+ tomato1: string;
1064
+ tomato2: string;
1065
+ tomato3: string;
1066
+ tomato4: string;
1067
+ tomato5: string;
1068
+ tomato6: string;
1069
+ tomato7: string;
1070
+ tomato8: string;
1071
+ tomato9: string;
1072
+ tomato10: string;
1073
+ tomato11: string;
1074
+ tomato12: string;
1075
+ sand1: string;
1076
+ sand2: string;
1077
+ sand3: string;
1078
+ sand4: string;
1079
+ sand5: string;
1080
+ sand6: string;
1081
+ sand7: string;
1082
+ sand8: string;
1083
+ sand9: string;
1084
+ sand10: string;
1085
+ sand11: string;
1086
+ sand12: string;
1087
+ olive1: string;
1088
+ olive2: string;
1089
+ olive3: string;
1090
+ olive4: string;
1091
+ olive5: string;
1092
+ olive6: string;
1093
+ olive7: string;
1094
+ olive8: string;
1095
+ olive9: string;
1096
+ olive10: string;
1097
+ olive11: string;
1098
+ olive12: string;
1099
+ sage1: string;
1100
+ sage2: string;
1101
+ sage3: string;
1102
+ sage4: string;
1103
+ sage5: string;
1104
+ sage6: string;
1105
+ sage7: string;
1106
+ sage8: string;
1107
+ sage9: string;
1108
+ sage10: string;
1109
+ sage11: string;
1110
+ sage12: string;
1111
+ slate1: string;
1112
+ slate2: string;
1113
+ slate3: string;
1114
+ slate4: string;
1115
+ slate5: string;
1116
+ slate6: string;
1117
+ slate7: string;
1118
+ slate8: string;
1119
+ slate9: string;
1120
+ slate10: string;
1121
+ slate11: string;
1122
+ slate12: string;
1123
+ mauve1: string;
1124
+ mauve2: string;
1125
+ mauve3: string;
1126
+ mauve4: string;
1127
+ mauve5: string;
1128
+ mauve6: string;
1129
+ mauve7: string;
1130
+ mauve8: string;
1131
+ mauve9: string;
1132
+ mauve10: string;
1133
+ mauve11: string;
1134
+ mauve12: string;
1135
+ gray1: string;
1136
+ gray2: string;
1137
+ gray3: string;
1138
+ gray4: string;
1139
+ gray5: string;
1140
+ gray6: string;
1141
+ gray7: string;
1142
+ gray8: string;
1143
+ gray9: string;
1144
+ gray10: string;
1145
+ gray11: string;
1146
+ gray12: string;
1147
+ };
1148
+ fonts: {
1149
+ untitled: string;
1150
+ mono: string;
1151
+ };
1152
+ space: {
1153
+ 1: string;
1154
+ 2: string;
1155
+ 3: string;
1156
+ 4: string;
1157
+ 5: string;
1158
+ 6: string;
1159
+ 7: string;
1160
+ 8: string;
1161
+ 9: string;
1162
+ };
1163
+ sizes: {
1164
+ 1: string;
1165
+ 2: string;
1166
+ 3: string;
1167
+ 4: string;
1168
+ 5: string;
1169
+ 6: string;
1170
+ 7: string;
1171
+ 8: string;
1172
+ 9: string;
1173
+ };
1174
+ fontSizes: {
1175
+ 1: string;
1176
+ 2: string;
1177
+ 3: string;
1178
+ 4: string;
1179
+ 5: string;
1180
+ 6: string;
1181
+ 7: string;
1182
+ 8: string;
1183
+ 9: string;
1184
+ };
1185
+ radii: {
1186
+ 1: string;
1187
+ 2: string;
1188
+ 3: string;
1189
+ 4: string;
1190
+ round: string;
1191
+ pill: string;
1192
+ };
1193
+ zIndices: {
1194
+ 1: string;
1195
+ 2: string;
1196
+ 3: string;
1197
+ 4: string;
1198
+ max: string;
1199
+ };
1200
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1201
+ p: (value: {
1202
+ readonly [$$PropertyValue]: "padding";
1203
+ }) => {
1204
+ padding: {
1205
+ readonly [$$PropertyValue]: "padding";
1206
+ };
1207
+ };
1208
+ pt: (value: {
1209
+ readonly [$$PropertyValue]: "paddingTop";
1210
+ }) => {
1211
+ paddingTop: {
1212
+ readonly [$$PropertyValue]: "paddingTop";
1213
+ };
1214
+ };
1215
+ pr: (value: {
1216
+ readonly [$$PropertyValue]: "paddingRight";
1217
+ }) => {
1218
+ paddingRight: {
1219
+ readonly [$$PropertyValue]: "paddingRight";
1220
+ };
1221
+ };
1222
+ pb: (value: {
1223
+ readonly [$$PropertyValue]: "paddingBottom";
1224
+ }) => {
1225
+ paddingBottom: {
1226
+ readonly [$$PropertyValue]: "paddingBottom";
1227
+ };
1228
+ };
1229
+ pl: (value: {
1230
+ readonly [$$PropertyValue]: "paddingLeft";
1231
+ }) => {
1232
+ paddingLeft: {
1233
+ readonly [$$PropertyValue]: "paddingLeft";
1234
+ };
1235
+ };
1236
+ px: (value: {
1237
+ readonly [$$PropertyValue]: "paddingLeft";
1238
+ }) => {
1239
+ paddingLeft: {
1240
+ readonly [$$PropertyValue]: "paddingLeft";
1241
+ };
1242
+ paddingRight: {
1243
+ readonly [$$PropertyValue]: "paddingLeft";
1244
+ };
1245
+ };
1246
+ py: (value: {
1247
+ readonly [$$PropertyValue]: "paddingTop";
1248
+ }) => {
1249
+ paddingTop: {
1250
+ readonly [$$PropertyValue]: "paddingTop";
1251
+ };
1252
+ paddingBottom: {
1253
+ readonly [$$PropertyValue]: "paddingTop";
1254
+ };
1255
+ };
1256
+ m: (value: {
1257
+ readonly [$$PropertyValue]: "margin";
1258
+ }) => {
1259
+ margin: {
1260
+ readonly [$$PropertyValue]: "margin";
1261
+ };
1262
+ };
1263
+ mt: (value: {
1264
+ readonly [$$PropertyValue]: "marginTop";
1265
+ }) => {
1266
+ marginTop: {
1267
+ readonly [$$PropertyValue]: "marginTop";
1268
+ };
1269
+ };
1270
+ mr: (value: {
1271
+ readonly [$$PropertyValue]: "marginRight";
1272
+ }) => {
1273
+ marginRight: {
1274
+ readonly [$$PropertyValue]: "marginRight";
1275
+ };
1276
+ };
1277
+ mb: (value: {
1278
+ readonly [$$PropertyValue]: "marginBottom";
1279
+ }) => {
1280
+ marginBottom: {
1281
+ readonly [$$PropertyValue]: "marginBottom";
1282
+ };
1283
+ };
1284
+ ml: (value: {
1285
+ readonly [$$PropertyValue]: "marginLeft";
1286
+ }) => {
1287
+ marginLeft: {
1288
+ readonly [$$PropertyValue]: "marginLeft";
1289
+ };
1290
+ };
1291
+ mx: (value: {
1292
+ readonly [$$PropertyValue]: "marginLeft";
1293
+ }) => {
1294
+ marginLeft: {
1295
+ readonly [$$PropertyValue]: "marginLeft";
1296
+ };
1297
+ marginRight: {
1298
+ readonly [$$PropertyValue]: "marginLeft";
1299
+ };
1300
+ };
1301
+ my: (value: {
1302
+ readonly [$$PropertyValue]: "marginTop";
1303
+ }) => {
1304
+ marginTop: {
1305
+ readonly [$$PropertyValue]: "marginTop";
1306
+ };
1307
+ marginBottom: {
1308
+ readonly [$$PropertyValue]: "marginTop";
1309
+ };
1310
+ };
1311
+ ta: (value: {
1312
+ readonly [$$PropertyValue]: "textAlign";
1313
+ }) => {
1314
+ textAlign: {
1315
+ readonly [$$PropertyValue]: "textAlign";
1316
+ };
1317
+ };
1318
+ fd: (value: {
1319
+ readonly [$$PropertyValue]: "flexDirection";
1320
+ }) => {
1321
+ flexDirection: {
1322
+ readonly [$$PropertyValue]: "flexDirection";
1323
+ };
1324
+ };
1325
+ fw: (value: {
1326
+ readonly [$$PropertyValue]: "flexWrap";
1327
+ }) => {
1328
+ flexWrap: {
1329
+ readonly [$$PropertyValue]: "flexWrap";
1330
+ };
1331
+ };
1332
+ ai: (value: {
1333
+ readonly [$$PropertyValue]: "alignItems";
1334
+ }) => {
1335
+ alignItems: {
1336
+ readonly [$$PropertyValue]: "alignItems";
1337
+ };
1338
+ };
1339
+ ac: (value: {
1340
+ readonly [$$PropertyValue]: "alignContent";
1341
+ }) => {
1342
+ alignContent: {
1343
+ readonly [$$PropertyValue]: "alignContent";
1344
+ };
1345
+ };
1346
+ jc: (value: {
1347
+ readonly [$$PropertyValue]: "justifyContent";
1348
+ }) => {
1349
+ justifyContent: {
1350
+ readonly [$$PropertyValue]: "justifyContent";
1351
+ };
1352
+ };
1353
+ as: (value: {
1354
+ readonly [$$PropertyValue]: "alignSelf";
1355
+ }) => {
1356
+ alignSelf: {
1357
+ readonly [$$PropertyValue]: "alignSelf";
1358
+ };
1359
+ };
1360
+ fg: (value: {
1361
+ readonly [$$PropertyValue]: "flexGrow";
1362
+ }) => {
1363
+ flexGrow: {
1364
+ readonly [$$PropertyValue]: "flexGrow";
1365
+ };
1366
+ };
1367
+ fs: (value: {
1368
+ readonly [$$PropertyValue]: "flexShrink";
1369
+ }) => {
1370
+ flexShrink: {
1371
+ readonly [$$PropertyValue]: "flexShrink";
1372
+ };
1373
+ };
1374
+ fb: (value: {
1375
+ readonly [$$PropertyValue]: "flexBasis";
1376
+ }) => {
1377
+ flexBasis: {
1378
+ readonly [$$PropertyValue]: "flexBasis";
1379
+ };
1380
+ };
1381
+ bc: (value: {
1382
+ readonly [$$PropertyValue]: "backgroundColor";
1383
+ }) => {
1384
+ backgroundColor: {
1385
+ readonly [$$PropertyValue]: "backgroundColor";
1386
+ };
1387
+ };
1388
+ br: (value: {
1389
+ readonly [$$PropertyValue]: "borderRadius";
1390
+ }) => {
1391
+ borderRadius: {
1392
+ readonly [$$PropertyValue]: "borderRadius";
1393
+ };
1394
+ };
1395
+ btrr: (value: {
1396
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1397
+ }) => {
1398
+ borderTopRightRadius: {
1399
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1400
+ };
1401
+ };
1402
+ bbrr: (value: {
1403
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1404
+ }) => {
1405
+ borderBottomRightRadius: {
1406
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1407
+ };
1408
+ };
1409
+ bblr: (value: {
1410
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1411
+ }) => {
1412
+ borderBottomLeftRadius: {
1413
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1414
+ };
1415
+ };
1416
+ btlr: (value: {
1417
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1418
+ }) => {
1419
+ borderTopLeftRadius: {
1420
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1421
+ };
1422
+ };
1423
+ bs: (value: {
1424
+ readonly [$$PropertyValue]: "boxShadow";
1425
+ }) => {
1426
+ boxShadow: {
1427
+ readonly [$$PropertyValue]: "boxShadow";
1428
+ };
1429
+ };
1430
+ lh: (value: {
1431
+ readonly [$$PropertyValue]: "lineHeight";
1432
+ }) => {
1433
+ lineHeight: {
1434
+ readonly [$$PropertyValue]: "lineHeight";
1435
+ };
1436
+ };
1437
+ ox: (value: {
1438
+ readonly [$$PropertyValue]: "overflowX";
1439
+ }) => {
1440
+ overflowX: {
1441
+ readonly [$$PropertyValue]: "overflowX";
1442
+ };
1443
+ };
1444
+ oy: (value: {
1445
+ readonly [$$PropertyValue]: "overflowY";
1446
+ }) => {
1447
+ overflowY: {
1448
+ readonly [$$PropertyValue]: "overflowY";
1449
+ };
1450
+ };
1451
+ pe: (value: {
1452
+ readonly [$$PropertyValue]: "pointerEvents";
1453
+ }) => {
1454
+ pointerEvents: {
1455
+ readonly [$$PropertyValue]: "pointerEvents";
1456
+ };
1457
+ };
1458
+ us: (value: {
1459
+ readonly [$$PropertyValue]: "userSelect";
1460
+ }) => {
1461
+ WebkitUserSelect: {
1462
+ readonly [$$PropertyValue]: "userSelect";
1463
+ };
1464
+ userSelect: {
1465
+ readonly [$$PropertyValue]: "userSelect";
1466
+ };
1467
+ };
1468
+ userSelect: (value: {
1469
+ readonly [$$PropertyValue]: "userSelect";
1470
+ }) => {
1471
+ WebkitUserSelect: {
1472
+ readonly [$$PropertyValue]: "userSelect";
1473
+ };
1474
+ userSelect: {
1475
+ readonly [$$PropertyValue]: "userSelect";
1476
+ };
1477
+ };
1478
+ size: (value: {
1479
+ readonly [$$PropertyValue]: "width";
1480
+ }) => {
1481
+ width: {
1482
+ readonly [$$PropertyValue]: "width";
1483
+ };
1484
+ height: {
1485
+ readonly [$$PropertyValue]: "width";
1486
+ };
1487
+ };
1488
+ appearance: (value: {
1489
+ readonly [$$PropertyValue]: "appearance";
1490
+ }) => {
1491
+ WebkitAppearance: {
1492
+ readonly [$$PropertyValue]: "appearance";
1493
+ };
1494
+ appearance: {
1495
+ readonly [$$PropertyValue]: "appearance";
1496
+ };
1497
+ };
1498
+ backgroundClip: (value: {
1499
+ readonly [$$PropertyValue]: "backgroundClip";
1500
+ }) => {
1501
+ WebkitBackgroundClip: {
1502
+ readonly [$$PropertyValue]: "backgroundClip";
1503
+ };
1504
+ backgroundClip: {
1505
+ readonly [$$PropertyValue]: "backgroundClip";
1506
+ };
1507
+ };
1508
+ }>>;
1509
+ declare const ContextMenuLabel: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuLabelProps & React.RefAttributes<HTMLDivElement>>, {}, {
1510
+ bp1: "(min-width: 520px)";
1511
+ bp2: "(min-width: 900px)";
1512
+ bp3: "(min-width: 1200px)";
1513
+ bp4: "(min-width: 1800px)";
1514
+ motion: "(prefers-reduced-motion)";
1515
+ hover: "(any-hover: hover)";
1516
+ dark: "(prefers-color-scheme: dark)";
1517
+ light: "(prefers-color-scheme: light)";
1518
+ }, import("@stitches/react/types/css-util").CSS<{
1519
+ bp1: "(min-width: 520px)";
1520
+ bp2: "(min-width: 900px)";
1521
+ bp3: "(min-width: 1200px)";
1522
+ bp4: "(min-width: 1800px)";
1523
+ motion: "(prefers-reduced-motion)";
1524
+ hover: "(any-hover: hover)";
1525
+ dark: "(prefers-color-scheme: dark)";
1526
+ light: "(prefers-color-scheme: light)";
1527
+ }, {
1528
+ colors: {
1529
+ hiContrast: string;
1530
+ loContrast: string;
1531
+ canvas: string;
1532
+ panel: string;
1533
+ transparentPanel: string;
1534
+ shadowLight: string;
1535
+ shadowDark: string;
1536
+ blackA1: string;
1537
+ blackA2: string;
1538
+ blackA3: string;
1539
+ blackA4: string;
1540
+ blackA5: string;
1541
+ blackA6: string;
1542
+ blackA7: string;
1543
+ blackA8: string;
1544
+ blackA9: string;
1545
+ blackA10: string;
1546
+ blackA11: string;
1547
+ blackA12: string;
1548
+ whiteA1: string;
1549
+ whiteA2: string;
1550
+ whiteA3: string;
1551
+ whiteA4: string;
1552
+ whiteA5: string;
1553
+ whiteA6: string;
1554
+ whiteA7: string;
1555
+ whiteA8: string;
1556
+ whiteA9: string;
1557
+ whiteA10: string;
1558
+ whiteA11: string;
1559
+ whiteA12: string;
1560
+ gold1: string;
1561
+ gold2: string;
1562
+ gold3: string;
1563
+ gold4: string;
1564
+ gold5: string;
1565
+ gold6: string;
1566
+ gold7: string;
1567
+ gold8: string;
1568
+ gold9: string;
1569
+ gold10: string;
1570
+ gold11: string;
1571
+ gold12: string;
1572
+ bronze1: string;
1573
+ bronze2: string;
1574
+ bronze3: string;
1575
+ bronze4: string;
1576
+ bronze5: string;
1577
+ bronze6: string;
1578
+ bronze7: string;
1579
+ bronze8: string;
1580
+ bronze9: string;
1581
+ bronze10: string;
1582
+ bronze11: string;
1583
+ bronze12: string;
1584
+ brown1: string;
1585
+ brown2: string;
1586
+ brown3: string;
1587
+ brown4: string;
1588
+ brown5: string;
1589
+ brown6: string;
1590
+ brown7: string;
1591
+ brown8: string;
1592
+ brown9: string;
1593
+ brown10: string;
1594
+ brown11: string;
1595
+ brown12: string;
1596
+ orange1: string;
1597
+ orange2: string;
1598
+ orange3: string;
1599
+ orange4: string;
1600
+ orange5: string;
1601
+ orange6: string;
1602
+ orange7: string;
1603
+ orange8: string;
1604
+ orange9: string;
1605
+ orange10: string;
1606
+ orange11: string;
1607
+ orange12: string;
1608
+ amber1: string;
1609
+ amber2: string;
1610
+ amber3: string;
1611
+ amber4: string;
1612
+ amber5: string;
1613
+ amber6: string;
1614
+ amber7: string;
1615
+ amber8: string;
1616
+ amber9: string;
1617
+ amber10: string;
1618
+ amber11: string;
1619
+ amber12: string;
1620
+ yellow1: string;
1621
+ yellow2: string;
1622
+ yellow3: string;
1623
+ yellow4: string;
1624
+ yellow5: string;
1625
+ yellow6: string;
1626
+ yellow7: string;
1627
+ yellow8: string;
1628
+ yellow9: string;
1629
+ yellow10: string;
1630
+ yellow11: string;
1631
+ yellow12: string;
1632
+ lime1: string;
1633
+ lime2: string;
1634
+ lime3: string;
1635
+ lime4: string;
1636
+ lime5: string;
1637
+ lime6: string;
1638
+ lime7: string;
1639
+ lime8: string;
1640
+ lime9: string;
1641
+ lime10: string;
1642
+ lime11: string;
1643
+ lime12: string;
1644
+ grass1: string;
1645
+ grass2: string;
1646
+ grass3: string;
1647
+ grass4: string;
1648
+ grass5: string;
1649
+ grass6: string;
1650
+ grass7: string;
1651
+ grass8: string;
1652
+ grass9: string;
1653
+ grass10: string;
1654
+ grass11: string;
1655
+ grass12: string;
1656
+ green1: string;
1657
+ green2: string;
1658
+ green3: string;
1659
+ green4: string;
1660
+ green5: string;
1661
+ green6: string;
1662
+ green7: string;
1663
+ green8: string;
1664
+ green9: string;
1665
+ green10: string;
1666
+ green11: string;
1667
+ green12: string;
1668
+ teal1: string;
1669
+ teal2: string;
1670
+ teal3: string;
1671
+ teal4: string;
1672
+ teal5: string;
1673
+ teal6: string;
1674
+ teal7: string;
1675
+ teal8: string;
1676
+ teal9: string;
1677
+ teal10: string;
1678
+ teal11: string;
1679
+ teal12: string;
1680
+ cyan1: string;
1681
+ cyan2: string;
1682
+ cyan3: string;
1683
+ cyan4: string;
1684
+ cyan5: string;
1685
+ cyan6: string;
1686
+ cyan7: string;
1687
+ cyan8: string;
1688
+ cyan9: string;
1689
+ cyan10: string;
1690
+ cyan11: string;
1691
+ cyan12: string;
1692
+ mint1: string;
1693
+ mint2: string;
1694
+ mint3: string;
1695
+ mint4: string;
1696
+ mint5: string;
1697
+ mint6: string;
1698
+ mint7: string;
1699
+ mint8: string;
1700
+ mint9: string;
1701
+ mint10: string;
1702
+ mint11: string;
1703
+ mint12: string;
1704
+ sky1: string;
1705
+ sky2: string;
1706
+ sky3: string;
1707
+ sky4: string;
1708
+ sky5: string;
1709
+ sky6: string;
1710
+ sky7: string;
1711
+ sky8: string;
1712
+ sky9: string;
1713
+ sky10: string;
1714
+ sky11: string;
1715
+ sky12: string;
1716
+ blue1: string;
1717
+ blue2: string;
1718
+ blue3: string;
1719
+ blue4: string;
1720
+ blue5: string;
1721
+ blue6: string;
1722
+ blue7: string;
1723
+ blue8: string;
1724
+ blue9: string;
1725
+ blue10: string;
1726
+ blue11: string;
1727
+ blue12: string;
1728
+ indigo1: string;
1729
+ indigo2: string;
1730
+ indigo3: string;
1731
+ indigo4: string;
1732
+ indigo5: string;
1733
+ indigo6: string;
1734
+ indigo7: string;
1735
+ indigo8: string;
1736
+ indigo9: string;
1737
+ indigo10: string;
1738
+ indigo11: string;
1739
+ indigo12: string;
1740
+ violet1: string;
1741
+ violet2: string;
1742
+ violet3: string;
1743
+ violet4: string;
1744
+ violet5: string;
1745
+ violet6: string;
1746
+ violet7: string;
1747
+ violet8: string;
1748
+ violet9: string;
1749
+ violet10: string;
1750
+ violet11: string;
1751
+ violet12: string;
1752
+ purple1: string;
1753
+ purple2: string;
1754
+ purple3: string;
1755
+ purple4: string;
1756
+ purple5: string;
1757
+ purple6: string;
1758
+ purple7: string;
1759
+ purple8: string;
1760
+ purple9: string;
1761
+ purple10: string;
1762
+ purple11: string;
1763
+ purple12: string;
1764
+ plum1: string;
1765
+ plum2: string;
1766
+ plum3: string;
1767
+ plum4: string;
1768
+ plum5: string;
1769
+ plum6: string;
1770
+ plum7: string;
1771
+ plum8: string;
1772
+ plum9: string;
1773
+ plum10: string;
1774
+ plum11: string;
1775
+ plum12: string;
1776
+ pink1: string;
1777
+ pink2: string;
1778
+ pink3: string;
1779
+ pink4: string;
1780
+ pink5: string;
1781
+ pink6: string;
1782
+ pink7: string;
1783
+ pink8: string;
1784
+ pink9: string;
1785
+ pink10: string;
1786
+ pink11: string;
1787
+ pink12: string;
1788
+ crimson1: string;
1789
+ crimson2: string;
1790
+ crimson3: string;
1791
+ crimson4: string;
1792
+ crimson5: string;
1793
+ crimson6: string;
1794
+ crimson7: string;
1795
+ crimson8: string;
1796
+ crimson9: string;
1797
+ crimson10: string;
1798
+ crimson11: string;
1799
+ crimson12: string;
1800
+ red1: string;
1801
+ red2: string;
1802
+ red3: string;
1803
+ red4: string;
1804
+ red5: string;
1805
+ red6: string;
1806
+ red7: string;
1807
+ red8: string;
1808
+ red9: string;
1809
+ red10: string;
1810
+ red11: string;
1811
+ red12: string;
1812
+ tomato1: string;
1813
+ tomato2: string;
1814
+ tomato3: string;
1815
+ tomato4: string;
1816
+ tomato5: string;
1817
+ tomato6: string;
1818
+ tomato7: string;
1819
+ tomato8: string;
1820
+ tomato9: string;
1821
+ tomato10: string;
1822
+ tomato11: string;
1823
+ tomato12: string;
1824
+ sand1: string;
1825
+ sand2: string;
1826
+ sand3: string;
1827
+ sand4: string;
1828
+ sand5: string;
1829
+ sand6: string;
1830
+ sand7: string;
1831
+ sand8: string;
1832
+ sand9: string;
1833
+ sand10: string;
1834
+ sand11: string;
1835
+ sand12: string;
1836
+ olive1: string;
1837
+ olive2: string;
1838
+ olive3: string;
1839
+ olive4: string;
1840
+ olive5: string;
1841
+ olive6: string;
1842
+ olive7: string;
1843
+ olive8: string;
1844
+ olive9: string;
1845
+ olive10: string;
1846
+ olive11: string;
1847
+ olive12: string;
1848
+ sage1: string;
1849
+ sage2: string;
1850
+ sage3: string;
1851
+ sage4: string;
1852
+ sage5: string;
1853
+ sage6: string;
1854
+ sage7: string;
1855
+ sage8: string;
1856
+ sage9: string;
1857
+ sage10: string;
1858
+ sage11: string;
1859
+ sage12: string;
1860
+ slate1: string;
1861
+ slate2: string;
1862
+ slate3: string;
1863
+ slate4: string;
1864
+ slate5: string;
1865
+ slate6: string;
1866
+ slate7: string;
1867
+ slate8: string;
1868
+ slate9: string;
1869
+ slate10: string;
1870
+ slate11: string;
1871
+ slate12: string;
1872
+ mauve1: string;
1873
+ mauve2: string;
1874
+ mauve3: string;
1875
+ mauve4: string;
1876
+ mauve5: string;
1877
+ mauve6: string;
1878
+ mauve7: string;
1879
+ mauve8: string;
1880
+ mauve9: string;
1881
+ mauve10: string;
1882
+ mauve11: string;
1883
+ mauve12: string;
1884
+ gray1: string;
1885
+ gray2: string;
1886
+ gray3: string;
1887
+ gray4: string;
1888
+ gray5: string;
1889
+ gray6: string;
1890
+ gray7: string;
1891
+ gray8: string;
1892
+ gray9: string;
1893
+ gray10: string;
1894
+ gray11: string;
1895
+ gray12: string;
1896
+ };
1897
+ fonts: {
1898
+ untitled: string;
1899
+ mono: string;
1900
+ };
1901
+ space: {
1902
+ 1: string;
1903
+ 2: string;
1904
+ 3: string;
1905
+ 4: string;
1906
+ 5: string;
1907
+ 6: string;
1908
+ 7: string;
1909
+ 8: string;
1910
+ 9: string;
1911
+ };
1912
+ sizes: {
1913
+ 1: string;
1914
+ 2: string;
1915
+ 3: string;
1916
+ 4: string;
1917
+ 5: string;
1918
+ 6: string;
1919
+ 7: string;
1920
+ 8: string;
1921
+ 9: string;
1922
+ };
1923
+ fontSizes: {
1924
+ 1: string;
1925
+ 2: string;
1926
+ 3: string;
1927
+ 4: string;
1928
+ 5: string;
1929
+ 6: string;
1930
+ 7: string;
1931
+ 8: string;
1932
+ 9: string;
1933
+ };
1934
+ radii: {
1935
+ 1: string;
1936
+ 2: string;
1937
+ 3: string;
1938
+ 4: string;
1939
+ round: string;
1940
+ pill: string;
1941
+ };
1942
+ zIndices: {
1943
+ 1: string;
1944
+ 2: string;
1945
+ 3: string;
1946
+ 4: string;
1947
+ max: string;
1948
+ };
1949
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1950
+ p: (value: {
1951
+ readonly [$$PropertyValue]: "padding";
1952
+ }) => {
1953
+ padding: {
1954
+ readonly [$$PropertyValue]: "padding";
1955
+ };
1956
+ };
1957
+ pt: (value: {
1958
+ readonly [$$PropertyValue]: "paddingTop";
1959
+ }) => {
1960
+ paddingTop: {
1961
+ readonly [$$PropertyValue]: "paddingTop";
1962
+ };
1963
+ };
1964
+ pr: (value: {
1965
+ readonly [$$PropertyValue]: "paddingRight";
1966
+ }) => {
1967
+ paddingRight: {
1968
+ readonly [$$PropertyValue]: "paddingRight";
1969
+ };
1970
+ };
1971
+ pb: (value: {
1972
+ readonly [$$PropertyValue]: "paddingBottom";
1973
+ }) => {
1974
+ paddingBottom: {
1975
+ readonly [$$PropertyValue]: "paddingBottom";
1976
+ };
1977
+ };
1978
+ pl: (value: {
1979
+ readonly [$$PropertyValue]: "paddingLeft";
1980
+ }) => {
1981
+ paddingLeft: {
1982
+ readonly [$$PropertyValue]: "paddingLeft";
1983
+ };
1984
+ };
1985
+ px: (value: {
1986
+ readonly [$$PropertyValue]: "paddingLeft";
1987
+ }) => {
1988
+ paddingLeft: {
1989
+ readonly [$$PropertyValue]: "paddingLeft";
1990
+ };
1991
+ paddingRight: {
1992
+ readonly [$$PropertyValue]: "paddingLeft";
1993
+ };
1994
+ };
1995
+ py: (value: {
1996
+ readonly [$$PropertyValue]: "paddingTop";
1997
+ }) => {
1998
+ paddingTop: {
1999
+ readonly [$$PropertyValue]: "paddingTop";
2000
+ };
2001
+ paddingBottom: {
2002
+ readonly [$$PropertyValue]: "paddingTop";
2003
+ };
2004
+ };
2005
+ m: (value: {
2006
+ readonly [$$PropertyValue]: "margin";
2007
+ }) => {
2008
+ margin: {
2009
+ readonly [$$PropertyValue]: "margin";
2010
+ };
2011
+ };
2012
+ mt: (value: {
2013
+ readonly [$$PropertyValue]: "marginTop";
2014
+ }) => {
2015
+ marginTop: {
2016
+ readonly [$$PropertyValue]: "marginTop";
2017
+ };
2018
+ };
2019
+ mr: (value: {
2020
+ readonly [$$PropertyValue]: "marginRight";
2021
+ }) => {
2022
+ marginRight: {
2023
+ readonly [$$PropertyValue]: "marginRight";
2024
+ };
2025
+ };
2026
+ mb: (value: {
2027
+ readonly [$$PropertyValue]: "marginBottom";
2028
+ }) => {
2029
+ marginBottom: {
2030
+ readonly [$$PropertyValue]: "marginBottom";
2031
+ };
2032
+ };
2033
+ ml: (value: {
2034
+ readonly [$$PropertyValue]: "marginLeft";
2035
+ }) => {
2036
+ marginLeft: {
2037
+ readonly [$$PropertyValue]: "marginLeft";
2038
+ };
2039
+ };
2040
+ mx: (value: {
2041
+ readonly [$$PropertyValue]: "marginLeft";
2042
+ }) => {
2043
+ marginLeft: {
2044
+ readonly [$$PropertyValue]: "marginLeft";
2045
+ };
2046
+ marginRight: {
2047
+ readonly [$$PropertyValue]: "marginLeft";
2048
+ };
2049
+ };
2050
+ my: (value: {
2051
+ readonly [$$PropertyValue]: "marginTop";
2052
+ }) => {
2053
+ marginTop: {
2054
+ readonly [$$PropertyValue]: "marginTop";
2055
+ };
2056
+ marginBottom: {
2057
+ readonly [$$PropertyValue]: "marginTop";
2058
+ };
2059
+ };
2060
+ ta: (value: {
2061
+ readonly [$$PropertyValue]: "textAlign";
2062
+ }) => {
2063
+ textAlign: {
2064
+ readonly [$$PropertyValue]: "textAlign";
2065
+ };
2066
+ };
2067
+ fd: (value: {
2068
+ readonly [$$PropertyValue]: "flexDirection";
2069
+ }) => {
2070
+ flexDirection: {
2071
+ readonly [$$PropertyValue]: "flexDirection";
2072
+ };
2073
+ };
2074
+ fw: (value: {
2075
+ readonly [$$PropertyValue]: "flexWrap";
2076
+ }) => {
2077
+ flexWrap: {
2078
+ readonly [$$PropertyValue]: "flexWrap";
2079
+ };
2080
+ };
2081
+ ai: (value: {
2082
+ readonly [$$PropertyValue]: "alignItems";
2083
+ }) => {
2084
+ alignItems: {
2085
+ readonly [$$PropertyValue]: "alignItems";
2086
+ };
2087
+ };
2088
+ ac: (value: {
2089
+ readonly [$$PropertyValue]: "alignContent";
2090
+ }) => {
2091
+ alignContent: {
2092
+ readonly [$$PropertyValue]: "alignContent";
2093
+ };
2094
+ };
2095
+ jc: (value: {
2096
+ readonly [$$PropertyValue]: "justifyContent";
2097
+ }) => {
2098
+ justifyContent: {
2099
+ readonly [$$PropertyValue]: "justifyContent";
2100
+ };
2101
+ };
2102
+ as: (value: {
2103
+ readonly [$$PropertyValue]: "alignSelf";
2104
+ }) => {
2105
+ alignSelf: {
2106
+ readonly [$$PropertyValue]: "alignSelf";
2107
+ };
2108
+ };
2109
+ fg: (value: {
2110
+ readonly [$$PropertyValue]: "flexGrow";
2111
+ }) => {
2112
+ flexGrow: {
2113
+ readonly [$$PropertyValue]: "flexGrow";
2114
+ };
2115
+ };
2116
+ fs: (value: {
2117
+ readonly [$$PropertyValue]: "flexShrink";
2118
+ }) => {
2119
+ flexShrink: {
2120
+ readonly [$$PropertyValue]: "flexShrink";
2121
+ };
2122
+ };
2123
+ fb: (value: {
2124
+ readonly [$$PropertyValue]: "flexBasis";
2125
+ }) => {
2126
+ flexBasis: {
2127
+ readonly [$$PropertyValue]: "flexBasis";
2128
+ };
2129
+ };
2130
+ bc: (value: {
2131
+ readonly [$$PropertyValue]: "backgroundColor";
2132
+ }) => {
2133
+ backgroundColor: {
2134
+ readonly [$$PropertyValue]: "backgroundColor";
2135
+ };
2136
+ };
2137
+ br: (value: {
2138
+ readonly [$$PropertyValue]: "borderRadius";
2139
+ }) => {
2140
+ borderRadius: {
2141
+ readonly [$$PropertyValue]: "borderRadius";
2142
+ };
2143
+ };
2144
+ btrr: (value: {
2145
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2146
+ }) => {
2147
+ borderTopRightRadius: {
2148
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2149
+ };
2150
+ };
2151
+ bbrr: (value: {
2152
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2153
+ }) => {
2154
+ borderBottomRightRadius: {
2155
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2156
+ };
2157
+ };
2158
+ bblr: (value: {
2159
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2160
+ }) => {
2161
+ borderBottomLeftRadius: {
2162
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2163
+ };
2164
+ };
2165
+ btlr: (value: {
2166
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2167
+ }) => {
2168
+ borderTopLeftRadius: {
2169
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2170
+ };
2171
+ };
2172
+ bs: (value: {
2173
+ readonly [$$PropertyValue]: "boxShadow";
2174
+ }) => {
2175
+ boxShadow: {
2176
+ readonly [$$PropertyValue]: "boxShadow";
2177
+ };
2178
+ };
2179
+ lh: (value: {
2180
+ readonly [$$PropertyValue]: "lineHeight";
2181
+ }) => {
2182
+ lineHeight: {
2183
+ readonly [$$PropertyValue]: "lineHeight";
2184
+ };
2185
+ };
2186
+ ox: (value: {
2187
+ readonly [$$PropertyValue]: "overflowX";
2188
+ }) => {
2189
+ overflowX: {
2190
+ readonly [$$PropertyValue]: "overflowX";
2191
+ };
2192
+ };
2193
+ oy: (value: {
2194
+ readonly [$$PropertyValue]: "overflowY";
2195
+ }) => {
2196
+ overflowY: {
2197
+ readonly [$$PropertyValue]: "overflowY";
2198
+ };
2199
+ };
2200
+ pe: (value: {
2201
+ readonly [$$PropertyValue]: "pointerEvents";
2202
+ }) => {
2203
+ pointerEvents: {
2204
+ readonly [$$PropertyValue]: "pointerEvents";
2205
+ };
2206
+ };
2207
+ us: (value: {
2208
+ readonly [$$PropertyValue]: "userSelect";
2209
+ }) => {
2210
+ WebkitUserSelect: {
2211
+ readonly [$$PropertyValue]: "userSelect";
2212
+ };
2213
+ userSelect: {
2214
+ readonly [$$PropertyValue]: "userSelect";
2215
+ };
2216
+ };
2217
+ userSelect: (value: {
2218
+ readonly [$$PropertyValue]: "userSelect";
2219
+ }) => {
2220
+ WebkitUserSelect: {
2221
+ readonly [$$PropertyValue]: "userSelect";
2222
+ };
2223
+ userSelect: {
2224
+ readonly [$$PropertyValue]: "userSelect";
2225
+ };
2226
+ };
2227
+ size: (value: {
2228
+ readonly [$$PropertyValue]: "width";
2229
+ }) => {
2230
+ width: {
2231
+ readonly [$$PropertyValue]: "width";
2232
+ };
2233
+ height: {
2234
+ readonly [$$PropertyValue]: "width";
2235
+ };
2236
+ };
2237
+ appearance: (value: {
2238
+ readonly [$$PropertyValue]: "appearance";
2239
+ }) => {
2240
+ WebkitAppearance: {
2241
+ readonly [$$PropertyValue]: "appearance";
2242
+ };
2243
+ appearance: {
2244
+ readonly [$$PropertyValue]: "appearance";
2245
+ };
2246
+ };
2247
+ backgroundClip: (value: {
2248
+ readonly [$$PropertyValue]: "backgroundClip";
2249
+ }) => {
2250
+ WebkitBackgroundClip: {
2251
+ readonly [$$PropertyValue]: "backgroundClip";
2252
+ };
2253
+ backgroundClip: {
2254
+ readonly [$$PropertyValue]: "backgroundClip";
2255
+ };
2256
+ };
2257
+ }>>;
2258
+ declare const ContextMenuSeparator: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuSeparatorProps & React.RefAttributes<HTMLDivElement>>, {}, {
2259
+ bp1: "(min-width: 520px)";
2260
+ bp2: "(min-width: 900px)";
2261
+ bp3: "(min-width: 1200px)";
2262
+ bp4: "(min-width: 1800px)";
2263
+ motion: "(prefers-reduced-motion)";
2264
+ hover: "(any-hover: hover)";
2265
+ dark: "(prefers-color-scheme: dark)";
2266
+ light: "(prefers-color-scheme: light)";
2267
+ }, import("@stitches/react/types/css-util").CSS<{
2268
+ bp1: "(min-width: 520px)";
2269
+ bp2: "(min-width: 900px)";
2270
+ bp3: "(min-width: 1200px)";
2271
+ bp4: "(min-width: 1800px)";
2272
+ motion: "(prefers-reduced-motion)";
2273
+ hover: "(any-hover: hover)";
2274
+ dark: "(prefers-color-scheme: dark)";
2275
+ light: "(prefers-color-scheme: light)";
2276
+ }, {
2277
+ colors: {
2278
+ hiContrast: string;
2279
+ loContrast: string;
2280
+ canvas: string;
2281
+ panel: string;
2282
+ transparentPanel: string;
2283
+ shadowLight: string;
2284
+ shadowDark: string;
2285
+ blackA1: string;
2286
+ blackA2: string;
2287
+ blackA3: string;
2288
+ blackA4: string;
2289
+ blackA5: string;
2290
+ blackA6: string;
2291
+ blackA7: string;
2292
+ blackA8: string;
2293
+ blackA9: string;
2294
+ blackA10: string;
2295
+ blackA11: string;
2296
+ blackA12: string;
2297
+ whiteA1: string;
2298
+ whiteA2: string;
2299
+ whiteA3: string;
2300
+ whiteA4: string;
2301
+ whiteA5: string;
2302
+ whiteA6: string;
2303
+ whiteA7: string;
2304
+ whiteA8: string;
2305
+ whiteA9: string;
2306
+ whiteA10: string;
2307
+ whiteA11: string;
2308
+ whiteA12: string;
2309
+ gold1: string;
2310
+ gold2: string;
2311
+ gold3: string;
2312
+ gold4: string;
2313
+ gold5: string;
2314
+ gold6: string;
2315
+ gold7: string;
2316
+ gold8: string;
2317
+ gold9: string;
2318
+ gold10: string;
2319
+ gold11: string;
2320
+ gold12: string;
2321
+ bronze1: string;
2322
+ bronze2: string;
2323
+ bronze3: string;
2324
+ bronze4: string;
2325
+ bronze5: string;
2326
+ bronze6: string;
2327
+ bronze7: string;
2328
+ bronze8: string;
2329
+ bronze9: string;
2330
+ bronze10: string;
2331
+ bronze11: string;
2332
+ bronze12: string;
2333
+ brown1: string;
2334
+ brown2: string;
2335
+ brown3: string;
2336
+ brown4: string;
2337
+ brown5: string;
2338
+ brown6: string;
2339
+ brown7: string;
2340
+ brown8: string;
2341
+ brown9: string;
2342
+ brown10: string;
2343
+ brown11: string;
2344
+ brown12: string;
2345
+ orange1: string;
2346
+ orange2: string;
2347
+ orange3: string;
2348
+ orange4: string;
2349
+ orange5: string;
2350
+ orange6: string;
2351
+ orange7: string;
2352
+ orange8: string;
2353
+ orange9: string;
2354
+ orange10: string;
2355
+ orange11: string;
2356
+ orange12: string;
2357
+ amber1: string;
2358
+ amber2: string;
2359
+ amber3: string;
2360
+ amber4: string;
2361
+ amber5: string;
2362
+ amber6: string;
2363
+ amber7: string;
2364
+ amber8: string;
2365
+ amber9: string;
2366
+ amber10: string;
2367
+ amber11: string;
2368
+ amber12: string;
2369
+ yellow1: string;
2370
+ yellow2: string;
2371
+ yellow3: string;
2372
+ yellow4: string;
2373
+ yellow5: string;
2374
+ yellow6: string;
2375
+ yellow7: string;
2376
+ yellow8: string;
2377
+ yellow9: string;
2378
+ yellow10: string;
2379
+ yellow11: string;
2380
+ yellow12: string;
2381
+ lime1: string;
2382
+ lime2: string;
2383
+ lime3: string;
2384
+ lime4: string;
2385
+ lime5: string;
2386
+ lime6: string;
2387
+ lime7: string;
2388
+ lime8: string;
2389
+ lime9: string;
2390
+ lime10: string;
2391
+ lime11: string;
2392
+ lime12: string;
2393
+ grass1: string;
2394
+ grass2: string;
2395
+ grass3: string;
2396
+ grass4: string;
2397
+ grass5: string;
2398
+ grass6: string;
2399
+ grass7: string;
2400
+ grass8: string;
2401
+ grass9: string;
2402
+ grass10: string;
2403
+ grass11: string;
2404
+ grass12: string;
2405
+ green1: string;
2406
+ green2: string;
2407
+ green3: string;
2408
+ green4: string;
2409
+ green5: string;
2410
+ green6: string;
2411
+ green7: string;
2412
+ green8: string;
2413
+ green9: string;
2414
+ green10: string;
2415
+ green11: string;
2416
+ green12: string;
2417
+ teal1: string;
2418
+ teal2: string;
2419
+ teal3: string;
2420
+ teal4: string;
2421
+ teal5: string;
2422
+ teal6: string;
2423
+ teal7: string;
2424
+ teal8: string;
2425
+ teal9: string;
2426
+ teal10: string;
2427
+ teal11: string;
2428
+ teal12: string;
2429
+ cyan1: string;
2430
+ cyan2: string;
2431
+ cyan3: string;
2432
+ cyan4: string;
2433
+ cyan5: string;
2434
+ cyan6: string;
2435
+ cyan7: string;
2436
+ cyan8: string;
2437
+ cyan9: string;
2438
+ cyan10: string;
2439
+ cyan11: string;
2440
+ cyan12: string;
2441
+ mint1: string;
2442
+ mint2: string;
2443
+ mint3: string;
2444
+ mint4: string;
2445
+ mint5: string;
2446
+ mint6: string;
2447
+ mint7: string;
2448
+ mint8: string;
2449
+ mint9: string;
2450
+ mint10: string;
2451
+ mint11: string;
2452
+ mint12: string;
2453
+ sky1: string;
2454
+ sky2: string;
2455
+ sky3: string;
2456
+ sky4: string;
2457
+ sky5: string;
2458
+ sky6: string;
2459
+ sky7: string;
2460
+ sky8: string;
2461
+ sky9: string;
2462
+ sky10: string;
2463
+ sky11: string;
2464
+ sky12: string;
2465
+ blue1: string;
2466
+ blue2: string;
2467
+ blue3: string;
2468
+ blue4: string;
2469
+ blue5: string;
2470
+ blue6: string;
2471
+ blue7: string;
2472
+ blue8: string;
2473
+ blue9: string;
2474
+ blue10: string;
2475
+ blue11: string;
2476
+ blue12: string;
2477
+ indigo1: string;
2478
+ indigo2: string;
2479
+ indigo3: string;
2480
+ indigo4: string;
2481
+ indigo5: string;
2482
+ indigo6: string;
2483
+ indigo7: string;
2484
+ indigo8: string;
2485
+ indigo9: string;
2486
+ indigo10: string;
2487
+ indigo11: string;
2488
+ indigo12: string;
2489
+ violet1: string;
2490
+ violet2: string;
2491
+ violet3: string;
2492
+ violet4: string;
2493
+ violet5: string;
2494
+ violet6: string;
2495
+ violet7: string;
2496
+ violet8: string;
2497
+ violet9: string;
2498
+ violet10: string;
2499
+ violet11: string;
2500
+ violet12: string;
2501
+ purple1: string;
2502
+ purple2: string;
2503
+ purple3: string;
2504
+ purple4: string;
2505
+ purple5: string;
2506
+ purple6: string;
2507
+ purple7: string;
2508
+ purple8: string;
2509
+ purple9: string;
2510
+ purple10: string;
2511
+ purple11: string;
2512
+ purple12: string;
2513
+ plum1: string;
2514
+ plum2: string;
2515
+ plum3: string;
2516
+ plum4: string;
2517
+ plum5: string;
2518
+ plum6: string;
2519
+ plum7: string;
2520
+ plum8: string;
2521
+ plum9: string;
2522
+ plum10: string;
2523
+ plum11: string;
2524
+ plum12: string;
2525
+ pink1: string;
2526
+ pink2: string;
2527
+ pink3: string;
2528
+ pink4: string;
2529
+ pink5: string;
2530
+ pink6: string;
2531
+ pink7: string;
2532
+ pink8: string;
2533
+ pink9: string;
2534
+ pink10: string;
2535
+ pink11: string;
2536
+ pink12: string;
2537
+ crimson1: string;
2538
+ crimson2: string;
2539
+ crimson3: string;
2540
+ crimson4: string;
2541
+ crimson5: string;
2542
+ crimson6: string;
2543
+ crimson7: string;
2544
+ crimson8: string;
2545
+ crimson9: string;
2546
+ crimson10: string;
2547
+ crimson11: string;
2548
+ crimson12: string;
2549
+ red1: string;
2550
+ red2: string;
2551
+ red3: string;
2552
+ red4: string;
2553
+ red5: string;
2554
+ red6: string;
2555
+ red7: string;
2556
+ red8: string;
2557
+ red9: string;
2558
+ red10: string;
2559
+ red11: string;
2560
+ red12: string;
2561
+ tomato1: string;
2562
+ tomato2: string;
2563
+ tomato3: string;
2564
+ tomato4: string;
2565
+ tomato5: string;
2566
+ tomato6: string;
2567
+ tomato7: string;
2568
+ tomato8: string;
2569
+ tomato9: string;
2570
+ tomato10: string;
2571
+ tomato11: string;
2572
+ tomato12: string;
2573
+ sand1: string;
2574
+ sand2: string;
2575
+ sand3: string;
2576
+ sand4: string;
2577
+ sand5: string;
2578
+ sand6: string;
2579
+ sand7: string;
2580
+ sand8: string;
2581
+ sand9: string;
2582
+ sand10: string;
2583
+ sand11: string;
2584
+ sand12: string;
2585
+ olive1: string;
2586
+ olive2: string;
2587
+ olive3: string;
2588
+ olive4: string;
2589
+ olive5: string;
2590
+ olive6: string;
2591
+ olive7: string;
2592
+ olive8: string;
2593
+ olive9: string;
2594
+ olive10: string;
2595
+ olive11: string;
2596
+ olive12: string;
2597
+ sage1: string;
2598
+ sage2: string;
2599
+ sage3: string;
2600
+ sage4: string;
2601
+ sage5: string;
2602
+ sage6: string;
2603
+ sage7: string;
2604
+ sage8: string;
2605
+ sage9: string;
2606
+ sage10: string;
2607
+ sage11: string;
2608
+ sage12: string;
2609
+ slate1: string;
2610
+ slate2: string;
2611
+ slate3: string;
2612
+ slate4: string;
2613
+ slate5: string;
2614
+ slate6: string;
2615
+ slate7: string;
2616
+ slate8: string;
2617
+ slate9: string;
2618
+ slate10: string;
2619
+ slate11: string;
2620
+ slate12: string;
2621
+ mauve1: string;
2622
+ mauve2: string;
2623
+ mauve3: string;
2624
+ mauve4: string;
2625
+ mauve5: string;
2626
+ mauve6: string;
2627
+ mauve7: string;
2628
+ mauve8: string;
2629
+ mauve9: string;
2630
+ mauve10: string;
2631
+ mauve11: string;
2632
+ mauve12: string;
2633
+ gray1: string;
2634
+ gray2: string;
2635
+ gray3: string;
2636
+ gray4: string;
2637
+ gray5: string;
2638
+ gray6: string;
2639
+ gray7: string;
2640
+ gray8: string;
2641
+ gray9: string;
2642
+ gray10: string;
2643
+ gray11: string;
2644
+ gray12: string;
2645
+ };
2646
+ fonts: {
2647
+ untitled: string;
2648
+ mono: string;
2649
+ };
2650
+ space: {
2651
+ 1: string;
2652
+ 2: string;
2653
+ 3: string;
2654
+ 4: string;
2655
+ 5: string;
2656
+ 6: string;
2657
+ 7: string;
2658
+ 8: string;
2659
+ 9: string;
2660
+ };
2661
+ sizes: {
2662
+ 1: string;
2663
+ 2: string;
2664
+ 3: string;
2665
+ 4: string;
2666
+ 5: string;
2667
+ 6: string;
2668
+ 7: string;
2669
+ 8: string;
2670
+ 9: string;
2671
+ };
2672
+ fontSizes: {
2673
+ 1: string;
2674
+ 2: string;
2675
+ 3: string;
2676
+ 4: string;
2677
+ 5: string;
2678
+ 6: string;
2679
+ 7: string;
2680
+ 8: string;
2681
+ 9: string;
2682
+ };
2683
+ radii: {
2684
+ 1: string;
2685
+ 2: string;
2686
+ 3: string;
2687
+ 4: string;
2688
+ round: string;
2689
+ pill: string;
2690
+ };
2691
+ zIndices: {
2692
+ 1: string;
2693
+ 2: string;
2694
+ 3: string;
2695
+ 4: string;
2696
+ max: string;
2697
+ };
2698
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
2699
+ p: (value: {
2700
+ readonly [$$PropertyValue]: "padding";
2701
+ }) => {
2702
+ padding: {
2703
+ readonly [$$PropertyValue]: "padding";
2704
+ };
2705
+ };
2706
+ pt: (value: {
2707
+ readonly [$$PropertyValue]: "paddingTop";
2708
+ }) => {
2709
+ paddingTop: {
2710
+ readonly [$$PropertyValue]: "paddingTop";
2711
+ };
2712
+ };
2713
+ pr: (value: {
2714
+ readonly [$$PropertyValue]: "paddingRight";
2715
+ }) => {
2716
+ paddingRight: {
2717
+ readonly [$$PropertyValue]: "paddingRight";
2718
+ };
2719
+ };
2720
+ pb: (value: {
2721
+ readonly [$$PropertyValue]: "paddingBottom";
2722
+ }) => {
2723
+ paddingBottom: {
2724
+ readonly [$$PropertyValue]: "paddingBottom";
2725
+ };
2726
+ };
2727
+ pl: (value: {
2728
+ readonly [$$PropertyValue]: "paddingLeft";
2729
+ }) => {
2730
+ paddingLeft: {
2731
+ readonly [$$PropertyValue]: "paddingLeft";
2732
+ };
2733
+ };
2734
+ px: (value: {
2735
+ readonly [$$PropertyValue]: "paddingLeft";
2736
+ }) => {
2737
+ paddingLeft: {
2738
+ readonly [$$PropertyValue]: "paddingLeft";
2739
+ };
2740
+ paddingRight: {
2741
+ readonly [$$PropertyValue]: "paddingLeft";
2742
+ };
2743
+ };
2744
+ py: (value: {
2745
+ readonly [$$PropertyValue]: "paddingTop";
2746
+ }) => {
2747
+ paddingTop: {
2748
+ readonly [$$PropertyValue]: "paddingTop";
2749
+ };
2750
+ paddingBottom: {
2751
+ readonly [$$PropertyValue]: "paddingTop";
2752
+ };
2753
+ };
2754
+ m: (value: {
2755
+ readonly [$$PropertyValue]: "margin";
2756
+ }) => {
2757
+ margin: {
2758
+ readonly [$$PropertyValue]: "margin";
2759
+ };
2760
+ };
2761
+ mt: (value: {
2762
+ readonly [$$PropertyValue]: "marginTop";
2763
+ }) => {
2764
+ marginTop: {
2765
+ readonly [$$PropertyValue]: "marginTop";
2766
+ };
2767
+ };
2768
+ mr: (value: {
2769
+ readonly [$$PropertyValue]: "marginRight";
2770
+ }) => {
2771
+ marginRight: {
2772
+ readonly [$$PropertyValue]: "marginRight";
2773
+ };
2774
+ };
2775
+ mb: (value: {
2776
+ readonly [$$PropertyValue]: "marginBottom";
2777
+ }) => {
2778
+ marginBottom: {
2779
+ readonly [$$PropertyValue]: "marginBottom";
2780
+ };
2781
+ };
2782
+ ml: (value: {
2783
+ readonly [$$PropertyValue]: "marginLeft";
2784
+ }) => {
2785
+ marginLeft: {
2786
+ readonly [$$PropertyValue]: "marginLeft";
2787
+ };
2788
+ };
2789
+ mx: (value: {
2790
+ readonly [$$PropertyValue]: "marginLeft";
2791
+ }) => {
2792
+ marginLeft: {
2793
+ readonly [$$PropertyValue]: "marginLeft";
2794
+ };
2795
+ marginRight: {
2796
+ readonly [$$PropertyValue]: "marginLeft";
2797
+ };
2798
+ };
2799
+ my: (value: {
2800
+ readonly [$$PropertyValue]: "marginTop";
2801
+ }) => {
2802
+ marginTop: {
2803
+ readonly [$$PropertyValue]: "marginTop";
2804
+ };
2805
+ marginBottom: {
2806
+ readonly [$$PropertyValue]: "marginTop";
2807
+ };
2808
+ };
2809
+ ta: (value: {
2810
+ readonly [$$PropertyValue]: "textAlign";
2811
+ }) => {
2812
+ textAlign: {
2813
+ readonly [$$PropertyValue]: "textAlign";
2814
+ };
2815
+ };
2816
+ fd: (value: {
2817
+ readonly [$$PropertyValue]: "flexDirection";
2818
+ }) => {
2819
+ flexDirection: {
2820
+ readonly [$$PropertyValue]: "flexDirection";
2821
+ };
2822
+ };
2823
+ fw: (value: {
2824
+ readonly [$$PropertyValue]: "flexWrap";
2825
+ }) => {
2826
+ flexWrap: {
2827
+ readonly [$$PropertyValue]: "flexWrap";
2828
+ };
2829
+ };
2830
+ ai: (value: {
2831
+ readonly [$$PropertyValue]: "alignItems";
2832
+ }) => {
2833
+ alignItems: {
2834
+ readonly [$$PropertyValue]: "alignItems";
2835
+ };
2836
+ };
2837
+ ac: (value: {
2838
+ readonly [$$PropertyValue]: "alignContent";
2839
+ }) => {
2840
+ alignContent: {
2841
+ readonly [$$PropertyValue]: "alignContent";
2842
+ };
2843
+ };
2844
+ jc: (value: {
2845
+ readonly [$$PropertyValue]: "justifyContent";
2846
+ }) => {
2847
+ justifyContent: {
2848
+ readonly [$$PropertyValue]: "justifyContent";
2849
+ };
2850
+ };
2851
+ as: (value: {
2852
+ readonly [$$PropertyValue]: "alignSelf";
2853
+ }) => {
2854
+ alignSelf: {
2855
+ readonly [$$PropertyValue]: "alignSelf";
2856
+ };
2857
+ };
2858
+ fg: (value: {
2859
+ readonly [$$PropertyValue]: "flexGrow";
2860
+ }) => {
2861
+ flexGrow: {
2862
+ readonly [$$PropertyValue]: "flexGrow";
2863
+ };
2864
+ };
2865
+ fs: (value: {
2866
+ readonly [$$PropertyValue]: "flexShrink";
2867
+ }) => {
2868
+ flexShrink: {
2869
+ readonly [$$PropertyValue]: "flexShrink";
2870
+ };
2871
+ };
2872
+ fb: (value: {
2873
+ readonly [$$PropertyValue]: "flexBasis";
2874
+ }) => {
2875
+ flexBasis: {
2876
+ readonly [$$PropertyValue]: "flexBasis";
2877
+ };
2878
+ };
2879
+ bc: (value: {
2880
+ readonly [$$PropertyValue]: "backgroundColor";
2881
+ }) => {
2882
+ backgroundColor: {
2883
+ readonly [$$PropertyValue]: "backgroundColor";
2884
+ };
2885
+ };
2886
+ br: (value: {
2887
+ readonly [$$PropertyValue]: "borderRadius";
2888
+ }) => {
2889
+ borderRadius: {
2890
+ readonly [$$PropertyValue]: "borderRadius";
2891
+ };
2892
+ };
2893
+ btrr: (value: {
2894
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2895
+ }) => {
2896
+ borderTopRightRadius: {
2897
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2898
+ };
2899
+ };
2900
+ bbrr: (value: {
2901
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2902
+ }) => {
2903
+ borderBottomRightRadius: {
2904
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2905
+ };
2906
+ };
2907
+ bblr: (value: {
2908
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2909
+ }) => {
2910
+ borderBottomLeftRadius: {
2911
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2912
+ };
2913
+ };
2914
+ btlr: (value: {
2915
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2916
+ }) => {
2917
+ borderTopLeftRadius: {
2918
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2919
+ };
2920
+ };
2921
+ bs: (value: {
2922
+ readonly [$$PropertyValue]: "boxShadow";
2923
+ }) => {
2924
+ boxShadow: {
2925
+ readonly [$$PropertyValue]: "boxShadow";
2926
+ };
2927
+ };
2928
+ lh: (value: {
2929
+ readonly [$$PropertyValue]: "lineHeight";
2930
+ }) => {
2931
+ lineHeight: {
2932
+ readonly [$$PropertyValue]: "lineHeight";
2933
+ };
2934
+ };
2935
+ ox: (value: {
2936
+ readonly [$$PropertyValue]: "overflowX";
2937
+ }) => {
2938
+ overflowX: {
2939
+ readonly [$$PropertyValue]: "overflowX";
2940
+ };
2941
+ };
2942
+ oy: (value: {
2943
+ readonly [$$PropertyValue]: "overflowY";
2944
+ }) => {
2945
+ overflowY: {
2946
+ readonly [$$PropertyValue]: "overflowY";
2947
+ };
2948
+ };
2949
+ pe: (value: {
2950
+ readonly [$$PropertyValue]: "pointerEvents";
2951
+ }) => {
2952
+ pointerEvents: {
2953
+ readonly [$$PropertyValue]: "pointerEvents";
2954
+ };
2955
+ };
2956
+ us: (value: {
2957
+ readonly [$$PropertyValue]: "userSelect";
2958
+ }) => {
2959
+ WebkitUserSelect: {
2960
+ readonly [$$PropertyValue]: "userSelect";
2961
+ };
2962
+ userSelect: {
2963
+ readonly [$$PropertyValue]: "userSelect";
2964
+ };
2965
+ };
2966
+ userSelect: (value: {
2967
+ readonly [$$PropertyValue]: "userSelect";
2968
+ }) => {
2969
+ WebkitUserSelect: {
2970
+ readonly [$$PropertyValue]: "userSelect";
2971
+ };
2972
+ userSelect: {
2973
+ readonly [$$PropertyValue]: "userSelect";
2974
+ };
2975
+ };
2976
+ size: (value: {
2977
+ readonly [$$PropertyValue]: "width";
2978
+ }) => {
2979
+ width: {
2980
+ readonly [$$PropertyValue]: "width";
2981
+ };
2982
+ height: {
2983
+ readonly [$$PropertyValue]: "width";
2984
+ };
2985
+ };
2986
+ appearance: (value: {
2987
+ readonly [$$PropertyValue]: "appearance";
2988
+ }) => {
2989
+ WebkitAppearance: {
2990
+ readonly [$$PropertyValue]: "appearance";
2991
+ };
2992
+ appearance: {
2993
+ readonly [$$PropertyValue]: "appearance";
2994
+ };
2995
+ };
2996
+ backgroundClip: (value: {
2997
+ readonly [$$PropertyValue]: "backgroundClip";
2998
+ }) => {
2999
+ WebkitBackgroundClip: {
3000
+ readonly [$$PropertyValue]: "backgroundClip";
3001
+ };
3002
+ backgroundClip: {
3003
+ readonly [$$PropertyValue]: "backgroundClip";
3004
+ };
3005
+ };
3006
+ }>>;
3007
+ declare type ContextMenuCheckboxItemPrimitiveProps = React.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>;
3008
+ declare type ContextMenuCheckboxItemProps = ContextMenuCheckboxItemPrimitiveProps & {
3009
+ css?: CSS;
3010
+ };
3011
+ declare const ContextMenuCheckboxItem: React.ForwardRefExoticComponent<Pick<ContextMenuCheckboxItemProps, "color" | "translate" | "hidden" | "style" | "css" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "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" | "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" | "disabled" | "textValue" | "checked" | "onCheckedChange"> & React.RefAttributes<HTMLDivElement>>;
3012
+ declare const ContextMenuRadioGroup: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>, {}, {
3013
+ bp1: "(min-width: 520px)";
3014
+ bp2: "(min-width: 900px)";
3015
+ bp3: "(min-width: 1200px)";
3016
+ bp4: "(min-width: 1800px)";
3017
+ motion: "(prefers-reduced-motion)";
3018
+ hover: "(any-hover: hover)";
3019
+ dark: "(prefers-color-scheme: dark)";
3020
+ light: "(prefers-color-scheme: light)";
3021
+ }, import("@stitches/react/types/css-util").CSS<{
3022
+ bp1: "(min-width: 520px)";
3023
+ bp2: "(min-width: 900px)";
3024
+ bp3: "(min-width: 1200px)";
3025
+ bp4: "(min-width: 1800px)";
3026
+ motion: "(prefers-reduced-motion)";
3027
+ hover: "(any-hover: hover)";
3028
+ dark: "(prefers-color-scheme: dark)";
3029
+ light: "(prefers-color-scheme: light)";
3030
+ }, {
3031
+ colors: {
3032
+ hiContrast: string;
3033
+ loContrast: string;
3034
+ canvas: string;
3035
+ panel: string;
3036
+ transparentPanel: string;
3037
+ shadowLight: string;
3038
+ shadowDark: string;
3039
+ blackA1: string;
3040
+ blackA2: string;
3041
+ blackA3: string;
3042
+ blackA4: string;
3043
+ blackA5: string;
3044
+ blackA6: string;
3045
+ blackA7: string;
3046
+ blackA8: string;
3047
+ blackA9: string;
3048
+ blackA10: string;
3049
+ blackA11: string;
3050
+ blackA12: string;
3051
+ whiteA1: string;
3052
+ whiteA2: string;
3053
+ whiteA3: string;
3054
+ whiteA4: string;
3055
+ whiteA5: string;
3056
+ whiteA6: string;
3057
+ whiteA7: string;
3058
+ whiteA8: string;
3059
+ whiteA9: string;
3060
+ whiteA10: string;
3061
+ whiteA11: string;
3062
+ whiteA12: string;
3063
+ gold1: string;
3064
+ gold2: string;
3065
+ gold3: string;
3066
+ gold4: string;
3067
+ gold5: string;
3068
+ gold6: string;
3069
+ gold7: string;
3070
+ gold8: string;
3071
+ gold9: string;
3072
+ gold10: string;
3073
+ gold11: string;
3074
+ gold12: string;
3075
+ bronze1: string;
3076
+ bronze2: string;
3077
+ bronze3: string;
3078
+ bronze4: string;
3079
+ bronze5: string;
3080
+ bronze6: string;
3081
+ bronze7: string;
3082
+ bronze8: string;
3083
+ bronze9: string;
3084
+ bronze10: string;
3085
+ bronze11: string;
3086
+ bronze12: string;
3087
+ brown1: string;
3088
+ brown2: string;
3089
+ brown3: string;
3090
+ brown4: string;
3091
+ brown5: string;
3092
+ brown6: string;
3093
+ brown7: string;
3094
+ brown8: string;
3095
+ brown9: string;
3096
+ brown10: string;
3097
+ brown11: string;
3098
+ brown12: string;
3099
+ orange1: string;
3100
+ orange2: string;
3101
+ orange3: string;
3102
+ orange4: string;
3103
+ orange5: string;
3104
+ orange6: string;
3105
+ orange7: string;
3106
+ orange8: string;
3107
+ orange9: string;
3108
+ orange10: string;
3109
+ orange11: string;
3110
+ orange12: string;
3111
+ amber1: string;
3112
+ amber2: string;
3113
+ amber3: string;
3114
+ amber4: string;
3115
+ amber5: string;
3116
+ amber6: string;
3117
+ amber7: string;
3118
+ amber8: string;
3119
+ amber9: string;
3120
+ amber10: string;
3121
+ amber11: string;
3122
+ amber12: string;
3123
+ yellow1: string;
3124
+ yellow2: string;
3125
+ yellow3: string;
3126
+ yellow4: string;
3127
+ yellow5: string;
3128
+ yellow6: string;
3129
+ yellow7: string;
3130
+ yellow8: string;
3131
+ yellow9: string;
3132
+ yellow10: string;
3133
+ yellow11: string;
3134
+ yellow12: string;
3135
+ lime1: string;
3136
+ lime2: string;
3137
+ lime3: string;
3138
+ lime4: string;
3139
+ lime5: string;
3140
+ lime6: string;
3141
+ lime7: string;
3142
+ lime8: string;
3143
+ lime9: string;
3144
+ lime10: string;
3145
+ lime11: string;
3146
+ lime12: string;
3147
+ grass1: string;
3148
+ grass2: string;
3149
+ grass3: string;
3150
+ grass4: string;
3151
+ grass5: string;
3152
+ grass6: string;
3153
+ grass7: string;
3154
+ grass8: string;
3155
+ grass9: string;
3156
+ grass10: string;
3157
+ grass11: string;
3158
+ grass12: string;
3159
+ green1: string;
3160
+ green2: string;
3161
+ green3: string;
3162
+ green4: string;
3163
+ green5: string;
3164
+ green6: string;
3165
+ green7: string;
3166
+ green8: string;
3167
+ green9: string;
3168
+ green10: string;
3169
+ green11: string;
3170
+ green12: string;
3171
+ teal1: string;
3172
+ teal2: string;
3173
+ teal3: string;
3174
+ teal4: string;
3175
+ teal5: string;
3176
+ teal6: string;
3177
+ teal7: string;
3178
+ teal8: string;
3179
+ teal9: string;
3180
+ teal10: string;
3181
+ teal11: string;
3182
+ teal12: string;
3183
+ cyan1: string;
3184
+ cyan2: string;
3185
+ cyan3: string;
3186
+ cyan4: string;
3187
+ cyan5: string;
3188
+ cyan6: string;
3189
+ cyan7: string;
3190
+ cyan8: string;
3191
+ cyan9: string;
3192
+ cyan10: string;
3193
+ cyan11: string;
3194
+ cyan12: string;
3195
+ mint1: string;
3196
+ mint2: string;
3197
+ mint3: string;
3198
+ mint4: string;
3199
+ mint5: string;
3200
+ mint6: string;
3201
+ mint7: string;
3202
+ mint8: string;
3203
+ mint9: string;
3204
+ mint10: string;
3205
+ mint11: string;
3206
+ mint12: string;
3207
+ sky1: string;
3208
+ sky2: string;
3209
+ sky3: string;
3210
+ sky4: string;
3211
+ sky5: string;
3212
+ sky6: string;
3213
+ sky7: string;
3214
+ sky8: string;
3215
+ sky9: string;
3216
+ sky10: string;
3217
+ sky11: string;
3218
+ sky12: string;
3219
+ blue1: string;
3220
+ blue2: string;
3221
+ blue3: string;
3222
+ blue4: string;
3223
+ blue5: string;
3224
+ blue6: string;
3225
+ blue7: string;
3226
+ blue8: string;
3227
+ blue9: string;
3228
+ blue10: string;
3229
+ blue11: string;
3230
+ blue12: string;
3231
+ indigo1: string;
3232
+ indigo2: string;
3233
+ indigo3: string;
3234
+ indigo4: string;
3235
+ indigo5: string;
3236
+ indigo6: string;
3237
+ indigo7: string;
3238
+ indigo8: string;
3239
+ indigo9: string;
3240
+ indigo10: string;
3241
+ indigo11: string;
3242
+ indigo12: string;
3243
+ violet1: string;
3244
+ violet2: string;
3245
+ violet3: string;
3246
+ violet4: string;
3247
+ violet5: string;
3248
+ violet6: string;
3249
+ violet7: string;
3250
+ violet8: string;
3251
+ violet9: string;
3252
+ violet10: string;
3253
+ violet11: string;
3254
+ violet12: string;
3255
+ purple1: string;
3256
+ purple2: string;
3257
+ purple3: string;
3258
+ purple4: string;
3259
+ purple5: string;
3260
+ purple6: string;
3261
+ purple7: string;
3262
+ purple8: string;
3263
+ purple9: string;
3264
+ purple10: string;
3265
+ purple11: string;
3266
+ purple12: string;
3267
+ plum1: string;
3268
+ plum2: string;
3269
+ plum3: string;
3270
+ plum4: string;
3271
+ plum5: string;
3272
+ plum6: string;
3273
+ plum7: string;
3274
+ plum8: string;
3275
+ plum9: string;
3276
+ plum10: string;
3277
+ plum11: string;
3278
+ plum12: string;
3279
+ pink1: string;
3280
+ pink2: string;
3281
+ pink3: string;
3282
+ pink4: string;
3283
+ pink5: string;
3284
+ pink6: string;
3285
+ pink7: string;
3286
+ pink8: string;
3287
+ pink9: string;
3288
+ pink10: string;
3289
+ pink11: string;
3290
+ pink12: string;
3291
+ crimson1: string;
3292
+ crimson2: string;
3293
+ crimson3: string;
3294
+ crimson4: string;
3295
+ crimson5: string;
3296
+ crimson6: string;
3297
+ crimson7: string;
3298
+ crimson8: string;
3299
+ crimson9: string;
3300
+ crimson10: string;
3301
+ crimson11: string;
3302
+ crimson12: string;
3303
+ red1: string;
3304
+ red2: string;
3305
+ red3: string;
3306
+ red4: string;
3307
+ red5: string;
3308
+ red6: string;
3309
+ red7: string;
3310
+ red8: string;
3311
+ red9: string;
3312
+ red10: string;
3313
+ red11: string;
3314
+ red12: string;
3315
+ tomato1: string;
3316
+ tomato2: string;
3317
+ tomato3: string;
3318
+ tomato4: string;
3319
+ tomato5: string;
3320
+ tomato6: string;
3321
+ tomato7: string;
3322
+ tomato8: string;
3323
+ tomato9: string;
3324
+ tomato10: string;
3325
+ tomato11: string;
3326
+ tomato12: string;
3327
+ sand1: string;
3328
+ sand2: string;
3329
+ sand3: string;
3330
+ sand4: string;
3331
+ sand5: string;
3332
+ sand6: string;
3333
+ sand7: string;
3334
+ sand8: string;
3335
+ sand9: string;
3336
+ sand10: string;
3337
+ sand11: string;
3338
+ sand12: string;
3339
+ olive1: string;
3340
+ olive2: string;
3341
+ olive3: string;
3342
+ olive4: string;
3343
+ olive5: string;
3344
+ olive6: string;
3345
+ olive7: string;
3346
+ olive8: string;
3347
+ olive9: string;
3348
+ olive10: string;
3349
+ olive11: string;
3350
+ olive12: string;
3351
+ sage1: string;
3352
+ sage2: string;
3353
+ sage3: string;
3354
+ sage4: string;
3355
+ sage5: string;
3356
+ sage6: string;
3357
+ sage7: string;
3358
+ sage8: string;
3359
+ sage9: string;
3360
+ sage10: string;
3361
+ sage11: string;
3362
+ sage12: string;
3363
+ slate1: string;
3364
+ slate2: string;
3365
+ slate3: string;
3366
+ slate4: string;
3367
+ slate5: string;
3368
+ slate6: string;
3369
+ slate7: string;
3370
+ slate8: string;
3371
+ slate9: string;
3372
+ slate10: string;
3373
+ slate11: string;
3374
+ slate12: string;
3375
+ mauve1: string;
3376
+ mauve2: string;
3377
+ mauve3: string;
3378
+ mauve4: string;
3379
+ mauve5: string;
3380
+ mauve6: string;
3381
+ mauve7: string;
3382
+ mauve8: string;
3383
+ mauve9: string;
3384
+ mauve10: string;
3385
+ mauve11: string;
3386
+ mauve12: string;
3387
+ gray1: string;
3388
+ gray2: string;
3389
+ gray3: string;
3390
+ gray4: string;
3391
+ gray5: string;
3392
+ gray6: string;
3393
+ gray7: string;
3394
+ gray8: string;
3395
+ gray9: string;
3396
+ gray10: string;
3397
+ gray11: string;
3398
+ gray12: string;
3399
+ };
3400
+ fonts: {
3401
+ untitled: string;
3402
+ mono: string;
3403
+ };
3404
+ space: {
3405
+ 1: string;
3406
+ 2: string;
3407
+ 3: string;
3408
+ 4: string;
3409
+ 5: string;
3410
+ 6: string;
3411
+ 7: string;
3412
+ 8: string;
3413
+ 9: string;
3414
+ };
3415
+ sizes: {
3416
+ 1: string;
3417
+ 2: string;
3418
+ 3: string;
3419
+ 4: string;
3420
+ 5: string;
3421
+ 6: string;
3422
+ 7: string;
3423
+ 8: string;
3424
+ 9: string;
3425
+ };
3426
+ fontSizes: {
3427
+ 1: string;
3428
+ 2: string;
3429
+ 3: string;
3430
+ 4: string;
3431
+ 5: string;
3432
+ 6: string;
3433
+ 7: string;
3434
+ 8: string;
3435
+ 9: string;
3436
+ };
3437
+ radii: {
3438
+ 1: string;
3439
+ 2: string;
3440
+ 3: string;
3441
+ 4: string;
3442
+ round: string;
3443
+ pill: string;
3444
+ };
3445
+ zIndices: {
3446
+ 1: string;
3447
+ 2: string;
3448
+ 3: string;
3449
+ 4: string;
3450
+ max: string;
3451
+ };
3452
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
3453
+ p: (value: {
3454
+ readonly [$$PropertyValue]: "padding";
3455
+ }) => {
3456
+ padding: {
3457
+ readonly [$$PropertyValue]: "padding";
3458
+ };
3459
+ };
3460
+ pt: (value: {
3461
+ readonly [$$PropertyValue]: "paddingTop";
3462
+ }) => {
3463
+ paddingTop: {
3464
+ readonly [$$PropertyValue]: "paddingTop";
3465
+ };
3466
+ };
3467
+ pr: (value: {
3468
+ readonly [$$PropertyValue]: "paddingRight";
3469
+ }) => {
3470
+ paddingRight: {
3471
+ readonly [$$PropertyValue]: "paddingRight";
3472
+ };
3473
+ };
3474
+ pb: (value: {
3475
+ readonly [$$PropertyValue]: "paddingBottom";
3476
+ }) => {
3477
+ paddingBottom: {
3478
+ readonly [$$PropertyValue]: "paddingBottom";
3479
+ };
3480
+ };
3481
+ pl: (value: {
3482
+ readonly [$$PropertyValue]: "paddingLeft";
3483
+ }) => {
3484
+ paddingLeft: {
3485
+ readonly [$$PropertyValue]: "paddingLeft";
3486
+ };
3487
+ };
3488
+ px: (value: {
3489
+ readonly [$$PropertyValue]: "paddingLeft";
3490
+ }) => {
3491
+ paddingLeft: {
3492
+ readonly [$$PropertyValue]: "paddingLeft";
3493
+ };
3494
+ paddingRight: {
3495
+ readonly [$$PropertyValue]: "paddingLeft";
3496
+ };
3497
+ };
3498
+ py: (value: {
3499
+ readonly [$$PropertyValue]: "paddingTop";
3500
+ }) => {
3501
+ paddingTop: {
3502
+ readonly [$$PropertyValue]: "paddingTop";
3503
+ };
3504
+ paddingBottom: {
3505
+ readonly [$$PropertyValue]: "paddingTop";
3506
+ };
3507
+ };
3508
+ m: (value: {
3509
+ readonly [$$PropertyValue]: "margin";
3510
+ }) => {
3511
+ margin: {
3512
+ readonly [$$PropertyValue]: "margin";
3513
+ };
3514
+ };
3515
+ mt: (value: {
3516
+ readonly [$$PropertyValue]: "marginTop";
3517
+ }) => {
3518
+ marginTop: {
3519
+ readonly [$$PropertyValue]: "marginTop";
3520
+ };
3521
+ };
3522
+ mr: (value: {
3523
+ readonly [$$PropertyValue]: "marginRight";
3524
+ }) => {
3525
+ marginRight: {
3526
+ readonly [$$PropertyValue]: "marginRight";
3527
+ };
3528
+ };
3529
+ mb: (value: {
3530
+ readonly [$$PropertyValue]: "marginBottom";
3531
+ }) => {
3532
+ marginBottom: {
3533
+ readonly [$$PropertyValue]: "marginBottom";
3534
+ };
3535
+ };
3536
+ ml: (value: {
3537
+ readonly [$$PropertyValue]: "marginLeft";
3538
+ }) => {
3539
+ marginLeft: {
3540
+ readonly [$$PropertyValue]: "marginLeft";
3541
+ };
3542
+ };
3543
+ mx: (value: {
3544
+ readonly [$$PropertyValue]: "marginLeft";
3545
+ }) => {
3546
+ marginLeft: {
3547
+ readonly [$$PropertyValue]: "marginLeft";
3548
+ };
3549
+ marginRight: {
3550
+ readonly [$$PropertyValue]: "marginLeft";
3551
+ };
3552
+ };
3553
+ my: (value: {
3554
+ readonly [$$PropertyValue]: "marginTop";
3555
+ }) => {
3556
+ marginTop: {
3557
+ readonly [$$PropertyValue]: "marginTop";
3558
+ };
3559
+ marginBottom: {
3560
+ readonly [$$PropertyValue]: "marginTop";
3561
+ };
3562
+ };
3563
+ ta: (value: {
3564
+ readonly [$$PropertyValue]: "textAlign";
3565
+ }) => {
3566
+ textAlign: {
3567
+ readonly [$$PropertyValue]: "textAlign";
3568
+ };
3569
+ };
3570
+ fd: (value: {
3571
+ readonly [$$PropertyValue]: "flexDirection";
3572
+ }) => {
3573
+ flexDirection: {
3574
+ readonly [$$PropertyValue]: "flexDirection";
3575
+ };
3576
+ };
3577
+ fw: (value: {
3578
+ readonly [$$PropertyValue]: "flexWrap";
3579
+ }) => {
3580
+ flexWrap: {
3581
+ readonly [$$PropertyValue]: "flexWrap";
3582
+ };
3583
+ };
3584
+ ai: (value: {
3585
+ readonly [$$PropertyValue]: "alignItems";
3586
+ }) => {
3587
+ alignItems: {
3588
+ readonly [$$PropertyValue]: "alignItems";
3589
+ };
3590
+ };
3591
+ ac: (value: {
3592
+ readonly [$$PropertyValue]: "alignContent";
3593
+ }) => {
3594
+ alignContent: {
3595
+ readonly [$$PropertyValue]: "alignContent";
3596
+ };
3597
+ };
3598
+ jc: (value: {
3599
+ readonly [$$PropertyValue]: "justifyContent";
3600
+ }) => {
3601
+ justifyContent: {
3602
+ readonly [$$PropertyValue]: "justifyContent";
3603
+ };
3604
+ };
3605
+ as: (value: {
3606
+ readonly [$$PropertyValue]: "alignSelf";
3607
+ }) => {
3608
+ alignSelf: {
3609
+ readonly [$$PropertyValue]: "alignSelf";
3610
+ };
3611
+ };
3612
+ fg: (value: {
3613
+ readonly [$$PropertyValue]: "flexGrow";
3614
+ }) => {
3615
+ flexGrow: {
3616
+ readonly [$$PropertyValue]: "flexGrow";
3617
+ };
3618
+ };
3619
+ fs: (value: {
3620
+ readonly [$$PropertyValue]: "flexShrink";
3621
+ }) => {
3622
+ flexShrink: {
3623
+ readonly [$$PropertyValue]: "flexShrink";
3624
+ };
3625
+ };
3626
+ fb: (value: {
3627
+ readonly [$$PropertyValue]: "flexBasis";
3628
+ }) => {
3629
+ flexBasis: {
3630
+ readonly [$$PropertyValue]: "flexBasis";
3631
+ };
3632
+ };
3633
+ bc: (value: {
3634
+ readonly [$$PropertyValue]: "backgroundColor";
3635
+ }) => {
3636
+ backgroundColor: {
3637
+ readonly [$$PropertyValue]: "backgroundColor";
3638
+ };
3639
+ };
3640
+ br: (value: {
3641
+ readonly [$$PropertyValue]: "borderRadius";
3642
+ }) => {
3643
+ borderRadius: {
3644
+ readonly [$$PropertyValue]: "borderRadius";
3645
+ };
3646
+ };
3647
+ btrr: (value: {
3648
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3649
+ }) => {
3650
+ borderTopRightRadius: {
3651
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3652
+ };
3653
+ };
3654
+ bbrr: (value: {
3655
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3656
+ }) => {
3657
+ borderBottomRightRadius: {
3658
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3659
+ };
3660
+ };
3661
+ bblr: (value: {
3662
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3663
+ }) => {
3664
+ borderBottomLeftRadius: {
3665
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3666
+ };
3667
+ };
3668
+ btlr: (value: {
3669
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3670
+ }) => {
3671
+ borderTopLeftRadius: {
3672
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3673
+ };
3674
+ };
3675
+ bs: (value: {
3676
+ readonly [$$PropertyValue]: "boxShadow";
3677
+ }) => {
3678
+ boxShadow: {
3679
+ readonly [$$PropertyValue]: "boxShadow";
3680
+ };
3681
+ };
3682
+ lh: (value: {
3683
+ readonly [$$PropertyValue]: "lineHeight";
3684
+ }) => {
3685
+ lineHeight: {
3686
+ readonly [$$PropertyValue]: "lineHeight";
3687
+ };
3688
+ };
3689
+ ox: (value: {
3690
+ readonly [$$PropertyValue]: "overflowX";
3691
+ }) => {
3692
+ overflowX: {
3693
+ readonly [$$PropertyValue]: "overflowX";
3694
+ };
3695
+ };
3696
+ oy: (value: {
3697
+ readonly [$$PropertyValue]: "overflowY";
3698
+ }) => {
3699
+ overflowY: {
3700
+ readonly [$$PropertyValue]: "overflowY";
3701
+ };
3702
+ };
3703
+ pe: (value: {
3704
+ readonly [$$PropertyValue]: "pointerEvents";
3705
+ }) => {
3706
+ pointerEvents: {
3707
+ readonly [$$PropertyValue]: "pointerEvents";
3708
+ };
3709
+ };
3710
+ us: (value: {
3711
+ readonly [$$PropertyValue]: "userSelect";
3712
+ }) => {
3713
+ WebkitUserSelect: {
3714
+ readonly [$$PropertyValue]: "userSelect";
3715
+ };
3716
+ userSelect: {
3717
+ readonly [$$PropertyValue]: "userSelect";
3718
+ };
3719
+ };
3720
+ userSelect: (value: {
3721
+ readonly [$$PropertyValue]: "userSelect";
3722
+ }) => {
3723
+ WebkitUserSelect: {
3724
+ readonly [$$PropertyValue]: "userSelect";
3725
+ };
3726
+ userSelect: {
3727
+ readonly [$$PropertyValue]: "userSelect";
3728
+ };
3729
+ };
3730
+ size: (value: {
3731
+ readonly [$$PropertyValue]: "width";
3732
+ }) => {
3733
+ width: {
3734
+ readonly [$$PropertyValue]: "width";
3735
+ };
3736
+ height: {
3737
+ readonly [$$PropertyValue]: "width";
3738
+ };
3739
+ };
3740
+ appearance: (value: {
3741
+ readonly [$$PropertyValue]: "appearance";
3742
+ }) => {
3743
+ WebkitAppearance: {
3744
+ readonly [$$PropertyValue]: "appearance";
3745
+ };
3746
+ appearance: {
3747
+ readonly [$$PropertyValue]: "appearance";
3748
+ };
3749
+ };
3750
+ backgroundClip: (value: {
3751
+ readonly [$$PropertyValue]: "backgroundClip";
3752
+ }) => {
3753
+ WebkitBackgroundClip: {
3754
+ readonly [$$PropertyValue]: "backgroundClip";
3755
+ };
3756
+ backgroundClip: {
3757
+ readonly [$$PropertyValue]: "backgroundClip";
3758
+ };
3759
+ };
3760
+ }>>;
3761
+ declare type ContextMenuRadioItemPrimitiveProps = React.ComponentProps<typeof ContextMenuPrimitive.RadioItem>;
3762
+ declare type ContextMenuRadioItemProps = ContextMenuRadioItemPrimitiveProps & {
3763
+ css?: CSS;
3764
+ };
3765
+ declare const ContextMenuRadioItem: React.ForwardRefExoticComponent<Pick<ContextMenuRadioItemProps, "color" | "translate" | "hidden" | "style" | "css" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "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" | "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" | "disabled" | "textValue" | "value"> & React.RefAttributes<HTMLDivElement>>;
3766
+ export { ContextMenu, ContextMenuTrigger, ContextMenuContent, ContextMenuItem, ContextMenuGroup, ContextMenuLabel, ContextMenuSeparator, ContextMenuCheckboxItem, ContextMenuRadioGroup, ContextMenuRadioItem, };