@elementor/editor-editing-panel 1.2.0 → 1.4.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 +48 -0
- package/dist/index.js +852 -615
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +790 -544
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -11
- package/src/components/conditional-tooltip-wrapper.tsx +52 -0
- package/src/components/css-class-selector.tsx +59 -19
- package/src/components/multi-combobox/types.ts +1 -0
- package/src/components/style-sections/border-section/border-radius-field.tsx +4 -4
- package/src/components/style-sections/border-section/border-width-field.tsx +4 -4
- package/src/components/style-sections/layout-section/align-items-field.tsx +40 -60
- package/src/components/style-sections/layout-section/align-self-child-field.tsx +72 -0
- package/src/components/style-sections/layout-section/flex-direction-field.tsx +2 -2
- package/src/components/style-sections/layout-section/flex-order-field.tsx +14 -8
- package/src/components/style-sections/layout-section/flex-size-field.tsx +164 -0
- package/src/components/style-sections/layout-section/gap-control-field.tsx +18 -0
- package/src/components/style-sections/layout-section/justify-content-field.tsx +51 -78
- package/src/components/style-sections/layout-section/layout-section.tsx +9 -2
- package/src/components/style-sections/layout-section/utils/rotated-icon.tsx +52 -0
- package/src/components/style-sections/layout-section/wrap-field.tsx +1 -1
- package/src/components/style-sections/position-section/position-section.tsx +3 -3
- package/src/components/style-sections/typography-section/line-height-field.tsx +21 -0
- package/src/components/style-sections/typography-section/text-style-field.tsx +31 -8
- package/src/components/style-sections/typography-section/typography-section.tsx +3 -1
- package/src/components/style-tab.tsx +2 -11
- package/src/contexts/style-context.tsx +2 -2
- package/src/controls-registry/controls-registry.tsx +4 -0
- package/src/dynamics/components/dynamic-selection-control.tsx +8 -5
- package/src/dynamics/components/dynamic-selection.tsx +10 -8
- package/src/dynamics/dynamic-control.tsx +9 -11
- package/src/dynamics/utils.ts +20 -3
- package/src/hooks/use-style-prop-history.ts +1 -1
- package/src/hooks/use-styles-field.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6f2b17f: Introduce empty (local) style def for class selector.
|
|
8
|
+
- ff35b95: Added Gaps field with a control, proptype and a transformer
|
|
9
|
+
- 7176c7b: set global classes chips max width
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [6f2b17f]
|
|
14
|
+
- Updated dependencies [8943189]
|
|
15
|
+
- Updated dependencies [ff35b95]
|
|
16
|
+
- @elementor/editor-styles-repository@0.2.0
|
|
17
|
+
- @elementor/editor-elements@0.3.3
|
|
18
|
+
- @elementor/editor-props@0.5.0
|
|
19
|
+
- @elementor/editor-controls@0.3.0
|
|
20
|
+
- @elementor/editor-styles@0.3.2
|
|
21
|
+
|
|
22
|
+
## 1.3.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- 0edc1f2: Added Flex child align self
|
|
27
|
+
- c393288: Remove support for shorthand prop values.
|
|
28
|
+
- bc728b7: Add type and validation support to `useBoundProp`
|
|
29
|
+
- 72a6a18: Added flex size field
|
|
30
|
+
- b05b412: added line height control and rearranged the typography section
|
|
31
|
+
- 14e1fcf: Added link control field
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- 2c230a4: Fixed icon rotation mechanism and align-items value from justify to stretch
|
|
36
|
+
- ae537f7: Update tooltip texts
|
|
37
|
+
- 91453b3: Update and lock dependencies versions
|
|
38
|
+
- Updated dependencies [c393288]
|
|
39
|
+
- Updated dependencies [bc728b7]
|
|
40
|
+
- Updated dependencies [91453b3]
|
|
41
|
+
- @elementor/editor-controls@0.2.0
|
|
42
|
+
- @elementor/editor-props@0.4.0
|
|
43
|
+
- @elementor/editor-v1-adapters@0.8.5
|
|
44
|
+
- @elementor/editor-responsive@0.12.4
|
|
45
|
+
- @elementor/editor-elements@0.3.2
|
|
46
|
+
- @elementor/editor-panels@0.10.2
|
|
47
|
+
- @elementor/editor-styles@0.3.1
|
|
48
|
+
- @elementor/editor@0.17.2
|
|
49
|
+
- @elementor/menus@0.1.2
|
|
50
|
+
|
|
3
51
|
## 1.2.0
|
|
4
52
|
|
|
5
53
|
### Minor Changes
|