@webstudio-is/sdk 0.275.0 → 0.276.0
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/lib/core-templates.js +1 -1
- package/lib/index.js +304 -3
- package/lib/runtime.js +288 -1
- package/lib/schema-org.js +5703 -0
- package/lib/schema.js +1 -0
- package/lib/types/core-metas.d.ts +1 -1
- package/lib/types/index.d.ts +1 -0
- package/lib/types/json-ld-utils.d.ts +3 -0
- package/lib/types/json-ld.d.ts +31 -0
- package/lib/types/runtime.d.ts +1 -0
- package/lib/types/schema/animation-schema.d.ts +41 -41
- package/lib/types/schema/assets.d.ts +54 -54
- package/lib/types/schema/component-meta.d.ts +43 -35
- package/lib/types/schema/data-sources.d.ts +3 -3
- package/lib/types/schema/deployment.d.ts +2 -2
- package/lib/types/schema/pages.d.ts +8 -6
- package/lib/types/schema/prop-meta.d.ts +34 -26
- package/lib/types/schema/props.d.ts +49 -49
- package/lib/types/schema/styles.d.ts +50 -50
- package/lib/types/schema/webstudio.d.ts +94 -94
- package/lib/types/scope.d.ts +3 -1
- package/package.json +18 -10
package/lib/schema.js
CHANGED
|
@@ -339,6 +339,7 @@ var projectMeta = z6.object({
|
|
|
339
339
|
contactEmail: z6.string().optional(),
|
|
340
340
|
faviconAssetId: z6.string().optional(),
|
|
341
341
|
code: z6.string().optional(),
|
|
342
|
+
agentInstructions: z6.string().optional(),
|
|
342
343
|
auth: z6.string().optional()
|
|
343
344
|
});
|
|
344
345
|
var projectNewRedirectPath = z6.string().min(1, "Path is required").refine((data) => {
|
|
@@ -16,5 +16,5 @@ export declare const coreMetas: {
|
|
|
16
16
|
"ws:block": WsComponentMeta;
|
|
17
17
|
"ws:block-template": WsComponentMeta;
|
|
18
18
|
};
|
|
19
|
-
export declare const isCoreComponent: (component: Instance["component"]) => component is "ws:
|
|
19
|
+
export declare const isCoreComponent: (component: Instance["component"]) => component is "ws:block" | "ws:block-template" | "ws:collection" | "ws:descendant" | "ws:element" | "ws:root";
|
|
20
20
|
export declare const isComponentDetachable: (component: Instance["component"]) => boolean;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from "./resources-generator";
|
|
|
22
22
|
export * from "./page-meta-generator";
|
|
23
23
|
export * from "./url-pattern";
|
|
24
24
|
export * from "./link-utils";
|
|
25
|
+
export * from "./json-ld";
|
|
25
26
|
export * from "./css";
|
|
26
27
|
export * from "./__generated__/tags";
|
|
27
28
|
export { getInputJsonSchemaAdditionalProperties, getInputJsonSchemaMetadata, getInputJsonSchemaProperties, inputJsonSchemaAcceptsType, toInputJsonSchemaObject, type InputJsonSchema, type InputJsonSchemaValue, type InputJsonSchemaMetadata, } from "./input-json-schema";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export type JsonLdPrimitive = string | number | boolean | null;
|
|
2
|
+
export type JsonLdData = JsonLdPrimitive | {
|
|
3
|
+
[key: string]: JsonLdData;
|
|
4
|
+
} | JsonLdData[];
|
|
5
|
+
export type JsonLdValue = {
|
|
6
|
+
[key: string]: JsonLdData;
|
|
7
|
+
} | JsonLdData[];
|
|
8
|
+
export type JsonLdStructuralDiagnostic = {
|
|
9
|
+
severity: "error";
|
|
10
|
+
code: "invalid-json" | "invalid-root" | "invalid-context" | "invalid-keyword-value" | "invalid-value-object";
|
|
11
|
+
path: string;
|
|
12
|
+
message: string;
|
|
13
|
+
};
|
|
14
|
+
export type JsonLdValidationResult = {
|
|
15
|
+
success: true;
|
|
16
|
+
value: JsonLdValue;
|
|
17
|
+
diagnostics: JsonLdStructuralDiagnostic[];
|
|
18
|
+
} | {
|
|
19
|
+
success: false;
|
|
20
|
+
value?: JsonLdValue;
|
|
21
|
+
diagnostics: JsonLdStructuralDiagnostic[];
|
|
22
|
+
};
|
|
23
|
+
export declare const escapeJsonLdScriptText: (value: string) => string;
|
|
24
|
+
export declare const parseJsonLd: (input: unknown) => {
|
|
25
|
+
success: true;
|
|
26
|
+
value: JsonLdValue;
|
|
27
|
+
} | {
|
|
28
|
+
success: false;
|
|
29
|
+
};
|
|
30
|
+
export declare const validateJsonLd: (input: unknown) => JsonLdValidationResult;
|
|
31
|
+
export declare const hasTopLevelJsonLdContext: (value: JsonLdValue) => boolean;
|
package/lib/types/runtime.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./resource-loader";
|
|
2
2
|
export * from "./to-string";
|
|
3
3
|
export * from "./form-fields";
|
|
4
|
+
export * from "./json-ld";
|
|
4
5
|
export declare const tagProperty = "data-ws-tag";
|
|
5
6
|
export declare const getTagFromProps: (props: Record<string, unknown>) => string | undefined;
|
|
6
7
|
export declare const indexProperty = "data-ws-index";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const RANGE_UNITS: readonly ["%", "px", "cm", "mm", "q", "in", "pt", "pc", "em", "rem", "ex", "rex", "cap", "rcap", "ch", "rch", "lh", "rlh", "vw", "svw", "lvw", "dvw", "vh", "svh", "lvh", "dvh", "vi", "svi", "lvi", "dvi", "vb", "svb", "lvb", "dvb", "vmin", "svmin", "lvmin", "dvmin", "vmax", "svmax", "lvmax", "dvmax"];
|
|
3
|
-
export declare const rangeUnit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
3
|
+
export declare const rangeUnit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4
4
|
export declare const rangeUnitValue: z.ZodUnion<readonly [z.ZodObject<{
|
|
5
5
|
type: z.ZodLiteral<"unit">;
|
|
6
6
|
value: z.ZodNumber;
|
|
7
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
7
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
8
8
|
}, z.core.$strip>, z.ZodObject<{
|
|
9
9
|
type: z.ZodLiteral<"unparsed">;
|
|
10
10
|
value: z.ZodString;
|
|
@@ -13,11 +13,11 @@ export declare const rangeUnitValue: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
13
13
|
value: z.ZodString;
|
|
14
14
|
}, z.core.$strip>]>;
|
|
15
15
|
export declare const TIME_UNITS: readonly ["ms", "s"];
|
|
16
|
-
declare const timeUnit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
16
|
+
declare const timeUnit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
17
17
|
export declare const durationUnitValue: z.ZodUnion<readonly [z.ZodObject<{
|
|
18
18
|
type: z.ZodLiteral<"unit">;
|
|
19
19
|
value: z.ZodNumber;
|
|
20
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
20
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
21
21
|
}, z.core.$strip>, z.ZodObject<{
|
|
22
22
|
type: z.ZodLiteral<"var">;
|
|
23
23
|
value: z.ZodString;
|
|
@@ -26,7 +26,7 @@ declare const iterationsUnitValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodLitera
|
|
|
26
26
|
export declare const insetUnitValue: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
27
27
|
type: z.ZodLiteral<"unit">;
|
|
28
28
|
value: z.ZodNumber;
|
|
29
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
29
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
30
30
|
}, z.core.$strip>, z.ZodObject<{
|
|
31
31
|
type: z.ZodLiteral<"unparsed">;
|
|
32
32
|
value: z.ZodString;
|
|
@@ -1290,7 +1290,7 @@ export declare const keyframeEffectOptions: z.ZodObject<{
|
|
|
1290
1290
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1291
1291
|
type: z.ZodLiteral<"unit">;
|
|
1292
1292
|
value: z.ZodNumber;
|
|
1293
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
1293
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
1294
1294
|
}, z.core.$strip>, z.ZodObject<{
|
|
1295
1295
|
type: z.ZodLiteral<"var">;
|
|
1296
1296
|
value: z.ZodString;
|
|
@@ -1298,7 +1298,7 @@ export declare const keyframeEffectOptions: z.ZodObject<{
|
|
|
1298
1298
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1299
1299
|
type: z.ZodLiteral<"unit">;
|
|
1300
1300
|
value: z.ZodNumber;
|
|
1301
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
1301
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
1302
1302
|
}, z.core.$strip>, z.ZodObject<{
|
|
1303
1303
|
type: z.ZodLiteral<"var">;
|
|
1304
1304
|
value: z.ZodString;
|
|
@@ -1309,7 +1309,7 @@ export declare const scrollNamedRange: z.ZodUnion<readonly [z.ZodLiteral<"start"
|
|
|
1309
1309
|
export declare const scrollRangeValue: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1310
1310
|
type: z.ZodLiteral<"unit">;
|
|
1311
1311
|
value: z.ZodNumber;
|
|
1312
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
1312
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
1313
1313
|
}, z.core.$strip>, z.ZodObject<{
|
|
1314
1314
|
type: z.ZodLiteral<"unparsed">;
|
|
1315
1315
|
value: z.ZodString;
|
|
@@ -1321,7 +1321,7 @@ export declare const scrollRangeOptions: z.ZodObject<{
|
|
|
1321
1321
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1322
1322
|
type: z.ZodLiteral<"unit">;
|
|
1323
1323
|
value: z.ZodNumber;
|
|
1324
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
1324
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
1325
1325
|
}, z.core.$strip>, z.ZodObject<{
|
|
1326
1326
|
type: z.ZodLiteral<"unparsed">;
|
|
1327
1327
|
value: z.ZodString;
|
|
@@ -1332,7 +1332,7 @@ export declare const scrollRangeOptions: z.ZodObject<{
|
|
|
1332
1332
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1333
1333
|
type: z.ZodLiteral<"unit">;
|
|
1334
1334
|
value: z.ZodNumber;
|
|
1335
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
1335
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
1336
1336
|
}, z.core.$strip>, z.ZodObject<{
|
|
1337
1337
|
type: z.ZodLiteral<"unparsed">;
|
|
1338
1338
|
value: z.ZodString;
|
|
@@ -1346,7 +1346,7 @@ export declare const viewNamedRange: z.ZodUnion<readonly [z.ZodLiteral<"contain"
|
|
|
1346
1346
|
export declare const viewRangeValue: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1347
1347
|
type: z.ZodLiteral<"unit">;
|
|
1348
1348
|
value: z.ZodNumber;
|
|
1349
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
1349
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
1350
1350
|
}, z.core.$strip>, z.ZodObject<{
|
|
1351
1351
|
type: z.ZodLiteral<"unparsed">;
|
|
1352
1352
|
value: z.ZodString;
|
|
@@ -1358,7 +1358,7 @@ export declare const viewRangeOptions: z.ZodObject<{
|
|
|
1358
1358
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1359
1359
|
type: z.ZodLiteral<"unit">;
|
|
1360
1360
|
value: z.ZodNumber;
|
|
1361
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
1361
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
1362
1362
|
}, z.core.$strip>, z.ZodObject<{
|
|
1363
1363
|
type: z.ZodLiteral<"unparsed">;
|
|
1364
1364
|
value: z.ZodString;
|
|
@@ -1369,7 +1369,7 @@ export declare const viewRangeOptions: z.ZodObject<{
|
|
|
1369
1369
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1370
1370
|
type: z.ZodLiteral<"unit">;
|
|
1371
1371
|
value: z.ZodNumber;
|
|
1372
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
1372
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
1373
1373
|
}, z.core.$strip>, z.ZodObject<{
|
|
1374
1374
|
type: z.ZodLiteral<"unparsed">;
|
|
1375
1375
|
value: z.ZodString;
|
|
@@ -2013,7 +2013,7 @@ export declare const scrollAnimation: z.ZodObject<{
|
|
|
2013
2013
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2014
2014
|
type: z.ZodLiteral<"unit">;
|
|
2015
2015
|
value: z.ZodNumber;
|
|
2016
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
2016
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
2017
2017
|
}, z.core.$strip>, z.ZodObject<{
|
|
2018
2018
|
type: z.ZodLiteral<"var">;
|
|
2019
2019
|
value: z.ZodString;
|
|
@@ -2021,7 +2021,7 @@ export declare const scrollAnimation: z.ZodObject<{
|
|
|
2021
2021
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2022
2022
|
type: z.ZodLiteral<"unit">;
|
|
2023
2023
|
value: z.ZodNumber;
|
|
2024
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
2024
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
2025
2025
|
}, z.core.$strip>, z.ZodObject<{
|
|
2026
2026
|
type: z.ZodLiteral<"var">;
|
|
2027
2027
|
value: z.ZodString;
|
|
@@ -2030,7 +2030,7 @@ export declare const scrollAnimation: z.ZodObject<{
|
|
|
2030
2030
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2031
2031
|
type: z.ZodLiteral<"unit">;
|
|
2032
2032
|
value: z.ZodNumber;
|
|
2033
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
2033
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
2034
2034
|
}, z.core.$strip>, z.ZodObject<{
|
|
2035
2035
|
type: z.ZodLiteral<"unparsed">;
|
|
2036
2036
|
value: z.ZodString;
|
|
@@ -2041,7 +2041,7 @@ export declare const scrollAnimation: z.ZodObject<{
|
|
|
2041
2041
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2042
2042
|
type: z.ZodLiteral<"unit">;
|
|
2043
2043
|
value: z.ZodNumber;
|
|
2044
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
2044
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
2045
2045
|
}, z.core.$strip>, z.ZodObject<{
|
|
2046
2046
|
type: z.ZodLiteral<"unparsed">;
|
|
2047
2047
|
value: z.ZodString;
|
|
@@ -2690,7 +2690,7 @@ export declare const scrollAction: z.ZodObject<{
|
|
|
2690
2690
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2691
2691
|
type: z.ZodLiteral<"unit">;
|
|
2692
2692
|
value: z.ZodNumber;
|
|
2693
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
2693
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
2694
2694
|
}, z.core.$strip>, z.ZodObject<{
|
|
2695
2695
|
type: z.ZodLiteral<"var">;
|
|
2696
2696
|
value: z.ZodString;
|
|
@@ -2698,7 +2698,7 @@ export declare const scrollAction: z.ZodObject<{
|
|
|
2698
2698
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2699
2699
|
type: z.ZodLiteral<"unit">;
|
|
2700
2700
|
value: z.ZodNumber;
|
|
2701
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
2701
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
2702
2702
|
}, z.core.$strip>, z.ZodObject<{
|
|
2703
2703
|
type: z.ZodLiteral<"var">;
|
|
2704
2704
|
value: z.ZodString;
|
|
@@ -2707,7 +2707,7 @@ export declare const scrollAction: z.ZodObject<{
|
|
|
2707
2707
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2708
2708
|
type: z.ZodLiteral<"unit">;
|
|
2709
2709
|
value: z.ZodNumber;
|
|
2710
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
2710
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
2711
2711
|
}, z.core.$strip>, z.ZodObject<{
|
|
2712
2712
|
type: z.ZodLiteral<"unparsed">;
|
|
2713
2713
|
value: z.ZodString;
|
|
@@ -2718,7 +2718,7 @@ export declare const scrollAction: z.ZodObject<{
|
|
|
2718
2718
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2719
2719
|
type: z.ZodLiteral<"unit">;
|
|
2720
2720
|
value: z.ZodNumber;
|
|
2721
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
2721
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
2722
2722
|
}, z.core.$strip>, z.ZodObject<{
|
|
2723
2723
|
type: z.ZodLiteral<"unparsed">;
|
|
2724
2724
|
value: z.ZodString;
|
|
@@ -3366,7 +3366,7 @@ export declare const viewAnimation: z.ZodObject<{
|
|
|
3366
3366
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3367
3367
|
type: z.ZodLiteral<"unit">;
|
|
3368
3368
|
value: z.ZodNumber;
|
|
3369
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
3369
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
3370
3370
|
}, z.core.$strip>, z.ZodObject<{
|
|
3371
3371
|
type: z.ZodLiteral<"var">;
|
|
3372
3372
|
value: z.ZodString;
|
|
@@ -3374,7 +3374,7 @@ export declare const viewAnimation: z.ZodObject<{
|
|
|
3374
3374
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3375
3375
|
type: z.ZodLiteral<"unit">;
|
|
3376
3376
|
value: z.ZodNumber;
|
|
3377
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
3377
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
3378
3378
|
}, z.core.$strip>, z.ZodObject<{
|
|
3379
3379
|
type: z.ZodLiteral<"var">;
|
|
3380
3380
|
value: z.ZodString;
|
|
@@ -3383,7 +3383,7 @@ export declare const viewAnimation: z.ZodObject<{
|
|
|
3383
3383
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3384
3384
|
type: z.ZodLiteral<"unit">;
|
|
3385
3385
|
value: z.ZodNumber;
|
|
3386
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
3386
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
3387
3387
|
}, z.core.$strip>, z.ZodObject<{
|
|
3388
3388
|
type: z.ZodLiteral<"unparsed">;
|
|
3389
3389
|
value: z.ZodString;
|
|
@@ -3394,7 +3394,7 @@ export declare const viewAnimation: z.ZodObject<{
|
|
|
3394
3394
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3395
3395
|
type: z.ZodLiteral<"unit">;
|
|
3396
3396
|
value: z.ZodNumber;
|
|
3397
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
3397
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
3398
3398
|
}, z.core.$strip>, z.ZodObject<{
|
|
3399
3399
|
type: z.ZodLiteral<"unparsed">;
|
|
3400
3400
|
value: z.ZodString;
|
|
@@ -4043,7 +4043,7 @@ export declare const viewAction: z.ZodObject<{
|
|
|
4043
4043
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4044
4044
|
type: z.ZodLiteral<"unit">;
|
|
4045
4045
|
value: z.ZodNumber;
|
|
4046
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
4046
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
4047
4047
|
}, z.core.$strip>, z.ZodObject<{
|
|
4048
4048
|
type: z.ZodLiteral<"var">;
|
|
4049
4049
|
value: z.ZodString;
|
|
@@ -4051,7 +4051,7 @@ export declare const viewAction: z.ZodObject<{
|
|
|
4051
4051
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4052
4052
|
type: z.ZodLiteral<"unit">;
|
|
4053
4053
|
value: z.ZodNumber;
|
|
4054
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
4054
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
4055
4055
|
}, z.core.$strip>, z.ZodObject<{
|
|
4056
4056
|
type: z.ZodLiteral<"var">;
|
|
4057
4057
|
value: z.ZodString;
|
|
@@ -4060,7 +4060,7 @@ export declare const viewAction: z.ZodObject<{
|
|
|
4060
4060
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4061
4061
|
type: z.ZodLiteral<"unit">;
|
|
4062
4062
|
value: z.ZodNumber;
|
|
4063
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
4063
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4064
4064
|
}, z.core.$strip>, z.ZodObject<{
|
|
4065
4065
|
type: z.ZodLiteral<"unparsed">;
|
|
4066
4066
|
value: z.ZodString;
|
|
@@ -4071,7 +4071,7 @@ export declare const viewAction: z.ZodObject<{
|
|
|
4071
4071
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4072
4072
|
type: z.ZodLiteral<"unit">;
|
|
4073
4073
|
value: z.ZodNumber;
|
|
4074
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
4074
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4075
4075
|
}, z.core.$strip>, z.ZodObject<{
|
|
4076
4076
|
type: z.ZodLiteral<"unparsed">;
|
|
4077
4077
|
value: z.ZodString;
|
|
@@ -4084,7 +4084,7 @@ export declare const viewAction: z.ZodObject<{
|
|
|
4084
4084
|
insetStart: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
4085
4085
|
type: z.ZodLiteral<"unit">;
|
|
4086
4086
|
value: z.ZodNumber;
|
|
4087
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
4087
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4088
4088
|
}, z.core.$strip>, z.ZodObject<{
|
|
4089
4089
|
type: z.ZodLiteral<"unparsed">;
|
|
4090
4090
|
value: z.ZodString;
|
|
@@ -4098,7 +4098,7 @@ export declare const viewAction: z.ZodObject<{
|
|
|
4098
4098
|
insetEnd: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
4099
4099
|
type: z.ZodLiteral<"unit">;
|
|
4100
4100
|
value: z.ZodNumber;
|
|
4101
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
4101
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4102
4102
|
}, z.core.$strip>, z.ZodObject<{
|
|
4103
4103
|
type: z.ZodLiteral<"unparsed">;
|
|
4104
4104
|
value: z.ZodString;
|
|
@@ -4751,7 +4751,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4751
4751
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4752
4752
|
type: z.ZodLiteral<"unit">;
|
|
4753
4753
|
value: z.ZodNumber;
|
|
4754
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
4754
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
4755
4755
|
}, z.core.$strip>, z.ZodObject<{
|
|
4756
4756
|
type: z.ZodLiteral<"var">;
|
|
4757
4757
|
value: z.ZodString;
|
|
@@ -4759,7 +4759,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4759
4759
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4760
4760
|
type: z.ZodLiteral<"unit">;
|
|
4761
4761
|
value: z.ZodNumber;
|
|
4762
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
4762
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
4763
4763
|
}, z.core.$strip>, z.ZodObject<{
|
|
4764
4764
|
type: z.ZodLiteral<"var">;
|
|
4765
4765
|
value: z.ZodString;
|
|
@@ -4768,7 +4768,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4768
4768
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4769
4769
|
type: z.ZodLiteral<"unit">;
|
|
4770
4770
|
value: z.ZodNumber;
|
|
4771
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
4771
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4772
4772
|
}, z.core.$strip>, z.ZodObject<{
|
|
4773
4773
|
type: z.ZodLiteral<"unparsed">;
|
|
4774
4774
|
value: z.ZodString;
|
|
@@ -4779,7 +4779,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4779
4779
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4780
4780
|
type: z.ZodLiteral<"unit">;
|
|
4781
4781
|
value: z.ZodNumber;
|
|
4782
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
4782
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
4783
4783
|
}, z.core.$strip>, z.ZodObject<{
|
|
4784
4784
|
type: z.ZodLiteral<"unparsed">;
|
|
4785
4785
|
value: z.ZodString;
|
|
@@ -5430,7 +5430,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5430
5430
|
duration: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5431
5431
|
type: z.ZodLiteral<"unit">;
|
|
5432
5432
|
value: z.ZodNumber;
|
|
5433
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
5433
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
5434
5434
|
}, z.core.$strip>, z.ZodObject<{
|
|
5435
5435
|
type: z.ZodLiteral<"var">;
|
|
5436
5436
|
value: z.ZodString;
|
|
@@ -5438,7 +5438,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5438
5438
|
delay: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5439
5439
|
type: z.ZodLiteral<"unit">;
|
|
5440
5440
|
value: z.ZodNumber;
|
|
5441
|
-
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"
|
|
5441
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"ms" | "s">[]]>;
|
|
5442
5442
|
}, z.core.$strip>, z.ZodObject<{
|
|
5443
5443
|
type: z.ZodLiteral<"var">;
|
|
5444
5444
|
value: z.ZodString;
|
|
@@ -5447,7 +5447,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5447
5447
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
5448
5448
|
type: z.ZodLiteral<"unit">;
|
|
5449
5449
|
value: z.ZodNumber;
|
|
5450
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
5450
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
5451
5451
|
}, z.core.$strip>, z.ZodObject<{
|
|
5452
5452
|
type: z.ZodLiteral<"unparsed">;
|
|
5453
5453
|
value: z.ZodString;
|
|
@@ -5458,7 +5458,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5458
5458
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
5459
5459
|
type: z.ZodLiteral<"unit">;
|
|
5460
5460
|
value: z.ZodNumber;
|
|
5461
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
5461
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
5462
5462
|
}, z.core.$strip>, z.ZodObject<{
|
|
5463
5463
|
type: z.ZodLiteral<"unparsed">;
|
|
5464
5464
|
value: z.ZodString;
|
|
@@ -5471,7 +5471,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5471
5471
|
insetStart: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
5472
5472
|
type: z.ZodLiteral<"unit">;
|
|
5473
5473
|
value: z.ZodNumber;
|
|
5474
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
5474
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
5475
5475
|
}, z.core.$strip>, z.ZodObject<{
|
|
5476
5476
|
type: z.ZodLiteral<"unparsed">;
|
|
5477
5477
|
value: z.ZodString;
|
|
@@ -5485,7 +5485,7 @@ export declare const animationAction: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5485
5485
|
insetEnd: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
5486
5486
|
type: z.ZodLiteral<"unit">;
|
|
5487
5487
|
value: z.ZodNumber;
|
|
5488
|
-
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"
|
|
5488
|
+
unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "cap" | "ch" | "cm" | "dvb" | "dvh" | "dvi" | "dvmax" | "dvmin" | "dvw" | "em" | "ex" | "in" | "lh" | "lvb" | "lvh" | "lvi" | "lvmax" | "lvmin" | "lvw" | "mm" | "pc" | "pt" | "px" | "q" | "rcap" | "rch" | "rem" | "rex" | "rlh" | "svb" | "svh" | "svi" | "svmax" | "svmin" | "svw" | "vb" | "vh" | "vi" | "vmax" | "vmin" | "vw">[]]>;
|
|
5489
5489
|
}, z.core.$strip>, z.ZodObject<{
|
|
5490
5490
|
type: z.ZodLiteral<"unparsed">;
|
|
5491
5491
|
value: z.ZodString;
|