star-horse-lowcode 2.8.70 → 2.8.71
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 +7 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +5 -5
- package/dist/types/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -3520,6 +3520,14 @@ export declare function getDynamicEvents(props: any, recall: Function): Record<s
|
|
|
3520
3520
|
*/
|
|
3521
3521
|
export declare function getFingerId(): string;
|
|
3522
3522
|
|
|
3523
|
+
/**
|
|
3524
|
+
* 存在映射关系时的校验函数
|
|
3525
|
+
* @param item
|
|
3526
|
+
* @param dataForm
|
|
3527
|
+
* @param prefix
|
|
3528
|
+
* @param parentIndex
|
|
3529
|
+
* @param index
|
|
3530
|
+
*/
|
|
3523
3531
|
export declare function getFormData(item: any, dataForm: any, prefix: string, parentIndex: any, index: any): any;
|
|
3524
3532
|
|
|
3525
3533
|
export declare function getMenuId(): string;
|
|
@@ -7497,6 +7505,10 @@ export declare interface TabFieldInfo {
|
|
|
7497
7505
|
*/
|
|
7498
7506
|
batchFieldList?: Array<BatchFieldInfo>;
|
|
7499
7507
|
preps?: Record<string, any>;
|
|
7508
|
+
/**
|
|
7509
|
+
* 当subFormFlag为Y是映射关系 1 表示1对一,n表示1 对多,默认1
|
|
7510
|
+
*/
|
|
7511
|
+
mapping?: "1" | "n";
|
|
7500
7512
|
}
|
|
7501
7513
|
|
|
7502
7514
|
export declare const tableContainer: DefineComponent<ExtractPropTypes< {
|