zhytech-ui-mobile 1.1.8 → 1.1.10
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/README.md +15 -1
- package/dist/static/scss/datetime.scss +10 -0
- package/dist/static/scss/index.scss +1 -0
- package/dist/style.css +1 -1
- package/dist/types/components/dynamicForm/components/application/index.d.ts +2 -1
- package/dist/types/components/dynamicForm/types/componentAttribute/application/departmentAttribute.d.ts +17 -0
- package/dist/types/components/dynamicForm/types/componentAttribute/application/employeeAttribute.d.ts +12 -0
- package/dist/types/components/dynamicForm/types/componentAttribute/index.d.ts +2 -1
- package/dist/types/components/dynamicForm/types/enum.d.ts +9 -1
- package/dist/types/components/dynamicForm/types/formAttribute.d.ts +12 -4
- package/dist/types/components/dynamicForm/types/httpSettingView.d.ts +9 -3
- package/dist/types/hooks/useUtils.d.ts +7 -1
- package/dist/types/utils/dayjs.d.ts +130 -0
- package/dist/types/utils/eventBus.d.ts +2 -1
- package/dist/zhytech-ui-mobile.es.js +969 -265
- package/dist/zhytech-ui-mobile.umd.js +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,10 +79,24 @@ npm install --legacy-peer-deps
|
|
|
79
79
|
|
|
80
80
|
> #### 版本更新清单:
|
|
81
81
|
|
|
82
|
+
**V 1.1.10**
|
|
83
|
+
```html
|
|
84
|
+
1.修复人员组件多显示下拉框问题
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
**V 1.1.9**
|
|
88
|
+
```html
|
|
89
|
+
1.调整组装动态请求数据,返回值里日期时间格式化处理
|
|
90
|
+
2.调整日期、时间组件添加边框
|
|
91
|
+
3.人员组件支持动态获取选项
|
|
92
|
+
4.人员组件为下拉框时 支持远端搜索,支持配置搜索接口
|
|
93
|
+
5.新增部门组件
|
|
94
|
+
6.修复人员、岗位组件回显问题
|
|
95
|
+
```
|
|
96
|
+
|
|
82
97
|
**V 1.1.8**
|
|
83
98
|
```html
|
|
84
99
|
1.zhy-dynamic-renderer组件的input组件新增支持设置动态请求数据
|
|
85
|
-
2.绑定字典选择时添加fixedItemID赋值
|
|
86
100
|
```
|
|
87
101
|
|
|
88
102
|
**V 1.1.7**
|