@elementor/editor-editing-panel 1.3.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 +19 -0
- package/dist/index.js +568 -502
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +448 -382
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -5
- 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/layout-section/gap-control-field.tsx +18 -0
- package/src/components/style-sections/layout-section/layout-section.tsx +2 -0
- package/src/components/style-tab.tsx +2 -11
- package/src/contexts/style-context.tsx +2 -2
- 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,24 @@
|
|
|
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
|
+
|
|
3
22
|
## 1.3.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|