@cntrl-site/sdk 1.23.2 → 1.24.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.
@@ -857,36 +857,256 @@ export declare const MediaStateParamsSchema: z.ZodObject<{
857
857
  delay: number;
858
858
  };
859
859
  }>>;
860
- strokeColor: z.ZodOptional<z.ZodObject<{
861
- value: z.ZodString;
862
- in: z.ZodObject<{
863
- timing: z.ZodString;
864
- duration: z.ZodNumber;
865
- delay: z.ZodNumber;
866
- }, "strip", z.ZodTypeAny, {
867
- timing: string;
868
- duration: number;
869
- delay: number;
870
- }, {
871
- timing: string;
872
- duration: number;
873
- delay: number;
874
- }>;
875
- out: z.ZodObject<{
876
- timing: z.ZodString;
877
- duration: z.ZodNumber;
878
- delay: z.ZodNumber;
879
- }, "strip", z.ZodTypeAny, {
880
- timing: string;
881
- duration: number;
882
- delay: number;
883
- }, {
884
- timing: string;
885
- duration: number;
886
- delay: number;
887
- }>;
888
- }, "strip", z.ZodTypeAny, {
889
- value: string;
860
+ strokeFill: z.ZodOptional<z.ZodObject<{
861
+ value: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
862
+ id: z.ZodString;
863
+ type: z.ZodLiteral<"solid">;
864
+ value: z.ZodString;
865
+ blendMode: z.ZodString;
866
+ }, "strip", z.ZodTypeAny, {
867
+ id: string;
868
+ value: string;
869
+ type: "solid";
870
+ blendMode: string;
871
+ }, {
872
+ id: string;
873
+ value: string;
874
+ type: "solid";
875
+ blendMode: string;
876
+ }>, z.ZodObject<{
877
+ id: z.ZodString;
878
+ type: z.ZodLiteral<"linear-gradient">;
879
+ colors: z.ZodArray<z.ZodObject<{
880
+ id: z.ZodString;
881
+ value: z.ZodString;
882
+ position: z.ZodNumber;
883
+ }, "strip", z.ZodTypeAny, {
884
+ position: number;
885
+ id: string;
886
+ value: string;
887
+ }, {
888
+ position: number;
889
+ id: string;
890
+ value: string;
891
+ }>, "many">;
892
+ start: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
893
+ end: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
894
+ angle: z.ZodNumber;
895
+ blendMode: z.ZodString;
896
+ }, "strip", z.ZodTypeAny, {
897
+ id: string;
898
+ type: "linear-gradient";
899
+ blendMode: string;
900
+ colors: {
901
+ position: number;
902
+ id: string;
903
+ value: string;
904
+ }[];
905
+ start: [number, number];
906
+ end: [number, number];
907
+ angle: number;
908
+ }, {
909
+ id: string;
910
+ type: "linear-gradient";
911
+ blendMode: string;
912
+ colors: {
913
+ position: number;
914
+ id: string;
915
+ value: string;
916
+ }[];
917
+ start: [number, number];
918
+ end: [number, number];
919
+ angle: number;
920
+ }>, z.ZodObject<{
921
+ id: z.ZodString;
922
+ type: z.ZodLiteral<"radial-gradient">;
923
+ colors: z.ZodArray<z.ZodObject<{
924
+ id: z.ZodString;
925
+ value: z.ZodString;
926
+ position: z.ZodNumber;
927
+ }, "strip", z.ZodTypeAny, {
928
+ position: number;
929
+ id: string;
930
+ value: string;
931
+ }, {
932
+ position: number;
933
+ id: string;
934
+ value: string;
935
+ }>, "many">;
936
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
937
+ diameter: z.ZodNumber;
938
+ angle: z.ZodNumber;
939
+ blendMode: z.ZodString;
940
+ }, "strip", z.ZodTypeAny, {
941
+ center: [number, number];
942
+ id: string;
943
+ type: "radial-gradient";
944
+ blendMode: string;
945
+ colors: {
946
+ position: number;
947
+ id: string;
948
+ value: string;
949
+ }[];
950
+ angle: number;
951
+ diameter: number;
952
+ }, {
953
+ center: [number, number];
954
+ id: string;
955
+ type: "radial-gradient";
956
+ blendMode: string;
957
+ colors: {
958
+ position: number;
959
+ id: string;
960
+ value: string;
961
+ }[];
962
+ angle: number;
963
+ diameter: number;
964
+ }>, z.ZodObject<{
965
+ id: z.ZodString;
966
+ type: z.ZodLiteral<"conic-gradient">;
967
+ colors: z.ZodArray<z.ZodObject<{
968
+ id: z.ZodString;
969
+ value: z.ZodString;
970
+ position: z.ZodNumber;
971
+ }, "strip", z.ZodTypeAny, {
972
+ position: number;
973
+ id: string;
974
+ value: string;
975
+ }, {
976
+ position: number;
977
+ id: string;
978
+ value: string;
979
+ }>, "many">;
980
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
981
+ angle: z.ZodNumber;
982
+ blendMode: z.ZodString;
983
+ }, "strip", z.ZodTypeAny, {
984
+ center: [number, number];
985
+ id: string;
986
+ type: "conic-gradient";
987
+ blendMode: string;
988
+ colors: {
989
+ position: number;
990
+ id: string;
991
+ value: string;
992
+ }[];
993
+ angle: number;
994
+ }, {
995
+ center: [number, number];
996
+ id: string;
997
+ type: "conic-gradient";
998
+ blendMode: string;
999
+ colors: {
1000
+ position: number;
1001
+ id: string;
1002
+ value: string;
1003
+ }[];
1004
+ angle: number;
1005
+ }>, z.ZodObject<{
1006
+ id: z.ZodString;
1007
+ type: z.ZodLiteral<"image">;
1008
+ src: z.ZodString;
1009
+ behavior: z.ZodString;
1010
+ backgroundSize: z.ZodNumber;
1011
+ opacity: z.ZodNumber;
1012
+ blendMode: z.ZodString;
1013
+ rotation: z.ZodOptional<z.ZodNumber>;
1014
+ }, "strip", z.ZodTypeAny, {
1015
+ opacity: number;
1016
+ id: string;
1017
+ type: "image";
1018
+ blendMode: string;
1019
+ src: string;
1020
+ behavior: string;
1021
+ backgroundSize: number;
1022
+ rotation?: number | undefined;
1023
+ }, {
1024
+ opacity: number;
1025
+ id: string;
1026
+ type: "image";
1027
+ blendMode: string;
1028
+ src: string;
1029
+ behavior: string;
1030
+ backgroundSize: number;
1031
+ rotation?: number | undefined;
1032
+ }>]>, "many">;
1033
+ in: z.ZodObject<{
1034
+ timing: z.ZodString;
1035
+ duration: z.ZodNumber;
1036
+ delay: z.ZodNumber;
1037
+ }, "strip", z.ZodTypeAny, {
1038
+ timing: string;
1039
+ duration: number;
1040
+ delay: number;
1041
+ }, {
1042
+ timing: string;
1043
+ duration: number;
1044
+ delay: number;
1045
+ }>;
1046
+ out: z.ZodObject<{
1047
+ timing: z.ZodString;
1048
+ duration: z.ZodNumber;
1049
+ delay: z.ZodNumber;
1050
+ }, "strip", z.ZodTypeAny, {
1051
+ timing: string;
1052
+ duration: number;
1053
+ delay: number;
1054
+ }, {
1055
+ timing: string;
1056
+ duration: number;
1057
+ delay: number;
1058
+ }>;
1059
+ }, "strip", z.ZodTypeAny, {
1060
+ value: ({
1061
+ id: string;
1062
+ value: string;
1063
+ type: "solid";
1064
+ blendMode: string;
1065
+ } | {
1066
+ id: string;
1067
+ type: "linear-gradient";
1068
+ blendMode: string;
1069
+ colors: {
1070
+ position: number;
1071
+ id: string;
1072
+ value: string;
1073
+ }[];
1074
+ start: [number, number];
1075
+ end: [number, number];
1076
+ angle: number;
1077
+ } | {
1078
+ center: [number, number];
1079
+ id: string;
1080
+ type: "radial-gradient";
1081
+ blendMode: string;
1082
+ colors: {
1083
+ position: number;
1084
+ id: string;
1085
+ value: string;
1086
+ }[];
1087
+ angle: number;
1088
+ diameter: number;
1089
+ } | {
1090
+ center: [number, number];
1091
+ id: string;
1092
+ type: "conic-gradient";
1093
+ blendMode: string;
1094
+ colors: {
1095
+ position: number;
1096
+ id: string;
1097
+ value: string;
1098
+ }[];
1099
+ angle: number;
1100
+ } | {
1101
+ opacity: number;
1102
+ id: string;
1103
+ type: "image";
1104
+ blendMode: string;
1105
+ src: string;
1106
+ behavior: string;
1107
+ backgroundSize: number;
1108
+ rotation?: number | undefined;
1109
+ })[];
890
1110
  in: {
891
1111
  timing: string;
892
1112
  duration: number;
@@ -898,7 +1118,56 @@ export declare const MediaStateParamsSchema: z.ZodObject<{
898
1118
  delay: number;
899
1119
  };
900
1120
  }, {
901
- value: string;
1121
+ value: ({
1122
+ id: string;
1123
+ value: string;
1124
+ type: "solid";
1125
+ blendMode: string;
1126
+ } | {
1127
+ id: string;
1128
+ type: "linear-gradient";
1129
+ blendMode: string;
1130
+ colors: {
1131
+ position: number;
1132
+ id: string;
1133
+ value: string;
1134
+ }[];
1135
+ start: [number, number];
1136
+ end: [number, number];
1137
+ angle: number;
1138
+ } | {
1139
+ center: [number, number];
1140
+ id: string;
1141
+ type: "radial-gradient";
1142
+ blendMode: string;
1143
+ colors: {
1144
+ position: number;
1145
+ id: string;
1146
+ value: string;
1147
+ }[];
1148
+ angle: number;
1149
+ diameter: number;
1150
+ } | {
1151
+ center: [number, number];
1152
+ id: string;
1153
+ type: "conic-gradient";
1154
+ blendMode: string;
1155
+ colors: {
1156
+ position: number;
1157
+ id: string;
1158
+ value: string;
1159
+ }[];
1160
+ angle: number;
1161
+ } | {
1162
+ opacity: number;
1163
+ id: string;
1164
+ type: "image";
1165
+ blendMode: string;
1166
+ src: string;
1167
+ behavior: string;
1168
+ backgroundSize: number;
1169
+ rotation?: number | undefined;
1170
+ })[];
902
1171
  in: {
903
1172
  timing: string;
904
1173
  duration: number;
@@ -1321,8 +1590,57 @@ export declare const MediaStateParamsSchema: z.ZodObject<{
1321
1590
  delay: number;
1322
1591
  };
1323
1592
  } | undefined;
1324
- strokeColor?: {
1325
- value: string;
1593
+ strokeFill?: {
1594
+ value: ({
1595
+ id: string;
1596
+ value: string;
1597
+ type: "solid";
1598
+ blendMode: string;
1599
+ } | {
1600
+ id: string;
1601
+ type: "linear-gradient";
1602
+ blendMode: string;
1603
+ colors: {
1604
+ position: number;
1605
+ id: string;
1606
+ value: string;
1607
+ }[];
1608
+ start: [number, number];
1609
+ end: [number, number];
1610
+ angle: number;
1611
+ } | {
1612
+ center: [number, number];
1613
+ id: string;
1614
+ type: "radial-gradient";
1615
+ blendMode: string;
1616
+ colors: {
1617
+ position: number;
1618
+ id: string;
1619
+ value: string;
1620
+ }[];
1621
+ angle: number;
1622
+ diameter: number;
1623
+ } | {
1624
+ center: [number, number];
1625
+ id: string;
1626
+ type: "conic-gradient";
1627
+ blendMode: string;
1628
+ colors: {
1629
+ position: number;
1630
+ id: string;
1631
+ value: string;
1632
+ }[];
1633
+ angle: number;
1634
+ } | {
1635
+ opacity: number;
1636
+ id: string;
1637
+ type: "image";
1638
+ blendMode: string;
1639
+ src: string;
1640
+ behavior: string;
1641
+ backgroundSize: number;
1642
+ rotation?: number | undefined;
1643
+ })[];
1326
1644
  in: {
1327
1645
  timing: string;
1328
1646
  duration: number;
@@ -1465,8 +1783,57 @@ export declare const MediaStateParamsSchema: z.ZodObject<{
1465
1783
  delay: number;
1466
1784
  };
1467
1785
  } | undefined;
1468
- strokeColor?: {
1469
- value: string;
1786
+ strokeFill?: {
1787
+ value: ({
1788
+ id: string;
1789
+ value: string;
1790
+ type: "solid";
1791
+ blendMode: string;
1792
+ } | {
1793
+ id: string;
1794
+ type: "linear-gradient";
1795
+ blendMode: string;
1796
+ colors: {
1797
+ position: number;
1798
+ id: string;
1799
+ value: string;
1800
+ }[];
1801
+ start: [number, number];
1802
+ end: [number, number];
1803
+ angle: number;
1804
+ } | {
1805
+ center: [number, number];
1806
+ id: string;
1807
+ type: "radial-gradient";
1808
+ blendMode: string;
1809
+ colors: {
1810
+ position: number;
1811
+ id: string;
1812
+ value: string;
1813
+ }[];
1814
+ angle: number;
1815
+ diameter: number;
1816
+ } | {
1817
+ center: [number, number];
1818
+ id: string;
1819
+ type: "conic-gradient";
1820
+ blendMode: string;
1821
+ colors: {
1822
+ position: number;
1823
+ id: string;
1824
+ value: string;
1825
+ }[];
1826
+ angle: number;
1827
+ } | {
1828
+ opacity: number;
1829
+ id: string;
1830
+ type: "image";
1831
+ blendMode: string;
1832
+ src: string;
1833
+ behavior: string;
1834
+ backgroundSize: number;
1835
+ rotation?: number | undefined;
1836
+ })[];
1470
1837
  in: {
1471
1838
  timing: string;
1472
1839
  duration: number;
@@ -1677,36 +2044,256 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
1677
2044
  delay: number;
1678
2045
  };
1679
2046
  }>>;
1680
- strokeColor: z.ZodOptional<z.ZodObject<{
1681
- value: z.ZodString;
1682
- in: z.ZodObject<{
1683
- timing: z.ZodString;
1684
- duration: z.ZodNumber;
1685
- delay: z.ZodNumber;
2047
+ strokeFill: z.ZodOptional<z.ZodObject<{
2048
+ value: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2049
+ id: z.ZodString;
2050
+ type: z.ZodLiteral<"solid">;
2051
+ value: z.ZodString;
2052
+ blendMode: z.ZodString;
1686
2053
  }, "strip", z.ZodTypeAny, {
1687
- timing: string;
1688
- duration: number;
1689
- delay: number;
2054
+ id: string;
2055
+ value: string;
2056
+ type: "solid";
2057
+ blendMode: string;
1690
2058
  }, {
1691
- timing: string;
1692
- duration: number;
1693
- delay: number;
1694
- }>;
1695
- out: z.ZodObject<{
1696
- timing: z.ZodString;
1697
- duration: z.ZodNumber;
1698
- delay: z.ZodNumber;
2059
+ id: string;
2060
+ value: string;
2061
+ type: "solid";
2062
+ blendMode: string;
2063
+ }>, z.ZodObject<{
2064
+ id: z.ZodString;
2065
+ type: z.ZodLiteral<"linear-gradient">;
2066
+ colors: z.ZodArray<z.ZodObject<{
2067
+ id: z.ZodString;
2068
+ value: z.ZodString;
2069
+ position: z.ZodNumber;
2070
+ }, "strip", z.ZodTypeAny, {
2071
+ position: number;
2072
+ id: string;
2073
+ value: string;
2074
+ }, {
2075
+ position: number;
2076
+ id: string;
2077
+ value: string;
2078
+ }>, "many">;
2079
+ start: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2080
+ end: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2081
+ angle: z.ZodNumber;
2082
+ blendMode: z.ZodString;
1699
2083
  }, "strip", z.ZodTypeAny, {
1700
- timing: string;
1701
- duration: number;
1702
- delay: number;
2084
+ id: string;
2085
+ type: "linear-gradient";
2086
+ blendMode: string;
2087
+ colors: {
2088
+ position: number;
2089
+ id: string;
2090
+ value: string;
2091
+ }[];
2092
+ start: [number, number];
2093
+ end: [number, number];
2094
+ angle: number;
1703
2095
  }, {
1704
- timing: string;
1705
- duration: number;
1706
- delay: number;
1707
- }>;
1708
- }, "strip", z.ZodTypeAny, {
1709
- value: string;
2096
+ id: string;
2097
+ type: "linear-gradient";
2098
+ blendMode: string;
2099
+ colors: {
2100
+ position: number;
2101
+ id: string;
2102
+ value: string;
2103
+ }[];
2104
+ start: [number, number];
2105
+ end: [number, number];
2106
+ angle: number;
2107
+ }>, z.ZodObject<{
2108
+ id: z.ZodString;
2109
+ type: z.ZodLiteral<"radial-gradient">;
2110
+ colors: z.ZodArray<z.ZodObject<{
2111
+ id: z.ZodString;
2112
+ value: z.ZodString;
2113
+ position: z.ZodNumber;
2114
+ }, "strip", z.ZodTypeAny, {
2115
+ position: number;
2116
+ id: string;
2117
+ value: string;
2118
+ }, {
2119
+ position: number;
2120
+ id: string;
2121
+ value: string;
2122
+ }>, "many">;
2123
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2124
+ diameter: z.ZodNumber;
2125
+ angle: z.ZodNumber;
2126
+ blendMode: z.ZodString;
2127
+ }, "strip", z.ZodTypeAny, {
2128
+ center: [number, number];
2129
+ id: string;
2130
+ type: "radial-gradient";
2131
+ blendMode: string;
2132
+ colors: {
2133
+ position: number;
2134
+ id: string;
2135
+ value: string;
2136
+ }[];
2137
+ angle: number;
2138
+ diameter: number;
2139
+ }, {
2140
+ center: [number, number];
2141
+ id: string;
2142
+ type: "radial-gradient";
2143
+ blendMode: string;
2144
+ colors: {
2145
+ position: number;
2146
+ id: string;
2147
+ value: string;
2148
+ }[];
2149
+ angle: number;
2150
+ diameter: number;
2151
+ }>, z.ZodObject<{
2152
+ id: z.ZodString;
2153
+ type: z.ZodLiteral<"conic-gradient">;
2154
+ colors: z.ZodArray<z.ZodObject<{
2155
+ id: z.ZodString;
2156
+ value: z.ZodString;
2157
+ position: z.ZodNumber;
2158
+ }, "strip", z.ZodTypeAny, {
2159
+ position: number;
2160
+ id: string;
2161
+ value: string;
2162
+ }, {
2163
+ position: number;
2164
+ id: string;
2165
+ value: string;
2166
+ }>, "many">;
2167
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2168
+ angle: z.ZodNumber;
2169
+ blendMode: z.ZodString;
2170
+ }, "strip", z.ZodTypeAny, {
2171
+ center: [number, number];
2172
+ id: string;
2173
+ type: "conic-gradient";
2174
+ blendMode: string;
2175
+ colors: {
2176
+ position: number;
2177
+ id: string;
2178
+ value: string;
2179
+ }[];
2180
+ angle: number;
2181
+ }, {
2182
+ center: [number, number];
2183
+ id: string;
2184
+ type: "conic-gradient";
2185
+ blendMode: string;
2186
+ colors: {
2187
+ position: number;
2188
+ id: string;
2189
+ value: string;
2190
+ }[];
2191
+ angle: number;
2192
+ }>, z.ZodObject<{
2193
+ id: z.ZodString;
2194
+ type: z.ZodLiteral<"image">;
2195
+ src: z.ZodString;
2196
+ behavior: z.ZodString;
2197
+ backgroundSize: z.ZodNumber;
2198
+ opacity: z.ZodNumber;
2199
+ blendMode: z.ZodString;
2200
+ rotation: z.ZodOptional<z.ZodNumber>;
2201
+ }, "strip", z.ZodTypeAny, {
2202
+ opacity: number;
2203
+ id: string;
2204
+ type: "image";
2205
+ blendMode: string;
2206
+ src: string;
2207
+ behavior: string;
2208
+ backgroundSize: number;
2209
+ rotation?: number | undefined;
2210
+ }, {
2211
+ opacity: number;
2212
+ id: string;
2213
+ type: "image";
2214
+ blendMode: string;
2215
+ src: string;
2216
+ behavior: string;
2217
+ backgroundSize: number;
2218
+ rotation?: number | undefined;
2219
+ }>]>, "many">;
2220
+ in: z.ZodObject<{
2221
+ timing: z.ZodString;
2222
+ duration: z.ZodNumber;
2223
+ delay: z.ZodNumber;
2224
+ }, "strip", z.ZodTypeAny, {
2225
+ timing: string;
2226
+ duration: number;
2227
+ delay: number;
2228
+ }, {
2229
+ timing: string;
2230
+ duration: number;
2231
+ delay: number;
2232
+ }>;
2233
+ out: z.ZodObject<{
2234
+ timing: z.ZodString;
2235
+ duration: z.ZodNumber;
2236
+ delay: z.ZodNumber;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ timing: string;
2239
+ duration: number;
2240
+ delay: number;
2241
+ }, {
2242
+ timing: string;
2243
+ duration: number;
2244
+ delay: number;
2245
+ }>;
2246
+ }, "strip", z.ZodTypeAny, {
2247
+ value: ({
2248
+ id: string;
2249
+ value: string;
2250
+ type: "solid";
2251
+ blendMode: string;
2252
+ } | {
2253
+ id: string;
2254
+ type: "linear-gradient";
2255
+ blendMode: string;
2256
+ colors: {
2257
+ position: number;
2258
+ id: string;
2259
+ value: string;
2260
+ }[];
2261
+ start: [number, number];
2262
+ end: [number, number];
2263
+ angle: number;
2264
+ } | {
2265
+ center: [number, number];
2266
+ id: string;
2267
+ type: "radial-gradient";
2268
+ blendMode: string;
2269
+ colors: {
2270
+ position: number;
2271
+ id: string;
2272
+ value: string;
2273
+ }[];
2274
+ angle: number;
2275
+ diameter: number;
2276
+ } | {
2277
+ center: [number, number];
2278
+ id: string;
2279
+ type: "conic-gradient";
2280
+ blendMode: string;
2281
+ colors: {
2282
+ position: number;
2283
+ id: string;
2284
+ value: string;
2285
+ }[];
2286
+ angle: number;
2287
+ } | {
2288
+ opacity: number;
2289
+ id: string;
2290
+ type: "image";
2291
+ blendMode: string;
2292
+ src: string;
2293
+ behavior: string;
2294
+ backgroundSize: number;
2295
+ rotation?: number | undefined;
2296
+ })[];
1710
2297
  in: {
1711
2298
  timing: string;
1712
2299
  duration: number;
@@ -1718,48 +2305,317 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
1718
2305
  delay: number;
1719
2306
  };
1720
2307
  }, {
1721
- value: string;
1722
- in: {
1723
- timing: string;
1724
- duration: number;
1725
- delay: number;
1726
- };
1727
- out: {
1728
- timing: string;
1729
- duration: number;
1730
- delay: number;
1731
- };
1732
- }>>;
1733
- fillColor: z.ZodOptional<z.ZodObject<{
1734
- value: z.ZodString;
1735
- in: z.ZodObject<{
1736
- timing: z.ZodString;
1737
- duration: z.ZodNumber;
1738
- delay: z.ZodNumber;
1739
- }, "strip", z.ZodTypeAny, {
1740
- timing: string;
1741
- duration: number;
1742
- delay: number;
1743
- }, {
1744
- timing: string;
1745
- duration: number;
1746
- delay: number;
1747
- }>;
1748
- out: z.ZodObject<{
1749
- timing: z.ZodString;
1750
- duration: z.ZodNumber;
1751
- delay: z.ZodNumber;
1752
- }, "strip", z.ZodTypeAny, {
1753
- timing: string;
1754
- duration: number;
1755
- delay: number;
1756
- }, {
1757
- timing: string;
1758
- duration: number;
1759
- delay: number;
1760
- }>;
1761
- }, "strip", z.ZodTypeAny, {
1762
- value: string;
2308
+ value: ({
2309
+ id: string;
2310
+ value: string;
2311
+ type: "solid";
2312
+ blendMode: string;
2313
+ } | {
2314
+ id: string;
2315
+ type: "linear-gradient";
2316
+ blendMode: string;
2317
+ colors: {
2318
+ position: number;
2319
+ id: string;
2320
+ value: string;
2321
+ }[];
2322
+ start: [number, number];
2323
+ end: [number, number];
2324
+ angle: number;
2325
+ } | {
2326
+ center: [number, number];
2327
+ id: string;
2328
+ type: "radial-gradient";
2329
+ blendMode: string;
2330
+ colors: {
2331
+ position: number;
2332
+ id: string;
2333
+ value: string;
2334
+ }[];
2335
+ angle: number;
2336
+ diameter: number;
2337
+ } | {
2338
+ center: [number, number];
2339
+ id: string;
2340
+ type: "conic-gradient";
2341
+ blendMode: string;
2342
+ colors: {
2343
+ position: number;
2344
+ id: string;
2345
+ value: string;
2346
+ }[];
2347
+ angle: number;
2348
+ } | {
2349
+ opacity: number;
2350
+ id: string;
2351
+ type: "image";
2352
+ blendMode: string;
2353
+ src: string;
2354
+ behavior: string;
2355
+ backgroundSize: number;
2356
+ rotation?: number | undefined;
2357
+ })[];
2358
+ in: {
2359
+ timing: string;
2360
+ duration: number;
2361
+ delay: number;
2362
+ };
2363
+ out: {
2364
+ timing: string;
2365
+ duration: number;
2366
+ delay: number;
2367
+ };
2368
+ }>>;
2369
+ fill: z.ZodOptional<z.ZodObject<{
2370
+ value: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2371
+ id: z.ZodString;
2372
+ type: z.ZodLiteral<"solid">;
2373
+ value: z.ZodString;
2374
+ blendMode: z.ZodString;
2375
+ }, "strip", z.ZodTypeAny, {
2376
+ id: string;
2377
+ value: string;
2378
+ type: "solid";
2379
+ blendMode: string;
2380
+ }, {
2381
+ id: string;
2382
+ value: string;
2383
+ type: "solid";
2384
+ blendMode: string;
2385
+ }>, z.ZodObject<{
2386
+ id: z.ZodString;
2387
+ type: z.ZodLiteral<"linear-gradient">;
2388
+ colors: z.ZodArray<z.ZodObject<{
2389
+ id: z.ZodString;
2390
+ value: z.ZodString;
2391
+ position: z.ZodNumber;
2392
+ }, "strip", z.ZodTypeAny, {
2393
+ position: number;
2394
+ id: string;
2395
+ value: string;
2396
+ }, {
2397
+ position: number;
2398
+ id: string;
2399
+ value: string;
2400
+ }>, "many">;
2401
+ start: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2402
+ end: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2403
+ angle: z.ZodNumber;
2404
+ blendMode: z.ZodString;
2405
+ }, "strip", z.ZodTypeAny, {
2406
+ id: string;
2407
+ type: "linear-gradient";
2408
+ blendMode: string;
2409
+ colors: {
2410
+ position: number;
2411
+ id: string;
2412
+ value: string;
2413
+ }[];
2414
+ start: [number, number];
2415
+ end: [number, number];
2416
+ angle: number;
2417
+ }, {
2418
+ id: string;
2419
+ type: "linear-gradient";
2420
+ blendMode: string;
2421
+ colors: {
2422
+ position: number;
2423
+ id: string;
2424
+ value: string;
2425
+ }[];
2426
+ start: [number, number];
2427
+ end: [number, number];
2428
+ angle: number;
2429
+ }>, z.ZodObject<{
2430
+ id: z.ZodString;
2431
+ type: z.ZodLiteral<"radial-gradient">;
2432
+ colors: z.ZodArray<z.ZodObject<{
2433
+ id: z.ZodString;
2434
+ value: z.ZodString;
2435
+ position: z.ZodNumber;
2436
+ }, "strip", z.ZodTypeAny, {
2437
+ position: number;
2438
+ id: string;
2439
+ value: string;
2440
+ }, {
2441
+ position: number;
2442
+ id: string;
2443
+ value: string;
2444
+ }>, "many">;
2445
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2446
+ diameter: z.ZodNumber;
2447
+ angle: z.ZodNumber;
2448
+ blendMode: z.ZodString;
2449
+ }, "strip", z.ZodTypeAny, {
2450
+ center: [number, number];
2451
+ id: string;
2452
+ type: "radial-gradient";
2453
+ blendMode: string;
2454
+ colors: {
2455
+ position: number;
2456
+ id: string;
2457
+ value: string;
2458
+ }[];
2459
+ angle: number;
2460
+ diameter: number;
2461
+ }, {
2462
+ center: [number, number];
2463
+ id: string;
2464
+ type: "radial-gradient";
2465
+ blendMode: string;
2466
+ colors: {
2467
+ position: number;
2468
+ id: string;
2469
+ value: string;
2470
+ }[];
2471
+ angle: number;
2472
+ diameter: number;
2473
+ }>, z.ZodObject<{
2474
+ id: z.ZodString;
2475
+ type: z.ZodLiteral<"conic-gradient">;
2476
+ colors: z.ZodArray<z.ZodObject<{
2477
+ id: z.ZodString;
2478
+ value: z.ZodString;
2479
+ position: z.ZodNumber;
2480
+ }, "strip", z.ZodTypeAny, {
2481
+ position: number;
2482
+ id: string;
2483
+ value: string;
2484
+ }, {
2485
+ position: number;
2486
+ id: string;
2487
+ value: string;
2488
+ }>, "many">;
2489
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2490
+ angle: z.ZodNumber;
2491
+ blendMode: z.ZodString;
2492
+ }, "strip", z.ZodTypeAny, {
2493
+ center: [number, number];
2494
+ id: string;
2495
+ type: "conic-gradient";
2496
+ blendMode: string;
2497
+ colors: {
2498
+ position: number;
2499
+ id: string;
2500
+ value: string;
2501
+ }[];
2502
+ angle: number;
2503
+ }, {
2504
+ center: [number, number];
2505
+ id: string;
2506
+ type: "conic-gradient";
2507
+ blendMode: string;
2508
+ colors: {
2509
+ position: number;
2510
+ id: string;
2511
+ value: string;
2512
+ }[];
2513
+ angle: number;
2514
+ }>, z.ZodObject<{
2515
+ id: z.ZodString;
2516
+ type: z.ZodLiteral<"image">;
2517
+ src: z.ZodString;
2518
+ behavior: z.ZodString;
2519
+ backgroundSize: z.ZodNumber;
2520
+ opacity: z.ZodNumber;
2521
+ blendMode: z.ZodString;
2522
+ rotation: z.ZodOptional<z.ZodNumber>;
2523
+ }, "strip", z.ZodTypeAny, {
2524
+ opacity: number;
2525
+ id: string;
2526
+ type: "image";
2527
+ blendMode: string;
2528
+ src: string;
2529
+ behavior: string;
2530
+ backgroundSize: number;
2531
+ rotation?: number | undefined;
2532
+ }, {
2533
+ opacity: number;
2534
+ id: string;
2535
+ type: "image";
2536
+ blendMode: string;
2537
+ src: string;
2538
+ behavior: string;
2539
+ backgroundSize: number;
2540
+ rotation?: number | undefined;
2541
+ }>]>, "many">;
2542
+ in: z.ZodObject<{
2543
+ timing: z.ZodString;
2544
+ duration: z.ZodNumber;
2545
+ delay: z.ZodNumber;
2546
+ }, "strip", z.ZodTypeAny, {
2547
+ timing: string;
2548
+ duration: number;
2549
+ delay: number;
2550
+ }, {
2551
+ timing: string;
2552
+ duration: number;
2553
+ delay: number;
2554
+ }>;
2555
+ out: z.ZodObject<{
2556
+ timing: z.ZodString;
2557
+ duration: z.ZodNumber;
2558
+ delay: z.ZodNumber;
2559
+ }, "strip", z.ZodTypeAny, {
2560
+ timing: string;
2561
+ duration: number;
2562
+ delay: number;
2563
+ }, {
2564
+ timing: string;
2565
+ duration: number;
2566
+ delay: number;
2567
+ }>;
2568
+ }, "strip", z.ZodTypeAny, {
2569
+ value: ({
2570
+ id: string;
2571
+ value: string;
2572
+ type: "solid";
2573
+ blendMode: string;
2574
+ } | {
2575
+ id: string;
2576
+ type: "linear-gradient";
2577
+ blendMode: string;
2578
+ colors: {
2579
+ position: number;
2580
+ id: string;
2581
+ value: string;
2582
+ }[];
2583
+ start: [number, number];
2584
+ end: [number, number];
2585
+ angle: number;
2586
+ } | {
2587
+ center: [number, number];
2588
+ id: string;
2589
+ type: "radial-gradient";
2590
+ blendMode: string;
2591
+ colors: {
2592
+ position: number;
2593
+ id: string;
2594
+ value: string;
2595
+ }[];
2596
+ angle: number;
2597
+ diameter: number;
2598
+ } | {
2599
+ center: [number, number];
2600
+ id: string;
2601
+ type: "conic-gradient";
2602
+ blendMode: string;
2603
+ colors: {
2604
+ position: number;
2605
+ id: string;
2606
+ value: string;
2607
+ }[];
2608
+ angle: number;
2609
+ } | {
2610
+ opacity: number;
2611
+ id: string;
2612
+ type: "image";
2613
+ blendMode: string;
2614
+ src: string;
2615
+ behavior: string;
2616
+ backgroundSize: number;
2617
+ rotation?: number | undefined;
2618
+ })[];
1763
2619
  in: {
1764
2620
  timing: string;
1765
2621
  duration: number;
@@ -1771,7 +2627,56 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
1771
2627
  delay: number;
1772
2628
  };
1773
2629
  }, {
1774
- value: string;
2630
+ value: ({
2631
+ id: string;
2632
+ value: string;
2633
+ type: "solid";
2634
+ blendMode: string;
2635
+ } | {
2636
+ id: string;
2637
+ type: "linear-gradient";
2638
+ blendMode: string;
2639
+ colors: {
2640
+ position: number;
2641
+ id: string;
2642
+ value: string;
2643
+ }[];
2644
+ start: [number, number];
2645
+ end: [number, number];
2646
+ angle: number;
2647
+ } | {
2648
+ center: [number, number];
2649
+ id: string;
2650
+ type: "radial-gradient";
2651
+ blendMode: string;
2652
+ colors: {
2653
+ position: number;
2654
+ id: string;
2655
+ value: string;
2656
+ }[];
2657
+ angle: number;
2658
+ diameter: number;
2659
+ } | {
2660
+ center: [number, number];
2661
+ id: string;
2662
+ type: "conic-gradient";
2663
+ blendMode: string;
2664
+ colors: {
2665
+ position: number;
2666
+ id: string;
2667
+ value: string;
2668
+ }[];
2669
+ angle: number;
2670
+ } | {
2671
+ opacity: number;
2672
+ id: string;
2673
+ type: "image";
2674
+ blendMode: string;
2675
+ src: string;
2676
+ behavior: string;
2677
+ backgroundSize: number;
2678
+ rotation?: number | undefined;
2679
+ })[];
1775
2680
  in: {
1776
2681
  timing: string;
1777
2682
  duration: number;
@@ -2234,8 +3139,57 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
2234
3139
  delay: number;
2235
3140
  };
2236
3141
  } | undefined;
2237
- strokeColor?: {
2238
- value: string;
3142
+ strokeFill?: {
3143
+ value: ({
3144
+ id: string;
3145
+ value: string;
3146
+ type: "solid";
3147
+ blendMode: string;
3148
+ } | {
3149
+ id: string;
3150
+ type: "linear-gradient";
3151
+ blendMode: string;
3152
+ colors: {
3153
+ position: number;
3154
+ id: string;
3155
+ value: string;
3156
+ }[];
3157
+ start: [number, number];
3158
+ end: [number, number];
3159
+ angle: number;
3160
+ } | {
3161
+ center: [number, number];
3162
+ id: string;
3163
+ type: "radial-gradient";
3164
+ blendMode: string;
3165
+ colors: {
3166
+ position: number;
3167
+ id: string;
3168
+ value: string;
3169
+ }[];
3170
+ angle: number;
3171
+ diameter: number;
3172
+ } | {
3173
+ center: [number, number];
3174
+ id: string;
3175
+ type: "conic-gradient";
3176
+ blendMode: string;
3177
+ colors: {
3178
+ position: number;
3179
+ id: string;
3180
+ value: string;
3181
+ }[];
3182
+ angle: number;
3183
+ } | {
3184
+ opacity: number;
3185
+ id: string;
3186
+ type: "image";
3187
+ blendMode: string;
3188
+ src: string;
3189
+ behavior: string;
3190
+ backgroundSize: number;
3191
+ rotation?: number | undefined;
3192
+ })[];
2239
3193
  in: {
2240
3194
  timing: string;
2241
3195
  duration: number;
@@ -2247,8 +3201,57 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
2247
3201
  delay: number;
2248
3202
  };
2249
3203
  } | undefined;
2250
- fillColor?: {
2251
- value: string;
3204
+ fill?: {
3205
+ value: ({
3206
+ id: string;
3207
+ value: string;
3208
+ type: "solid";
3209
+ blendMode: string;
3210
+ } | {
3211
+ id: string;
3212
+ type: "linear-gradient";
3213
+ blendMode: string;
3214
+ colors: {
3215
+ position: number;
3216
+ id: string;
3217
+ value: string;
3218
+ }[];
3219
+ start: [number, number];
3220
+ end: [number, number];
3221
+ angle: number;
3222
+ } | {
3223
+ center: [number, number];
3224
+ id: string;
3225
+ type: "radial-gradient";
3226
+ blendMode: string;
3227
+ colors: {
3228
+ position: number;
3229
+ id: string;
3230
+ value: string;
3231
+ }[];
3232
+ angle: number;
3233
+ diameter: number;
3234
+ } | {
3235
+ center: [number, number];
3236
+ id: string;
3237
+ type: "conic-gradient";
3238
+ blendMode: string;
3239
+ colors: {
3240
+ position: number;
3241
+ id: string;
3242
+ value: string;
3243
+ }[];
3244
+ angle: number;
3245
+ } | {
3246
+ opacity: number;
3247
+ id: string;
3248
+ type: "image";
3249
+ blendMode: string;
3250
+ src: string;
3251
+ behavior: string;
3252
+ backgroundSize: number;
3253
+ rotation?: number | undefined;
3254
+ })[];
2252
3255
  in: {
2253
3256
  timing: string;
2254
3257
  duration: number;
@@ -2391,8 +3394,57 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
2391
3394
  delay: number;
2392
3395
  };
2393
3396
  } | undefined;
2394
- strokeColor?: {
2395
- value: string;
3397
+ strokeFill?: {
3398
+ value: ({
3399
+ id: string;
3400
+ value: string;
3401
+ type: "solid";
3402
+ blendMode: string;
3403
+ } | {
3404
+ id: string;
3405
+ type: "linear-gradient";
3406
+ blendMode: string;
3407
+ colors: {
3408
+ position: number;
3409
+ id: string;
3410
+ value: string;
3411
+ }[];
3412
+ start: [number, number];
3413
+ end: [number, number];
3414
+ angle: number;
3415
+ } | {
3416
+ center: [number, number];
3417
+ id: string;
3418
+ type: "radial-gradient";
3419
+ blendMode: string;
3420
+ colors: {
3421
+ position: number;
3422
+ id: string;
3423
+ value: string;
3424
+ }[];
3425
+ angle: number;
3426
+ diameter: number;
3427
+ } | {
3428
+ center: [number, number];
3429
+ id: string;
3430
+ type: "conic-gradient";
3431
+ blendMode: string;
3432
+ colors: {
3433
+ position: number;
3434
+ id: string;
3435
+ value: string;
3436
+ }[];
3437
+ angle: number;
3438
+ } | {
3439
+ opacity: number;
3440
+ id: string;
3441
+ type: "image";
3442
+ blendMode: string;
3443
+ src: string;
3444
+ behavior: string;
3445
+ backgroundSize: number;
3446
+ rotation?: number | undefined;
3447
+ })[];
2396
3448
  in: {
2397
3449
  timing: string;
2398
3450
  duration: number;
@@ -2404,8 +3456,57 @@ export declare const RectangleStateParamsSchema: z.ZodObject<{
2404
3456
  delay: number;
2405
3457
  };
2406
3458
  } | undefined;
2407
- fillColor?: {
2408
- value: string;
3459
+ fill?: {
3460
+ value: ({
3461
+ id: string;
3462
+ value: string;
3463
+ type: "solid";
3464
+ blendMode: string;
3465
+ } | {
3466
+ id: string;
3467
+ type: "linear-gradient";
3468
+ blendMode: string;
3469
+ colors: {
3470
+ position: number;
3471
+ id: string;
3472
+ value: string;
3473
+ }[];
3474
+ start: [number, number];
3475
+ end: [number, number];
3476
+ angle: number;
3477
+ } | {
3478
+ center: [number, number];
3479
+ id: string;
3480
+ type: "radial-gradient";
3481
+ blendMode: string;
3482
+ colors: {
3483
+ position: number;
3484
+ id: string;
3485
+ value: string;
3486
+ }[];
3487
+ angle: number;
3488
+ diameter: number;
3489
+ } | {
3490
+ center: [number, number];
3491
+ id: string;
3492
+ type: "conic-gradient";
3493
+ blendMode: string;
3494
+ colors: {
3495
+ position: number;
3496
+ id: string;
3497
+ value: string;
3498
+ }[];
3499
+ angle: number;
3500
+ } | {
3501
+ opacity: number;
3502
+ id: string;
3503
+ type: "image";
3504
+ blendMode: string;
3505
+ src: string;
3506
+ behavior: string;
3507
+ backgroundSize: number;
3508
+ rotation?: number | undefined;
3509
+ })[];
2409
3510
  in: {
2410
3511
  timing: string;
2411
3512
  duration: number;
@@ -8006,36 +9107,256 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8006
9107
  delay: number;
8007
9108
  };
8008
9109
  }>>;
8009
- strokeColor: z.ZodOptional<z.ZodObject<{
8010
- value: z.ZodString;
8011
- in: z.ZodObject<{
8012
- timing: z.ZodString;
8013
- duration: z.ZodNumber;
8014
- delay: z.ZodNumber;
9110
+ strokeFill: z.ZodOptional<z.ZodObject<{
9111
+ value: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9112
+ id: z.ZodString;
9113
+ type: z.ZodLiteral<"solid">;
9114
+ value: z.ZodString;
9115
+ blendMode: z.ZodString;
8015
9116
  }, "strip", z.ZodTypeAny, {
8016
- timing: string;
8017
- duration: number;
8018
- delay: number;
9117
+ id: string;
9118
+ value: string;
9119
+ type: "solid";
9120
+ blendMode: string;
8019
9121
  }, {
8020
- timing: string;
8021
- duration: number;
8022
- delay: number;
8023
- }>;
8024
- out: z.ZodObject<{
8025
- timing: z.ZodString;
8026
- duration: z.ZodNumber;
8027
- delay: z.ZodNumber;
9122
+ id: string;
9123
+ value: string;
9124
+ type: "solid";
9125
+ blendMode: string;
9126
+ }>, z.ZodObject<{
9127
+ id: z.ZodString;
9128
+ type: z.ZodLiteral<"linear-gradient">;
9129
+ colors: z.ZodArray<z.ZodObject<{
9130
+ id: z.ZodString;
9131
+ value: z.ZodString;
9132
+ position: z.ZodNumber;
9133
+ }, "strip", z.ZodTypeAny, {
9134
+ position: number;
9135
+ id: string;
9136
+ value: string;
9137
+ }, {
9138
+ position: number;
9139
+ id: string;
9140
+ value: string;
9141
+ }>, "many">;
9142
+ start: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
9143
+ end: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
9144
+ angle: z.ZodNumber;
9145
+ blendMode: z.ZodString;
8028
9146
  }, "strip", z.ZodTypeAny, {
8029
- timing: string;
8030
- duration: number;
8031
- delay: number;
9147
+ id: string;
9148
+ type: "linear-gradient";
9149
+ blendMode: string;
9150
+ colors: {
9151
+ position: number;
9152
+ id: string;
9153
+ value: string;
9154
+ }[];
9155
+ start: [number, number];
9156
+ end: [number, number];
9157
+ angle: number;
8032
9158
  }, {
8033
- timing: string;
8034
- duration: number;
8035
- delay: number;
8036
- }>;
8037
- }, "strip", z.ZodTypeAny, {
8038
- value: string;
9159
+ id: string;
9160
+ type: "linear-gradient";
9161
+ blendMode: string;
9162
+ colors: {
9163
+ position: number;
9164
+ id: string;
9165
+ value: string;
9166
+ }[];
9167
+ start: [number, number];
9168
+ end: [number, number];
9169
+ angle: number;
9170
+ }>, z.ZodObject<{
9171
+ id: z.ZodString;
9172
+ type: z.ZodLiteral<"radial-gradient">;
9173
+ colors: z.ZodArray<z.ZodObject<{
9174
+ id: z.ZodString;
9175
+ value: z.ZodString;
9176
+ position: z.ZodNumber;
9177
+ }, "strip", z.ZodTypeAny, {
9178
+ position: number;
9179
+ id: string;
9180
+ value: string;
9181
+ }, {
9182
+ position: number;
9183
+ id: string;
9184
+ value: string;
9185
+ }>, "many">;
9186
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
9187
+ diameter: z.ZodNumber;
9188
+ angle: z.ZodNumber;
9189
+ blendMode: z.ZodString;
9190
+ }, "strip", z.ZodTypeAny, {
9191
+ center: [number, number];
9192
+ id: string;
9193
+ type: "radial-gradient";
9194
+ blendMode: string;
9195
+ colors: {
9196
+ position: number;
9197
+ id: string;
9198
+ value: string;
9199
+ }[];
9200
+ angle: number;
9201
+ diameter: number;
9202
+ }, {
9203
+ center: [number, number];
9204
+ id: string;
9205
+ type: "radial-gradient";
9206
+ blendMode: string;
9207
+ colors: {
9208
+ position: number;
9209
+ id: string;
9210
+ value: string;
9211
+ }[];
9212
+ angle: number;
9213
+ diameter: number;
9214
+ }>, z.ZodObject<{
9215
+ id: z.ZodString;
9216
+ type: z.ZodLiteral<"conic-gradient">;
9217
+ colors: z.ZodArray<z.ZodObject<{
9218
+ id: z.ZodString;
9219
+ value: z.ZodString;
9220
+ position: z.ZodNumber;
9221
+ }, "strip", z.ZodTypeAny, {
9222
+ position: number;
9223
+ id: string;
9224
+ value: string;
9225
+ }, {
9226
+ position: number;
9227
+ id: string;
9228
+ value: string;
9229
+ }>, "many">;
9230
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
9231
+ angle: z.ZodNumber;
9232
+ blendMode: z.ZodString;
9233
+ }, "strip", z.ZodTypeAny, {
9234
+ center: [number, number];
9235
+ id: string;
9236
+ type: "conic-gradient";
9237
+ blendMode: string;
9238
+ colors: {
9239
+ position: number;
9240
+ id: string;
9241
+ value: string;
9242
+ }[];
9243
+ angle: number;
9244
+ }, {
9245
+ center: [number, number];
9246
+ id: string;
9247
+ type: "conic-gradient";
9248
+ blendMode: string;
9249
+ colors: {
9250
+ position: number;
9251
+ id: string;
9252
+ value: string;
9253
+ }[];
9254
+ angle: number;
9255
+ }>, z.ZodObject<{
9256
+ id: z.ZodString;
9257
+ type: z.ZodLiteral<"image">;
9258
+ src: z.ZodString;
9259
+ behavior: z.ZodString;
9260
+ backgroundSize: z.ZodNumber;
9261
+ opacity: z.ZodNumber;
9262
+ blendMode: z.ZodString;
9263
+ rotation: z.ZodOptional<z.ZodNumber>;
9264
+ }, "strip", z.ZodTypeAny, {
9265
+ opacity: number;
9266
+ id: string;
9267
+ type: "image";
9268
+ blendMode: string;
9269
+ src: string;
9270
+ behavior: string;
9271
+ backgroundSize: number;
9272
+ rotation?: number | undefined;
9273
+ }, {
9274
+ opacity: number;
9275
+ id: string;
9276
+ type: "image";
9277
+ blendMode: string;
9278
+ src: string;
9279
+ behavior: string;
9280
+ backgroundSize: number;
9281
+ rotation?: number | undefined;
9282
+ }>]>, "many">;
9283
+ in: z.ZodObject<{
9284
+ timing: z.ZodString;
9285
+ duration: z.ZodNumber;
9286
+ delay: z.ZodNumber;
9287
+ }, "strip", z.ZodTypeAny, {
9288
+ timing: string;
9289
+ duration: number;
9290
+ delay: number;
9291
+ }, {
9292
+ timing: string;
9293
+ duration: number;
9294
+ delay: number;
9295
+ }>;
9296
+ out: z.ZodObject<{
9297
+ timing: z.ZodString;
9298
+ duration: z.ZodNumber;
9299
+ delay: z.ZodNumber;
9300
+ }, "strip", z.ZodTypeAny, {
9301
+ timing: string;
9302
+ duration: number;
9303
+ delay: number;
9304
+ }, {
9305
+ timing: string;
9306
+ duration: number;
9307
+ delay: number;
9308
+ }>;
9309
+ }, "strip", z.ZodTypeAny, {
9310
+ value: ({
9311
+ id: string;
9312
+ value: string;
9313
+ type: "solid";
9314
+ blendMode: string;
9315
+ } | {
9316
+ id: string;
9317
+ type: "linear-gradient";
9318
+ blendMode: string;
9319
+ colors: {
9320
+ position: number;
9321
+ id: string;
9322
+ value: string;
9323
+ }[];
9324
+ start: [number, number];
9325
+ end: [number, number];
9326
+ angle: number;
9327
+ } | {
9328
+ center: [number, number];
9329
+ id: string;
9330
+ type: "radial-gradient";
9331
+ blendMode: string;
9332
+ colors: {
9333
+ position: number;
9334
+ id: string;
9335
+ value: string;
9336
+ }[];
9337
+ angle: number;
9338
+ diameter: number;
9339
+ } | {
9340
+ center: [number, number];
9341
+ id: string;
9342
+ type: "conic-gradient";
9343
+ blendMode: string;
9344
+ colors: {
9345
+ position: number;
9346
+ id: string;
9347
+ value: string;
9348
+ }[];
9349
+ angle: number;
9350
+ } | {
9351
+ opacity: number;
9352
+ id: string;
9353
+ type: "image";
9354
+ blendMode: string;
9355
+ src: string;
9356
+ behavior: string;
9357
+ backgroundSize: number;
9358
+ rotation?: number | undefined;
9359
+ })[];
8039
9360
  in: {
8040
9361
  timing: string;
8041
9362
  duration: number;
@@ -8047,7 +9368,56 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8047
9368
  delay: number;
8048
9369
  };
8049
9370
  }, {
8050
- value: string;
9371
+ value: ({
9372
+ id: string;
9373
+ value: string;
9374
+ type: "solid";
9375
+ blendMode: string;
9376
+ } | {
9377
+ id: string;
9378
+ type: "linear-gradient";
9379
+ blendMode: string;
9380
+ colors: {
9381
+ position: number;
9382
+ id: string;
9383
+ value: string;
9384
+ }[];
9385
+ start: [number, number];
9386
+ end: [number, number];
9387
+ angle: number;
9388
+ } | {
9389
+ center: [number, number];
9390
+ id: string;
9391
+ type: "radial-gradient";
9392
+ blendMode: string;
9393
+ colors: {
9394
+ position: number;
9395
+ id: string;
9396
+ value: string;
9397
+ }[];
9398
+ angle: number;
9399
+ diameter: number;
9400
+ } | {
9401
+ center: [number, number];
9402
+ id: string;
9403
+ type: "conic-gradient";
9404
+ blendMode: string;
9405
+ colors: {
9406
+ position: number;
9407
+ id: string;
9408
+ value: string;
9409
+ }[];
9410
+ angle: number;
9411
+ } | {
9412
+ opacity: number;
9413
+ id: string;
9414
+ type: "image";
9415
+ blendMode: string;
9416
+ src: string;
9417
+ behavior: string;
9418
+ backgroundSize: number;
9419
+ rotation?: number | undefined;
9420
+ })[];
8051
9421
  in: {
8052
9422
  timing: string;
8053
9423
  duration: number;
@@ -8470,8 +9840,57 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8470
9840
  delay: number;
8471
9841
  };
8472
9842
  } | undefined;
8473
- strokeColor?: {
8474
- value: string;
9843
+ strokeFill?: {
9844
+ value: ({
9845
+ id: string;
9846
+ value: string;
9847
+ type: "solid";
9848
+ blendMode: string;
9849
+ } | {
9850
+ id: string;
9851
+ type: "linear-gradient";
9852
+ blendMode: string;
9853
+ colors: {
9854
+ position: number;
9855
+ id: string;
9856
+ value: string;
9857
+ }[];
9858
+ start: [number, number];
9859
+ end: [number, number];
9860
+ angle: number;
9861
+ } | {
9862
+ center: [number, number];
9863
+ id: string;
9864
+ type: "radial-gradient";
9865
+ blendMode: string;
9866
+ colors: {
9867
+ position: number;
9868
+ id: string;
9869
+ value: string;
9870
+ }[];
9871
+ angle: number;
9872
+ diameter: number;
9873
+ } | {
9874
+ center: [number, number];
9875
+ id: string;
9876
+ type: "conic-gradient";
9877
+ blendMode: string;
9878
+ colors: {
9879
+ position: number;
9880
+ id: string;
9881
+ value: string;
9882
+ }[];
9883
+ angle: number;
9884
+ } | {
9885
+ opacity: number;
9886
+ id: string;
9887
+ type: "image";
9888
+ blendMode: string;
9889
+ src: string;
9890
+ behavior: string;
9891
+ backgroundSize: number;
9892
+ rotation?: number | undefined;
9893
+ })[];
8475
9894
  in: {
8476
9895
  timing: string;
8477
9896
  duration: number;
@@ -8614,8 +10033,57 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8614
10033
  delay: number;
8615
10034
  };
8616
10035
  } | undefined;
8617
- strokeColor?: {
8618
- value: string;
10036
+ strokeFill?: {
10037
+ value: ({
10038
+ id: string;
10039
+ value: string;
10040
+ type: "solid";
10041
+ blendMode: string;
10042
+ } | {
10043
+ id: string;
10044
+ type: "linear-gradient";
10045
+ blendMode: string;
10046
+ colors: {
10047
+ position: number;
10048
+ id: string;
10049
+ value: string;
10050
+ }[];
10051
+ start: [number, number];
10052
+ end: [number, number];
10053
+ angle: number;
10054
+ } | {
10055
+ center: [number, number];
10056
+ id: string;
10057
+ type: "radial-gradient";
10058
+ blendMode: string;
10059
+ colors: {
10060
+ position: number;
10061
+ id: string;
10062
+ value: string;
10063
+ }[];
10064
+ angle: number;
10065
+ diameter: number;
10066
+ } | {
10067
+ center: [number, number];
10068
+ id: string;
10069
+ type: "conic-gradient";
10070
+ blendMode: string;
10071
+ colors: {
10072
+ position: number;
10073
+ id: string;
10074
+ value: string;
10075
+ }[];
10076
+ angle: number;
10077
+ } | {
10078
+ opacity: number;
10079
+ id: string;
10080
+ type: "image";
10081
+ blendMode: string;
10082
+ src: string;
10083
+ behavior: string;
10084
+ backgroundSize: number;
10085
+ rotation?: number | undefined;
10086
+ })[];
8619
10087
  in: {
8620
10088
  timing: string;
8621
10089
  duration: number;
@@ -8825,36 +10293,256 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8825
10293
  delay: number;
8826
10294
  };
8827
10295
  }>>;
8828
- strokeColor: z.ZodOptional<z.ZodObject<{
8829
- value: z.ZodString;
8830
- in: z.ZodObject<{
8831
- timing: z.ZodString;
8832
- duration: z.ZodNumber;
8833
- delay: z.ZodNumber;
10296
+ strokeFill: z.ZodOptional<z.ZodObject<{
10297
+ value: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10298
+ id: z.ZodString;
10299
+ type: z.ZodLiteral<"solid">;
10300
+ value: z.ZodString;
10301
+ blendMode: z.ZodString;
8834
10302
  }, "strip", z.ZodTypeAny, {
8835
- timing: string;
8836
- duration: number;
8837
- delay: number;
10303
+ id: string;
10304
+ value: string;
10305
+ type: "solid";
10306
+ blendMode: string;
8838
10307
  }, {
8839
- timing: string;
8840
- duration: number;
8841
- delay: number;
8842
- }>;
8843
- out: z.ZodObject<{
8844
- timing: z.ZodString;
8845
- duration: z.ZodNumber;
8846
- delay: z.ZodNumber;
10308
+ id: string;
10309
+ value: string;
10310
+ type: "solid";
10311
+ blendMode: string;
10312
+ }>, z.ZodObject<{
10313
+ id: z.ZodString;
10314
+ type: z.ZodLiteral<"linear-gradient">;
10315
+ colors: z.ZodArray<z.ZodObject<{
10316
+ id: z.ZodString;
10317
+ value: z.ZodString;
10318
+ position: z.ZodNumber;
10319
+ }, "strip", z.ZodTypeAny, {
10320
+ position: number;
10321
+ id: string;
10322
+ value: string;
10323
+ }, {
10324
+ position: number;
10325
+ id: string;
10326
+ value: string;
10327
+ }>, "many">;
10328
+ start: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10329
+ end: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10330
+ angle: z.ZodNumber;
10331
+ blendMode: z.ZodString;
8847
10332
  }, "strip", z.ZodTypeAny, {
8848
- timing: string;
8849
- duration: number;
8850
- delay: number;
10333
+ id: string;
10334
+ type: "linear-gradient";
10335
+ blendMode: string;
10336
+ colors: {
10337
+ position: number;
10338
+ id: string;
10339
+ value: string;
10340
+ }[];
10341
+ start: [number, number];
10342
+ end: [number, number];
10343
+ angle: number;
8851
10344
  }, {
8852
- timing: string;
8853
- duration: number;
8854
- delay: number;
8855
- }>;
8856
- }, "strip", z.ZodTypeAny, {
8857
- value: string;
10345
+ id: string;
10346
+ type: "linear-gradient";
10347
+ blendMode: string;
10348
+ colors: {
10349
+ position: number;
10350
+ id: string;
10351
+ value: string;
10352
+ }[];
10353
+ start: [number, number];
10354
+ end: [number, number];
10355
+ angle: number;
10356
+ }>, z.ZodObject<{
10357
+ id: z.ZodString;
10358
+ type: z.ZodLiteral<"radial-gradient">;
10359
+ colors: z.ZodArray<z.ZodObject<{
10360
+ id: z.ZodString;
10361
+ value: z.ZodString;
10362
+ position: z.ZodNumber;
10363
+ }, "strip", z.ZodTypeAny, {
10364
+ position: number;
10365
+ id: string;
10366
+ value: string;
10367
+ }, {
10368
+ position: number;
10369
+ id: string;
10370
+ value: string;
10371
+ }>, "many">;
10372
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10373
+ diameter: z.ZodNumber;
10374
+ angle: z.ZodNumber;
10375
+ blendMode: z.ZodString;
10376
+ }, "strip", z.ZodTypeAny, {
10377
+ center: [number, number];
10378
+ id: string;
10379
+ type: "radial-gradient";
10380
+ blendMode: string;
10381
+ colors: {
10382
+ position: number;
10383
+ id: string;
10384
+ value: string;
10385
+ }[];
10386
+ angle: number;
10387
+ diameter: number;
10388
+ }, {
10389
+ center: [number, number];
10390
+ id: string;
10391
+ type: "radial-gradient";
10392
+ blendMode: string;
10393
+ colors: {
10394
+ position: number;
10395
+ id: string;
10396
+ value: string;
10397
+ }[];
10398
+ angle: number;
10399
+ diameter: number;
10400
+ }>, z.ZodObject<{
10401
+ id: z.ZodString;
10402
+ type: z.ZodLiteral<"conic-gradient">;
10403
+ colors: z.ZodArray<z.ZodObject<{
10404
+ id: z.ZodString;
10405
+ value: z.ZodString;
10406
+ position: z.ZodNumber;
10407
+ }, "strip", z.ZodTypeAny, {
10408
+ position: number;
10409
+ id: string;
10410
+ value: string;
10411
+ }, {
10412
+ position: number;
10413
+ id: string;
10414
+ value: string;
10415
+ }>, "many">;
10416
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10417
+ angle: z.ZodNumber;
10418
+ blendMode: z.ZodString;
10419
+ }, "strip", z.ZodTypeAny, {
10420
+ center: [number, number];
10421
+ id: string;
10422
+ type: "conic-gradient";
10423
+ blendMode: string;
10424
+ colors: {
10425
+ position: number;
10426
+ id: string;
10427
+ value: string;
10428
+ }[];
10429
+ angle: number;
10430
+ }, {
10431
+ center: [number, number];
10432
+ id: string;
10433
+ type: "conic-gradient";
10434
+ blendMode: string;
10435
+ colors: {
10436
+ position: number;
10437
+ id: string;
10438
+ value: string;
10439
+ }[];
10440
+ angle: number;
10441
+ }>, z.ZodObject<{
10442
+ id: z.ZodString;
10443
+ type: z.ZodLiteral<"image">;
10444
+ src: z.ZodString;
10445
+ behavior: z.ZodString;
10446
+ backgroundSize: z.ZodNumber;
10447
+ opacity: z.ZodNumber;
10448
+ blendMode: z.ZodString;
10449
+ rotation: z.ZodOptional<z.ZodNumber>;
10450
+ }, "strip", z.ZodTypeAny, {
10451
+ opacity: number;
10452
+ id: string;
10453
+ type: "image";
10454
+ blendMode: string;
10455
+ src: string;
10456
+ behavior: string;
10457
+ backgroundSize: number;
10458
+ rotation?: number | undefined;
10459
+ }, {
10460
+ opacity: number;
10461
+ id: string;
10462
+ type: "image";
10463
+ blendMode: string;
10464
+ src: string;
10465
+ behavior: string;
10466
+ backgroundSize: number;
10467
+ rotation?: number | undefined;
10468
+ }>]>, "many">;
10469
+ in: z.ZodObject<{
10470
+ timing: z.ZodString;
10471
+ duration: z.ZodNumber;
10472
+ delay: z.ZodNumber;
10473
+ }, "strip", z.ZodTypeAny, {
10474
+ timing: string;
10475
+ duration: number;
10476
+ delay: number;
10477
+ }, {
10478
+ timing: string;
10479
+ duration: number;
10480
+ delay: number;
10481
+ }>;
10482
+ out: z.ZodObject<{
10483
+ timing: z.ZodString;
10484
+ duration: z.ZodNumber;
10485
+ delay: z.ZodNumber;
10486
+ }, "strip", z.ZodTypeAny, {
10487
+ timing: string;
10488
+ duration: number;
10489
+ delay: number;
10490
+ }, {
10491
+ timing: string;
10492
+ duration: number;
10493
+ delay: number;
10494
+ }>;
10495
+ }, "strip", z.ZodTypeAny, {
10496
+ value: ({
10497
+ id: string;
10498
+ value: string;
10499
+ type: "solid";
10500
+ blendMode: string;
10501
+ } | {
10502
+ id: string;
10503
+ type: "linear-gradient";
10504
+ blendMode: string;
10505
+ colors: {
10506
+ position: number;
10507
+ id: string;
10508
+ value: string;
10509
+ }[];
10510
+ start: [number, number];
10511
+ end: [number, number];
10512
+ angle: number;
10513
+ } | {
10514
+ center: [number, number];
10515
+ id: string;
10516
+ type: "radial-gradient";
10517
+ blendMode: string;
10518
+ colors: {
10519
+ position: number;
10520
+ id: string;
10521
+ value: string;
10522
+ }[];
10523
+ angle: number;
10524
+ diameter: number;
10525
+ } | {
10526
+ center: [number, number];
10527
+ id: string;
10528
+ type: "conic-gradient";
10529
+ blendMode: string;
10530
+ colors: {
10531
+ position: number;
10532
+ id: string;
10533
+ value: string;
10534
+ }[];
10535
+ angle: number;
10536
+ } | {
10537
+ opacity: number;
10538
+ id: string;
10539
+ type: "image";
10540
+ blendMode: string;
10541
+ src: string;
10542
+ behavior: string;
10543
+ backgroundSize: number;
10544
+ rotation?: number | undefined;
10545
+ })[];
8858
10546
  in: {
8859
10547
  timing: string;
8860
10548
  duration: number;
@@ -8866,48 +10554,317 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8866
10554
  delay: number;
8867
10555
  };
8868
10556
  }, {
8869
- value: string;
8870
- in: {
8871
- timing: string;
8872
- duration: number;
8873
- delay: number;
8874
- };
8875
- out: {
8876
- timing: string;
8877
- duration: number;
8878
- delay: number;
8879
- };
8880
- }>>;
8881
- fillColor: z.ZodOptional<z.ZodObject<{
8882
- value: z.ZodString;
8883
- in: z.ZodObject<{
8884
- timing: z.ZodString;
8885
- duration: z.ZodNumber;
8886
- delay: z.ZodNumber;
8887
- }, "strip", z.ZodTypeAny, {
8888
- timing: string;
8889
- duration: number;
8890
- delay: number;
8891
- }, {
8892
- timing: string;
8893
- duration: number;
8894
- delay: number;
8895
- }>;
8896
- out: z.ZodObject<{
8897
- timing: z.ZodString;
8898
- duration: z.ZodNumber;
8899
- delay: z.ZodNumber;
8900
- }, "strip", z.ZodTypeAny, {
8901
- timing: string;
8902
- duration: number;
8903
- delay: number;
8904
- }, {
8905
- timing: string;
8906
- duration: number;
8907
- delay: number;
8908
- }>;
8909
- }, "strip", z.ZodTypeAny, {
8910
- value: string;
10557
+ value: ({
10558
+ id: string;
10559
+ value: string;
10560
+ type: "solid";
10561
+ blendMode: string;
10562
+ } | {
10563
+ id: string;
10564
+ type: "linear-gradient";
10565
+ blendMode: string;
10566
+ colors: {
10567
+ position: number;
10568
+ id: string;
10569
+ value: string;
10570
+ }[];
10571
+ start: [number, number];
10572
+ end: [number, number];
10573
+ angle: number;
10574
+ } | {
10575
+ center: [number, number];
10576
+ id: string;
10577
+ type: "radial-gradient";
10578
+ blendMode: string;
10579
+ colors: {
10580
+ position: number;
10581
+ id: string;
10582
+ value: string;
10583
+ }[];
10584
+ angle: number;
10585
+ diameter: number;
10586
+ } | {
10587
+ center: [number, number];
10588
+ id: string;
10589
+ type: "conic-gradient";
10590
+ blendMode: string;
10591
+ colors: {
10592
+ position: number;
10593
+ id: string;
10594
+ value: string;
10595
+ }[];
10596
+ angle: number;
10597
+ } | {
10598
+ opacity: number;
10599
+ id: string;
10600
+ type: "image";
10601
+ blendMode: string;
10602
+ src: string;
10603
+ behavior: string;
10604
+ backgroundSize: number;
10605
+ rotation?: number | undefined;
10606
+ })[];
10607
+ in: {
10608
+ timing: string;
10609
+ duration: number;
10610
+ delay: number;
10611
+ };
10612
+ out: {
10613
+ timing: string;
10614
+ duration: number;
10615
+ delay: number;
10616
+ };
10617
+ }>>;
10618
+ fill: z.ZodOptional<z.ZodObject<{
10619
+ value: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10620
+ id: z.ZodString;
10621
+ type: z.ZodLiteral<"solid">;
10622
+ value: z.ZodString;
10623
+ blendMode: z.ZodString;
10624
+ }, "strip", z.ZodTypeAny, {
10625
+ id: string;
10626
+ value: string;
10627
+ type: "solid";
10628
+ blendMode: string;
10629
+ }, {
10630
+ id: string;
10631
+ value: string;
10632
+ type: "solid";
10633
+ blendMode: string;
10634
+ }>, z.ZodObject<{
10635
+ id: z.ZodString;
10636
+ type: z.ZodLiteral<"linear-gradient">;
10637
+ colors: z.ZodArray<z.ZodObject<{
10638
+ id: z.ZodString;
10639
+ value: z.ZodString;
10640
+ position: z.ZodNumber;
10641
+ }, "strip", z.ZodTypeAny, {
10642
+ position: number;
10643
+ id: string;
10644
+ value: string;
10645
+ }, {
10646
+ position: number;
10647
+ id: string;
10648
+ value: string;
10649
+ }>, "many">;
10650
+ start: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10651
+ end: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10652
+ angle: z.ZodNumber;
10653
+ blendMode: z.ZodString;
10654
+ }, "strip", z.ZodTypeAny, {
10655
+ id: string;
10656
+ type: "linear-gradient";
10657
+ blendMode: string;
10658
+ colors: {
10659
+ position: number;
10660
+ id: string;
10661
+ value: string;
10662
+ }[];
10663
+ start: [number, number];
10664
+ end: [number, number];
10665
+ angle: number;
10666
+ }, {
10667
+ id: string;
10668
+ type: "linear-gradient";
10669
+ blendMode: string;
10670
+ colors: {
10671
+ position: number;
10672
+ id: string;
10673
+ value: string;
10674
+ }[];
10675
+ start: [number, number];
10676
+ end: [number, number];
10677
+ angle: number;
10678
+ }>, z.ZodObject<{
10679
+ id: z.ZodString;
10680
+ type: z.ZodLiteral<"radial-gradient">;
10681
+ colors: z.ZodArray<z.ZodObject<{
10682
+ id: z.ZodString;
10683
+ value: z.ZodString;
10684
+ position: z.ZodNumber;
10685
+ }, "strip", z.ZodTypeAny, {
10686
+ position: number;
10687
+ id: string;
10688
+ value: string;
10689
+ }, {
10690
+ position: number;
10691
+ id: string;
10692
+ value: string;
10693
+ }>, "many">;
10694
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10695
+ diameter: z.ZodNumber;
10696
+ angle: z.ZodNumber;
10697
+ blendMode: z.ZodString;
10698
+ }, "strip", z.ZodTypeAny, {
10699
+ center: [number, number];
10700
+ id: string;
10701
+ type: "radial-gradient";
10702
+ blendMode: string;
10703
+ colors: {
10704
+ position: number;
10705
+ id: string;
10706
+ value: string;
10707
+ }[];
10708
+ angle: number;
10709
+ diameter: number;
10710
+ }, {
10711
+ center: [number, number];
10712
+ id: string;
10713
+ type: "radial-gradient";
10714
+ blendMode: string;
10715
+ colors: {
10716
+ position: number;
10717
+ id: string;
10718
+ value: string;
10719
+ }[];
10720
+ angle: number;
10721
+ diameter: number;
10722
+ }>, z.ZodObject<{
10723
+ id: z.ZodString;
10724
+ type: z.ZodLiteral<"conic-gradient">;
10725
+ colors: z.ZodArray<z.ZodObject<{
10726
+ id: z.ZodString;
10727
+ value: z.ZodString;
10728
+ position: z.ZodNumber;
10729
+ }, "strip", z.ZodTypeAny, {
10730
+ position: number;
10731
+ id: string;
10732
+ value: string;
10733
+ }, {
10734
+ position: number;
10735
+ id: string;
10736
+ value: string;
10737
+ }>, "many">;
10738
+ center: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
10739
+ angle: z.ZodNumber;
10740
+ blendMode: z.ZodString;
10741
+ }, "strip", z.ZodTypeAny, {
10742
+ center: [number, number];
10743
+ id: string;
10744
+ type: "conic-gradient";
10745
+ blendMode: string;
10746
+ colors: {
10747
+ position: number;
10748
+ id: string;
10749
+ value: string;
10750
+ }[];
10751
+ angle: number;
10752
+ }, {
10753
+ center: [number, number];
10754
+ id: string;
10755
+ type: "conic-gradient";
10756
+ blendMode: string;
10757
+ colors: {
10758
+ position: number;
10759
+ id: string;
10760
+ value: string;
10761
+ }[];
10762
+ angle: number;
10763
+ }>, z.ZodObject<{
10764
+ id: z.ZodString;
10765
+ type: z.ZodLiteral<"image">;
10766
+ src: z.ZodString;
10767
+ behavior: z.ZodString;
10768
+ backgroundSize: z.ZodNumber;
10769
+ opacity: z.ZodNumber;
10770
+ blendMode: z.ZodString;
10771
+ rotation: z.ZodOptional<z.ZodNumber>;
10772
+ }, "strip", z.ZodTypeAny, {
10773
+ opacity: number;
10774
+ id: string;
10775
+ type: "image";
10776
+ blendMode: string;
10777
+ src: string;
10778
+ behavior: string;
10779
+ backgroundSize: number;
10780
+ rotation?: number | undefined;
10781
+ }, {
10782
+ opacity: number;
10783
+ id: string;
10784
+ type: "image";
10785
+ blendMode: string;
10786
+ src: string;
10787
+ behavior: string;
10788
+ backgroundSize: number;
10789
+ rotation?: number | undefined;
10790
+ }>]>, "many">;
10791
+ in: z.ZodObject<{
10792
+ timing: z.ZodString;
10793
+ duration: z.ZodNumber;
10794
+ delay: z.ZodNumber;
10795
+ }, "strip", z.ZodTypeAny, {
10796
+ timing: string;
10797
+ duration: number;
10798
+ delay: number;
10799
+ }, {
10800
+ timing: string;
10801
+ duration: number;
10802
+ delay: number;
10803
+ }>;
10804
+ out: z.ZodObject<{
10805
+ timing: z.ZodString;
10806
+ duration: z.ZodNumber;
10807
+ delay: z.ZodNumber;
10808
+ }, "strip", z.ZodTypeAny, {
10809
+ timing: string;
10810
+ duration: number;
10811
+ delay: number;
10812
+ }, {
10813
+ timing: string;
10814
+ duration: number;
10815
+ delay: number;
10816
+ }>;
10817
+ }, "strip", z.ZodTypeAny, {
10818
+ value: ({
10819
+ id: string;
10820
+ value: string;
10821
+ type: "solid";
10822
+ blendMode: string;
10823
+ } | {
10824
+ id: string;
10825
+ type: "linear-gradient";
10826
+ blendMode: string;
10827
+ colors: {
10828
+ position: number;
10829
+ id: string;
10830
+ value: string;
10831
+ }[];
10832
+ start: [number, number];
10833
+ end: [number, number];
10834
+ angle: number;
10835
+ } | {
10836
+ center: [number, number];
10837
+ id: string;
10838
+ type: "radial-gradient";
10839
+ blendMode: string;
10840
+ colors: {
10841
+ position: number;
10842
+ id: string;
10843
+ value: string;
10844
+ }[];
10845
+ angle: number;
10846
+ diameter: number;
10847
+ } | {
10848
+ center: [number, number];
10849
+ id: string;
10850
+ type: "conic-gradient";
10851
+ blendMode: string;
10852
+ colors: {
10853
+ position: number;
10854
+ id: string;
10855
+ value: string;
10856
+ }[];
10857
+ angle: number;
10858
+ } | {
10859
+ opacity: number;
10860
+ id: string;
10861
+ type: "image";
10862
+ blendMode: string;
10863
+ src: string;
10864
+ behavior: string;
10865
+ backgroundSize: number;
10866
+ rotation?: number | undefined;
10867
+ })[];
8911
10868
  in: {
8912
10869
  timing: string;
8913
10870
  duration: number;
@@ -8919,7 +10876,56 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
8919
10876
  delay: number;
8920
10877
  };
8921
10878
  }, {
8922
- value: string;
10879
+ value: ({
10880
+ id: string;
10881
+ value: string;
10882
+ type: "solid";
10883
+ blendMode: string;
10884
+ } | {
10885
+ id: string;
10886
+ type: "linear-gradient";
10887
+ blendMode: string;
10888
+ colors: {
10889
+ position: number;
10890
+ id: string;
10891
+ value: string;
10892
+ }[];
10893
+ start: [number, number];
10894
+ end: [number, number];
10895
+ angle: number;
10896
+ } | {
10897
+ center: [number, number];
10898
+ id: string;
10899
+ type: "radial-gradient";
10900
+ blendMode: string;
10901
+ colors: {
10902
+ position: number;
10903
+ id: string;
10904
+ value: string;
10905
+ }[];
10906
+ angle: number;
10907
+ diameter: number;
10908
+ } | {
10909
+ center: [number, number];
10910
+ id: string;
10911
+ type: "conic-gradient";
10912
+ blendMode: string;
10913
+ colors: {
10914
+ position: number;
10915
+ id: string;
10916
+ value: string;
10917
+ }[];
10918
+ angle: number;
10919
+ } | {
10920
+ opacity: number;
10921
+ id: string;
10922
+ type: "image";
10923
+ blendMode: string;
10924
+ src: string;
10925
+ behavior: string;
10926
+ backgroundSize: number;
10927
+ rotation?: number | undefined;
10928
+ })[];
8923
10929
  in: {
8924
10930
  timing: string;
8925
10931
  duration: number;
@@ -9382,8 +11388,57 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
9382
11388
  delay: number;
9383
11389
  };
9384
11390
  } | undefined;
9385
- strokeColor?: {
9386
- value: string;
11391
+ strokeFill?: {
11392
+ value: ({
11393
+ id: string;
11394
+ value: string;
11395
+ type: "solid";
11396
+ blendMode: string;
11397
+ } | {
11398
+ id: string;
11399
+ type: "linear-gradient";
11400
+ blendMode: string;
11401
+ colors: {
11402
+ position: number;
11403
+ id: string;
11404
+ value: string;
11405
+ }[];
11406
+ start: [number, number];
11407
+ end: [number, number];
11408
+ angle: number;
11409
+ } | {
11410
+ center: [number, number];
11411
+ id: string;
11412
+ type: "radial-gradient";
11413
+ blendMode: string;
11414
+ colors: {
11415
+ position: number;
11416
+ id: string;
11417
+ value: string;
11418
+ }[];
11419
+ angle: number;
11420
+ diameter: number;
11421
+ } | {
11422
+ center: [number, number];
11423
+ id: string;
11424
+ type: "conic-gradient";
11425
+ blendMode: string;
11426
+ colors: {
11427
+ position: number;
11428
+ id: string;
11429
+ value: string;
11430
+ }[];
11431
+ angle: number;
11432
+ } | {
11433
+ opacity: number;
11434
+ id: string;
11435
+ type: "image";
11436
+ blendMode: string;
11437
+ src: string;
11438
+ behavior: string;
11439
+ backgroundSize: number;
11440
+ rotation?: number | undefined;
11441
+ })[];
9387
11442
  in: {
9388
11443
  timing: string;
9389
11444
  duration: number;
@@ -9395,8 +11450,57 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
9395
11450
  delay: number;
9396
11451
  };
9397
11452
  } | undefined;
9398
- fillColor?: {
9399
- value: string;
11453
+ fill?: {
11454
+ value: ({
11455
+ id: string;
11456
+ value: string;
11457
+ type: "solid";
11458
+ blendMode: string;
11459
+ } | {
11460
+ id: string;
11461
+ type: "linear-gradient";
11462
+ blendMode: string;
11463
+ colors: {
11464
+ position: number;
11465
+ id: string;
11466
+ value: string;
11467
+ }[];
11468
+ start: [number, number];
11469
+ end: [number, number];
11470
+ angle: number;
11471
+ } | {
11472
+ center: [number, number];
11473
+ id: string;
11474
+ type: "radial-gradient";
11475
+ blendMode: string;
11476
+ colors: {
11477
+ position: number;
11478
+ id: string;
11479
+ value: string;
11480
+ }[];
11481
+ angle: number;
11482
+ diameter: number;
11483
+ } | {
11484
+ center: [number, number];
11485
+ id: string;
11486
+ type: "conic-gradient";
11487
+ blendMode: string;
11488
+ colors: {
11489
+ position: number;
11490
+ id: string;
11491
+ value: string;
11492
+ }[];
11493
+ angle: number;
11494
+ } | {
11495
+ opacity: number;
11496
+ id: string;
11497
+ type: "image";
11498
+ blendMode: string;
11499
+ src: string;
11500
+ behavior: string;
11501
+ backgroundSize: number;
11502
+ rotation?: number | undefined;
11503
+ })[];
9400
11504
  in: {
9401
11505
  timing: string;
9402
11506
  duration: number;
@@ -9539,21 +11643,119 @@ export declare const ItemStateParamsSchema: z.ZodUnion<[z.ZodObject<{
9539
11643
  delay: number;
9540
11644
  };
9541
11645
  } | undefined;
9542
- strokeColor?: {
9543
- value: string;
9544
- in: {
9545
- timing: string;
9546
- duration: number;
9547
- delay: number;
9548
- };
9549
- out: {
9550
- timing: string;
9551
- duration: number;
9552
- delay: number;
9553
- };
9554
- } | undefined;
9555
- fillColor?: {
9556
- value: string;
11646
+ strokeFill?: {
11647
+ value: ({
11648
+ id: string;
11649
+ value: string;
11650
+ type: "solid";
11651
+ blendMode: string;
11652
+ } | {
11653
+ id: string;
11654
+ type: "linear-gradient";
11655
+ blendMode: string;
11656
+ colors: {
11657
+ position: number;
11658
+ id: string;
11659
+ value: string;
11660
+ }[];
11661
+ start: [number, number];
11662
+ end: [number, number];
11663
+ angle: number;
11664
+ } | {
11665
+ center: [number, number];
11666
+ id: string;
11667
+ type: "radial-gradient";
11668
+ blendMode: string;
11669
+ colors: {
11670
+ position: number;
11671
+ id: string;
11672
+ value: string;
11673
+ }[];
11674
+ angle: number;
11675
+ diameter: number;
11676
+ } | {
11677
+ center: [number, number];
11678
+ id: string;
11679
+ type: "conic-gradient";
11680
+ blendMode: string;
11681
+ colors: {
11682
+ position: number;
11683
+ id: string;
11684
+ value: string;
11685
+ }[];
11686
+ angle: number;
11687
+ } | {
11688
+ opacity: number;
11689
+ id: string;
11690
+ type: "image";
11691
+ blendMode: string;
11692
+ src: string;
11693
+ behavior: string;
11694
+ backgroundSize: number;
11695
+ rotation?: number | undefined;
11696
+ })[];
11697
+ in: {
11698
+ timing: string;
11699
+ duration: number;
11700
+ delay: number;
11701
+ };
11702
+ out: {
11703
+ timing: string;
11704
+ duration: number;
11705
+ delay: number;
11706
+ };
11707
+ } | undefined;
11708
+ fill?: {
11709
+ value: ({
11710
+ id: string;
11711
+ value: string;
11712
+ type: "solid";
11713
+ blendMode: string;
11714
+ } | {
11715
+ id: string;
11716
+ type: "linear-gradient";
11717
+ blendMode: string;
11718
+ colors: {
11719
+ position: number;
11720
+ id: string;
11721
+ value: string;
11722
+ }[];
11723
+ start: [number, number];
11724
+ end: [number, number];
11725
+ angle: number;
11726
+ } | {
11727
+ center: [number, number];
11728
+ id: string;
11729
+ type: "radial-gradient";
11730
+ blendMode: string;
11731
+ colors: {
11732
+ position: number;
11733
+ id: string;
11734
+ value: string;
11735
+ }[];
11736
+ angle: number;
11737
+ diameter: number;
11738
+ } | {
11739
+ center: [number, number];
11740
+ id: string;
11741
+ type: "conic-gradient";
11742
+ blendMode: string;
11743
+ colors: {
11744
+ position: number;
11745
+ id: string;
11746
+ value: string;
11747
+ }[];
11748
+ angle: number;
11749
+ } | {
11750
+ opacity: number;
11751
+ id: string;
11752
+ type: "image";
11753
+ blendMode: string;
11754
+ src: string;
11755
+ behavior: string;
11756
+ backgroundSize: number;
11757
+ rotation?: number | undefined;
11758
+ })[];
9557
11759
  in: {
9558
11760
  timing: string;
9559
11761
  duration: number;