eddev 0.2.1 → 0.2.2-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/{fields → admin}/components/ImageWell.d.ts +0 -1
  2. package/{fields → admin}/components/ImageWell.js +0 -0
  3. package/{fields → admin}/defineFIeld.d.ts +0 -0
  4. package/{fields → admin}/defineFIeld.js +0 -0
  5. package/admin/defineWidget.d.ts +10 -0
  6. package/admin/defineWidget.js +10 -0
  7. package/admin/index.d.ts +3 -0
  8. package/{fields → admin}/index.js +2 -1
  9. package/{fields → admin}/installFieldTypes.d.ts +0 -0
  10. package/{fields → admin}/installFieldTypes.js +0 -0
  11. package/admin/runWidgets.d.ts +1 -0
  12. package/admin/runWidgets.js +40 -0
  13. package/{fields → admin}/selectMedia.d.ts +0 -0
  14. package/{fields → admin}/selectMedia.js +0 -0
  15. package/blocks/ContentBlocks.js +4 -1
  16. package/blocks/blockAttributes.d.ts +4 -0
  17. package/blocks/blockAttributes.js +23 -7
  18. package/blocks/inlineEditing.d.ts +9 -3
  19. package/blocks/inlineEditing.js +28 -5
  20. package/blocks/installGutenbergHooks.js +24 -3
  21. package/build/get-webpack-config.js +18 -0
  22. package/build/graphql-codegen/graphql-codegen-blocks.js +0 -1
  23. package/build/manifests/manifest-widgets.d.ts +12 -0
  24. package/build/manifests/manifest-widgets.js +42 -0
  25. package/build/serverless/create-next-app.js +0 -4
  26. package/build/workers/codegen-worker-script.js +3 -1
  27. package/cli/display/components/BundleDisplay.d.ts +0 -1
  28. package/cli/display/components/CodegenDisplay.d.ts +0 -1
  29. package/cli/display/components/DevCLIDisplay.d.ts +0 -1
  30. package/cli/display/components/ServerlessDisplay.d.ts +0 -1
  31. package/cli/display/components/StatusIcon.d.ts +0 -1
  32. package/cli/preinstall.js +11 -6
  33. package/components/AdminBar.d.ts +0 -1
  34. package/dev-ui/components/BreakpointColumnHeader.d.ts +0 -1
  35. package/dev-ui/components/BreakpointIndicator.d.ts +0 -1
  36. package/dev-ui/components/DevUI.d.ts +0 -1
  37. package/dev-ui/components/ResponsiveLerpControl.d.ts +0 -1
  38. package/dev-ui/components/ResponsiveScaleEditor.d.ts +0 -1
  39. package/dev-ui/components/ResponsiveScaleEditor.js +3 -3
  40. package/dev-ui/components/atoms/NumberField.d.ts +0 -1
  41. package/dev-ui/components/panels/PageDataDebugger.d.ts +0 -1
  42. package/dev-ui/components/panels/SpacingEditor.d.ts +0 -1
  43. package/dev-ui/components/panels/TypographyEditor.d.ts +0 -1
  44. package/dev-ui/components/panels/TypographyEditor.js +10 -3
  45. package/dev-ui/icons.d.ts +0 -1
  46. package/dev-ui/loader.d.ts +0 -1
  47. package/entry/Root.d.ts +0 -1
  48. package/entry/entry.admin.dev.js +13 -1
  49. package/entry/entry.admin.prod.js +3 -1
  50. package/hooks/useAppData.js +4 -0
  51. package/package.json +4 -4
  52. package/serverless-template/_utils/fetch-wp.ts +1 -0
  53. package/serverless-template/package.json +2 -2
  54. package/serverless-template/pages/_app.tsx +3 -1
  55. package/style/createStitches.js +30 -29
  56. package/dev-ui/theme.d.ts +0 -151
  57. package/dynamic/dynamic-component.d.ts +0 -10
  58. package/fields/index.d.ts +0 -2
  59. package/hooks/useRPC.d.ts +0 -32
  60. package/style/createStitches.d.ts +0 -1056
