@ibiz-template/full-code-template 0.7.41-rc.64 → 0.7.41-rc.8

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ibiz-template/full-code-template",
3
- "version": "0.7.41-rc.64",
3
+ "version": "0.7.41-rc.8",
4
4
  "description": "vue3全代码模版包,根据包内容生成项目代码。",
5
- "publicPath": "https://gitee.com/api/v5/repos/iBizModeling/ibiz-fullcode-resources/raw/0.7.41-rc.64.zip?ref=main",
5
+ "publicPath": "https://gitee.com/api/v5/repos/iBizModeling/ibiz-fullcode-resources/raw/0.7.41-rc.8.zip?ref=main",
6
6
  "bin": {
7
7
  "code-generator": "src/index.js"
8
8
  },
package/src/index.js CHANGED
@@ -50,8 +50,8 @@ async function downloadAndExtractZip(zipUrl, outputPath) {
50
50
  if (!fs.existsSync(outputPath)) {
51
51
  fs.mkdirSync(outputPath, { recursive: true });
52
52
  } else {
53
- fs.rmSync(publicStaticPath, { recursive: true, force: true }); // 递归删除目录及其内容
54
- fs.mkdirSync(publicStaticPath, { recursive: true });
53
+ fs.rmSync(outputPath, { recursive: true, force: true }); // 递归删除目录及其内容
54
+ fs.mkdirSync(outputPath, { recursive: true });
55
55
  }
56
56
  // 复制解压后的文件到目标目录
57
57
  copyFiles(extractedRoot, outputPath);
@@ -67,21 +67,24 @@ async function main() {
67
67
  const targetPublicPath = path.resolve(path.join(__dirname, '../static/public'));
68
68
  const templatePath = path.resolve(path.join(__dirname, '../template'));
69
69
 
70
- // 从项目的 package.json 中获取 publicPath 字段,下载并解压至 static/public 目录
71
- let sourcePublicPath;
72
- try {
73
- const data = fs.readFileSync(path.join(__dirname, '../package.json'), 'utf8');
74
- const projectPackageJson = JSON.parse(data);
75
- sourcePublicPath = projectPackageJson.publicPath;
76
- } catch (error) {
77
- console.error('获取项目package.json出错:', error);
78
- exit(1);
79
- }
80
- if (!sourcePublicPath) {
81
- console.error('package.json文件无publicPath属性定义');
82
- exit(1);
70
+ // 不存在才去下载public目录资源
71
+ if (!fs.existsSync(targetPublicPath)) {
72
+ // 从项目的 package.json 中获取 publicPath 字段,下载并解压至 static/public 目录
73
+ let sourcePublicPath;
74
+ try {
75
+ const data = fs.readFileSync(path.join(__dirname, '../package.json'), 'utf8');
76
+ const projectPackageJson = JSON.parse(data);
77
+ sourcePublicPath = projectPackageJson.publicPath;
78
+ } catch (error) {
79
+ console.error('获取项目package.json出错:', error);
80
+ exit(1);
81
+ }
82
+ if (!sourcePublicPath) {
83
+ console.error('package.json文件无publicPath属性定义');
84
+ exit(1);
85
+ }
86
+ await downloadAndExtractZip(`${sourcePublicPath}&access_token=${readonlyToken}`, targetPublicPath);
83
87
  }
84
- await downloadAndExtractZip(`${sourcePublicPath}&access_token=${readonlyToken}`, targetPublicPath);
85
88
 
86
89
  program
87
90
  .option('-m, --model <model-path>', '模型目录')
@@ -12,6 +12,7 @@
12
12
  - 修复视图上一条,下一条切换异常问题
13
13
  - 修复项目应用无appUtils资源时启动报错的问题
14
14
  - 修复列表导航栏和表格导航栏绘制异常
15
+ - 修复抽屉打开视图宽高丢失
15
16
 
16
17
  ### PackageUpgrade
17
18
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ibiz-template/full-code-template",
3
3
  "private": true,
4
- "version": "0.7.41-rc.64",
4
+ "version": "0.7.41-rc.8",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -10,8 +10,8 @@
10
10
  "lint": "eslint 'src/**/*.tsx' 'src/**/*.ts' 'src/**/*.vue'",
11
11
  "lint:style": "stylelint 'src/**/*.scss'",
12
12
  "pub:temp": "publish -p .",
13
- "pub:code": "generate -m /home/zpc/workspace/project/quickstart/model -o ./ --app web -tv 0.7.41-rc.64 --local-mode",
14
- "compute:pkg": "ibiz-temp compute-pkg -m /home/zpc/workspace/project/quickstart/model --app web",
13
+ "pub:code": "generate -m /home/zpc/workspace/project/plm-model/plm/model -o ./ --app plmweb -tv 0.7.41-rc.8 --local-mode",
14
+ "compute:pkg": "ibiz-temp compute-pkg -m /home/zpc/workspace/project/plm-model/plm/model --app plmweb",
15
15
  "download:pkg": "ibiz-temp download-pkg",
16
16
  "prettier": "prettier --ignore-path '' 'src/publish/**/*.(ts|vue|tsx)' -w",
17
17
  "clear": "rm -rf src/publish"
@@ -21,13 +21,13 @@
21
21
  "@floating-ui/dom": "^1.5.3",
22
22
  "@ibiz-template-plugin/bi-report": "0.0.32",
23
23
  "@ibiz-template-plugin/data-view": "0.0.6",
24
- "@ibiz-template/core": "0.7.41-alpha.63",
24
+ "@ibiz-template/core": "0.7.41-alpha.78",
25
25
  "@ibiz-template/devtool": "0.0.14",
26
- "@ibiz-template/model-helper": "0.7.41-alpha.71",
27
- "@ibiz-template/runtime": "0.7.41-alpha.71",
26
+ "@ibiz-template/model-helper": "0.7.41-alpha.86",
27
+ "@ibiz-template/runtime": "0.7.41-alpha.86",
28
28
  "@ibiz-template/theme": "0.7.39",
29
- "@ibiz-template/vue3-components": "0.7.41-alpha.66",
30
- "@ibiz-template/vue3-util": "0.7.41-alpha.71",
29
+ "@ibiz-template/vue3-components": "0.7.41-alpha.78",
30
+ "@ibiz-template/vue3-util": "0.7.41-alpha.86",
31
31
  "@ibiz-template/web-theme": "3.11.0",
32
32
  "@ibiz/model-core": "^0.1.84",
33
33
  "@ibiz/rt-model-api": "^0.2.82",
@@ -59,7 +59,7 @@
59
59
  "@commitlint/cli": "^17.8.0",
60
60
  "@commitlint/config-conventional": "^17.8.0",
61
61
  "@ibiz-template/cli": "^0.3.30",
62
- "@ibiz-template/full-code-generator": "^0.0.7",
62
+ "@ibiz-template/full-code-generator": "^0.0.10",
63
63
  "@ibizlab/cli": "^0.2.30",
64
64
  "@types/lodash-es": "^4.17.10",
65
65
  "@types/node": "^20.8.7",
@@ -13,34 +13,34 @@ dependencies:
13
13
  version: 1.5.3
14
14
  '@ibiz-template-plugin/bi-report':
15
15
  specifier: 0.0.32
16
- version: 0.0.32(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
16
+ version: 0.0.32(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
17
17
  '@ibiz-template-plugin/data-view':
18
18
  specifier: 0.0.6
19
- version: 0.0.6(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
19
+ version: 0.0.6(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
20
20
  '@ibiz-template/core':
21
- specifier: 0.7.41-alpha.63
22
- version: 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
21
+ specifier: 0.7.41-alpha.78
22
+ version: 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
23
23
  '@ibiz-template/devtool':
24
24
  specifier: 0.0.14
25
- version: 0.0.14(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/model-helper@0.7.41-alpha.71)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(@monaco-editor/loader@1.4.0)(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(monaco-editor@0.45.0)(pluralize@8.0.0)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0)
25
+ version: 0.0.14(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/model-helper@0.7.41-alpha.86)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(@monaco-editor/loader@1.4.0)(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(monaco-editor@0.45.0)(pluralize@8.0.0)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0)
26
26
  '@ibiz-template/model-helper':
27
- specifier: 0.7.41-alpha.71
28
- version: 0.7.41-alpha.71(@ibiz-template/runtime@0.7.41-alpha.71)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
27
+ specifier: 0.7.41-alpha.86
28
+ version: 0.7.41-alpha.86(@ibiz-template/runtime@0.7.41-alpha.86)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
29
29
  '@ibiz-template/runtime':
30
- specifier: 0.7.41-alpha.71
31
- version: 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
30
+ specifier: 0.7.41-alpha.86
31
+ version: 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
32
32
  '@ibiz-template/theme':
33
33
  specifier: 0.7.39
34
34
  version: 0.7.39
35
35
  '@ibiz-template/vue3-components':
36
- specifier: 0.7.41-alpha.66
37
- version: 0.7.41-alpha.66(@floating-ui/dom@1.5.3)(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/model-helper@0.7.41-alpha.71)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(@imengyu/vue3-context-menu@1.4.1)(@monaco-editor/loader@1.4.0)(@tiptap/extension-text-style@3.13.0)(@wangeditor/editor-for-vue@5.1.12)(@wangeditor/editor@5.1.23)(async-validator@4.2.5)(cherry-markdown@0.8.26)(dayjs@1.11.10)(echarts@5.4.3)(element-plus@2.4.4)(handlebars@4.7.8)(lodash-es@4.17.21)(monaco-editor@0.45.0)(mqtt@2.18.9)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(react@18.3.1)(vite@4.5.0)(vue-i18n@9.14.5)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0)
36
+ specifier: 0.7.41-alpha.78
37
+ version: 0.7.41-alpha.78(@floating-ui/dom@1.5.3)(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/model-helper@0.7.41-alpha.86)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(@imengyu/vue3-context-menu@1.4.1)(@monaco-editor/loader@1.4.0)(@tiptap/extension-text-style@3.13.0)(@wangeditor/editor-for-vue@5.1.12)(@wangeditor/editor@5.1.23)(async-validator@4.2.5)(cherry-markdown@0.8.26)(dayjs@1.11.10)(echarts@5.4.3)(element-plus@2.4.4)(handlebars@4.7.8)(lodash-es@4.17.21)(monaco-editor@0.45.0)(mqtt@2.18.9)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(react@18.3.1)(vite@4.5.0)(vue-i18n@9.14.5)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0)
38
38
  '@ibiz-template/vue3-util':
39
- specifier: 0.7.41-alpha.71
40
- version: 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
39
+ specifier: 0.7.41-alpha.86
40
+ version: 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
41
41
  '@ibiz-template/web-theme':
42
42
  specifier: 3.11.0
43
- version: 3.11.0(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
43
+ version: 3.11.0(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
44
44
  '@ibiz/model-core':
45
45
  specifier: ^0.1.84
46
46
  version: 0.1.84
@@ -128,8 +128,8 @@ devDependencies:
128
128
  specifier: ^0.3.30
129
129
  version: 0.3.30(@types/node@20.8.7)(postcss@8.4.31)(vue@3.3.8)
130
130
  '@ibiz-template/full-code-generator':
131
- specifier: ^0.0.7
132
- version: 0.0.7(@ibizlab/model@0.2.15)
131
+ specifier: ^0.0.10
132
+ version: 0.0.10(@ibizlab/model@0.2.15)
133
133
  '@ibizlab/cli':
134
134
  specifier: ^0.2.30
135
135
  version: 0.2.30(@ibizlab/model@0.2.15)
@@ -2710,6 +2710,11 @@ packages:
2710
2710
  dependencies:
2711
2711
  regenerator-runtime: 0.13.11
2712
2712
 
2713
+ /@babel/runtime@7.29.2:
2714
+ resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
2715
+ engines: {node: '>=6.9.0'}
2716
+ dev: false
2717
+
2713
2718
  /@babel/template@7.22.15:
2714
2719
  resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
2715
2720
  engines: {node: '>=6.9.0'}
@@ -3781,8 +3786,8 @@ packages:
3781
3786
  deprecated: Use @eslint/object-schema instead
3782
3787
  dev: true
3783
3788
 
3784
- /@ibiz-template-plugin/ai-chat@0.0.55(@tiptap/extension-text-style@3.13.0)(cherry-markdown@0.8.26)(interactjs@1.10.26)(qx-util@0.4.8)(react@18.3.1)(vite@4.5.0):
3785
- resolution: {integrity: sha512-bnMpQFuo7D/WD/3NGa7HMIqYCox9eu5rWy8tL/CCzuiJ2A8eI9DdKNe+w/RHpO+v0bayE+XRE343aI6akzj7fA==}
3789
+ /@ibiz-template-plugin/ai-chat@0.0.66(@tiptap/extension-text-style@3.13.0)(cherry-markdown@0.8.26)(interactjs@1.10.26)(qx-util@0.4.8)(react@18.3.1)(vite@4.5.0):
3790
+ resolution: {integrity: sha512-mDP+TwQHmbv6tcEpA2j26WvlbeQPdf6Dyf2y4hEqgPfL8YSnHmQq55Y1/xRftsZ4optmbtH5XeRK14mukax+ZQ==}
3786
3791
  peerDependencies:
3787
3792
  cherry-markdown: ^0.8.26
3788
3793
  interactjs: ^1.10.19
@@ -3800,6 +3805,7 @@ packages:
3800
3805
  '@tiptap/pm': 3.13.0
3801
3806
  autosize: 6.0.1
3802
3807
  cherry-markdown: 0.8.26
3808
+ core-js: 3.49.0
3803
3809
  interactjs: 1.10.26
3804
3810
  lodash-es: 4.17.21
3805
3811
  path-browserify: 1.0.1
@@ -3813,7 +3819,7 @@ packages:
3813
3819
  - vite
3814
3820
  dev: false
3815
3821
 
3816
- /@ibiz-template-plugin/bi-report@0.0.32(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0):
3822
+ /@ibiz-template-plugin/bi-report@0.0.32(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0):
3817
3823
  resolution: {integrity: sha512-GJZIMVO+nvqRn+APJK69PRMINxGlcmnPFy3Z/iZDfKIni+b6eewc0C3TE/j4t87GxIyFHDbNQFh4LNAUbhpnRA==}
3818
3824
  peerDependencies:
3819
3825
  '@ibiz-template/core': 0.7.35-alpha.1
@@ -3828,8 +3834,8 @@ packages:
3828
3834
  vue: ^3.3.8
3829
3835
  vuedraggable: ^4.1.0
3830
3836
  dependencies:
3831
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3832
- '@ibiz-template/runtime': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3837
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3838
+ '@ibiz-template/runtime': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3833
3839
  '@ibiz-template/theme': 0.7.39
3834
3840
  '@ibiz/model-core': 0.1.84
3835
3841
  '@wangeditor/editor': 5.1.23
@@ -3845,7 +3851,7 @@ packages:
3845
3851
  vuedraggable: 4.1.0(vue@3.3.8)
3846
3852
  dev: false
3847
3853
 
3848
- /@ibiz-template-plugin/data-view@0.0.6(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0):
3854
+ /@ibiz-template-plugin/data-view@0.0.6(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0):
3849
3855
  resolution: {integrity: sha512-HhUK4Q8ASKdDTxmq/BLo5a9RIMipj4rk7qBXjn1zsHHRCL0yQBNYh4FvOLIofkVGR/YwrikPZwCUrkrl8P0pNQ==}
3850
3856
  peerDependencies:
3851
3857
  '@ibiz-template/core': 0.7.39
@@ -3861,10 +3867,10 @@ packages:
3861
3867
  vue: ^3.3.8
3862
3868
  vuedraggable: ^4.1.0
3863
3869
  dependencies:
3864
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3865
- '@ibiz-template/runtime': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3870
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3871
+ '@ibiz-template/runtime': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
3866
3872
  '@ibiz-template/theme': 0.7.39
3867
- '@ibiz-template/vue3-util': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
3873
+ '@ibiz-template/vue3-util': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
3868
3874
  '@ibiz/model-core': 0.1.84
3869
3875
  axios: 1.13.2
3870
3876
  dayjs: 1.11.10
@@ -4008,8 +4014,8 @@ packages:
4008
4014
  - vue
4009
4015
  dev: true
4010
4016
 
4011
- /@ibiz-template/core@0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4012
- resolution: {integrity: sha512-wnsl4wHmijUvt3N4bfec7jfVtKbpIt1I7EGlXbgIgpYDsrQZKn0BDTRt1Bl+OdyY3GmTK1AyxEW/1oQZ9bblaw==}
4017
+ /@ibiz-template/core@0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4018
+ resolution: {integrity: sha512-R0rzwzIWxzoW/yxtWpsf1Z2HjHmuITtsaBqlaYf6E1H4Kg1wNvkbc5BCQeg8ehSt1jzAFkL1j+9THCyBia3n+w==}
4013
4019
  peerDependencies:
4014
4020
  axios: ^1.8.2
4015
4021
  lodash-es: ^4.17.21
@@ -4027,7 +4033,7 @@ packages:
4027
4033
  ramda: 0.29.1
4028
4034
  dev: false
4029
4035
 
4030
- /@ibiz-template/devtool@0.0.14(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/model-helper@0.7.41-alpha.71)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(@monaco-editor/loader@1.4.0)(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(monaco-editor@0.45.0)(pluralize@8.0.0)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0):
4036
+ /@ibiz-template/devtool@0.0.14(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/model-helper@0.7.41-alpha.86)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(@monaco-editor/loader@1.4.0)(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(monaco-editor@0.45.0)(pluralize@8.0.0)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0):
4031
4037
  resolution: {integrity: sha512-xt4C0P/8OnK4uFUCX6bFCppXjyDSLDMY9hn76IoI1rM6QwGUBUroXwa1bVoleULLoSj0Af/gDXm8fAQhGNeVGA==}
4032
4038
  peerDependencies:
4033
4039
  '@ibiz-template/core': ^0.6.2
@@ -4050,11 +4056,11 @@ packages:
4050
4056
  vue-router: ^4.2.5
4051
4057
  vuedraggable: ^4.1.0
4052
4058
  dependencies:
4053
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4054
- '@ibiz-template/model-helper': 0.7.41-alpha.71(@ibiz-template/runtime@0.7.41-alpha.71)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4055
- '@ibiz-template/runtime': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4059
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4060
+ '@ibiz-template/model-helper': 0.7.41-alpha.86(@ibiz-template/runtime@0.7.41-alpha.86)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4061
+ '@ibiz-template/runtime': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4056
4062
  '@ibiz-template/theme': 0.7.39
4057
- '@ibiz-template/vue3-util': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
4063
+ '@ibiz-template/vue3-util': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
4058
4064
  '@ibiz/model-core': 0.1.84
4059
4065
  '@imengyu/vue3-context-menu': 1.4.1
4060
4066
  '@monaco-editor/loader': 1.4.0(monaco-editor@0.45.0)
@@ -4075,8 +4081,8 @@ packages:
4075
4081
  vuedraggable: 4.1.0(vue@3.3.8)
4076
4082
  dev: false
4077
4083
 
4078
- /@ibiz-template/full-code-generator@0.0.7(@ibizlab/model@0.2.15):
4079
- resolution: {integrity: sha512-QSIYJlOI2mGs1le7N1wyyPQYT7Ga3E4PxXbuaOmsm3A25sw2eAMpQHisXN305uwgJ++PXsDTt+YnGjqY5EbYPw==}
4084
+ /@ibiz-template/full-code-generator@0.0.10(@ibizlab/model@0.2.15):
4085
+ resolution: {integrity: sha512-ei+V3TAG0EAzE7OjXreECA/OhhUEXpWXMvDtYWRnxzZG97Z7jugub/1wtTUX9O35fV5xM7sWhEKl7ufzFAR4ZA==}
4080
4086
  hasBin: true
4081
4087
  dependencies:
4082
4088
  '@ibizlab/cli': 0.2.30(@ibizlab/model@0.2.15)
@@ -4092,14 +4098,14 @@ packages:
4092
4098
  - react-native-b4a
4093
4099
  dev: true
4094
4100
 
4095
- /@ibiz-template/model-helper@0.7.41-alpha.71(@ibiz-template/runtime@0.7.41-alpha.71)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4096
- resolution: {integrity: sha512-u4UqoJC8X06UTk7mDY1OxjqrsAHLhbhtkj/VYvmo9MsuBdOSmj8OzgdHQl7BcBls1T/Q+X6VdejG94f4wxuATw==}
4101
+ /@ibiz-template/model-helper@0.7.41-alpha.86(@ibiz-template/runtime@0.7.41-alpha.86)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4102
+ resolution: {integrity: sha512-c4ohSY9RGbNcwXpg08L+94Hema9ybegmR/r32Ko21aM7E+Wor0yolBjMDstS64YpbH3MviSy7SFpSEBBfztLpQ==}
4097
4103
  peerDependencies:
4098
4104
  '@ibiz-template/runtime': ^0.6.0
4099
4105
  ramda: ^0.29.0
4100
4106
  dependencies:
4101
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4102
- '@ibiz-template/runtime': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4107
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4108
+ '@ibiz-template/runtime': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4103
4109
  '@ibiz/model-core': 0.1.84
4104
4110
  '@ibiz/rt-model-api': 0.2.82
4105
4111
  pluralize: 8.0.0
@@ -4111,7 +4117,7 @@ packages:
4111
4117
  - qx-util
4112
4118
  dev: false
4113
4119
 
4114
- /@ibiz-template/runtime@0.6.18(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4120
+ /@ibiz-template/runtime@0.6.18(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4115
4121
  resolution: {integrity: sha512-aL3CxA0kHAoNfS6N+3dYyGzmX2hp97eu5YFH58HU5xmehywp7XlRsCgu/SK64SGhHeywS/fKg5LGFnbJmqu6SQ==}
4116
4122
  peerDependencies:
4117
4123
  '@ibiz-template/core': ^0.6.0
@@ -4127,7 +4133,7 @@ packages:
4127
4133
  qx-util: ^0.4.8
4128
4134
  ramda: ^0.29.0
4129
4135
  dependencies:
4130
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4136
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4131
4137
  '@ibiz/model-core': 0.1.84
4132
4138
  animejs: 3.2.2
4133
4139
  async-validator: 4.2.5
@@ -4142,8 +4148,8 @@ packages:
4142
4148
  ramda: 0.29.1
4143
4149
  dev: false
4144
4150
 
4145
- /@ibiz-template/runtime@0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4146
- resolution: {integrity: sha512-vpJDa7CJZWZ4nfLDITQc4C68jJMPjMXbXJxQ6b95jKo2qyy7lfBj5gRdMhrzhusiOh5U8Q5NktAQL7HAETdVYw==}
4151
+ /@ibiz-template/runtime@0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4152
+ resolution: {integrity: sha512-tR35pCCT4rJ26b2mDX/dju1mRfLnroVsVLHwWm60flOWdb9G2hEssFiOwsyMppE/tg9SUtOfKUJQhGm0/Ofb+w==}
4147
4153
  peerDependencies:
4148
4154
  '@ibiz-template/core': ^0.6.0
4149
4155
  '@ibiz/model-core': ^0.1.84
@@ -4158,7 +4164,7 @@ packages:
4158
4164
  qx-util: ^0.4.8
4159
4165
  ramda: ^0.29.0
4160
4166
  dependencies:
4161
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4167
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4162
4168
  '@ibiz/model-core': 0.1.84
4163
4169
  animejs: 3.2.2
4164
4170
  async-validator: 4.2.5
@@ -4185,8 +4191,8 @@ packages:
4185
4191
  resolution: {integrity: sha512-jlZUaYJrzLDULbANGaxFXwbf+0uwJsC5bSRDLjM8A6wCqv7gC+V0Z/x8gSy2wsrcy0EwaRSd2gZ2Q5eEhgDqag==}
4186
4192
  dev: false
4187
4193
 
4188
- /@ibiz-template/vue3-components@0.7.41-alpha.66(@floating-ui/dom@1.5.3)(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/model-helper@0.7.41-alpha.71)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(@imengyu/vue3-context-menu@1.4.1)(@monaco-editor/loader@1.4.0)(@tiptap/extension-text-style@3.13.0)(@wangeditor/editor-for-vue@5.1.12)(@wangeditor/editor@5.1.23)(async-validator@4.2.5)(cherry-markdown@0.8.26)(dayjs@1.11.10)(echarts@5.4.3)(element-plus@2.4.4)(handlebars@4.7.8)(lodash-es@4.17.21)(monaco-editor@0.45.0)(mqtt@2.18.9)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(react@18.3.1)(vite@4.5.0)(vue-i18n@9.14.5)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0):
4189
- resolution: {integrity: sha512-4WhW9bNhWAwhQKZrtWCWXhkUe2XPXY3ldCEg4cZ7+y+a4F6YuBoRc/ufwVxqTb7wuE3GnWty63Q8rFM4PQN5lw==}
4194
+ /@ibiz-template/vue3-components@0.7.41-alpha.78(@floating-ui/dom@1.5.3)(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/model-helper@0.7.41-alpha.86)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(@imengyu/vue3-context-menu@1.4.1)(@monaco-editor/loader@1.4.0)(@tiptap/extension-text-style@3.13.0)(@wangeditor/editor-for-vue@5.1.12)(@wangeditor/editor@5.1.23)(async-validator@4.2.5)(cherry-markdown@0.8.26)(dayjs@1.11.10)(echarts@5.4.3)(element-plus@2.4.4)(handlebars@4.7.8)(lodash-es@4.17.21)(monaco-editor@0.45.0)(mqtt@2.18.9)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(react@18.3.1)(vite@4.5.0)(vue-i18n@9.14.5)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0):
4195
+ resolution: {integrity: sha512-4AbPvnd7TaR7ZS8ZjuklSKIO3YvyHb4u8oSCuvnCOHIiMRWOQKALp9S6caMIDr29dAf9XfgXG3iBIdo48Hx0eA==}
4190
4196
  peerDependencies:
4191
4197
  '@floating-ui/dom': ^1.5.1
4192
4198
  '@ibiz-template/core': ^0.7.0
@@ -4217,17 +4223,17 @@ packages:
4217
4223
  dependencies:
4218
4224
  '@amap/amap-jsapi-loader': 1.0.1
4219
4225
  '@floating-ui/dom': 1.5.3
4220
- '@ibiz-template-plugin/ai-chat': 0.0.55(@tiptap/extension-text-style@3.13.0)(cherry-markdown@0.8.26)(interactjs@1.10.26)(qx-util@0.4.8)(react@18.3.1)(vite@4.5.0)
4221
- '@ibiz-template-plugin/bi-report': 0.0.32(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
4222
- '@ibiz-template-plugin/data-view': 0.0.6(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
4226
+ '@ibiz-template-plugin/ai-chat': 0.0.66(@tiptap/extension-text-style@3.13.0)(cherry-markdown@0.8.26)(interactjs@1.10.26)(qx-util@0.4.8)(react@18.3.1)(vite@4.5.0)
4227
+ '@ibiz-template-plugin/bi-report': 0.0.32(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
4228
+ '@ibiz-template-plugin/data-view': 0.0.6(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(axios@1.13.2)(dayjs@1.11.10)(element-plus@2.4.4)(qx-util@0.4.8)(ramda@0.29.1)(vue@3.3.8)(vuedraggable@4.1.0)
4223
4229
  '@ibiz-template-plugin/gantt': 0.1.8-alpha.378(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(nprogress@0.2.0)(vue@3.3.8)
4224
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4225
- '@ibiz-template/devtool': 0.0.14(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/model-helper@0.7.41-alpha.71)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(@monaco-editor/loader@1.4.0)(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(monaco-editor@0.45.0)(pluralize@8.0.0)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0)
4226
- '@ibiz-template/model-helper': 0.7.41-alpha.71(@ibiz-template/runtime@0.7.41-alpha.71)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4227
- '@ibiz-template/runtime': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4230
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4231
+ '@ibiz-template/devtool': 0.0.14(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/model-helper@0.7.41-alpha.86)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz-template/theme@0.7.39)(@ibiz-template/vue3-util@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(@monaco-editor/loader@1.4.0)(async-validator@4.2.5)(axios@1.13.2)(dayjs@1.11.10)(lodash-es@4.17.21)(monaco-editor@0.45.0)(pluralize@8.0.0)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)(vuedraggable@4.1.0)
4232
+ '@ibiz-template/model-helper': 0.7.41-alpha.86(@ibiz-template/runtime@0.7.41-alpha.86)(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4233
+ '@ibiz-template/runtime': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4228
4234
  '@ibiz-template/theme': 0.7.39
4229
- '@ibiz-template/vue3-util': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
4230
- '@ibiz-template/web-theme': 3.11.0(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4235
+ '@ibiz-template/vue3-util': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8)
4236
+ '@ibiz-template/web-theme': 3.11.0(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4231
4237
  '@ibiz/model-core': 0.1.84
4232
4238
  '@imengyu/vue3-context-menu': 1.4.1
4233
4239
  '@monaco-editor/loader': 1.4.0(monaco-editor@0.45.0)
@@ -4241,6 +4247,7 @@ packages:
4241
4247
  element-plus: 2.4.4(vue@3.3.8)
4242
4248
  file-saver: 2.0.5
4243
4249
  interactjs: 1.10.26
4250
+ jspdf: 2.5.2
4244
4251
  lodash-es: 4.17.21
4245
4252
  modern-screenshot: 4.6.7
4246
4253
  monaco-editor: 0.45.0
@@ -4276,8 +4283,8 @@ packages:
4276
4283
  - vite
4277
4284
  dev: false
4278
4285
 
4279
- /@ibiz-template/vue3-util@0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz-template/runtime@0.7.41-alpha.71)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8):
4280
- resolution: {integrity: sha512-V3YJ928DjhdngnF4ftalo6d5/7/Fo0wAqqvrP3HMZBxZptdXlhrJW8+Vlx68xNYBlTFsHGUo6u5HLjezFBazLg==}
4286
+ /@ibiz-template/vue3-util@0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz-template/runtime@0.7.41-alpha.86)(@ibiz/model-core@0.1.84)(dayjs@1.11.10)(path-browserify@1.0.1)(pinia@2.1.7)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)(vue-router@4.2.5)(vue@3.3.8):
4287
+ resolution: {integrity: sha512-WiimGOul4JrXASmXZxxQwR4ZJgGbWkW8Ltuw1FBXmE+OC62WrTGij9rCKkEpmnBZD7hGDfwZIPNCJgFlkeYamg==}
4281
4288
  peerDependencies:
4282
4289
  '@ibiz-template/core': ^0.6.0
4283
4290
  '@ibiz-template/runtime': ^0.6.0
@@ -4291,8 +4298,8 @@ packages:
4291
4298
  vue: ^3.3.8
4292
4299
  vue-router: ^4.2.4
4293
4300
  dependencies:
4294
- '@ibiz-template/core': 0.7.41-alpha.63(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4295
- '@ibiz-template/runtime': 0.7.41-alpha.71(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4301
+ '@ibiz-template/core': 0.7.41-alpha.78(axios@1.13.2)(lodash-es@4.17.21)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4302
+ '@ibiz-template/runtime': 0.7.41-alpha.86(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4296
4303
  '@ibiz/model-core': 0.1.84
4297
4304
  dayjs: 1.11.10
4298
4305
  path-browserify: 1.0.1
@@ -4304,10 +4311,10 @@ packages:
4304
4311
  vue-router: 4.2.5(vue@3.3.8)
4305
4312
  dev: false
4306
4313
 
4307
- /@ibiz-template/web-theme@3.11.0(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4314
+ /@ibiz-template/web-theme@3.11.0(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1):
4308
4315
  resolution: {integrity: sha512-tBR7Mugf376fW6rM8CWjHRMhCFogo7szi+W7K7gH0Es0S1pmB4kVjV1OL8chejw6NxqBER6gLz8UU6Ok5TLHjg==}
4309
4316
  dependencies:
4310
- '@ibiz-template/runtime': 0.6.18(@ibiz-template/core@0.7.41-alpha.63)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4317
+ '@ibiz-template/runtime': 0.6.18(@ibiz-template/core@0.7.41-alpha.78)(@ibiz/model-core@0.1.84)(async-validator@4.2.5)(dayjs@1.11.10)(echarts@5.4.3)(handlebars@4.7.8)(lodash-es@4.17.21)(mqtt@2.18.9)(path-browserify@1.0.1)(qs@6.11.2)(qx-util@0.4.8)(ramda@0.29.1)
4311
4318
  transitivePeerDependencies:
4312
4319
  - '@ibiz-template/core'
4313
4320
  - '@ibiz/model-core'
@@ -5391,6 +5398,12 @@ packages:
5391
5398
  resolution: {integrity: sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==}
5392
5399
  dev: true
5393
5400
 
5401
+ /@types/raf@3.4.3:
5402
+ resolution: {integrity: sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==}
5403
+ requiresBuild: true
5404
+ dev: false
5405
+ optional: true
5406
+
5394
5407
  /@types/ramda@0.29.7:
5395
5408
  resolution: {integrity: sha512-IUl6U95qwlQtVvZkSX4ODj08oJVtPyWMFRtPVNqhxc2rt+Bh7lCzTrGMYMZ7dmRKcAjtot3xrPnYGwsjdt8gzQ==}
5396
5409
  dependencies:
@@ -6826,7 +6839,6 @@ packages:
6826
6839
  resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
6827
6840
  engines: {node: '>= 4.5.0'}
6828
6841
  hasBin: true
6829
- dev: true
6830
6842
 
6831
6843
  /autoprefixer@10.4.19(postcss@8.4.38):
6832
6844
  resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
@@ -7116,6 +7128,12 @@ packages:
7116
7128
  update-browserslist-db: 1.0.13(browserslist@4.23.0)
7117
7129
  dev: true
7118
7130
 
7131
+ /btoa@1.2.1:
7132
+ resolution: {integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==}
7133
+ engines: {node: '>= 0.4.0'}
7134
+ hasBin: true
7135
+ dev: false
7136
+
7119
7137
  /buffer-crc32@1.0.0:
7120
7138
  resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
7121
7139
  engines: {node: '>=8.0.0'}
@@ -7284,6 +7302,22 @@ packages:
7284
7302
  resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
7285
7303
  dev: true
7286
7304
 
7305
+ /canvg@3.0.11:
7306
+ resolution: {integrity: sha512-5ON+q7jCTgMp9cjpu4Jo6XbvfYwSB2Ow3kzHKfIyJfaCAOHLbdKPQqGKgfED/R5B+3TFFfe8pegYA+b423SRyA==}
7307
+ engines: {node: '>=10.0.0'}
7308
+ requiresBuild: true
7309
+ dependencies:
7310
+ '@babel/runtime': 7.29.2
7311
+ '@types/raf': 3.4.3
7312
+ core-js: 3.36.1
7313
+ raf: 3.4.1
7314
+ regenerator-runtime: 0.13.11
7315
+ rgbcolor: 1.0.1
7316
+ stackblur-canvas: 2.7.0
7317
+ svg-pathdata: 6.0.3
7318
+ dev: false
7319
+ optional: true
7320
+
7287
7321
  /cfb@1.2.2:
7288
7322
  resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==}
7289
7323
  engines: {node: '>=0.8'}
@@ -7695,7 +7729,11 @@ packages:
7695
7729
  /core-js@3.36.1:
7696
7730
  resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==}
7697
7731
  requiresBuild: true
7698
- dev: true
7732
+
7733
+ /core-js@3.49.0:
7734
+ resolution: {integrity: sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==}
7735
+ requiresBuild: true
7736
+ dev: false
7699
7737
 
7700
7738
  /core-util-is@1.0.3:
7701
7739
  resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -8514,6 +8552,12 @@ packages:
8514
8552
  dev: false
8515
8553
  optional: true
8516
8554
 
8555
+ /dompurify@2.5.9:
8556
+ resolution: {integrity: sha512-i6mvVmWN4xo9LrhCOZrDgSs9noW6nOahbrmzjRbPF36YPyj5Ue5lgok0MHDWkG7xzpWFO2OYttXdzM7rJxHvNA==}
8557
+ requiresBuild: true
8558
+ dev: false
8559
+ optional: true
8560
+
8517
8561
  /dot-prop@5.3.0:
8518
8562
  resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
8519
8563
  engines: {node: '>=8'}
@@ -9795,6 +9839,10 @@ packages:
9795
9839
  reusify: 1.0.4
9796
9840
  dev: true
9797
9841
 
9842
+ /fflate@0.8.2:
9843
+ resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
9844
+ dev: false
9845
+
9798
9846
  /file-entry-cache@6.0.1:
9799
9847
  resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
9800
9848
  engines: {node: ^10.12.0 || >=12.0.0}
@@ -10300,6 +10348,7 @@ packages:
10300
10348
  /glob@9.3.5:
10301
10349
  resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
10302
10350
  engines: {node: '>=16 || 14 >=14.17'}
10351
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
10303
10352
  dependencies:
10304
10353
  fs.realpath: 1.0.0
10305
10354
  minimatch: 8.0.4
@@ -11532,6 +11581,20 @@ packages:
11532
11581
  engines: {'0': node >= 0.2.0}
11533
11582
  dev: true
11534
11583
 
11584
+ /jspdf@2.5.2:
11585
+ resolution: {integrity: sha512-myeX9c+p7znDWPk0eTrujCzNjT+CXdXyk7YmJq5nD5V7uLLKmSXnlQ/Jn/kuo3X09Op70Apm0rQSnFWyGK8uEQ==}
11586
+ dependencies:
11587
+ '@babel/runtime': 7.29.2
11588
+ atob: 2.1.2
11589
+ btoa: 1.2.1
11590
+ fflate: 0.8.2
11591
+ optionalDependencies:
11592
+ canvg: 3.0.11
11593
+ core-js: 3.36.1
11594
+ dompurify: 2.5.9
11595
+ html2canvas: 1.4.1
11596
+ dev: false
11597
+
11535
11598
  /junk@3.1.0:
11536
11599
  resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
11537
11600
  engines: {node: '>=8'}
@@ -13045,6 +13108,12 @@ packages:
13045
13108
  engines: {node: '>=8'}
13046
13109
  dev: true
13047
13110
 
13111
+ /performance-now@2.1.0:
13112
+ resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
13113
+ requiresBuild: true
13114
+ dev: false
13115
+ optional: true
13116
+
13048
13117
  /picocolors@1.0.0:
13049
13118
  resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
13050
13119
 
@@ -13497,6 +13566,14 @@ packages:
13497
13566
  /qx-util@0.4.8:
13498
13567
  resolution: {integrity: sha512-QSaMIyccyPEZZytdHDqadsFp06m36FBX9nkwUmfD15EZ7hibSj4yO9bLBKuVwCDKnMV2w0QL2qHDsLV5b5rY1Q==}
13499
13568
 
13569
+ /raf@3.4.1:
13570
+ resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
13571
+ requiresBuild: true
13572
+ dependencies:
13573
+ performance-now: 2.1.0
13574
+ dev: false
13575
+ optional: true
13576
+
13500
13577
  /ramda@0.29.1:
13501
13578
  resolution: {integrity: sha512-OfxIeWzd4xdUNxlWhgFazxsA/nl3mS4/jGZI5n00uWOoSSFRhC1b6gl6xvmzUamgmqELraWp0J/qqVlXYPDPyA==}
13502
13579
 
@@ -13917,6 +13994,13 @@ packages:
13917
13994
  resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
13918
13995
  dev: true
13919
13996
 
13997
+ /rgbcolor@1.0.1:
13998
+ resolution: {integrity: sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==}
13999
+ engines: {node: '>= 0.8.15'}
14000
+ requiresBuild: true
14001
+ dev: false
14002
+ optional: true
14003
+
13920
14004
  /rimraf@3.0.2:
13921
14005
  resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
13922
14006
  deprecated: Rimraf versions prior to v4 are no longer supported
@@ -14525,6 +14609,13 @@ packages:
14525
14609
  resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
14526
14610
  dev: true
14527
14611
 
14612
+ /stackblur-canvas@2.7.0:
14613
+ resolution: {integrity: sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==}
14614
+ engines: {node: '>=0.1.14'}
14615
+ requiresBuild: true
14616
+ dev: false
14617
+ optional: true
14618
+
14528
14619
  /state-local@1.0.7:
14529
14620
  resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==}
14530
14621
  dev: false
@@ -14998,6 +15089,13 @@ packages:
14998
15089
  es6-symbol: 3.1.3
14999
15090
  dev: true
15000
15091
 
15092
+ /svg-pathdata@6.0.3:
15093
+ resolution: {integrity: sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==}
15094
+ engines: {node: '>=12.0.0'}
15095
+ requiresBuild: true
15096
+ dev: false
15097
+ optional: true
15098
+
15001
15099
  /svg-tags@1.0.0:
15002
15100
  resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
15003
15101
  dev: true
@@ -6,7 +6,7 @@ export { IBizViewShell };
6
6
 
7
7
  export default {
8
8
  install(v: App): void {
9
- v.component(IBizViewShell.name, IBizViewShell);
10
- v.component(IBizSpecialView.name, IBizSpecialView);
9
+ v.component(IBizViewShell.name!, IBizViewShell);
10
+ v.component(IBizSpecialView.name!, IBizSpecialView);
11
11
  },
12
12
  };
@@ -1,13 +1,23 @@
1
1
  /* eslint-disable no-param-reassign */
2
2
  /* eslint-disable vue/no-mutating-props */
3
3
  import {
4
+ CTX,
4
5
  EventBase,
5
6
  IModal,
6
7
  IViewProvider,
7
8
  IViewShellHooks,
8
9
  RedrawViewEvent,
9
10
  } from '@ibiz-template/runtime';
10
- import { defineComponent, h, PropType, ref, Component, Ref, watch } from 'vue';
11
+ import {
12
+ defineComponent,
13
+ h,
14
+ PropType,
15
+ ref,
16
+ Component,
17
+ Ref,
18
+ watch,
19
+ provide,
20
+ } from 'vue';
11
21
  import { IAppView } from '@ibiz/model-core';
12
22
  import './view-shell.scss';
13
23
  import { useNamespace } from '@ibiz-template/vue3-util';
@@ -20,6 +30,8 @@ export const IBizViewShell = defineComponent({
20
30
  params: { type: Object as PropType<IParams> },
21
31
  modelData: { type: Object as PropType<IAppView> },
22
32
  viewId: { type: String },
33
+ // 解决打开浮动容器(模态、抽屉、弹出框)ctx丢失问题
34
+ ctx: { type: Object as PropType<CTX> },
23
35
  viewShellHooks: { type: Object as PropType<IViewShellHooks> },
24
36
  },
25
37
  setup(props, { attrs }) {
@@ -29,7 +41,9 @@ export const IBizViewShell = defineComponent({
29
41
  const provider = ref<IViewProvider>();
30
42
  const viewComponent = ref<Component>();
31
43
  const viewModel = ref<IModel>();
32
-
44
+ if (props.ctx) {
45
+ provide('ctx', props.ctx);
46
+ }
33
47
  // 当前视图上下文
34
48
  const context: Ref<IContext> = ref(props.context);
35
49
  // 当前视图参数
@@ -411,7 +411,9 @@ export class ModelLoader implements ModelLoaderProvider {
411
411
  */
412
412
  async getAppDataEntity(appId: string, id: string): Promise<IAppDataEntity> {
413
413
  if (!appId || appId === ibiz.env.appId) {
414
- return getAppDataEntityModel(id);
414
+ const appDataEntity = await getAppDataEntityModel(id);
415
+ this.deepFillSubAppId(appDataEntity, ibiz.env.appId);
416
+ return appDataEntity;
415
417
  }
416
418
  const microAppConfig = ibiz.hub.microAppConfigCenter.getMicroApp(appId);
417
419
  const module = await System.import(
@@ -3,8 +3,8 @@ export default {
3
3
  codeName: '{{page.codeName}}',
4
4
  openMode: {{#if page.openMode }}'{{page.openMode}}'{{else}}'INDEXVIEWTAB'{{/if}},
5
5
  viewType: '{{page.viewType}}',
6
- width: {{page.width}},
7
- height: {{page.height}},
6
+ width: {{#if page.width }}{{page.width}}{{else}}undefined{{/if}},
7
+ height: {{#if page.height }}{{page.height}}{{else}}undefined{{/if}},
8
8
  appDataEntityId: {{#if page.appEntity }}'{{page.appEntity.DSL.id}}'{{else}}undefined{{/if}},
9
9
  redirectView: {{page.redirectView}},
10
10
  modalOption:{{jsonStringify page.modalOption 2}},