@elementor/editor-editing-panel 1.15.0 → 1.17.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 +58 -0
- package/dist/index.js +306 -232
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +211 -137
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -13
- package/src/components/css-classes/css-class-menu.tsx +1 -1
- package/src/components/css-classes/css-class-selector.tsx +1 -1
- package/src/components/editing-panel.tsx +2 -0
- package/src/components/style-sections/border-section/border-radius-field.tsx +1 -0
- package/src/components/style-sections/border-section/border-width-field.tsx +19 -10
- package/src/components/style-sections/layout-section/flex-size-field.tsx +1 -1
- package/src/components/style-sections/position-section/dimensions-field.tsx +24 -12
- package/src/components/style-sections/position-section/position-section.tsx +12 -12
- package/src/components/style-sections/position-section/z-index-field.tsx +1 -1
- package/src/components/style-sections/size-section/size-section.tsx +18 -9
- package/src/components/style-sections/spacing-section/spacing-section.tsx +9 -2
- package/src/components/style-sections/typography-section/font-family-field.tsx +34 -2
- package/src/components/style-sections/typography-section/font-weight-field.tsx +3 -3
- package/src/components/style-sections/typography-section/text-direction-field.tsx +4 -2
- package/src/dynamics/components/dynamic-selection-control.tsx +1 -1
- package/src/dynamics/components/dynamic-selection.tsx +19 -12
- package/src/dynamics/hooks/use-prop-dynamic-action.tsx +1 -1
- package/src/styles-inheritance/create-snapshots-manager.ts +179 -0
- package/src/styles-inheritance/create-styles-inheritance.ts +50 -0
- package/src/styles-inheritance/types.ts +42 -0
- package/src/styles-inheritance/utils.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,63 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a654cb2: Update `@elementor/icons` version
|
|
8
|
+
- 89a015d: Update dynamic tags empty state - no search results
|
|
9
|
+
- 810d72f: Added icon next to atomic widget heading
|
|
10
|
+
- f99d23c: Add missing tooltips for style controls
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 23458d1: Make atomic controls use Logical Properties
|
|
15
|
+
- cab4ddf: Improve Font Family control performance
|
|
16
|
+
- Updated dependencies [23458d1]
|
|
17
|
+
- Updated dependencies [a654cb2]
|
|
18
|
+
- Updated dependencies [cab4ddf]
|
|
19
|
+
- Updated dependencies [f99d23c]
|
|
20
|
+
- Updated dependencies [f6a4d4f]
|
|
21
|
+
- Updated dependencies [de85397]
|
|
22
|
+
- Updated dependencies [959e02c]
|
|
23
|
+
- @elementor/editor-controls@0.15.0
|
|
24
|
+
- @elementor/editor-props@0.9.4
|
|
25
|
+
- @elementor/editor-ui@0.4.1
|
|
26
|
+
- @elementor/editor-v1-adapters@0.10.2
|
|
27
|
+
- @elementor/editor-panels@0.12.2
|
|
28
|
+
- @elementor/editor-styles-repository@0.7.4
|
|
29
|
+
- @elementor/editor-elements@0.6.1
|
|
30
|
+
- @elementor/editor-styles@0.6.1
|
|
31
|
+
- @elementor/editor@0.18.2
|
|
32
|
+
- @elementor/editor-responsive@0.13.2
|
|
33
|
+
|
|
34
|
+
## 1.16.0
|
|
35
|
+
|
|
36
|
+
### Minor Changes
|
|
37
|
+
|
|
38
|
+
- 1a1e998: Add auto size unit to size controls
|
|
39
|
+
- bcf4254: VQA text fixes
|
|
40
|
+
- dcf1dfa: Added the styles inheritance model and an initial API
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- Updated dependencies [1a1e998]
|
|
45
|
+
- Updated dependencies [bcf4254]
|
|
46
|
+
- Updated dependencies [c654f89]
|
|
47
|
+
- Updated dependencies [f4b76ac]
|
|
48
|
+
- Updated dependencies [ed5962d]
|
|
49
|
+
- Updated dependencies [571ff75]
|
|
50
|
+
- @elementor/editor-controls@0.14.0
|
|
51
|
+
- @elementor/editor-elements@0.6.0
|
|
52
|
+
- @elementor/editor-styles@0.6.0
|
|
53
|
+
- @elementor/editor-props@0.9.3
|
|
54
|
+
- @elementor/utils@0.4.0
|
|
55
|
+
- @elementor/editor-styles-repository@0.7.3
|
|
56
|
+
- @elementor/editor-v1-adapters@0.10.1
|
|
57
|
+
- @elementor/editor@0.18.1
|
|
58
|
+
- @elementor/editor-panels@0.12.1
|
|
59
|
+
- @elementor/editor-responsive@0.13.1
|
|
60
|
+
|
|
3
61
|
## 1.15.0
|
|
4
62
|
|
|
5
63
|
### Minor Changes
|