@utogether/utils 3.0.0-beta.34 → 3.0.0-beta.35
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/dist/pkg/formatData.d.ts +2 -1
- package/dist/pkg/useRender.d.ts +2 -0
- package/dist/utils.es.js +366 -364
- package/dist/utils.umd.js +1 -1
- package/package.json +1 -1
package/dist/pkg/formatData.d.ts
CHANGED
|
@@ -8,9 +8,10 @@ export declare const i18nColums: (columns: any, sortable?: boolean) => any;
|
|
|
8
8
|
* @description: form item数据标准化
|
|
9
9
|
* @param {*} items item
|
|
10
10
|
* @param {*} status 状态
|
|
11
|
+
* @param {*} t 多语言转换函数
|
|
11
12
|
* @return {*} form item数据标准化后的数据
|
|
12
13
|
*/
|
|
13
|
-
export declare const formatItems: (items: any, status: any, span?: number) => any;
|
|
14
|
+
export declare const formatItems: (items: any, status: any, t: any, span?: number) => any;
|
|
14
15
|
/** 表单form查询按钮组 */
|
|
15
16
|
export declare const formSearchButtons: {
|
|
16
17
|
span: number;
|
package/dist/pkg/useRender.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export declare const useRender: () => {
|
|
|
78
78
|
props: {
|
|
79
79
|
mapField: {};
|
|
80
80
|
defaultParams: any;
|
|
81
|
+
disabled: any;
|
|
81
82
|
url: string;
|
|
82
83
|
fetchField: string;
|
|
83
84
|
};
|
|
@@ -92,6 +93,7 @@ export declare const useRender: () => {
|
|
|
92
93
|
name: string;
|
|
93
94
|
props: {
|
|
94
95
|
mapField: {};
|
|
96
|
+
disabled: any;
|
|
95
97
|
defaultParams: any;
|
|
96
98
|
url: string;
|
|
97
99
|
fetchField: string;
|