@elementor/editor-editing-panel 1.41.0 → 1.43.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 +29 -0
- package/dist/index.js +257 -187
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +235 -153
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/components/css-classes/css-class-item.tsx +4 -2
- package/src/components/css-classes/css-class-menu.tsx +4 -4
- package/src/components/css-classes/css-class-selector.tsx +36 -57
- package/src/components/css-classes/use-apply-and-unapply-class.ts +82 -10
- package/src/components/style-sections/size-section/object-fit-field.tsx +2 -6
- package/src/components/style-sections/size-section/object-position-field.tsx +2 -6
- package/src/components/style-sections/size-section/size-section.tsx +4 -10
- package/src/styles-inheritance/components/label-chip.tsx +14 -9
- package/src/styles-inheritance/consts.ts +1 -1
- package/src/styles-inheritance/hooks/use-normalized-inheritance-chain-items.tsx +17 -1
- package/src/styles-inheritance/styles-inheritance-infotip.tsx +142 -87
- package/src/styles-inheritance/types.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.43.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1edd821: Add history for class creation
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a3ba5ef: Prevent inline class rename based on user capability.
|
|
12
|
+
- 9b6dbdd: Update class selector capabilities texts.
|
|
13
|
+
- 7feedb4: Enable normal state by default.
|
|
14
|
+
- Updated dependencies [9b6dbdd]
|
|
15
|
+
- @elementor/editor-ui@0.10.1
|
|
16
|
+
- @elementor/editor-controls@0.34.2
|
|
17
|
+
|
|
18
|
+
## 1.42.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- e732d81: Show Tooltip on hover and Infotip on click for style indicator.
|
|
23
|
+
- 8dca168: Prevent scrolling when the Indication Popover has been opened.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- cd4c3fe: Remove duplicated object fit set value.
|
|
28
|
+
- b7369f2: Update the chip color inside the Indication Popover.
|
|
29
|
+
- Updated dependencies [8f3a61b]
|
|
30
|
+
- @elementor/editor-controls@0.34.1
|
|
31
|
+
|
|
3
32
|
## 1.41.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|