@elementor/editor-editing-panel 1.3.0 → 1.4.1
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 +650 -635
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +543 -528
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -5
- package/src/components/conditional-tooltip-wrapper.tsx +52 -0
- package/src/components/css-class-selector.tsx +59 -19
- package/src/components/multi-combobox/types.ts +1 -0
- package/src/components/style-sections/layout-section/gap-control-field.tsx +18 -0
- package/src/components/style-sections/layout-section/layout-section.tsx +2 -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/components/style-tab.tsx +2 -11
- package/src/contexts/style-context.tsx +2 -2
- package/src/dynamics/components/dynamic-selection-control.tsx +3 -5
- package/src/dynamics/components/dynamic-selection.tsx +6 -6
- 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 -42
- package/src/hooks/use-styles-fields.ts +32 -0
- 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.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a0ca1d8: fixed an issue where persisting dimensions values behaved unpredictably when switching breakpoints
|
|
8
|
+
- Updated dependencies [a0ca1d8]
|
|
9
|
+
- @elementor/editor-controls@0.3.1
|
|
10
|
+
|
|
11
|
+
## 1.4.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 6f2b17f: Introduce empty (local) style def for class selector.
|
|
16
|
+
- ff35b95: Added Gaps field with a control, proptype and a transformer
|
|
17
|
+
- 7176c7b: set global classes chips max width
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [6f2b17f]
|
|
22
|
+
- Updated dependencies [8943189]
|
|
23
|
+
- Updated dependencies [ff35b95]
|
|
24
|
+
- @elementor/editor-styles-repository@0.2.0
|
|
25
|
+
- @elementor/editor-elements@0.3.3
|
|
26
|
+
- @elementor/editor-props@0.5.0
|
|
27
|
+
- @elementor/editor-controls@0.3.0
|
|
28
|
+
- @elementor/editor-styles@0.3.2
|
|
29
|
+
|
|
3
30
|
## 1.3.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
|
@@ -296,7 +323,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
296
323
|
|
|
297
324
|
### Features
|
|
298
325
|
|
|
299
|
-
- **
|
|
326
|
+
- **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))
|
|
300
327
|
|
|
301
328
|
# [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)
|
|
302
329
|
|