@elementor/editor-editing-panel 1.4.0 → 1.5.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 +28 -1
- package/dist/index.js +592 -626
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +526 -560
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/components/conditional-tooltip-wrapper.tsx +13 -7
- package/src/components/css-class-selector.tsx +1 -3
- package/src/components/style-sections/background-section/background-section.tsx +4 -9
- package/src/components/style-sections/layout-section/layout-section.tsx +12 -0
- package/src/components/style-sections/position-section/position-field.tsx +6 -2
- package/src/components/style-sections/position-section/position-section.tsx +51 -30
- package/src/dynamics/components/dynamic-selection-control.tsx +3 -5
- package/src/dynamics/components/dynamic-selection.tsx +6 -6
- package/src/dynamics/dynamic-control.tsx +2 -3
- package/src/hooks/use-computed-style.ts +29 -0
- package/src/hooks/use-persist-dynamic-value.ts +11 -0
- package/src/hooks/use-session-storage.ts +46 -0
- package/src/hooks/use-styles-field.ts +8 -44
- package/src/hooks/use-styles-fields.ts +32 -0
- package/src/components/style-sections/background-section/background-color-field.tsx +0 -21
- package/src/hooks/use-prop-value-history.ts +0 -45
- package/src/hooks/use-style-prop-history.ts +0 -75
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 87c241b: Remove shorthand support for dynamic settings.
|
|
8
|
+
- b8e2a87: Background infra changes
|
|
9
|
+
- c2f112e: Show flex controls to children elements of flex parent
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ca63a26: Changed conditional tooltip inner prop name to fix MUI errors.
|
|
14
|
+
- 4125800: Order classes by priority in the css class selector
|
|
15
|
+
- Updated dependencies [3019657]
|
|
16
|
+
- Updated dependencies [2653cf0]
|
|
17
|
+
- Updated dependencies [862178c]
|
|
18
|
+
- Updated dependencies [ed4260a]
|
|
19
|
+
- @elementor/editor-controls@0.4.0
|
|
20
|
+
- @elementor/editor-styles-repository@0.3.0
|
|
21
|
+
|
|
22
|
+
## 1.4.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- a0ca1d8: fixed an issue where persisting dimensions values behaved unpredictably when switching breakpoints
|
|
27
|
+
- Updated dependencies [a0ca1d8]
|
|
28
|
+
- @elementor/editor-controls@0.3.1
|
|
29
|
+
|
|
3
30
|
## 1.4.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
|
@@ -315,7 +342,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
315
342
|
|
|
316
343
|
### Features
|
|
317
344
|
|
|
318
|
-
- **
|
|
345
|
+
- **editor-editing-panel:** add control internal state hook [EDS-359] ([#232](https://github.com/elementor/elementor-packages/issues/232)) ([c9cbced](https://github.com/elementor/elementor-packages/commit/c9cbced3d8136f8bb157a0ab3878076b08e521f5))
|
|
319
346
|
|
|
320
347
|
# [0.10.0](https://github.com/elementor/elementor-packages/compare/@elementor/editor-editing-panel@0.9.1...@elementor/editor-editing-panel@0.10.0) (2024-08-14)
|
|
321
348
|
|