@das-fed/ui 7.0.11 → 7.0.12
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.
|
Binary file
|
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
export declare const getSimpleText: (html: any) => any;
|
|
2
2
|
export declare const getOption: (alias: string, conditionfield: any, otherParams?: any) => Promise<any>;
|
|
3
3
|
export declare const getRequired: (arr: any) => Promise<boolean>;
|
|
4
|
+
/**
|
|
5
|
+
* 递归处理对象,为所有没有有效id的对象生成nanoid
|
|
6
|
+
* @param {any} data - 需要处理的数据(对象或数组)
|
|
7
|
+
* @returns {any} - 处理后的数据
|
|
8
|
+
*/
|
|
9
|
+
export declare const generateIdsRecursively: (data: any) => any;
|