@webstudio-is/css-data 0.56.0 → 0.58.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/cjs/schema.js +5 -16
- package/lib/schema.js +5 -16
- package/lib/types/src/schema.d.ts +91 -1375
- package/package.json +4 -4
- package/src/schema.ts +22 -23
|
@@ -489,12 +489,6 @@ export declare const LayersValue: z.ZodObject<{
|
|
|
489
489
|
type: "layers";
|
|
490
490
|
}>;
|
|
491
491
|
export type LayersValue = z.infer<typeof LayersValue>;
|
|
492
|
-
/**
|
|
493
|
-
* All StyleValue types that going to need wrapping into a CSS variable when rendered
|
|
494
|
-
* on canvas inside builder.
|
|
495
|
-
* Values like InvalidValue, UnsetValue, VarValue don't need to be wrapped
|
|
496
|
-
*/
|
|
497
|
-
export declare const validStaticValueTypes: readonly ["unit", "keyword", "fontFamily", "rgb", "image", "unparsed", "layers", "tuple"];
|
|
498
492
|
declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
|
|
499
493
|
type: z.ZodLiteral<"image">;
|
|
500
494
|
value: z.ZodUnion<[z.ZodObject<{
|
|
@@ -896,6 +890,97 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
|
|
|
896
890
|
type: "tuple";
|
|
897
891
|
}>]>;
|
|
898
892
|
export type ValidStaticStyleValue = z.infer<typeof ValidStaticStyleValue>;
|
|
893
|
+
/**
|
|
894
|
+
* All StyleValue types that going to need wrapping into a CSS variable when rendered
|
|
895
|
+
* on canvas inside builder.
|
|
896
|
+
* Values like InvalidValue, UnsetValue, VarValue don't need to be wrapped
|
|
897
|
+
*/
|
|
898
|
+
export declare const isValidStaticStyleValue: (styleValue: StyleValue) => styleValue is {
|
|
899
|
+
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
900
|
+
value: number;
|
|
901
|
+
type: "unit";
|
|
902
|
+
} | {
|
|
903
|
+
value: string;
|
|
904
|
+
type: "keyword";
|
|
905
|
+
} | {
|
|
906
|
+
hidden?: boolean | undefined;
|
|
907
|
+
value: string;
|
|
908
|
+
type: "unparsed";
|
|
909
|
+
} | {
|
|
910
|
+
value: string[];
|
|
911
|
+
type: "fontFamily";
|
|
912
|
+
} | {
|
|
913
|
+
alpha: number;
|
|
914
|
+
type: "rgb";
|
|
915
|
+
r: number;
|
|
916
|
+
g: number;
|
|
917
|
+
b: number;
|
|
918
|
+
} | {
|
|
919
|
+
hidden?: boolean | undefined;
|
|
920
|
+
value: {
|
|
921
|
+
value: string;
|
|
922
|
+
type: "asset";
|
|
923
|
+
} | {
|
|
924
|
+
type: "url";
|
|
925
|
+
url: string;
|
|
926
|
+
};
|
|
927
|
+
type: "image";
|
|
928
|
+
} | {
|
|
929
|
+
value: ({
|
|
930
|
+
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
931
|
+
value: number;
|
|
932
|
+
type: "unit";
|
|
933
|
+
} | {
|
|
934
|
+
value: string;
|
|
935
|
+
type: "keyword";
|
|
936
|
+
} | {
|
|
937
|
+
hidden?: boolean | undefined;
|
|
938
|
+
value: string;
|
|
939
|
+
type: "unparsed";
|
|
940
|
+
})[];
|
|
941
|
+
type: "tuple";
|
|
942
|
+
} | {
|
|
943
|
+
value: ({
|
|
944
|
+
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
945
|
+
value: number;
|
|
946
|
+
type: "unit";
|
|
947
|
+
} | {
|
|
948
|
+
value: string;
|
|
949
|
+
type: "keyword";
|
|
950
|
+
} | {
|
|
951
|
+
hidden?: boolean | undefined;
|
|
952
|
+
value: string;
|
|
953
|
+
type: "unparsed";
|
|
954
|
+
} | {
|
|
955
|
+
hidden?: boolean | undefined;
|
|
956
|
+
value: {
|
|
957
|
+
value: string;
|
|
958
|
+
type: "asset";
|
|
959
|
+
} | {
|
|
960
|
+
type: "url";
|
|
961
|
+
url: string;
|
|
962
|
+
};
|
|
963
|
+
type: "image";
|
|
964
|
+
} | {
|
|
965
|
+
value: string;
|
|
966
|
+
type: "invalid";
|
|
967
|
+
} | {
|
|
968
|
+
value: ({
|
|
969
|
+
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
970
|
+
value: number;
|
|
971
|
+
type: "unit";
|
|
972
|
+
} | {
|
|
973
|
+
value: string;
|
|
974
|
+
type: "keyword";
|
|
975
|
+
} | {
|
|
976
|
+
hidden?: boolean | undefined;
|
|
977
|
+
value: string;
|
|
978
|
+
type: "unparsed";
|
|
979
|
+
})[];
|
|
980
|
+
type: "tuple";
|
|
981
|
+
})[];
|
|
982
|
+
type: "layers";
|
|
983
|
+
};
|
|
899
984
|
declare const VarValue: z.ZodObject<{
|
|
900
985
|
type: z.ZodLiteral<"var">;
|
|
901
986
|
value: z.ZodString;
|
|
@@ -2484,1373 +2569,4 @@ export type Style = {
|
|
|
2484
2569
|
} & {
|
|
2485
2570
|
[property: CustomProperty]: StyleValue;
|
|
2486
2571
|
};
|
|
2487
|
-
export declare const CssRule: z.ZodObject<{
|
|
2488
|
-
style: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
2489
|
-
type: z.ZodLiteral<"image">;
|
|
2490
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
2491
|
-
type: z.ZodLiteral<"asset">;
|
|
2492
|
-
value: z.ZodString;
|
|
2493
|
-
}, "strip", z.ZodTypeAny, {
|
|
2494
|
-
value: string;
|
|
2495
|
-
type: "asset";
|
|
2496
|
-
}, {
|
|
2497
|
-
value: string;
|
|
2498
|
-
type: "asset";
|
|
2499
|
-
}>, z.ZodObject<{
|
|
2500
|
-
type: z.ZodLiteral<"url">;
|
|
2501
|
-
url: z.ZodString;
|
|
2502
|
-
}, "strip", z.ZodTypeAny, {
|
|
2503
|
-
type: "url";
|
|
2504
|
-
url: string;
|
|
2505
|
-
}, {
|
|
2506
|
-
type: "url";
|
|
2507
|
-
url: string;
|
|
2508
|
-
}>]>;
|
|
2509
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2510
|
-
}, "strip", z.ZodTypeAny, {
|
|
2511
|
-
hidden?: boolean | undefined;
|
|
2512
|
-
value: {
|
|
2513
|
-
value: string;
|
|
2514
|
-
type: "asset";
|
|
2515
|
-
} | {
|
|
2516
|
-
type: "url";
|
|
2517
|
-
url: string;
|
|
2518
|
-
};
|
|
2519
|
-
type: "image";
|
|
2520
|
-
}, {
|
|
2521
|
-
hidden?: boolean | undefined;
|
|
2522
|
-
value: {
|
|
2523
|
-
value: string;
|
|
2524
|
-
type: "asset";
|
|
2525
|
-
} | {
|
|
2526
|
-
type: "url";
|
|
2527
|
-
url: string;
|
|
2528
|
-
};
|
|
2529
|
-
type: "image";
|
|
2530
|
-
}>, z.ZodObject<{
|
|
2531
|
-
type: z.ZodLiteral<"layers">;
|
|
2532
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2533
|
-
type: z.ZodLiteral<"unit">;
|
|
2534
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
2535
|
-
value: z.ZodNumber;
|
|
2536
|
-
}, "strip", z.ZodTypeAny, {
|
|
2537
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2538
|
-
value: number;
|
|
2539
|
-
type: "unit";
|
|
2540
|
-
}, {
|
|
2541
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2542
|
-
value: number;
|
|
2543
|
-
type: "unit";
|
|
2544
|
-
}>, z.ZodObject<{
|
|
2545
|
-
type: z.ZodLiteral<"keyword">;
|
|
2546
|
-
value: z.ZodString;
|
|
2547
|
-
}, "strip", z.ZodTypeAny, {
|
|
2548
|
-
value: string;
|
|
2549
|
-
type: "keyword";
|
|
2550
|
-
}, {
|
|
2551
|
-
value: string;
|
|
2552
|
-
type: "keyword";
|
|
2553
|
-
}>, z.ZodObject<{
|
|
2554
|
-
type: z.ZodLiteral<"unparsed">;
|
|
2555
|
-
value: z.ZodString;
|
|
2556
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2557
|
-
}, "strip", z.ZodTypeAny, {
|
|
2558
|
-
hidden?: boolean | undefined;
|
|
2559
|
-
value: string;
|
|
2560
|
-
type: "unparsed";
|
|
2561
|
-
}, {
|
|
2562
|
-
hidden?: boolean | undefined;
|
|
2563
|
-
value: string;
|
|
2564
|
-
type: "unparsed";
|
|
2565
|
-
}>, z.ZodObject<{
|
|
2566
|
-
type: z.ZodLiteral<"image">;
|
|
2567
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
2568
|
-
type: z.ZodLiteral<"asset">;
|
|
2569
|
-
value: z.ZodString;
|
|
2570
|
-
}, "strip", z.ZodTypeAny, {
|
|
2571
|
-
value: string;
|
|
2572
|
-
type: "asset";
|
|
2573
|
-
}, {
|
|
2574
|
-
value: string;
|
|
2575
|
-
type: "asset";
|
|
2576
|
-
}>, z.ZodObject<{
|
|
2577
|
-
type: z.ZodLiteral<"url">;
|
|
2578
|
-
url: z.ZodString;
|
|
2579
|
-
}, "strip", z.ZodTypeAny, {
|
|
2580
|
-
type: "url";
|
|
2581
|
-
url: string;
|
|
2582
|
-
}, {
|
|
2583
|
-
type: "url";
|
|
2584
|
-
url: string;
|
|
2585
|
-
}>]>;
|
|
2586
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2587
|
-
}, "strip", z.ZodTypeAny, {
|
|
2588
|
-
hidden?: boolean | undefined;
|
|
2589
|
-
value: {
|
|
2590
|
-
value: string;
|
|
2591
|
-
type: "asset";
|
|
2592
|
-
} | {
|
|
2593
|
-
type: "url";
|
|
2594
|
-
url: string;
|
|
2595
|
-
};
|
|
2596
|
-
type: "image";
|
|
2597
|
-
}, {
|
|
2598
|
-
hidden?: boolean | undefined;
|
|
2599
|
-
value: {
|
|
2600
|
-
value: string;
|
|
2601
|
-
type: "asset";
|
|
2602
|
-
} | {
|
|
2603
|
-
type: "url";
|
|
2604
|
-
url: string;
|
|
2605
|
-
};
|
|
2606
|
-
type: "image";
|
|
2607
|
-
}>, z.ZodObject<{
|
|
2608
|
-
type: z.ZodLiteral<"tuple">;
|
|
2609
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2610
|
-
type: z.ZodLiteral<"unit">;
|
|
2611
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
2612
|
-
value: z.ZodNumber;
|
|
2613
|
-
}, "strip", z.ZodTypeAny, {
|
|
2614
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2615
|
-
value: number;
|
|
2616
|
-
type: "unit";
|
|
2617
|
-
}, {
|
|
2618
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2619
|
-
value: number;
|
|
2620
|
-
type: "unit";
|
|
2621
|
-
}>, z.ZodObject<{
|
|
2622
|
-
type: z.ZodLiteral<"keyword">;
|
|
2623
|
-
value: z.ZodString;
|
|
2624
|
-
}, "strip", z.ZodTypeAny, {
|
|
2625
|
-
value: string;
|
|
2626
|
-
type: "keyword";
|
|
2627
|
-
}, {
|
|
2628
|
-
value: string;
|
|
2629
|
-
type: "keyword";
|
|
2630
|
-
}>, z.ZodObject<{
|
|
2631
|
-
type: z.ZodLiteral<"unparsed">;
|
|
2632
|
-
value: z.ZodString;
|
|
2633
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2634
|
-
}, "strip", z.ZodTypeAny, {
|
|
2635
|
-
hidden?: boolean | undefined;
|
|
2636
|
-
value: string;
|
|
2637
|
-
type: "unparsed";
|
|
2638
|
-
}, {
|
|
2639
|
-
hidden?: boolean | undefined;
|
|
2640
|
-
value: string;
|
|
2641
|
-
type: "unparsed";
|
|
2642
|
-
}>]>, "many">;
|
|
2643
|
-
}, "strip", z.ZodTypeAny, {
|
|
2644
|
-
value: ({
|
|
2645
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2646
|
-
value: number;
|
|
2647
|
-
type: "unit";
|
|
2648
|
-
} | {
|
|
2649
|
-
value: string;
|
|
2650
|
-
type: "keyword";
|
|
2651
|
-
} | {
|
|
2652
|
-
hidden?: boolean | undefined;
|
|
2653
|
-
value: string;
|
|
2654
|
-
type: "unparsed";
|
|
2655
|
-
})[];
|
|
2656
|
-
type: "tuple";
|
|
2657
|
-
}, {
|
|
2658
|
-
value: ({
|
|
2659
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2660
|
-
value: number;
|
|
2661
|
-
type: "unit";
|
|
2662
|
-
} | {
|
|
2663
|
-
value: string;
|
|
2664
|
-
type: "keyword";
|
|
2665
|
-
} | {
|
|
2666
|
-
hidden?: boolean | undefined;
|
|
2667
|
-
value: string;
|
|
2668
|
-
type: "unparsed";
|
|
2669
|
-
})[];
|
|
2670
|
-
type: "tuple";
|
|
2671
|
-
}>, z.ZodObject<{
|
|
2672
|
-
type: z.ZodLiteral<"invalid">;
|
|
2673
|
-
value: z.ZodString;
|
|
2674
|
-
}, "strip", z.ZodTypeAny, {
|
|
2675
|
-
value: string;
|
|
2676
|
-
type: "invalid";
|
|
2677
|
-
}, {
|
|
2678
|
-
value: string;
|
|
2679
|
-
type: "invalid";
|
|
2680
|
-
}>]>, "many">;
|
|
2681
|
-
}, "strip", z.ZodTypeAny, {
|
|
2682
|
-
value: ({
|
|
2683
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2684
|
-
value: number;
|
|
2685
|
-
type: "unit";
|
|
2686
|
-
} | {
|
|
2687
|
-
value: string;
|
|
2688
|
-
type: "keyword";
|
|
2689
|
-
} | {
|
|
2690
|
-
hidden?: boolean | undefined;
|
|
2691
|
-
value: string;
|
|
2692
|
-
type: "unparsed";
|
|
2693
|
-
} | {
|
|
2694
|
-
hidden?: boolean | undefined;
|
|
2695
|
-
value: {
|
|
2696
|
-
value: string;
|
|
2697
|
-
type: "asset";
|
|
2698
|
-
} | {
|
|
2699
|
-
type: "url";
|
|
2700
|
-
url: string;
|
|
2701
|
-
};
|
|
2702
|
-
type: "image";
|
|
2703
|
-
} | {
|
|
2704
|
-
value: string;
|
|
2705
|
-
type: "invalid";
|
|
2706
|
-
} | {
|
|
2707
|
-
value: ({
|
|
2708
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2709
|
-
value: number;
|
|
2710
|
-
type: "unit";
|
|
2711
|
-
} | {
|
|
2712
|
-
value: string;
|
|
2713
|
-
type: "keyword";
|
|
2714
|
-
} | {
|
|
2715
|
-
hidden?: boolean | undefined;
|
|
2716
|
-
value: string;
|
|
2717
|
-
type: "unparsed";
|
|
2718
|
-
})[];
|
|
2719
|
-
type: "tuple";
|
|
2720
|
-
})[];
|
|
2721
|
-
type: "layers";
|
|
2722
|
-
}, {
|
|
2723
|
-
value: ({
|
|
2724
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2725
|
-
value: number;
|
|
2726
|
-
type: "unit";
|
|
2727
|
-
} | {
|
|
2728
|
-
value: string;
|
|
2729
|
-
type: "keyword";
|
|
2730
|
-
} | {
|
|
2731
|
-
hidden?: boolean | undefined;
|
|
2732
|
-
value: string;
|
|
2733
|
-
type: "unparsed";
|
|
2734
|
-
} | {
|
|
2735
|
-
hidden?: boolean | undefined;
|
|
2736
|
-
value: {
|
|
2737
|
-
value: string;
|
|
2738
|
-
type: "asset";
|
|
2739
|
-
} | {
|
|
2740
|
-
type: "url";
|
|
2741
|
-
url: string;
|
|
2742
|
-
};
|
|
2743
|
-
type: "image";
|
|
2744
|
-
} | {
|
|
2745
|
-
value: string;
|
|
2746
|
-
type: "invalid";
|
|
2747
|
-
} | {
|
|
2748
|
-
value: ({
|
|
2749
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2750
|
-
value: number;
|
|
2751
|
-
type: "unit";
|
|
2752
|
-
} | {
|
|
2753
|
-
value: string;
|
|
2754
|
-
type: "keyword";
|
|
2755
|
-
} | {
|
|
2756
|
-
hidden?: boolean | undefined;
|
|
2757
|
-
value: string;
|
|
2758
|
-
type: "unparsed";
|
|
2759
|
-
})[];
|
|
2760
|
-
type: "tuple";
|
|
2761
|
-
})[];
|
|
2762
|
-
type: "layers";
|
|
2763
|
-
}>, z.ZodObject<{
|
|
2764
|
-
type: z.ZodLiteral<"unit">;
|
|
2765
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
2766
|
-
value: z.ZodNumber;
|
|
2767
|
-
}, "strip", z.ZodTypeAny, {
|
|
2768
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2769
|
-
value: number;
|
|
2770
|
-
type: "unit";
|
|
2771
|
-
}, {
|
|
2772
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2773
|
-
value: number;
|
|
2774
|
-
type: "unit";
|
|
2775
|
-
}>, z.ZodObject<{
|
|
2776
|
-
type: z.ZodLiteral<"keyword">;
|
|
2777
|
-
value: z.ZodString;
|
|
2778
|
-
}, "strip", z.ZodTypeAny, {
|
|
2779
|
-
value: string;
|
|
2780
|
-
type: "keyword";
|
|
2781
|
-
}, {
|
|
2782
|
-
value: string;
|
|
2783
|
-
type: "keyword";
|
|
2784
|
-
}>, z.ZodObject<{
|
|
2785
|
-
type: z.ZodLiteral<"fontFamily">;
|
|
2786
|
-
value: z.ZodArray<z.ZodString, "many">;
|
|
2787
|
-
}, "strip", z.ZodTypeAny, {
|
|
2788
|
-
value: string[];
|
|
2789
|
-
type: "fontFamily";
|
|
2790
|
-
}, {
|
|
2791
|
-
value: string[];
|
|
2792
|
-
type: "fontFamily";
|
|
2793
|
-
}>, z.ZodObject<{
|
|
2794
|
-
type: z.ZodLiteral<"rgb">;
|
|
2795
|
-
r: z.ZodNumber;
|
|
2796
|
-
g: z.ZodNumber;
|
|
2797
|
-
b: z.ZodNumber;
|
|
2798
|
-
alpha: z.ZodNumber;
|
|
2799
|
-
}, "strip", z.ZodTypeAny, {
|
|
2800
|
-
alpha: number;
|
|
2801
|
-
type: "rgb";
|
|
2802
|
-
r: number;
|
|
2803
|
-
g: number;
|
|
2804
|
-
b: number;
|
|
2805
|
-
}, {
|
|
2806
|
-
alpha: number;
|
|
2807
|
-
type: "rgb";
|
|
2808
|
-
r: number;
|
|
2809
|
-
g: number;
|
|
2810
|
-
b: number;
|
|
2811
|
-
}>, z.ZodObject<{
|
|
2812
|
-
type: z.ZodLiteral<"unparsed">;
|
|
2813
|
-
value: z.ZodString;
|
|
2814
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2815
|
-
}, "strip", z.ZodTypeAny, {
|
|
2816
|
-
hidden?: boolean | undefined;
|
|
2817
|
-
value: string;
|
|
2818
|
-
type: "unparsed";
|
|
2819
|
-
}, {
|
|
2820
|
-
hidden?: boolean | undefined;
|
|
2821
|
-
value: string;
|
|
2822
|
-
type: "unparsed";
|
|
2823
|
-
}>, z.ZodObject<{
|
|
2824
|
-
type: z.ZodLiteral<"tuple">;
|
|
2825
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2826
|
-
type: z.ZodLiteral<"unit">;
|
|
2827
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
2828
|
-
value: z.ZodNumber;
|
|
2829
|
-
}, "strip", z.ZodTypeAny, {
|
|
2830
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2831
|
-
value: number;
|
|
2832
|
-
type: "unit";
|
|
2833
|
-
}, {
|
|
2834
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2835
|
-
value: number;
|
|
2836
|
-
type: "unit";
|
|
2837
|
-
}>, z.ZodObject<{
|
|
2838
|
-
type: z.ZodLiteral<"keyword">;
|
|
2839
|
-
value: z.ZodString;
|
|
2840
|
-
}, "strip", z.ZodTypeAny, {
|
|
2841
|
-
value: string;
|
|
2842
|
-
type: "keyword";
|
|
2843
|
-
}, {
|
|
2844
|
-
value: string;
|
|
2845
|
-
type: "keyword";
|
|
2846
|
-
}>, z.ZodObject<{
|
|
2847
|
-
type: z.ZodLiteral<"unparsed">;
|
|
2848
|
-
value: z.ZodString;
|
|
2849
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2850
|
-
}, "strip", z.ZodTypeAny, {
|
|
2851
|
-
hidden?: boolean | undefined;
|
|
2852
|
-
value: string;
|
|
2853
|
-
type: "unparsed";
|
|
2854
|
-
}, {
|
|
2855
|
-
hidden?: boolean | undefined;
|
|
2856
|
-
value: string;
|
|
2857
|
-
type: "unparsed";
|
|
2858
|
-
}>]>, "many">;
|
|
2859
|
-
}, "strip", z.ZodTypeAny, {
|
|
2860
|
-
value: ({
|
|
2861
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2862
|
-
value: number;
|
|
2863
|
-
type: "unit";
|
|
2864
|
-
} | {
|
|
2865
|
-
value: string;
|
|
2866
|
-
type: "keyword";
|
|
2867
|
-
} | {
|
|
2868
|
-
hidden?: boolean | undefined;
|
|
2869
|
-
value: string;
|
|
2870
|
-
type: "unparsed";
|
|
2871
|
-
})[];
|
|
2872
|
-
type: "tuple";
|
|
2873
|
-
}, {
|
|
2874
|
-
value: ({
|
|
2875
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2876
|
-
value: number;
|
|
2877
|
-
type: "unit";
|
|
2878
|
-
} | {
|
|
2879
|
-
value: string;
|
|
2880
|
-
type: "keyword";
|
|
2881
|
-
} | {
|
|
2882
|
-
hidden?: boolean | undefined;
|
|
2883
|
-
value: string;
|
|
2884
|
-
type: "unparsed";
|
|
2885
|
-
})[];
|
|
2886
|
-
type: "tuple";
|
|
2887
|
-
}>]>, z.ZodObject<{
|
|
2888
|
-
type: z.ZodLiteral<"invalid">;
|
|
2889
|
-
value: z.ZodString;
|
|
2890
|
-
}, "strip", z.ZodTypeAny, {
|
|
2891
|
-
value: string;
|
|
2892
|
-
type: "invalid";
|
|
2893
|
-
}, {
|
|
2894
|
-
value: string;
|
|
2895
|
-
type: "invalid";
|
|
2896
|
-
}>, z.ZodObject<{
|
|
2897
|
-
type: z.ZodLiteral<"unset">;
|
|
2898
|
-
value: z.ZodLiteral<"">;
|
|
2899
|
-
}, "strip", z.ZodTypeAny, {
|
|
2900
|
-
value: "";
|
|
2901
|
-
type: "unset";
|
|
2902
|
-
}, {
|
|
2903
|
-
value: "";
|
|
2904
|
-
type: "unset";
|
|
2905
|
-
}>, z.ZodObject<{
|
|
2906
|
-
type: z.ZodLiteral<"var">;
|
|
2907
|
-
value: z.ZodString;
|
|
2908
|
-
fallbacks: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2909
|
-
type: z.ZodLiteral<"image">;
|
|
2910
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
2911
|
-
type: z.ZodLiteral<"asset">;
|
|
2912
|
-
value: z.ZodString;
|
|
2913
|
-
}, "strip", z.ZodTypeAny, {
|
|
2914
|
-
value: string;
|
|
2915
|
-
type: "asset";
|
|
2916
|
-
}, {
|
|
2917
|
-
value: string;
|
|
2918
|
-
type: "asset";
|
|
2919
|
-
}>, z.ZodObject<{
|
|
2920
|
-
type: z.ZodLiteral<"url">;
|
|
2921
|
-
url: z.ZodString;
|
|
2922
|
-
}, "strip", z.ZodTypeAny, {
|
|
2923
|
-
type: "url";
|
|
2924
|
-
url: string;
|
|
2925
|
-
}, {
|
|
2926
|
-
type: "url";
|
|
2927
|
-
url: string;
|
|
2928
|
-
}>]>;
|
|
2929
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2930
|
-
}, "strip", z.ZodTypeAny, {
|
|
2931
|
-
hidden?: boolean | undefined;
|
|
2932
|
-
value: {
|
|
2933
|
-
value: string;
|
|
2934
|
-
type: "asset";
|
|
2935
|
-
} | {
|
|
2936
|
-
type: "url";
|
|
2937
|
-
url: string;
|
|
2938
|
-
};
|
|
2939
|
-
type: "image";
|
|
2940
|
-
}, {
|
|
2941
|
-
hidden?: boolean | undefined;
|
|
2942
|
-
value: {
|
|
2943
|
-
value: string;
|
|
2944
|
-
type: "asset";
|
|
2945
|
-
} | {
|
|
2946
|
-
type: "url";
|
|
2947
|
-
url: string;
|
|
2948
|
-
};
|
|
2949
|
-
type: "image";
|
|
2950
|
-
}>, z.ZodObject<{
|
|
2951
|
-
type: z.ZodLiteral<"layers">;
|
|
2952
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2953
|
-
type: z.ZodLiteral<"unit">;
|
|
2954
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
2955
|
-
value: z.ZodNumber;
|
|
2956
|
-
}, "strip", z.ZodTypeAny, {
|
|
2957
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2958
|
-
value: number;
|
|
2959
|
-
type: "unit";
|
|
2960
|
-
}, {
|
|
2961
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
2962
|
-
value: number;
|
|
2963
|
-
type: "unit";
|
|
2964
|
-
}>, z.ZodObject<{
|
|
2965
|
-
type: z.ZodLiteral<"keyword">;
|
|
2966
|
-
value: z.ZodString;
|
|
2967
|
-
}, "strip", z.ZodTypeAny, {
|
|
2968
|
-
value: string;
|
|
2969
|
-
type: "keyword";
|
|
2970
|
-
}, {
|
|
2971
|
-
value: string;
|
|
2972
|
-
type: "keyword";
|
|
2973
|
-
}>, z.ZodObject<{
|
|
2974
|
-
type: z.ZodLiteral<"unparsed">;
|
|
2975
|
-
value: z.ZodString;
|
|
2976
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2977
|
-
}, "strip", z.ZodTypeAny, {
|
|
2978
|
-
hidden?: boolean | undefined;
|
|
2979
|
-
value: string;
|
|
2980
|
-
type: "unparsed";
|
|
2981
|
-
}, {
|
|
2982
|
-
hidden?: boolean | undefined;
|
|
2983
|
-
value: string;
|
|
2984
|
-
type: "unparsed";
|
|
2985
|
-
}>, z.ZodObject<{
|
|
2986
|
-
type: z.ZodLiteral<"image">;
|
|
2987
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
2988
|
-
type: z.ZodLiteral<"asset">;
|
|
2989
|
-
value: z.ZodString;
|
|
2990
|
-
}, "strip", z.ZodTypeAny, {
|
|
2991
|
-
value: string;
|
|
2992
|
-
type: "asset";
|
|
2993
|
-
}, {
|
|
2994
|
-
value: string;
|
|
2995
|
-
type: "asset";
|
|
2996
|
-
}>, z.ZodObject<{
|
|
2997
|
-
type: z.ZodLiteral<"url">;
|
|
2998
|
-
url: z.ZodString;
|
|
2999
|
-
}, "strip", z.ZodTypeAny, {
|
|
3000
|
-
type: "url";
|
|
3001
|
-
url: string;
|
|
3002
|
-
}, {
|
|
3003
|
-
type: "url";
|
|
3004
|
-
url: string;
|
|
3005
|
-
}>]>;
|
|
3006
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3007
|
-
}, "strip", z.ZodTypeAny, {
|
|
3008
|
-
hidden?: boolean | undefined;
|
|
3009
|
-
value: {
|
|
3010
|
-
value: string;
|
|
3011
|
-
type: "asset";
|
|
3012
|
-
} | {
|
|
3013
|
-
type: "url";
|
|
3014
|
-
url: string;
|
|
3015
|
-
};
|
|
3016
|
-
type: "image";
|
|
3017
|
-
}, {
|
|
3018
|
-
hidden?: boolean | undefined;
|
|
3019
|
-
value: {
|
|
3020
|
-
value: string;
|
|
3021
|
-
type: "asset";
|
|
3022
|
-
} | {
|
|
3023
|
-
type: "url";
|
|
3024
|
-
url: string;
|
|
3025
|
-
};
|
|
3026
|
-
type: "image";
|
|
3027
|
-
}>, z.ZodObject<{
|
|
3028
|
-
type: z.ZodLiteral<"tuple">;
|
|
3029
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3030
|
-
type: z.ZodLiteral<"unit">;
|
|
3031
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
3032
|
-
value: z.ZodNumber;
|
|
3033
|
-
}, "strip", z.ZodTypeAny, {
|
|
3034
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3035
|
-
value: number;
|
|
3036
|
-
type: "unit";
|
|
3037
|
-
}, {
|
|
3038
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3039
|
-
value: number;
|
|
3040
|
-
type: "unit";
|
|
3041
|
-
}>, z.ZodObject<{
|
|
3042
|
-
type: z.ZodLiteral<"keyword">;
|
|
3043
|
-
value: z.ZodString;
|
|
3044
|
-
}, "strip", z.ZodTypeAny, {
|
|
3045
|
-
value: string;
|
|
3046
|
-
type: "keyword";
|
|
3047
|
-
}, {
|
|
3048
|
-
value: string;
|
|
3049
|
-
type: "keyword";
|
|
3050
|
-
}>, z.ZodObject<{
|
|
3051
|
-
type: z.ZodLiteral<"unparsed">;
|
|
3052
|
-
value: z.ZodString;
|
|
3053
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3054
|
-
}, "strip", z.ZodTypeAny, {
|
|
3055
|
-
hidden?: boolean | undefined;
|
|
3056
|
-
value: string;
|
|
3057
|
-
type: "unparsed";
|
|
3058
|
-
}, {
|
|
3059
|
-
hidden?: boolean | undefined;
|
|
3060
|
-
value: string;
|
|
3061
|
-
type: "unparsed";
|
|
3062
|
-
}>]>, "many">;
|
|
3063
|
-
}, "strip", z.ZodTypeAny, {
|
|
3064
|
-
value: ({
|
|
3065
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3066
|
-
value: number;
|
|
3067
|
-
type: "unit";
|
|
3068
|
-
} | {
|
|
3069
|
-
value: string;
|
|
3070
|
-
type: "keyword";
|
|
3071
|
-
} | {
|
|
3072
|
-
hidden?: boolean | undefined;
|
|
3073
|
-
value: string;
|
|
3074
|
-
type: "unparsed";
|
|
3075
|
-
})[];
|
|
3076
|
-
type: "tuple";
|
|
3077
|
-
}, {
|
|
3078
|
-
value: ({
|
|
3079
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3080
|
-
value: number;
|
|
3081
|
-
type: "unit";
|
|
3082
|
-
} | {
|
|
3083
|
-
value: string;
|
|
3084
|
-
type: "keyword";
|
|
3085
|
-
} | {
|
|
3086
|
-
hidden?: boolean | undefined;
|
|
3087
|
-
value: string;
|
|
3088
|
-
type: "unparsed";
|
|
3089
|
-
})[];
|
|
3090
|
-
type: "tuple";
|
|
3091
|
-
}>, z.ZodObject<{
|
|
3092
|
-
type: z.ZodLiteral<"invalid">;
|
|
3093
|
-
value: z.ZodString;
|
|
3094
|
-
}, "strip", z.ZodTypeAny, {
|
|
3095
|
-
value: string;
|
|
3096
|
-
type: "invalid";
|
|
3097
|
-
}, {
|
|
3098
|
-
value: string;
|
|
3099
|
-
type: "invalid";
|
|
3100
|
-
}>]>, "many">;
|
|
3101
|
-
}, "strip", z.ZodTypeAny, {
|
|
3102
|
-
value: ({
|
|
3103
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3104
|
-
value: number;
|
|
3105
|
-
type: "unit";
|
|
3106
|
-
} | {
|
|
3107
|
-
value: string;
|
|
3108
|
-
type: "keyword";
|
|
3109
|
-
} | {
|
|
3110
|
-
hidden?: boolean | undefined;
|
|
3111
|
-
value: string;
|
|
3112
|
-
type: "unparsed";
|
|
3113
|
-
} | {
|
|
3114
|
-
hidden?: boolean | undefined;
|
|
3115
|
-
value: {
|
|
3116
|
-
value: string;
|
|
3117
|
-
type: "asset";
|
|
3118
|
-
} | {
|
|
3119
|
-
type: "url";
|
|
3120
|
-
url: string;
|
|
3121
|
-
};
|
|
3122
|
-
type: "image";
|
|
3123
|
-
} | {
|
|
3124
|
-
value: string;
|
|
3125
|
-
type: "invalid";
|
|
3126
|
-
} | {
|
|
3127
|
-
value: ({
|
|
3128
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3129
|
-
value: number;
|
|
3130
|
-
type: "unit";
|
|
3131
|
-
} | {
|
|
3132
|
-
value: string;
|
|
3133
|
-
type: "keyword";
|
|
3134
|
-
} | {
|
|
3135
|
-
hidden?: boolean | undefined;
|
|
3136
|
-
value: string;
|
|
3137
|
-
type: "unparsed";
|
|
3138
|
-
})[];
|
|
3139
|
-
type: "tuple";
|
|
3140
|
-
})[];
|
|
3141
|
-
type: "layers";
|
|
3142
|
-
}, {
|
|
3143
|
-
value: ({
|
|
3144
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3145
|
-
value: number;
|
|
3146
|
-
type: "unit";
|
|
3147
|
-
} | {
|
|
3148
|
-
value: string;
|
|
3149
|
-
type: "keyword";
|
|
3150
|
-
} | {
|
|
3151
|
-
hidden?: boolean | undefined;
|
|
3152
|
-
value: string;
|
|
3153
|
-
type: "unparsed";
|
|
3154
|
-
} | {
|
|
3155
|
-
hidden?: boolean | undefined;
|
|
3156
|
-
value: {
|
|
3157
|
-
value: string;
|
|
3158
|
-
type: "asset";
|
|
3159
|
-
} | {
|
|
3160
|
-
type: "url";
|
|
3161
|
-
url: string;
|
|
3162
|
-
};
|
|
3163
|
-
type: "image";
|
|
3164
|
-
} | {
|
|
3165
|
-
value: string;
|
|
3166
|
-
type: "invalid";
|
|
3167
|
-
} | {
|
|
3168
|
-
value: ({
|
|
3169
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3170
|
-
value: number;
|
|
3171
|
-
type: "unit";
|
|
3172
|
-
} | {
|
|
3173
|
-
value: string;
|
|
3174
|
-
type: "keyword";
|
|
3175
|
-
} | {
|
|
3176
|
-
hidden?: boolean | undefined;
|
|
3177
|
-
value: string;
|
|
3178
|
-
type: "unparsed";
|
|
3179
|
-
})[];
|
|
3180
|
-
type: "tuple";
|
|
3181
|
-
})[];
|
|
3182
|
-
type: "layers";
|
|
3183
|
-
}>, z.ZodObject<{
|
|
3184
|
-
type: z.ZodLiteral<"unit">;
|
|
3185
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
3186
|
-
value: z.ZodNumber;
|
|
3187
|
-
}, "strip", z.ZodTypeAny, {
|
|
3188
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3189
|
-
value: number;
|
|
3190
|
-
type: "unit";
|
|
3191
|
-
}, {
|
|
3192
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3193
|
-
value: number;
|
|
3194
|
-
type: "unit";
|
|
3195
|
-
}>, z.ZodObject<{
|
|
3196
|
-
type: z.ZodLiteral<"keyword">;
|
|
3197
|
-
value: z.ZodString;
|
|
3198
|
-
}, "strip", z.ZodTypeAny, {
|
|
3199
|
-
value: string;
|
|
3200
|
-
type: "keyword";
|
|
3201
|
-
}, {
|
|
3202
|
-
value: string;
|
|
3203
|
-
type: "keyword";
|
|
3204
|
-
}>, z.ZodObject<{
|
|
3205
|
-
type: z.ZodLiteral<"fontFamily">;
|
|
3206
|
-
value: z.ZodArray<z.ZodString, "many">;
|
|
3207
|
-
}, "strip", z.ZodTypeAny, {
|
|
3208
|
-
value: string[];
|
|
3209
|
-
type: "fontFamily";
|
|
3210
|
-
}, {
|
|
3211
|
-
value: string[];
|
|
3212
|
-
type: "fontFamily";
|
|
3213
|
-
}>, z.ZodObject<{
|
|
3214
|
-
type: z.ZodLiteral<"rgb">;
|
|
3215
|
-
r: z.ZodNumber;
|
|
3216
|
-
g: z.ZodNumber;
|
|
3217
|
-
b: z.ZodNumber;
|
|
3218
|
-
alpha: z.ZodNumber;
|
|
3219
|
-
}, "strip", z.ZodTypeAny, {
|
|
3220
|
-
alpha: number;
|
|
3221
|
-
type: "rgb";
|
|
3222
|
-
r: number;
|
|
3223
|
-
g: number;
|
|
3224
|
-
b: number;
|
|
3225
|
-
}, {
|
|
3226
|
-
alpha: number;
|
|
3227
|
-
type: "rgb";
|
|
3228
|
-
r: number;
|
|
3229
|
-
g: number;
|
|
3230
|
-
b: number;
|
|
3231
|
-
}>, z.ZodObject<{
|
|
3232
|
-
type: z.ZodLiteral<"unparsed">;
|
|
3233
|
-
value: z.ZodString;
|
|
3234
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3235
|
-
}, "strip", z.ZodTypeAny, {
|
|
3236
|
-
hidden?: boolean | undefined;
|
|
3237
|
-
value: string;
|
|
3238
|
-
type: "unparsed";
|
|
3239
|
-
}, {
|
|
3240
|
-
hidden?: boolean | undefined;
|
|
3241
|
-
value: string;
|
|
3242
|
-
type: "unparsed";
|
|
3243
|
-
}>, z.ZodObject<{
|
|
3244
|
-
type: z.ZodLiteral<"tuple">;
|
|
3245
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3246
|
-
type: z.ZodLiteral<"unit">;
|
|
3247
|
-
unit: z.ZodUnion<[z.ZodEnum<["x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms"]>, z.ZodLiteral<"number">]>;
|
|
3248
|
-
value: z.ZodNumber;
|
|
3249
|
-
}, "strip", z.ZodTypeAny, {
|
|
3250
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3251
|
-
value: number;
|
|
3252
|
-
type: "unit";
|
|
3253
|
-
}, {
|
|
3254
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3255
|
-
value: number;
|
|
3256
|
-
type: "unit";
|
|
3257
|
-
}>, z.ZodObject<{
|
|
3258
|
-
type: z.ZodLiteral<"keyword">;
|
|
3259
|
-
value: z.ZodString;
|
|
3260
|
-
}, "strip", z.ZodTypeAny, {
|
|
3261
|
-
value: string;
|
|
3262
|
-
type: "keyword";
|
|
3263
|
-
}, {
|
|
3264
|
-
value: string;
|
|
3265
|
-
type: "keyword";
|
|
3266
|
-
}>, z.ZodObject<{
|
|
3267
|
-
type: z.ZodLiteral<"unparsed">;
|
|
3268
|
-
value: z.ZodString;
|
|
3269
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3270
|
-
}, "strip", z.ZodTypeAny, {
|
|
3271
|
-
hidden?: boolean | undefined;
|
|
3272
|
-
value: string;
|
|
3273
|
-
type: "unparsed";
|
|
3274
|
-
}, {
|
|
3275
|
-
hidden?: boolean | undefined;
|
|
3276
|
-
value: string;
|
|
3277
|
-
type: "unparsed";
|
|
3278
|
-
}>]>, "many">;
|
|
3279
|
-
}, "strip", z.ZodTypeAny, {
|
|
3280
|
-
value: ({
|
|
3281
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3282
|
-
value: number;
|
|
3283
|
-
type: "unit";
|
|
3284
|
-
} | {
|
|
3285
|
-
value: string;
|
|
3286
|
-
type: "keyword";
|
|
3287
|
-
} | {
|
|
3288
|
-
hidden?: boolean | undefined;
|
|
3289
|
-
value: string;
|
|
3290
|
-
type: "unparsed";
|
|
3291
|
-
})[];
|
|
3292
|
-
type: "tuple";
|
|
3293
|
-
}, {
|
|
3294
|
-
value: ({
|
|
3295
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3296
|
-
value: number;
|
|
3297
|
-
type: "unit";
|
|
3298
|
-
} | {
|
|
3299
|
-
value: string;
|
|
3300
|
-
type: "keyword";
|
|
3301
|
-
} | {
|
|
3302
|
-
hidden?: boolean | undefined;
|
|
3303
|
-
value: string;
|
|
3304
|
-
type: "unparsed";
|
|
3305
|
-
})[];
|
|
3306
|
-
type: "tuple";
|
|
3307
|
-
}>]>, "many">;
|
|
3308
|
-
}, "strip", z.ZodTypeAny, {
|
|
3309
|
-
value: string;
|
|
3310
|
-
type: "var";
|
|
3311
|
-
fallbacks: ({
|
|
3312
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3313
|
-
value: number;
|
|
3314
|
-
type: "unit";
|
|
3315
|
-
} | {
|
|
3316
|
-
value: string;
|
|
3317
|
-
type: "keyword";
|
|
3318
|
-
} | {
|
|
3319
|
-
hidden?: boolean | undefined;
|
|
3320
|
-
value: string;
|
|
3321
|
-
type: "unparsed";
|
|
3322
|
-
} | {
|
|
3323
|
-
value: string[];
|
|
3324
|
-
type: "fontFamily";
|
|
3325
|
-
} | {
|
|
3326
|
-
alpha: number;
|
|
3327
|
-
type: "rgb";
|
|
3328
|
-
r: number;
|
|
3329
|
-
g: number;
|
|
3330
|
-
b: number;
|
|
3331
|
-
} | {
|
|
3332
|
-
hidden?: boolean | undefined;
|
|
3333
|
-
value: {
|
|
3334
|
-
value: string;
|
|
3335
|
-
type: "asset";
|
|
3336
|
-
} | {
|
|
3337
|
-
type: "url";
|
|
3338
|
-
url: string;
|
|
3339
|
-
};
|
|
3340
|
-
type: "image";
|
|
3341
|
-
} | {
|
|
3342
|
-
value: ({
|
|
3343
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3344
|
-
value: number;
|
|
3345
|
-
type: "unit";
|
|
3346
|
-
} | {
|
|
3347
|
-
value: string;
|
|
3348
|
-
type: "keyword";
|
|
3349
|
-
} | {
|
|
3350
|
-
hidden?: boolean | undefined;
|
|
3351
|
-
value: string;
|
|
3352
|
-
type: "unparsed";
|
|
3353
|
-
})[];
|
|
3354
|
-
type: "tuple";
|
|
3355
|
-
} | {
|
|
3356
|
-
value: ({
|
|
3357
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3358
|
-
value: number;
|
|
3359
|
-
type: "unit";
|
|
3360
|
-
} | {
|
|
3361
|
-
value: string;
|
|
3362
|
-
type: "keyword";
|
|
3363
|
-
} | {
|
|
3364
|
-
hidden?: boolean | undefined;
|
|
3365
|
-
value: string;
|
|
3366
|
-
type: "unparsed";
|
|
3367
|
-
} | {
|
|
3368
|
-
hidden?: boolean | undefined;
|
|
3369
|
-
value: {
|
|
3370
|
-
value: string;
|
|
3371
|
-
type: "asset";
|
|
3372
|
-
} | {
|
|
3373
|
-
type: "url";
|
|
3374
|
-
url: string;
|
|
3375
|
-
};
|
|
3376
|
-
type: "image";
|
|
3377
|
-
} | {
|
|
3378
|
-
value: string;
|
|
3379
|
-
type: "invalid";
|
|
3380
|
-
} | {
|
|
3381
|
-
value: ({
|
|
3382
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3383
|
-
value: number;
|
|
3384
|
-
type: "unit";
|
|
3385
|
-
} | {
|
|
3386
|
-
value: string;
|
|
3387
|
-
type: "keyword";
|
|
3388
|
-
} | {
|
|
3389
|
-
hidden?: boolean | undefined;
|
|
3390
|
-
value: string;
|
|
3391
|
-
type: "unparsed";
|
|
3392
|
-
})[];
|
|
3393
|
-
type: "tuple";
|
|
3394
|
-
})[];
|
|
3395
|
-
type: "layers";
|
|
3396
|
-
})[];
|
|
3397
|
-
}, {
|
|
3398
|
-
value: string;
|
|
3399
|
-
type: "var";
|
|
3400
|
-
fallbacks: ({
|
|
3401
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3402
|
-
value: number;
|
|
3403
|
-
type: "unit";
|
|
3404
|
-
} | {
|
|
3405
|
-
value: string;
|
|
3406
|
-
type: "keyword";
|
|
3407
|
-
} | {
|
|
3408
|
-
hidden?: boolean | undefined;
|
|
3409
|
-
value: string;
|
|
3410
|
-
type: "unparsed";
|
|
3411
|
-
} | {
|
|
3412
|
-
value: string[];
|
|
3413
|
-
type: "fontFamily";
|
|
3414
|
-
} | {
|
|
3415
|
-
alpha: number;
|
|
3416
|
-
type: "rgb";
|
|
3417
|
-
r: number;
|
|
3418
|
-
g: number;
|
|
3419
|
-
b: number;
|
|
3420
|
-
} | {
|
|
3421
|
-
hidden?: boolean | undefined;
|
|
3422
|
-
value: {
|
|
3423
|
-
value: string;
|
|
3424
|
-
type: "asset";
|
|
3425
|
-
} | {
|
|
3426
|
-
type: "url";
|
|
3427
|
-
url: string;
|
|
3428
|
-
};
|
|
3429
|
-
type: "image";
|
|
3430
|
-
} | {
|
|
3431
|
-
value: ({
|
|
3432
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3433
|
-
value: number;
|
|
3434
|
-
type: "unit";
|
|
3435
|
-
} | {
|
|
3436
|
-
value: string;
|
|
3437
|
-
type: "keyword";
|
|
3438
|
-
} | {
|
|
3439
|
-
hidden?: boolean | undefined;
|
|
3440
|
-
value: string;
|
|
3441
|
-
type: "unparsed";
|
|
3442
|
-
})[];
|
|
3443
|
-
type: "tuple";
|
|
3444
|
-
} | {
|
|
3445
|
-
value: ({
|
|
3446
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3447
|
-
value: number;
|
|
3448
|
-
type: "unit";
|
|
3449
|
-
} | {
|
|
3450
|
-
value: string;
|
|
3451
|
-
type: "keyword";
|
|
3452
|
-
} | {
|
|
3453
|
-
hidden?: boolean | undefined;
|
|
3454
|
-
value: string;
|
|
3455
|
-
type: "unparsed";
|
|
3456
|
-
} | {
|
|
3457
|
-
hidden?: boolean | undefined;
|
|
3458
|
-
value: {
|
|
3459
|
-
value: string;
|
|
3460
|
-
type: "asset";
|
|
3461
|
-
} | {
|
|
3462
|
-
type: "url";
|
|
3463
|
-
url: string;
|
|
3464
|
-
};
|
|
3465
|
-
type: "image";
|
|
3466
|
-
} | {
|
|
3467
|
-
value: string;
|
|
3468
|
-
type: "invalid";
|
|
3469
|
-
} | {
|
|
3470
|
-
value: ({
|
|
3471
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3472
|
-
value: number;
|
|
3473
|
-
type: "unit";
|
|
3474
|
-
} | {
|
|
3475
|
-
value: string;
|
|
3476
|
-
type: "keyword";
|
|
3477
|
-
} | {
|
|
3478
|
-
hidden?: boolean | undefined;
|
|
3479
|
-
value: string;
|
|
3480
|
-
type: "unparsed";
|
|
3481
|
-
})[];
|
|
3482
|
-
type: "tuple";
|
|
3483
|
-
})[];
|
|
3484
|
-
type: "layers";
|
|
3485
|
-
})[];
|
|
3486
|
-
}>]>>;
|
|
3487
|
-
breakpoint: z.ZodOptional<z.ZodString>;
|
|
3488
|
-
}, "strip", z.ZodTypeAny, {
|
|
3489
|
-
breakpoint?: string | undefined;
|
|
3490
|
-
style: Record<string, {
|
|
3491
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3492
|
-
value: number;
|
|
3493
|
-
type: "unit";
|
|
3494
|
-
} | {
|
|
3495
|
-
value: string;
|
|
3496
|
-
type: "keyword";
|
|
3497
|
-
} | {
|
|
3498
|
-
hidden?: boolean | undefined;
|
|
3499
|
-
value: string;
|
|
3500
|
-
type: "unparsed";
|
|
3501
|
-
} | {
|
|
3502
|
-
value: string[];
|
|
3503
|
-
type: "fontFamily";
|
|
3504
|
-
} | {
|
|
3505
|
-
alpha: number;
|
|
3506
|
-
type: "rgb";
|
|
3507
|
-
r: number;
|
|
3508
|
-
g: number;
|
|
3509
|
-
b: number;
|
|
3510
|
-
} | {
|
|
3511
|
-
hidden?: boolean | undefined;
|
|
3512
|
-
value: {
|
|
3513
|
-
value: string;
|
|
3514
|
-
type: "asset";
|
|
3515
|
-
} | {
|
|
3516
|
-
type: "url";
|
|
3517
|
-
url: string;
|
|
3518
|
-
};
|
|
3519
|
-
type: "image";
|
|
3520
|
-
} | {
|
|
3521
|
-
value: string;
|
|
3522
|
-
type: "invalid";
|
|
3523
|
-
} | {
|
|
3524
|
-
value: "";
|
|
3525
|
-
type: "unset";
|
|
3526
|
-
} | {
|
|
3527
|
-
value: ({
|
|
3528
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3529
|
-
value: number;
|
|
3530
|
-
type: "unit";
|
|
3531
|
-
} | {
|
|
3532
|
-
value: string;
|
|
3533
|
-
type: "keyword";
|
|
3534
|
-
} | {
|
|
3535
|
-
hidden?: boolean | undefined;
|
|
3536
|
-
value: string;
|
|
3537
|
-
type: "unparsed";
|
|
3538
|
-
})[];
|
|
3539
|
-
type: "tuple";
|
|
3540
|
-
} | {
|
|
3541
|
-
value: ({
|
|
3542
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3543
|
-
value: number;
|
|
3544
|
-
type: "unit";
|
|
3545
|
-
} | {
|
|
3546
|
-
value: string;
|
|
3547
|
-
type: "keyword";
|
|
3548
|
-
} | {
|
|
3549
|
-
hidden?: boolean | undefined;
|
|
3550
|
-
value: string;
|
|
3551
|
-
type: "unparsed";
|
|
3552
|
-
} | {
|
|
3553
|
-
hidden?: boolean | undefined;
|
|
3554
|
-
value: {
|
|
3555
|
-
value: string;
|
|
3556
|
-
type: "asset";
|
|
3557
|
-
} | {
|
|
3558
|
-
type: "url";
|
|
3559
|
-
url: string;
|
|
3560
|
-
};
|
|
3561
|
-
type: "image";
|
|
3562
|
-
} | {
|
|
3563
|
-
value: string;
|
|
3564
|
-
type: "invalid";
|
|
3565
|
-
} | {
|
|
3566
|
-
value: ({
|
|
3567
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3568
|
-
value: number;
|
|
3569
|
-
type: "unit";
|
|
3570
|
-
} | {
|
|
3571
|
-
value: string;
|
|
3572
|
-
type: "keyword";
|
|
3573
|
-
} | {
|
|
3574
|
-
hidden?: boolean | undefined;
|
|
3575
|
-
value: string;
|
|
3576
|
-
type: "unparsed";
|
|
3577
|
-
})[];
|
|
3578
|
-
type: "tuple";
|
|
3579
|
-
})[];
|
|
3580
|
-
type: "layers";
|
|
3581
|
-
} | {
|
|
3582
|
-
value: string;
|
|
3583
|
-
type: "var";
|
|
3584
|
-
fallbacks: ({
|
|
3585
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3586
|
-
value: number;
|
|
3587
|
-
type: "unit";
|
|
3588
|
-
} | {
|
|
3589
|
-
value: string;
|
|
3590
|
-
type: "keyword";
|
|
3591
|
-
} | {
|
|
3592
|
-
hidden?: boolean | undefined;
|
|
3593
|
-
value: string;
|
|
3594
|
-
type: "unparsed";
|
|
3595
|
-
} | {
|
|
3596
|
-
value: string[];
|
|
3597
|
-
type: "fontFamily";
|
|
3598
|
-
} | {
|
|
3599
|
-
alpha: number;
|
|
3600
|
-
type: "rgb";
|
|
3601
|
-
r: number;
|
|
3602
|
-
g: number;
|
|
3603
|
-
b: number;
|
|
3604
|
-
} | {
|
|
3605
|
-
hidden?: boolean | undefined;
|
|
3606
|
-
value: {
|
|
3607
|
-
value: string;
|
|
3608
|
-
type: "asset";
|
|
3609
|
-
} | {
|
|
3610
|
-
type: "url";
|
|
3611
|
-
url: string;
|
|
3612
|
-
};
|
|
3613
|
-
type: "image";
|
|
3614
|
-
} | {
|
|
3615
|
-
value: ({
|
|
3616
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3617
|
-
value: number;
|
|
3618
|
-
type: "unit";
|
|
3619
|
-
} | {
|
|
3620
|
-
value: string;
|
|
3621
|
-
type: "keyword";
|
|
3622
|
-
} | {
|
|
3623
|
-
hidden?: boolean | undefined;
|
|
3624
|
-
value: string;
|
|
3625
|
-
type: "unparsed";
|
|
3626
|
-
})[];
|
|
3627
|
-
type: "tuple";
|
|
3628
|
-
} | {
|
|
3629
|
-
value: ({
|
|
3630
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3631
|
-
value: number;
|
|
3632
|
-
type: "unit";
|
|
3633
|
-
} | {
|
|
3634
|
-
value: string;
|
|
3635
|
-
type: "keyword";
|
|
3636
|
-
} | {
|
|
3637
|
-
hidden?: boolean | undefined;
|
|
3638
|
-
value: string;
|
|
3639
|
-
type: "unparsed";
|
|
3640
|
-
} | {
|
|
3641
|
-
hidden?: boolean | undefined;
|
|
3642
|
-
value: {
|
|
3643
|
-
value: string;
|
|
3644
|
-
type: "asset";
|
|
3645
|
-
} | {
|
|
3646
|
-
type: "url";
|
|
3647
|
-
url: string;
|
|
3648
|
-
};
|
|
3649
|
-
type: "image";
|
|
3650
|
-
} | {
|
|
3651
|
-
value: string;
|
|
3652
|
-
type: "invalid";
|
|
3653
|
-
} | {
|
|
3654
|
-
value: ({
|
|
3655
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3656
|
-
value: number;
|
|
3657
|
-
type: "unit";
|
|
3658
|
-
} | {
|
|
3659
|
-
value: string;
|
|
3660
|
-
type: "keyword";
|
|
3661
|
-
} | {
|
|
3662
|
-
hidden?: boolean | undefined;
|
|
3663
|
-
value: string;
|
|
3664
|
-
type: "unparsed";
|
|
3665
|
-
})[];
|
|
3666
|
-
type: "tuple";
|
|
3667
|
-
})[];
|
|
3668
|
-
type: "layers";
|
|
3669
|
-
})[];
|
|
3670
|
-
}>;
|
|
3671
|
-
}, {
|
|
3672
|
-
breakpoint?: string | undefined;
|
|
3673
|
-
style: Record<string, {
|
|
3674
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3675
|
-
value: number;
|
|
3676
|
-
type: "unit";
|
|
3677
|
-
} | {
|
|
3678
|
-
value: string;
|
|
3679
|
-
type: "keyword";
|
|
3680
|
-
} | {
|
|
3681
|
-
hidden?: boolean | undefined;
|
|
3682
|
-
value: string;
|
|
3683
|
-
type: "unparsed";
|
|
3684
|
-
} | {
|
|
3685
|
-
value: string[];
|
|
3686
|
-
type: "fontFamily";
|
|
3687
|
-
} | {
|
|
3688
|
-
alpha: number;
|
|
3689
|
-
type: "rgb";
|
|
3690
|
-
r: number;
|
|
3691
|
-
g: number;
|
|
3692
|
-
b: number;
|
|
3693
|
-
} | {
|
|
3694
|
-
hidden?: boolean | undefined;
|
|
3695
|
-
value: {
|
|
3696
|
-
value: string;
|
|
3697
|
-
type: "asset";
|
|
3698
|
-
} | {
|
|
3699
|
-
type: "url";
|
|
3700
|
-
url: string;
|
|
3701
|
-
};
|
|
3702
|
-
type: "image";
|
|
3703
|
-
} | {
|
|
3704
|
-
value: string;
|
|
3705
|
-
type: "invalid";
|
|
3706
|
-
} | {
|
|
3707
|
-
value: "";
|
|
3708
|
-
type: "unset";
|
|
3709
|
-
} | {
|
|
3710
|
-
value: ({
|
|
3711
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3712
|
-
value: number;
|
|
3713
|
-
type: "unit";
|
|
3714
|
-
} | {
|
|
3715
|
-
value: string;
|
|
3716
|
-
type: "keyword";
|
|
3717
|
-
} | {
|
|
3718
|
-
hidden?: boolean | undefined;
|
|
3719
|
-
value: string;
|
|
3720
|
-
type: "unparsed";
|
|
3721
|
-
})[];
|
|
3722
|
-
type: "tuple";
|
|
3723
|
-
} | {
|
|
3724
|
-
value: ({
|
|
3725
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3726
|
-
value: number;
|
|
3727
|
-
type: "unit";
|
|
3728
|
-
} | {
|
|
3729
|
-
value: string;
|
|
3730
|
-
type: "keyword";
|
|
3731
|
-
} | {
|
|
3732
|
-
hidden?: boolean | undefined;
|
|
3733
|
-
value: string;
|
|
3734
|
-
type: "unparsed";
|
|
3735
|
-
} | {
|
|
3736
|
-
hidden?: boolean | undefined;
|
|
3737
|
-
value: {
|
|
3738
|
-
value: string;
|
|
3739
|
-
type: "asset";
|
|
3740
|
-
} | {
|
|
3741
|
-
type: "url";
|
|
3742
|
-
url: string;
|
|
3743
|
-
};
|
|
3744
|
-
type: "image";
|
|
3745
|
-
} | {
|
|
3746
|
-
value: string;
|
|
3747
|
-
type: "invalid";
|
|
3748
|
-
} | {
|
|
3749
|
-
value: ({
|
|
3750
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3751
|
-
value: number;
|
|
3752
|
-
type: "unit";
|
|
3753
|
-
} | {
|
|
3754
|
-
value: string;
|
|
3755
|
-
type: "keyword";
|
|
3756
|
-
} | {
|
|
3757
|
-
hidden?: boolean | undefined;
|
|
3758
|
-
value: string;
|
|
3759
|
-
type: "unparsed";
|
|
3760
|
-
})[];
|
|
3761
|
-
type: "tuple";
|
|
3762
|
-
})[];
|
|
3763
|
-
type: "layers";
|
|
3764
|
-
} | {
|
|
3765
|
-
value: string;
|
|
3766
|
-
type: "var";
|
|
3767
|
-
fallbacks: ({
|
|
3768
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3769
|
-
value: number;
|
|
3770
|
-
type: "unit";
|
|
3771
|
-
} | {
|
|
3772
|
-
value: string;
|
|
3773
|
-
type: "keyword";
|
|
3774
|
-
} | {
|
|
3775
|
-
hidden?: boolean | undefined;
|
|
3776
|
-
value: string;
|
|
3777
|
-
type: "unparsed";
|
|
3778
|
-
} | {
|
|
3779
|
-
value: string[];
|
|
3780
|
-
type: "fontFamily";
|
|
3781
|
-
} | {
|
|
3782
|
-
alpha: number;
|
|
3783
|
-
type: "rgb";
|
|
3784
|
-
r: number;
|
|
3785
|
-
g: number;
|
|
3786
|
-
b: number;
|
|
3787
|
-
} | {
|
|
3788
|
-
hidden?: boolean | undefined;
|
|
3789
|
-
value: {
|
|
3790
|
-
value: string;
|
|
3791
|
-
type: "asset";
|
|
3792
|
-
} | {
|
|
3793
|
-
type: "url";
|
|
3794
|
-
url: string;
|
|
3795
|
-
};
|
|
3796
|
-
type: "image";
|
|
3797
|
-
} | {
|
|
3798
|
-
value: ({
|
|
3799
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3800
|
-
value: number;
|
|
3801
|
-
type: "unit";
|
|
3802
|
-
} | {
|
|
3803
|
-
value: string;
|
|
3804
|
-
type: "keyword";
|
|
3805
|
-
} | {
|
|
3806
|
-
hidden?: boolean | undefined;
|
|
3807
|
-
value: string;
|
|
3808
|
-
type: "unparsed";
|
|
3809
|
-
})[];
|
|
3810
|
-
type: "tuple";
|
|
3811
|
-
} | {
|
|
3812
|
-
value: ({
|
|
3813
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3814
|
-
value: number;
|
|
3815
|
-
type: "unit";
|
|
3816
|
-
} | {
|
|
3817
|
-
value: string;
|
|
3818
|
-
type: "keyword";
|
|
3819
|
-
} | {
|
|
3820
|
-
hidden?: boolean | undefined;
|
|
3821
|
-
value: string;
|
|
3822
|
-
type: "unparsed";
|
|
3823
|
-
} | {
|
|
3824
|
-
hidden?: boolean | undefined;
|
|
3825
|
-
value: {
|
|
3826
|
-
value: string;
|
|
3827
|
-
type: "asset";
|
|
3828
|
-
} | {
|
|
3829
|
-
type: "url";
|
|
3830
|
-
url: string;
|
|
3831
|
-
};
|
|
3832
|
-
type: "image";
|
|
3833
|
-
} | {
|
|
3834
|
-
value: string;
|
|
3835
|
-
type: "invalid";
|
|
3836
|
-
} | {
|
|
3837
|
-
value: ({
|
|
3838
|
-
unit: "number" | "x" | "s" | "%" | "px" | "dppx" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "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" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "st" | "ms";
|
|
3839
|
-
value: number;
|
|
3840
|
-
type: "unit";
|
|
3841
|
-
} | {
|
|
3842
|
-
value: string;
|
|
3843
|
-
type: "keyword";
|
|
3844
|
-
} | {
|
|
3845
|
-
hidden?: boolean | undefined;
|
|
3846
|
-
value: string;
|
|
3847
|
-
type: "unparsed";
|
|
3848
|
-
})[];
|
|
3849
|
-
type: "tuple";
|
|
3850
|
-
})[];
|
|
3851
|
-
type: "layers";
|
|
3852
|
-
})[];
|
|
3853
|
-
}>;
|
|
3854
|
-
}>;
|
|
3855
|
-
export type CssRule = z.infer<typeof CssRule>;
|
|
3856
2572
|
export {};
|