@elementor/editor-editing-panel 1.47.0 → 1.48.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 +37 -0
- package/dist/index.js +431 -348
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +433 -354
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -14
- package/src/components/style-sections/border-section/border-field.tsx +14 -7
- package/src/components/style-sections/effects-section/effects-section.tsx +12 -3
- package/src/components/style-sections/layout-section/flex-order-field.tsx +24 -18
- package/src/components/style-sections/layout-section/flex-size-field.tsx +14 -16
- package/src/components/style-sections/layout-section/layout-section.tsx +9 -2
- package/src/components/style-sections/layout-section/utils/rotated-icon.tsx +6 -1
- package/src/components/style-sections/position-section/position-section.tsx +19 -8
- package/src/components/style-sections/size-section/size-section.tsx +4 -1
- package/src/components/style-sections/typography-section/text-stroke-field.tsx +3 -1
- package/src/components/style-sections/typography-section/typography-section.tsx +6 -1
- package/src/components/style-tab.tsx +1 -1
- package/src/controls-registry/settings-field.tsx +21 -5
- package/src/controls-registry/styles-field.tsx +5 -3
- package/src/hooks/use-styles-field.ts +3 -4
- package/src/hooks/use-styles-fields.ts +141 -73
- package/src/init.ts +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.48.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b94c5af: Fix floating icons on top of panel tab header
|
|
8
|
+
- b3726f6: Add transform move control
|
|
9
|
+
- 68ce0d9: Ensure current user exist in the editor.
|
|
10
|
+
- 1a37b1c: Update the Elementor UI version.
|
|
11
|
+
- c62d64c: Injected prop dependency API into settings field
|
|
12
|
+
- 12333b0: Update `@elementor/icons` package.
|
|
13
|
+
- a88c14b: Added the changed prop name to style editing history
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 49714e8: Fix flex order control layout
|
|
18
|
+
- d9aaedd: Wrap opacity control with version experiment
|
|
19
|
+
- Updated dependencies [5c6a912]
|
|
20
|
+
- Updated dependencies [b3726f6]
|
|
21
|
+
- Updated dependencies [68ce0d9]
|
|
22
|
+
- Updated dependencies [b17730a]
|
|
23
|
+
- Updated dependencies [1a37b1c]
|
|
24
|
+
- Updated dependencies [c62d64c]
|
|
25
|
+
- Updated dependencies [d1fc9d2]
|
|
26
|
+
- Updated dependencies [12333b0]
|
|
27
|
+
- Updated dependencies [8f38cf3]
|
|
28
|
+
- Updated dependencies [d4406fd]
|
|
29
|
+
- @elementor/editor-controls@1.3.0
|
|
30
|
+
- @elementor/editor-canvas@0.26.0
|
|
31
|
+
- @elementor/editor-props@0.16.0
|
|
32
|
+
- @elementor/editor@0.21.0
|
|
33
|
+
- @elementor/editor-panels@0.17.0
|
|
34
|
+
- @elementor/editor-ui@0.14.0
|
|
35
|
+
- @elementor/editor-elements@0.9.0
|
|
36
|
+
- @elementor/editor-styles-repository@0.10.5
|
|
37
|
+
- @elementor/editor-styles@0.6.12
|
|
38
|
+
- @elementor/editor-documents@0.13.9
|
|
39
|
+
|
|
3
40
|
## 1.47.0
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|