@elementor/editor-editing-panel 1.23.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/index.js +400 -352
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +367 -324
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +5 -5
  7. package/src/components/add-or-remove-content.tsx +1 -1
  8. package/src/components/{control-label-with-adornments.tsx → control-label.tsx} +3 -3
  9. package/src/components/css-classes/css-class-item.tsx +16 -5
  10. package/src/components/css-classes/css-class-selector.tsx +3 -3
  11. package/src/components/editing-panel-tabs.tsx +8 -1
  12. package/src/components/editing-panel.tsx +18 -15
  13. package/src/components/multi-combobox.tsx +12 -1
  14. package/src/components/settings-tab.tsx +2 -2
  15. package/src/components/style-sections/border-section/border-color-field.tsx +2 -1
  16. package/src/components/style-sections/border-section/border-style-field.tsx +2 -1
  17. package/src/components/style-sections/layout-section/align-content-field.tsx +2 -1
  18. package/src/components/style-sections/layout-section/align-items-field.tsx +2 -1
  19. package/src/components/style-sections/layout-section/align-self-child-field.tsx +2 -1
  20. package/src/components/style-sections/layout-section/display-field.tsx +2 -1
  21. package/src/components/style-sections/layout-section/flex-direction-field.tsx +2 -1
  22. package/src/components/style-sections/layout-section/flex-order-field.tsx +20 -24
  23. package/src/components/style-sections/layout-section/flex-size-field.tsx +6 -4
  24. package/src/components/style-sections/layout-section/justify-content-field.tsx +5 -4
  25. package/src/components/style-sections/layout-section/layout-section.tsx +2 -2
  26. package/src/components/style-sections/layout-section/wrap-field.tsx +2 -1
  27. package/src/components/style-sections/position-section/dimensions-field.tsx +2 -1
  28. package/src/components/style-sections/position-section/position-field.tsx +2 -1
  29. package/src/components/style-sections/position-section/z-index-field.tsx +2 -1
  30. package/src/components/style-sections/size-section/overflow-field.tsx +2 -1
  31. package/src/components/style-sections/size-section/size-section.tsx +2 -1
  32. package/src/components/style-sections/typography-section/font-family-field.tsx +2 -1
  33. package/src/components/style-sections/typography-section/font-size-field.tsx +2 -1
  34. package/src/components/style-sections/typography-section/font-style-field.tsx +2 -2
  35. package/src/components/style-sections/typography-section/font-weight-field.tsx +2 -1
  36. package/src/components/style-sections/typography-section/letter-spacing-field.tsx +2 -1
  37. package/src/components/style-sections/typography-section/line-height-field.tsx +2 -1
  38. package/src/components/style-sections/typography-section/text-alignment-field.tsx +2 -1
  39. package/src/components/style-sections/typography-section/text-color-field.tsx +2 -1
  40. package/src/components/style-sections/typography-section/text-decoration-field.tsx +2 -1
  41. package/src/components/style-sections/typography-section/text-direction-field.tsx +2 -1
  42. package/src/components/style-sections/typography-section/text-stroke-field.tsx +9 -9
  43. package/src/components/style-sections/typography-section/transform-field.tsx +2 -1
  44. package/src/components/style-sections/typography-section/word-spacing-field.tsx +2 -1
  45. package/src/dynamics/components/dynamic-selection-control.tsx +2 -2
  46. package/src/dynamics/components/dynamic-selection.tsx +4 -4
  47. package/src/styles-inheritance/styles-inheritance-indicator.tsx +7 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
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
+
3
23
  ## 1.23.0
4
24
 
5
25
  ### Minor Changes