@elementor/editor-editing-panel 1.44.0 → 1.45.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 +20 -0
- package/dist/index.js +479 -391
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +410 -320
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/components/style-sections/border-section/border-radius-field.tsx +12 -9
- package/src/components/style-sections/layout-section/align-content-field.tsx +10 -14
- package/src/components/style-sections/layout-section/align-items-field.tsx +13 -17
- package/src/components/style-sections/layout-section/align-self-child-field.tsx +13 -17
- package/src/components/style-sections/layout-section/flex-direction-field.tsx +13 -17
- package/src/components/style-sections/layout-section/flex-order-field.tsx +30 -33
- package/src/components/style-sections/layout-section/flex-size-field.tsx +60 -59
- package/src/components/style-sections/layout-section/justify-content-field.tsx +10 -14
- package/src/components/style-sections/layout-section/wrap-field.tsx +13 -17
- package/src/components/style-sections/position-section/dimensions-field.tsx +39 -21
- package/src/components/style-sections/position-section/offset-field.tsx +5 -2
- package/src/components/style-sections/size-section/size-section.tsx +51 -36
- package/src/components/style-sections/spacing-section/spacing-section.tsx +1 -1
- package/src/components/style-sections/typography-section/column-gap-field.tsx +5 -2
- package/src/components/style-sections/typography-section/font-size-field.tsx +5 -2
- package/src/components/style-sections/typography-section/letter-spacing-field.tsx +5 -2
- package/src/components/style-sections/typography-section/line-height-field.tsx +5 -2
- package/src/components/style-sections/typography-section/text-alignment-field.tsx +12 -9
- package/src/components/style-sections/typography-section/word-spacing-field.tsx +5 -2
- package/src/dynamics/components/background-control-dynamic-tag.tsx +48 -0
- package/src/dynamics/init.ts +21 -0
- package/src/styles-inheritance/components/ui-providers.tsx +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.45.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ab6320c: Background image support dynamic tag
|
|
8
|
+
- dac8026: Fix style controls layout for mixed UI and site language directions
|
|
9
|
+
- 2c11540: Added support for custom values in size control
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [ab6320c]
|
|
14
|
+
- Updated dependencies [199c99a]
|
|
15
|
+
- Updated dependencies [2c11540]
|
|
16
|
+
- @elementor/editor-props@0.13.0
|
|
17
|
+
- @elementor/editor-controls@1.0.0
|
|
18
|
+
- @elementor/editor-canvas@0.23.0
|
|
19
|
+
- @elementor/editor-styles-repository@0.10.2
|
|
20
|
+
- @elementor/editor-elements@0.8.5
|
|
21
|
+
- @elementor/editor-styles@0.6.9
|
|
22
|
+
|
|
3
23
|
## 1.44.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|