From 2a457c9553ac3592c4168c6f3a8aec56525eba70 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Mon, 6 Mar 2023 16:41:58 +0800 Subject: [PATCH] chore: release v1.2.8 --- CHANGELOG.md | 16 +++ package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 4 +- packages/design/package.json | 2 +- packages/editor/package.json | 18 ++-- packages/element-plus-adapter/package.json | 2 +- packages/form/package.json | 6 +- packages/schema/package.json | 2 +- packages/stage/package.json | 8 +- packages/table/package.json | 10 +- .../tdesign-vue-next-adapter/package.json | 2 +- packages/ui-react/package.json | 6 +- packages/ui-vue2/package.json | 8 +- packages/ui/package.json | 8 +- packages/utils/package.json | 4 +- playground/package.json | 16 +-- pnpm-lock.yaml | 98 +++++++++---------- runtime/react/package.json | 14 +-- runtime/vue2/package.json | 14 +-- runtime/vue3/package.json | 14 +-- 21 files changed, 136 insertions(+), 120 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32277188..0c6b6c58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [1.2.8](https://github.com/Tencent/tmagic-editor/compare/v1.2.7...v1.2.8) (2023-03-06) + + +### Bug Fixes + +* **editor,ui,ui-vue2,ui-react:** 页面配置更新后,蒙层无法显示 ([c025508](https://github.com/Tencent/tmagic-editor/commit/c025508cd79009e757b73a190cbb201cd44b3edf)), closes [#472](https://github.com/Tencent/tmagic-editor/issues/472) +* **editor:** 更新组件后,组件树选中状态被重置 ([e0c0143](https://github.com/Tencent/tmagic-editor/commit/e0c014397056bcddf82acd063288d3d045bd2dc5)) +* **editor:** 组件树切换选择组件可能触发多选 ([b8cda53](https://github.com/Tencent/tmagic-editor/commit/b8cda53d6a9af8c06d4f8670289d2a6c9eadfe5c)) + + +### Features + +* **stage:** 支持多选组件并将多个组件拖入指定容器中 ([449efcc](https://github.com/Tencent/tmagic-editor/commit/449efcc56b0cee6898ff439ff441a8a67a1a143c)), closes [#405](https://github.com/Tencent/tmagic-editor/issues/405) + + + ## [1.2.7](https://github.com/Tencent/tmagic-editor/compare/v1.2.6...v1.2.7) (2023-03-02) diff --git a/package.json b/package.json index 50427ec5..07402223 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "tmagic", "private": true, "packageManager": "pnpm@7.1.9", diff --git a/packages/cli/package.json b/packages/cli/package.json index ce9ff602..5f824afd 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/cli", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index 8ca96693..5a2537af 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/core", "type": "module", "sideEffects": [ @@ -36,7 +36,7 @@ "vue" ], "dependencies": { - "@tmagic/schema": "1.2.7", + "@tmagic/schema": "1.2.8", "events": "^3.3.0", "lodash-es": "^4.17.21" }, diff --git a/packages/design/package.json b/packages/design/package.json index 087e7973..1b371ddf 100644 --- a/packages/design/package.json +++ b/packages/design/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/design", "type": "module", "sideEffects": [ diff --git a/packages/editor/package.json b/packages/editor/package.json index 319dce3d..896da96f 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/editor", "type": "module", "sideEffects": [ @@ -46,12 +46,12 @@ "dependencies": { "@babel/core": "^7.18.0", "@element-plus/icons-vue": "^2.0.9", - "@tmagic/core": "1.2.7", - "@tmagic/design": "1.2.7", - "@tmagic/form": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/stage": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/core": "1.2.8", + "@tmagic/design": "1.2.8", + "@tmagic/form": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/stage": "1.2.8", + "@tmagic/utils": "1.2.8", "buffer": "^6.0.3", "color": "^3.1.3", "events": "^3.3.0", @@ -63,8 +63,8 @@ "vue": "^3.2.37" }, "peerDependencies": { - "@tmagic/design": "1.2.7", - "@tmagic/form": "1.2.7", + "@tmagic/design": "1.2.8", + "@tmagic/form": "1.2.8", "monaco-editor": "^0.34.0", "vue": "^3.2.37" }, diff --git a/packages/element-plus-adapter/package.json b/packages/element-plus-adapter/package.json index f9e63959..a7fc5fc0 100644 --- a/packages/element-plus-adapter/package.json +++ b/packages/element-plus-adapter/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/element-plus-adapter", "type": "module", "sideEffects": [ diff --git a/packages/form/package.json b/packages/form/package.json index 7d477b4f..ae795aa6 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/form", "type": "module", "sideEffects": [ @@ -36,8 +36,8 @@ }, "dependencies": { "@element-plus/icons-vue": "^2.0.9", - "@tmagic/design": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/design": "1.2.8", + "@tmagic/utils": "1.2.8", "lodash-es": "^4.17.21", "sortablejs": "^1.14.0", "vue": "^3.2.37" diff --git a/packages/schema/package.json b/packages/schema/package.json index 591350f6..47079506 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/schema", "type": "module", "sideEffects": false, diff --git a/packages/stage/package.json b/packages/stage/package.json index 1f9ab85b..38d2fc36 100644 --- a/packages/stage/package.json +++ b/packages/stage/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/stage", "type": "module", "sideEffects": [ @@ -30,9 +30,9 @@ }, "dependencies": { "@scena/guides": "^0.23.3", - "@tmagic/core": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/core": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/utils": "1.2.8", "events": "^3.3.0", "keycon": "^1.1.2", "lodash-es": "^4.17.21", diff --git a/packages/table/package.json b/packages/table/package.json index 60e172fb..a6cc7b24 100644 --- a/packages/table/package.json +++ b/packages/table/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/table", "type": "module", "sideEffects": [ @@ -33,14 +33,14 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "@tmagic/design": "1.2.7", - "@tmagic/form": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/design": "1.2.8", + "@tmagic/form": "1.2.8", + "@tmagic/utils": "1.2.8", "lodash-es": "^4.17.21", "vue": "^3.2.37" }, "peerDependencies": { - "@tmagic/form": "1.2.7", + "@tmagic/form": "1.2.8", "vue": "^3.2.37" }, "devDependencies": { diff --git a/packages/tdesign-vue-next-adapter/package.json b/packages/tdesign-vue-next-adapter/package.json index 8d6ca015..2837befa 100644 --- a/packages/tdesign-vue-next-adapter/package.json +++ b/packages/tdesign-vue-next-adapter/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/tdesign-vue-next-adapter", "type": "module", "sideEffects": [ diff --git a/packages/ui-react/package.json b/packages/ui-react/package.json index 169c2e8f..597decff 100644 --- a/packages/ui-react/package.json +++ b/packages/ui-react/package.json @@ -1,6 +1,6 @@ { "name": "@tmagic/ui-react", - "version": "1.2.7", + "version": "1.2.8", "type": "module", "main": "src/index.ts", "engines": { @@ -14,8 +14,8 @@ "react:build": "tsc && vite build" }, "dependencies": { - "@tmagic/core": "1.2.7", - "@tmagic/schema": "1.2.7", + "@tmagic/core": "1.2.8", + "@tmagic/schema": "1.2.8", "qrcode": "^1.5.0", "react": "^17.0.0", "react-dom": "^17.0.0" diff --git a/packages/ui-vue2/package.json b/packages/ui-vue2/package.json index d3f9e72c..43224c44 100644 --- a/packages/ui-vue2/package.json +++ b/packages/ui-vue2/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/ui-vue2", "type": "module", "main": "src/index.ts", @@ -11,9 +11,9 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "@tmagic/core": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/core": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/utils": "1.2.8", "qrcode": "^1.5.0", "vue": "^2.7.4" }, diff --git a/packages/ui/package.json b/packages/ui/package.json index 86cc6c37..142b129c 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/ui", "type": "module", "main": "src/index.ts", @@ -12,9 +12,9 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "@tmagic/core": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/core": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/utils": "1.2.8", "delegate": "^3.2.0", "qrcode": "^1.5.0", "tiny-emitter": "^2.1.0", diff --git a/packages/utils/package.json b/packages/utils/package.json index 6663e606..b8875fa3 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,5 +1,5 @@ { - "version": "1.2.7", + "version": "1.2.8", "name": "@tmagic/utils", "type": "module", "main": "dist/tmagic-utils.umd.cjs", @@ -25,7 +25,7 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "@tmagic/schema": "1.2.7", + "@tmagic/schema": "1.2.8", "dayjs": "^1.11.4" }, "peerDependencies": { diff --git a/playground/package.json b/playground/package.json index 51b5135b..cd2af0ff 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,6 +1,6 @@ { "name": "tmagic-playground", - "version": "1.2.7", + "version": "1.2.8", "type": "module", "private": true, "scripts": { @@ -13,13 +13,13 @@ }, "dependencies": { "@element-plus/icons-vue": "^2.0.9", - "@tmagic/design": "1.2.7", - "@tmagic/editor": "1.2.7", - "@tmagic/element-plus-adapter": "1.2.7", - "@tmagic/form": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/stage": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/design": "1.2.8", + "@tmagic/editor": "1.2.8", + "@tmagic/element-plus-adapter": "1.2.8", + "@tmagic/form": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/stage": "1.2.8", + "@tmagic/utils": "1.2.8", "element-plus": "^2.2.32", "monaco-editor": "^0.34.0", "serialize-javascript": "^6.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d61ef3ec..68d56838 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -107,7 +107,7 @@ importers: packages/core: specifiers: - '@tmagic/schema': 1.2.7 + '@tmagic/schema': 1.2.8 '@types/events': ^3.0.0 '@types/lodash-es': ^4.17.4 '@types/node': ^15.12.4 @@ -157,12 +157,12 @@ importers: specifiers: '@babel/core': ^7.18.0 '@element-plus/icons-vue': ^2.0.9 - '@tmagic/core': 1.2.7 - '@tmagic/design': 1.2.7 - '@tmagic/form': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/stage': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/core': 1.2.8 + '@tmagic/design': 1.2.8 + '@tmagic/form': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/stage': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/events': ^3.0.0 '@types/lodash-es': ^4.17.4 '@types/node': ^15.12.4 @@ -239,8 +239,8 @@ importers: specifiers: '@babel/core': ^7.18.0 '@element-plus/icons-vue': ^2.0.9 - '@tmagic/design': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/design': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/lodash-es': ^4.17.4 '@types/node': ^15.12.4 '@types/sortablejs': ^1.10.7 @@ -293,9 +293,9 @@ importers: packages/stage: specifiers: '@scena/guides': ^0.23.3 - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/events': ^3.0.0 '@types/lodash-es': ^4.17.4 '@types/node': ^15.12.4 @@ -329,9 +329,9 @@ importers: packages/table: specifiers: - '@tmagic/design': 1.2.7 - '@tmagic/form': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/design': 1.2.8 + '@tmagic/form': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/color': ^3.0.1 '@types/lodash-es': ^4.17.4 '@types/node': ^15.12.4 @@ -392,9 +392,9 @@ importers: packages/ui: specifiers: '@testing-library/vue': ^6.4.2 - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/qrcode': ^1.4.2 '@vue/compiler-sfc': ^3.2.37 '@vue/test-utils': ^2.0.0 @@ -418,8 +418,8 @@ importers: packages/ui-react: specifiers: - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 '@types/react': ^17.0.37 '@types/react-dom': ^17.0.11 qrcode: ^1.5.0 @@ -439,9 +439,9 @@ importers: packages/ui-vue2: specifiers: - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/utils': 1.2.8 qrcode: ^1.5.0 vite: ^3.1.3 vue: ^2.7.4 @@ -458,7 +458,7 @@ importers: packages/utils: specifiers: - '@tmagic/schema': 1.2.7 + '@tmagic/schema': 1.2.8 '@types/node': ^15.12.4 dayjs: ^1.11.4 rimraf: ^3.0.2 @@ -476,13 +476,13 @@ importers: playground: specifiers: '@element-plus/icons-vue': ^2.0.9 - '@tmagic/design': 1.2.7 - '@tmagic/editor': 1.2.7 - '@tmagic/element-plus-adapter': 1.2.7 - '@tmagic/form': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/stage': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/design': 1.2.8 + '@tmagic/editor': 1.2.8 + '@tmagic/element-plus-adapter': 1.2.8 + '@tmagic/form': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/stage': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/node': ^15.12.4 '@types/serialize-javascript': ^5.0.1 '@vitejs/plugin-legacy': ^2.2.0 @@ -532,12 +532,12 @@ importers: runtime/react: specifiers: - '@tmagic/cli': 1.2.7 - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/stage': 1.2.7 - '@tmagic/ui-react': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/cli': 1.2.8 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/stage': 1.2.8 + '@tmagic/ui-react': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/react': ^17.0.37 '@types/react-dom': ^17.0.11 '@vitejs/plugin-legacy': ^2.2.0 @@ -571,12 +571,12 @@ importers: runtime/vue2: specifiers: - '@tmagic/cli': 1.2.7 - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/stage': 1.2.7 - '@tmagic/ui-vue2': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/cli': 1.2.8 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/stage': 1.2.8 + '@tmagic/ui-vue2': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/events': ^3.0.0 '@vitejs/plugin-legacy': ^2.2.0 '@vitejs/plugin-vue2': ^1.1.2 @@ -612,12 +612,12 @@ importers: runtime/vue3: specifiers: - '@tmagic/cli': 1.2.7 - '@tmagic/core': 1.2.7 - '@tmagic/schema': 1.2.7 - '@tmagic/stage': 1.2.7 - '@tmagic/ui': 1.2.7 - '@tmagic/utils': 1.2.7 + '@tmagic/cli': 1.2.8 + '@tmagic/core': 1.2.8 + '@tmagic/schema': 1.2.8 + '@tmagic/stage': 1.2.8 + '@tmagic/ui': 1.2.8 + '@tmagic/utils': 1.2.8 '@types/node': ^15.12.4 '@vitejs/plugin-legacy': ^2.2.0 '@vitejs/plugin-vue': ^3.1.0 diff --git a/runtime/react/package.json b/runtime/react/package.json index c28c10b6..5afb3844 100644 --- a/runtime/react/package.json +++ b/runtime/react/package.json @@ -1,6 +1,6 @@ { "name": "runtime-react", - "version": "1.2.7", + "version": "1.2.8", "type": "module", "private": true, "scripts": { @@ -21,12 +21,12 @@ "build:event:admin": "vite build --config build.vite.config.ts --mode event:admin" }, "dependencies": { - "@tmagic/cli": "1.2.7", - "@tmagic/core": "1.2.7", - "@tmagic/ui-react": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/stage": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/cli": "1.2.8", + "@tmagic/core": "1.2.8", + "@tmagic/ui-react": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/stage": "1.2.8", + "@tmagic/utils": "1.2.8", "axios": "^0.25.0", "terser": "^5.14.2", "react": "^17.0.2", diff --git a/runtime/vue2/package.json b/runtime/vue2/package.json index 73b5a13f..bca7c4c3 100644 --- a/runtime/vue2/package.json +++ b/runtime/vue2/package.json @@ -1,6 +1,6 @@ { "name": "runtime-vue2", - "version": "1.2.7", + "version": "1.2.8", "type": "module", "private": true, "scripts": { @@ -21,12 +21,12 @@ "build:event:admin": "vite build --config build.vite.config.ts --mode event:admin" }, "dependencies": { - "@tmagic/cli": "1.2.7", - "@tmagic/core": "1.2.7", - "@tmagic/ui-vue2": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/stage": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/cli": "1.2.8", + "@tmagic/core": "1.2.8", + "@tmagic/ui-vue2": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/stage": "1.2.8", + "@tmagic/utils": "1.2.8", "axios": "^0.25.0", "terser": "^5.14.2", "vue": "^2.7.4" diff --git a/runtime/vue3/package.json b/runtime/vue3/package.json index ba56f40d..3d0db9c2 100644 --- a/runtime/vue3/package.json +++ b/runtime/vue3/package.json @@ -1,6 +1,6 @@ { "name": "runtime-vue3", - "version": "1.2.7", + "version": "1.2.8", "type": "module", "private": true, "scripts": { @@ -21,12 +21,12 @@ "build:event:admin": "vite build --config build.vite.config.ts --mode event:admin" }, "dependencies": { - "@tmagic/cli": "1.2.7", - "@tmagic/core": "1.2.7", - "@tmagic/ui": "1.2.7", - "@tmagic/schema": "1.2.7", - "@tmagic/stage": "1.2.7", - "@tmagic/utils": "1.2.7", + "@tmagic/cli": "1.2.8", + "@tmagic/core": "1.2.8", + "@tmagic/ui": "1.2.8", + "@tmagic/schema": "1.2.8", + "@tmagic/stage": "1.2.8", + "@tmagic/utils": "1.2.8", "@vitejs/plugin-legacy": "^2.2.0", "@vitejs/plugin-vue-jsx": "^1.3.10", "axios": "^0.25.0",