@elementor/editor-panels 0.8.0 → 0.9.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 +16 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 22f8240: Replaced `UnstableColorPicker` with `UnstableColorField` in color control
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9abdfaf: Fix package.json exports field
|
|
12
|
+
- Updated dependencies [9abdfaf]
|
|
13
|
+
- Updated dependencies [22f8240]
|
|
14
|
+
- @elementor/editor-v1-adapters@0.8.3
|
|
15
|
+
- @elementor/locations@0.7.6
|
|
16
|
+
- @elementor/editor@0.16.0
|
|
17
|
+
- @elementor/store@0.8.6
|
|
18
|
+
|
|
3
19
|
## 0.8.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-panels",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Elementor Team",
|
|
6
6
|
"homepage": "https://elementor.com/",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
13
14
|
"import": "./dist/index.mjs",
|
|
14
|
-
"require": "./dist/index.js"
|
|
15
|
-
"types": "./dist/index.d.ts"
|
|
15
|
+
"require": "./dist/index.js"
|
|
16
16
|
},
|
|
17
17
|
"./package.json": "./package.json"
|
|
18
18
|
},
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elementor/editor": "^0.
|
|
43
|
-
"@elementor/editor-v1-adapters": "^0.8.
|
|
44
|
-
"@elementor/locations": "^0.7.
|
|
45
|
-
"@elementor/store": "^0.8.
|
|
46
|
-
"@elementor/ui": "^1.21.
|
|
42
|
+
"@elementor/editor": "^0.16.0",
|
|
43
|
+
"@elementor/editor-v1-adapters": "^0.8.3",
|
|
44
|
+
"@elementor/locations": "^0.7.6",
|
|
45
|
+
"@elementor/store": "^0.8.6",
|
|
46
|
+
"@elementor/ui": "^1.21.7"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "^18.3.1"
|