@elementor/editor-props 4.0.0-552 → 4.0.0-573
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/dist/index.d.mts +324 -24
- package/dist/index.d.ts +324 -24
- package/dist/index.js +145 -50
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +142 -50
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -0
- package/src/prop-types/email.ts +22 -0
- package/src/prop-types/html-v2.ts +30 -0
- package/src/prop-types/index.ts +2 -0
- package/src/prop-types/string-array.ts +4 -3
- package/src/types.ts +1 -0
- package/src/utils/parse-html-children.ts +82 -0
- package/src/utils/prop-dependency-utils.ts +5 -1
package/dist/index.d.mts
CHANGED
|
@@ -9,6 +9,7 @@ type DependencyTerm = {
|
|
|
9
9
|
nestedPath?: string[];
|
|
10
10
|
value: PropValue;
|
|
11
11
|
newValue?: TransformablePropValue$1<string>;
|
|
12
|
+
effect?: 'disable' | 'hide';
|
|
12
13
|
};
|
|
13
14
|
type Dependency = {
|
|
14
15
|
relation: 'or' | 'and';
|
|
@@ -138,23 +139,15 @@ declare function createPropUtils<TKey extends string, TValue extends PropValue>(
|
|
|
138
139
|
$$type: z.ZodLiteral<TKey>;
|
|
139
140
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
140
141
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
141
|
-
}, "strict", z.ZodTypeAny,
|
|
142
|
+
}, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
|
|
142
143
|
$$type: z.ZodLiteral<TKey>;
|
|
143
144
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
144
145
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
145
|
-
}>, any>]: z.
|
|
146
|
+
}>, any> extends infer T ? { [k in keyof T]: T[k]; } : never, z.baseObjectInputType<{
|
|
146
147
|
$$type: z.ZodLiteral<TKey>;
|
|
147
148
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
148
149
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
149
|
-
}
|
|
150
|
-
$$type: z.ZodLiteral<TKey>;
|
|
151
|
-
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
152
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
153
|
-
}>]: z.baseObjectInputType<{
|
|
154
|
-
$$type: z.ZodLiteral<TKey>;
|
|
155
|
-
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
156
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
157
|
-
}>[k_1]; }>;
|
|
150
|
+
}> extends infer T_1 ? { [k_1 in keyof T_1]: T_1[k_1]; } : never>;
|
|
158
151
|
key: TKey;
|
|
159
152
|
};
|
|
160
153
|
declare function createArrayPropUtils<TKey extends string, TValue extends PropValue>(key: TKey, valueSchema: ZodType<TValue>, overrideKey?: string): {
|
|
@@ -1326,27 +1319,79 @@ declare const stringPropTypeUtil: {
|
|
|
1326
1319
|
type StringPropValue = z.infer<typeof stringPropTypeUtil.schema>;
|
|
1327
1320
|
|
|
1328
1321
|
declare const stringArrayPropTypeUtil: {
|
|
1329
|
-
extract: (prop: unknown) =>
|
|
1330
|
-
|
|
1322
|
+
extract: (prop: unknown) => {
|
|
1323
|
+
$$type: "string";
|
|
1324
|
+
value: string | null;
|
|
1325
|
+
disabled?: boolean | undefined;
|
|
1326
|
+
}[] | null;
|
|
1327
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<string, {
|
|
1328
|
+
$$type: "string";
|
|
1329
|
+
value: string | null;
|
|
1330
|
+
disabled?: boolean | undefined;
|
|
1331
|
+
}[]>;
|
|
1331
1332
|
create: {
|
|
1332
|
-
(value:
|
|
1333
|
-
|
|
1334
|
-
|
|
1333
|
+
(value: {
|
|
1334
|
+
$$type: "string";
|
|
1335
|
+
value: string | null;
|
|
1336
|
+
disabled?: boolean | undefined;
|
|
1337
|
+
}[]): TransformablePropValue$1<string, {
|
|
1338
|
+
$$type: "string";
|
|
1339
|
+
value: string | null;
|
|
1340
|
+
disabled?: boolean | undefined;
|
|
1341
|
+
}[]>;
|
|
1342
|
+
(value: {
|
|
1343
|
+
$$type: "string";
|
|
1344
|
+
value: string | null;
|
|
1345
|
+
disabled?: boolean | undefined;
|
|
1346
|
+
}[], createOptions?: CreateOptions): TransformablePropValue$1<string, {
|
|
1347
|
+
$$type: "string";
|
|
1348
|
+
value: string | null;
|
|
1349
|
+
disabled?: boolean | undefined;
|
|
1350
|
+
}[]>;
|
|
1351
|
+
(value: (prev?: {
|
|
1352
|
+
$$type: "string";
|
|
1353
|
+
value: string | null;
|
|
1354
|
+
disabled?: boolean | undefined;
|
|
1355
|
+
}[] | undefined) => {
|
|
1356
|
+
$$type: "string";
|
|
1357
|
+
value: string | null;
|
|
1358
|
+
disabled?: boolean | undefined;
|
|
1359
|
+
}[], createOptions: CreateOptions): TransformablePropValue$1<string, {
|
|
1360
|
+
$$type: "string";
|
|
1361
|
+
value: string | null;
|
|
1362
|
+
disabled?: boolean | undefined;
|
|
1363
|
+
}[]>;
|
|
1335
1364
|
};
|
|
1336
1365
|
schema: z.ZodObject<{
|
|
1337
|
-
$$type: z.ZodLiteral<
|
|
1338
|
-
value: z.ZodType<
|
|
1366
|
+
$$type: z.ZodLiteral<string>;
|
|
1367
|
+
value: z.ZodType<{
|
|
1368
|
+
$$type: "string";
|
|
1369
|
+
value: string | null;
|
|
1370
|
+
disabled?: boolean | undefined;
|
|
1371
|
+
}[], z.ZodTypeDef, {
|
|
1372
|
+
$$type: "string";
|
|
1373
|
+
value: string | null;
|
|
1374
|
+
disabled?: boolean | undefined;
|
|
1375
|
+
}[]>;
|
|
1339
1376
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1340
1377
|
}, "strict", z.ZodTypeAny, {
|
|
1341
|
-
$$type:
|
|
1342
|
-
value:
|
|
1378
|
+
$$type: string;
|
|
1379
|
+
value: {
|
|
1380
|
+
$$type: "string";
|
|
1381
|
+
value: string | null;
|
|
1382
|
+
disabled?: boolean | undefined;
|
|
1383
|
+
}[];
|
|
1343
1384
|
disabled?: boolean | undefined;
|
|
1344
1385
|
}, {
|
|
1345
|
-
$$type:
|
|
1346
|
-
value:
|
|
1386
|
+
$$type: string;
|
|
1387
|
+
value: {
|
|
1388
|
+
$$type: "string";
|
|
1389
|
+
value: string | null;
|
|
1390
|
+
disabled?: boolean | undefined;
|
|
1391
|
+
}[];
|
|
1347
1392
|
disabled?: boolean | undefined;
|
|
1348
1393
|
}>;
|
|
1349
|
-
key:
|
|
1394
|
+
key: string;
|
|
1350
1395
|
};
|
|
1351
1396
|
type StringArrayPropValue = z.infer<typeof stringArrayPropTypeUtil.schema>;
|
|
1352
1397
|
|
|
@@ -1580,6 +1625,174 @@ declare const linkPropTypeUtil: {
|
|
|
1580
1625
|
};
|
|
1581
1626
|
type LinkPropValue = z.infer<typeof linkPropTypeUtil.schema>;
|
|
1582
1627
|
|
|
1628
|
+
declare const emailPropTypeUtil: {
|
|
1629
|
+
extract: (prop: unknown) => {
|
|
1630
|
+
message?: any;
|
|
1631
|
+
to?: any;
|
|
1632
|
+
subject?: any;
|
|
1633
|
+
from?: any;
|
|
1634
|
+
'meta-data'?: any;
|
|
1635
|
+
'send-as'?: any;
|
|
1636
|
+
'from-name'?: any;
|
|
1637
|
+
'reply-to'?: any;
|
|
1638
|
+
cc?: any;
|
|
1639
|
+
bcc?: any;
|
|
1640
|
+
} | null;
|
|
1641
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<"email", {
|
|
1642
|
+
message?: any;
|
|
1643
|
+
to?: any;
|
|
1644
|
+
subject?: any;
|
|
1645
|
+
from?: any;
|
|
1646
|
+
'meta-data'?: any;
|
|
1647
|
+
'send-as'?: any;
|
|
1648
|
+
'from-name'?: any;
|
|
1649
|
+
'reply-to'?: any;
|
|
1650
|
+
cc?: any;
|
|
1651
|
+
bcc?: any;
|
|
1652
|
+
}>;
|
|
1653
|
+
create: {
|
|
1654
|
+
(value: {
|
|
1655
|
+
message?: any;
|
|
1656
|
+
to?: any;
|
|
1657
|
+
subject?: any;
|
|
1658
|
+
from?: any;
|
|
1659
|
+
'meta-data'?: any;
|
|
1660
|
+
'send-as'?: any;
|
|
1661
|
+
'from-name'?: any;
|
|
1662
|
+
'reply-to'?: any;
|
|
1663
|
+
cc?: any;
|
|
1664
|
+
bcc?: any;
|
|
1665
|
+
}): TransformablePropValue$1<"email", {
|
|
1666
|
+
message?: any;
|
|
1667
|
+
to?: any;
|
|
1668
|
+
subject?: any;
|
|
1669
|
+
from?: any;
|
|
1670
|
+
'meta-data'?: any;
|
|
1671
|
+
'send-as'?: any;
|
|
1672
|
+
'from-name'?: any;
|
|
1673
|
+
'reply-to'?: any;
|
|
1674
|
+
cc?: any;
|
|
1675
|
+
bcc?: any;
|
|
1676
|
+
}>;
|
|
1677
|
+
(value: {
|
|
1678
|
+
message?: any;
|
|
1679
|
+
to?: any;
|
|
1680
|
+
subject?: any;
|
|
1681
|
+
from?: any;
|
|
1682
|
+
'meta-data'?: any;
|
|
1683
|
+
'send-as'?: any;
|
|
1684
|
+
'from-name'?: any;
|
|
1685
|
+
'reply-to'?: any;
|
|
1686
|
+
cc?: any;
|
|
1687
|
+
bcc?: any;
|
|
1688
|
+
}, createOptions?: CreateOptions): TransformablePropValue$1<"email", {
|
|
1689
|
+
message?: any;
|
|
1690
|
+
to?: any;
|
|
1691
|
+
subject?: any;
|
|
1692
|
+
from?: any;
|
|
1693
|
+
'meta-data'?: any;
|
|
1694
|
+
'send-as'?: any;
|
|
1695
|
+
'from-name'?: any;
|
|
1696
|
+
'reply-to'?: any;
|
|
1697
|
+
cc?: any;
|
|
1698
|
+
bcc?: any;
|
|
1699
|
+
}>;
|
|
1700
|
+
(value: (prev?: {
|
|
1701
|
+
message?: any;
|
|
1702
|
+
to?: any;
|
|
1703
|
+
subject?: any;
|
|
1704
|
+
from?: any;
|
|
1705
|
+
'meta-data'?: any;
|
|
1706
|
+
'send-as'?: any;
|
|
1707
|
+
'from-name'?: any;
|
|
1708
|
+
'reply-to'?: any;
|
|
1709
|
+
cc?: any;
|
|
1710
|
+
bcc?: any;
|
|
1711
|
+
} | undefined) => {
|
|
1712
|
+
message?: any;
|
|
1713
|
+
to?: any;
|
|
1714
|
+
subject?: any;
|
|
1715
|
+
from?: any;
|
|
1716
|
+
'meta-data'?: any;
|
|
1717
|
+
'send-as'?: any;
|
|
1718
|
+
'from-name'?: any;
|
|
1719
|
+
'reply-to'?: any;
|
|
1720
|
+
cc?: any;
|
|
1721
|
+
bcc?: any;
|
|
1722
|
+
}, createOptions: CreateOptions): TransformablePropValue$1<"email", {
|
|
1723
|
+
message?: any;
|
|
1724
|
+
to?: any;
|
|
1725
|
+
subject?: any;
|
|
1726
|
+
from?: any;
|
|
1727
|
+
'meta-data'?: any;
|
|
1728
|
+
'send-as'?: any;
|
|
1729
|
+
'from-name'?: any;
|
|
1730
|
+
'reply-to'?: any;
|
|
1731
|
+
cc?: any;
|
|
1732
|
+
bcc?: any;
|
|
1733
|
+
}>;
|
|
1734
|
+
};
|
|
1735
|
+
schema: z.ZodObject<{
|
|
1736
|
+
$$type: z.ZodLiteral<"email">;
|
|
1737
|
+
value: z.ZodType<{
|
|
1738
|
+
message?: any;
|
|
1739
|
+
to?: any;
|
|
1740
|
+
subject?: any;
|
|
1741
|
+
from?: any;
|
|
1742
|
+
'meta-data'?: any;
|
|
1743
|
+
'send-as'?: any;
|
|
1744
|
+
'from-name'?: any;
|
|
1745
|
+
'reply-to'?: any;
|
|
1746
|
+
cc?: any;
|
|
1747
|
+
bcc?: any;
|
|
1748
|
+
}, z.ZodTypeDef, {
|
|
1749
|
+
message?: any;
|
|
1750
|
+
to?: any;
|
|
1751
|
+
subject?: any;
|
|
1752
|
+
from?: any;
|
|
1753
|
+
'meta-data'?: any;
|
|
1754
|
+
'send-as'?: any;
|
|
1755
|
+
'from-name'?: any;
|
|
1756
|
+
'reply-to'?: any;
|
|
1757
|
+
cc?: any;
|
|
1758
|
+
bcc?: any;
|
|
1759
|
+
}>;
|
|
1760
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1761
|
+
}, "strict", z.ZodTypeAny, {
|
|
1762
|
+
$$type: "email";
|
|
1763
|
+
value: {
|
|
1764
|
+
message?: any;
|
|
1765
|
+
to?: any;
|
|
1766
|
+
subject?: any;
|
|
1767
|
+
from?: any;
|
|
1768
|
+
'meta-data'?: any;
|
|
1769
|
+
'send-as'?: any;
|
|
1770
|
+
'from-name'?: any;
|
|
1771
|
+
'reply-to'?: any;
|
|
1772
|
+
cc?: any;
|
|
1773
|
+
bcc?: any;
|
|
1774
|
+
};
|
|
1775
|
+
disabled?: boolean | undefined;
|
|
1776
|
+
}, {
|
|
1777
|
+
$$type: "email";
|
|
1778
|
+
value: {
|
|
1779
|
+
message?: any;
|
|
1780
|
+
to?: any;
|
|
1781
|
+
subject?: any;
|
|
1782
|
+
from?: any;
|
|
1783
|
+
'meta-data'?: any;
|
|
1784
|
+
'send-as'?: any;
|
|
1785
|
+
'from-name'?: any;
|
|
1786
|
+
'reply-to'?: any;
|
|
1787
|
+
cc?: any;
|
|
1788
|
+
bcc?: any;
|
|
1789
|
+
};
|
|
1790
|
+
disabled?: boolean | undefined;
|
|
1791
|
+
}>;
|
|
1792
|
+
key: "email";
|
|
1793
|
+
};
|
|
1794
|
+
type EmailPropValue = z.infer<typeof emailPropTypeUtil.schema>;
|
|
1795
|
+
|
|
1583
1796
|
declare const selectionSizePropTypeUtil: {
|
|
1584
1797
|
extract: (prop: unknown) => {
|
|
1585
1798
|
selection: {
|
|
@@ -2694,6 +2907,87 @@ declare const htmlPropTypeUtil: {
|
|
|
2694
2907
|
};
|
|
2695
2908
|
type HtmlPropValue = z.infer<typeof htmlPropTypeUtil.schema>;
|
|
2696
2909
|
|
|
2910
|
+
interface ChildElement {
|
|
2911
|
+
id: string;
|
|
2912
|
+
type: string;
|
|
2913
|
+
content?: string;
|
|
2914
|
+
children?: ChildElement[];
|
|
2915
|
+
}
|
|
2916
|
+
declare const htmlV2ValueSchema: z.ZodObject<{
|
|
2917
|
+
content: z.ZodNullable<z.ZodString>;
|
|
2918
|
+
children: z.ZodArray<z.ZodType<ChildElement, z.ZodTypeDef, ChildElement>, "many">;
|
|
2919
|
+
}, "strip", z.ZodTypeAny, {
|
|
2920
|
+
content: string | null;
|
|
2921
|
+
children: ChildElement[];
|
|
2922
|
+
}, {
|
|
2923
|
+
content: string | null;
|
|
2924
|
+
children: ChildElement[];
|
|
2925
|
+
}>;
|
|
2926
|
+
declare const htmlV2PropTypeUtil: {
|
|
2927
|
+
extract: (prop: unknown) => {
|
|
2928
|
+
content: string | null;
|
|
2929
|
+
children: ChildElement[];
|
|
2930
|
+
} | null;
|
|
2931
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<"html-v2", {
|
|
2932
|
+
content: string | null;
|
|
2933
|
+
children: ChildElement[];
|
|
2934
|
+
}>;
|
|
2935
|
+
create: {
|
|
2936
|
+
(value: {
|
|
2937
|
+
content: string | null;
|
|
2938
|
+
children: ChildElement[];
|
|
2939
|
+
}): TransformablePropValue$1<"html-v2", {
|
|
2940
|
+
content: string | null;
|
|
2941
|
+
children: ChildElement[];
|
|
2942
|
+
}>;
|
|
2943
|
+
(value: {
|
|
2944
|
+
content: string | null;
|
|
2945
|
+
children: ChildElement[];
|
|
2946
|
+
}, createOptions?: CreateOptions): TransformablePropValue$1<"html-v2", {
|
|
2947
|
+
content: string | null;
|
|
2948
|
+
children: ChildElement[];
|
|
2949
|
+
}>;
|
|
2950
|
+
(value: (prev?: {
|
|
2951
|
+
content: string | null;
|
|
2952
|
+
children: ChildElement[];
|
|
2953
|
+
} | undefined) => {
|
|
2954
|
+
content: string | null;
|
|
2955
|
+
children: ChildElement[];
|
|
2956
|
+
}, createOptions: CreateOptions): TransformablePropValue$1<"html-v2", {
|
|
2957
|
+
content: string | null;
|
|
2958
|
+
children: ChildElement[];
|
|
2959
|
+
}>;
|
|
2960
|
+
};
|
|
2961
|
+
schema: z.ZodObject<{
|
|
2962
|
+
$$type: z.ZodLiteral<"html-v2">;
|
|
2963
|
+
value: z.ZodType<{
|
|
2964
|
+
content: string | null;
|
|
2965
|
+
children: ChildElement[];
|
|
2966
|
+
}, z.ZodTypeDef, {
|
|
2967
|
+
content: string | null;
|
|
2968
|
+
children: ChildElement[];
|
|
2969
|
+
}>;
|
|
2970
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2971
|
+
}, "strict", z.ZodTypeAny, {
|
|
2972
|
+
$$type: "html-v2";
|
|
2973
|
+
value: {
|
|
2974
|
+
content: string | null;
|
|
2975
|
+
children: ChildElement[];
|
|
2976
|
+
};
|
|
2977
|
+
disabled?: boolean | undefined;
|
|
2978
|
+
}, {
|
|
2979
|
+
$$type: "html-v2";
|
|
2980
|
+
value: {
|
|
2981
|
+
content: string | null;
|
|
2982
|
+
children: ChildElement[];
|
|
2983
|
+
};
|
|
2984
|
+
disabled?: boolean | undefined;
|
|
2985
|
+
}>;
|
|
2986
|
+
key: "html-v2";
|
|
2987
|
+
};
|
|
2988
|
+
type HtmlV2PropValue = z.infer<typeof htmlV2PropTypeUtil.schema>;
|
|
2989
|
+
type HtmlV2Value = z.infer<typeof htmlV2ValueSchema>;
|
|
2990
|
+
|
|
2697
2991
|
declare const cssFilterFunctionPropUtil: {
|
|
2698
2992
|
extract: (prop: unknown) => {
|
|
2699
2993
|
func: {
|
|
@@ -6179,6 +6473,12 @@ declare function evaluateTerm(term: DependencyTerm, actualValue: unknown): boole
|
|
|
6179
6473
|
declare function extractValue(path: string[], elementValues: PropValue, nestedPath?: string[]): TransformablePropValue$1<PropKey> | null;
|
|
6180
6474
|
declare function isDependency(term: DependencyTerm | Dependency): term is Dependency;
|
|
6181
6475
|
|
|
6476
|
+
interface ParseResult {
|
|
6477
|
+
content: string;
|
|
6478
|
+
children: ChildElement[];
|
|
6479
|
+
}
|
|
6480
|
+
declare function parseHtmlChildren(html: string): ParseResult;
|
|
6481
|
+
|
|
6182
6482
|
declare const Schema: {
|
|
6183
6483
|
jsonSchemaToPropType: typeof jsonSchemaToPropType;
|
|
6184
6484
|
propTypeToJsonSchema: typeof propTypeToJsonSchema;
|
|
@@ -6204,4 +6504,4 @@ declare const Schema: {
|
|
|
6204
6504
|
removeIntention: typeof removeIntention;
|
|
6205
6505
|
};
|
|
6206
6506
|
|
|
6207
|
-
export { type AnyTransformable, type ArrayPropType, type ArrayPropValue, type BackdropFilterItemPropValue, type BackdropFilterPropValue, type BackgroundColorOverlayPropValue, type BackgroundGradientOverlayPropValue, type BackgroundImageOverlayPropValue, type BackgroundImagePositionOffsetPropValue, type BackgroundImageSizeScalePropValue, type BackgroundOverlayImagePropType, type BackgroundOverlayItemPropValue, type BackgroundOverlayPropType, type BackgroundOverlayPropValue, type BackgroundPropValue, type BooleanPropValue, type BorderRadiusPropValue, type BorderWidthPropValue, type BoxShadowPropValue, CLASSES_PROP_KEY, type ClassesPropValue, type ColorPropValue, type ColorStopPropValue, type CreateOptions, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type FilterItemPropValue, type FilterPropValue, type FlexPropValue, type GradientColorStopPropValue, type HtmlPropValue, type ImageAttachmentIdPropValue, type ImagePropValue, type ImageSrcPropValue, type JsonSchema7, type KeyValuePropValue, type LayoutDirectionPropValue, type LinkPropValue, type MoveTransformPropValue, type NumberPropValue, type ObjectPropType, type ObjectPropValue, type PerspectiveOriginPropValue, type PlainPropType, type PlainPropValue, type PositionPropTypeValue, type PropKey, type PropType, type PropTypeKey, type PropTypeUtil, type PropValue, type Props, type PropsSchema, type QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type TransformFunctionsItemPropValue, type TransformFunctionsPropValue, type TransformOriginPropValue, type TransformPropValue, type TransformablePropType, type TransformablePropValue$1 as TransformablePropValue, type UnionPropType, type UrlPropValue, backdropFilterPropTypeUtil, backgroundColorOverlayPropTypeUtil, backgroundGradientOverlayPropTypeUtil, backgroundImageOverlayPropTypeUtil, backgroundImagePositionOffsetPropTypeUtil, backgroundImageSizeScalePropTypeUtil, backgroundOverlayItem, backgroundOverlayPropTypeUtil, backgroundPropTypeUtil, blurFilterPropTypeUtil, booleanPropTypeUtil, borderRadiusPropTypeUtil, borderWidthPropTypeUtil, boxShadowPropTypeUtil, classesPropTypeUtil, colorPropTypeUtil, colorStopPropTypeUtil, colorToneFilterPropTypeUtil, createArrayPropUtils, createPropUtils, cssFilterFunctionPropUtil, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, htmlPropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryPropTypeUtil, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil };
|
|
6507
|
+
export { type AnyTransformable, type ArrayPropType, type ArrayPropValue, type BackdropFilterItemPropValue, type BackdropFilterPropValue, type BackgroundColorOverlayPropValue, type BackgroundGradientOverlayPropValue, type BackgroundImageOverlayPropValue, type BackgroundImagePositionOffsetPropValue, type BackgroundImageSizeScalePropValue, type BackgroundOverlayImagePropType, type BackgroundOverlayItemPropValue, type BackgroundOverlayPropType, type BackgroundOverlayPropValue, type BackgroundPropValue, type BooleanPropValue, type BorderRadiusPropValue, type BorderWidthPropValue, type BoxShadowPropValue, CLASSES_PROP_KEY, type ChildElement, type ClassesPropValue, type ColorPropValue, type ColorStopPropValue, type CreateOptions, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type EmailPropValue, type FilterItemPropValue, type FilterPropValue, type FlexPropValue, type GradientColorStopPropValue, type HtmlPropValue, type HtmlV2PropValue, type HtmlV2Value, type ImageAttachmentIdPropValue, type ImagePropValue, type ImageSrcPropValue, type JsonSchema7, type KeyValuePropValue, type LayoutDirectionPropValue, type LinkPropValue, type MoveTransformPropValue, type NumberPropValue, type ObjectPropType, type ObjectPropValue, type ParseResult, type PerspectiveOriginPropValue, type PlainPropType, type PlainPropValue, type PositionPropTypeValue, type PropKey, type PropType, type PropTypeKey, type PropTypeUtil, type PropValue, type Props, type PropsSchema, type QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type TransformFunctionsItemPropValue, type TransformFunctionsPropValue, type TransformOriginPropValue, type TransformPropValue, type TransformablePropType, type TransformablePropValue$1 as TransformablePropValue, type UnionPropType, type UrlPropValue, backdropFilterPropTypeUtil, backgroundColorOverlayPropTypeUtil, backgroundGradientOverlayPropTypeUtil, backgroundImageOverlayPropTypeUtil, backgroundImagePositionOffsetPropTypeUtil, backgroundImageSizeScalePropTypeUtil, backgroundOverlayItem, backgroundOverlayPropTypeUtil, backgroundPropTypeUtil, blurFilterPropTypeUtil, booleanPropTypeUtil, borderRadiusPropTypeUtil, borderWidthPropTypeUtil, boxShadowPropTypeUtil, classesPropTypeUtil, colorPropTypeUtil, colorStopPropTypeUtil, colorToneFilterPropTypeUtil, createArrayPropUtils, createPropUtils, cssFilterFunctionPropUtil, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, emailPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, htmlPropTypeUtil, htmlV2PropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, parseHtmlChildren, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryPropTypeUtil, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil };
|