@ibiz-template/model-helper 0.7.38-alpha.57 → 0.7.39

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 千反田丷
3
+ Copyright (c) 2022-present, iBiz
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # @ibiz-template/model-helper
2
+
3
+ 专注对模型进行操作的工具库,包含请求模型数据、通过iBiz前端运行时模型编译库将请求的模型数据转化为运行时模型、对运行时模型动态合并、转换等核心操作,旨在简化复杂模型处理流程。
4
+
5
+ ## 📂 项目结构
6
+
7
+ ```javascript
8
+ |─ ─ model-helper
9
+ |─ ─ scripts 工具脚本文件夹
10
+ |─ ─ src 项目工程文件夹
11
+ |─ ─ locale 多语言文件夹
12
+ |─ ─ model 模板预置模型
13
+ |─ ─ utils 工具文件夹
14
+ |─ ─ format-path 路径格式化工具
15
+ |─ ─ merge-model 模型合并工具文件夹
16
+ |─ ─ merge-app-menu.ts 合并菜单模型工具
17
+ |─ ─ merge-app-uiaction-group.ts 合并界面行为组模型工具
18
+ |─ ─ merge-de-drcontrol.ts 合并DrCtrl控件工具
19
+ |─ ─ merge-model-helper.ts 合并子应用模型工具类
20
+ |─ ─ merge-model.ts 合并预置模型工具
21
+ |─ ─ merge-treeview.ts 合并树视图模型工具
22
+ |─ ─ plural 模型单词复数转换工具
23
+ |─ ─ service-path-util 服务路径处理工具类
24
+ |─ ─ model-helper.ts 模型加载工具类
25
+ |─ ─ model-loader.ts 模型加载适配器
26
+ |─ ─ model-util.ts 全动模型处理工具类
27
+ |─ ─ test 测试文件夹
28
+ |─ ─ format-path 路径格式化测试
29
+ |─ ─ index.test.ts 入口测试文件
30
+ |─ ─ merge-model 合并模型测试文件夹
31
+ |─ ─ merge-app-menu.test.ts 合并应用菜单测试
32
+ |─ ─ merge-model.test.ts 合并预置模型测试
33
+ |─ ─ plural 模型单词复数转换测试
34
+ ```
35
+
36
+ ## 📌 更改日志
37
+
38
+ 每个版本的详细更改记录在[发行说明](CHANGELOG.md)中。
39
+
40
+ ## 📜 许可证
41
+
42
+ [MIT](LICENSE)