@elementor/editor-editing-panel 4.2.0-869 → 4.2.0-871
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 +12 -10
- package/dist/index.d.ts +12 -10
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +24 -24
- package/src/controls-registry/controls-registry.tsx +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -705,11 +705,12 @@ declare const controlTypes: {
|
|
|
705
705
|
};
|
|
706
706
|
};
|
|
707
707
|
readonly chips: {
|
|
708
|
-
readonly component: ControlComponent<({ options }: {
|
|
708
|
+
readonly component: ControlComponent<({ options, freeChips }: {
|
|
709
709
|
options: {
|
|
710
710
|
label: string;
|
|
711
711
|
value: string;
|
|
712
712
|
}[];
|
|
713
|
+
freeChips?: boolean;
|
|
713
714
|
}) => react.JSX.Element>;
|
|
714
715
|
readonly layout: "full";
|
|
715
716
|
readonly propTypeUtil: {
|
|
@@ -1771,8 +1772,9 @@ declare const controlTypes: {
|
|
|
1771
1772
|
};
|
|
1772
1773
|
};
|
|
1773
1774
|
readonly email: {
|
|
1774
|
-
readonly component: ControlComponent<({ toPlaceholder }: {
|
|
1775
|
+
readonly component: ControlComponent<({ toPlaceholder, label }: {
|
|
1775
1776
|
toPlaceholder?: string;
|
|
1777
|
+
label?: string;
|
|
1776
1778
|
}) => react.JSX.Element>;
|
|
1777
1779
|
readonly layout: "custom";
|
|
1778
1780
|
readonly propTypeUtil: {
|
|
@@ -1788,7 +1790,7 @@ declare const controlTypes: {
|
|
|
1788
1790
|
cc?: any;
|
|
1789
1791
|
bcc?: any;
|
|
1790
1792
|
} | null;
|
|
1791
|
-
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"
|
|
1793
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1792
1794
|
message?: any;
|
|
1793
1795
|
to?: any;
|
|
1794
1796
|
subject?: any;
|
|
@@ -1812,7 +1814,7 @@ declare const controlTypes: {
|
|
|
1812
1814
|
"reply-to"?: any;
|
|
1813
1815
|
cc?: any;
|
|
1814
1816
|
bcc?: any;
|
|
1815
|
-
}): _elementor_editor_props.TransformablePropValue<"
|
|
1817
|
+
}): _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1816
1818
|
message?: any;
|
|
1817
1819
|
to?: any;
|
|
1818
1820
|
subject?: any;
|
|
@@ -1835,7 +1837,7 @@ declare const controlTypes: {
|
|
|
1835
1837
|
"reply-to"?: any;
|
|
1836
1838
|
cc?: any;
|
|
1837
1839
|
bcc?: any;
|
|
1838
|
-
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"
|
|
1840
|
+
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1839
1841
|
message?: any;
|
|
1840
1842
|
to?: any;
|
|
1841
1843
|
subject?: any;
|
|
@@ -1869,7 +1871,7 @@ declare const controlTypes: {
|
|
|
1869
1871
|
"reply-to"?: any;
|
|
1870
1872
|
cc?: any;
|
|
1871
1873
|
bcc?: any;
|
|
1872
|
-
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"
|
|
1874
|
+
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1873
1875
|
message?: any;
|
|
1874
1876
|
to?: any;
|
|
1875
1877
|
subject?: any;
|
|
@@ -1883,7 +1885,7 @@ declare const controlTypes: {
|
|
|
1883
1885
|
}>;
|
|
1884
1886
|
};
|
|
1885
1887
|
schema: zod.ZodObject<{
|
|
1886
|
-
$$type: zod.ZodLiteral<"
|
|
1888
|
+
$$type: zod.ZodLiteral<"emails">;
|
|
1887
1889
|
value: zod.ZodType<{
|
|
1888
1890
|
message?: any;
|
|
1889
1891
|
to?: any;
|
|
@@ -1909,7 +1911,7 @@ declare const controlTypes: {
|
|
|
1909
1911
|
}>;
|
|
1910
1912
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1911
1913
|
}, "strict", zod.ZodTypeAny, {
|
|
1912
|
-
$$type: "
|
|
1914
|
+
$$type: "emails";
|
|
1913
1915
|
value: {
|
|
1914
1916
|
message?: any;
|
|
1915
1917
|
to?: any;
|
|
@@ -1924,7 +1926,7 @@ declare const controlTypes: {
|
|
|
1924
1926
|
};
|
|
1925
1927
|
disabled?: boolean | undefined;
|
|
1926
1928
|
}, {
|
|
1927
|
-
$$type: "
|
|
1929
|
+
$$type: "emails";
|
|
1928
1930
|
value: {
|
|
1929
1931
|
message?: any;
|
|
1930
1932
|
to?: any;
|
|
@@ -1939,7 +1941,7 @@ declare const controlTypes: {
|
|
|
1939
1941
|
};
|
|
1940
1942
|
disabled?: boolean | undefined;
|
|
1941
1943
|
}>;
|
|
1942
|
-
key: "
|
|
1944
|
+
key: "emails";
|
|
1943
1945
|
};
|
|
1944
1946
|
};
|
|
1945
1947
|
readonly 'date-range': {
|
package/dist/index.d.ts
CHANGED
|
@@ -705,11 +705,12 @@ declare const controlTypes: {
|
|
|
705
705
|
};
|
|
706
706
|
};
|
|
707
707
|
readonly chips: {
|
|
708
|
-
readonly component: ControlComponent<({ options }: {
|
|
708
|
+
readonly component: ControlComponent<({ options, freeChips }: {
|
|
709
709
|
options: {
|
|
710
710
|
label: string;
|
|
711
711
|
value: string;
|
|
712
712
|
}[];
|
|
713
|
+
freeChips?: boolean;
|
|
713
714
|
}) => react.JSX.Element>;
|
|
714
715
|
readonly layout: "full";
|
|
715
716
|
readonly propTypeUtil: {
|
|
@@ -1771,8 +1772,9 @@ declare const controlTypes: {
|
|
|
1771
1772
|
};
|
|
1772
1773
|
};
|
|
1773
1774
|
readonly email: {
|
|
1774
|
-
readonly component: ControlComponent<({ toPlaceholder }: {
|
|
1775
|
+
readonly component: ControlComponent<({ toPlaceholder, label }: {
|
|
1775
1776
|
toPlaceholder?: string;
|
|
1777
|
+
label?: string;
|
|
1776
1778
|
}) => react.JSX.Element>;
|
|
1777
1779
|
readonly layout: "custom";
|
|
1778
1780
|
readonly propTypeUtil: {
|
|
@@ -1788,7 +1790,7 @@ declare const controlTypes: {
|
|
|
1788
1790
|
cc?: any;
|
|
1789
1791
|
bcc?: any;
|
|
1790
1792
|
} | null;
|
|
1791
|
-
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"
|
|
1793
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1792
1794
|
message?: any;
|
|
1793
1795
|
to?: any;
|
|
1794
1796
|
subject?: any;
|
|
@@ -1812,7 +1814,7 @@ declare const controlTypes: {
|
|
|
1812
1814
|
"reply-to"?: any;
|
|
1813
1815
|
cc?: any;
|
|
1814
1816
|
bcc?: any;
|
|
1815
|
-
}): _elementor_editor_props.TransformablePropValue<"
|
|
1817
|
+
}): _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1816
1818
|
message?: any;
|
|
1817
1819
|
to?: any;
|
|
1818
1820
|
subject?: any;
|
|
@@ -1835,7 +1837,7 @@ declare const controlTypes: {
|
|
|
1835
1837
|
"reply-to"?: any;
|
|
1836
1838
|
cc?: any;
|
|
1837
1839
|
bcc?: any;
|
|
1838
|
-
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"
|
|
1840
|
+
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1839
1841
|
message?: any;
|
|
1840
1842
|
to?: any;
|
|
1841
1843
|
subject?: any;
|
|
@@ -1869,7 +1871,7 @@ declare const controlTypes: {
|
|
|
1869
1871
|
"reply-to"?: any;
|
|
1870
1872
|
cc?: any;
|
|
1871
1873
|
bcc?: any;
|
|
1872
|
-
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"
|
|
1874
|
+
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"emails", {
|
|
1873
1875
|
message?: any;
|
|
1874
1876
|
to?: any;
|
|
1875
1877
|
subject?: any;
|
|
@@ -1883,7 +1885,7 @@ declare const controlTypes: {
|
|
|
1883
1885
|
}>;
|
|
1884
1886
|
};
|
|
1885
1887
|
schema: zod.ZodObject<{
|
|
1886
|
-
$$type: zod.ZodLiteral<"
|
|
1888
|
+
$$type: zod.ZodLiteral<"emails">;
|
|
1887
1889
|
value: zod.ZodType<{
|
|
1888
1890
|
message?: any;
|
|
1889
1891
|
to?: any;
|
|
@@ -1909,7 +1911,7 @@ declare const controlTypes: {
|
|
|
1909
1911
|
}>;
|
|
1910
1912
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1911
1913
|
}, "strict", zod.ZodTypeAny, {
|
|
1912
|
-
$$type: "
|
|
1914
|
+
$$type: "emails";
|
|
1913
1915
|
value: {
|
|
1914
1916
|
message?: any;
|
|
1915
1917
|
to?: any;
|
|
@@ -1924,7 +1926,7 @@ declare const controlTypes: {
|
|
|
1924
1926
|
};
|
|
1925
1927
|
disabled?: boolean | undefined;
|
|
1926
1928
|
}, {
|
|
1927
|
-
$$type: "
|
|
1929
|
+
$$type: "emails";
|
|
1928
1930
|
value: {
|
|
1929
1931
|
message?: any;
|
|
1930
1932
|
to?: any;
|
|
@@ -1939,7 +1941,7 @@ declare const controlTypes: {
|
|
|
1939
1941
|
};
|
|
1940
1942
|
disabled?: boolean | undefined;
|
|
1941
1943
|
}>;
|
|
1942
|
-
key: "
|
|
1944
|
+
key: "emails";
|
|
1943
1945
|
};
|
|
1944
1946
|
};
|
|
1945
1947
|
readonly 'date-range': {
|
package/dist/index.js
CHANGED
|
@@ -2072,7 +2072,7 @@ var controlTypes = {
|
|
|
2072
2072
|
"date-time": { component: import_editor_controls.DateTimeControl, layout: "full", propTypeUtil: import_editor_props4.DateTimePropTypeUtil },
|
|
2073
2073
|
video: { component: import_editor_controls.VideoMediaControl, layout: "full", propTypeUtil: import_editor_props4.videoSrcPropTypeUtil },
|
|
2074
2074
|
"inline-editing": { component: import_editor_controls.InlineEditingControl, layout: "full", propTypeUtil: import_editor_props4.htmlV3PropTypeUtil },
|
|
2075
|
-
email: { component: import_editor_controls.EmailFormActionControl, layout: "custom", propTypeUtil: import_editor_props4.
|
|
2075
|
+
email: { component: import_editor_controls.EmailFormActionControl, layout: "custom", propTypeUtil: import_editor_props4.emailsPropTypeUtil },
|
|
2076
2076
|
"date-range": {
|
|
2077
2077
|
component: import_editor_controls.DateRangeControl,
|
|
2078
2078
|
layout: "custom",
|