@elementor/editor-editing-panel 4.1.0-821 → 4.1.0-823
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 +66 -0
- package/dist/index.d.ts +66 -0
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -21
- package/src/controls-registry/controls-registry.tsx +7 -0
package/dist/index.mjs
CHANGED
|
@@ -1999,6 +1999,7 @@ import * as React18 from "react";
|
|
|
1999
1999
|
// src/controls-registry/controls-registry.tsx
|
|
2000
2000
|
import {
|
|
2001
2001
|
ChipsControl,
|
|
2002
|
+
DateRangeControl,
|
|
2002
2003
|
DateTimeControl,
|
|
2003
2004
|
EmailFormActionControl,
|
|
2004
2005
|
HtmlTagControl,
|
|
@@ -2021,6 +2022,7 @@ import {
|
|
|
2021
2022
|
} from "@elementor/editor-controls";
|
|
2022
2023
|
import {
|
|
2023
2024
|
booleanPropTypeUtil,
|
|
2025
|
+
dateRangePropTypeUtil,
|
|
2024
2026
|
DateTimePropTypeUtil,
|
|
2025
2027
|
emailPropTypeUtil,
|
|
2026
2028
|
htmlV3PropTypeUtil,
|
|
@@ -2055,7 +2057,12 @@ var controlTypes = {
|
|
|
2055
2057
|
"date-time": { component: DateTimeControl, layout: "full", propTypeUtil: DateTimePropTypeUtil },
|
|
2056
2058
|
video: { component: VideoMediaControl, layout: "full", propTypeUtil: videoSrcPropTypeUtil },
|
|
2057
2059
|
"inline-editing": { component: InlineEditingControl, layout: "full", propTypeUtil: htmlV3PropTypeUtil },
|
|
2058
|
-
email: { component: EmailFormActionControl, layout: "custom", propTypeUtil: emailPropTypeUtil }
|
|
2060
|
+
email: { component: EmailFormActionControl, layout: "custom", propTypeUtil: emailPropTypeUtil },
|
|
2061
|
+
"date-range": {
|
|
2062
|
+
component: DateRangeControl,
|
|
2063
|
+
layout: "custom",
|
|
2064
|
+
propTypeUtil: dateRangePropTypeUtil
|
|
2065
|
+
}
|
|
2059
2066
|
};
|
|
2060
2067
|
var ControlsRegistry = class {
|
|
2061
2068
|
constructor(controlsRegistry2) {
|