@elementor/editor-props 4.0.0-564 → 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 +170 -1
- package/dist/index.d.ts +170 -1
- package/dist/index.js +92 -71
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +91 -71
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/prop-types/email.ts +22 -0
- package/src/prop-types/index.ts +1 -0
- package/src/types.ts +1 -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';
|
|
@@ -1624,6 +1625,174 @@ declare const linkPropTypeUtil: {
|
|
|
1624
1625
|
};
|
|
1625
1626
|
type LinkPropValue = z.infer<typeof linkPropTypeUtil.schema>;
|
|
1626
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
|
+
|
|
1627
1796
|
declare const selectionSizePropTypeUtil: {
|
|
1628
1797
|
extract: (prop: unknown) => {
|
|
1629
1798
|
selection: {
|
|
@@ -6335,4 +6504,4 @@ declare const Schema: {
|
|
|
6335
6504
|
removeIntention: typeof removeIntention;
|
|
6336
6505
|
};
|
|
6337
6506
|
|
|
6338
|
-
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 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, 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 };
|
|
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 };
|
package/dist/index.d.ts
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';
|
|
@@ -1624,6 +1625,174 @@ declare const linkPropTypeUtil: {
|
|
|
1624
1625
|
};
|
|
1625
1626
|
type LinkPropValue = z.infer<typeof linkPropTypeUtil.schema>;
|
|
1626
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
|
+
|
|
1627
1796
|
declare const selectionSizePropTypeUtil: {
|
|
1628
1797
|
extract: (prop: unknown) => {
|
|
1629
1798
|
selection: {
|
|
@@ -6335,4 +6504,4 @@ declare const Schema: {
|
|
|
6335
6504
|
removeIntention: typeof removeIntention;
|
|
6336
6505
|
};
|
|
6337
6506
|
|
|
6338
|
-
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 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, 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 };
|
|
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 };
|