@sunny-base-web/effects 0.8.26 → 0.8.27
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/index.d.ts +4 -0
- package/dist/index.js +5 -5
- package/dist/index.mjs +3204 -3186
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -2460,6 +2460,10 @@ export declare interface UseBusinessSearchModalReturn {
|
|
|
2460
2460
|
handleConfirm: (rows: any[]) => void;
|
|
2461
2461
|
selectedValues: ReturnType<typeof computed<any[]>>;
|
|
2462
2462
|
setSelectedValues: (val: any[]) => void;
|
|
2463
|
+
/** 将后端字符串值转换为对象数组格式 */
|
|
2464
|
+
transformToTableFormat: (row: Record<string, any>, field: string, displayField?: string) => void;
|
|
2465
|
+
/** 将对象数组转换回后端字符串格式 */
|
|
2466
|
+
transformToStorageFormat: (row: Record<string, any>, field: string, displayField?: string) => void;
|
|
2463
2467
|
}
|
|
2464
2468
|
|
|
2465
2469
|
/**
|