star-horse-lowcode 3.1.10 → 3.1.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.
Files changed (36) hide show
  1. package/README.md +10 -0
  2. package/dist/assets/index.css +1 -1
  3. package/dist/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
  4. package/dist/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
  5. package/dist/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
  6. package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
  7. package/dist/components/formcomp/utils/FieldList.vue.d.ts +4 -4
  8. package/dist/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
  9. package/dist/components/types/PageFieldInfo.d.ts +7 -8
  10. package/dist/components/types/SearchProps.d.ts +2 -3
  11. package/dist/index.es.js +6 -6
  12. package/dist/lang/en_US.d.ts +47 -0
  13. package/dist/lang/zh_CN.d.ts +47 -0
  14. package/dist/plugins/AblesPlugin.d.ts +1 -1
  15. package/dist/store/DesignForm.d.ts +75 -75
  16. package/dist/store/FormDataCache.d.ts +24 -12
  17. package/dist/store/StoreManager.d.ts +198 -174
  18. package/dist/types/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
  19. package/dist/types/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
  20. package/dist/types/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
  21. package/dist/types/components/formcomp/utils/FieldList.vue.d.ts +4 -4
  22. package/dist/types/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
  23. package/dist/types/components/system/StarHorseSvg.vue.d.ts +2 -2
  24. package/dist/types/components/system/code-editor/TabBar.vue.d.ts +2 -2
  25. package/dist/types/components/types/PageFieldInfo.d.ts +7 -8
  26. package/dist/types/components/types/SearchProps.d.ts +2 -3
  27. package/dist/types/lang/en_US.d.ts +47 -0
  28. package/dist/types/lang/zh_CN.d.ts +47 -0
  29. package/dist/types/plugins/AblesPlugin.d.ts +1 -1
  30. package/dist/types/sample/commonpage/dynamic_form_utils.d.ts +8 -0
  31. package/dist/types/store/DesignForm.d.ts +75 -75
  32. package/dist/types/store/FormDataCache.d.ts +24 -12
  33. package/dist/types/store/StoreManager.d.ts +198 -174
  34. package/dist/types/utils/preview.d.ts +2 -1
  35. package/dist/utils/preview.d.ts +2 -1
  36. package/package.json +13 -13
@@ -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?: import('..').SelectOption[] | {
690
+ optionList?: {
690
691
  name?: string;
691
692
  value?: string | number;
692
693
  disabled?: string;
693
694
  helpMsg?: string;
694
- children?: import('..').SelectOption[] | /*elided*/ any[];
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?: import('..').SelectOption[] | {
1500
+ optionList?: {
1498
1501
  name?: string;
1499
1502
  value?: string | number;
1500
1503
  disabled?: string;
1501
1504
  helpMsg?: string;
1502
- children?: import('..').SelectOption[] | /*elided*/ any[];
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?: import('..').SelectOption[] | {
2318
+ optionList?: {
2314
2319
  name?: string;
2315
2320
  value?: string | number;
2316
2321
  disabled?: string;
2317
2322
  helpMsg?: string;
2318
- children?: import('..').SelectOption[] | /*elided*/ any[];
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?: import('..').SelectOption[] | {
3128
+ optionList?: {
3122
3129
  name?: string;
3123
3130
  value?: string | number;
3124
3131
  disabled?: string;
3125
3132
  helpMsg?: string;
3126
- children?: import('..').SelectOption[] | /*elided*/ any[];
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?: import('..').SelectOption[] | {
3946
+ optionList?: {
3938
3947
  name?: string;
3939
3948
  value?: string | number;
3940
3949
  disabled?: string;
3941
3950
  helpMsg?: string;
3942
- children?: import('..').SelectOption[] | /*elided*/ any[];
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?: import('..').SelectOption[] | {
4756
+ optionList?: {
4746
4757
  name?: string;
4747
4758
  value?: string | number;
4748
4759
  disabled?: string;
4749
4760
  helpMsg?: string;
4750
- children?: import('..').SelectOption[] | /*elided*/ any[];
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;