@100mslive/roomkit-react 0.1.4-alpha.1 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. package/dist/{HLSView-F2K5VSTS.js → HLSView-P57IRMAR.js} +7 -11
  2. package/dist/{HLSView-F2K5VSTS.js.map → HLSView-P57IRMAR.js.map} +1 -1
  3. package/dist/PinnedTrackView-4FYJEBTB.js +102 -0
  4. package/dist/PinnedTrackView-4FYJEBTB.js.map +7 -0
  5. package/dist/Popover/index.d.ts +1 -0
  6. package/dist/Prebuilt/App.d.ts +25 -0
  7. package/dist/Prebuilt/index.d.ts +1 -0
  8. package/dist/Prebuilt/provider/roomLayoutProvider/index.d.ts +1 -1
  9. package/dist/Sheet/Sheet.d.ts +3093 -0
  10. package/dist/Sheet/index.d.ts +1 -0
  11. package/dist/Theme/ThemeProvider.d.ts +4 -286
  12. package/dist/Theme/stitches.config.d.ts +1 -1
  13. package/dist/{VirtualBackground-S3XEPZ2T.js → VirtualBackground-GGCQJ5JM.js} +31 -7
  14. package/dist/VirtualBackground-GGCQJ5JM.js.map +7 -0
  15. package/dist/chunk-IVTWKQI3.js +827 -0
  16. package/dist/chunk-IVTWKQI3.js.map +7 -0
  17. package/dist/{chunk-42SWPN2C.js → chunk-OSM4QEQG.js} +3020 -2189
  18. package/dist/chunk-OSM4QEQG.js.map +7 -0
  19. package/dist/chunk-P5X32KOD.js +67 -0
  20. package/dist/chunk-P5X32KOD.js.map +7 -0
  21. package/dist/chunk-RVCZPPTL.js +1100 -0
  22. package/dist/chunk-RVCZPPTL.js.map +7 -0
  23. package/dist/{chunk-ESUJK7AT.js → conference-P6I6ESVF.js} +3136 -653
  24. package/dist/conference-P6I6ESVF.js.map +7 -0
  25. package/dist/index.cjs.js +15733 -15498
  26. package/dist/index.cjs.js.map +4 -4
  27. package/dist/index.js +4 -8
  28. package/dist/meta.cjs.json +3355 -3017
  29. package/dist/meta.esbuild.json +3534 -3329
  30. package/dist/utils/animations.d.ts +16 -0
  31. package/package.json +8 -10
  32. package/src/Button/Button.tsx +4 -4
  33. package/src/Dropdown/Dropdown.tsx +2 -2
  34. package/src/IconButton/IconButton.tsx +4 -2
  35. package/src/Pagination/StyledPagination.tsx +1 -0
  36. package/src/Popover/index.tsx +2 -1
  37. package/src/Prebuilt/{App.jsx → App.tsx} +95 -48
  38. package/src/Prebuilt/Prebuilt.stories.tsx +22 -8
  39. package/src/Prebuilt/common/constants.js +1 -2
  40. package/src/Prebuilt/common/hooks.js +8 -0
  41. package/src/Prebuilt/common/utils.js +15 -0
  42. package/src/Prebuilt/components/AppData/AppData.jsx +1 -2
  43. package/src/Prebuilt/components/AppData/useUISettings.js +0 -5
  44. package/src/Prebuilt/components/AudioVideoToggle.jsx +69 -26
  45. package/src/Prebuilt/components/AuthToken.jsx +3 -2
  46. package/src/Prebuilt/components/Chat/ChatSelector.jsx +1 -1
  47. package/src/Prebuilt/components/Connection/TileConnection.jsx +0 -1
  48. package/src/Prebuilt/components/EmojiReaction.jsx +23 -73
  49. package/src/Prebuilt/components/EndSessionContent.jsx +57 -0
  50. package/src/Prebuilt/components/EqualProminence.jsx +180 -0
  51. package/src/Prebuilt/components/ErrorBoundary.jsx +4 -10
  52. package/src/Prebuilt/components/Footer/EmojiCard.jsx +34 -0
  53. package/src/Prebuilt/components/Footer/Footer.jsx +73 -0
  54. package/src/Prebuilt/components/{Header → Footer}/ParticipantList.jsx +5 -5
  55. package/src/Prebuilt/components/Header/ConferencingHeader.jsx +27 -7
  56. package/src/Prebuilt/components/Header/HeaderComponents.jsx +16 -14
  57. package/src/Prebuilt/components/Header/StreamActions.jsx +101 -36
  58. package/src/Prebuilt/components/Header/StreamingHeader.jsx +1 -1
  59. package/src/Prebuilt/components/Header/common.jsx +164 -0
  60. package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx +1 -2
  61. package/src/Prebuilt/components/LeaveCard.jsx +19 -0
  62. package/src/Prebuilt/components/LeaveRoom.jsx +35 -143
  63. package/src/Prebuilt/components/LeaveSessionContent.jsx +45 -0
  64. package/src/Prebuilt/components/MoreSettings/ActionTile.jsx +55 -0
  65. package/src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx +96 -0
  66. package/src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx +31 -54
  67. package/src/Prebuilt/components/MoreSettings/EmbedUrl.jsx +48 -73
  68. package/src/Prebuilt/components/MoreSettings/MoreSettings.jsx +5 -221
  69. package/src/Prebuilt/components/MoreSettings/MuteAllContent.jsx +61 -0
  70. package/src/Prebuilt/components/MoreSettings/MuteAllModal.jsx +32 -49
  71. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopLeaveRoom.jsx +129 -0
  72. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.jsx +219 -0
  73. package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebLeaveRoom.jsx +100 -0
  74. package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.jsx +259 -0
  75. package/src/Prebuilt/components/Notifications/Notifications.jsx +0 -2
  76. package/src/Prebuilt/components/Notifications/ReconnectNotifications.jsx +0 -4
  77. package/src/Prebuilt/components/PIP/PIPComponent.jsx +30 -26
  78. package/src/Prebuilt/components/PIP/PIPManager.js +13 -0
  79. package/src/Prebuilt/components/PIP/index.jsx +2 -7
  80. package/src/Prebuilt/components/Pagination.jsx +4 -4
  81. package/src/Prebuilt/components/Preview/PreviewContainer.jsx +5 -13
  82. package/src/Prebuilt/components/Preview/PreviewForm.jsx +9 -5
  83. package/src/Prebuilt/components/Preview/PreviewJoin.jsx +20 -27
  84. package/src/Prebuilt/components/RaiseHand.jsx +27 -0
  85. package/src/Prebuilt/components/ScreenShare.jsx +1 -1
  86. package/src/Prebuilt/components/ScreenshareDisplay.jsx +2 -2
  87. package/src/Prebuilt/components/ScreenshareTile.jsx +2 -2
  88. package/src/Prebuilt/components/Settings/DeviceSettings.jsx +2 -1
  89. package/src/Prebuilt/components/Settings/LayoutSettings.jsx +1 -24
  90. package/src/Prebuilt/components/Settings/SettingsModal.jsx +152 -17
  91. package/src/Prebuilt/components/ShareMenuIcon.jsx +1 -0
  92. package/src/Prebuilt/components/TileMenu/TileMenu.jsx +133 -0
  93. package/src/Prebuilt/components/TileMenu/TileMenuContent.jsx +313 -0
  94. package/src/Prebuilt/components/VideoList.jsx +5 -33
  95. package/src/Prebuilt/components/VideoTile.jsx +30 -8
  96. package/src/Prebuilt/components/conference.jsx +14 -1
  97. package/src/Prebuilt/components/init/Init.jsx +0 -27
  98. package/src/Prebuilt/components/init/initUtils.js +0 -23
  99. package/src/Prebuilt/components/pdfAnnotator/pdfFileOptions.jsx +2 -1
  100. package/src/Prebuilt/components/pdfAnnotator/pdfInfo.jsx +1 -1
  101. package/src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx +19 -8
  102. package/src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx +1 -0
  103. package/src/Prebuilt/images/pdf-share.png +0 -0
  104. package/src/Prebuilt/images/screen-share.png +0 -0
  105. package/src/Prebuilt/index.ts +1 -0
  106. package/src/Prebuilt/layouts/EmbedView.jsx +0 -1
  107. package/src/Prebuilt/layouts/InsetView.jsx +65 -24
  108. package/src/Prebuilt/layouts/PDFView.jsx +0 -1
  109. package/src/Prebuilt/layouts/SidePane.jsx +8 -7
  110. package/src/Prebuilt/layouts/mainView.jsx +22 -31
  111. package/src/Prebuilt/layouts/screenShareView.jsx +0 -2
  112. package/src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx +25 -1
  113. package/src/Prebuilt/primitives/DialogContent.jsx +1 -1
  114. package/src/Prebuilt/provider/roomLayoutProvider/index.tsx +1 -1
  115. package/src/Sheet/Sheet.mdx +19 -0
  116. package/src/Sheet/Sheet.stories.tsx +103 -0
  117. package/src/Sheet/Sheet.tsx +118 -0
  118. package/src/Sheet/index.ts +1 -0
  119. package/src/Theme/ThemeProvider.tsx +10 -13
  120. package/src/Theme/base.config.ts +1 -1
  121. package/src/Theme/stitches.config.ts +1 -1
  122. package/src/TileMenu/StyledMenuTile.tsx +2 -2
  123. package/src/TileMenu/TileMenu.tsx +2 -0
  124. package/src/VideoTile/StyledVideoTile.tsx +5 -0
  125. package/src/utils/animations.ts +18 -0
  126. package/dist/ActiveSpeakerView-V6O4K3BV.js +0 -39
  127. package/dist/ActiveSpeakerView-V6O4K3BV.js.map +0 -7
  128. package/dist/PinnedTrackView-7YQG4QKC.js +0 -70
  129. package/dist/PinnedTrackView-7YQG4QKC.js.map +0 -7
  130. package/dist/VirtualBackground-S3XEPZ2T.js.map +0 -7
  131. package/dist/chunk-42SWPN2C.js.map +0 -7
  132. package/dist/chunk-4NEZLVVH.js +0 -811
  133. package/dist/chunk-4NEZLVVH.js.map +0 -7
  134. package/dist/chunk-4ZBEFSRC.js +0 -58
  135. package/dist/chunk-4ZBEFSRC.js.map +0 -7
  136. package/dist/chunk-ESUJK7AT.js.map +0 -7
  137. package/dist/chunk-R6PDR5WZ.js +0 -243
  138. package/dist/chunk-R6PDR5WZ.js.map +0 -7
  139. package/dist/conference-7QKOMJPP.js +0 -3697
  140. package/dist/conference-7QKOMJPP.js.map +0 -7
  141. package/dist/transcription-RJA4V6PC.js +0 -356
  142. package/dist/transcription-RJA4V6PC.js.map +0 -7
  143. package/src/Prebuilt/common/useSortedPeers.js +0 -28
  144. package/src/Prebuilt/components/BottomActionSheet/BottomActionSheet.jsx +0 -96
  145. package/src/Prebuilt/components/BottomActionSheet/BottomActionSheet.stories.tsx +0 -46
  146. package/src/Prebuilt/components/Footer/ConferencingFooter.jsx +0 -101
  147. package/src/Prebuilt/components/Footer/StreamingFooter.jsx +0 -71
  148. package/src/Prebuilt/components/Footer.jsx +0 -8
  149. package/src/Prebuilt/components/MoreSettings/ChangeSelfRole.jsx +0 -67
  150. package/src/Prebuilt/components/TileMenu.jsx +0 -268
  151. package/src/Prebuilt/index.d.ts +0 -20
  152. package/src/Prebuilt/index.js +0 -2
