@elementor/editor-editing-panel 1.2.0 → 1.3.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 (26) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/index.js +657 -486
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +613 -433
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +12 -11
  7. package/src/components/style-sections/border-section/border-radius-field.tsx +4 -4
  8. package/src/components/style-sections/border-section/border-width-field.tsx +4 -4
  9. package/src/components/style-sections/layout-section/align-items-field.tsx +40 -60
  10. package/src/components/style-sections/layout-section/align-self-child-field.tsx +72 -0
  11. package/src/components/style-sections/layout-section/flex-direction-field.tsx +2 -2
  12. package/src/components/style-sections/layout-section/flex-order-field.tsx +14 -8
  13. package/src/components/style-sections/layout-section/flex-size-field.tsx +164 -0
  14. package/src/components/style-sections/layout-section/justify-content-field.tsx +51 -78
  15. package/src/components/style-sections/layout-section/layout-section.tsx +7 -2
  16. package/src/components/style-sections/layout-section/utils/rotated-icon.tsx +52 -0
  17. package/src/components/style-sections/layout-section/wrap-field.tsx +1 -1
  18. package/src/components/style-sections/position-section/position-section.tsx +3 -3
  19. package/src/components/style-sections/typography-section/line-height-field.tsx +21 -0
  20. package/src/components/style-sections/typography-section/text-style-field.tsx +31 -8
  21. package/src/components/style-sections/typography-section/typography-section.tsx +3 -1
  22. package/src/controls-registry/controls-registry.tsx +4 -0
  23. package/src/dynamics/components/dynamic-selection-control.tsx +8 -5
  24. package/src/dynamics/components/dynamic-selection.tsx +10 -8
  25. package/src/dynamics/dynamic-control.tsx +9 -11
  26. package/src/dynamics/utils.ts +20 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0edc1f2: Added Flex child align self
8
+ - c393288: Remove support for shorthand prop values.
9
+ - bc728b7: Add type and validation support to `useBoundProp`
10
+ - 72a6a18: Added flex size field
11
+ - b05b412: added line height control and rearranged the typography section
12
+ - 14e1fcf: Added link control field
13
+
14
+ ### Patch Changes
15
+
16
+ - 2c230a4: Fixed icon rotation mechanism and align-items value from justify to stretch
17
+ - ae537f7: Update tooltip texts
18
+ - 91453b3: Update and lock dependencies versions
19
+ - Updated dependencies [c393288]
20
+ - Updated dependencies [bc728b7]
21
+ - Updated dependencies [91453b3]
22
+ - @elementor/editor-controls@0.2.0
23
+ - @elementor/editor-props@0.4.0
24
+ - @elementor/editor-v1-adapters@0.8.5
25
+ - @elementor/editor-responsive@0.12.4
26
+ - @elementor/editor-elements@0.3.2
27
+ - @elementor/editor-panels@0.10.2
28
+ - @elementor/editor-styles@0.3.1
29
+ - @elementor/editor@0.17.2
30
+ - @elementor/menus@0.1.2
31
+
3
32
  ## 1.2.0
4
33
 
5
34
  ### Minor Changes