@elementor/editor-editing-panel 1.18.0 → 1.20.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 +27 -0
- package/dist/index.js +639 -533
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +490 -384
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/components/control-label-with-adornments.tsx +13 -0
- package/src/components/section.tsx +6 -2
- package/src/components/style-sections/layout-section/display-field.tsx +1 -1
- package/src/components/style-sections/layout-section/justify-content-field.tsx +1 -1
- package/src/components/style-sections/position-section/dimensions-field.tsx +1 -1
- package/src/components/style-sections/size-section/size-section.tsx +1 -1
- package/src/contexts/styles-inheritance-context.tsx +18 -3
- package/src/controls-registry/styles-field.tsx +14 -4
- package/src/dynamics/components/dynamic-selection-control.tsx +1 -1
- package/src/hooks/use-styles-fields.ts +3 -4
- package/src/hooks/use-styles-rerender.ts +10 -0
- package/src/styles-inheritance/styles-inheritance-indicator.tsx +70 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.20.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6cbaa91: Change v4 accordion style
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e67bdcb: Update control label spacing.
|
|
12
|
+
- Updated dependencies [85facff]
|
|
13
|
+
- Updated dependencies [e67bdcb]
|
|
14
|
+
- @elementor/editor-controls@0.18.1
|
|
15
|
+
|
|
16
|
+
## 1.19.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 217d896: Add indicators to control labels to reflect the style inheritance.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [14610ee]
|
|
25
|
+
- Updated dependencies [217d896]
|
|
26
|
+
- @elementor/editor-elements@0.6.4
|
|
27
|
+
- @elementor/editor-controls@0.18.0
|
|
28
|
+
- @elementor/editor-styles-repository@0.7.7
|
|
29
|
+
|
|
3
30
|
## 1.18.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|