@elementor/editor-editing-panel 1.1.0 → 1.3.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 +53 -0
- package/dist/index.js +868 -444
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +851 -403
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -14
- package/src/components/css-class-selector.tsx +131 -0
- package/src/components/multi-combobox/multi-combobox.tsx +34 -32
- package/src/components/multi-combobox/types.ts +2 -0
- package/src/components/multi-combobox/use-combobox-actions.ts +4 -4
- package/src/components/style-sections/border-section/border-radius-field.tsx +4 -4
- package/src/components/style-sections/border-section/border-width-field.tsx +4 -4
- package/src/components/style-sections/layout-section/align-items-field.tsx +72 -0
- package/src/components/style-sections/layout-section/align-self-child-field.tsx +72 -0
- package/src/components/style-sections/layout-section/flex-direction-field.tsx +64 -0
- package/src/components/style-sections/layout-section/flex-order-field.tsx +120 -0
- package/src/components/style-sections/layout-section/flex-size-field.tsx +164 -0
- package/src/components/style-sections/layout-section/justify-content-field.tsx +62 -62
- package/src/components/style-sections/layout-section/layout-section.tsx +27 -3
- package/src/components/style-sections/layout-section/utils/rotated-icon.tsx +52 -0
- package/src/components/style-sections/layout-section/wrap-field.tsx +52 -0
- package/src/components/style-sections/position-section/position-section.tsx +3 -3
- package/src/components/style-sections/typography-section/line-height-field.tsx +21 -0
- package/src/components/style-sections/typography-section/text-stroke-field.tsx +41 -6
- package/src/components/style-sections/typography-section/text-style-field.tsx +31 -8
- package/src/components/style-sections/typography-section/typography-section.tsx +3 -1
- package/src/components/style-tab.tsx +2 -2
- package/src/controls-registry/controls-registry.tsx +4 -0
- package/src/dynamics/components/dynamic-selection-control.tsx +8 -5
- package/src/dynamics/components/dynamic-selection.tsx +10 -8
- package/src/dynamics/dynamic-control.tsx +9 -11
- package/src/dynamics/utils.ts +20 -3
- package/src/components/css-class-selector-section.tsx +0 -76
- package/src/components/style-sections/layout-section/utils/rotate-flex-icon.ts +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0edc1f2: Added Flex child align self
|
|
8
|
+
- c393288: Remove support for shorthand prop values.
|
|
9
|
+
- bc728b7: Add type and validation support to `useBoundProp`
|
|
10
|
+
- 72a6a18: Added flex size field
|
|
11
|
+
- b05b412: added line height control and rearranged the typography section
|
|
12
|
+
- 14e1fcf: Added link control field
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 2c230a4: Fixed icon rotation mechanism and align-items value from justify to stretch
|
|
17
|
+
- ae537f7: Update tooltip texts
|
|
18
|
+
- 91453b3: Update and lock dependencies versions
|
|
19
|
+
- Updated dependencies [c393288]
|
|
20
|
+
- Updated dependencies [bc728b7]
|
|
21
|
+
- Updated dependencies [91453b3]
|
|
22
|
+
- @elementor/editor-controls@0.2.0
|
|
23
|
+
- @elementor/editor-props@0.4.0
|
|
24
|
+
- @elementor/editor-v1-adapters@0.8.5
|
|
25
|
+
- @elementor/editor-responsive@0.12.4
|
|
26
|
+
- @elementor/editor-elements@0.3.2
|
|
27
|
+
- @elementor/editor-panels@0.10.2
|
|
28
|
+
- @elementor/editor-styles@0.3.1
|
|
29
|
+
- @elementor/editor@0.17.2
|
|
30
|
+
- @elementor/menus@0.1.2
|
|
31
|
+
|
|
32
|
+
## 1.2.0
|
|
33
|
+
|
|
34
|
+
### Minor Changes
|
|
35
|
+
|
|
36
|
+
- 40e6e5f: Added flex direction field
|
|
37
|
+
- 1d557f6: Added flex order field
|
|
38
|
+
- c2fdb15: Added flex align items field
|
|
39
|
+
- 463c695: Added flex wrap field
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- dee4071: Introduce apply/unapply for Class Selector
|
|
44
|
+
- 70e5d28: Text Stroke Control removal functionality
|
|
45
|
+
- 1926fe1: Update dependencies
|
|
46
|
+
- Updated dependencies [081bae8]
|
|
47
|
+
- Updated dependencies [1926fe1]
|
|
48
|
+
- Updated dependencies [f584292]
|
|
49
|
+
- @elementor/editor-responsive@0.12.3
|
|
50
|
+
- @elementor/editor-elements@0.3.1
|
|
51
|
+
- @elementor/editor-controls@0.1.1
|
|
52
|
+
- @elementor/editor-panels@0.10.1
|
|
53
|
+
- @elementor/editor@0.17.1
|
|
54
|
+
- @elementor/editor-styles@0.3.0
|
|
55
|
+
|
|
3
56
|
## 1.1.0
|
|
4
57
|
|
|
5
58
|
### Minor Changes
|