chore: release v1.4.5

This commit is contained in:
roymondchen 2024-05-20 14:24:27 +08:00
parent 22eb7453be
commit fbac2f820e
22 changed files with 68 additions and 50 deletions

View File

@ -1,3 +1,21 @@
## [1.4.5](https://github.com/Tencent/tmagic-editor/compare/v1.4.4...v1.4.5) (2024-05-20)
### Bug Fixes
* **core,data-source:** 事件参数中关联数据源字段无法自动更新 ([c665bf3](https://github.com/Tencent/tmagic-editor/commit/c665bf3ccc7627f134efb5fe7bc7f53c88ec338c))
* **editor,stage,utils:** 修复在ipad等大屏场景下编辑画布中元素位置计算偏差问题 ([#598](https://github.com/Tencent/tmagic-editor/issues/598)) ([e39a7d1](https://github.com/Tencent/tmagic-editor/commit/e39a7d140fef9bc00376b84910a78b04b277fae7))
* **form:** select option label不生效 ([9034cef](https://github.com/Tencent/tmagic-editor/commit/9034cef0d21626472f0b6618aaa5f5355019b9ed))
* **form:** select option 在没有adapter的时候默认使用el-option ([ad2146f](https://github.com/Tencent/tmagic-editor/commit/ad2146f3bd4df4720bf86fef14e33f1dbbd355de))
### Features
* **data-source:** manager init 事件增加error数据 ([708d3db](https://github.com/Tencent/tmagic-editor/commit/708d3db4bbeb2b2512d5c85919b1e738dc55da83))
* 支持数据源事件 ([#605](https://github.com/Tencent/tmagic-editor/issues/605)) ([88c04c6](https://github.com/Tencent/tmagic-editor/commit/88c04c6dac6ada5bacf30b33b6ed0a7649020fa2))
## [1.4.4](https://github.com/Tencent/tmagic-editor/compare/v1.4.3...v1.4.4) (2024-04-16)

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "tmagic",
"private": true,
"type": "module",

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/cli",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/core",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/data-source",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/dep",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/design",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/editor",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/element-plus-adapter",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/form",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/schema",
"type": "module",
"sideEffects": false,

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/stage",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/table",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/tdesign-vue-next-adapter",
"type": "module",
"sideEffects": [

View File

@ -1,6 +1,6 @@
{
"name": "@tmagic/ui-react",
"version": "1.4.4",
"version": "1.4.5",
"type": "module",
"main": "src/index.ts",
"engines": {

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/ui-vue2",
"type": "module",
"main": "src/index.ts",

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/ui",
"type": "module",
"main": "src/index.ts",

View File

@ -1,5 +1,5 @@
{
"version": "1.4.4",
"version": "1.4.5",
"name": "@tmagic/utils",
"type": "module",
"main": "dist/tmagic-utils.umd.cjs",

View File

@ -1,6 +1,6 @@
{
"name": "tmagic-playground",
"version": "1.4.4",
"version": "1.4.5",
"type": "module",
"private": true,
"scripts": {
@ -13,15 +13,15 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@tmagic/core": "1.4.4",
"@tmagic/design": "1.4.4",
"@tmagic/editor": "1.4.4",
"@tmagic/element-plus-adapter": "1.4.4",
"@tmagic/form": "1.4.4",
"@tmagic/core": "1.4.5",
"@tmagic/design": "1.4.5",
"@tmagic/editor": "1.4.5",
"@tmagic/element-plus-adapter": "1.4.5",
"@tmagic/form": "1.4.5",
"@tmagic/tmagic-form-runtime": "1.0.2",
"@tmagic/schema": "1.4.4",
"@tmagic/stage": "1.4.4",
"@tmagic/utils": "1.4.4",
"@tmagic/schema": "1.4.5",
"@tmagic/stage": "1.4.5",
"@tmagic/utils": "1.4.5",
"element-plus": "^2.6.1",
"monaco-editor": "^0.48.0",
"serialize-javascript": "^6.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "runtime-react",
"version": "1.4.4",
"version": "1.4.5",
"type": "module",
"private": true,
"scripts": {
@ -19,13 +19,13 @@
"build:ds:event": "vite build --config build.vite.config.ts --mode ds:event"
},
"dependencies": {
"@tmagic/cli": "1.4.4",
"@tmagic/core": "1.4.4",
"@tmagic/data-source": "1.4.4",
"@tmagic/ui-react": "1.4.4",
"@tmagic/schema": "1.4.4",
"@tmagic/stage": "1.4.4",
"@tmagic/utils": "1.4.4",
"@tmagic/cli": "1.4.5",
"@tmagic/core": "1.4.5",
"@tmagic/data-source": "1.4.5",
"@tmagic/ui-react": "1.4.5",
"@tmagic/schema": "1.4.5",
"@tmagic/stage": "1.4.5",
"@tmagic/utils": "1.4.5",
"axios": "^0.25.0",
"lodash-es": "^4.17.21",
"terser": "^5.31.0",

View File

@ -1,6 +1,6 @@
{
"name": "runtime-vue2",
"version": "1.4.4",
"version": "1.4.5",
"type": "module",
"private": true,
"scripts": {
@ -19,13 +19,13 @@
"build:ds:event": "vite build --config build.vite.config.ts --mode ds:event"
},
"dependencies": {
"@tmagic/cli": "1.4.4",
"@tmagic/core": "1.4.4",
"@tmagic/data-source": "1.4.4",
"@tmagic/ui-vue2": "1.4.4",
"@tmagic/schema": "1.4.4",
"@tmagic/stage": "1.4.4",
"@tmagic/utils": "1.4.4",
"@tmagic/cli": "1.4.5",
"@tmagic/core": "1.4.5",
"@tmagic/data-source": "1.4.5",
"@tmagic/ui-vue2": "1.4.5",
"@tmagic/schema": "1.4.5",
"@tmagic/stage": "1.4.5",
"@tmagic/utils": "1.4.5",
"axios": "^0.25.0",
"terser": "^5.31.0",
"vue": "^2.7.4"

View File

@ -1,6 +1,6 @@
{
"name": "runtime-vue3",
"version": "1.4.4",
"version": "1.4.5",
"type": "module",
"private": true,
"scripts": {
@ -18,13 +18,13 @@
"build:ds:event": "vite build --config build.vite.config.ts --mode ds:event"
},
"dependencies": {
"@tmagic/cli": "1.4.4",
"@tmagic/data-source": "1.4.4",
"@tmagic/core": "1.4.4",
"@tmagic/ui": "1.4.4",
"@tmagic/schema": "1.4.4",
"@tmagic/stage": "1.4.4",
"@tmagic/utils": "1.4.4",
"@tmagic/cli": "1.4.5",
"@tmagic/data-source": "1.4.5",
"@tmagic/core": "1.4.5",
"@tmagic/ui": "1.4.5",
"@tmagic/schema": "1.4.5",
"@tmagic/stage": "1.4.5",
"@tmagic/utils": "1.4.5",
"axios": "^0.25.0",
"vue": "^3.4.27"
},