@elementor/editor-editing-panel 1.16.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 +31 -0
- package/dist/index.js +286 -226
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +184 -124
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -12
- 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/position-section/dimensions-field.tsx +23 -11
- package/src/components/style-sections/position-section/position-section.tsx +12 -12
- 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/text-direction-field.tsx +4 -2
- package/src/dynamics/components/dynamic-selection.tsx +18 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
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
|
+
|
|
3
34
|
## 1.16.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|