star-horse-lowcode 3.1.11 → 3.1.13

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 (61) hide show
  1. package/README.md +11 -0
  2. package/dist/assets/index.css +1 -1
  3. package/dist/components/comp/StarHorseDialog.vue.d.ts +31 -9
  4. package/dist/components/comp/StarHorseFormList.vue.d.ts +9 -0
  5. package/dist/components/comp/StarHorseFormTable.vue.d.ts +9 -0
  6. package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
  7. package/dist/components/comp/items/tableItem.vue.d.ts +22 -0
  8. package/dist/components/formcomp/utils/EditDataDialog.vue.d.ts +1 -1
  9. package/dist/components/formcomp/utils/FormulaEngine.d.ts +8 -85
  10. package/dist/components/system/PageConfig.vue.d.ts +1 -1
  11. package/dist/components/system/StarHorseQueryBuilder.vue.d.ts +2 -2
  12. package/dist/components/system/code-editor/types.d.ts +40 -0
  13. package/dist/components/system/code-editor/useEditorGroups.d.ts +50 -0
  14. package/dist/components/types/ItemPreps.d.ts +4 -0
  15. package/dist/index.es.js +6 -6
  16. package/dist/lang/en_US.d.ts +17 -0
  17. package/dist/lang/zh_CN.d.ts +17 -0
  18. package/dist/plugins/AblesPlugin.d.ts +1 -1
  19. package/dist/store/ButtonPermission.d.ts +2 -20
  20. package/dist/store/ConsumerView.d.ts +2 -16
  21. package/dist/store/CopyerOperation.d.ts +2 -22
  22. package/dist/store/DesignForm.d.ts +4 -1156
  23. package/dist/store/DesignPage.d.ts +2 -100
  24. package/dist/store/DynamicForm.d.ts +2 -36
  25. package/dist/store/FormDataCache.d.ts +2 -3258
  26. package/dist/store/GlobalConfig.d.ts +2 -10
  27. package/dist/store/SelfOperation.d.ts +2 -472
  28. package/dist/store/StoreManager.d.ts +30 -30
  29. package/dist/store/UserInfo.d.ts +2 -30
  30. package/dist/types/components/comp/StarHorseDialog.vue.d.ts +31 -9
  31. package/dist/types/components/comp/StarHorseFormList.vue.d.ts +9 -0
  32. package/dist/types/components/comp/StarHorseFormTable.vue.d.ts +9 -0
  33. package/dist/types/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
  34. package/dist/types/components/comp/items/tabPanelItem.vue.d.ts +10 -1
  35. package/dist/types/components/formcomp/utils/EditDataDialog.vue.d.ts +1 -1
  36. package/dist/types/components/formcomp/utils/FormulaEngine.d.ts +8 -85
  37. package/dist/types/components/system/PageConfig.vue.d.ts +1 -1
  38. package/dist/types/components/system/StarHorseCodeEditor.vue.d.ts +47 -1
  39. package/dist/types/components/system/StarHorseQueryBuilder.vue.d.ts +2 -2
  40. package/dist/types/components/system/code-editor/EditorPane.vue.d.ts +21 -0
  41. package/dist/types/components/system/code-editor/SplitView.vue.d.ts +35 -0
  42. package/dist/types/components/system/code-editor/types.d.ts +40 -0
  43. package/dist/types/components/system/code-editor/useEditorGroups.d.ts +50 -0
  44. package/dist/types/components/types/ItemPreps.d.ts +4 -0
  45. package/dist/types/index.d.ts +0 -1
  46. package/dist/types/lang/en_US.d.ts +17 -0
  47. package/dist/types/lang/zh_CN.d.ts +17 -0
  48. package/dist/types/plugins/AblesPlugin.d.ts +1 -1
  49. package/dist/types/store/ButtonPermission.d.ts +2 -20
  50. package/dist/types/store/ConsumerView.d.ts +2 -16
  51. package/dist/types/store/CopyerOperation.d.ts +2 -22
  52. package/dist/types/store/DesignForm.d.ts +4 -1156
  53. package/dist/types/store/DesignPage.d.ts +2 -100
  54. package/dist/types/store/DynamicForm.d.ts +2 -36
  55. package/dist/types/store/FormDataCache.d.ts +2 -3258
  56. package/dist/types/store/GlobalConfig.d.ts +2 -10
  57. package/dist/types/store/SelfOperation.d.ts +2 -472
  58. package/dist/types/store/StoreManager.d.ts +30 -30
  59. package/dist/types/store/UserInfo.d.ts +2 -30
  60. package/package.json +18 -17
  61. package/dist/api/pcas-code.json.d.ts +0 -185519
@@ -1,6 +1,6 @@
1
1
  import { CompType } from '../components/types/FormType';
2
2
  import { UserInfo } from '../components/types';
