chore: release v1.7.0

This commit is contained in:
roymondchen 2025-12-04 17:35:47 +08:00
parent 70d730ca82
commit 411a28946e
19 changed files with 48 additions and 29 deletions

View File

@ -1,3 +1,22 @@
# [1.7.0](https://github.com/Tencent/tmagic-editor/compare/v1.7.0-beta.5...v1.7.0) (2025-12-04)
### Bug Fixes
* **design:** dialog 默认参数 ([8d7c8fa](https://github.com/Tencent/tmagic-editor/commit/8d7c8fa725dba507c3a4874f879989ad9c050603))
* **form:** datetime如果设置为时间戳然后初始值是一个字符串的数字显示不正确 ([7e71c07](https://github.com/Tencent/tmagic-editor/commit/7e71c070f1ee9857fd5610000188ef1a222fade1))
* **form:** table拖拽排序后重新渲染组件 ([2667981](https://github.com/Tencent/tmagic-editor/commit/2667981e4c0c451ded88e06f412dd4bcb5ec41dc))
* **form:** 生成表单values时将initValus深拷贝,避免修改到传入的对象 ([b536eba](https://github.com/Tencent/tmagic-editor/commit/b536eba81c33f8e532179b69072ea7c5d4033235))
### Features
* **editor:** 代码编辑器支持配置自动高度 ([8d55d0c](https://github.com/Tencent/tmagic-editor/commit/8d55d0cd8d1059dcbca86fc5b72ec82f22c35d9c))
* **form:** table支持配置拖动操作中的按钮排序而不是拖动整行 ([69ac90f](https://github.com/Tencent/tmagic-editor/commit/69ac90fe22778fedb9e35b95595428395fd65cc5))
* **form:** table支持配置操作按钮的icon ([0dd7f54](https://github.com/Tencent/tmagic-editor/commit/0dd7f54ebc3518404653d6e43ee428e05566dd28))
# [1.7.0-beta.5](https://github.com/Tencent/tmagic-editor/compare/v1.7.0-beta.4...v1.7.0-beta.5) (2025-11-24)

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "tmagic",
"private": true,
"type": "module",

View File

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

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/core",
"type": "module",
"main": "dist/tmagic-core.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/data-source",
"type": "module",
"main": "dist/tmagic-data-source.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/dep",
"type": "module",
"main": "dist/tmagic-dep.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/design",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/editor",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/element-plus-adapter",
"type": "module",
"main": "dist/tmagic-element-plus-adapter.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/form-schema",
"type": "module",
"main": "dist/tmagic-form-schema.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/form",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/schema",
"type": "module",
"main": "dist/tmagic-schema.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/stage",
"type": "module",
"main": "dist/tmagic-stage.umd.cjs",

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/table",
"type": "module",
"sideEffects": [

View File

@ -1,5 +1,5 @@
{
"version": "1.7.0-beta.5",
"version": "1.7.0",
"name": "@tmagic/tdesign-vue-next-adapter",
"type": "module",
"main": "dist/tmagic-tdesign-vue-next-adapter.umd.cjs",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "tmagic-playground",
"version": "1.7.0-beta.5",
"version": "1.7.0",
"type": "module",
"private": true,
"scripts": {
@ -12,11 +12,11 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@tmagic/core": "1.7.0-beta.5",
"@tmagic/design": "1.7.0-beta.5",
"@tmagic/editor": "1.7.0-beta.5",
"@tmagic/element-plus-adapter": "1.7.0-beta.5",
"@tmagic/tdesign-vue-next-adapter": "1.7.0-beta.5",
"@tmagic/core": "1.7.0",
"@tmagic/design": "1.7.0",
"@tmagic/editor": "1.7.0",
"@tmagic/element-plus-adapter": "1.7.0",
"@tmagic/tdesign-vue-next-adapter": "1.7.0",
"@tmagic/tmagic-form-runtime": "1.1.3",
"element-plus": "^2.11.8",
"lodash-es": "^4.17.21",

View File

@ -1,6 +1,6 @@
{
"name": "runtime-react",
"version": "1.7.0-beta.5",
"version": "1.7.0",
"type": "module",
"private": true,
"engines": {
@ -16,16 +16,16 @@
"build:playground": "node scripts/build.mjs --type=playground"
},
"dependencies": {
"@tmagic/core": "1.7.0-beta.5",
"@tmagic/core": "1.7.0",
"@tmagic/react-runtime-help": "0.2.1",
"@tmagic/stage": "1.7.0-beta.5",
"@tmagic/stage": "1.7.0",
"axios": "^1.13.2",
"qrcode": "^1.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tmagic/cli": "1.7.0-beta.5",
"@tmagic/cli": "1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",

View File

@ -1,6 +1,6 @@
{
"name": "runtime-vue",
"version": "1.7.0-beta.5",
"version": "1.7.0",
"type": "module",
"private": true,
"engines": {
@ -16,14 +16,14 @@
"build:playground": "node scripts/build.mjs --type=playground"
},
"dependencies": {
"@tmagic/core": "1.7.0-beta.5",
"@tmagic/stage": "1.7.0-beta.5",
"@tmagic/core": "1.7.0",
"@tmagic/stage": "1.7.0",
"@tmagic/vue-runtime-help": "^1.2.3",
"axios": "^1.13.2",
"vue": "catalog:"
},
"devDependencies": {
"@tmagic/cli": "1.7.0-beta.5",
"@tmagic/cli": "1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.10",
"@vitejs/plugin-legacy": "^7.2.1",