@elementor/editor-editing-panel 1.6.0 → 1.7.0
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/CHANGELOG.md +20 -0
- package/dist/index.js +354 -314
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +215 -171
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/components/css-class-selector.tsx +87 -26
- package/src/components/multi-combobox.tsx +184 -0
- package/src/components/style-sections/border-section/border-field.tsx +1 -5
- package/src/components/style-sections/position-section/position-field.tsx +1 -0
- package/src/components/style-tab.tsx +1 -1
- package/src/controls-registry/create-top-level-object-type.ts +14 -0
- package/src/controls-registry/settings-field.tsx +12 -14
- package/src/controls-registry/styles-field.tsx +17 -5
- package/src/dynamics/components/dynamic-selection-control.tsx +1 -1
- package/src/dynamics/components/dynamic-selection.tsx +3 -4
- package/src/dynamics/dynamic-control.tsx +16 -11
- package/src/dynamics/hooks/use-dynamic-tag.ts +2 -3
- package/src/dynamics/hooks/use-prop-dynamic-action.tsx +1 -4
- package/src/dynamics/hooks/use-prop-dynamic-tags.ts +3 -6
- package/src/dynamics/utils.ts +1 -1
- package/src/hooks/use-styles-fields.ts +1 -0
- package/src/components/multi-combobox/index.ts +0 -3
- package/src/components/multi-combobox/multi-combobox.tsx +0 -122
- package/src/components/multi-combobox/types.ts +0 -29
- package/src/components/multi-combobox/use-combobox-actions.ts +0 -62
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fbde10d: Add UX flow for creating new global class
|
|
8
|
+
- a2245c5: Change prop provider infra to support nested props.
|
|
9
|
+
- d4ff040: added "sticky" options for position control on styles tab
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 1f2cf85: Update classes prop type
|
|
14
|
+
- Updated dependencies [5fc8d7b]
|
|
15
|
+
- Updated dependencies [fbde10d]
|
|
16
|
+
- Updated dependencies [a2245c5]
|
|
17
|
+
- @elementor/editor-controls@0.5.0
|
|
18
|
+
- @elementor/editor-styles-repository@0.3.3
|
|
19
|
+
- @elementor/editor-elements@0.4.0
|
|
20
|
+
- @elementor/editor-styles@0.5.0
|
|
21
|
+
- @elementor/editor-props@0.6.0
|
|
22
|
+
|
|
3
23
|
## 1.6.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|