3
- export declare const useDesignFormStore: import('pinia').StoreDefinition<"designForm", Pick<{
3
+ export declare const useDesignFormStore: import('pinia').SetupStoreDefinition<"designForm", {
4
4
  formData: import('vue').Ref<any, any>;
5
5
  formInfo: import('vue').Ref<any, any>;
6
6
  compList: import('vue').Ref<any[], any[]>;
@@ -522,12 +522,12 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
522
522
  currentItemId: import('vue').Ref<string, string>;
523
523
  parentCompType: import('vue').Ref<string, string>;
524
524
  currentItemType: import('vue').Ref<string, string>;
525
- currentFormPreps: import('vue').Ref<any, any>;
525
+ currentFormPreps: import('vue').ComputedRef<any>;
526
526
  currentSubItemId: import('vue').Ref<string, string>;
527
527
  currentSubItem: import('vue').Ref<Record<string, any>, Record<string, any>>;
528
528
  isEdit: import('vue').Ref<boolean, boolean>;
529
529
  isDragging: import('vue').Ref<boolean, boolean>;
530
- currentComp: import('vue').ShallowRef<any, any>;
530
+ currentComp: import('vue').Ref<any, any>;
531
531
  draggingItem: import('vue').Ref<any, any>;
532
532
  refresh: import('vue').Ref<number, number>;
533
533
  historyRecord: import('vue').Ref<any, any>;
@@ -576,1156 +576,4 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
576
576
  getCurrentCompEditUserInfo: (compId: string) => UserInfo;
577
577
  addCurrentCompEditUserInfo: (compId: string, userinfo: UserInfo) => void;
578
578
  removeCurrentCompEditUserInfo: (compId: string) => void;
579
- }, "formData" | "isEdit" | "formInfo" | "compList" | "containerList" | "formDataList" | "selfFormDataList" | "allFormDataList" | "currentCompCategory" | "currentItemId" | "parentCompType" | "currentItemType" | "currentFormPreps" | "currentSubItemId" | "currentSubItem" | "isDragging" | "currentComp" | "draggingItem" | "refresh" | "historyRecord" | "componentVisible" | "batchEditFieldVisible" | "previewVisible" | "shortKeyDisabled">, Pick<{
580
- formData: import('vue').Ref<any, any>;
581
- formInfo: import('vue').Ref<any, any>;
582
- compList: import('vue').Ref<any[], any[]>;
583
- containerList: import('vue').Ref<{
584
- itemName: string;
585
- itemType: string;
586
- itemIcon: string;
587
- category: number;
588
- remark?: string;
589
- fields: {
590
- label: string;
591
- fieldName: string;
592
- fieldType?: string;
593
- required?: boolean;
594
- category: 1 | 2 | 3 | 4;
595
- selectValues?: string | number | {
596
- name?: string;
597
- value?: string | number;
598
- disabled?: string;
599
- helpMsg?: string;
600
- children?: /*elided*/ any[];
601
- }[];
602
- defaultValues?: any;
603
- remark?: string;
604
- helpMsg?: string;
605
- configParams?: Array<any>;
606
- }[];
607
- advancedFields: {
608
- label: string;
609
- fieldName: string;
610
- fieldType?: string;
611
- required?: boolean;
612
- category: 1 | 2 | 3 | 4;
613
- selectValues?: string | number | {
614
- name?: string;
615
- value?: string | number;
616
- disabled?: string;
617
- helpMsg?: string;
618
- children?: /*elided*/ any[];
619
- }[];
620
- defaultValues?: any;
621
- remark?: string;
622
- helpMsg?: string;
623
- configParams?: Array<any>;
624
- }[];
625
- selfFields: {
626
- label: string;
627
- fieldName: string;
628
- fieldType?: string;
629
- required?: boolean;
630
- category: 1 | 2 | 3 | 4;
631
- selectValues?: string | number | {
632
- name?: string;
633
- value?: string | number;
634
- disabled?: string;
635
- helpMsg?: string;
636
- children?: /*elided*/ any[];
637
- }[];
638
- defaultValues?: any;
639
- remark?: string;
640
- helpMsg?: string;
641
- configParams?: Array<any>;
642
- }[];
643
- actions: {
644
- actionIcon?: string;
645
- label: string;
646
- actionName: string;
647
- fieldType: string;
648
- funcCode?: Function | string;
649
- }[];
650
- preps: {
651
- label: string;
652
- fieldName: string;
653
- fieldType?: string;
654
- required?: boolean;
655
- category: 1 | 2 | 3 | 4;
656
- selectValues?: string | number | {
657
- name?: string;
658
- value?: string | number;
659
- disabled?: string;
660
- helpMsg?: string;
661
- children?: /*elided*/ any[];
662
- }[];
663
- defaultValues?: any;
664
- remark?: string;
665
- helpMsg?: string;
666
- configParams?: Array<any>;
667
- }[];
668
- }[], CompType[] | {
669
- itemName: string;
670
- itemType: string;
671
- itemIcon: string;
672
- category: number;
673
- remark?: string;
674
- fields: {
675
- label: string;
676
- fieldName: string;
677
- fieldType?: string;
678
- required?: boolean;
679
- category: 1 | 2 | 3 | 4;
680
- selectValues?: string | number | {
681
- name?: string;
682
- value?: string | number;
683
- disabled?: string;
684
- helpMsg?: string;
685
- children?: /*elided*/ any[];
686
- }[];
687
- defaultValues?: any;
688
- remark?: string;
689
- helpMsg?: string;
690
- configParams?: Array<any>;
691
- }[];
692
- advancedFields: {
693
- label: string;
694
- fieldName: string;
695
- fieldType?: string;
696
- required?: boolean;
697
- category: 1 | 2 | 3 | 4;
698
- selectValues?: string | number | {
699
- name?: string;
700
- value?: string | number;
701
- disabled?: string;
702
- helpMsg?: string;
703
- children?: /*elided*/ any[];
704
- }[];
705
- defaultValues?: any;
706
- remark?: string;
707
- helpMsg?: string;
708
- configParams?: Array<any>;
709
- }[];
710
- selfFields: {
711
- label: string;
712
- fieldName: string;
713
- fieldType?: string;
714
- required?: boolean;
715
- category: 1 | 2 | 3 | 4;
716
- selectValues?: string | number | {
717
- name?: string;
718
- value?: string | number;
719
- disabled?: string;
720
- helpMsg?: string;
721
- children?: /*elided*/ any[];
722
- }[];
723
- defaultValues?: any;
724
- remark?: string;
725
- helpMsg?: string;
726
- configParams?: Array<any>;
727
- }[];
728
- actions: {
729
- actionIcon?: string;
730
- label: string;
731
- actionName: string;
732
- fieldType: string;
733
- funcCode?: Function | string;
734
- }[];
735
- preps: {
736
- label: string;
737
- fieldName: string;
738
- fieldType?: string;
739
- required?: boolean;
740
- category: 1 | 2 | 3 | 4;
741
- selectValues?: string | number | {
742
- name?: string;
743
- value?: string | number;
744
- disabled?: string;
745
- helpMsg?: string;
746
- children?: /*elided*/ any[];
747
- }[];
748
- defaultValues?: any;
749
- remark?: string;
750
- helpMsg?: string;
751
- configParams?: Array<any>;
752
- }[];
753
- }[]>;
754
- formDataList: import('vue').Ref<{
755
- itemName: string;
756
- itemType: string;
757
- itemIcon: string;
758
- category: number;
759
- remark?: string;
760
- fields: {
761
- label: string;
762
- fieldName: string;
763
- fieldType?: string;
764
- required?: boolean;
765
- category: 1 | 2 | 3 | 4;
766
- selectValues?: string | number | {
767
- name?: string;
768
- value?: string | number;
769
- disabled?: string;
770
- helpMsg?: string;
771
- children?: /*elided*/ any[];
772
- }[];
773
- defaultValues?: any;
774
- remark?: string;
775
- helpMsg?: string;
776
- configParams?: Array<any>;
777
- }[];
778
- advancedFields: {
779
- label: string;
780
- fieldName: string;
781
- fieldType?: string;
782
- required?: boolean;
783
- category: 1 | 2 | 3 | 4;
784
- selectValues?: string | number | {
785
- name?: string;
786
- value?: string | number;
787
- disabled?: string;
788
- helpMsg?: string;
789
- children?: /*elided*/ any[];
790
- }[];
791
- defaultValues?: any;
792
- remark?: string;
793
- helpMsg?: string;
794
- configParams?: Array<any>;
795
- }[];
796
- selfFields: {
797
- label: string;
798
- fieldName: string;
799
- fieldType?: string;
800
- required?: boolean;
801
- category: 1 | 2 | 3 | 4;
802
- selectValues?: string | number | {
803
- name?: string;
804
- value?: string | number;
805
- disabled?: string;
806
- helpMsg?: string;
807
- children?: /*elided*/ any[];
808
- }[];
809
- defaultValues?: any;
810
- remark?: string;
811
- helpMsg?: string;
812
- configParams?: Array<any>;
813
- }[];
814
- actions: {
815
- actionIcon?: string;
816
- label: string;
817
- actionName: string;
818
- fieldType: string;
819
- funcCode?: Function | string;
820
- }[];
821
- preps: {
822
- label: string;
823
- fieldName: string;
824
- fieldType?: string;
825
- required?: boolean;
826
- category: 1 | 2 | 3 | 4;
827
- selectValues?: string | number | {
828
- name?: string;
829
- value?: string | number;
830
- disabled?: string;
831
- helpMsg?: string;
832
- children?: /*elided*/ any[];
833
- }[];
834
- defaultValues?: any;
835
- remark?: string;
836
- helpMsg?: string;
837
- configParams?: Array<any>;
838
- }[];
839
- }[], CompType[] | {
840
- itemName: string;
841
- itemType: string;
842
- itemIcon: string;
843
- category: number;
844
- remark?: string;
845
- fields: {
846
- label: string;
847
- fieldName: string;
848
- fieldType?: string;
849
- required?: boolean;
850
- category: 1 | 2 | 3 | 4;
851
- selectValues?: string | number | {
852
- name?: string;
853
- value?: string | number;
854
- disabled?: string;
855
- helpMsg?: string;
856
- children?: /*elided*/ any[];
857
- }[];
858
- defaultValues?: any;
859
- remark?: string;
860
- helpMsg?: string;
861
- configParams?: Array<any>;
862
- }[];
863
- advancedFields: {
864
- label: string;
865
- fieldName: string;
866
- fieldType?: string;
867
- required?: boolean;
868
- category: 1 | 2 | 3 | 4;
869
- selectValues?: string | number | {
870
- name?: string;
871
- value?: string | number;
872
- disabled?: string;
873
- helpMsg?: string;
874
- children?: /*elided*/ any[];
875
- }[];
876
- defaultValues?: any;
877
- remark?: string;
878
- helpMsg?: string;
879
- configParams?: Array<any>;
880
- }[];
881
- selfFields: {
882
- label: string;
883
- fieldName: string;
884
- fieldType?: string;
885
- required?: boolean;
886
- category: 1 | 2 | 3 | 4;
887
- selectValues?: string | number | {
888
- name?: string;
889
- value?: string | number;
890
- disabled?: string;
891
- helpMsg?: string;
892
- children?: /*elided*/ any[];
893
- }[];
894
- defaultValues?: any;
895
- remark?: string;
896
- helpMsg?: string;
897
- configParams?: Array<any>;
898
- }[];
899
- actions: {
900
- actionIcon?: string;
901
- label: string;
902
- actionName: string;
903
- fieldType: string;
904
- funcCode?: Function | string;
905
- }[];
906
- preps: {
907
- label: string;
908
- fieldName: string;
909
- fieldType?: string;
910
- required?: boolean;
911
- category: 1 | 2 | 3 | 4;
912
- selectValues?: string | number | {
913
- name?: string;
914
- value?: string | number;
915
- disabled?: string;
916
- helpMsg?: string;
917
- children?: /*elided*/ any[];
918
- }[];
919
- defaultValues?: any;
920
- remark?: string;
921
- helpMsg?: string;
922
- configParams?: Array<any>;
923
- }[];
924
- }[]>;
925
- selfFormDataList: import('vue').Ref<{
926
- itemName: string;
927
- itemType: string;
928
- itemIcon: string;
929
- category: number;
930
- remark?: string;
931
- fields: {
932
- label: string;
933
- fieldName: string;
934
- fieldType?: string;
935
- required?: boolean;
936
- category: 1 | 2 | 3 | 4;
937
- selectValues?: string | number | {
938
- name?: string;
939
- value?: string | number;
940
- disabled?: string;
941
- helpMsg?: string;
942
- children?: /*elided*/ any[];
943
- }[];
944
- defaultValues?: any;
945
- remark?: string;
946
- helpMsg?: string;
947
- configParams?: Array<any>;
948
- }[];
949
- advancedFields: {
950
- label: string;
951
- fieldName: string;
952
- fieldType?: string;
953
- required?: boolean;
954
- category: 1 | 2 | 3 | 4;
955
- selectValues?: string | number | {
956
- name?: string;
957
- value?: string | number;
958
- disabled?: string;
959
- helpMsg?: string;
960
- children?: /*elided*/ any[];
961
- }[];
962
- defaultValues?: any;
963
- remark?: string;
964
- helpMsg?: string;
965
- configParams?: Array<any>;
966
- }[];
967
- selfFields: {
968
- label: string;
969
- fieldName: string;
970
- fieldType?: string;
971
- required?: boolean;
972
- category: 1 | 2 | 3 | 4;
973
- selectValues?: string | number | {
974
- name?: string;
975
- value?: string | number;
976
- disabled?: string;
977
- helpMsg?: string;
978
- children?: /*elided*/ any[];
979
- }[];
980
- defaultValues?: any;
981
- remark?: string;
982
- helpMsg?: string;
983
- configParams?: Array<any>;
984
- }[];
985
- actions: {
986
- actionIcon?: string;
987
- label: string;
988
- actionName: string;
989
- fieldType: string;
990
- funcCode?: Function | string;
991
- }[];
992
- preps: {
993
- label: string;
994
- fieldName: string;
995
- fieldType?: string;
996
- required?: boolean;
997
- category: 1 | 2 | 3 | 4;
998
- selectValues?: string | number | {
999
- name?: string;
1000
- value?: string | number;
1001
- disabled?: string;
1002
- helpMsg?: string;
1003
- children?: /*elided*/ any[];
1004
- }[];
1005
- defaultValues?: any;
1006
- remark?: string;
1007
- helpMsg?: string;
1008
- configParams?: Array<any>;
1009
- }[];
1010
- }[], CompType[] | {
1011
- itemName: string;
1012
- itemType: string;
1013
- itemIcon: string;
1014
- category: number;
1015
- remark?: string;
1016
- fields: {
1017
- label: string;
1018
- fieldName: string;
1019
- fieldType?: string;
1020
- required?: boolean;
1021
- category: 1 | 2 | 3 | 4;
1022
- selectValues?: string | number | {
1023
- name?: string;
1024
- value?: string | number;
1025
- disabled?: string;
1026
- helpMsg?: string;
1027
- children?: /*elided*/ any[];
1028
- }[];
1029
- defaultValues?: any;
1030
- remark?: string;
1031
- helpMsg?: string;
1032
- configParams?: Array<any>;
1033
- }[];
1034
- advancedFields: {
1035
- label: string;
1036
- fieldName: string;
1037
- fieldType?: string;
1038
- required?: boolean;
1039
- category: 1 | 2 | 3 | 4;
1040
- selectValues?: string | number | {
1041
- name?: string;
1042
- value?: string | number;
1043
- disabled?: string;
1044
- helpMsg?: string;
1045
- children?: /*elided*/ any[];
1046
- }[];
1047
- defaultValues?: any;
1048
- remark?: string;
1049
- helpMsg?: string;
1050
- configParams?: Array<any>;
1051
- }[];
1052
- selfFields: {
1053
- label: string;
1054
- fieldName: string;
1055
- fieldType?: string;
1056
- required?: boolean;
1057
- category: 1 | 2 | 3 | 4;
1058
- selectValues?: string | number | {
1059
- name?: string;
1060
- value?: string | number;
1061
- disabled?: string;
1062
- helpMsg?: string;
1063
- children?: /*elided*/ any[];
1064
- }[];
1065
- defaultValues?: any;
1066
- remark?: string;
1067
- helpMsg?: string;
1068
- configParams?: Array<any>;
1069
- }[];
1070
- actions: {
1071
- actionIcon?: string;
1072
- label: string;
1073
- actionName: string;
1074
- fieldType: string;
1075
- funcCode?: Function | string;
1076
- }[];
1077
- preps: {
1078
- label: string;
1079
- fieldName: string;
1080
- fieldType?: string;
1081
- required?: boolean;
1082
- category: 1 | 2 | 3 | 4;
1083
- selectValues?: string | number | {
1084
- name?: string;
1085
- value?: string | number;
1086
- disabled?: string;
1087
- helpMsg?: string;
1088
- children?: /*elided*/ any[];
1089
- }[];
1090
- defaultValues?: any;
1091
- remark?: string;
1092
- helpMsg?: string;
1093
- configParams?: Array<any>;
1094
- }[];
1095
- }[]>;
1096
- allFormDataList: import('vue').Ref<any[], any[]>;
1097
- currentCompCategory: import('vue').Ref<string, string>;
1098
- currentItemId: import('vue').Ref<string, string>;
1099
- parentCompType: import('vue').Ref<string, string>;
1100
- currentItemType: import('vue').Ref<string, string>;
1101
- currentFormPreps: import('vue').Ref<any, any>;
1102
- currentSubItemId: import('vue').Ref<string, string>;
1103
- currentSubItem: import('vue').Ref<Record<string, any>, Record<string, any>>;
1104
- isEdit: import('vue').Ref<boolean, boolean>;
1105
- isDragging: import('vue').Ref<boolean, boolean>;
1106
- currentComp: import('vue').ShallowRef<any, any>;
1107
- draggingItem: import('vue').Ref<any, any>;
1108
- refresh: import('vue').Ref<number, number>;
1109
- historyRecord: import('vue').Ref<any, any>;
1110
- componentVisible: import('vue').Ref<boolean, boolean>;
1111
- batchEditFieldVisible: import('vue').Ref<boolean, boolean>;
1112
- previewVisible: import('vue').Ref<boolean, boolean>;
1113
- shortKeyDisabled: import('vue').Ref<boolean, boolean>;
1114
- setCurrentSubTabName: (tabName: string) => void;
1115
- selectItemById: (itemId: string) => any;
1116
- setAllFormDataList: (list: CompType[]) => void;
1117
- setSelfFormDataList: (list: CompType[]) => void;
1118
- setFormDataList: (list: CompType[]) => void;
1119
- setContainerList: (list: CompType[]) => void;
1120
- setParentContainer: (item: any) => void;
1121
- getParentContainer: () => Record<string, any>;
1122
- getParentCompType: () => string;
1123
- addSelfFormDataList: (list: CompType[]) => void;
1124
- addContainerList: (list: CompType[]) => void;
1125
- addFormDataList: (list: CompType[]) => void;
1126
- addHistoryRecord: (reOrUnDoFlag: boolean) => void;
1127
- redo: () => void;
1128
- undo: () => void;
1129
- selectItem: (data: any, itemType: string, parentType: string) => void;
1130
- setRefresh: () => void;
1131
- setSubItem: (subItem: any) => void;
1132
- setFormInfo: (formData: any) => void;
1133
- setCompList: (comps: Array<any>) => void;
1134
- loadCompNames: () => any;
1135
- addComp: (comp: any) => void;
1136
- setIsDragging: (flag: boolean) => void;
1137
- setFormData: (data: any) => void;
1138
- setIsEdit: (editFlag: boolean) => void;
1139
- setCurrentComp: (currComp: object) => void;
1140
- setCurrentItemType: (currItemType: string) => void;
1141
- setParentCompType: (parentType: string) => void;
1142
- setCurrentItemId: (currItemId: string) => void;
1143
- setCurrentFormPreps: (currFormPreps: any) => void;
1144
- setDraggingItem: (dragItem: any) => void;
1145
- removePromise: () => void;
1146
- clearAll: (_initComp?: boolean) => void;
1147
- setComponentVisible: (visible: boolean) => void;
1148
- setBatchEditFieldVisible: (visible: boolean) => void;
1149
- setPreviewVisible: (visible: boolean) => void;
1150
- setShortKeyDisabled: (disabled: boolean) => void;
1151
- getFieldDataIndex: () => number;
1152
- getCurrentCompEditUserInfo: (compId: string) => UserInfo;
1153
- addCurrentCompEditUserInfo: (compId: string, userinfo: UserInfo) => void;
1154
- removeCurrentCompEditUserInfo: (compId: string) => void;
1155
- }, never>, Pick<{
1156
- formData: import('vue').Ref<any, any>;
1157
- formInfo: import('vue').Ref<any, any>;
1158
- compList: import('vue').Ref<any[], any[]>;
1159
- containerList: import('vue').Ref<{
1160
- itemName: string;
1161
- itemType: string;
1162
- itemIcon: string;
1163
- category: number;
1164
- remark?: string;
1165
- fields: {
1166
- label: string;
1167
- fieldName: string;
1168
- fieldType?: string;
1169
- required?: boolean;
1170
- category: 1 | 2 | 3 | 4;
1171
- selectValues?: string | number | {
1172
- name?: string;
1173
- value?: string | number;
1174
- disabled?: string;
1175
- helpMsg?: string;
1176
- children?: /*elided*/ any[];
1177
- }[];
1178
- defaultValues?: any;
1179
- remark?: string;
1180
- helpMsg?: string;
1181
- configParams?: Array<any>;
1182
- }[];
1183
- advancedFields: {
1184
- label: string;
1185
- fieldName: string;
1186
- fieldType?: string;
1187
- required?: boolean;
1188
- category: 1 | 2 | 3 | 4;
1189
- selectValues?: string | number | {
1190
- name?: string;
1191
- value?: string | number;
1192
- disabled?: string;
1193
- helpMsg?: string;
1194
- children?: /*elided*/ any[];
1195
- }[];
1196
- defaultValues?: any;
1197
- remark?: string;
1198
- helpMsg?: string;
1199
- configParams?: Array<any>;
1200
- }[];
1201
- selfFields: {
1202
- label: string;
1203
- fieldName: string;
1204
- fieldType?: string;
1205
- required?: boolean;
1206
- category: 1 | 2 | 3 | 4;
1207
- selectValues?: string | number | {
1208
- name?: string;
1209
- value?: string | number;
1210
- disabled?: string;
1211
- helpMsg?: string;
1212
- children?: /*elided*/ any[];
1213
- }[];
1214
- defaultValues?: any;
1215
- remark?: string;
1216
- helpMsg?: string;
1217
- configParams?: Array<any>;
1218
- }[];
1219
- actions: {
1220
- actionIcon?: string;
1221
- label: string;
1222
- actionName: string;
1223
- fieldType: string;
1224
- funcCode?: Function | string;
1225
- }[];
1226
- preps: {
1227
- label: string;
1228
- fieldName: string;
1229
- fieldType?: string;
1230
- required?: boolean;
1231
- category: 1 | 2 | 3 | 4;
1232
- selectValues?: string | number | {
1233
- name?: string;
1234
- value?: string | number;
1235
- disabled?: string;
1236
- helpMsg?: string;
1237
- children?: /*elided*/ any[];
1238
- }[];
1239
- defaultValues?: any;
1240
- remark?: string;
1241
- helpMsg?: string;
1242
- configParams?: Array<any>;
1243
- }[];
1244
- }[], CompType[] | {
1245
- itemName: string;
1246
- itemType: string;
1247
- itemIcon: string;
1248
- category: number;
1249
- remark?: string;
1250
- fields: {
1251
- label: string;
1252
- fieldName: string;
1253
- fieldType?: string;
1254
- required?: boolean;
1255
- category: 1 | 2 | 3 | 4;
1256
- selectValues?: string | number | {
1257
- name?: string;
1258
- value?: string | number;
1259
- disabled?: string;
1260
- helpMsg?: string;
1261
- children?: /*elided*/ any[];
1262
- }[];
1263
- defaultValues?: any;
1264
- remark?: string;
1265
- helpMsg?: string;
1266
- configParams?: Array<any>;
1267
- }[];
1268
- advancedFields: {
1269
- label: string;
1270
- fieldName: string;
1271
- fieldType?: string;
1272
- required?: boolean;
1273
- category: 1 | 2 | 3 | 4;
1274
- selectValues?: string | number | {
1275
- name?: string;
1276
- value?: string | number;
1277
- disabled?: string;
1278
- helpMsg?: string;
1279
- children?: /*elided*/ any[];
1280
- }[];
1281
- defaultValues?: any;
1282
- remark?: string;
1283
- helpMsg?: string;
1284
- configParams?: Array<any>;
1285
- }[];
1286
- selfFields: {
1287
- label: string;
1288
- fieldName: string;
1289
- fieldType?: string;
1290
- required?: boolean;
1291
- category: 1 | 2 | 3 | 4;
1292
- selectValues?: string | number | {
1293
- name?: string;
1294
- value?: string | number;
1295
- disabled?: string;
1296
- helpMsg?: string;
1297
- children?: /*elided*/ any[];
1298
- }[];
1299
- defaultValues?: any;
1300
- remark?: string;
1301
- helpMsg?: string;
1302
- configParams?: Array<any>;
1303
- }[];
1304
- actions: {
1305
- actionIcon?: string;
1306
- label: string;
1307
- actionName: string;
1308
- fieldType: string;
1309
- funcCode?: Function | string;
1310
- }[];
1311
- preps: {
1312
- label: string;
1313
- fieldName: string;
1314
- fieldType?: string;
1315
- required?: boolean;
1316
- category: 1 | 2 | 3 | 4;
1317
- selectValues?: string | number | {
1318
- name?: string;
1319
- value?: string | number;
1320
- disabled?: string;
1321
- helpMsg?: string;
1322
- children?: /*elided*/ any[];
1323
- }[];
1324
- defaultValues?: any;
1325
- remark?: string;
1326
- helpMsg?: string;
1327
- configParams?: Array<any>;
1328
- }[];
1329
- }[]>;
1330
- formDataList: import('vue').Ref<{
1331
- itemName: string;
1332
- itemType: string;
1333
- itemIcon: string;
1334
- category: number;
1335
- remark?: string;
1336
- fields: {
1337
- label: string;
1338
- fieldName: string;
1339
- fieldType?: string;
1340
- required?: boolean;
1341
- category: 1 | 2 | 3 | 4;
1342
- selectValues?: string | number | {
1343
- name?: string;
1344
- value?: string | number;
1345
- disabled?: string;
1346
- helpMsg?: string;
1347
- children?: /*elided*/ any[];
1348
- }[];
1349
- defaultValues?: any;
1350
- remark?: string;
1351
- helpMsg?: string;
1352
- configParams?: Array<any>;
1353
- }[];
1354
- advancedFields: {
1355
- label: string;
1356
- fieldName: string;
1357
- fieldType?: string;
1358
- required?: boolean;
1359
- category: 1 | 2 | 3 | 4;
1360
- selectValues?: string | number | {
1361
- name?: string;
1362
- value?: string | number;
1363
- disabled?: string;
1364
- helpMsg?: string;
1365
- children?: /*elided*/ any[];
1366
- }[];
1367
- defaultValues?: any;
1368
- remark?: string;
1369
- helpMsg?: string;
1370
- configParams?: Array<any>;
1371
- }[];
1372
- selfFields: {
1373
- label: string;
1374
- fieldName: string;
1375
- fieldType?: string;
1376
- required?: boolean;
1377
- category: 1 | 2 | 3 | 4;
1378
- selectValues?: string | number | {
1379
- name?: string;
1380
- value?: string | number;
1381
- disabled?: string;
1382
- helpMsg?: string;
1383
- children?: /*elided*/ any[];
1384
- }[];
1385
- defaultValues?: any;
1386
- remark?: string;
1387
- helpMsg?: string;
1388
- configParams?: Array<any>;
1389
- }[];
1390
- actions: {
1391
- actionIcon?: string;
1392
- label: string;
1393
- actionName: string;
1394
- fieldType: string;
1395
- funcCode?: Function | string;
1396
- }[];
1397
- preps: {
1398
- label: string;
1399
- fieldName: string;
1400
- fieldType?: string;
1401
- required?: boolean;
1402
- category: 1 | 2 | 3 | 4;
1403
- selectValues?: string | number | {
1404
- name?: string;
1405
- value?: string | number;
1406
- disabled?: string;
1407
- helpMsg?: string;
1408
- children?: /*elided*/ any[];
1409
- }[];
1410
- defaultValues?: any;
1411
- remark?: string;
1412
- helpMsg?: string;
1413
- configParams?: Array<any>;
1414
- }[];
1415
- }[], CompType[] | {
1416
- itemName: string;
1417
- itemType: string;
1418
- itemIcon: string;
1419
- category: number;
1420
- remark?: string;
1421
- fields: {
1422
- label: string;
1423
- fieldName: string;
1424
- fieldType?: string;
1425
- required?: boolean;
1426
- category: 1 | 2 | 3 | 4;
1427
- selectValues?: string | number | {
1428
- name?: string;
1429
- value?: string | number;
1430
- disabled?: string;
1431
- helpMsg?: string;
1432
- children?: /*elided*/ any[];
1433
- }[];
1434
- defaultValues?: any;
1435
- remark?: string;
1436
- helpMsg?: string;
1437
- configParams?: Array<any>;
1438
- }[];
1439
- advancedFields: {
1440
- label: string;
1441
- fieldName: string;
1442
- fieldType?: string;
1443
- required?: boolean;
1444
- category: 1 | 2 | 3 | 4;
1445
- selectValues?: string | number | {
1446
- name?: string;
1447
- value?: string | number;
1448
- disabled?: string;
1449
- helpMsg?: string;
1450
- children?: /*elided*/ any[];
1451
- }[];
1452
- defaultValues?: any;
1453
- remark?: string;
1454
- helpMsg?: string;
1455
- configParams?: Array<any>;
1456
- }[];
1457
- selfFields: {
1458
- label: string;
1459
- fieldName: string;
1460
- fieldType?: string;
1461
- required?: boolean;
1462
- category: 1 | 2 | 3 | 4;
1463
- selectValues?: string | number | {
1464
- name?: string;
1465
- value?: string | number;
1466
- disabled?: string;
1467
- helpMsg?: string;
1468
- children?: /*elided*/ any[];
1469
- }[];
1470
- defaultValues?: any;
1471
- remark?: string;
1472
- helpMsg?: string;
1473
- configParams?: Array<any>;
1474
- }[];
1475
- actions: {
1476
- actionIcon?: string;
1477
- label: string;
1478
- actionName: string;
1479
- fieldType: string;
1480
- funcCode?: Function | string;
1481
- }[];
1482
- preps: {
1483
- label: string;
1484
- fieldName: string;
1485
- fieldType?: string;
1486
- required?: boolean;
1487
- category: 1 | 2 | 3 | 4;
1488
- selectValues?: string | number | {
1489
- name?: string;
1490
- value?: string | number;
1491
- disabled?: string;
1492
- helpMsg?: string;
1493
- children?: /*elided*/ any[];
1494
- }[];
1495
- defaultValues?: any;
1496
- remark?: string;
1497
- helpMsg?: string;
1498
- configParams?: Array<any>;
1499
- }[];
1500
- }[]>;
1501
- selfFormDataList: import('vue').Ref<{
1502
- itemName: string;
1503
- itemType: string;
1504
- itemIcon: string;
1505
- category: number;
1506
- remark?: string;
1507
- fields: {
1508
- label: string;
1509
- fieldName: string;
1510
- fieldType?: string;
1511
- required?: boolean;
1512
- category: 1 | 2 | 3 | 4;
1513
- selectValues?: string | number | {
1514
- name?: string;
1515
- value?: string | number;
1516
- disabled?: string;
1517
- helpMsg?: string;
1518
- children?: /*elided*/ any[];
1519
- }[];
1520
- defaultValues?: any;
1521
- remark?: string;
1522
- helpMsg?: string;
1523
- configParams?: Array<any>;
1524
- }[];
1525
- advancedFields: {
1526
- label: string;
1527
- fieldName: string;
1528
- fieldType?: string;
1529
- required?: boolean;
1530
- category: 1 | 2 | 3 | 4;
1531
- selectValues?: string | number | {
1532
- name?: string;
1533
- value?: string | number;
1534
- disabled?: string;
1535
- helpMsg?: string;
1536
- children?: /*elided*/ any[];
1537
- }[];
1538
- defaultValues?: any;
1539
- remark?: string;
1540
- helpMsg?: string;
1541
- configParams?: Array<any>;
1542
- }[];
1543
- selfFields: {
1544
- label: string;
1545
- fieldName: string;
1546
- fieldType?: string;
1547
- required?: boolean;
1548
- category: 1 | 2 | 3 | 4;
1549
- selectValues?: string | number | {
1550
- name?: string;
1551
- value?: string | number;
1552
- disabled?: string;
1553
- helpMsg?: string;
1554
- children?: /*elided*/ any[];
1555
- }[];
1556
- defaultValues?: any;
1557
- remark?: string;
1558
- helpMsg?: string;
1559
- configParams?: Array<any>;
1560
- }[];
1561
- actions: {
1562
- actionIcon?: string;
1563
- label: string;
1564
- actionName: string;
1565
- fieldType: string;
1566
- funcCode?: Function | string;
1567
- }[];
1568
- preps: {
1569
- label: string;
1570
- fieldName: string;
1571
- fieldType?: string;
1572
- required?: boolean;
1573
- category: 1 | 2 | 3 | 4;
1574
- selectValues?: string | number | {
1575
- name?: string;
1576
- value?: string | number;
1577
- disabled?: string;
1578
- helpMsg?: string;
1579
- children?: /*elided*/ any[];
1580
- }[];
1581
- defaultValues?: any;
1582
- remark?: string;
1583
- helpMsg?: string;
1584
- configParams?: Array<any>;
1585
- }[];
1586
- }[], CompType[] | {
1587
- itemName: string;
1588
- itemType: string;
1589
- itemIcon: string;
1590
- category: number;
1591
- remark?: string;
1592
- fields: {
1593
- label: string;
1594
- fieldName: string;
1595
- fieldType?: string;
1596
- required?: boolean;
1597
- category: 1 | 2 | 3 | 4;
1598
- selectValues?: string | number | {
1599
- name?: string;
1600
- value?: string | number;
1601
- disabled?: string;
1602
- helpMsg?: string;
1603
- children?: /*elided*/ any[];
1604
- }[];
1605
- defaultValues?: any;
1606
- remark?: string;
1607
- helpMsg?: string;
1608
- configParams?: Array<any>;
1609
- }[];
1610
- advancedFields: {
1611
- label: string;
1612
- fieldName: string;
1613
- fieldType?: string;
1614
- required?: boolean;
1615
- category: 1 | 2 | 3 | 4;
1616
- selectValues?: string | number | {
1617
- name?: string;
1618
- value?: string | number;
1619
- disabled?: string;
1620
- helpMsg?: string;
1621
- children?: /*elided*/ any[];
1622
- }[];
1623
- defaultValues?: any;
1624
- remark?: string;
1625
- helpMsg?: string;
1626
- configParams?: Array<any>;
1627
- }[];
1628
- selfFields: {
1629
- label: string;
1630
- fieldName: string;
1631
- fieldType?: string;
1632
- required?: boolean;
1633
- category: 1 | 2 | 3 | 4;
1634
- selectValues?: string | number | {
1635
- name?: string;
1636
- value?: string | number;
1637
- disabled?: string;
1638
- helpMsg?: string;
1639
- children?: /*elided*/ any[];
1640
- }[];
1641
- defaultValues?: any;
1642
- remark?: string;
1643
- helpMsg?: string;
1644
- configParams?: Array<any>;
1645
- }[];
1646
- actions: {
1647
- actionIcon?: string;
1648
- label: string;
1649
- actionName: string;
1650
- fieldType: string;
1651
- funcCode?: Function | string;
1652
- }[];
1653
- preps: {
1654
- label: string;
1655
- fieldName: string;
1656
- fieldType?: string;
1657
- required?: boolean;
1658
- category: 1 | 2 | 3 | 4;
1659
- selectValues?: string | number | {
1660
- name?: string;
1661
- value?: string | number;
1662
- disabled?: string;
1663
- helpMsg?: string;
1664
- children?: /*elided*/ any[];
1665
- }[];
1666
- defaultValues?: any;
1667
- remark?: string;
1668
- helpMsg?: string;
1669
- configParams?: Array<any>;
1670
- }[];
1671
- }[]>;
1672
- allFormDataList: import('vue').Ref<any[], any[]>;
1673
- currentCompCategory: import('vue').Ref<string, string>;
1674
- currentItemId: import('vue').Ref<string, string>;
1675
- parentCompType: import('vue').Ref<string, string>;
1676
- currentItemType: import('vue').Ref<string, string>;
1677
- currentFormPreps: import('vue').Ref<any, any>;
1678
- currentSubItemId: import('vue').Ref<string, string>;
1679
- currentSubItem: import('vue').Ref<Record<string, any>, Record<string, any>>;
1680
- isEdit: import('vue').Ref<boolean, boolean>;
1681
- isDragging: import('vue').Ref<boolean, boolean>;
1682
- currentComp: import('vue').ShallowRef<any, any>;
1683
- draggingItem: import('vue').Ref<any, any>;
1684
- refresh: import('vue').Ref<number, number>;
1685
- historyRecord: import('vue').Ref<any, any>;
1686
- componentVisible: import('vue').Ref<boolean, boolean>;
1687
- batchEditFieldVisible: import('vue').Ref<boolean, boolean>;
1688
- previewVisible: import('vue').Ref<boolean, boolean>;
1689
- shortKeyDisabled: import('vue').Ref<boolean, boolean>;
1690
- setCurrentSubTabName: (tabName: string) => void;
1691
- selectItemById: (itemId: string) => any;
1692
- setAllFormDataList: (list: CompType[]) => void;
1693
- setSelfFormDataList: (list: CompType[]) => void;
1694
- setFormDataList: (list: CompType[]) => void;
1695
- setContainerList: (list: CompType[]) => void;
1696
- setParentContainer: (item: any) => void;
1697
- getParentContainer: () => Record<string, any>;
1698
- getParentCompType: () => string;
1699
- addSelfFormDataList: (list: CompType[]) => void;
1700
- addContainerList: (list: CompType[]) => void;
1701
- addFormDataList: (list: CompType[]) => void;
1702
- addHistoryRecord: (reOrUnDoFlag: boolean) => void;
1703
- redo: () => void;
1704
- undo: () => void;
1705
- selectItem: (data: any, itemType: string, parentType: string) => void;
1706
- setRefresh: () => void;
1707
- setSubItem: (subItem: any) => void;
1708
- setFormInfo: (formData: any) => void;
1709
- setCompList: (comps: Array<any>) => void;
1710
- loadCompNames: () => any;
1711
- addComp: (comp: any) => void;
1712
- setIsDragging: (flag: boolean) => void;
1713
- setFormData: (data: any) => void;
1714
- setIsEdit: (editFlag: boolean) => void;
1715
- setCurrentComp: (currComp: object) => void;
1716
- setCurrentItemType: (currItemType: string) => void;
1717
- setParentCompType: (parentType: string) => void;
1718
- setCurrentItemId: (currItemId: string) => void;
1719
- setCurrentFormPreps: (currFormPreps: any) => void;
1720
- setDraggingItem: (dragItem: any) => void;
1721
- removePromise: () => void;
1722
- clearAll: (_initComp?: boolean) => void;
1723
- setComponentVisible: (visible: boolean) => void;
1724
- setBatchEditFieldVisible: (visible: boolean) => void;
1725
- setPreviewVisible: (visible: boolean) => void;
1726
- setShortKeyDisabled: (disabled: boolean) => void;
1727
- getFieldDataIndex: () => number;
1728
- getCurrentCompEditUserInfo: (compId: string) => UserInfo;
1729
- addCurrentCompEditUserInfo: (compId: string, userinfo: UserInfo) => void;
1730
- removeCurrentCompEditUserInfo: (compId: string) => void;
1731
- }, "setFormData" | "clearAll" | "setIsEdit" | "setParentContainer" | "setCurrentSubTabName" | "selectItemById" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "getParentContainer" | "getParentCompType" | "addSelfFormDataList" | "addContainerList" | "addFormDataList" | "addHistoryRecord" | "redo" | "undo" | "selectItem" | "setRefresh" | "setSubItem" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "setCurrentComp" | "setCurrentItemType" | "setParentCompType" | "setCurrentItemId" | "setCurrentFormPreps" | "setDraggingItem" | "removePromise" | "setComponentVisible" | "setBatchEditFieldVisible" | "setPreviewVisible" | "setShortKeyDisabled" | "getFieldDataIndex" | "getCurrentCompEditUserInfo" | "addCurrentCompEditUserInfo" | "removeCurrentCompEditUserInfo">>;
579
+ }>;