@elementor/editor-editing-panel 3.33.0-122 → 3.33.0-124

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.mjs CHANGED
@@ -1813,6 +1813,7 @@ import {
1813
1813
  KeyValueControl,
1814
1814
  LinkControl,
1815
1815
  NumberControl,
1816
+ QueryControl,
1816
1817
  RepeatableControl,
1817
1818
  SelectControl,
1818
1819
  SizeControl,
@@ -1829,6 +1830,7 @@ import {
1829
1830
  keyValuePropTypeUtil,
1830
1831
  linkPropTypeUtil,
1831
1832
  numberPropTypeUtil,
1833
+ queryPropTypeUtil,
1832
1834
  sizePropTypeUtil,
1833
1835
  stringPropTypeUtil as stringPropTypeUtil2
1834
1836
  } from "@elementor/editor-props";
@@ -1840,6 +1842,7 @@ var controlTypes = {
1840
1842
  size: { component: SizeControl, layout: "two-columns", propTypeUtil: sizePropTypeUtil },
1841
1843
  select: { component: SelectControl, layout: "two-columns", propTypeUtil: stringPropTypeUtil2 },
1842
1844
  link: { component: LinkControl, layout: "custom", propTypeUtil: linkPropTypeUtil },
1845
+ query: { component: QueryControl, layout: "full", propTypeUtil: queryPropTypeUtil },
1843
1846
  url: { component: UrlControl, layout: "full", propTypeUtil: stringPropTypeUtil2 },
1844
1847
  switch: { component: SwitchControl, layout: "two-columns", propTypeUtil: booleanPropTypeUtil },
1845
1848
  number: { component: NumberControl, layout: "two-columns", propTypeUtil: numberPropTypeUtil },