@@ -1,1056 +0,0 @@
1
- /// <reference types="react" />
2
- import { DefaultThemeMap } from "@stitches/react";
3
- import { ConfigType } from "@stitches/core/types/config";
4
- import { Properties as CSS } from "csstype";
5
- declare type UtilValue<Theme extends ConfigType.Theme<any>, Scale extends string, CSSValue> = Scale extends keyof Theme ? `$${Exclude<keyof Theme[Scale], symbol>}` | CSSValue : CSSValue;
6
- declare type AtMedias<T extends any> = T extends string ? `@${T}` : never;
7
- declare type ResponsiveValue<Media extends ConfigType.Media<any>, T> = T | {
8
- [K in AtMedias<keyof Media>]?: T | [T];
9
- };
10
- declare type TypographyConfig<Theme extends ConfigType.Theme<{}>, Media extends ConfigType.Media<{}>, T extends Record<string, any>> = {
11
- [Property in keyof T]: {
12
- fontFamily?: Theme["fonts"] extends {} ? `$${Extract<keyof Theme["fonts"], string>}` | CSS["fontFamily"] : CSS["fontFamily"];
13
- fontSize?: ResponsiveValue<Media, Theme["fontSizes"] extends {} ? `$${Extract<keyof Theme["fontSizes"], string>}` | CSS["fontSize"] : CSS["fontSize"]>;
14
- textTransform?: CSS["textTransform"];
15
- fontWeight?: CSS["fontWeight"];
16
- wordSpacing?: CSS["wordSpacing"];
17
- letterSpacing?: CSS["letterSpacing"];
18
- lineHeight?: ResponsiveValue<Media, Theme["lineHeights"] extends {} ? `$${Extract<keyof Theme["lineHeights"], string>}` | CSS["lineHeight"] : CSS["lineHeight"]>;
19
- };
20
- };
21
- export declare type BreakpointArray = {
22
- key: string;
23
- min: string | null;
24
- max: string | null;
25
- }[];
26
- export declare function parseBreakpoints(names: string[], medias: any): BreakpointArray;
27
- interface GridConfig<Theme extends ConfigType.Theme<{}>, Media extends ConfigType.Media<{}>> {
28
- columns: number;
29
- breakpoints: {
30
- [K in AtMedias<keyof Media>]?: {
31
- container: string;
32
- gutter: UtilValue<Theme, "space", string>;
33
- margin: UtilValue<Theme, "space", string>;
34
- };
35
- };
36
- }
37
- declare type ResponsiveScale<Media extends ConfigType.Media<{}>, T extends {}> = {
38
- [K in keyof T]: {
39
- [M in AtMedias<keyof Media>]?: string | number | [string | number];
40
- } | string | number;
41
- };
42
- declare type ResponsiveConfig<Media extends ConfigType.Media<{}>, T extends {}> = {
43
- [Scale in keyof T]: ResponsiveScale<Media, T[Scale]>;
44
- };
45
- declare type ResponsiveAtom = {
46
- lerpStart: boolean;
47
- } & ({
48
- type: "multiplier";
49
- value: number;
50
- } | {
51
- type: "percent";
52
- value: number;
53
- } | {
54
- type: "px";
55
- value: number;
56
- } | {
57
- type: "number";
58
- value: number;
59
- } | {
60
- type: "unknown";
61
- value: string | number;
62
- } | {
63
- type: "undefined";
64
- });
65
- export declare type ResponsiveAtomCalc = ResponsiveAtom & {
66
- defined: boolean;
67
- breakpoint: string;
68
- baseBreakpoint: string;
69
- lastBreakpoint: string;
70
- lerping?: {
71
- fromBP: string | null;
72
- toBP: string | null;
73
- minMedia: number;
74
- maxMedia: number;
75
- minValue: number;
76
- maxValue: number;
77
- };
78
- concreteValue: number | null;
79
- };
80
- export declare function parseResponsiveObject(breakpoints: ReturnType<typeof parseBreakpoints>, object: any): ResponsiveAtomCalc[];
81
- export declare function getResponsiveObjectStyles(breakpoints: ReturnType<typeof parseBreakpoints>, object: any, varName: string, unit?: string): any[];
82
- export declare function parseResponsiveTokens(theme: any, breakpoints: any): {
83
- initialResponsive: any;
84
- globalResponsive: any;
85
- };
86
- export declare function createStitches<Prefix extends string = "", Media extends {} = {}, Breakpoints extends (keyof Media)[] = [], Theme extends {} = {}, Responsive extends {} = {}, ThemeMap extends {} = DefaultThemeMap, Utils extends {} = {}, Typography extends {} = {}>(config: {
87
- breakpoints: Breakpoints;
88
- prefix?: ConfigType.Prefix<Prefix>;
89
- media: ConfigType.Media<Media>;
90
- theme: ConfigType.Theme<Theme>;
91
- responsive: ResponsiveConfig<Media & {
92
- initial: string;
93
- editor: string;
94
- }, Responsive>;
95
- typography: TypographyConfig<Theme, Media & {
96
- initial: string;
97
- editor: string;
98
- }, Typography>;
99
- grid: GridConfig<Theme, Media & {
100
- initial: string;
101
- editor: string;
102
- }>;
103
- themeMap?: ConfigType.ThemeMap<ThemeMap>;
104
- utils: ConfigType.Utils<Utils>;
105
- }): {
106
- originalConfig: {
107
- breakpoints: Breakpoints;
108
- prefix?: ConfigType.Prefix<Prefix> | undefined;
109
- media: ConfigType.Media<Media>;
110
- theme: ConfigType.Theme<Theme>;
111
- responsive: ResponsiveConfig<Media & {
112
- initial: string;
113
- editor: string;
114
- }, Responsive>;
115
- typography: TypographyConfig<Theme, Media & {
116
- initial: string;
117
- editor: string;
118
- }, Typography>;
119
- grid: GridConfig<Theme, Media & {
120
- initial: string;
121
- editor: string;
122
- }>;
123
- themeMap?: ConfigType.ThemeMap<ThemeMap> | undefined;
124
- utils: ConfigType.Utils<Utils>;
125
- };
126
- breakpoints: BreakpointArray;
127
- typeVariants: { [key in keyof TypographyConfig<Theme, Media & {
128
- initial: string;
129
- editor: string;
130
- }, Typography>]: any; };
131
- gridVariants: {};
132
- responsiveTokens: { [Scale in keyof Responsive]: { [T in keyof Responsive[Scale]]: number; }; };
133
- responsiveGlobals: any;
134
- config: {
135
- prefix: "";
136
- media: {
137
- initial: "";
138
- } & Media;
139
- theme: Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; };
140
- themeMap: ThemeMap;
141
- utils: {
142
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
143
- initial: string;
144
- editor: string;
145
- }, Typography>]: any; }[keyof Typography];
146
- m: (value: {
147
- readonly [$$ScaleValue]: "space";
148
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
149
- margin: {
150
- readonly [$$ScaleValue]: "space";
151
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
152
- };
153
- mt: (value: {
154
- readonly [$$ScaleValue]: "space";
155
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
156
- marginTop: {
157
- readonly [$$ScaleValue]: "space";
158
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
159
- };
160
- mr: (value: {
161
- readonly [$$ScaleValue]: "space";
162
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
163
- marginRight: {
164
- readonly [$$ScaleValue]: "space";
165
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
166
- };
167
- mb: (value: {
168
- readonly [$$ScaleValue]: "space";
169
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
170
- marginBottom: {
171
- readonly [$$ScaleValue]: "space";
172
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
173
- };
174
- ml: (value: {
175
- readonly [$$ScaleValue]: "space";
176
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
177
- marginLeft: {
178
- readonly [$$ScaleValue]: "space";
179
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
180
- };
181
- mx: (value: {
182
- readonly [$$ScaleValue]: "space";
183
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
184
- marginLeft: {
185
- readonly [$$ScaleValue]: "space";
186
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
187
- marginRight: {
188
- readonly [$$ScaleValue]: "space";
189
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
190
- };
191
- my: (value: {
192
- readonly [$$ScaleValue]: "space";
193
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
194
- marginTop: {
195
- readonly [$$ScaleValue]: "space";
196
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
197
- marginBottom: {
198
- readonly [$$ScaleValue]: "space";
199
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
200
- };
201
- p: (value: {
202
- readonly [$$ScaleValue]: "space";
203
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
204
- padding: {
205
- readonly [$$ScaleValue]: "space";
206
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
207
- };
208
- pt: (value: {
209
- readonly [$$ScaleValue]: "space";
210
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
211
- paddingTop: {
212
- readonly [$$ScaleValue]: "space";
213
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
214
- };
215
- pr: (value: {
216
- readonly [$$ScaleValue]: "space";
217
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
218
- paddingRight: {
219
- readonly [$$ScaleValue]: "space";
220
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
221
- };
222
- pb: (value: {
223
- readonly [$$ScaleValue]: "space";
224
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
225
- paddingBottom: {
226
- readonly [$$ScaleValue]: "space";
227
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
228
- };
229
- pl: (value: {
230
- readonly [$$ScaleValue]: "space";
231
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
232
- paddingLeft: {
233
- readonly [$$ScaleValue]: "space";
234
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
235
- };
236
- px: (value: {
237
- readonly [$$ScaleValue]: "space";
238
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
239
- paddingLeft: {
240
- readonly [$$ScaleValue]: "space";
241
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
242
- paddingRight: {
243
- readonly [$$ScaleValue]: "space";
244
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
245
- };
246
- py: (value: {
247
- readonly [$$ScaleValue]: "space";
248
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
249
- paddingTop: {
250
- readonly [$$ScaleValue]: "space";
251
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
252
- paddingBottom: {
253
- readonly [$$ScaleValue]: "space";
254
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
255
- };
256
- cols: (value: number) => {
257
- gridColumn: string;
258
- "--grid-columns": number;
259
- };
260
- };
261
- };
262
- prefix: "";
263
- globalCss: <Styles extends {
264
- [K: string]: any;
265
- }>(...styles: ({
266
- '@import'?: unknown;
267
- '@font-face'?: unknown;
268
- } & { [K in keyof Styles]: K extends "@import" ? string | string[] : K extends "@font-face" ? import("@stitches/react/types/css").AtRule.FontFace | import("@stitches/react/types/css").AtRule.FontFace[] : K extends `@keyframes ${string}` ? {
269
- [x: string]: import("@stitches/react/types/css-util").CSS<{
270
- initial: "";
271
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
272
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
273
- initial: string;
274
- editor: string;
275
- }, Typography>]: any; }[keyof Typography];
276
- m: (value: {
277
- readonly [$$ScaleValue]: "space";
278
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
279
- margin: {
280
- readonly [$$ScaleValue]: "space";
281
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
282
- };
283
- mt: (value: {
284
- readonly [$$ScaleValue]: "space";
285
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
286
- marginTop: {
287
- readonly [$$ScaleValue]: "space";
288
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
289
- };
290
- mr: (value: {
291
- readonly [$$ScaleValue]: "space";
292
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
293
- marginRight: {
294
- readonly [$$ScaleValue]: "space";
295
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
296
- };
297
- mb: (value: {
298
- readonly [$$ScaleValue]: "space";
299
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
300
- marginBottom: {
301
- readonly [$$ScaleValue]: "space";
302
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
303
- };
304
- ml: (value: {
305
- readonly [$$ScaleValue]: "space";
306
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
307
- marginLeft: {
308
- readonly [$$ScaleValue]: "space";
309
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
310
- };
311
- mx: (value: {
312
- readonly [$$ScaleValue]: "space";
313
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
314
- marginLeft: {
315
- readonly [$$ScaleValue]: "space";
316
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
317
- marginRight: {
318
- readonly [$$ScaleValue]: "space";
319
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
320
- };
321
- my: (value: {
322
- readonly [$$ScaleValue]: "space";
323
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
324
- marginTop: {
325
- readonly [$$ScaleValue]: "space";
326
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
327
- marginBottom: {
328
- readonly [$$ScaleValue]: "space";
329
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
330
- };
331
- p: (value: {
332
- readonly [$$ScaleValue]: "space";
333
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
334
- padding: {
335
- readonly [$$ScaleValue]: "space";
336
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
337
- };
338
- pt: (value: {
339
- readonly [$$ScaleValue]: "space";
340
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
341
- paddingTop: {
342
- readonly [$$ScaleValue]: "space";
343
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
344
- };
345
- pr: (value: {
346
- readonly [$$ScaleValue]: "space";
347
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
348
- paddingRight: {
349
- readonly [$$ScaleValue]: "space";
350
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
351
- };
352
- pb: (value: {
353
- readonly [$$ScaleValue]: "space";
354
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
355
- paddingBottom: {
356
- readonly [$$ScaleValue]: "space";
357
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
358
- };
359
- pl: (value: {
360
- readonly [$$ScaleValue]: "space";
361
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
362
- paddingLeft: {
363
- readonly [$$ScaleValue]: "space";
364
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
365
- };
366
- px: (value: {
367
- readonly [$$ScaleValue]: "space";
368
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
369
- paddingLeft: {
370
- readonly [$$ScaleValue]: "space";
371
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
372
- paddingRight: {
373
- readonly [$$ScaleValue]: "space";
374
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
375
- };
376
- py: (value: {
377
- readonly [$$ScaleValue]: "space";
378
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
379
- paddingTop: {
380
- readonly [$$ScaleValue]: "space";
381
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
382
- paddingBottom: {
383
- readonly [$$ScaleValue]: "space";
384
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
385
- };
386
- cols: (value: number) => {
387
- gridColumn: string;
388
- "--grid-columns": number;
389
- };
390
- }>;
391
- } : K extends `@property ${string}` ? import("@stitches/react/types/css").AtRule.Property : import("@stitches/react/types/css-util").CSS<{
392
- initial: "";
393
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
394
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
395
- initial: string;
396
- editor: string;
397
- }, Typography>]: any; }[keyof Typography];
398
- m: (value: {
399
- readonly [$$ScaleValue]: "space";
400
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
401
- margin: {
402
- readonly [$$ScaleValue]: "space";
403
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
404
- };
405
- mt: (value: {
406
- readonly [$$ScaleValue]: "space";
407
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
408
- marginTop: {
409
- readonly [$$ScaleValue]: "space";
410
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
411
- };
412
- mr: (value: {
413
- readonly [$$ScaleValue]: "space";
414
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
415
- marginRight: {
416
- readonly [$$ScaleValue]: "space";
417
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
418
- };
419
- mb: (value: {
420
- readonly [$$ScaleValue]: "space";
421
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
422
- marginBottom: {
423
- readonly [$$ScaleValue]: "space";
424
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
425
- };
426
- ml: (value: {
427
- readonly [$$ScaleValue]: "space";
428
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
429
- marginLeft: {
430
- readonly [$$ScaleValue]: "space";
431
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
432
- };
433
- mx: (value: {
434
- readonly [$$ScaleValue]: "space";
435
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
436
- marginLeft: {
437
- readonly [$$ScaleValue]: "space";
438
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
439
- marginRight: {
440
- readonly [$$ScaleValue]: "space";
441
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
442
- };
443
- my: (value: {
444
- readonly [$$ScaleValue]: "space";
445
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
446
- marginTop: {
447
- readonly [$$ScaleValue]: "space";
448
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
449
- marginBottom: {
450
- readonly [$$ScaleValue]: "space";
451
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
452
- };
453
- p: (value: {
454
- readonly [$$ScaleValue]: "space";
455
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
456
- padding: {
457
- readonly [$$ScaleValue]: "space";
458
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
459
- };
460
- pt: (value: {
461
- readonly [$$ScaleValue]: "space";
462
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
463
- paddingTop: {
464
- readonly [$$ScaleValue]: "space";
465
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
466
- };
467
- pr: (value: {
468
- readonly [$$ScaleValue]: "space";
469
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
470
- paddingRight: {
471
- readonly [$$ScaleValue]: "space";
472
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
473
- };
474
- pb: (value: {
475
- readonly [$$ScaleValue]: "space";
476
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
477
- paddingBottom: {
478
- readonly [$$ScaleValue]: "space";
479
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
480
- };
481
- pl: (value: {
482
- readonly [$$ScaleValue]: "space";
483
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
484
- paddingLeft: {
485
- readonly [$$ScaleValue]: "space";
486
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
487
- };
488
- px: (value: {
489
- readonly [$$ScaleValue]: "space";
490
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
491
- paddingLeft: {
492
- readonly [$$ScaleValue]: "space";
493
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
494
- paddingRight: {
495
- readonly [$$ScaleValue]: "space";
496
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
497
- };
498
- py: (value: {
499
- readonly [$$ScaleValue]: "space";
500
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
501
- paddingTop: {
502
- readonly [$$ScaleValue]: "space";
503
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
504
- paddingBottom: {
505
- readonly [$$ScaleValue]: "space";
506
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
507
- };
508
- cols: (value: number) => {
509
- gridColumn: string;
510
- "--grid-columns": number;
511
- };
512
- }>; })[]) => () => string;
513
- keyframes: (style: {
514
- [offset: string]: import("@stitches/react/types/css-util").CSS<{
515
- initial: "";
516
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
517
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
518
- initial: string;
519
- editor: string;
520
- }, Typography>]: any; }[keyof Typography];
521
- m: (value: {
522
- readonly [$$ScaleValue]: "space";
523
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
524
- margin: {
525
- readonly [$$ScaleValue]: "space";
526
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
527
- };
528
- mt: (value: {
529
- readonly [$$ScaleValue]: "space";
530
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
531
- marginTop: {
532
- readonly [$$ScaleValue]: "space";
533
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
534
- };
535
- mr: (value: {
536
- readonly [$$ScaleValue]: "space";
537
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
538
- marginRight: {
539
- readonly [$$ScaleValue]: "space";
540
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
541
- };
542
- mb: (value: {
543
- readonly [$$ScaleValue]: "space";
544
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
545
- marginBottom: {
546
- readonly [$$ScaleValue]: "space";
547
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
548
- };
549
- ml: (value: {
550
- readonly [$$ScaleValue]: "space";
551
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
552
- marginLeft: {
553
- readonly [$$ScaleValue]: "space";
554
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
555
- };
556
- mx: (value: {
557
- readonly [$$ScaleValue]: "space";
558
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
559
- marginLeft: {
560
- readonly [$$ScaleValue]: "space";
561
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
562
- marginRight: {
563
- readonly [$$ScaleValue]: "space";
564
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
565
- };
566
- my: (value: {
567
- readonly [$$ScaleValue]: "space";
568
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
569
- marginTop: {
570
- readonly [$$ScaleValue]: "space";
571
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
572
- marginBottom: {
573
- readonly [$$ScaleValue]: "space";
574
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
575
- };
576
- p: (value: {
577
- readonly [$$ScaleValue]: "space";
578
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
579
- padding: {
580
- readonly [$$ScaleValue]: "space";
581
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
582
- };
583
- pt: (value: {
584
- readonly [$$ScaleValue]: "space";
585
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
586
- paddingTop: {
587
- readonly [$$ScaleValue]: "space";
588
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
589
- };
590
- pr: (value: {
591
- readonly [$$ScaleValue]: "space";
592
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
593
- paddingRight: {
594
- readonly [$$ScaleValue]: "space";
595
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
596
- };
597
- pb: (value: {
598
- readonly [$$ScaleValue]: "space";
599
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
600
- paddingBottom: {
601
- readonly [$$ScaleValue]: "space";
602
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
603
- };
604
- pl: (value: {
605
- readonly [$$ScaleValue]: "space";
606
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
607
- paddingLeft: {
608
- readonly [$$ScaleValue]: "space";
609
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
610
- };
611
- px: (value: {
612
- readonly [$$ScaleValue]: "space";
613
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
614
- paddingLeft: {
615
- readonly [$$ScaleValue]: "space";
616
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
617
- paddingRight: {
618
- readonly [$$ScaleValue]: "space";
619
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
620
- };
621
- py: (value: {
622
- readonly [$$ScaleValue]: "space";
623
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
624
- paddingTop: {
625
- readonly [$$ScaleValue]: "space";
626
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
627
- paddingBottom: {
628
- readonly [$$ScaleValue]: "space";
629
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
630
- };
631
- cols: (value: number) => {
632
- gridColumn: string;
633
- "--grid-columns": number;
634
- };
635
- }>;
636
- }) => {
637
- (): string;
638
- name: string;
639
- };
640
- createTheme: <Argument0 extends string | ({ [Scale_2 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]?: { [Token in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_2]]?: string | number | boolean | undefined; } | undefined; } & {
641
- [x: string]: {
642
- [x: string]: string | number | boolean;
643
- [x: number]: string | number | boolean;
644
- };
645
- }), Argument1 extends string | ({ [Scale_3 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]?: { [Token_1 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_3]]?: string | number | boolean | undefined; } | undefined; } & {
646
- [x: string]: {
647
- [x: string]: string | number | boolean;
648
- [x: number]: string | number | boolean;
649
- };
650
- })>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {
651
- className: string;
652
- selector: string;
653
- } & (Argument0 extends string ? import("@stitches/react/types/stitches").ThemeTokens<Argument1, ""> : import("@stitches/react/types/stitches").ThemeTokens<Argument0, "">);
654
- theme: string & {
655
- className: string;
656
- selector: string;
657
- } & { [Scale_4 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]: { [Token_2 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_4]]: import("@stitches/react/types/theme").Token<Extract<Token_2, string | number>, string, Extract<Scale_4, string | void>, "">; }; };
658
- reset: () => void;
659
- getCssText: () => string;
660
- css: <Composers extends (string | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> | import("@stitches/react/types/util").Function | {
661
- [name: string]: unknown;
662
- })[], CSS_1 = import("@stitches/react/types/css-util").CSS<{
663
- initial: "";
664
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
665
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
666
- initial: string;
667
- editor: string;
668
- }, Typography>]: any; }[keyof Typography];
669
- m: (value: {
670
- readonly [$$ScaleValue]: "space";
671
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
672
- margin: {
673
- readonly [$$ScaleValue]: "space";
674
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
675
- };
676
- mt: (value: {
677
- readonly [$$ScaleValue]: "space";
678
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
679
- marginTop: {
680
- readonly [$$ScaleValue]: "space";
681
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
682
- };
683
- mr: (value: {
684
- readonly [$$ScaleValue]: "space";
685
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
686
- marginRight: {
687
- readonly [$$ScaleValue]: "space";
688
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
689
- };
690
- mb: (value: {
691
- readonly [$$ScaleValue]: "space";
692
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
693
- marginBottom: {
694
- readonly [$$ScaleValue]: "space";
695
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
696
- };
697
- ml: (value: {
698
- readonly [$$ScaleValue]: "space";
699
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
700
- marginLeft: {
701
- readonly [$$ScaleValue]: "space";
702
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
703
- };
704
- mx: (value: {
705
- readonly [$$ScaleValue]: "space";
706
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
707
- marginLeft: {
708
- readonly [$$ScaleValue]: "space";
709
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
710
- marginRight: {
711
- readonly [$$ScaleValue]: "space";
712
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
713
- };
714
- my: (value: {
715
- readonly [$$ScaleValue]: "space";
716
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
717
- marginTop: {
718
- readonly [$$ScaleValue]: "space";
719
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
720
- marginBottom: {
721
- readonly [$$ScaleValue]: "space";
722
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
723
- };
724
- p: (value: {
725
- readonly [$$ScaleValue]: "space";
726
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
727
- padding: {
728
- readonly [$$ScaleValue]: "space";
729
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
730
- };
731
- pt: (value: {
732
- readonly [$$ScaleValue]: "space";
733
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
734
- paddingTop: {
735
- readonly [$$ScaleValue]: "space";
736
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
737
- };
738
- pr: (value: {
739
- readonly [$$ScaleValue]: "space";
740
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
741
- paddingRight: {
742
- readonly [$$ScaleValue]: "space";
743
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
744
- };
745
- pb: (value: {
746
- readonly [$$ScaleValue]: "space";
747
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
748
- paddingBottom: {
749
- readonly [$$ScaleValue]: "space";
750
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
751
- };
752
- pl: (value: {
753
- readonly [$$ScaleValue]: "space";
754
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
755
- paddingLeft: {
756
- readonly [$$ScaleValue]: "space";
757
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
758
- };
759
- px: (value: {
760
- readonly [$$ScaleValue]: "space";
761
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
762
- paddingLeft: {
763
- readonly [$$ScaleValue]: "space";
764
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
765
- paddingRight: {
766
- readonly [$$ScaleValue]: "space";
767
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
768
- };
769
- py: (value: {
770
- readonly [$$ScaleValue]: "space";
771
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
772
- paddingTop: {
773
- readonly [$$ScaleValue]: "space";
774
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
775
- paddingBottom: {
776
- readonly [$$ScaleValue]: "space";
777
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
778
- };
779
- cols: (value: number) => {
780
- gridColumn: string;
781
- "--grid-columns": number;
782
- };
783
- }>>(...composers: { [K_1 in keyof Composers]: Composers[K_1] extends string | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> | import("@stitches/react/types/util").Function ? Composers[K_1] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
784
- variants?: {
785
- [x: string]: {
786
- [x: string]: CSS_1;
787
- [x: number]: CSS_1;
788
- };
789
- } | undefined;
790
- compoundVariants?: (("variants" extends keyof Composers[K_1] ? { [Name in keyof Composers[K_1][keyof Composers[K_1] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K_1][keyof Composers[K_1] & "variants"][Name]> | undefined; } : import("@stitches/react/types/util").WideObject) & {
791
- css: CSS_1;
792
- })[] | undefined;
793
- defaultVariants?: ("variants" extends keyof Composers[K_1] ? { [Name_1 in keyof Composers[K_1][keyof Composers[K_1] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers[K_1][keyof Composers[K_1] & "variants"][Name_1]> | undefined; } : import("@stitches/react/types/util").WideObject) | undefined;
794
- } & CSS_1 & { [K2 in keyof Composers[K_1]]: K2 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2 extends keyof CSS_1 ? CSS_1[K2] : unknown; }; }) => import("@stitches/react/types/styled-component").CssComponent<import("@stitches/react/types/styled-component").StyledComponentType<Composers>, import("@stitches/react/types/styled-component").StyledComponentProps<Composers>, {
795
- initial: "";
796
- } & Media, CSS_1>;
797
- styled: <Type extends import("react").ComponentType<any> | keyof JSX.IntrinsicElements | import("@stitches/react/types/util").Function, Composers_1 extends (string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function | {
798
- [name: string]: unknown;
799
- })[], CSS_2 = import("@stitches/react/types/css-util").CSS<{
800
- initial: "";
801
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
802
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
803
- initial: string;
804
- editor: string;
805
- }, Typography>]: any; }[keyof Typography];
806
- m: (value: {
807
- readonly [$$ScaleValue]: "space";
808
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
809
- margin: {
810
- readonly [$$ScaleValue]: "space";
811
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
812
- };
813
- mt: (value: {
814
- readonly [$$ScaleValue]: "space";
815
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
816
- marginTop: {
817
- readonly [$$ScaleValue]: "space";
818
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
819
- };
820
- mr: (value: {
821
- readonly [$$ScaleValue]: "space";
822
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
823
- marginRight: {
824
- readonly [$$ScaleValue]: "space";
825
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
826
- };
827
- mb: (value: {
828
- readonly [$$ScaleValue]: "space";
829
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
830
- marginBottom: {
831
- readonly [$$ScaleValue]: "space";
832
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
833
- };
834
- ml: (value: {
835
- readonly [$$ScaleValue]: "space";
836
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
837
- marginLeft: {
838
- readonly [$$ScaleValue]: "space";
839
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
840
- };
841
- mx: (value: {
842
- readonly [$$ScaleValue]: "space";
843
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
844
- marginLeft: {
845
- readonly [$$ScaleValue]: "space";
846
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
847
- marginRight: {
848
- readonly [$$ScaleValue]: "space";
849
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
850
- };
851
- my: (value: {
852
- readonly [$$ScaleValue]: "space";
853
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
854
- marginTop: {
855
- readonly [$$ScaleValue]: "space";
856
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
857
- marginBottom: {
858
- readonly [$$ScaleValue]: "space";
859
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
860
- };
861
- p: (value: {
862
- readonly [$$ScaleValue]: "space";
863
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
864
- padding: {
865
- readonly [$$ScaleValue]: "space";
866
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
867
- };
868
- pt: (value: {
869
- readonly [$$ScaleValue]: "space";
870
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
871
- paddingTop: {
872
- readonly [$$ScaleValue]: "space";
873
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
874
- };
875
- pr: (value: {
876
- readonly [$$ScaleValue]: "space";
877
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
878
- paddingRight: {
879
- readonly [$$ScaleValue]: "space";
880
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
881
- };
882
- pb: (value: {
883
- readonly [$$ScaleValue]: "space";
884
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
885
- paddingBottom: {
886
- readonly [$$ScaleValue]: "space";
887
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
888
- };
889
- pl: (value: {
890
- readonly [$$ScaleValue]: "space";
891
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
892
- paddingLeft: {
893
- readonly [$$ScaleValue]: "space";
894
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
895
- };
896
- px: (value: {
897
- readonly [$$ScaleValue]: "space";
898
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
899
- paddingLeft: {
900
- readonly [$$ScaleValue]: "space";
901
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
902
- paddingRight: {
903
- readonly [$$ScaleValue]: "space";
904
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
905
- };
906
- py: (value: {
907
- readonly [$$ScaleValue]: "space";
908
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
909
- paddingTop: {
910
- readonly [$$ScaleValue]: "space";
911
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
912
- paddingBottom: {
913
- readonly [$$ScaleValue]: "space";
914
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
915
- };
916
- cols: (value: number) => {
917
- gridColumn: string;
918
- "--grid-columns": number;
919
- };
920
- }>>(type: Type, ...composers: { [K_2 in keyof Composers_1]: Composers_1[K_2] extends string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function ? Composers_1[K_2] : import("@stitches/react/types/stitches").RemoveIndex<CSS_2> & {
921
- variants?: {
922
- [x: string]: {
923
- [x: string]: CSS_2;
924
- [x: number]: CSS_2;
925
- };
926
- } | undefined;
927
- compoundVariants?: (("variants" extends keyof Composers_1[K_2] ? { [Name_2 in keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"][Name_2]> | undefined; } : import("@stitches/react/types/util").WideObject) & {
928
- css: CSS_2;
929
- })[] | undefined;
930
- defaultVariants?: ("variants" extends keyof Composers_1[K_2] ? { [Name_3 in keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"]]?: import("@stitches/react/types/util").String | import("@stitches/react/types/util").Widen<keyof Composers_1[K_2][keyof Composers_1[K_2] & "variants"][Name_3]> | undefined; } : import("@stitches/react/types/util").WideObject) | undefined;
931
- } & CSS_2 & { [K2_1 in keyof Composers_1[K_2]]: K2_1 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2_1 extends keyof CSS_2 ? CSS_2[K2_1] : unknown; }; }) => import("@stitches/react/types/styled-component").StyledComponent<Type, import("@stitches/react/types/styled-component").StyledComponentProps<Composers_1>, {
932
- initial: "";
933
- } & Media, import("@stitches/react/types/css-util").CSS<{
934
- initial: "";
935
- } & Media, Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; }, ThemeMap, {
936
- typography: (key: keyof Typography) => { [key in keyof TypographyConfig<Theme, Media & {
937
- initial: string;
938
- editor: string;
939
- }, Typography>]: any; }[keyof Typography];
940
- m: (value: {
941
- readonly [$$ScaleValue]: "space";
942
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
943
- margin: {
944
- readonly [$$ScaleValue]: "space";
945
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
946
- };
947
- mt: (value: {
948
- readonly [$$ScaleValue]: "space";
949
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
950
- marginTop: {
951
- readonly [$$ScaleValue]: "space";
952
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
953
- };
954
- mr: (value: {
955
- readonly [$$ScaleValue]: "space";
956
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
957
- marginRight: {
958
- readonly [$$ScaleValue]: "space";
959
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
960
- };
961
- mb: (value: {
962
- readonly [$$ScaleValue]: "space";
963
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
964
- marginBottom: {
965
- readonly [$$ScaleValue]: "space";
966
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
967
- };
968
- ml: (value: {
969
- readonly [$$ScaleValue]: "space";
970
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
971
- marginLeft: {
972
- readonly [$$ScaleValue]: "space";
973
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
974
- };
975
- mx: (value: {
976
- readonly [$$ScaleValue]: "space";
977
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
978
- marginLeft: {
979
- readonly [$$ScaleValue]: "space";
980
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
981
- marginRight: {
982
- readonly [$$ScaleValue]: "space";
983
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
984
- };
985
- my: (value: {
986
- readonly [$$ScaleValue]: "space";
987
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
988
- marginTop: {
989
- readonly [$$ScaleValue]: "space";
990
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
991
- marginBottom: {
992
- readonly [$$ScaleValue]: "space";
993
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
994
- };
995
- p: (value: {
996
- readonly [$$ScaleValue]: "space";
997
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
998
- padding: {
999
- readonly [$$ScaleValue]: "space";
1000
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1001
- };
1002
- pt: (value: {
1003
- readonly [$$ScaleValue]: "space";
1004
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1005
- paddingTop: {
1006
- readonly [$$ScaleValue]: "space";
1007
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1008
- };
1009
- pr: (value: {
1010
- readonly [$$ScaleValue]: "space";
1011
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1012
- paddingRight: {
1013
- readonly [$$ScaleValue]: "space";
1014
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1015
- };
1016
- pb: (value: {
1017
- readonly [$$ScaleValue]: "space";
1018
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1019
- paddingBottom: {
1020
- readonly [$$ScaleValue]: "space";
1021
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1022
- };
1023
- pl: (value: {
1024
- readonly [$$ScaleValue]: "space";
1025
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1026
- paddingLeft: {
1027
- readonly [$$ScaleValue]: "space";
1028
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1029
- };
1030
- px: (value: {
1031
- readonly [$$ScaleValue]: "space";
1032
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1033
- paddingLeft: {
1034
- readonly [$$ScaleValue]: "space";
1035
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1036
- paddingRight: {
1037
- readonly [$$ScaleValue]: "space";
1038
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1039
- };
1040
- py: (value: {
1041
- readonly [$$ScaleValue]: "space";
1042
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined) => {
1043
- paddingTop: {
1044
- readonly [$$ScaleValue]: "space";
1045
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1046
- paddingBottom: {
1047
- readonly [$$ScaleValue]: "space";
1048
- } | import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1049
- };
1050
- cols: (value: number) => {
1051
- gridColumn: string;
1052
- "--grid-columns": number;
1053
- };
1054
- }>>;
1055
- };
1056
- export {};