@elementor/editor-editing-panel 1.1.0 → 1.2.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 +24 -0
- package/dist/index.js +630 -377
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +605 -337
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
- 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/layout-section/align-items-field.tsx +92 -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 +114 -0
- package/src/components/style-sections/layout-section/justify-content-field.tsx +58 -31
- package/src/components/style-sections/layout-section/layout-section.tsx +21 -2
- package/src/components/style-sections/layout-section/wrap-field.tsx +52 -0
- package/src/components/style-sections/typography-section/text-stroke-field.tsx +41 -6
- package/src/components/style-tab.tsx +2 -2
- 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,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 40e6e5f: Added flex direction field
|
|
8
|
+
- 1d557f6: Added flex order field
|
|
9
|
+
- c2fdb15: Added flex align items field
|
|
10
|
+
- 463c695: Added flex wrap field
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- dee4071: Introduce apply/unapply for Class Selector
|
|
15
|
+
- 70e5d28: Text Stroke Control removal functionality
|
|
16
|
+
- 1926fe1: Update dependencies
|
|
17
|
+
- Updated dependencies [081bae8]
|
|
18
|
+
- Updated dependencies [1926fe1]
|
|
19
|
+
- Updated dependencies [f584292]
|
|
20
|
+
- @elementor/editor-responsive@0.12.3
|
|
21
|
+
- @elementor/editor-elements@0.3.1
|
|
22
|
+
- @elementor/editor-controls@0.1.1
|
|
23
|
+
- @elementor/editor-panels@0.10.1
|
|
24
|
+
- @elementor/editor@0.17.1
|
|
25
|
+
- @elementor/editor-styles@0.3.0
|
|
26
|
+
|
|
3
27
|
## 1.1.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|