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