@elementor/editor-editing-panel 1.27.0 → 1.29.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 +52 -0
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +176 -155
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +172 -157
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
- package/src/components/add-or-remove-content.tsx +1 -0
- package/src/components/css-classes/css-class-item.tsx +8 -10
- package/src/components/css-classes/css-class-menu.tsx +7 -5
- package/src/components/css-classes/css-class-selector.tsx +22 -22
- package/src/components/multi-combobox.tsx +7 -42
- package/src/components/style-sections/layout-section/display-field.tsx +34 -28
- package/src/components/style-sections/layout-section/layout-section.tsx +14 -2
- package/src/components/style-tab.tsx +2 -19
- package/src/contexts/style-context.tsx +1 -1
- package/src/controls-registry/styles-field.tsx +9 -2
- package/src/hooks/use-active-style-def-id.ts +36 -0
- package/src/hooks/use-styles-fields.ts +7 -7
- package/src/index.ts +1 -3
- package/src/init.ts +1 -1
- package/src/styles-inheritance/create-snapshots-manager.ts +8 -1
- package/src/styles-inheritance/create-styles-inheritance.ts +1 -1
- package/src/styles-inheritance/styles-inheritance-indicator.tsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.29.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0ab4b84: Alignment for the controls (right-side) settings & styles tabs
|
|
8
|
+
- 3afb048: Add background to multi-combobox group header in css class selector
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [0ab4b84]
|
|
13
|
+
- Updated dependencies [2b77932]
|
|
14
|
+
- @elementor/editor-controls@0.26.0
|
|
15
|
+
- @elementor/editor-canvas@0.18.1
|
|
16
|
+
|
|
17
|
+
## 1.28.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- a53f563: Remove spacing and fix the title of css classes
|
|
22
|
+
- 2125601: Fix editing panel is breaking on styles undo when style is empty
|
|
23
|
+
- a27cc75: Style tab layout section show correct display value
|
|
24
|
+
- fe0ab45: Filter empty values from props when constructing styles inheritance snapshots
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 93d3e45: Fix css class menu focus-visible inconsistency
|
|
29
|
+
- 42c42ee: Remove side-effects
|
|
30
|
+
- 5fa575c: Fix when switching documents it removes all the previous document styles
|
|
31
|
+
- 03dad77: Rename "defaultValue" to "placeholder" on bound prop context
|
|
32
|
+
- 64574e3: Refactor styles provider as a preparation for header/footer styles not being rendered
|
|
33
|
+
- 14d8b08: Show placeholder in empty class selector.
|
|
34
|
+
- Updated dependencies [f9d5d33]
|
|
35
|
+
- Updated dependencies [bba6b02]
|
|
36
|
+
- Updated dependencies [42c42ee]
|
|
37
|
+
- Updated dependencies [5fa575c]
|
|
38
|
+
- Updated dependencies [03dad77]
|
|
39
|
+
- Updated dependencies [a27cc75]
|
|
40
|
+
- Updated dependencies [6a882a0]
|
|
41
|
+
- Updated dependencies [044815b]
|
|
42
|
+
- Updated dependencies [64574e3]
|
|
43
|
+
- Updated dependencies [fe0ab45]
|
|
44
|
+
- Updated dependencies [fd5251c]
|
|
45
|
+
- @elementor/editor-canvas@0.18.0
|
|
46
|
+
- @elementor/editor-controls@0.25.0
|
|
47
|
+
- @elementor/editor-styles-repository@0.8.4
|
|
48
|
+
- @elementor/editor-panels@0.14.1
|
|
49
|
+
- @elementor/editor@0.18.6
|
|
50
|
+
- @elementor/editor-elements@0.8.1
|
|
51
|
+
- @elementor/editor-ui@0.7.1
|
|
52
|
+
- @elementor/editor-props@0.12.0
|
|
53
|
+
- @elementor/editor-styles@0.6.6
|
|
54
|
+
|
|
3
55
|
## 1.27.0
|
|
4
56
|
|
|
5
57
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -31,4 +31,6 @@ declare const usePanelStatus: () => {
|
|
|
31
31
|
isBlocked: boolean;
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
declare function init(): void;
|
|
35
|
+
|
|
36
|
+
export { type PopoverActionProps, init, injectIntoClassSelectorActions, replaceControl, usePanelActions, usePanelStatus };
|
package/dist/index.d.ts
CHANGED
|
@@ -31,4 +31,6 @@ declare const usePanelStatus: () => {
|
|
|
31
31
|
isBlocked: boolean;
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
declare function init(): void;
|
|
35
|
+
|
|
36
|
+
export { type PopoverActionProps, init, injectIntoClassSelectorActions, replaceControl, usePanelActions, usePanelStatus };
|