command-center-v3-common 0.0.33 → 0.0.35
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/command-center-v3-common-CRe6unVi.js +50819 -0
- package/dist/command-center-v3-common.js +18 -49874
- package/dist/command-center-v3-common.umd.cjs +40 -40
- package/dist/hy-test-CuhN1ahe.js +65 -0
- package/dist/index.d.ts +422 -43
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -7,6 +7,10 @@ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
7
7
|
|
8
8
|
declare type __VLS_NonUndefinedable_10<T> = T extends undefined ? never : T;
|
9
9
|
|
10
|
+
declare type __VLS_NonUndefinedable_11<T> = T extends undefined ? never : T;
|
11
|
+
|
12
|
+
declare type __VLS_NonUndefinedable_12<T> = T extends undefined ? never : T;
|
13
|
+
|
10
14
|
declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
11
15
|
|
12
16
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
@@ -31,6 +35,14 @@ declare type __VLS_Prettify_10<T> = {
|
|
31
35
|
[K in keyof T]: T[K];
|
32
36
|
} & {};
|
33
37
|
|
38
|
+
declare type __VLS_Prettify_11<T> = {
|
39
|
+
[K in keyof T]: T[K];
|
40
|
+
} & {};
|
41
|
+
|
42
|
+
declare type __VLS_Prettify_12<T> = {
|
43
|
+
[K in keyof T]: T[K];
|
44
|
+
} & {};
|
45
|
+
|
34
46
|
declare type __VLS_Prettify_2<T> = {
|
35
47
|
[K in keyof T]: T[K];
|
36
48
|
} & {};
|
@@ -81,6 +93,24 @@ declare type __VLS_TypePropsToRuntimeProps_10<T> = {
|
|
81
93
|
};
|
82
94
|
};
|
83
95
|
|
96
|
+
declare type __VLS_TypePropsToRuntimeProps_11<T> = {
|
97
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
98
|
+
type: PropType_2<__VLS_NonUndefinedable_11<T[K]>>;
|
99
|
+
} : {
|
100
|
+
type: PropType_2<T[K]>;
|
101
|
+
required: true;
|
102
|
+
};
|
103
|
+
};
|
104
|
+
|
105
|
+
declare type __VLS_TypePropsToRuntimeProps_12<T> = {
|
106
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
107
|
+
type: PropType_2<__VLS_NonUndefinedable_12<T[K]>>;
|
108
|
+
} : {
|
109
|
+
type: PropType_2<T[K]>;
|
110
|
+
required: true;
|
111
|
+
};
|
112
|
+
};
|
113
|
+
|
84
114
|
declare type __VLS_TypePropsToRuntimeProps_2<T> = {
|
85
115
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
86
116
|
type: PropType_2<__VLS_NonUndefinedable_2<T[K]>>;
|
@@ -165,6 +195,18 @@ declare type __VLS_WithDefaults_10<P, D> = {
|
|
165
195
|
}> : P[K];
|
166
196
|
};
|
167
197
|
|
198
|
+
declare type __VLS_WithDefaults_11<P, D> = {
|
199
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_11<P[K] & {
|
200
|
+
default: D[K];
|
201
|
+
}> : P[K];
|
202
|
+
};
|
203
|
+
|
204
|
+
declare type __VLS_WithDefaults_12<P, D> = {
|
205
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_12<P[K] & {
|
206
|
+
default: D[K];
|
207
|
+
}> : P[K];
|
208
|
+
};
|
209
|
+
|
168
210
|
declare type __VLS_WithDefaults_2<P, D> = {
|
169
211
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_2<P[K] & {
|
170
212
|
default: D[K];
|
@@ -243,6 +285,18 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
243
285
|
};
|
244
286
|
};
|
245
287
|
|
288
|
+
declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
289
|
+
new (): {
|
290
|
+
$slots: S;
|
291
|
+
};
|
292
|
+
};
|
293
|
+
|
294
|
+
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
295
|
+
new (): {
|
296
|
+
$slots: S;
|
297
|
+
};
|
298
|
+
};
|
299
|
+
|
246
300
|
declare interface BoxBorderProps {
|
247
301
|
[key: string]: any;
|
248
302
|
prefix?: string;
|
@@ -724,6 +778,11 @@ declare function getTableList(): {
|
|
724
778
|
|
725
779
|
declare function getTotalElements(): number;
|
726
780
|
|
781
|
+
declare interface GroupTreeProps {
|
782
|
+
hideGroup?: boolean;
|
783
|
+
hideDevice?: boolean;
|
784
|
+
}
|
785
|
+
|
727
786
|
declare function handleCurrentChange(page?: number): void;
|
728
787
|
|
729
788
|
export declare const HyAddDepartmentType: DefineComponent< {}, {
|
@@ -734,7 +793,7 @@ show: (row?: OrgType) => void;
|
|
734
793
|
"onOn-submit"?: (...args: any[]) => any;
|
735
794
|
}, {}, {}>;
|
736
795
|
|
737
|
-
export declare const HyBoxBorder:
|
796
|
+
export declare const HyBoxBorder: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BoxBorderProps>, {
|
738
797
|
prefix: string;
|
739
798
|
name: string;
|
740
799
|
className: string;
|
@@ -742,7 +801,7 @@ color: string;
|
|
742
801
|
width: string;
|
743
802
|
height: string;
|
744
803
|
zIndex: number;
|
745
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
804
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BoxBorderProps>, {
|
746
805
|
prefix: string;
|
747
806
|
name: string;
|
748
807
|
className: string;
|
@@ -754,11 +813,11 @@ zIndex: number;
|
|
754
813
|
content?(_: {}): any;
|
755
814
|
}>;
|
756
815
|
|
757
|
-
export declare const HyDataTimeShortcuts: DefineComponent<
|
816
|
+
export declare const HyDataTimeShortcuts: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_12<Props_6>, {
|
758
817
|
optionList: () => any[];
|
759
818
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
760
819
|
change: (params: RequestParams) => void;
|
761
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
820
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_12<Props_6>, {
|
762
821
|
optionList: () => any[];
|
763
822
|
}>>> & {
|
764
823
|
onChange?: (params: RequestParams) => any;
|
@@ -774,14 +833,14 @@ onShowViewer: typeof onShowViewer;
|
|
774
833
|
imageViewerClose: typeof imageViewerClose;
|
775
834
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>;
|
776
835
|
|
777
|
-
export declare const HyMenuComponents: DefineComponent<
|
836
|
+
export declare const HyMenuComponents: DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_11<Props_5>, {
|
778
837
|
menuList: () => any[];
|
779
838
|
menuTitle: string;
|
780
839
|
}>, {
|
781
840
|
setRouterPath: typeof setRouterPath;
|
782
841
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
783
842
|
onChange: (...args: any[]) => void;
|
784
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
843
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_11<Props_5>, {
|
785
844
|
menuList: () => any[];
|
786
845
|
menuTitle: string;
|
787
846
|
}>>> & {
|
@@ -791,7 +850,7 @@ menuList: MenuListItem[];
|
|
791
850
|
menuTitle: string;
|
792
851
|
}, {}>;
|
793
852
|
|
794
|
-
export declare const HyOrgCascader:
|
853
|
+
export declare const HyOrgCascader: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<Props_4>, {
|
795
854
|
size: string;
|
796
855
|
className: string;
|
797
856
|
placeholder: string;
|
@@ -802,7 +861,7 @@ setDefaultValue: (organizationId: any) => void;
|
|
802
861
|
getData: () => Promise<void>;
|
803
862
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
804
863
|
change: (...args: any[]) => void;
|
805
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
864
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<Props_4>, {
|
806
865
|
size: string;
|
807
866
|
className: string;
|
808
867
|
placeholder: string;
|
@@ -813,14 +872,14 @@ onChange?: (...args: any[]) => any;
|
|
813
872
|
}, {
|
814
873
|
className: string;
|
815
874
|
size: string;
|
816
|
-
placeholder: string;
|
817
875
|
disabled: boolean;
|
876
|
+
placeholder: string;
|
818
877
|
contentType: boolean;
|
819
878
|
}, {}>, {
|
820
879
|
default?(_: {}): any;
|
821
880
|
}>;
|
822
881
|
|
823
|
-
export declare const HyRoundButton: DefineComponent<
|
882
|
+
export declare const HyRoundButton: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<RoundButton>, {
|
824
883
|
name: string;
|
825
884
|
className: string;
|
826
885
|
color: string;
|
@@ -829,7 +888,7 @@ height: string;
|
|
829
888
|
tips: string;
|
830
889
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
831
890
|
click: (...args: any[]) => void;
|
832
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
891
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<RoundButton>, {
|
833
892
|
name: string;
|
834
893
|
className: string;
|
835
894
|
color: string;
|
@@ -840,7 +899,7 @@ tips: string;
|
|
840
899
|
onClick?: (...args: any[]) => any;
|
841
900
|
}, {}, {}>;
|
842
901
|
|
843
|
-
export declare const HySelect: DefineComponent<
|
902
|
+
export declare const HySelect: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<Props_3>, {
|
844
903
|
modelValue: string;
|
845
904
|
requestParams: {};
|
846
905
|
controller: string;
|
@@ -863,7 +922,7 @@ change: (...args: any[]) => void;
|
|
863
922
|
visibleChange: (...args: any[]) => void;
|
864
923
|
"update:modelValue": (...args: any[]) => void;
|
865
924
|
"on-changeSelectItem": (...args: any[]) => void;
|
866
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
925
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<Props_3>, {
|
867
926
|
modelValue: string;
|
868
927
|
requestParams: {};
|
869
928
|
controller: string;
|
@@ -888,24 +947,25 @@ onVisibleChange?: (...args: any[]) => any;
|
|
888
947
|
size: string;
|
889
948
|
optionLabel: string;
|
890
949
|
optionValue: string;
|
950
|
+
placeholder: string;
|
891
951
|
modelValue: any;
|
952
|
+
clearable: boolean;
|
953
|
+
selectedDataList: any[];
|
892
954
|
requestParams: any;
|
893
955
|
controller: string;
|
894
956
|
filterDataList: any[];
|
895
957
|
customDataList: any[];
|
896
|
-
selectedDataList: any[];
|
897
958
|
requestimmediately: boolean;
|
898
|
-
clearable: boolean;
|
899
959
|
multiple: boolean;
|
900
|
-
placeholder: string;
|
901
960
|
}, {}>;
|
902
961
|
|
903
|
-
export declare const HySelectDevice:
|
962
|
+
export declare const HySelectDevice: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TreeCpnsProps & TreeProps & Props>, {
|
963
|
+
fuzzySearch: boolean;
|
904
964
|
highlightSelected: boolean;
|
905
965
|
getData: FunctionConstructor;
|
906
966
|
itemSize: number;
|
907
967
|
hideDevice: boolean;
|
908
|
-
|
968
|
+
hideOrgNoData: boolean;
|
909
969
|
defaultGetData: boolean;
|
910
970
|
showOnlineOnly: boolean;
|
911
971
|
checkStrictly: boolean;
|
@@ -914,24 +974,25 @@ parentCheckbox: boolean;
|
|
914
974
|
showRadio: boolean;
|
915
975
|
showCheckboxButton: boolean;
|
916
976
|
showRadioButton: boolean;
|
917
|
-
|
918
|
-
|
977
|
+
defaultCheckedList: () => any[];
|
978
|
+
disableDataList: () => any[];
|
919
979
|
returnDisableDevice: boolean;
|
920
980
|
}>, {
|
921
981
|
setCheckedKeys: (keys: string[]) => void;
|
922
982
|
setSelectedList: (dataList: any[]) => void;
|
923
983
|
setChecked: (item: any, type: boolean) => void;
|
924
984
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
985
|
+
onCurrentDepartment: (...args: any[]) => void;
|
925
986
|
onCurrent: (...args: any[]) => void;
|
926
987
|
onCurrentDelete: (...args: any[]) => void;
|
927
988
|
onSelectedData: (...args: any[]) => void;
|
928
|
-
|
929
|
-
|
989
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TreeCpnsProps & TreeProps & Props>, {
|
990
|
+
fuzzySearch: boolean;
|
930
991
|
highlightSelected: boolean;
|
931
992
|
getData: FunctionConstructor;
|
932
993
|
itemSize: number;
|
933
994
|
hideDevice: boolean;
|
934
|
-
|
995
|
+
hideOrgNoData: boolean;
|
935
996
|
defaultGetData: boolean;
|
936
997
|
showOnlineOnly: boolean;
|
937
998
|
checkStrictly: boolean;
|
@@ -940,43 +1001,201 @@ parentCheckbox: boolean;
|
|
940
1001
|
showRadio: boolean;
|
941
1002
|
showCheckboxButton: boolean;
|
942
1003
|
showRadioButton: boolean;
|
943
|
-
|
944
|
-
|
1004
|
+
defaultCheckedList: () => any[];
|
1005
|
+
disableDataList: () => any[];
|
945
1006
|
returnDisableDevice: boolean;
|
946
1007
|
}>>> & {
|
1008
|
+
onOnCurrentDepartment?: (...args: any[]) => any;
|
947
1009
|
onOnCurrent?: (...args: any[]) => any;
|
948
1010
|
onOnCurrentDelete?: (...args: any[]) => any;
|
949
1011
|
onOnSelectedData?: (...args: any[]) => any;
|
950
|
-
onOnCurrentDepartment?: (...args: any[]) => any;
|
951
1012
|
}, {
|
1013
|
+
hideDevice: boolean;
|
1014
|
+
hideOrgNoData: boolean;
|
1015
|
+
showOnlineOnly: boolean;
|
1016
|
+
itemSize: number;
|
1017
|
+
defaultCheckedList: any[];
|
1018
|
+
highlightSelected: boolean;
|
1019
|
+
checkStrictly: boolean;
|
1020
|
+
showCheckbox: boolean;
|
1021
|
+
parentCheckbox: boolean;
|
1022
|
+
showRadio: boolean;
|
1023
|
+
showRadioButton: boolean;
|
1024
|
+
showCheckboxButton: boolean;
|
1025
|
+
fuzzySearch: boolean;
|
952
1026
|
getData: () => any;
|
953
1027
|
defaultGetData: boolean;
|
1028
|
+
disableDataList: Device[];
|
1029
|
+
returnDisableDevice: boolean;
|
1030
|
+
}, {}>, {
|
1031
|
+
"below-the-input"?(_: {}): any;
|
1032
|
+
"check-content"?(_: {
|
1033
|
+
row: any;
|
1034
|
+
}): any;
|
1035
|
+
"other-content"?(_: {
|
1036
|
+
row: any;
|
1037
|
+
}): any;
|
1038
|
+
}>;
|
1039
|
+
|
1040
|
+
export declare const HySelectOrgGroup: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<TreeCpnsProps & TreeProps & GroupTreeProps>, {
|
1041
|
+
fuzzySearch: boolean;
|
1042
|
+
highlightSelected: boolean;
|
1043
|
+
getData: FunctionConstructor;
|
1044
|
+
itemSize: number;
|
1045
|
+
hideDevice: boolean;
|
1046
|
+
hideGroup: boolean;
|
1047
|
+
hideOrgNoData: boolean;
|
1048
|
+
defaultGetData: boolean;
|
1049
|
+
showOnlineOnly: boolean;
|
1050
|
+
checkStrictly: boolean;
|
1051
|
+
showCheckbox: boolean;
|
1052
|
+
parentCheckbox: boolean;
|
1053
|
+
showRadio: boolean;
|
1054
|
+
showCheckboxButton: boolean;
|
1055
|
+
showRadioButton: boolean;
|
1056
|
+
defaultCheckedList: () => any[];
|
1057
|
+
returnDisableDevice: boolean;
|
1058
|
+
}>, {
|
1059
|
+
setCheckedKeys: (keys: string[]) => void;
|
1060
|
+
setSelectedList: (dataList: any[]) => void;
|
1061
|
+
setChecked: (item: any, type: boolean) => void;
|
1062
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
1063
|
+
onCurrentDepartment: (...args: any[]) => void;
|
1064
|
+
onCurrent: (...args: any[]) => void;
|
1065
|
+
onCurrentDelete: (...args: any[]) => void;
|
1066
|
+
onSelectedData: (...args: any[]) => void;
|
1067
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<TreeCpnsProps & TreeProps & GroupTreeProps>, {
|
1068
|
+
fuzzySearch: boolean;
|
1069
|
+
highlightSelected: boolean;
|
1070
|
+
getData: FunctionConstructor;
|
1071
|
+
itemSize: number;
|
1072
|
+
hideDevice: boolean;
|
1073
|
+
hideGroup: boolean;
|
1074
|
+
hideOrgNoData: boolean;
|
1075
|
+
defaultGetData: boolean;
|
1076
|
+
showOnlineOnly: boolean;
|
954
1077
|
checkStrictly: boolean;
|
1078
|
+
showCheckbox: boolean;
|
1079
|
+
parentCheckbox: boolean;
|
1080
|
+
showRadio: boolean;
|
1081
|
+
showCheckboxButton: boolean;
|
1082
|
+
showRadioButton: boolean;
|
1083
|
+
defaultCheckedList: () => any[];
|
1084
|
+
returnDisableDevice: boolean;
|
1085
|
+
}>>> & {
|
1086
|
+
onOnCurrentDepartment?: (...args: any[]) => any;
|
1087
|
+
onOnCurrent?: (...args: any[]) => any;
|
1088
|
+
onOnCurrentDelete?: (...args: any[]) => any;
|
1089
|
+
onOnSelectedData?: (...args: any[]) => any;
|
1090
|
+
}, {
|
1091
|
+
hideDevice: boolean;
|
1092
|
+
hideOrgNoData: boolean;
|
1093
|
+
hideGroup: boolean;
|
955
1094
|
itemSize: number;
|
956
|
-
|
1095
|
+
defaultCheckedList: any[];
|
957
1096
|
highlightSelected: boolean;
|
1097
|
+
checkStrictly: boolean;
|
958
1098
|
showCheckbox: boolean;
|
959
1099
|
parentCheckbox: boolean;
|
960
1100
|
showRadio: boolean;
|
961
1101
|
showRadioButton: boolean;
|
962
1102
|
showCheckboxButton: boolean;
|
1103
|
+
fuzzySearch: boolean;
|
1104
|
+
getData: () => any;
|
1105
|
+
defaultGetData: boolean;
|
1106
|
+
}, {}>, {
|
1107
|
+
"below-the-input"?(_: {}): any;
|
1108
|
+
"check-content"?(_: {
|
1109
|
+
row: any;
|
1110
|
+
}): any;
|
1111
|
+
"other-content"?(_: {
|
1112
|
+
row: any;
|
1113
|
+
}): any;
|
1114
|
+
}>;
|
1115
|
+
|
1116
|
+
export declare const HySelectUser: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<TreeCpnsProps & TreeProps & Props_2>, {
|
1117
|
+
fuzzySearch: boolean;
|
1118
|
+
highlightSelected: boolean;
|
1119
|
+
getData: FunctionConstructor;
|
1120
|
+
itemSize: number;
|
963
1121
|
hideDevice: boolean;
|
964
|
-
|
1122
|
+
hideOrgNoData: boolean;
|
1123
|
+
defaultGetData: boolean;
|
965
1124
|
showOnlineOnly: boolean;
|
966
|
-
|
1125
|
+
checkStrictly: boolean;
|
1126
|
+
showCheckbox: boolean;
|
1127
|
+
parentCheckbox: boolean;
|
1128
|
+
showRadio: boolean;
|
1129
|
+
showCheckboxButton: boolean;
|
1130
|
+
showRadioButton: boolean;
|
1131
|
+
defaultCheckedList: () => any[];
|
967
1132
|
returnDisableDevice: boolean;
|
1133
|
+
disableDataList: () => any[];
|
1134
|
+
}>, {
|
1135
|
+
setCheckedKeys: (keys: string[]) => void;
|
1136
|
+
setSelectedList: (dataList: any[]) => void;
|
1137
|
+
setChecked: (item: any, type: boolean) => void;
|
1138
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
1139
|
+
onCurrentDepartment: (...args: any[]) => void;
|
1140
|
+
onCurrent: (...args: any[]) => void;
|
1141
|
+
onCurrentDelete: (...args: any[]) => void;
|
1142
|
+
onSelectedData: (...args: any[]) => void;
|
1143
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<TreeCpnsProps & TreeProps & Props_2>, {
|
1144
|
+
fuzzySearch: boolean;
|
1145
|
+
highlightSelected: boolean;
|
1146
|
+
getData: FunctionConstructor;
|
1147
|
+
itemSize: number;
|
1148
|
+
hideDevice: boolean;
|
1149
|
+
hideOrgNoData: boolean;
|
1150
|
+
defaultGetData: boolean;
|
1151
|
+
showOnlineOnly: boolean;
|
1152
|
+
checkStrictly: boolean;
|
1153
|
+
showCheckbox: boolean;
|
1154
|
+
parentCheckbox: boolean;
|
1155
|
+
showRadio: boolean;
|
1156
|
+
showCheckboxButton: boolean;
|
1157
|
+
showRadioButton: boolean;
|
1158
|
+
defaultCheckedList: () => any[];
|
1159
|
+
returnDisableDevice: boolean;
|
1160
|
+
disableDataList: () => any[];
|
1161
|
+
}>>> & {
|
1162
|
+
onOnCurrentDepartment?: (...args: any[]) => any;
|
1163
|
+
onOnCurrent?: (...args: any[]) => any;
|
1164
|
+
onOnCurrentDelete?: (...args: any[]) => any;
|
1165
|
+
onOnSelectedData?: (...args: any[]) => any;
|
1166
|
+
}, {
|
1167
|
+
hideOrgNoData: boolean;
|
1168
|
+
itemSize: number;
|
1169
|
+
defaultCheckedList: any[];
|
1170
|
+
highlightSelected: boolean;
|
1171
|
+
checkStrictly: boolean;
|
1172
|
+
showCheckbox: boolean;
|
1173
|
+
parentCheckbox: boolean;
|
1174
|
+
showRadio: boolean;
|
1175
|
+
showRadioButton: boolean;
|
1176
|
+
showCheckboxButton: boolean;
|
1177
|
+
fuzzySearch: boolean;
|
1178
|
+
getData: () => any;
|
1179
|
+
defaultGetData: boolean;
|
1180
|
+
disableDataList: UserInfo[];
|
968
1181
|
}, {}>, {
|
969
1182
|
"below-the-input"?(_: {}): any;
|
1183
|
+
"check-content"?(_: {
|
1184
|
+
row: any;
|
1185
|
+
}): any;
|
1186
|
+
"other-content"?(_: {
|
1187
|
+
row: any;
|
1188
|
+
}): any;
|
970
1189
|
}>;
|
971
1190
|
|
972
|
-
export declare const HySvgIcon: DefineComponent<
|
1191
|
+
export declare const HySvgIcon: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_7<IconProps>, {
|
973
1192
|
prefix: string;
|
974
1193
|
name: string;
|
975
1194
|
className: string;
|
976
1195
|
color: string;
|
977
1196
|
width: string;
|
978
1197
|
height: string;
|
979
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
1198
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_7<IconProps>, {
|
980
1199
|
prefix: string;
|
981
1200
|
name: string;
|
982
1201
|
className: string;
|
@@ -985,7 +1204,7 @@ width: string;
|
|
985
1204
|
height: string;
|
986
1205
|
}>>>, {}, {}>;
|
987
1206
|
|
988
|
-
export declare const HyTable:
|
1207
|
+
export declare const HyTable: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<TableProps>, {
|
989
1208
|
height: number;
|
990
1209
|
columnList: () => any[];
|
991
1210
|
searchArr: () => any[];
|
@@ -1019,7 +1238,7 @@ getTotalElements: typeof getTotalElements;
|
|
1019
1238
|
getTotal: (...args: any[]) => void;
|
1020
1239
|
selectionChange: (...args: any[]) => void;
|
1021
1240
|
onRowcClick: (...args: any[]) => void;
|
1022
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
1241
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<TableProps>, {
|
1023
1242
|
height: number;
|
1024
1243
|
columnList: () => any[];
|
1025
1244
|
searchArr: () => any[];
|
@@ -1055,15 +1274,71 @@ onOnRowcClick?: (...args: any[]) => any;
|
|
1055
1274
|
footer?(_: {}): any;
|
1056
1275
|
}>;
|
1057
1276
|
|
1277
|
+
export declare const HyTableHead: DefineComponent< {
|
1278
|
+
selectList: {
|
1279
|
+
type: ArrayConstructor;
|
1280
|
+
default: () => any[];
|
1281
|
+
};
|
1282
|
+
selectLabelKey: {
|
1283
|
+
type: StringConstructor;
|
1284
|
+
default: () => string;
|
1285
|
+
};
|
1286
|
+
selectValueKey: {
|
1287
|
+
type: StringConstructor;
|
1288
|
+
default: () => string;
|
1289
|
+
};
|
1290
|
+
column: {
|
1291
|
+
type: ObjectConstructor;
|
1292
|
+
default: () => void;
|
1293
|
+
};
|
1294
|
+
modelValue: {
|
1295
|
+
type: ObjectConstructor;
|
1296
|
+
default: () => {};
|
1297
|
+
};
|
1298
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
1299
|
+
"update:modelValue": (...args: any[]) => void;
|
1300
|
+
getListData: (...args: any[]) => void;
|
1301
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
1302
|
+
selectList: {
|
1303
|
+
type: ArrayConstructor;
|
1304
|
+
default: () => any[];
|
1305
|
+
};
|
1306
|
+
selectLabelKey: {
|
1307
|
+
type: StringConstructor;
|
1308
|
+
default: () => string;
|
1309
|
+
};
|
1310
|
+
selectValueKey: {
|
1311
|
+
type: StringConstructor;
|
1312
|
+
default: () => string;
|
1313
|
+
};
|
1314
|
+
column: {
|
1315
|
+
type: ObjectConstructor;
|
1316
|
+
default: () => void;
|
1317
|
+
};
|
1318
|
+
modelValue: {
|
1319
|
+
type: ObjectConstructor;
|
1320
|
+
default: () => {};
|
1321
|
+
};
|
1322
|
+
}>> & {
|
1323
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
1324
|
+
onGetListData?: (...args: any[]) => any;
|
1325
|
+
}, {
|
1326
|
+
modelValue: Record<string, any>;
|
1327
|
+
column: Record<string, any>;
|
1328
|
+
selectList: unknown[];
|
1329
|
+
selectLabelKey: string;
|
1330
|
+
selectValueKey: string;
|
1331
|
+
}, {}>;
|
1332
|
+
|
1058
1333
|
export declare function HyTipsModal(configParams: ConfigType, submitCallBackParams?: () => void, closesCallBackParams?: () => void): Promise<unknown>;
|
1059
1334
|
|
1060
|
-
export declare const HyUserHead:
|
1335
|
+
export declare const HyUserHead: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<RoundButton_2>, {
|
1061
1336
|
gbDevice: boolean;
|
1062
1337
|
url: string;
|
1063
1338
|
headBoxClassName: string;
|
1064
1339
|
name: string;
|
1065
1340
|
className: string;
|
1066
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<
|
1341
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<RoundButton_2>, {
|
1067
1342
|
gbDevice: boolean;
|
1068
1343
|
url: string;
|
1069
1344
|
headBoxClassName: string;
|
@@ -1106,6 +1381,22 @@ declare interface MenuListItem {
|
|
1106
1381
|
}[];
|
1107
1382
|
}
|
1108
1383
|
|
1384
|
+
/**
|
1385
|
+
* MQTTl链接信息
|
1386
|
+
*/
|
1387
|
+
declare interface MqConnectInfo {
|
1388
|
+
appId?: string;
|
1389
|
+
clientId?: string;
|
1390
|
+
host?: string;
|
1391
|
+
mediaMqConnectInfo?: MqConnectInfo;
|
1392
|
+
password?: string;
|
1393
|
+
path?: string;
|
1394
|
+
port?: number;
|
1395
|
+
tcpForce?: boolean;
|
1396
|
+
userName?: string;
|
1397
|
+
useSSL?: boolean;
|
1398
|
+
}
|
1399
|
+
|
1109
1400
|
declare function onClose(): void;
|
1110
1401
|
|
1111
1402
|
/**
|
@@ -1168,16 +1459,17 @@ declare interface OrgType {
|
|
1168
1459
|
}
|
1169
1460
|
|
1170
1461
|
declare interface Props {
|
1171
|
-
getData?: () => any;
|
1172
1462
|
hideDevice?: boolean;
|
1173
|
-
hideOrgNoDevice?: boolean;
|
1174
|
-
defaultGetData?: boolean;
|
1175
1463
|
showOnlineOnly?: boolean;
|
1176
|
-
|
1464
|
+
disableDataList?: Device[];
|
1177
1465
|
returnDisableDevice?: boolean;
|
1178
1466
|
}
|
1179
1467
|
|
1180
1468
|
declare interface Props_2 {
|
1469
|
+
disableDataList?: UserInfo[];
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
declare interface Props_3 {
|
1181
1473
|
modelValue?: any;
|
1182
1474
|
requestParams?: any;
|
1183
1475
|
controller?: string;
|
@@ -1193,7 +1485,7 @@ declare interface Props_2 {
|
|
1193
1485
|
placeholder?: string;
|
1194
1486
|
}
|
1195
1487
|
|
1196
|
-
declare interface
|
1488
|
+
declare interface Props_4 {
|
1197
1489
|
size?: string;
|
1198
1490
|
className?: string;
|
1199
1491
|
placeholder?: string;
|
@@ -1201,12 +1493,12 @@ declare interface Props_3 {
|
|
1201
1493
|
disabled?: boolean;
|
1202
1494
|
}
|
1203
1495
|
|
1204
|
-
declare interface
|
1496
|
+
declare interface Props_5 {
|
1205
1497
|
menuList: MenuListItem[];
|
1206
1498
|
menuTitle: string;
|
1207
1499
|
}
|
1208
1500
|
|
1209
|
-
declare interface
|
1501
|
+
declare interface Props_6 {
|
1210
1502
|
optionList: {
|
1211
1503
|
label: string;
|
1212
1504
|
value: number;
|
@@ -1294,7 +1586,7 @@ declare interface TreeCpnsProps {
|
|
1294
1586
|
height?: number;
|
1295
1587
|
itemSize?: number;
|
1296
1588
|
dataList?: any[];
|
1297
|
-
|
1589
|
+
defaultCheckedList?: any[];
|
1298
1590
|
highlightSelected?: boolean;
|
1299
1591
|
checkStrictly?: boolean;
|
1300
1592
|
showCheckbox?: boolean;
|
@@ -1304,4 +1596,91 @@ declare interface TreeCpnsProps {
|
|
1304
1596
|
showCheckboxButton?: boolean;
|
1305
1597
|
}
|
1306
1598
|
|
1599
|
+
declare interface TreeProps {
|
1600
|
+
fuzzySearch?: boolean;
|
1601
|
+
getData?: () => any;
|
1602
|
+
hideOrgNoData?: boolean;
|
1603
|
+
defaultGetData?: boolean;
|
1604
|
+
}
|
1605
|
+
|
1606
|
+
/**
|
1607
|
+
* AdministratorVO
|
1608
|
+
*/
|
1609
|
+
declare interface UserInfo {
|
1610
|
+
/**
|
1611
|
+
* APP用户Marker图标
|
1612
|
+
*/
|
1613
|
+
appHeadImg?: string;
|
1614
|
+
businessMqConnectInfo?: MqConnectInfo;
|
1615
|
+
/**
|
1616
|
+
* 头像
|
1617
|
+
*/
|
1618
|
+
headImg?: string;
|
1619
|
+
id?: string;
|
1620
|
+
/**
|
1621
|
+
* 职位
|
1622
|
+
*/
|
1623
|
+
job?: string;
|
1624
|
+
/**
|
1625
|
+
* 工号
|
1626
|
+
*/
|
1627
|
+
jobNum?: string;
|
1628
|
+
/**
|
1629
|
+
* 纬度
|
1630
|
+
*/
|
1631
|
+
lat?: number;
|
1632
|
+
/**
|
1633
|
+
* 经度
|
1634
|
+
*/
|
1635
|
+
lng?: number;
|
1636
|
+
/**
|
1637
|
+
* 登录来源
|
1638
|
+
*/
|
1639
|
+
loginSource?: string;
|
1640
|
+
mainAccount?: number;
|
1641
|
+
mediumMqConnectInfo?: MqConnectInfo;
|
1642
|
+
/**
|
1643
|
+
* 监控样式(1弹窗,2U型)
|
1644
|
+
*/
|
1645
|
+
monitorStyle?: number;
|
1646
|
+
/**
|
1647
|
+
* 用户名
|
1648
|
+
*/
|
1649
|
+
name?: string;
|
1650
|
+
/**
|
1651
|
+
* 部门编码
|
1652
|
+
*/
|
1653
|
+
orgCode?: string;
|
1654
|
+
/**
|
1655
|
+
* 所属部门id
|
1656
|
+
*/
|
1657
|
+
orgId?: number;
|
1658
|
+
/**
|
1659
|
+
* 所属部门
|
1660
|
+
*/
|
1661
|
+
orgName?: string;
|
1662
|
+
/**
|
1663
|
+
* 权限
|
1664
|
+
*/
|
1665
|
+
permissionList?: string[];
|
1666
|
+
/**
|
1667
|
+
* 手机号
|
1668
|
+
*/
|
1669
|
+
phone?: string;
|
1670
|
+
/**
|
1671
|
+
* 抢呼优先级
|
1672
|
+
*/
|
1673
|
+
priority?: number;
|
1674
|
+
/**
|
1675
|
+
* 省份名称
|
1676
|
+
*/
|
1677
|
+
province?: string;
|
1678
|
+
roleId?: number;
|
1679
|
+
/**
|
1680
|
+
* 短号
|
1681
|
+
*/
|
1682
|
+
serialNum?: string;
|
1683
|
+
token?: string;
|
1684
|
+
}
|
1685
|
+
|
1307
1686
|
export { }
|