@elementor/editor-props 0.15.0 → 0.18.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 +26 -0
- package/dist/index.d.mts +3402 -85
- package/dist/index.d.ts +3402 -85
- package/dist/index.js +119 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +108 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/prop-types/filter-prop-types/backdrop-filter.ts +10 -0
- package/src/prop-types/filter-prop-types/contrast-filter.ts +8 -0
- package/src/prop-types/filter-prop-types/drop-shadow-filter.ts +8 -0
- package/src/prop-types/filter-prop-types/filter.ts +18 -1
- package/src/prop-types/filter-prop-types/grayscale-filter.ts +8 -0
- package/src/prop-types/filter-prop-types/hue-rotate-filter.ts +8 -0
- package/src/prop-types/filter-prop-types/invert-filter.ts +8 -0
- package/src/prop-types/filter-prop-types/saturate-filter.ts +8 -0
- package/src/prop-types/filter-prop-types/sepia-filter.ts +8 -0
- package/src/prop-types/index.ts +10 -0
- package/src/prop-types/size.ts +1 -1
- package/src/prop-types/transform-prop-types/move-transform.ts +15 -0
- package/src/prop-types/transform-prop-types/scale-transform.ts +13 -0
- package/src/prop-types/transform-prop-types/transform.ts +12 -0
- package/src/types.ts +3 -4
- package/src/utils/prop-dependency-utils.ts +41 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @elementor/editor-props
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 64b3e09: Adds support for the backdrop-filter css property to atomic widgets.
|
|
8
|
+
- 3904505: Adds hue rotate css filter
|
|
9
|
+
- cdbd491: Add Drop Shadow filter
|
|
10
|
+
|
|
11
|
+
## 0.17.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 068f659: Adds contrast, gray-scale, invert, sepia and saturate css filters
|
|
16
|
+
- e7cca0a: Updated size control to support degree units
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 07ca7e9: Update dependencies SDK to skip invalid values.
|
|
21
|
+
|
|
22
|
+
## 0.16.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- b3726f6: Add transform move control
|
|
27
|
+
- c62d64c: Injected prop dependency API into settings field
|
|
28
|
+
|
|
3
29
|
## 0.15.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|