@@ -0,0 +1,3093 @@
1
+ import React from 'react';
2
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
3
+ import { CSS, VariantProps } from '@stitches/react';
4
+ declare const StyledContent: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>>, {
5
+ side?: "bottom" | "left" | "right" | "top" | undefined;
6
+ }, {
7
+ allowMotion: string;
8
+ sm: string;
9
+ md: string;
10
+ lg: string;
11
+ xl: string;
12
+ '2xl': string;
13
+ ls: string;
14
+ }, import("@stitches/react/types/css-util").CSS<{
15
+ allowMotion: string;
16
+ sm: string;
17
+ md: string;
18
+ lg: string;
19
+ xl: string;
20
+ '2xl': string;
21
+ ls: string;
22
+ }, {
23
+ colors: {
24
+ primary_default: string;
25
+ primary_bright: string;
26
+ primary_dim: string;
27
+ primary_disabled: string;
28
+ on_primary_high: string;
29
+ on_primary_medium: string;
30
+ on_primary_low: string;
31
+ secondary_default: string;
32
+ secondary_bright: string;
33
+ secondary_dim: string;
34
+ secondary_disabled: string;
35
+ on_secondary_high: string;
36
+ on_secondary_medium: string;
37
+ on_secondary_low: string;
38
+ background_default: string;
39
+ background_dim: string;
40
+ surface_default: string;
41
+ surface_bright: string;
42
+ surface_brighter: string;
43
+ surface_dim: string;
44
+ on_surface_high: string;
45
+ on_surface_medium: string;
46
+ on_surface_low: string;
47
+ border_default: string;
48
+ border_bright: string;
49
+ alert_success: string;
50
+ alert_warning: string;
51
+ alert_error_default: string;
52
+ alert_error_bright: string;
53
+ alert_error_brighter: string;
54
+ alert_error_dim: string;
55
+ };
56
+ shadows: {
57
+ sm: string;
58
+ md: string;
59
+ };
60
+ fonts: {
61
+ sans: string;
62
+ };
63
+ fontSizes: {
64
+ h1: string;
65
+ h2: string;
66
+ h3: string;
67
+ h4: string;
68
+ h5: string;
69
+ h6: string;
70
+ tiny: string;
71
+ xs: string;
72
+ sm: string;
73
+ md: string;
74
+ lg: string;
75
+ };
76
+ fontWeights: {
77
+ semiBold: number;
78
+ medium: number;
79
+ regular: number;
80
+ };
81
+ lineHeights: {
82
+ h1: string;
83
+ h2: string;
84
+ h3: string;
85
+ h4: string;
86
+ h5: string;
87
+ h6: string;
88
+ tiny: string;
89
+ xs: string;
90
+ sm: string;
91
+ md: string;
92
+ };
93
+ radii: {
94
+ '0': string;
95
+ '1': string;
96
+ '2': string;
97
+ '3': string;
98
+ '4': string;
99
+ round: string;
100
+ };
101
+ space: {
102
+ 0: string;
103
+ xs: string;
104
+ sm: string;
105
+ md: string;
106
+ lg: string;
107
+ xl: string;
108
+ px: string;
109
+ 1: string;
110
+ 2: string;
111
+ 3: string;
112
+ 4: string;
113
+ 5: string;
114
+ 6: string;
115
+ 7: string;
116
+ 8: string;
117
+ 9: string;
118
+ 10: string;
119
+ 11: string;
120
+ 12: string;
121
+ 13: string;
122
+ 14: string;
123
+ 15: string;
124
+ 16: string;
125
+ 17: string;
126
+ 18: string;
127
+ 19: string;
128
+ 20: string;
129
+ 24: string;
130
+ 28: string;
131
+ 32: string;
132
+ 36: string;
133
+ 40: string;
134
+ 44: string;
135
+ 48: string;
136
+ 52: string;
137
+ 56: string;
138
+ 60: string;
139
+ 64: string;
140
+ 72: string;
141
+ 80: string;
142
+ 96: string;
143
+ 100: string;
144
+ };
145
+ borderWidths: {
146
+ light: string;
147
+ normal: string;
148
+ bold: string;
149
+ extrabold: string;
150
+ black: string;
151
+ };
152
+ }, {
153
+ width: string;
154
+ height: string;
155
+ minWidth: string;
156
+ maxWidth: string;
157
+ minHeight: string;
158
+ maxHeight: string;
159
+ flexBasis: string;
160
+ gridTemplateColumns: string;
161
+ gridTemplateRows: string;
162
+ blockSize: string;
163
+ minBlockSize: string;
164
+ maxBlockSize: string;
165
+ inlineSize: string;
166
+ minInlineSize: string;
167
+ maxInlineSize: string;
168
+ gap: "space";
169
+ gridGap: "space";
170
+ columnGap: "space";
171
+ gridColumnGap: "space";
172
+ rowGap: "space";
173
+ gridRowGap: "space";
174
+ inset: "space";
175
+ insetBlock: "space";
176
+ insetBlockEnd: "space";
177
+ insetBlockStart: "space";
178
+ insetInline: "space";
179
+ insetInlineEnd: "space";
180
+ insetInlineStart: "space";
181
+ margin: "space";
182
+ marginTop: "space";
183
+ marginRight: "space";
184
+ marginBottom: "space";
185
+ marginLeft: "space";
186
+ marginBlock: "space";
187
+ marginBlockEnd: "space";
188
+ marginBlockStart: "space";
189
+ marginInline: "space";
190
+ marginInlineEnd: "space";
191
+ marginInlineStart: "space";
192
+ padding: "space";
193
+ paddingTop: "space";
194
+ paddingRight: "space";
195
+ paddingBottom: "space";
196
+ paddingLeft: "space";
197
+ paddingBlock: "space";
198
+ paddingBlockEnd: "space";
199
+ paddingBlockStart: "space";
200
+ paddingInline: "space";
201
+ paddingInlineEnd: "space";
202
+ paddingInlineStart: "space";
203
+ scrollMargin: "space";
204
+ scrollMarginTop: "space";
205
+ scrollMarginRight: "space";
206
+ scrollMarginBottom: "space";
207
+ scrollMarginLeft: "space";
208
+ scrollMarginBlock: "space";
209
+ scrollMarginBlockEnd: "space";
210
+ scrollMarginBlockStart: "space";
211
+ scrollMarginInline: "space";
212
+ scrollMarginInlineEnd: "space";
213
+ scrollMarginInlineStart: "space";
214
+ scrollPadding: "space";
215
+ scrollPaddingTop: "space";
216
+ scrollPaddingRight: "space";
217
+ scrollPaddingBottom: "space";
218
+ scrollPaddingLeft: "space";
219
+ scrollPaddingBlock: "space";
220
+ scrollPaddingBlockEnd: "space";
221
+ scrollPaddingBlockStart: "space";
222
+ scrollPaddingInline: "space";
223
+ scrollPaddingInlineEnd: "space";
224
+ scrollPaddingInlineStart: "space";
225
+ top: "space";
226
+ right: "space";
227
+ bottom: "space";
228
+ left: "space";
229
+ fontSize: "fontSizes";
230
+ background: "colors";
231
+ backgroundColor: "colors";
232
+ backgroundImage: "colors";
233
+ borderImage: "colors";
234
+ border: "colors";
235
+ borderBlock: "colors";
236
+ borderBlockEnd: "colors";
237
+ borderBlockStart: "colors";
238
+ borderBottom: "colors";
239
+ borderBottomColor: "colors";
240
+ borderColor: "colors";
241
+ borderInline: "colors";
242
+ borderInlineEnd: "colors";
243
+ borderInlineStart: "colors";
244
+ borderLeft: "colors";
245
+ borderLeftColor: "colors";
246
+ borderRight: "colors";
247
+ borderRightColor: "colors";
248
+ borderTop: "colors";
249
+ borderTopColor: "colors";
250
+ caretColor: "colors";
251
+ color: "colors";
252
+ columnRuleColor: "colors";
253
+ outline: "colors";
254
+ outlineColor: "colors";
255
+ fill: "colors";
256
+ stroke: "colors";
257
+ textDecorationColor: "colors";
258
+ fontFamily: "fonts";
259
+ fontWeight: "fontWeights";
260
+ lineHeight: "lineHeights";
261
+ letterSpacing: "letterSpacings";
262
+ borderWidth: "borderWidths";
263
+ borderTopWidth: "borderWidths";
264
+ borderLeftWidth: "borderWidths";
265
+ borderRightWidth: "borderWidths";
266
+ borderBottomWidth: "borderWidths";
267
+ borderStyle: "borderStyles";
268
+ borderTopStyle: "borderStyles";
269
+ borderLeftStyle: "borderStyles";
270
+ borderRightStyle: "borderStyles";
271
+ borderBottomStyle: "borderStyles";
272
+ borderRadius: "radii";
273
+ borderTopLeftRadius: "radii";
274
+ borderTopRightRadius: "radii";
275
+ borderBottomRightRadius: "radii";
276
+ borderBottomLeftRadius: "radii";
277
+ boxShadow: "shadows";
278
+ textShadow: "shadows";
279
+ transition: "transitions";
280
+ zIndex: "zIndices";
281
+ }, {
282
+ bg: (value: {
283
+ readonly [$$PropertyValue]: "backgroundColor";
284
+ }) => {
285
+ backgroundColor: {
286
+ readonly [$$PropertyValue]: "backgroundColor";
287
+ };
288
+ };
289
+ c: (value: {
290
+ readonly [$$PropertyValue]: "color";
291
+ }) => {
292
+ color: {
293
+ readonly [$$PropertyValue]: "color";
294
+ };
295
+ };
296
+ r: (value: {
297
+ readonly [$$ScaleValue]: "radii";
298
+ }) => {
299
+ borderRadius: {
300
+ readonly [$$ScaleValue]: "radii";
301
+ };
302
+ };
303
+ fs: (value: string | number | {
304
+ readonly [$$PropertyValue]: "fontSize";
305
+ }) => {
306
+ fontSize: string | number | {
307
+ readonly [$$PropertyValue]: "fontSize";
308
+ };
309
+ };
310
+ size: (value: string | number | {
311
+ readonly [$$ScaleValue]: "space";
312
+ }) => {
313
+ height: string | number | {
314
+ readonly [$$ScaleValue]: "space";
315
+ };
316
+ width: string | number | {
317
+ readonly [$$ScaleValue]: "space";
318
+ };
319
+ };
320
+ w: (value: string | number | {
321
+ readonly [$$ScaleValue]: "space";
322
+ }) => {
323
+ width: string | number | {
324
+ readonly [$$ScaleValue]: "space";
325
+ };
326
+ };
327
+ h: (value: string | number | {
328
+ readonly [$$ScaleValue]: "space";
329
+ }) => {
330
+ height: string | number | {
331
+ readonly [$$ScaleValue]: "space";
332
+ };
333
+ };
334
+ p: (value: string | number | {
335
+ readonly [$$ScaleValue]: "space";
336
+ }) => {
337
+ padding: string | number | {
338
+ readonly [$$ScaleValue]: "space";
339
+ };
340
+ };
341
+ pt: (value: string | number | {
342
+ readonly [$$ScaleValue]: "space";
343
+ }) => {
344
+ paddingTop: string | number | {
345
+ readonly [$$ScaleValue]: "space";
346
+ };
347
+ };
348
+ pr: (value: string | number | {
349
+ readonly [$$ScaleValue]: "space";
350
+ }) => {
351
+ paddingRight: string | number | {
352
+ readonly [$$ScaleValue]: "space";
353
+ };
354
+ };
355
+ pb: (value: string | number | {
356
+ readonly [$$ScaleValue]: "space";
357
+ }) => {
358
+ paddingBottom: string | number | {
359
+ readonly [$$ScaleValue]: "space";
360
+ };
361
+ };
362
+ pl: (value: string | number | {
363
+ readonly [$$ScaleValue]: "space";
364
+ }) => {
365
+ paddingLeft: string | number | {
366
+ readonly [$$ScaleValue]: "space";
367
+ };
368
+ };
369
+ px: (value: string | number | {
370
+ readonly [$$ScaleValue]: "space";
371
+ }) => {
372
+ paddingLeft: string | number | {
373
+ readonly [$$ScaleValue]: "space";
374
+ };
375
+ paddingRight: string | number | {
376
+ readonly [$$ScaleValue]: "space";
377
+ };
378
+ };
379
+ py: (value: string | number | {
380
+ readonly [$$ScaleValue]: "space";
381
+ }) => {
382
+ paddingTop: string | number | {
383
+ readonly [$$ScaleValue]: "space";
384
+ };
385
+ paddingBottom: string | number | {
386
+ readonly [$$ScaleValue]: "space";
387
+ };
388
+ };
389
+ m: (value: string | number | {
390
+ readonly [$$ScaleValue]: "space";
391
+ }) => {
392
+ margin: string | number | {
393
+ readonly [$$ScaleValue]: "space";
394
+ };
395
+ };
396
+ mt: (value: string | number | {
397
+ readonly [$$ScaleValue]: "space";
398
+ }) => {
399
+ marginTop: string | number | {
400
+ readonly [$$ScaleValue]: "space";
401
+ };
402
+ };
403
+ mr: (value: string | number | {
404
+ readonly [$$ScaleValue]: "space";
405
+ }) => {
406
+ marginRight: string | number | {
407
+ readonly [$$ScaleValue]: "space";
408
+ };
409
+ };
410
+ mb: (value: string | number | {
411
+ readonly [$$ScaleValue]: "space";
412
+ }) => {
413
+ marginBottom: string | number | {
414
+ readonly [$$ScaleValue]: "space";
415
+ };
416
+ };
417
+ ml: (value: string | number | {
418
+ readonly [$$ScaleValue]: "space";
419
+ }) => {
420
+ marginLeft: string | number | {
421
+ readonly [$$ScaleValue]: "space";
422
+ };
423
+ };
424
+ mx: (value: string | number | {
425
+ readonly [$$ScaleValue]: "space";
426
+ }) => {
427
+ marginLeft: string | number | {
428
+ readonly [$$ScaleValue]: "space";
429
+ };
430
+ marginRight: string | number | {
431
+ readonly [$$ScaleValue]: "space";
432
+ };
433
+ };
434
+ my: (value: string | number | {
435
+ readonly [$$ScaleValue]: "space";
436
+ }) => {
437
+ marginTop: string | number | {
438
+ readonly [$$ScaleValue]: "space";
439
+ };
440
+ marginBottom: string | number | {
441
+ readonly [$$ScaleValue]: "space";
442
+ };
443
+ };
444
+ }>>;
445
+ declare type SheetContentVariants = VariantProps<typeof StyledContent>;
446
+ declare type DialogContentPrimitiveProps = React.ComponentProps<typeof DialogPrimitive.Content>;
447
+ declare type SheetContentProps = DialogContentPrimitiveProps & SheetContentVariants & {
448
+ css?: CSS;
449
+ };
450
+ export declare const Sheet: {
451
+ Root: import("@stitches/react/types/styled-component").StyledComponent<React.FC<DialogPrimitive.DialogProps>, {}, {
452
+ allowMotion: string;
453
+ sm: string;
454
+ md: string;
455
+ lg: string;
456
+ xl: string;
457
+ '2xl': string;
458
+ ls: string;
459
+ }, import("@stitches/react/types/css-util").CSS<{
460
+ allowMotion: string;
461
+ sm: string;
462
+ md: string;
463
+ lg: string;
464
+ xl: string;
465
+ '2xl': string;
466
+ ls: string;
467
+ }, {
468
+ colors: {
469
+ primary_default: string;
470
+ primary_bright: string;
471
+ primary_dim: string;
472
+ primary_disabled: string;
473
+ on_primary_high: string;
474
+ on_primary_medium: string;
475
+ on_primary_low: string;
476
+ secondary_default: string;
477
+ secondary_bright: string;
478
+ secondary_dim: string;
479
+ secondary_disabled: string;
480
+ on_secondary_high: string;
481
+ on_secondary_medium: string;
482
+ on_secondary_low: string;
483
+ background_default: string;
484
+ background_dim: string;
485
+ surface_default: string;
486
+ surface_bright: string;
487
+ surface_brighter: string;
488
+ surface_dim: string;
489
+ on_surface_high: string;
490
+ on_surface_medium: string;
491
+ on_surface_low: string;
492
+ border_default: string;
493
+ border_bright: string;
494
+ alert_success: string;
495
+ alert_warning: string;
496
+ alert_error_default: string;
497
+ alert_error_bright: string;
498
+ alert_error_brighter: string;
499
+ alert_error_dim: string;
500
+ };
501
+ shadows: {
502
+ sm: string;
503
+ md: string;
504
+ };
505
+ fonts: {
506
+ sans: string;
507
+ };
508
+ fontSizes: {
509
+ h1: string;
510
+ h2: string;
511
+ h3: string;
512
+ h4: string;
513
+ h5: string;
514
+ h6: string;
515
+ tiny: string;
516
+ xs: string;
517
+ sm: string;
518
+ md: string;
519
+ lg: string;
520
+ };
521
+ fontWeights: {
522
+ semiBold: number;
523
+ medium: number;
524
+ regular: number;
525
+ };
526
+ lineHeights: {
527
+ h1: string;
528
+ h2: string;
529
+ h3: string;
530
+ h4: string;
531
+ h5: string;
532
+ h6: string;
533
+ tiny: string;
534
+ xs: string;
535
+ sm: string;
536
+ md: string;
537
+ };
538
+ radii: {
539
+ '0': string;
540
+ '1': string;
541
+ '2': string;
542
+ '3': string;
543
+ '4': string;
544
+ round: string;
545
+ };
546
+ space: {
547
+ 0: string;
548
+ xs: string;
549
+ sm: string;
550
+ md: string;
551
+ lg: string;
552
+ xl: string;
553
+ px: string;
554
+ 1: string;
555
+ 2: string;
556
+ 3: string;
557
+ 4: string;
558
+ 5: string;
559
+ 6: string;
560
+ 7: string;
561
+ 8: string;
562
+ 9: string;
563
+ 10: string;
564
+ 11: string;
565
+ 12: string;
566
+ 13: string;
567
+ 14: string;
568
+ 15: string;
569
+ 16: string;
570
+ 17: string;
571
+ 18: string;
572
+ 19: string;
573
+ 20: string;
574
+ 24: string;
575
+ 28: string;
576
+ 32: string;
577
+ 36: string;
578
+ 40: string;
579
+ 44: string;
580
+ 48: string;
581
+ 52: string;
582
+ 56: string;
583
+ 60: string;
584
+ 64: string;
585
+ 72: string;
586
+ 80: string;
587
+ 96: string;
588
+ 100: string;
589
+ };
590
+ borderWidths: {
591
+ light: string;
592
+ normal: string;
593
+ bold: string;
594
+ extrabold: string;
595
+ black: string;
596
+ };
597
+ }, {
598
+ width: string;
599
+ height: string;
600
+ minWidth: string;
601
+ maxWidth: string;
602
+ minHeight: string;
603
+ maxHeight: string;
604
+ flexBasis: string;
605
+ gridTemplateColumns: string;
606
+ gridTemplateRows: string;
607
+ blockSize: string;
608
+ minBlockSize: string;
609
+ maxBlockSize: string;
610
+ inlineSize: string;
611
+ minInlineSize: string;
612
+ maxInlineSize: string;
613
+ gap: "space";
614
+ gridGap: "space";
615
+ columnGap: "space";
616
+ gridColumnGap: "space";
617
+ rowGap: "space";
618
+ gridRowGap: "space";
619
+ inset: "space";
620
+ insetBlock: "space";
621
+ insetBlockEnd: "space";
622
+ insetBlockStart: "space";
623
+ insetInline: "space";
624
+ insetInlineEnd: "space";
625
+ insetInlineStart: "space";
626
+ margin: "space";
627
+ marginTop: "space";
628
+ marginRight: "space";
629
+ marginBottom: "space";
630
+ marginLeft: "space";
631
+ marginBlock: "space";
632
+ marginBlockEnd: "space";
633
+ marginBlockStart: "space";
634
+ marginInline: "space";
635
+ marginInlineEnd: "space";
636
+ marginInlineStart: "space";
637
+ padding: "space";
638
+ paddingTop: "space";
639
+ paddingRight: "space";
640
+ paddingBottom: "space";
641
+ paddingLeft: "space";
642
+ paddingBlock: "space";
643
+ paddingBlockEnd: "space";
644
+ paddingBlockStart: "space";
645
+ paddingInline: "space";
646
+ paddingInlineEnd: "space";
647
+ paddingInlineStart: "space";
648
+ scrollMargin: "space";
649
+ scrollMarginTop: "space";
650
+ scrollMarginRight: "space";
651
+ scrollMarginBottom: "space";
652
+ scrollMarginLeft: "space";
653
+ scrollMarginBlock: "space";
654
+ scrollMarginBlockEnd: "space";
655
+ scrollMarginBlockStart: "space";
656
+ scrollMarginInline: "space";
657
+ scrollMarginInlineEnd: "space";
658
+ scrollMarginInlineStart: "space";
659
+ scrollPadding: "space";
660
+ scrollPaddingTop: "space";
661
+ scrollPaddingRight: "space";
662
+ scrollPaddingBottom: "space";
663
+ scrollPaddingLeft: "space";
664
+ scrollPaddingBlock: "space";
665
+ scrollPaddingBlockEnd: "space";
666
+ scrollPaddingBlockStart: "space";
667
+ scrollPaddingInline: "space";
668
+ scrollPaddingInlineEnd: "space";
669
+ scrollPaddingInlineStart: "space";
670
+ top: "space";
671
+ right: "space";
672
+ bottom: "space";
673
+ left: "space";
674
+ fontSize: "fontSizes";
675
+ background: "colors";
676
+ backgroundColor: "colors";
677
+ backgroundImage: "colors";
678
+ borderImage: "colors";
679
+ border: "colors";
680
+ borderBlock: "colors";
681
+ borderBlockEnd: "colors";
682
+ borderBlockStart: "colors";
683
+ borderBottom: "colors";
684
+ borderBottomColor: "colors";
685
+ borderColor: "colors";
686
+ borderInline: "colors";
687
+ borderInlineEnd: "colors";
688
+ borderInlineStart: "colors";
689
+ borderLeft: "colors";
690
+ borderLeftColor: "colors";
691
+ borderRight: "colors";
692
+ borderRightColor: "colors";
693
+ borderTop: "colors";
694
+ borderTopColor: "colors";
695
+ caretColor: "colors";
696
+ color: "colors";
697
+ columnRuleColor: "colors";
698
+ outline: "colors";
699
+ outlineColor: "colors";
700
+ fill: "colors";
701
+ stroke: "colors";
702
+ textDecorationColor: "colors";
703
+ fontFamily: "fonts";
704
+ fontWeight: "fontWeights";
705
+ lineHeight: "lineHeights";
706
+ letterSpacing: "letterSpacings";
707
+ borderWidth: "borderWidths";
708
+ borderTopWidth: "borderWidths";
709
+ borderLeftWidth: "borderWidths";
710
+ borderRightWidth: "borderWidths";
711
+ borderBottomWidth: "borderWidths";
712
+ borderStyle: "borderStyles";
713
+ borderTopStyle: "borderStyles";
714
+ borderLeftStyle: "borderStyles";
715
+ borderRightStyle: "borderStyles";
716
+ borderBottomStyle: "borderStyles";
717
+ borderRadius: "radii";
718
+ borderTopLeftRadius: "radii";
719
+ borderTopRightRadius: "radii";
720
+ borderBottomRightRadius: "radii";
721
+ borderBottomLeftRadius: "radii";
722
+ boxShadow: "shadows";
723
+ textShadow: "shadows";
724
+ transition: "transitions";
725
+ zIndex: "zIndices";
726
+ }, {
727
+ bg: (value: {
728
+ readonly [$$PropertyValue]: "backgroundColor";
729
+ }) => {
730
+ backgroundColor: {
731
+ readonly [$$PropertyValue]: "backgroundColor";
732
+ };
733
+ };
734
+ c: (value: {
735
+ readonly [$$PropertyValue]: "color";
736
+ }) => {
737
+ color: {
738
+ readonly [$$PropertyValue]: "color";
739
+ };
740
+ };
741
+ r: (value: {
742
+ readonly [$$ScaleValue]: "radii";
743
+ }) => {
744
+ borderRadius: {
745
+ readonly [$$ScaleValue]: "radii";
746
+ };
747
+ };
748
+ fs: (value: string | number | {
749
+ readonly [$$PropertyValue]: "fontSize";
750
+ }) => {
751
+ fontSize: string | number | {
752
+ readonly [$$PropertyValue]: "fontSize";
753
+ };
754
+ };
755
+ size: (value: string | number | {
756
+ readonly [$$ScaleValue]: "space";
757
+ }) => {
758
+ height: string | number | {
759
+ readonly [$$ScaleValue]: "space";
760
+ };
761
+ width: string | number | {
762
+ readonly [$$ScaleValue]: "space";
763
+ };
764
+ };
765
+ w: (value: string | number | {
766
+ readonly [$$ScaleValue]: "space";
767
+ }) => {
768
+ width: string | number | {
769
+ readonly [$$ScaleValue]: "space";
770
+ };
771
+ };
772
+ h: (value: string | number | {
773
+ readonly [$$ScaleValue]: "space";
774
+ }) => {
775
+ height: string | number | {
776
+ readonly [$$ScaleValue]: "space";
777
+ };
778
+ };
779
+ p: (value: string | number | {
780
+ readonly [$$ScaleValue]: "space";
781
+ }) => {
782
+ padding: string | number | {
783
+ readonly [$$ScaleValue]: "space";
784
+ };
785
+ };
786
+ pt: (value: string | number | {
787
+ readonly [$$ScaleValue]: "space";
788
+ }) => {
789
+ paddingTop: string | number | {
790
+ readonly [$$ScaleValue]: "space";
791
+ };
792
+ };
793
+ pr: (value: string | number | {
794
+ readonly [$$ScaleValue]: "space";
795
+ }) => {
796
+ paddingRight: string | number | {
797
+ readonly [$$ScaleValue]: "space";
798
+ };
799
+ };
800
+ pb: (value: string | number | {
801
+ readonly [$$ScaleValue]: "space";
802
+ }) => {
803
+ paddingBottom: string | number | {
804
+ readonly [$$ScaleValue]: "space";
805
+ };
806
+ };
807
+ pl: (value: string | number | {
808
+ readonly [$$ScaleValue]: "space";
809
+ }) => {
810
+ paddingLeft: string | number | {
811
+ readonly [$$ScaleValue]: "space";
812
+ };
813
+ };
814
+ px: (value: string | number | {
815
+ readonly [$$ScaleValue]: "space";
816
+ }) => {
817
+ paddingLeft: string | number | {
818
+ readonly [$$ScaleValue]: "space";
819
+ };
820
+ paddingRight: string | number | {
821
+ readonly [$$ScaleValue]: "space";
822
+ };
823
+ };
824
+ py: (value: string | number | {
825
+ readonly [$$ScaleValue]: "space";
826
+ }) => {
827
+ paddingTop: string | number | {
828
+ readonly [$$ScaleValue]: "space";
829
+ };
830
+ paddingBottom: string | number | {
831
+ readonly [$$ScaleValue]: "space";
832
+ };
833
+ };
834
+ m: (value: string | number | {
835
+ readonly [$$ScaleValue]: "space";
836
+ }) => {
837
+ margin: string | number | {
838
+ readonly [$$ScaleValue]: "space";
839
+ };
840
+ };
841
+ mt: (value: string | number | {
842
+ readonly [$$ScaleValue]: "space";
843
+ }) => {
844
+ marginTop: string | number | {
845
+ readonly [$$ScaleValue]: "space";
846
+ };
847
+ };
848
+ mr: (value: string | number | {
849
+ readonly [$$ScaleValue]: "space";
850
+ }) => {
851
+ marginRight: string | number | {
852
+ readonly [$$ScaleValue]: "space";
853
+ };
854
+ };
855
+ mb: (value: string | number | {
856
+ readonly [$$ScaleValue]: "space";
857
+ }) => {
858
+ marginBottom: string | number | {
859
+ readonly [$$ScaleValue]: "space";
860
+ };
861
+ };
862
+ ml: (value: string | number | {
863
+ readonly [$$ScaleValue]: "space";
864
+ }) => {
865
+ marginLeft: string | number | {
866
+ readonly [$$ScaleValue]: "space";
867
+ };
868
+ };
869
+ mx: (value: string | number | {
870
+ readonly [$$ScaleValue]: "space";
871
+ }) => {
872
+ marginLeft: string | number | {
873
+ readonly [$$ScaleValue]: "space";
874
+ };
875
+ marginRight: string | number | {
876
+ readonly [$$ScaleValue]: "space";
877
+ };
878
+ };
879
+ my: (value: string | number | {
880
+ readonly [$$ScaleValue]: "space";
881
+ }) => {
882
+ marginTop: string | number | {
883
+ readonly [$$ScaleValue]: "space";
884
+ };
885
+ marginBottom: string | number | {
886
+ readonly [$$ScaleValue]: "space";
887
+ };
888
+ };
889
+ }>>;
890
+ Trigger: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>, {}, {
891
+ allowMotion: string;
892
+ sm: string;
893
+ md: string;
894
+ lg: string;
895
+ xl: string;
896
+ '2xl': string;
897
+ ls: string;
898
+ }, import("@stitches/react/types/css-util").CSS<{
899
+ allowMotion: string;
900
+ sm: string;
901
+ md: string;
902
+ lg: string;
903
+ xl: string;
904
+ '2xl': string;
905
+ ls: string;
906
+ }, {
907
+ colors: {
908
+ primary_default: string;
909
+ primary_bright: string;
910
+ primary_dim: string;
911
+ primary_disabled: string;
912
+ on_primary_high: string;
913
+ on_primary_medium: string;
914
+ on_primary_low: string;
915
+ secondary_default: string;
916
+ secondary_bright: string;
917
+ secondary_dim: string;
918
+ secondary_disabled: string;
919
+ on_secondary_high: string;
920
+ on_secondary_medium: string;
921
+ on_secondary_low: string;
922
+ background_default: string;
923
+ background_dim: string;
924
+ surface_default: string;
925
+ surface_bright: string;
926
+ surface_brighter: string;
927
+ surface_dim: string;
928
+ on_surface_high: string;
929
+ on_surface_medium: string;
930
+ on_surface_low: string;
931
+ border_default: string;
932
+ border_bright: string;
933
+ alert_success: string;
934
+ alert_warning: string;
935
+ alert_error_default: string;
936
+ alert_error_bright: string;
937
+ alert_error_brighter: string;
938
+ alert_error_dim: string;
939
+ };
940
+ shadows: {
941
+ sm: string;
942
+ md: string;
943
+ };
944
+ fonts: {
945
+ sans: string;
946
+ };
947
+ fontSizes: {
948
+ h1: string;
949
+ h2: string;
950
+ h3: string;
951
+ h4: string;
952
+ h5: string;
953
+ h6: string;
954
+ tiny: string;
955
+ xs: string;
956
+ sm: string;
957
+ md: string;
958
+ lg: string;
959
+ };
960
+ fontWeights: {
961
+ semiBold: number;
962
+ medium: number;
963
+ regular: number;
964
+ };
965
+ lineHeights: {
966
+ h1: string;
967
+ h2: string;
968
+ h3: string;
969
+ h4: string;
970
+ h5: string;
971
+ h6: string;
972
+ tiny: string;
973
+ xs: string;
974
+ sm: string;
975
+ md: string;
976
+ };
977
+ radii: {
978
+ '0': string;
979
+ '1': string;
980
+ '2': string;
981
+ '3': string;
982
+ '4': string;
983
+ round: string;
984
+ };
985
+ space: {
986
+ 0: string;
987
+ xs: string;
988
+ sm: string;
989
+ md: string;
990
+ lg: string;
991
+ xl: string;
992
+ px: string;
993
+ 1: string;
994
+ 2: string;
995
+ 3: string;
996
+ 4: string;
997
+ 5: string;
998
+ 6: string;
999
+ 7: string;
1000
+ 8: string;
1001
+ 9: string;
1002
+ 10: string;
1003
+ 11: string;
1004
+ 12: string;
1005
+ 13: string;
1006
+ 14: string;
1007
+ 15: string;
1008
+ 16: string;
1009
+ 17: string;
1010
+ 18: string;
1011
+ 19: string;
1012
+ 20: string;
1013
+ 24: string;
1014
+ 28: string;
1015
+ 32: string;
1016
+ 36: string;
1017
+ 40: string;
1018
+ 44: string;
1019
+ 48: string;
1020
+ 52: string;
1021
+ 56: string;
1022
+ 60: string;
1023
+ 64: string;
1024
+ 72: string;
1025
+ 80: string;
1026
+ 96: string;
1027
+ 100: string;
1028
+ };
1029
+ borderWidths: {
1030
+ light: string;
1031
+ normal: string;
1032
+ bold: string;
1033
+ extrabold: string;
1034
+ black: string;
1035
+ };
1036
+ }, {
1037
+ width: string;
1038
+ height: string;
1039
+ minWidth: string;
1040
+ maxWidth: string;
1041
+ minHeight: string;
1042
+ maxHeight: string;
1043
+ flexBasis: string;
1044
+ gridTemplateColumns: string;
1045
+ gridTemplateRows: string;
1046
+ blockSize: string;
1047
+ minBlockSize: string;
1048
+ maxBlockSize: string;
1049
+ inlineSize: string;
1050
+ minInlineSize: string;
1051
+ maxInlineSize: string;
1052
+ gap: "space";
1053
+ gridGap: "space";
1054
+ columnGap: "space";
1055
+ gridColumnGap: "space";
1056
+ rowGap: "space";
1057
+ gridRowGap: "space";
1058
+ inset: "space";
1059
+ insetBlock: "space";
1060
+ insetBlockEnd: "space";
1061
+ insetBlockStart: "space";
1062
+ insetInline: "space";
1063
+ insetInlineEnd: "space";
1064
+ insetInlineStart: "space";
1065
+ margin: "space";
1066
+ marginTop: "space";
1067
+ marginRight: "space";
1068
+ marginBottom: "space";
1069
+ marginLeft: "space";
1070
+ marginBlock: "space";
1071
+ marginBlockEnd: "space";
1072
+ marginBlockStart: "space";
1073
+ marginInline: "space";
1074
+ marginInlineEnd: "space";
1075
+ marginInlineStart: "space";
1076
+ padding: "space";
1077
+ paddingTop: "space";
1078
+ paddingRight: "space";
1079
+ paddingBottom: "space";
1080
+ paddingLeft: "space";
1081
+ paddingBlock: "space";
1082
+ paddingBlockEnd: "space";
1083
+ paddingBlockStart: "space";
1084
+ paddingInline: "space";
1085
+ paddingInlineEnd: "space";
1086
+ paddingInlineStart: "space";
1087
+ scrollMargin: "space";
1088
+ scrollMarginTop: "space";
1089
+ scrollMarginRight: "space";
1090
+ scrollMarginBottom: "space";
1091
+ scrollMarginLeft: "space";
1092
+ scrollMarginBlock: "space";
1093
+ scrollMarginBlockEnd: "space";
1094
+ scrollMarginBlockStart: "space";
1095
+ scrollMarginInline: "space";
1096
+ scrollMarginInlineEnd: "space";
1097
+ scrollMarginInlineStart: "space";
1098
+ scrollPadding: "space";
1099
+ scrollPaddingTop: "space";
1100
+ scrollPaddingRight: "space";
1101
+ scrollPaddingBottom: "space";
1102
+ scrollPaddingLeft: "space";
1103
+ scrollPaddingBlock: "space";
1104
+ scrollPaddingBlockEnd: "space";
1105
+ scrollPaddingBlockStart: "space";
1106
+ scrollPaddingInline: "space";
1107
+ scrollPaddingInlineEnd: "space";
1108
+ scrollPaddingInlineStart: "space";
1109
+ top: "space";
1110
+ right: "space";
1111
+ bottom: "space";
1112
+ left: "space";
1113
+ fontSize: "fontSizes";
1114
+ background: "colors";
1115
+ backgroundColor: "colors";
1116
+ backgroundImage: "colors";
1117
+ borderImage: "colors";
1118
+ border: "colors";
1119
+ borderBlock: "colors";
1120
+ borderBlockEnd: "colors";
1121
+ borderBlockStart: "colors";
1122
+ borderBottom: "colors";
1123
+ borderBottomColor: "colors";
1124
+ borderColor: "colors";
1125
+ borderInline: "colors";
1126
+ borderInlineEnd: "colors";
1127
+ borderInlineStart: "colors";
1128
+ borderLeft: "colors";
1129
+ borderLeftColor: "colors";
1130
+ borderRight: "colors";
1131
+ borderRightColor: "colors";
1132
+ borderTop: "colors";
1133
+ borderTopColor: "colors";
1134
+ caretColor: "colors";
1135
+ color: "colors";
1136
+ columnRuleColor: "colors";
1137
+ outline: "colors";
1138
+ outlineColor: "colors";
1139
+ fill: "colors";
1140
+ stroke: "colors";
1141
+ textDecorationColor: "colors";
1142
+ fontFamily: "fonts";
1143
+ fontWeight: "fontWeights";
1144
+ lineHeight: "lineHeights";
1145
+ letterSpacing: "letterSpacings";
1146
+ borderWidth: "borderWidths";
1147
+ borderTopWidth: "borderWidths";
1148
+ borderLeftWidth: "borderWidths";
1149
+ borderRightWidth: "borderWidths";
1150
+ borderBottomWidth: "borderWidths";
1151
+ borderStyle: "borderStyles";
1152
+ borderTopStyle: "borderStyles";
1153
+ borderLeftStyle: "borderStyles";
1154
+ borderRightStyle: "borderStyles";
1155
+ borderBottomStyle: "borderStyles";
1156
+ borderRadius: "radii";
1157
+ borderTopLeftRadius: "radii";
1158
+ borderTopRightRadius: "radii";
1159
+ borderBottomRightRadius: "radii";
1160
+ borderBottomLeftRadius: "radii";
1161
+ boxShadow: "shadows";
1162
+ textShadow: "shadows";
1163
+ transition: "transitions";
1164
+ zIndex: "zIndices";
1165
+ }, {
1166
+ bg: (value: {
1167
+ readonly [$$PropertyValue]: "backgroundColor";
1168
+ }) => {
1169
+ backgroundColor: {
1170
+ readonly [$$PropertyValue]: "backgroundColor";
1171
+ };
1172
+ };
1173
+ c: (value: {
1174
+ readonly [$$PropertyValue]: "color";
1175
+ }) => {
1176
+ color: {
1177
+ readonly [$$PropertyValue]: "color";
1178
+ };
1179
+ };
1180
+ r: (value: {
1181
+ readonly [$$ScaleValue]: "radii";
1182
+ }) => {
1183
+ borderRadius: {
1184
+ readonly [$$ScaleValue]: "radii";
1185
+ };
1186
+ };
1187
+ fs: (value: string | number | {
1188
+ readonly [$$PropertyValue]: "fontSize";
1189
+ }) => {
1190
+ fontSize: string | number | {
1191
+ readonly [$$PropertyValue]: "fontSize";
1192
+ };
1193
+ };
1194
+ size: (value: string | number | {
1195
+ readonly [$$ScaleValue]: "space";
1196
+ }) => {
1197
+ height: string | number | {
1198
+ readonly [$$ScaleValue]: "space";
1199
+ };
1200
+ width: string | number | {
1201
+ readonly [$$ScaleValue]: "space";
1202
+ };
1203
+ };
1204
+ w: (value: string | number | {
1205
+ readonly [$$ScaleValue]: "space";
1206
+ }) => {
1207
+ width: string | number | {
1208
+ readonly [$$ScaleValue]: "space";
1209
+ };
1210
+ };
1211
+ h: (value: string | number | {
1212
+ readonly [$$ScaleValue]: "space";
1213
+ }) => {
1214
+ height: string | number | {
1215
+ readonly [$$ScaleValue]: "space";
1216
+ };
1217
+ };
1218
+ p: (value: string | number | {
1219
+ readonly [$$ScaleValue]: "space";
1220
+ }) => {
1221
+ padding: string | number | {
1222
+ readonly [$$ScaleValue]: "space";
1223
+ };
1224
+ };
1225
+ pt: (value: string | number | {
1226
+ readonly [$$ScaleValue]: "space";
1227
+ }) => {
1228
+ paddingTop: string | number | {
1229
+ readonly [$$ScaleValue]: "space";
1230
+ };
1231
+ };
1232
+ pr: (value: string | number | {
1233
+ readonly [$$ScaleValue]: "space";
1234
+ }) => {
1235
+ paddingRight: string | number | {
1236
+ readonly [$$ScaleValue]: "space";
1237
+ };
1238
+ };
1239
+ pb: (value: string | number | {
1240
+ readonly [$$ScaleValue]: "space";
1241
+ }) => {
1242
+ paddingBottom: string | number | {
1243
+ readonly [$$ScaleValue]: "space";
1244
+ };
1245
+ };
1246
+ pl: (value: string | number | {
1247
+ readonly [$$ScaleValue]: "space";
1248
+ }) => {
1249
+ paddingLeft: string | number | {
1250
+ readonly [$$ScaleValue]: "space";
1251
+ };
1252
+ };
1253
+ px: (value: string | number | {
1254
+ readonly [$$ScaleValue]: "space";
1255
+ }) => {
1256
+ paddingLeft: string | number | {
1257
+ readonly [$$ScaleValue]: "space";
1258
+ };
1259
+ paddingRight: string | number | {
1260
+ readonly [$$ScaleValue]: "space";
1261
+ };
1262
+ };
1263
+ py: (value: string | number | {
1264
+ readonly [$$ScaleValue]: "space";
1265
+ }) => {
1266
+ paddingTop: string | number | {
1267
+ readonly [$$ScaleValue]: "space";
1268
+ };
1269
+ paddingBottom: string | number | {
1270
+ readonly [$$ScaleValue]: "space";
1271
+ };
1272
+ };
1273
+ m: (value: string | number | {
1274
+ readonly [$$ScaleValue]: "space";
1275
+ }) => {
1276
+ margin: string | number | {
1277
+ readonly [$$ScaleValue]: "space";
1278
+ };
1279
+ };
1280
+ mt: (value: string | number | {
1281
+ readonly [$$ScaleValue]: "space";
1282
+ }) => {
1283
+ marginTop: string | number | {
1284
+ readonly [$$ScaleValue]: "space";
1285
+ };
1286
+ };
1287
+ mr: (value: string | number | {
1288
+ readonly [$$ScaleValue]: "space";
1289
+ }) => {
1290
+ marginRight: string | number | {
1291
+ readonly [$$ScaleValue]: "space";
1292
+ };
1293
+ };
1294
+ mb: (value: string | number | {
1295
+ readonly [$$ScaleValue]: "space";
1296
+ }) => {
1297
+ marginBottom: string | number | {
1298
+ readonly [$$ScaleValue]: "space";
1299
+ };
1300
+ };
1301
+ ml: (value: string | number | {
1302
+ readonly [$$ScaleValue]: "space";
1303
+ }) => {
1304
+ marginLeft: string | number | {
1305
+ readonly [$$ScaleValue]: "space";
1306
+ };
1307
+ };
1308
+ mx: (value: string | number | {
1309
+ readonly [$$ScaleValue]: "space";
1310
+ }) => {
1311
+ marginLeft: string | number | {
1312
+ readonly [$$ScaleValue]: "space";
1313
+ };
1314
+ marginRight: string | number | {
1315
+ readonly [$$ScaleValue]: "space";
1316
+ };
1317
+ };
1318
+ my: (value: string | number | {
1319
+ readonly [$$ScaleValue]: "space";
1320
+ }) => {
1321
+ marginTop: string | number | {
1322
+ readonly [$$ScaleValue]: "space";
1323
+ };
1324
+ marginBottom: string | number | {
1325
+ readonly [$$ScaleValue]: "space";
1326
+ };
1327
+ };
1328
+ }>>;
1329
+ Content: React.ForwardRefExoticComponent<Omit<SheetContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
1330
+ Description: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>, {}, {
1331
+ allowMotion: string;
1332
+ sm: string;
1333
+ md: string;
1334
+ lg: string;
1335
+ xl: string;
1336
+ '2xl': string;
1337
+ ls: string;
1338
+ }, import("@stitches/react/types/css-util").CSS<{
1339
+ allowMotion: string;
1340
+ sm: string;
1341
+ md: string;
1342
+ lg: string;
1343
+ xl: string;
1344
+ '2xl': string;
1345
+ ls: string;
1346
+ }, {
1347
+ colors: {
1348
+ primary_default: string;
1349
+ primary_bright: string;
1350
+ primary_dim: string;
1351
+ primary_disabled: string;
1352
+ on_primary_high: string;
1353
+ on_primary_medium: string;
1354
+ on_primary_low: string;
1355
+ secondary_default: string;
1356
+ secondary_bright: string;
1357
+ secondary_dim: string;
1358
+ secondary_disabled: string;
1359
+ on_secondary_high: string;
1360
+ on_secondary_medium: string;
1361
+ on_secondary_low: string;
1362
+ background_default: string;
1363
+ background_dim: string;
1364
+ surface_default: string;
1365
+ surface_bright: string;
1366
+ surface_brighter: string;
1367
+ surface_dim: string;
1368
+ on_surface_high: string;
1369
+ on_surface_medium: string;
1370
+ on_surface_low: string;
1371
+ border_default: string;
1372
+ border_bright: string;
1373
+ alert_success: string;
1374
+ alert_warning: string;
1375
+ alert_error_default: string;
1376
+ alert_error_bright: string;
1377
+ alert_error_brighter: string;
1378
+ alert_error_dim: string;
1379
+ };
1380
+ shadows: {
1381
+ sm: string;
1382
+ md: string;
1383
+ };
1384
+ fonts: {
1385
+ sans: string;
1386
+ };
1387
+ fontSizes: {
1388
+ h1: string;
1389
+ h2: string;
1390
+ h3: string;
1391
+ h4: string;
1392
+ h5: string;
1393
+ h6: string;
1394
+ tiny: string;
1395
+ xs: string;
1396
+ sm: string;
1397
+ md: string;
1398
+ lg: string;
1399
+ };
1400
+ fontWeights: {
1401
+ semiBold: number;
1402
+ medium: number;
1403
+ regular: number;
1404
+ };
1405
+ lineHeights: {
1406
+ h1: string;
1407
+ h2: string;
1408
+ h3: string;
1409
+ h4: string;
1410
+ h5: string;
1411
+ h6: string;
1412
+ tiny: string;
1413
+ xs: string;
1414
+ sm: string;
1415
+ md: string;
1416
+ };
1417
+ radii: {
1418
+ '0': string;
1419
+ '1': string;
1420
+ '2': string;
1421
+ '3': string;
1422
+ '4': string;
1423
+ round: string;
1424
+ };
1425
+ space: {
1426
+ 0: string;
1427
+ xs: string;
1428
+ sm: string;
1429
+ md: string;
1430
+ lg: string;
1431
+ xl: string;
1432
+ px: string;
1433
+ 1: string;
1434
+ 2: string;
1435
+ 3: string;
1436
+ 4: string;
1437
+ 5: string;
1438
+ 6: string;
1439
+ 7: string;
1440
+ 8: string;
1441
+ 9: string;
1442
+ 10: string;
1443
+ 11: string;
1444
+ 12: string;
1445
+ 13: string;
1446
+ 14: string;
1447
+ 15: string;
1448
+ 16: string;
1449
+ 17: string;
1450
+ 18: string;
1451
+ 19: string;
1452
+ 20: string;
1453
+ 24: string;
1454
+ 28: string;
1455
+ 32: string;
1456
+ 36: string;
1457
+ 40: string;
1458
+ 44: string;
1459
+ 48: string;
1460
+ 52: string;
1461
+ 56: string;
1462
+ 60: string;
1463
+ 64: string;
1464
+ 72: string;
1465
+ 80: string;
1466
+ 96: string;
1467
+ 100: string;
1468
+ };
1469
+ borderWidths: {
1470
+ light: string;
1471
+ normal: string;
1472
+ bold: string;
1473
+ extrabold: string;
1474
+ black: string;
1475
+ };
1476
+ }, {
1477
+ width: string;
1478
+ height: string;
1479
+ minWidth: string;
1480
+ maxWidth: string;
1481
+ minHeight: string;
1482
+ maxHeight: string;
1483
+ flexBasis: string;
1484
+ gridTemplateColumns: string;
1485
+ gridTemplateRows: string;
1486
+ blockSize: string;
1487
+ minBlockSize: string;
1488
+ maxBlockSize: string;
1489
+ inlineSize: string;
1490
+ minInlineSize: string;
1491
+ maxInlineSize: string;
1492
+ gap: "space";
1493
+ gridGap: "space";
1494
+ columnGap: "space";
1495
+ gridColumnGap: "space";
1496
+ rowGap: "space";
1497
+ gridRowGap: "space";
1498
+ inset: "space";
1499
+ insetBlock: "space";
1500
+ insetBlockEnd: "space";
1501
+ insetBlockStart: "space";
1502
+ insetInline: "space";
1503
+ insetInlineEnd: "space";
1504
+ insetInlineStart: "space";
1505
+ margin: "space";
1506
+ marginTop: "space";
1507
+ marginRight: "space";
1508
+ marginBottom: "space";
1509
+ marginLeft: "space";
1510
+ marginBlock: "space";
1511
+ marginBlockEnd: "space";
1512
+ marginBlockStart: "space";
1513
+ marginInline: "space";
1514
+ marginInlineEnd: "space";
1515
+ marginInlineStart: "space";
1516
+ padding: "space";
1517
+ paddingTop: "space";
1518
+ paddingRight: "space";
1519
+ paddingBottom: "space";
1520
+ paddingLeft: "space";
1521
+ paddingBlock: "space";
1522
+ paddingBlockEnd: "space";
1523
+ paddingBlockStart: "space";
1524
+ paddingInline: "space";
1525
+ paddingInlineEnd: "space";
1526
+ paddingInlineStart: "space";
1527
+ scrollMargin: "space";
1528
+ scrollMarginTop: "space";
1529
+ scrollMarginRight: "space";
1530
+ scrollMarginBottom: "space";
1531
+ scrollMarginLeft: "space";
1532
+ scrollMarginBlock: "space";
1533
+ scrollMarginBlockEnd: "space";
1534
+ scrollMarginBlockStart: "space";
1535
+ scrollMarginInline: "space";
1536
+ scrollMarginInlineEnd: "space";
1537
+ scrollMarginInlineStart: "space";
1538
+ scrollPadding: "space";
1539
+ scrollPaddingTop: "space";
1540
+ scrollPaddingRight: "space";
1541
+ scrollPaddingBottom: "space";
1542
+ scrollPaddingLeft: "space";
1543
+ scrollPaddingBlock: "space";
1544
+ scrollPaddingBlockEnd: "space";
1545
+ scrollPaddingBlockStart: "space";
1546
+ scrollPaddingInline: "space";
1547
+ scrollPaddingInlineEnd: "space";
1548
+ scrollPaddingInlineStart: "space";
1549
+ top: "space";
1550
+ right: "space";
1551
+ bottom: "space";
1552
+ left: "space";
1553
+ fontSize: "fontSizes";
1554
+ background: "colors";
1555
+ backgroundColor: "colors";
1556
+ backgroundImage: "colors";
1557
+ borderImage: "colors";
1558
+ border: "colors";
1559
+ borderBlock: "colors";
1560
+ borderBlockEnd: "colors";
1561
+ borderBlockStart: "colors";
1562
+ borderBottom: "colors";
1563
+ borderBottomColor: "colors";
1564
+ borderColor: "colors";
1565
+ borderInline: "colors";
1566
+ borderInlineEnd: "colors";
1567
+ borderInlineStart: "colors";
1568
+ borderLeft: "colors";
1569
+ borderLeftColor: "colors";
1570
+ borderRight: "colors";
1571
+ borderRightColor: "colors";
1572
+ borderTop: "colors";
1573
+ borderTopColor: "colors";
1574
+ caretColor: "colors";
1575
+ color: "colors";
1576
+ columnRuleColor: "colors";
1577
+ outline: "colors";
1578
+ outlineColor: "colors";
1579
+ fill: "colors";
1580
+ stroke: "colors";
1581
+ textDecorationColor: "colors";
1582
+ fontFamily: "fonts";
1583
+ fontWeight: "fontWeights";
1584
+ lineHeight: "lineHeights";
1585
+ letterSpacing: "letterSpacings";
1586
+ borderWidth: "borderWidths";
1587
+ borderTopWidth: "borderWidths";
1588
+ borderLeftWidth: "borderWidths";
1589
+ borderRightWidth: "borderWidths";
1590
+ borderBottomWidth: "borderWidths";
1591
+ borderStyle: "borderStyles";
1592
+ borderTopStyle: "borderStyles";
1593
+ borderLeftStyle: "borderStyles";
1594
+ borderRightStyle: "borderStyles";
1595
+ borderBottomStyle: "borderStyles";
1596
+ borderRadius: "radii";
1597
+ borderTopLeftRadius: "radii";
1598
+ borderTopRightRadius: "radii";
1599
+ borderBottomRightRadius: "radii";
1600
+ borderBottomLeftRadius: "radii";
1601
+ boxShadow: "shadows";
1602
+ textShadow: "shadows";
1603
+ transition: "transitions";
1604
+ zIndex: "zIndices";
1605
+ }, {
1606
+ bg: (value: {
1607
+ readonly [$$PropertyValue]: "backgroundColor";
1608
+ }) => {
1609
+ backgroundColor: {
1610
+ readonly [$$PropertyValue]: "backgroundColor";
1611
+ };
1612
+ };
1613
+ c: (value: {
1614
+ readonly [$$PropertyValue]: "color";
1615
+ }) => {
1616
+ color: {
1617
+ readonly [$$PropertyValue]: "color";
1618
+ };
1619
+ };
1620
+ r: (value: {
1621
+ readonly [$$ScaleValue]: "radii";
1622
+ }) => {
1623
+ borderRadius: {
1624
+ readonly [$$ScaleValue]: "radii";
1625
+ };
1626
+ };
1627
+ fs: (value: string | number | {
1628
+ readonly [$$PropertyValue]: "fontSize";
1629
+ }) => {
1630
+ fontSize: string | number | {
1631
+ readonly [$$PropertyValue]: "fontSize";
1632
+ };
1633
+ };
1634
+ size: (value: string | number | {
1635
+ readonly [$$ScaleValue]: "space";
1636
+ }) => {
1637
+ height: string | number | {
1638
+ readonly [$$ScaleValue]: "space";
1639
+ };
1640
+ width: string | number | {
1641
+ readonly [$$ScaleValue]: "space";
1642
+ };
1643
+ };
1644
+ w: (value: string | number | {
1645
+ readonly [$$ScaleValue]: "space";
1646
+ }) => {
1647
+ width: string | number | {
1648
+ readonly [$$ScaleValue]: "space";
1649
+ };
1650
+ };
1651
+ h: (value: string | number | {
1652
+ readonly [$$ScaleValue]: "space";
1653
+ }) => {
1654
+ height: string | number | {
1655
+ readonly [$$ScaleValue]: "space";
1656
+ };
1657
+ };
1658
+ p: (value: string | number | {
1659
+ readonly [$$ScaleValue]: "space";
1660
+ }) => {
1661
+ padding: string | number | {
1662
+ readonly [$$ScaleValue]: "space";
1663
+ };
1664
+ };
1665
+ pt: (value: string | number | {
1666
+ readonly [$$ScaleValue]: "space";
1667
+ }) => {
1668
+ paddingTop: string | number | {
1669
+ readonly [$$ScaleValue]: "space";
1670
+ };
1671
+ };
1672
+ pr: (value: string | number | {
1673
+ readonly [$$ScaleValue]: "space";
1674
+ }) => {
1675
+ paddingRight: string | number | {
1676
+ readonly [$$ScaleValue]: "space";
1677
+ };
1678
+ };
1679
+ pb: (value: string | number | {
1680
+ readonly [$$ScaleValue]: "space";
1681
+ }) => {
1682
+ paddingBottom: string | number | {
1683
+ readonly [$$ScaleValue]: "space";
1684
+ };
1685
+ };
1686
+ pl: (value: string | number | {
1687
+ readonly [$$ScaleValue]: "space";
1688
+ }) => {
1689
+ paddingLeft: string | number | {
1690
+ readonly [$$ScaleValue]: "space";
1691
+ };
1692
+ };
1693
+ px: (value: string | number | {
1694
+ readonly [$$ScaleValue]: "space";
1695
+ }) => {
1696
+ paddingLeft: string | number | {
1697
+ readonly [$$ScaleValue]: "space";
1698
+ };
1699
+ paddingRight: string | number | {
1700
+ readonly [$$ScaleValue]: "space";
1701
+ };
1702
+ };
1703
+ py: (value: string | number | {
1704
+ readonly [$$ScaleValue]: "space";
1705
+ }) => {
1706
+ paddingTop: string | number | {
1707
+ readonly [$$ScaleValue]: "space";
1708
+ };
1709
+ paddingBottom: string | number | {
1710
+ readonly [$$ScaleValue]: "space";
1711
+ };
1712
+ };
1713
+ m: (value: string | number | {
1714
+ readonly [$$ScaleValue]: "space";
1715
+ }) => {
1716
+ margin: string | number | {
1717
+ readonly [$$ScaleValue]: "space";
1718
+ };
1719
+ };
1720
+ mt: (value: string | number | {
1721
+ readonly [$$ScaleValue]: "space";
1722
+ }) => {
1723
+ marginTop: string | number | {
1724
+ readonly [$$ScaleValue]: "space";
1725
+ };
1726
+ };
1727
+ mr: (value: string | number | {
1728
+ readonly [$$ScaleValue]: "space";
1729
+ }) => {
1730
+ marginRight: string | number | {
1731
+ readonly [$$ScaleValue]: "space";
1732
+ };
1733
+ };
1734
+ mb: (value: string | number | {
1735
+ readonly [$$ScaleValue]: "space";
1736
+ }) => {
1737
+ marginBottom: string | number | {
1738
+ readonly [$$ScaleValue]: "space";
1739
+ };
1740
+ };
1741
+ ml: (value: string | number | {
1742
+ readonly [$$ScaleValue]: "space";
1743
+ }) => {
1744
+ marginLeft: string | number | {
1745
+ readonly [$$ScaleValue]: "space";
1746
+ };
1747
+ };
1748
+ mx: (value: string | number | {
1749
+ readonly [$$ScaleValue]: "space";
1750
+ }) => {
1751
+ marginLeft: string | number | {
1752
+ readonly [$$ScaleValue]: "space";
1753
+ };
1754
+ marginRight: string | number | {
1755
+ readonly [$$ScaleValue]: "space";
1756
+ };
1757
+ };
1758
+ my: (value: string | number | {
1759
+ readonly [$$ScaleValue]: "space";
1760
+ }) => {
1761
+ marginTop: string | number | {
1762
+ readonly [$$ScaleValue]: "space";
1763
+ };
1764
+ marginBottom: string | number | {
1765
+ readonly [$$ScaleValue]: "space";
1766
+ };
1767
+ };
1768
+ }>>;
1769
+ Title: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>, {}, {
1770
+ allowMotion: string;
1771
+ sm: string;
1772
+ md: string;
1773
+ lg: string;
1774
+ xl: string;
1775
+ '2xl': string;
1776
+ ls: string;
1777
+ }, import("@stitches/react/types/css-util").CSS<{
1778
+ allowMotion: string;
1779
+ sm: string;
1780
+ md: string;
1781
+ lg: string;
1782
+ xl: string;
1783
+ '2xl': string;
1784
+ ls: string;
1785
+ }, {
1786
+ colors: {
1787
+ primary_default: string;
1788
+ primary_bright: string;
1789
+ primary_dim: string;
1790
+ primary_disabled: string;
1791
+ on_primary_high: string;
1792
+ on_primary_medium: string;
1793
+ on_primary_low: string;
1794
+ secondary_default: string;
1795
+ secondary_bright: string;
1796
+ secondary_dim: string;
1797
+ secondary_disabled: string;
1798
+ on_secondary_high: string;
1799
+ on_secondary_medium: string;
1800
+ on_secondary_low: string;
1801
+ background_default: string;
1802
+ background_dim: string;
1803
+ surface_default: string;
1804
+ surface_bright: string;
1805
+ surface_brighter: string;
1806
+ surface_dim: string;
1807
+ on_surface_high: string;
1808
+ on_surface_medium: string;
1809
+ on_surface_low: string;
1810
+ border_default: string;
1811
+ border_bright: string;
1812
+ alert_success: string;
1813
+ alert_warning: string;
1814
+ alert_error_default: string;
1815
+ alert_error_bright: string;
1816
+ alert_error_brighter: string;
1817
+ alert_error_dim: string;
1818
+ };
1819
+ shadows: {
1820
+ sm: string;
1821
+ md: string;
1822
+ };
1823
+ fonts: {
1824
+ sans: string;
1825
+ };
1826
+ fontSizes: {
1827
+ h1: string;
1828
+ h2: string;
1829
+ h3: string;
1830
+ h4: string;
1831
+ h5: string;
1832
+ h6: string;
1833
+ tiny: string;
1834
+ xs: string;
1835
+ sm: string;
1836
+ md: string;
1837
+ lg: string;
1838
+ };
1839
+ fontWeights: {
1840
+ semiBold: number;
1841
+ medium: number;
1842
+ regular: number;
1843
+ };
1844
+ lineHeights: {
1845
+ h1: string;
1846
+ h2: string;
1847
+ h3: string;
1848
+ h4: string;
1849
+ h5: string;
1850
+ h6: string;
1851
+ tiny: string;
1852
+ xs: string;
1853
+ sm: string;
1854
+ md: string;
1855
+ };
1856
+ radii: {
1857
+ '0': string;
1858
+ '1': string;
1859
+ '2': string;
1860
+ '3': string;
1861
+ '4': string;
1862
+ round: string;
1863
+ };
1864
+ space: {
1865
+ 0: string;
1866
+ xs: string;
1867
+ sm: string;
1868
+ md: string;
1869
+ lg: string;
1870
+ xl: string;
1871
+ px: string;
1872
+ 1: string;
1873
+ 2: string;
1874
+ 3: string;
1875
+ 4: string;
1876
+ 5: string;
1877
+ 6: string;
1878
+ 7: string;
1879
+ 8: string;
1880
+ 9: string;
1881
+ 10: string;
1882
+ 11: string;
1883
+ 12: string;
1884
+ 13: string;
1885
+ 14: string;
1886
+ 15: string;
1887
+ 16: string;
1888
+ 17: string;
1889
+ 18: string;
1890
+ 19: string;
1891
+ 20: string;
1892
+ 24: string;
1893
+ 28: string;
1894
+ 32: string;
1895
+ 36: string;
1896
+ 40: string;
1897
+ 44: string;
1898
+ 48: string;
1899
+ 52: string;
1900
+ 56: string;
1901
+ 60: string;
1902
+ 64: string;
1903
+ 72: string;
1904
+ 80: string;
1905
+ 96: string;
1906
+ 100: string;
1907
+ };
1908
+ borderWidths: {
1909
+ light: string;
1910
+ normal: string;
1911
+ bold: string;
1912
+ extrabold: string;
1913
+ black: string;
1914
+ };
1915
+ }, {
1916
+ width: string;
1917
+ height: string;
1918
+ minWidth: string;
1919
+ maxWidth: string;
1920
+ minHeight: string;
1921
+ maxHeight: string;
1922
+ flexBasis: string;
1923
+ gridTemplateColumns: string;
1924
+ gridTemplateRows: string;
1925
+ blockSize: string;
1926
+ minBlockSize: string;
1927
+ maxBlockSize: string;
1928
+ inlineSize: string;
1929
+ minInlineSize: string;
1930
+ maxInlineSize: string;
1931
+ gap: "space";
1932
+ gridGap: "space";
1933
+ columnGap: "space";
1934
+ gridColumnGap: "space";
1935
+ rowGap: "space";
1936
+ gridRowGap: "space";
1937
+ inset: "space";
1938
+ insetBlock: "space";
1939
+ insetBlockEnd: "space";
1940
+ insetBlockStart: "space";
1941
+ insetInline: "space";
1942
+ insetInlineEnd: "space";
1943
+ insetInlineStart: "space";
1944
+ margin: "space";
1945
+ marginTop: "space";
1946
+ marginRight: "space";
1947
+ marginBottom: "space";
1948
+ marginLeft: "space";
1949
+ marginBlock: "space";
1950
+ marginBlockEnd: "space";
1951
+ marginBlockStart: "space";
1952
+ marginInline: "space";
1953
+ marginInlineEnd: "space";
1954
+ marginInlineStart: "space";
1955
+ padding: "space";
1956
+ paddingTop: "space";
1957
+ paddingRight: "space";
1958
+ paddingBottom: "space";
1959
+ paddingLeft: "space";
1960
+ paddingBlock: "space";
1961
+ paddingBlockEnd: "space";
1962
+ paddingBlockStart: "space";
1963
+ paddingInline: "space";
1964
+ paddingInlineEnd: "space";
1965
+ paddingInlineStart: "space";
1966
+ scrollMargin: "space";
1967
+ scrollMarginTop: "space";
1968
+ scrollMarginRight: "space";
1969
+ scrollMarginBottom: "space";
1970
+ scrollMarginLeft: "space";
1971
+ scrollMarginBlock: "space";
1972
+ scrollMarginBlockEnd: "space";
1973
+ scrollMarginBlockStart: "space";
1974
+ scrollMarginInline: "space";
1975
+ scrollMarginInlineEnd: "space";
1976
+ scrollMarginInlineStart: "space";
1977
+ scrollPadding: "space";
1978
+ scrollPaddingTop: "space";
1979
+ scrollPaddingRight: "space";
1980
+ scrollPaddingBottom: "space";
1981
+ scrollPaddingLeft: "space";
1982
+ scrollPaddingBlock: "space";
1983
+ scrollPaddingBlockEnd: "space";
1984
+ scrollPaddingBlockStart: "space";
1985
+ scrollPaddingInline: "space";
1986
+ scrollPaddingInlineEnd: "space";
1987
+ scrollPaddingInlineStart: "space";
1988
+ top: "space";
1989
+ right: "space";
1990
+ bottom: "space";
1991
+ left: "space";
1992
+ fontSize: "fontSizes";
1993
+ background: "colors";
1994
+ backgroundColor: "colors";
1995
+ backgroundImage: "colors";
1996
+ borderImage: "colors";
1997
+ border: "colors";
1998
+ borderBlock: "colors";
1999
+ borderBlockEnd: "colors";
2000
+ borderBlockStart: "colors";
2001
+ borderBottom: "colors";
2002
+ borderBottomColor: "colors";
2003
+ borderColor: "colors";
2004
+ borderInline: "colors";
2005
+ borderInlineEnd: "colors";
2006
+ borderInlineStart: "colors";
2007
+ borderLeft: "colors";
2008
+ borderLeftColor: "colors";
2009
+ borderRight: "colors";
2010
+ borderRightColor: "colors";
2011
+ borderTop: "colors";
2012
+ borderTopColor: "colors";
2013
+ caretColor: "colors";
2014
+ color: "colors";
2015
+ columnRuleColor: "colors";
2016
+ outline: "colors";
2017
+ outlineColor: "colors";
2018
+ fill: "colors";
2019
+ stroke: "colors";
2020
+ textDecorationColor: "colors";
2021
+ fontFamily: "fonts";
2022
+ fontWeight: "fontWeights";
2023
+ lineHeight: "lineHeights";
2024
+ letterSpacing: "letterSpacings";
2025
+ borderWidth: "borderWidths";
2026
+ borderTopWidth: "borderWidths";
2027
+ borderLeftWidth: "borderWidths";
2028
+ borderRightWidth: "borderWidths";
2029
+ borderBottomWidth: "borderWidths";
2030
+ borderStyle: "borderStyles";
2031
+ borderTopStyle: "borderStyles";
2032
+ borderLeftStyle: "borderStyles";
2033
+ borderRightStyle: "borderStyles";
2034
+ borderBottomStyle: "borderStyles";
2035
+ borderRadius: "radii";
2036
+ borderTopLeftRadius: "radii";
2037
+ borderTopRightRadius: "radii";
2038
+ borderBottomRightRadius: "radii";
2039
+ borderBottomLeftRadius: "radii";
2040
+ boxShadow: "shadows";
2041
+ textShadow: "shadows";
2042
+ transition: "transitions";
2043
+ zIndex: "zIndices";
2044
+ }, {
2045
+ bg: (value: {
2046
+ readonly [$$PropertyValue]: "backgroundColor";
2047
+ }) => {
2048
+ backgroundColor: {
2049
+ readonly [$$PropertyValue]: "backgroundColor";
2050
+ };
2051
+ };
2052
+ c: (value: {
2053
+ readonly [$$PropertyValue]: "color";
2054
+ }) => {
2055
+ color: {
2056
+ readonly [$$PropertyValue]: "color";
2057
+ };
2058
+ };
2059
+ r: (value: {
2060
+ readonly [$$ScaleValue]: "radii";
2061
+ }) => {
2062
+ borderRadius: {
2063
+ readonly [$$ScaleValue]: "radii";
2064
+ };
2065
+ };
2066
+ fs: (value: string | number | {
2067
+ readonly [$$PropertyValue]: "fontSize";
2068
+ }) => {
2069
+ fontSize: string | number | {
2070
+ readonly [$$PropertyValue]: "fontSize";
2071
+ };
2072
+ };
2073
+ size: (value: string | number | {
2074
+ readonly [$$ScaleValue]: "space";
2075
+ }) => {
2076
+ height: string | number | {
2077
+ readonly [$$ScaleValue]: "space";
2078
+ };
2079
+ width: string | number | {
2080
+ readonly [$$ScaleValue]: "space";
2081
+ };
2082
+ };
2083
+ w: (value: string | number | {
2084
+ readonly [$$ScaleValue]: "space";
2085
+ }) => {
2086
+ width: string | number | {
2087
+ readonly [$$ScaleValue]: "space";
2088
+ };
2089
+ };
2090
+ h: (value: string | number | {
2091
+ readonly [$$ScaleValue]: "space";
2092
+ }) => {
2093
+ height: string | number | {
2094
+ readonly [$$ScaleValue]: "space";
2095
+ };
2096
+ };
2097
+ p: (value: string | number | {
2098
+ readonly [$$ScaleValue]: "space";
2099
+ }) => {
2100
+ padding: string | number | {
2101
+ readonly [$$ScaleValue]: "space";
2102
+ };
2103
+ };
2104
+ pt: (value: string | number | {
2105
+ readonly [$$ScaleValue]: "space";
2106
+ }) => {
2107
+ paddingTop: string | number | {
2108
+ readonly [$$ScaleValue]: "space";
2109
+ };
2110
+ };
2111
+ pr: (value: string | number | {
2112
+ readonly [$$ScaleValue]: "space";
2113
+ }) => {
2114
+ paddingRight: string | number | {
2115
+ readonly [$$ScaleValue]: "space";
2116
+ };
2117
+ };
2118
+ pb: (value: string | number | {
2119
+ readonly [$$ScaleValue]: "space";
2120
+ }) => {
2121
+ paddingBottom: string | number | {
2122
+ readonly [$$ScaleValue]: "space";
2123
+ };
2124
+ };
2125
+ pl: (value: string | number | {
2126
+ readonly [$$ScaleValue]: "space";
2127
+ }) => {
2128
+ paddingLeft: string | number | {
2129
+ readonly [$$ScaleValue]: "space";
2130
+ };
2131
+ };
2132
+ px: (value: string | number | {
2133
+ readonly [$$ScaleValue]: "space";
2134
+ }) => {
2135
+ paddingLeft: string | number | {
2136
+ readonly [$$ScaleValue]: "space";
2137
+ };
2138
+ paddingRight: string | number | {
2139
+ readonly [$$ScaleValue]: "space";
2140
+ };
2141
+ };
2142
+ py: (value: string | number | {
2143
+ readonly [$$ScaleValue]: "space";
2144
+ }) => {
2145
+ paddingTop: string | number | {
2146
+ readonly [$$ScaleValue]: "space";
2147
+ };
2148
+ paddingBottom: string | number | {
2149
+ readonly [$$ScaleValue]: "space";
2150
+ };
2151
+ };
2152
+ m: (value: string | number | {
2153
+ readonly [$$ScaleValue]: "space";
2154
+ }) => {
2155
+ margin: string | number | {
2156
+ readonly [$$ScaleValue]: "space";
2157
+ };
2158
+ };
2159
+ mt: (value: string | number | {
2160
+ readonly [$$ScaleValue]: "space";
2161
+ }) => {
2162
+ marginTop: string | number | {
2163
+ readonly [$$ScaleValue]: "space";
2164
+ };
2165
+ };
2166
+ mr: (value: string | number | {
2167
+ readonly [$$ScaleValue]: "space";
2168
+ }) => {
2169
+ marginRight: string | number | {
2170
+ readonly [$$ScaleValue]: "space";
2171
+ };
2172
+ };
2173
+ mb: (value: string | number | {
2174
+ readonly [$$ScaleValue]: "space";
2175
+ }) => {
2176
+ marginBottom: string | number | {
2177
+ readonly [$$ScaleValue]: "space";
2178
+ };
2179
+ };
2180
+ ml: (value: string | number | {
2181
+ readonly [$$ScaleValue]: "space";
2182
+ }) => {
2183
+ marginLeft: string | number | {
2184
+ readonly [$$ScaleValue]: "space";
2185
+ };
2186
+ };
2187
+ mx: (value: string | number | {
2188
+ readonly [$$ScaleValue]: "space";
2189
+ }) => {
2190
+ marginLeft: string | number | {
2191
+ readonly [$$ScaleValue]: "space";
2192
+ };
2193
+ marginRight: string | number | {
2194
+ readonly [$$ScaleValue]: "space";
2195
+ };
2196
+ };
2197
+ my: (value: string | number | {
2198
+ readonly [$$ScaleValue]: "space";
2199
+ }) => {
2200
+ marginTop: string | number | {
2201
+ readonly [$$ScaleValue]: "space";
2202
+ };
2203
+ marginBottom: string | number | {
2204
+ readonly [$$ScaleValue]: "space";
2205
+ };
2206
+ };
2207
+ }>>;
2208
+ Close: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>, {}, {
2209
+ allowMotion: string;
2210
+ sm: string;
2211
+ md: string;
2212
+ lg: string;
2213
+ xl: string;
2214
+ '2xl': string;
2215
+ ls: string;
2216
+ }, import("@stitches/react/types/css-util").CSS<{
2217
+ allowMotion: string;
2218
+ sm: string;
2219
+ md: string;
2220
+ lg: string;
2221
+ xl: string;
2222
+ '2xl': string;
2223
+ ls: string;
2224
+ }, {
2225
+ colors: {
2226
+ primary_default: string;
2227
+ primary_bright: string;
2228
+ primary_dim: string;
2229
+ primary_disabled: string;
2230
+ on_primary_high: string;
2231
+ on_primary_medium: string;
2232
+ on_primary_low: string;
2233
+ secondary_default: string;
2234
+ secondary_bright: string;
2235
+ secondary_dim: string;
2236
+ secondary_disabled: string;
2237
+ on_secondary_high: string;
2238
+ on_secondary_medium: string;
2239
+ on_secondary_low: string;
2240
+ background_default: string;
2241
+ background_dim: string;
2242
+ surface_default: string;
2243
+ surface_bright: string;
2244
+ surface_brighter: string;
2245
+ surface_dim: string;
2246
+ on_surface_high: string;
2247
+ on_surface_medium: string;
2248
+ on_surface_low: string;
2249
+ border_default: string;
2250
+ border_bright: string;
2251
+ alert_success: string;
2252
+ alert_warning: string;
2253
+ alert_error_default: string;
2254
+ alert_error_bright: string;
2255
+ alert_error_brighter: string;
2256
+ alert_error_dim: string;
2257
+ };
2258
+ shadows: {
2259
+ sm: string;
2260
+ md: string;
2261
+ };
2262
+ fonts: {
2263
+ sans: string;
2264
+ };
2265
+ fontSizes: {
2266
+ h1: string;
2267
+ h2: string;
2268
+ h3: string;
2269
+ h4: string;
2270
+ h5: string;
2271
+ h6: string;
2272
+ tiny: string;
2273
+ xs: string;
2274
+ sm: string;
2275
+ md: string;
2276
+ lg: string;
2277
+ };
2278
+ fontWeights: {
2279
+ semiBold: number;
2280
+ medium: number;
2281
+ regular: number;
2282
+ };
2283
+ lineHeights: {
2284
+ h1: string;
2285
+ h2: string;
2286
+ h3: string;
2287
+ h4: string;
2288
+ h5: string;
2289
+ h6: string;
2290
+ tiny: string;
2291
+ xs: string;
2292
+ sm: string;
2293
+ md: string;
2294
+ };
2295
+ radii: {
2296
+ '0': string;
2297
+ '1': string;
2298
+ '2': string;
2299
+ '3': string;
2300
+ '4': string;
2301
+ round: string;
2302
+ };
2303
+ space: {
2304
+ 0: string;
2305
+ xs: string;
2306
+ sm: string;
2307
+ md: string;
2308
+ lg: string;
2309
+ xl: string;
2310
+ px: string;
2311
+ 1: string;
2312
+ 2: string;
2313
+ 3: string;
2314
+ 4: string;
2315
+ 5: string;
2316
+ 6: string;
2317
+ 7: string;
2318
+ 8: string;
2319
+ 9: string;
2320
+ 10: string;
2321
+ 11: string;
2322
+ 12: string;
2323
+ 13: string;
2324
+ 14: string;
2325
+ 15: string;
2326
+ 16: string;
2327
+ 17: string;
2328
+ 18: string;
2329
+ 19: string;
2330
+ 20: string;
2331
+ 24: string;
2332
+ 28: string;
2333
+ 32: string;
2334
+ 36: string;
2335
+ 40: string;
2336
+ 44: string;
2337
+ 48: string;
2338
+ 52: string;
2339
+ 56: string;
2340
+ 60: string;
2341
+ 64: string;
2342
+ 72: string;
2343
+ 80: string;
2344
+ 96: string;
2345
+ 100: string;
2346
+ };
2347
+ borderWidths: {
2348
+ light: string;
2349
+ normal: string;
2350
+ bold: string;
2351
+ extrabold: string;
2352
+ black: string;
2353
+ };
2354
+ }, {
2355
+ width: string;
2356
+ height: string;
2357
+ minWidth: string;
2358
+ maxWidth: string;
2359
+ minHeight: string;
2360
+ maxHeight: string;
2361
+ flexBasis: string;
2362
+ gridTemplateColumns: string;
2363
+ gridTemplateRows: string;
2364
+ blockSize: string;
2365
+ minBlockSize: string;
2366
+ maxBlockSize: string;
2367
+ inlineSize: string;
2368
+ minInlineSize: string;
2369
+ maxInlineSize: string;
2370
+ gap: "space";
2371
+ gridGap: "space";
2372
+ columnGap: "space";
2373
+ gridColumnGap: "space";
2374
+ rowGap: "space";
2375
+ gridRowGap: "space";
2376
+ inset: "space";
2377
+ insetBlock: "space";
2378
+ insetBlockEnd: "space";
2379
+ insetBlockStart: "space";
2380
+ insetInline: "space";
2381
+ insetInlineEnd: "space";
2382
+ insetInlineStart: "space";
2383
+ margin: "space";
2384
+ marginTop: "space";
2385
+ marginRight: "space";
2386
+ marginBottom: "space";
2387
+ marginLeft: "space";
2388
+ marginBlock: "space";
2389
+ marginBlockEnd: "space";
2390
+ marginBlockStart: "space";
2391
+ marginInline: "space";
2392
+ marginInlineEnd: "space";
2393
+ marginInlineStart: "space";
2394
+ padding: "space";
2395
+ paddingTop: "space";
2396
+ paddingRight: "space";
2397
+ paddingBottom: "space";
2398
+ paddingLeft: "space";
2399
+ paddingBlock: "space";
2400
+ paddingBlockEnd: "space";
2401
+ paddingBlockStart: "space";
2402
+ paddingInline: "space";
2403
+ paddingInlineEnd: "space";
2404
+ paddingInlineStart: "space";
2405
+ scrollMargin: "space";
2406
+ scrollMarginTop: "space";
2407
+ scrollMarginRight: "space";
2408
+ scrollMarginBottom: "space";
2409
+ scrollMarginLeft: "space";
2410
+ scrollMarginBlock: "space";
2411
+ scrollMarginBlockEnd: "space";
2412
+ scrollMarginBlockStart: "space";
2413
+ scrollMarginInline: "space";
2414
+ scrollMarginInlineEnd: "space";
2415
+ scrollMarginInlineStart: "space";
2416
+ scrollPadding: "space";
2417
+ scrollPaddingTop: "space";
2418
+ scrollPaddingRight: "space";
2419
+ scrollPaddingBottom: "space";
2420
+ scrollPaddingLeft: "space";
2421
+ scrollPaddingBlock: "space";
2422
+ scrollPaddingBlockEnd: "space";
2423
+ scrollPaddingBlockStart: "space";
2424
+ scrollPaddingInline: "space";
2425
+ scrollPaddingInlineEnd: "space";
2426
+ scrollPaddingInlineStart: "space";
2427
+ top: "space";
2428
+ right: "space";
2429
+ bottom: "space";
2430
+ left: "space";
2431
+ fontSize: "fontSizes";
2432
+ background: "colors";
2433
+ backgroundColor: "colors";
2434
+ backgroundImage: "colors";
2435
+ borderImage: "colors";
2436
+ border: "colors";
2437
+ borderBlock: "colors";
2438
+ borderBlockEnd: "colors";
2439
+ borderBlockStart: "colors";
2440
+ borderBottom: "colors";
2441
+ borderBottomColor: "colors";
2442
+ borderColor: "colors";
2443
+ borderInline: "colors";
2444
+ borderInlineEnd: "colors";
2445
+ borderInlineStart: "colors";
2446
+ borderLeft: "colors";
2447
+ borderLeftColor: "colors";
2448
+ borderRight: "colors";
2449
+ borderRightColor: "colors";
2450
+ borderTop: "colors";
2451
+ borderTopColor: "colors";
2452
+ caretColor: "colors";
2453
+ color: "colors";
2454
+ columnRuleColor: "colors";
2455
+ outline: "colors";
2456
+ outlineColor: "colors";
2457
+ fill: "colors";
2458
+ stroke: "colors";
2459
+ textDecorationColor: "colors";
2460
+ fontFamily: "fonts";
2461
+ fontWeight: "fontWeights";
2462
+ lineHeight: "lineHeights";
2463
+ letterSpacing: "letterSpacings";
2464
+ borderWidth: "borderWidths";
2465
+ borderTopWidth: "borderWidths";
2466
+ borderLeftWidth: "borderWidths";
2467
+ borderRightWidth: "borderWidths";
2468
+ borderBottomWidth: "borderWidths";
2469
+ borderStyle: "borderStyles";
2470
+ borderTopStyle: "borderStyles";
2471
+ borderLeftStyle: "borderStyles";
2472
+ borderRightStyle: "borderStyles";
2473
+ borderBottomStyle: "borderStyles";
2474
+ borderRadius: "radii";
2475
+ borderTopLeftRadius: "radii";
2476
+ borderTopRightRadius: "radii";
2477
+ borderBottomRightRadius: "radii";
2478
+ borderBottomLeftRadius: "radii";
2479
+ boxShadow: "shadows";
2480
+ textShadow: "shadows";
2481
+ transition: "transitions";
2482
+ zIndex: "zIndices";
2483
+ }, {
2484
+ bg: (value: {
2485
+ readonly [$$PropertyValue]: "backgroundColor";
2486
+ }) => {
2487
+ backgroundColor: {
2488
+ readonly [$$PropertyValue]: "backgroundColor";
2489
+ };
2490
+ };
2491
+ c: (value: {
2492
+ readonly [$$PropertyValue]: "color";
2493
+ }) => {
2494
+ color: {
2495
+ readonly [$$PropertyValue]: "color";
2496
+ };
2497
+ };
2498
+ r: (value: {
2499
+ readonly [$$ScaleValue]: "radii";
2500
+ }) => {
2501
+ borderRadius: {
2502
+ readonly [$$ScaleValue]: "radii";
2503
+ };
2504
+ };
2505
+ fs: (value: string | number | {
2506
+ readonly [$$PropertyValue]: "fontSize";
2507
+ }) => {
2508
+ fontSize: string | number | {
2509
+ readonly [$$PropertyValue]: "fontSize";
2510
+ };
2511
+ };
2512
+ size: (value: string | number | {
2513
+ readonly [$$ScaleValue]: "space";
2514
+ }) => {
2515
+ height: string | number | {
2516
+ readonly [$$ScaleValue]: "space";
2517
+ };
2518
+ width: string | number | {
2519
+ readonly [$$ScaleValue]: "space";
2520
+ };
2521
+ };
2522
+ w: (value: string | number | {
2523
+ readonly [$$ScaleValue]: "space";
2524
+ }) => {
2525
+ width: string | number | {
2526
+ readonly [$$ScaleValue]: "space";
2527
+ };
2528
+ };
2529
+ h: (value: string | number | {
2530
+ readonly [$$ScaleValue]: "space";
2531
+ }) => {
2532
+ height: string | number | {
2533
+ readonly [$$ScaleValue]: "space";
2534
+ };
2535
+ };
2536
+ p: (value: string | number | {
2537
+ readonly [$$ScaleValue]: "space";
2538
+ }) => {
2539
+ padding: string | number | {
2540
+ readonly [$$ScaleValue]: "space";
2541
+ };
2542
+ };
2543
+ pt: (value: string | number | {
2544
+ readonly [$$ScaleValue]: "space";
2545
+ }) => {
2546
+ paddingTop: string | number | {
2547
+ readonly [$$ScaleValue]: "space";
2548
+ };
2549
+ };
2550
+ pr: (value: string | number | {
2551
+ readonly [$$ScaleValue]: "space";
2552
+ }) => {
2553
+ paddingRight: string | number | {
2554
+ readonly [$$ScaleValue]: "space";
2555
+ };
2556
+ };
2557
+ pb: (value: string | number | {
2558
+ readonly [$$ScaleValue]: "space";
2559
+ }) => {
2560
+ paddingBottom: string | number | {
2561
+ readonly [$$ScaleValue]: "space";
2562
+ };
2563
+ };
2564
+ pl: (value: string | number | {
2565
+ readonly [$$ScaleValue]: "space";
2566
+ }) => {
2567
+ paddingLeft: string | number | {
2568
+ readonly [$$ScaleValue]: "space";
2569
+ };
2570
+ };
2571
+ px: (value: string | number | {
2572
+ readonly [$$ScaleValue]: "space";
2573
+ }) => {
2574
+ paddingLeft: string | number | {
2575
+ readonly [$$ScaleValue]: "space";
2576
+ };
2577
+ paddingRight: string | number | {
2578
+ readonly [$$ScaleValue]: "space";
2579
+ };
2580
+ };
2581
+ py: (value: string | number | {
2582
+ readonly [$$ScaleValue]: "space";
2583
+ }) => {
2584
+ paddingTop: string | number | {
2585
+ readonly [$$ScaleValue]: "space";
2586
+ };
2587
+ paddingBottom: string | number | {
2588
+ readonly [$$ScaleValue]: "space";
2589
+ };
2590
+ };
2591
+ m: (value: string | number | {
2592
+ readonly [$$ScaleValue]: "space";
2593
+ }) => {
2594
+ margin: string | number | {
2595
+ readonly [$$ScaleValue]: "space";
2596
+ };
2597
+ };
2598
+ mt: (value: string | number | {
2599
+ readonly [$$ScaleValue]: "space";
2600
+ }) => {
2601
+ marginTop: string | number | {
2602
+ readonly [$$ScaleValue]: "space";
2603
+ };
2604
+ };
2605
+ mr: (value: string | number | {
2606
+ readonly [$$ScaleValue]: "space";
2607
+ }) => {
2608
+ marginRight: string | number | {
2609
+ readonly [$$ScaleValue]: "space";
2610
+ };
2611
+ };
2612
+ mb: (value: string | number | {
2613
+ readonly [$$ScaleValue]: "space";
2614
+ }) => {
2615
+ marginBottom: string | number | {
2616
+ readonly [$$ScaleValue]: "space";
2617
+ };
2618
+ };
2619
+ ml: (value: string | number | {
2620
+ readonly [$$ScaleValue]: "space";
2621
+ }) => {
2622
+ marginLeft: string | number | {
2623
+ readonly [$$ScaleValue]: "space";
2624
+ };
2625
+ };
2626
+ mx: (value: string | number | {
2627
+ readonly [$$ScaleValue]: "space";
2628
+ }) => {
2629
+ marginLeft: string | number | {
2630
+ readonly [$$ScaleValue]: "space";
2631
+ };
2632
+ marginRight: string | number | {
2633
+ readonly [$$ScaleValue]: "space";
2634
+ };
2635
+ };
2636
+ my: (value: string | number | {
2637
+ readonly [$$ScaleValue]: "space";
2638
+ }) => {
2639
+ marginTop: string | number | {
2640
+ readonly [$$ScaleValue]: "space";
2641
+ };
2642
+ marginBottom: string | number | {
2643
+ readonly [$$ScaleValue]: "space";
2644
+ };
2645
+ };
2646
+ }>>;
2647
+ DefaultClose: (props: Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
2648
+ ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
2649
+ }, "css" | "active"> & import("@stitches/react/types/styled-component").TransformProps<{
2650
+ active?: boolean | "true" | "false" | undefined;
2651
+ }, {
2652
+ allowMotion: string;
2653
+ sm: string;
2654
+ md: string;
2655
+ lg: string;
2656
+ xl: string;
2657
+ '2xl': string;
2658
+ ls: string;
2659
+ }> & {
2660
+ css?: import("@stitches/react/types/css-util").CSS<{
2661
+ allowMotion: string;
2662
+ sm: string;
2663
+ md: string;
2664
+ lg: string;
2665
+ xl: string;
2666
+ '2xl': string;
2667
+ ls: string;
2668
+ }, {
2669
+ colors: {
2670
+ primary_default: string;
2671
+ primary_bright: string;
2672
+ primary_dim: string;
2673
+ primary_disabled: string;
2674
+ on_primary_high: string;
2675
+ on_primary_medium: string;
2676
+ on_primary_low: string;
2677
+ secondary_default: string;
2678
+ secondary_bright: string;
2679
+ secondary_dim: string;
2680
+ secondary_disabled: string;
2681
+ on_secondary_high: string;
2682
+ on_secondary_medium: string;
2683
+ on_secondary_low: string;
2684
+ background_default: string;
2685
+ background_dim: string;
2686
+ surface_default: string;
2687
+ surface_bright: string;
2688
+ surface_brighter: string;
2689
+ surface_dim: string;
2690
+ on_surface_high: string;
2691
+ on_surface_medium: string;
2692
+ on_surface_low: string;
2693
+ border_default: string;
2694
+ border_bright: string;
2695
+ alert_success: string;
2696
+ alert_warning: string;
2697
+ alert_error_default: string;
2698
+ alert_error_bright: string;
2699
+ alert_error_brighter: string;
2700
+ alert_error_dim: string;
2701
+ };
2702
+ shadows: {
2703
+ sm: string;
2704
+ md: string;
2705
+ };
2706
+ fonts: {
2707
+ sans: string;
2708
+ };
2709
+ fontSizes: {
2710
+ h1: string;
2711
+ h2: string;
2712
+ h3: string;
2713
+ h4: string;
2714
+ h5: string;
2715
+ h6: string;
2716
+ tiny: string;
2717
+ xs: string;
2718
+ sm: string;
2719
+ md: string;
2720
+ lg: string;
2721
+ };
2722
+ fontWeights: {
2723
+ semiBold: number;
2724
+ medium: number;
2725
+ regular: number;
2726
+ };
2727
+ lineHeights: {
2728
+ h1: string;
2729
+ h2: string;
2730
+ h3: string;
2731
+ h4: string;
2732
+ h5: string;
2733
+ h6: string;
2734
+ tiny: string;
2735
+ xs: string;
2736
+ sm: string;
2737
+ md: string;
2738
+ };
2739
+ radii: {
2740
+ '0': string;
2741
+ '1': string;
2742
+ '2': string;
2743
+ '3': string;
2744
+ '4': string;
2745
+ round: string;
2746
+ };
2747
+ space: {
2748
+ 0: string;
2749
+ xs: string;
2750
+ sm: string;
2751
+ md: string;
2752
+ lg: string;
2753
+ xl: string;
2754
+ px: string;
2755
+ 1: string;
2756
+ 2: string;
2757
+ 3: string;
2758
+ 4: string;
2759
+ 5: string;
2760
+ 6: string;
2761
+ 7: string;
2762
+ 8: string;
2763
+ 9: string;
2764
+ 10: string;
2765
+ 11: string;
2766
+ 12: string;
2767
+ 13: string;
2768
+ 14: string;
2769
+ 15: string;
2770
+ 16: string;
2771
+ 17: string;
2772
+ 18: string;
2773
+ 19: string;
2774
+ 20: string;
2775
+ 24: string;
2776
+ 28: string;
2777
+ 32: string;
2778
+ 36: string;
2779
+ 40: string;
2780
+ 44: string;
2781
+ 48: string;
2782
+ 52: string;
2783
+ 56: string;
2784
+ 60: string;
2785
+ 64: string;
2786
+ 72: string;
2787
+ 80: string;
2788
+ 96: string;
2789
+ 100: string;
2790
+ };
2791
+ borderWidths: {
2792
+ light: string;
2793
+ normal: string;
2794
+ bold: string;
2795
+ extrabold: string;
2796
+ black: string;
2797
+ };
2798
+ }, {
2799
+ width: string;
2800
+ height: string;
2801
+ minWidth: string;
2802
+ maxWidth: string;
2803
+ minHeight: string;
2804
+ maxHeight: string;
2805
+ flexBasis: string;
2806
+ gridTemplateColumns: string;
2807
+ gridTemplateRows: string;
2808
+ blockSize: string;
2809
+ minBlockSize: string;
2810
+ maxBlockSize: string;
2811
+ inlineSize: string;
2812
+ minInlineSize: string;
2813
+ maxInlineSize: string;
2814
+ gap: "space";
2815
+ gridGap: "space";
2816
+ columnGap: "space";
2817
+ gridColumnGap: "space";
2818
+ rowGap: "space";
2819
+ gridRowGap: "space";
2820
+ inset: "space";
2821
+ insetBlock: "space";
2822
+ insetBlockEnd: "space";
2823
+ insetBlockStart: "space";
2824
+ insetInline: "space";
2825
+ insetInlineEnd: "space";
2826
+ insetInlineStart: "space";
2827
+ margin: "space";
2828
+ marginTop: "space";
2829
+ marginRight: "space";
2830
+ marginBottom: "space";
2831
+ marginLeft: "space";
2832
+ marginBlock: "space";
2833
+ marginBlockEnd: "space";
2834
+ marginBlockStart: "space";
2835
+ marginInline: "space";
2836
+ marginInlineEnd: "space";
2837
+ marginInlineStart: "space";
2838
+ padding: "space";
2839
+ paddingTop: "space";
2840
+ paddingRight: "space";
2841
+ paddingBottom: "space";
2842
+ paddingLeft: "space";
2843
+ paddingBlock: "space";
2844
+ paddingBlockEnd: "space";
2845
+ paddingBlockStart: "space";
2846
+ paddingInline: "space";
2847
+ paddingInlineEnd: "space";
2848
+ paddingInlineStart: "space";
2849
+ scrollMargin: "space";
2850
+ scrollMarginTop: "space";
2851
+ scrollMarginRight: "space";
2852
+ scrollMarginBottom: "space";
2853
+ scrollMarginLeft: "space";
2854
+ scrollMarginBlock: "space";
2855
+ scrollMarginBlockEnd: "space";
2856
+ scrollMarginBlockStart: "space";
2857
+ scrollMarginInline: "space";
2858
+ scrollMarginInlineEnd: "space";
2859
+ scrollMarginInlineStart: "space";
2860
+ scrollPadding: "space";
2861
+ scrollPaddingTop: "space";
2862
+ scrollPaddingRight: "space";
2863
+ scrollPaddingBottom: "space";
2864
+ scrollPaddingLeft: "space";
2865
+ scrollPaddingBlock: "space";
2866
+ scrollPaddingBlockEnd: "space";
2867
+ scrollPaddingBlockStart: "space";
2868
+ scrollPaddingInline: "space";
2869
+ scrollPaddingInlineEnd: "space";
2870
+ scrollPaddingInlineStart: "space";
2871
+ top: "space";
2872
+ right: "space";
2873
+ bottom: "space";
2874
+ left: "space";
2875
+ fontSize: "fontSizes";
2876
+ background: "colors";
2877
+ backgroundColor: "colors";
2878
+ backgroundImage: "colors";
2879
+ borderImage: "colors";
2880
+ border: "colors";
2881
+ borderBlock: "colors";
2882
+ borderBlockEnd: "colors";
2883
+ borderBlockStart: "colors";
2884
+ borderBottom: "colors";
2885
+ borderBottomColor: "colors";
2886
+ borderColor: "colors";
2887
+ borderInline: "colors";
2888
+ borderInlineEnd: "colors";
2889
+ borderInlineStart: "colors";
2890
+ borderLeft: "colors";
2891
+ borderLeftColor: "colors";
2892
+ borderRight: "colors";
2893
+ borderRightColor: "colors";
2894
+ borderTop: "colors";
2895
+ borderTopColor: "colors";
2896
+ caretColor: "colors";
2897
+ color: "colors";
2898
+ columnRuleColor: "colors";
2899
+ outline: "colors";
2900
+ outlineColor: "colors";
2901
+ fill: "colors";
2902
+ stroke: "colors";
2903
+ textDecorationColor: "colors";
2904
+ fontFamily: "fonts";
2905
+ fontWeight: "fontWeights";
2906
+ lineHeight: "lineHeights";
2907
+ letterSpacing: "letterSpacings";
2908
+ borderWidth: "borderWidths";
2909
+ borderTopWidth: "borderWidths";
2910
+ borderLeftWidth: "borderWidths";
2911
+ borderRightWidth: "borderWidths";
2912
+ borderBottomWidth: "borderWidths";
2913
+ borderStyle: "borderStyles";
2914
+ borderTopStyle: "borderStyles";
2915
+ borderLeftStyle: "borderStyles";
2916
+ borderRightStyle: "borderStyles";
2917
+ borderBottomStyle: "borderStyles";
2918
+ borderRadius: "radii";
2919
+ borderTopLeftRadius: "radii";
2920
+ borderTopRightRadius: "radii";
2921
+ borderBottomRightRadius: "radii";
2922
+ borderBottomLeftRadius: "radii";
2923
+ boxShadow: "shadows";
2924
+ textShadow: "shadows";
2925
+ transition: "transitions";
2926
+ zIndex: "zIndices";
2927
+ }, {
2928
+ bg: (value: {
2929
+ readonly [$$PropertyValue]: "backgroundColor";
2930
+ }) => {
2931
+ backgroundColor: {
2932
+ readonly [$$PropertyValue]: "backgroundColor";
2933
+ };
2934
+ };
2935
+ c: (value: {
2936
+ readonly [$$PropertyValue]: "color";
2937
+ }) => {
2938
+ color: {
2939
+ readonly [$$PropertyValue]: "color";
2940
+ };
2941
+ };
2942
+ r: (value: {
2943
+ readonly [$$ScaleValue]: "radii";
2944
+ }) => {
2945
+ borderRadius: {
2946
+ readonly [$$ScaleValue]: "radii";
2947
+ };
2948
+ };
2949
+ fs: (value: string | number | {
2950
+ readonly [$$PropertyValue]: "fontSize";
2951
+ }) => {
2952
+ fontSize: string | number | {
2953
+ readonly [$$PropertyValue]: "fontSize";
2954
+ };
2955
+ };
2956
+ size: (value: string | number | {
2957
+ readonly [$$ScaleValue]: "space";
2958
+ }) => {
2959
+ height: string | number | {
2960
+ readonly [$$ScaleValue]: "space";
2961
+ };
2962
+ width: string | number | {
2963
+ readonly [$$ScaleValue]: "space";
2964
+ };
2965
+ };
2966
+ w: (value: string | number | {
2967
+ readonly [$$ScaleValue]: "space";
2968
+ }) => {
2969
+ width: string | number | {
2970
+ readonly [$$ScaleValue]: "space";
2971
+ };
2972
+ };
2973
+ h: (value: string | number | {
2974
+ readonly [$$ScaleValue]: "space";
2975
+ }) => {
2976
+ height: string | number | {
2977
+ readonly [$$ScaleValue]: "space";
2978
+ };
2979
+ };
2980
+ p: (value: string | number | {
2981
+ readonly [$$ScaleValue]: "space";
2982
+ }) => {
2983
+ padding: string | number | {
2984
+ readonly [$$ScaleValue]: "space";
2985
+ };
2986
+ };
2987
+ pt: (value: string | number | {
2988
+ readonly [$$ScaleValue]: "space";
2989
+ }) => {
2990
+ paddingTop: string | number | {
2991
+ readonly [$$ScaleValue]: "space";
2992
+ };
2993
+ };
2994
+ pr: (value: string | number | {
2995
+ readonly [$$ScaleValue]: "space";
2996
+ }) => {
2997
+ paddingRight: string | number | {
2998
+ readonly [$$ScaleValue]: "space";
2999
+ };
3000
+ };
3001
+ pb: (value: string | number | {
3002
+ readonly [$$ScaleValue]: "space";
3003
+ }) => {
3004
+ paddingBottom: string | number | {
3005
+ readonly [$$ScaleValue]: "space";
3006
+ };
3007
+ };
3008
+ pl: (value: string | number | {
3009
+ readonly [$$ScaleValue]: "space";
3010
+ }) => {
3011
+ paddingLeft: string | number | {
3012
+ readonly [$$ScaleValue]: "space";
3013
+ };
3014
+ };
3015
+ px: (value: string | number | {
3016
+ readonly [$$ScaleValue]: "space";
3017
+ }) => {
3018
+ paddingLeft: string | number | {
3019
+ readonly [$$ScaleValue]: "space";
3020
+ };
3021
+ paddingRight: string | number | {
3022
+ readonly [$$ScaleValue]: "space";
3023
+ };
3024
+ };
3025
+ py: (value: string | number | {
3026
+ readonly [$$ScaleValue]: "space";
3027
+ }) => {
3028
+ paddingTop: string | number | {
3029
+ readonly [$$ScaleValue]: "space";
3030
+ };
3031
+ paddingBottom: string | number | {
3032
+ readonly [$$ScaleValue]: "space";
3033
+ };
3034
+ };
3035
+ m: (value: string | number | {
3036
+ readonly [$$ScaleValue]: "space";
3037
+ }) => {
3038
+ margin: string | number | {
3039
+ readonly [$$ScaleValue]: "space";
3040
+ };
3041
+ };
3042
+ mt: (value: string | number | {
3043
+ readonly [$$ScaleValue]: "space";
3044
+ }) => {
3045
+ marginTop: string | number | {
3046
+ readonly [$$ScaleValue]: "space";
3047
+ };
3048
+ };
3049
+ mr: (value: string | number | {
3050
+ readonly [$$ScaleValue]: "space";
3051
+ }) => {
3052
+ marginRight: string | number | {
3053
+ readonly [$$ScaleValue]: "space";
3054
+ };
3055
+ };
3056
+ mb: (value: string | number | {
3057
+ readonly [$$ScaleValue]: "space";
3058
+ }) => {
3059
+ marginBottom: string | number | {
3060
+ readonly [$$ScaleValue]: "space";
3061
+ };
3062
+ };
3063
+ ml: (value: string | number | {
3064
+ readonly [$$ScaleValue]: "space";
3065
+ }) => {
3066
+ marginLeft: string | number | {
3067
+ readonly [$$ScaleValue]: "space";
3068
+ };
3069
+ };
3070
+ mx: (value: string | number | {
3071
+ readonly [$$ScaleValue]: "space";
3072
+ }) => {
3073
+ marginLeft: string | number | {
3074
+ readonly [$$ScaleValue]: "space";
3075
+ };
3076
+ marginRight: string | number | {
3077
+ readonly [$$ScaleValue]: "space";
3078
+ };
3079
+ };
3080
+ my: (value: string | number | {
3081
+ readonly [$$ScaleValue]: "space";
3082
+ }) => {
3083
+ marginTop: string | number | {
3084
+ readonly [$$ScaleValue]: "space";
3085
+ };
3086
+ marginBottom: string | number | {
3087
+ readonly [$$ScaleValue]: "space";
3088
+ };
3089
+ };
3090
+ }> | undefined;
3091
+ }) => React.JSX.Element;
3092
+ };
3093
+ export {};