@elementor/editor-editing-panel 1.11.1 → 1.13.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 (42) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/dist/index.js +431 -426
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +383 -378
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +8 -8
  7. package/src/components/add-or-remove-content.tsx +5 -3
  8. package/src/components/collapsible-content.tsx +2 -1
  9. package/src/components/css-classes/css-class-item.tsx +2 -0
  10. package/src/components/css-classes/css-class-selector.tsx +2 -7
  11. package/src/components/panel-divider.tsx +4 -0
  12. package/src/components/popover-content.tsx +15 -0
  13. package/src/components/section-content.tsx +16 -0
  14. package/src/components/style-sections/border-section/border-color-field.tsx +1 -1
  15. package/src/components/style-sections/border-section/border-radius-field.tsx +5 -6
  16. package/src/components/style-sections/border-section/border-section.tsx +5 -4
  17. package/src/components/style-sections/border-section/border-style-field.tsx +2 -2
  18. package/src/components/style-sections/border-section/border-width-field.tsx +1 -1
  19. package/src/components/style-sections/effects-section/effects-section.tsx +3 -3
  20. package/src/components/style-sections/layout-section/flex-order-field.tsx +4 -3
  21. package/src/components/style-sections/layout-section/flex-size-field.tsx +4 -3
  22. package/src/components/style-sections/layout-section/layout-section.tsx +6 -5
  23. package/src/components/style-sections/position-section/position-field.tsx +1 -1
  24. package/src/components/style-sections/position-section/position-section.tsx +3 -3
  25. package/src/components/style-sections/size-section/overflow-field.tsx +2 -2
  26. package/src/components/style-sections/size-section/size-section.tsx +10 -8
  27. package/src/components/style-sections/spacing-section/spacing-section.tsx +5 -4
  28. package/src/components/style-sections/typography-section/font-family-field.tsx +2 -2
  29. package/src/components/style-sections/typography-section/font-size-field.tsx +1 -1
  30. package/src/components/style-sections/typography-section/font-style-field.tsx +36 -0
  31. package/src/components/style-sections/typography-section/font-weight-field.tsx +2 -2
  32. package/src/components/style-sections/typography-section/letter-spacing-field.tsx +1 -1
  33. package/src/components/style-sections/typography-section/line-height-field.tsx +1 -1
  34. package/src/components/style-sections/typography-section/text-color-field.tsx +1 -1
  35. package/src/components/style-sections/typography-section/{text-style-field.tsx → text-decoration-field.tsx} +3 -24
  36. package/src/components/style-sections/typography-section/text-stroke-field.tsx +1 -1
  37. package/src/components/style-sections/typography-section/transform-field.tsx +1 -1
  38. package/src/components/style-sections/typography-section/typography-section.tsx +12 -9
  39. package/src/components/style-sections/typography-section/word-spacing-field.tsx +1 -1
  40. package/src/controls-registry/settings-field.tsx +1 -7
  41. package/src/dynamics/components/dynamic-selection-control.tsx +4 -3
  42. package/src/dynamics/components/dynamic-selection.tsx +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,50 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 927578f: The creation of a popover grid container component.
8
+ - 10651bb: The creation of a popover content component.
9
+ - 1db202a: The creation of a styled panel stack component.
10
+ - a3f8440: Update auto icon inside the overflow control.
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [927578f]
15
+ - Updated dependencies [e2d88d0]
16
+ - Updated dependencies [0acbc6a]
17
+ - Updated dependencies [10651bb]
18
+ - Updated dependencies [1db202a]
19
+ - @elementor/editor-controls@0.12.0
20
+ - @elementor/editor-panels@0.11.1
21
+
22
+ ## 1.12.0
23
+
24
+ ### Minor Changes
25
+
26
+ - f949dce: Add font style control
27
+ - 35092ea: Fixed strings to sentence case
28
+ - 9de89b0: The creation of a panel divider component.
29
+ - b001371: Prevent editable field validation for initial value.
30
+ - 2da724c: Fix input width changing, according to selection
31
+ - cf83fe4: Updated link control to save null instead of empty string, to allow it to pass validation, and re-add support of dynamic tags
32
+
33
+ ### Patch Changes
34
+
35
+ - 1597a71: Add validation for class creation.
36
+ - Updated dependencies [728ffb5]
37
+ - Updated dependencies [35092ea]
38
+ - Updated dependencies [b001371]
39
+ - Updated dependencies [2da724c]
40
+ - Updated dependencies [cf83fe4]
41
+ - @elementor/editor-props@0.9.2
42
+ - @elementor/editor-controls@0.11.0
43
+ - @elementor/editor-ui@0.4.0
44
+ - @elementor/editor-styles-repository@0.7.2
45
+ - @elementor/editor-elements@0.5.4
46
+ - @elementor/editor-styles@0.5.7
47
+
3
48
  ## 1.11.1
4
49
 
5
50
  ### Patch Changes