Skip to content

Commit

Permalink
chore: release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roymondchen committed Aug 30, 2022
1 parent 793d02a commit 53f36bc
Show file tree
Hide file tree
Showing 19 changed files with 131 additions and 113 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# [1.1.0](https://github.com/Tencent/tmagic-editor/compare/v1.1.0-beta.13...v1.1.0) (2022-08-30)


### Bug Fixes

* **editor,stage,ui,runtime:** 流式布局下,height自动设置成auto ([2201fbe](https://github.com/Tencent/tmagic-editor/commit/2201fbe80c5e14254c4f5746f1b82209711aef5e)), closes [#298](https://github.com/Tencent/tmagic-editor/issues/298)
* **editor:** 添加remove事件时的参数 ([3af6f11](https://github.com/Tencent/tmagic-editor/commit/3af6f11f9f851accd396e917ecb4f03dd7bb2162))
* **stage:** 流式布局resize从上或者左边调整,选中框出现错位 ([9e16747](https://github.com/Tencent/tmagic-editor/commit/9e167474a2ff2f937e1e0c3861bf8451f19cbc48)), closes [#297](https://github.com/Tencent/tmagic-editor/issues/297)


### Features

* **editor:** 创建新组件时的顺序 ([#316](https://github.com/Tencent/tmagic-editor/issues/316)) ([6c0b92e](https://github.com/Tencent/tmagic-editor/commit/6c0b92e80887f10c92ee9ecf450ebca4a0bc2fec))
* **editor:** 编辑器销毁后销毁services ([4a59b4b](https://github.com/Tencent/tmagic-editor/commit/4a59b4b0f49a6e608361980723429b1f362a82c1))
* **stage:** 多选支持resize ([793d02a](https://github.com/Tencent/tmagic-editor/commit/793d02a7067f59806655938aaa35a34e23dcbb75)), closes [#302](https://github.com/Tencent/tmagic-editor/issues/302)



# [1.1.0-beta.13](https://github.com/Tencent/tmagic-editor/compare/v1.1.0-beta.12...v1.1.0-beta.13) (2022-08-29)


Expand Down
8 changes: 4 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "docs",
"private": true,
"version": "1.1.0-beta.13",
"version": "1.1.0",
"scripts": {
"clean:top": "rimraf dist",
"dev": "vuepress dev src",
"build": "npm run clean:top && vuepress build src -d dist"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.9",
"@tmagic/form": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/form": "1.1.0",
"@tmagic/schema": "1.1.0",
"@tmagic/utils": "1.1.0",
"element-plus": "^2.2.6",
"highlight.js": "^11.2.0",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "tmagic",
"private": true,
"packageManager": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/cli",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/core",
"sideEffects": [
"dist/*"
Expand Down Expand Up @@ -35,7 +35,7 @@
"vue"
],
"dependencies": {
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0",
"events": "^3.3.0"
},
"devDependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/editor/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/editor",
"sideEffects": [
"dist/*",
Expand Down Expand Up @@ -45,11 +45,11 @@
"dependencies": {
"@babel/core": "^7.18.0",
"@element-plus/icons-vue": "^2.0.9",
"@tmagic/core": "1.1.0-beta.13",
"@tmagic/form": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/stage": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/core": "1.1.0",
"@tmagic/form": "1.1.0",
"@tmagic/schema": "1.1.0",
"@tmagic/stage": "1.1.0",
"@tmagic/utils": "1.1.0",
"buffer": "^6.0.3",
"color": "^3.1.3",
"element-plus": "^2.2.6",
Expand All @@ -62,7 +62,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
"@tmagic/form": "1.1.0-beta.13",
"@tmagic/form": "1.1.0",
"element-plus": "^2.2.6",
"monaco-editor": "^0.34.0",
"vue": "^3.2.37"
Expand Down
4 changes: 2 additions & 2 deletions packages/form/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/form",
"sideEffects": [
"dist/*",
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.9",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0",
"element-plus": "^2.2.6",
"lodash-es": "^4.17.21",
"sortablejs": "^1.14.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/schema",
"sideEffects": false,
"main": "dist/tmagic-schema.umd.js",
Expand Down
8 changes: 4 additions & 4 deletions packages/stage/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/stage",
"sideEffects": [
"dist/*"
Expand Down Expand Up @@ -29,9 +29,9 @@
},
"dependencies": {
"@scena/guides": "^0.17.0",
"@tmagic/core": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/core": "1.1.0",
"@tmagic/schema": "1.1.0",
"@tmagic/utils": "1.1.0",
"events": "^3.3.0",
"keycon": "^1.1.2",
"lodash-es": "^4.17.21",
Expand Down
8 changes: 4 additions & 4 deletions packages/table/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/table",
"sideEffects": [
"dist/*"
Expand Down Expand Up @@ -32,14 +32,14 @@
"url": "https://github.com/Tencent/tmagic-editor.git"
},
"dependencies": {
"@tmagic/form": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/form": "1.1.0",
"@tmagic/utils": "1.1.0",
"element-plus": "^2.2.6",
"lodash-es": "^4.17.21",
"vue": "^3.2.37"
},
"peerDependencies": {
"@tmagic/form": "1.1.0-beta.13",
"@tmagic/form": "1.1.0",
"element-plus": "^2.2.6",
"vue": "^3.2.37"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/ui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tmagic/ui-react",
"version": "1.1.0-beta.13",
"version": "1.1.0",
"main": "src/index.ts",
"engines": {
"node": ">=14"
Expand All @@ -13,8 +13,8 @@
"react:build": "tsc && vite build"
},
"dependencies": {
"@tmagic/core": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/core": "1.1.0",
"@tmagic/schema": "1.1.0",
"qrcode": "^1.5.0",
"react": "^17.0.0",
"react-dom": "^17.0.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/ui-vue2/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/ui-vue2",
"main": "src/index.ts",
"engines": {
Expand All @@ -10,9 +10,9 @@
"url": "https://github.com/Tencent/tmagic-editor.git"
},
"dependencies": {
"@tmagic/core": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/core": "1.1.0",
"@tmagic/schema": "1.1.0",
"@tmagic/utils": "1.1.0",
"qrcode": "^1.5.0",
"vue": "^2.7.4"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/ui",
"main": "src/index.ts",
"engines": {
Expand All @@ -11,9 +11,9 @@
"url": "https://github.com/Tencent/tmagic-editor.git"
},
"dependencies": {
"@tmagic/core": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/core": "1.1.0",
"@tmagic/schema": "1.1.0",
"@tmagic/utils": "1.1.0",
"delegate": "^3.2.0",
"qrcode": "^1.5.0",
"tiny-emitter": "^2.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-beta.13",
"version": "1.1.0",
"name": "@tmagic/utils",
"main": "dist/tmagic-utils.umd.js",
"module": "dist/tmagic-utils.mjs",
Expand All @@ -24,7 +24,7 @@
"url": "https://github.com/Tencent/tmagic-editor.git"
},
"dependencies": {
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0",
"dayjs": "^1.11.4"
},
"devDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tmagic-playground",
"version": "1.1.0-beta.13",
"version": "1.1.0",
"private": true,
"scripts": {
"clean:top": "rimraf dist",
Expand All @@ -12,11 +12,11 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.9",
"@tmagic/editor": "1.1.0-beta.13",
"@tmagic/form": "1.1.0-beta.13",
"@tmagic/schema": "1.1.0-beta.13",
"@tmagic/stage": "1.1.0-beta.13",
"@tmagic/utils": "1.1.0-beta.13",
"@tmagic/editor": "1.1.0",
"@tmagic/form": "1.1.0",
"@tmagic/schema": "1.1.0",
"@tmagic/stage": "1.1.0",
"@tmagic/utils": "1.1.0",
"element-plus": "^2.2.6",
"monaco-editor": "^0.34.0",
"serialize-javascript": "^6.0.0",
Expand Down
Loading

0 comments on commit 53f36bc

Please sign in to comment.