@elementor/editor-editing-panel 1.22.0 → 1.24.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 +38 -0
- package/dist/index.js +409 -361
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +379 -336
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/components/add-or-remove-content.tsx +1 -1
- package/src/components/{control-label-with-adornments.tsx → control-label.tsx} +3 -3
- package/src/components/css-classes/css-class-item.tsx +16 -5
- package/src/components/css-classes/css-class-menu.tsx +12 -15
- package/src/components/css-classes/css-class-selector.tsx +3 -3
- package/src/components/editing-panel-tabs.tsx +8 -1
- package/src/components/editing-panel.tsx +18 -15
- package/src/components/multi-combobox.tsx +12 -1
- package/src/components/section.tsx +1 -1
- package/src/components/settings-tab.tsx +2 -2
- package/src/components/style-sections/border-section/border-color-field.tsx +2 -1
- package/src/components/style-sections/border-section/border-style-field.tsx +2 -1
- package/src/components/style-sections/layout-section/align-content-field.tsx +2 -1
- package/src/components/style-sections/layout-section/align-items-field.tsx +2 -1
- package/src/components/style-sections/layout-section/align-self-child-field.tsx +2 -1
- package/src/components/style-sections/layout-section/display-field.tsx +2 -1
- package/src/components/style-sections/layout-section/flex-direction-field.tsx +2 -1
- package/src/components/style-sections/layout-section/flex-order-field.tsx +20 -24
- package/src/components/style-sections/layout-section/flex-size-field.tsx +6 -4
- package/src/components/style-sections/layout-section/justify-content-field.tsx +5 -4
- package/src/components/style-sections/layout-section/layout-section.tsx +2 -2
- package/src/components/style-sections/layout-section/utils/rotated-icon.tsx +2 -0
- package/src/components/style-sections/layout-section/wrap-field.tsx +2 -1
- package/src/components/style-sections/position-section/dimensions-field.tsx +2 -1
- package/src/components/style-sections/position-section/position-field.tsx +2 -1
- package/src/components/style-sections/position-section/z-index-field.tsx +2 -1
- package/src/components/style-sections/size-section/overflow-field.tsx +2 -1
- package/src/components/style-sections/size-section/size-section.tsx +2 -1
- package/src/components/style-sections/typography-section/font-family-field.tsx +2 -1
- package/src/components/style-sections/typography-section/font-size-field.tsx +2 -1
- package/src/components/style-sections/typography-section/font-style-field.tsx +2 -2
- package/src/components/style-sections/typography-section/font-weight-field.tsx +2 -1
- package/src/components/style-sections/typography-section/letter-spacing-field.tsx +2 -1
- package/src/components/style-sections/typography-section/line-height-field.tsx +2 -1
- package/src/components/style-sections/typography-section/text-alignment-field.tsx +2 -1
- package/src/components/style-sections/typography-section/text-color-field.tsx +2 -1
- package/src/components/style-sections/typography-section/text-decoration-field.tsx +2 -1
- package/src/components/style-sections/typography-section/text-direction-field.tsx +2 -1
- package/src/components/style-sections/typography-section/text-stroke-field.tsx +9 -9
- package/src/components/style-sections/typography-section/transform-field.tsx +2 -1
- package/src/components/style-sections/typography-section/word-spacing-field.tsx +2 -1
- package/src/dynamics/components/dynamic-selection-control.tsx +3 -3
- package/src/dynamics/components/dynamic-selection.tsx +7 -7
- package/src/dynamics/hooks/use-prop-dynamic-tags.ts +1 -0
- package/src/styles-inheritance/styles-inheritance-indicator.tsx +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c262b65: Update justify-content control to work with flex values
|
|
8
|
+
- 951d633: Add styles inheritance indicator next to each control label in the style tab
|
|
9
|
+
- 311ff8e: Fix the spacing of the Dynamic tags menu
|
|
10
|
+
- 67f2795: Fix Dynamic tags are not displayed
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 666ffdd: Change theme provider styles for editing panel and class manager panel
|
|
15
|
+
- Updated dependencies [951d633]
|
|
16
|
+
- Updated dependencies [666ffdd]
|
|
17
|
+
- Updated dependencies [7aaf98f]
|
|
18
|
+
- @elementor/editor-controls@0.21.0
|
|
19
|
+
- @elementor/editor-ui@0.5.1
|
|
20
|
+
- @elementor/editor@0.18.5
|
|
21
|
+
- @elementor/editor-panels@0.14.0
|
|
22
|
+
|
|
23
|
+
## 1.23.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- c10d154: Change outer margin of dynamic tags popover
|
|
28
|
+
- 50938e4: Change controls menus text style
|
|
29
|
+
- 64ec032: Change the style from 'ListSubHeader' to 'MenuSubHeader'
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [2ea9555]
|
|
34
|
+
- Updated dependencies [50938e4]
|
|
35
|
+
- Updated dependencies [64ec032]
|
|
36
|
+
- @elementor/editor-elements@0.7.0
|
|
37
|
+
- @elementor/editor-controls@0.20.0
|
|
38
|
+
- @elementor/editor-ui@0.5.0
|
|
39
|
+
- @elementor/editor-styles-repository@0.8.1
|
|
40
|
+
|
|
3
41
|
## 1.22.0
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|