@elementor/editor-editing-panel 1.33.1 → 1.35.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 +38 -0
- package/dist/index.js +131 -81
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +79 -29
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
- package/src/components/editing-panel-tabs.tsx +37 -20
- package/src/components/section.tsx +4 -3
- package/src/components/style-sections/layout-section/display-field.tsx +21 -7
- package/src/components/style-sections/position-section/position-section.tsx +3 -3
- package/src/components/style-sections/typography-section/font-family-field.tsx +1 -1
- package/src/components/style-sections/typography-section/hooks/use-font-families.ts +1 -1
- package/src/hooks/use-direction.ts +3 -4
- package/src/hooks/use-state-by-element.ts +18 -0
- package/src/styles-inheritance/styles-inheritance-indicator.tsx +2 -2
- package/src/sync/get-elementor-globals.ts +19 -0
- package/src/sync/is-experiment-active.ts +7 -0
- package/src/sync/types.ts +1 -4
- package/src/sync/get-elementor-config.ts +0 -7
- package/src/sync/get-experiments-config.ts +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.35.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 398d703: Adding stateful memory for selected panels/sections/tabs
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [be87c6e]
|
|
12
|
+
- Updated dependencies [d05046f]
|
|
13
|
+
- @elementor/editor-controls@0.30.0
|
|
14
|
+
- @elementor/locations@0.8.0
|
|
15
|
+
- @elementor/editor@0.19.2
|
|
16
|
+
- @elementor/editor-panels@0.15.2
|
|
17
|
+
- @elementor/menus@0.1.5
|
|
18
|
+
- @elementor/editor-canvas@0.21.2
|
|
19
|
+
|
|
20
|
+
## 1.34.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- 71d9ffe: Added support for split items in toggle button group and an API for checking if an experiment is active
|
|
25
|
+
- 4a2569f: Replaced experiment status check to look for existing experiments
|
|
26
|
+
- 9f16dcb: Added an API to get experimental features' status
|
|
27
|
+
- b150c2b: Wrap font family with Control Action
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 9a098c5: Add a general experiment for 3.30
|
|
32
|
+
- Updated dependencies [ebcf7cc]
|
|
33
|
+
- Updated dependencies [71d9ffe]
|
|
34
|
+
- Updated dependencies [b6131c3]
|
|
35
|
+
- Updated dependencies [810db8d]
|
|
36
|
+
- Updated dependencies [b150c2b]
|
|
37
|
+
- @elementor/editor-controls@0.29.0
|
|
38
|
+
- @elementor/editor-styles-repository@0.8.7
|
|
39
|
+
- @elementor/editor-canvas@0.21.1
|
|
40
|
+
|
|
3
41
|
## 1.33.1
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|