@elementor/editor-editing-panel 4.1.0-831 → 4.1.0-833
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 +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +24 -24
- package/src/controls-registry/controls-registry.tsx +7 -0
package/dist/index.mjs
CHANGED
|
@@ -2017,6 +2017,7 @@ import {
|
|
|
2017
2017
|
SwitchControl,
|
|
2018
2018
|
TextAreaControl,
|
|
2019
2019
|
TextControl,
|
|
2020
|
+
TimeRangeControl,
|
|
2020
2021
|
ToggleControl,
|
|
2021
2022
|
UrlControl,
|
|
2022
2023
|
VideoMediaControl
|
|
@@ -2036,6 +2037,7 @@ import {
|
|
|
2036
2037
|
stringArrayPropTypeUtil,
|
|
2037
2038
|
stringPropTypeUtil as stringPropTypeUtil2,
|
|
2038
2039
|
svgSrcPropTypeUtil,
|
|
2040
|
+
timeRangePropTypeUtil,
|
|
2039
2041
|
videoSrcPropTypeUtil
|
|
2040
2042
|
} from "@elementor/editor-props";
|
|
2041
2043
|
var controlTypes = {
|
|
@@ -2064,6 +2066,11 @@ var controlTypes = {
|
|
|
2064
2066
|
layout: "custom",
|
|
2065
2067
|
propTypeUtil: dateRangePropTypeUtil
|
|
2066
2068
|
},
|
|
2069
|
+
"time-range": {
|
|
2070
|
+
component: TimeRangeControl,
|
|
2071
|
+
layout: "custom",
|
|
2072
|
+
propTypeUtil: timeRangePropTypeUtil
|
|
2073
|
+
},
|
|
2067
2074
|
"attachment-type": { component: AttachmentTypeControl, layout: "custom", propTypeUtil: stringPropTypeUtil2 }
|
|
2068
2075
|
};
|
|
2069
2076
|
var ControlsRegistry = class {
|