imm-element-ui 0.5.7 → 0.5.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/esm2022/lib/form/form-type/radio.type.mjs +2 -3
- package/esm2022/lib/grid/grid/grid.component.mjs +2 -1
- package/esm2022/lib/share/utils.mjs +123 -1
- package/fesm2022/imm-element-ui.mjs +124 -4
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/share/utils.d.ts +8 -0
- package/package.json +1 -1
package/lib/share/utils.d.ts
CHANGED
|
@@ -20,3 +20,11 @@ export declare const filterObjectByKeys: (obj: any, keys: string[]) => any;
|
|
|
20
20
|
* @returns
|
|
21
21
|
*/
|
|
22
22
|
export declare const convertAct: (act: any) => any;
|
|
23
|
+
/**
|
|
24
|
+
* formpage 通用content函数转移
|
|
25
|
+
* @param content
|
|
26
|
+
* @param thisArg
|
|
27
|
+
*/
|
|
28
|
+
export declare const changeContent: (content: any, thisArg: any) => void;
|
|
29
|
+
export declare const convertCol: (col: any[], authLevel: number, modelName?: string, dragSort?: string) => void;
|
|
30
|
+
export declare const gridOptionsHooker: (gridOptions: any, selectContent: any) => void;
|