star-horse-lowcode 3.1.10 → 3.1.11
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 +5 -0
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
- package/dist/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
- package/dist/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
- package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
- package/dist/components/formcomp/utils/FieldList.vue.d.ts +4 -4
- package/dist/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
- package/dist/components/types/PageFieldInfo.d.ts +7 -8
- package/dist/components/types/SearchProps.d.ts +2 -3
- package/dist/index.es.js +6 -6
- package/dist/lang/en_US.d.ts +47 -0
- package/dist/lang/zh_CN.d.ts +47 -0
- package/dist/store/DesignForm.d.ts +72 -72
- package/dist/store/FormDataCache.d.ts +24 -12
- package/dist/store/StoreManager.d.ts +192 -168
- package/dist/types/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
- package/dist/types/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
- package/dist/types/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
- package/dist/types/components/formcomp/utils/FieldList.vue.d.ts +4 -4
- package/dist/types/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
- package/dist/types/components/system/StarHorseSvg.vue.d.ts +2 -2
- package/dist/types/components/system/code-editor/TabBar.vue.d.ts +2 -2
- package/dist/types/components/types/PageFieldInfo.d.ts +7 -8
- package/dist/types/components/types/SearchProps.d.ts +2 -3
- package/dist/types/lang/en_US.d.ts +47 -0
- package/dist/types/lang/zh_CN.d.ts +47 -0
- package/dist/types/sample/commonpage/dynamic_form_utils.d.ts +8 -0
- package/dist/types/store/DesignForm.d.ts +72 -72
- package/dist/types/store/FormDataCache.d.ts +24 -12
- package/dist/types/store/StoreManager.d.ts +192 -168
- package/dist/types/utils/preview.d.ts +2 -1
- package/dist/utils/preview.d.ts +2 -1
- package/package.json +11 -11
|
@@ -2,6 +2,7 @@ import { FormDataProp } from '../sample/commonpage/dynamic_form_utils';
|
|
|
2
2
|
export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"formDataCache", Pick<{
|
|
3
3
|
cache: import('vue').Ref<Map<string, {
|
|
4
4
|
primaryKey: string;
|
|
5
|
+
bindWorkFlowId: string;
|
|
5
6
|
rules: Record<string, any>;
|
|
6
7
|
hasData: boolean;
|
|
7
8
|
fieldMappingList: Array<any>;
|
|
@@ -686,12 +687,12 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
686
687
|
};
|
|
687
688
|
preps?: any;
|
|
688
689
|
dataType?: string;
|
|
689
|
-
optionList?:
|
|
690
|
+
optionList?: {
|
|
690
691
|
name?: string;
|
|
691
692
|
value?: string | number;
|
|
692
693
|
disabled?: string;
|
|
693
694
|
helpMsg?: string;
|
|
694
|
-
children?:
|
|
695
|
+
children?: /*elided*/ any[];
|
|
695
696
|
}[];
|
|
696
697
|
}[];
|
|
697
698
|
};
|
|
@@ -808,8 +809,10 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
808
809
|
priority?: number;
|
|
809
810
|
};
|
|
810
811
|
processDefineNodes: Array<any>;
|
|
812
|
+
formInfo: Record<string, any>;
|
|
811
813
|
}> & Omit<Map<string, FormDataProp>, keyof Map<any, any>>, Map<string, FormDataProp> | (Map<string, {
|
|
812
814
|
primaryKey: string;
|
|
815
|
+
bindWorkFlowId: string;
|
|
813
816
|
rules: Record<string, any>;
|
|
814
817
|
hasData: boolean;
|
|
815
818
|
fieldMappingList: Array<any>;
|
|
@@ -1494,12 +1497,12 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
1494
1497
|
};
|
|
1495
1498
|
preps?: any;
|
|
1496
1499
|
dataType?: string;
|
|
1497
|
-
optionList?:
|
|
1500
|
+
optionList?: {
|
|
1498
1501
|
name?: string;
|
|
1499
1502
|
value?: string | number;
|
|
1500
1503
|
disabled?: string;
|
|
1501
1504
|
helpMsg?: string;
|
|
1502
|
-
children?:
|
|
1505
|
+
children?: /*elided*/ any[];
|
|
1503
1506
|
}[];
|
|
1504
1507
|
}[];
|
|
1505
1508
|
};
|
|
@@ -1616,6 +1619,7 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
1616
1619
|
priority?: number;
|
|
1617
1620
|
};
|
|
1618
1621
|
processDefineNodes: Array<any>;
|
|
1622
|
+
formInfo: Record<string, any>;
|
|
1619
1623
|
}> & Omit<Map<string, FormDataProp>, keyof Map<any, any>>)>;
|
|
1620
1624
|
getFormData: (param: string) => FormDataProp | undefined;
|
|
1621
1625
|
setFormData: (param: string, data: FormDataProp) => void;
|
|
@@ -1626,6 +1630,7 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
1626
1630
|
}, "cache">, Pick<{
|
|
1627
1631
|
cache: import('vue').Ref<Map<string, {
|
|
1628
1632
|
primaryKey: string;
|
|
1633
|
+
bindWorkFlowId: string;
|
|
1629
1634
|
rules: Record<string, any>;
|
|
1630
1635
|
hasData: boolean;
|
|
1631
1636
|
fieldMappingList: Array<any>;
|
|
@@ -2310,12 +2315,12 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
2310
2315
|
};
|
|
2311
2316
|
preps?: any;
|
|
2312
2317
|
dataType?: string;
|
|
2313
|
-
optionList?:
|
|
2318
|
+
optionList?: {
|
|
2314
2319
|
name?: string;
|
|
2315
2320
|
value?: string | number;
|
|
2316
2321
|
disabled?: string;
|
|
2317
2322
|
helpMsg?: string;
|
|
2318
|
-
children?:
|
|
2323
|
+
children?: /*elided*/ any[];
|
|
2319
2324
|
}[];
|
|
2320
2325
|
}[];
|
|
2321
2326
|
};
|
|
@@ -2432,8 +2437,10 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
2432
2437
|
priority?: number;
|
|
2433
2438
|
};
|
|
2434
2439
|
processDefineNodes: Array<any>;
|
|
2440
|
+
formInfo: Record<string, any>;
|
|
2435
2441
|
}> & Omit<Map<string, FormDataProp>, keyof Map<any, any>>, Map<string, FormDataProp> | (Map<string, {
|
|
2436
2442
|
primaryKey: string;
|
|
2443
|
+
bindWorkFlowId: string;
|
|
2437
2444
|
rules: Record<string, any>;
|
|
2438
2445
|
hasData: boolean;
|
|
2439
2446
|
fieldMappingList: Array<any>;
|
|
@@ -3118,12 +3125,12 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
3118
3125
|
};
|
|
3119
3126
|
preps?: any;
|
|
3120
3127
|
dataType?: string;
|
|
3121
|
-
optionList?:
|
|
3128
|
+
optionList?: {
|
|
3122
3129
|
name?: string;
|
|
3123
3130
|
value?: string | number;
|
|
3124
3131
|
disabled?: string;
|
|
3125
3132
|
helpMsg?: string;
|
|
3126
|
-
children?:
|
|
3133
|
+
children?: /*elided*/ any[];
|
|
3127
3134
|
}[];
|
|
3128
3135
|
}[];
|
|
3129
3136
|
};
|
|
@@ -3240,6 +3247,7 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
3240
3247
|
priority?: number;
|
|
3241
3248
|
};
|
|
3242
3249
|
processDefineNodes: Array<any>;
|
|
3250
|
+
formInfo: Record<string, any>;
|
|
3243
3251
|
}> & Omit<Map<string, FormDataProp>, keyof Map<any, any>>)>;
|
|
3244
3252
|
getFormData: (param: string) => FormDataProp | undefined;
|
|
3245
3253
|
setFormData: (param: string, data: FormDataProp) => void;
|
|
@@ -3250,6 +3258,7 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
3250
3258
|
}, never>, Pick<{
|
|
3251
3259
|
cache: import('vue').Ref<Map<string, {
|
|
3252
3260
|
primaryKey: string;
|
|
3261
|
+
bindWorkFlowId: string;
|
|
3253
3262
|
rules: Record<string, any>;
|
|
3254
3263
|
hasData: boolean;
|
|
3255
3264
|
fieldMappingList: Array<any>;
|
|
@@ -3934,12 +3943,12 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
3934
3943
|
};
|
|
3935
3944
|
preps?: any;
|
|
3936
3945
|
dataType?: string;
|
|
3937
|
-
optionList?:
|
|
3946
|
+
optionList?: {
|
|
3938
3947
|
name?: string;
|
|
3939
3948
|
value?: string | number;
|
|
3940
3949
|
disabled?: string;
|
|
3941
3950
|
helpMsg?: string;
|
|
3942
|
-
children?:
|
|
3951
|
+
children?: /*elided*/ any[];
|
|
3943
3952
|
}[];
|
|
3944
3953
|
}[];
|
|
3945
3954
|
};
|
|
@@ -4056,8 +4065,10 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
4056
4065
|
priority?: number;
|
|
4057
4066
|
};
|
|
4058
4067
|
processDefineNodes: Array<any>;
|
|
4068
|
+
formInfo: Record<string, any>;
|
|
4059
4069
|
}> & Omit<Map<string, FormDataProp>, keyof Map<any, any>>, Map<string, FormDataProp> | (Map<string, {
|
|
4060
4070
|
primaryKey: string;
|
|
4071
|
+
bindWorkFlowId: string;
|
|
4061
4072
|
rules: Record<string, any>;
|
|
4062
4073
|
hasData: boolean;
|
|
4063
4074
|
fieldMappingList: Array<any>;
|
|
@@ -4742,12 +4753,12 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
4742
4753
|
};
|
|
4743
4754
|
preps?: any;
|
|
4744
4755
|
dataType?: string;
|
|
4745
|
-
optionList?:
|
|
4756
|
+
optionList?: {
|
|
4746
4757
|
name?: string;
|
|
4747
4758
|
value?: string | number;
|
|
4748
4759
|
disabled?: string;
|
|
4749
4760
|
helpMsg?: string;
|
|
4750
|
-
children?:
|
|
4761
|
+
children?: /*elided*/ any[];
|
|
4751
4762
|
}[];
|
|
4752
4763
|
}[];
|
|
4753
4764
|
};
|
|
@@ -4864,6 +4875,7 @@ export declare const useFormDataCacheStore: import('pinia').StoreDefinition<"for
|
|
|
4864
4875
|
priority?: number;
|
|
4865
4876
|
};
|
|
4866
4877
|
processDefineNodes: Array<any>;
|
|
4878
|
+
formInfo: Record<string, any>;
|
|
4867
4879
|
}> & Omit<Map<string, FormDataProp>, keyof Map<any, any>>)>;
|
|
4868
4880
|
getFormData: (param: string) => FormDataProp | undefined;
|
|
4869
4881
|
setFormData: (param: string, data: FormDataProp) => void;
|