@object-ui/plugin-editor 0.5.0 → 2.0.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +14 -0
- package/package.json +6 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @object-ui/plugin-editor@0.
|
|
2
|
+
> @object-ui/plugin-editor@2.0.0 build /home/runner/work/objectui/objectui/packages/plugin-editor
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
5
|
[36mvite v7.3.1 [32mbuilding client environment for production...[36m[39m
|
|
@@ -12,7 +12,7 @@ computing gzip size...
|
|
|
12
12
|
[2mdist/[22m[36mindex.js [39m[1m[2m 0.19 kB[22m[1m[22m[2m │ gzip: 0.15 kB[22m
|
|
13
13
|
[2mdist/[22m[36mindex-CuYbY6xb.js [39m[1m[2m10.34 kB[22m[1m[22m[2m │ gzip: 3.36 kB[22m
|
|
14
14
|
[2mdist/[22m[36mMonacoImpl-hfdmoz6k.js [39m[1m[2m18.58 kB[22m[1m[22m[2m │ gzip: 5.71 kB[22m
|
|
15
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
15
|
+
[32m[36m[vite:dts][32m Declaration files built in 14500ms.
|
|
16
16
|
[39m
|
|
17
17
|
[2mdist/[22m[36mindex.umd.cjs [39m[1m[2m22.22 kB[22m[1m[22m[2m │ gzip: 7.94 kB[22m
|
|
18
|
-
[32m✓ built in
|
|
18
|
+
[32m✓ built in 16.45s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @object-ui/plugin-editor
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- b859617: Release v1.0.0 — unify all package versions to 1.0.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [b859617]
|
|
12
|
+
- @object-ui/types@2.0.0
|
|
13
|
+
- @object-ui/core@2.0.0
|
|
14
|
+
- @object-ui/react@2.0.0
|
|
15
|
+
- @object-ui/components@2.0.0
|
|
16
|
+
|
|
3
17
|
## 0.3.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/plugin-editor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Rich text editor plugin for Object UI, powered by Monaco Editor",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@monaco-editor/react": "^4.6.0",
|
|
28
|
-
"@object-ui/components": "0.
|
|
29
|
-
"@object-ui/core": "0.
|
|
30
|
-
"@object-ui/react": "0.
|
|
31
|
-
"@object-ui/types": "0.
|
|
28
|
+
"@object-ui/components": "2.0.0",
|
|
29
|
+
"@object-ui/core": "2.0.0",
|
|
30
|
+
"@object-ui/react": "2.0.0",
|
|
31
|
+
"@object-ui/types": "2.0.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.0.0 || ^19.0.0",
|
|
35
35
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/react": "^19.2.
|
|
38
|
+
"@types/react": "^19.2.13",
|
|
39
39
|
"@types/react-dom": "^19.2.3",
|
|
40
40
|
"@vitejs/plugin-react": "^5.1.3",
|
|
41
41
|
"typescript": "^5.9.3",
|