command-center-v3-common 0.0.22 → 0.0.24
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.js +4059 -4004
- package/dist/command-center-v3-common.umd.cjs +31 -31
- package/dist/index.d.ts +30 -12
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -251,6 +251,7 @@ declare interface BoxBorderProps {
|
|
251
251
|
color?: string;
|
252
252
|
width?: string | number;
|
253
253
|
height?: string | number;
|
254
|
+
zIndex?: string | number;
|
254
255
|
}
|
255
256
|
|
256
257
|
declare interface ChanneItem {
|
@@ -744,6 +745,7 @@ className: string;
|
|
744
745
|
color: string;
|
745
746
|
width: string;
|
746
747
|
height: string;
|
748
|
+
zIndex: number;
|
747
749
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BoxBorderProps>, {
|
748
750
|
prefix: string;
|
749
751
|
name: string;
|
@@ -751,6 +753,7 @@ className: string;
|
|
751
753
|
color: string;
|
752
754
|
width: string;
|
753
755
|
height: string;
|
756
|
+
zIndex: number;
|
754
757
|
}>>>, {}, {}>, {
|
755
758
|
content?(_: {}): any;
|
756
759
|
}>;
|
@@ -901,7 +904,7 @@ multiple: boolean;
|
|
901
904
|
placeholder: string;
|
902
905
|
}, {}>;
|
903
906
|
|
904
|
-
export declare const HySelectDevice: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<Props>, {
|
907
|
+
export declare const HySelectDevice: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<TreeCpnsProps & Props>, {
|
905
908
|
highlightSelected: boolean;
|
906
909
|
getData: FunctionConstructor;
|
907
910
|
itemSize: number;
|
@@ -913,19 +916,21 @@ checkStrictly: boolean;
|
|
913
916
|
showCheckbox: boolean;
|
914
917
|
parentCheckbox: boolean;
|
915
918
|
showRadio: boolean;
|
919
|
+
showCheckboxButton: boolean;
|
920
|
+
showRadioButton: boolean;
|
916
921
|
defaultCheckedKeys: () => any[];
|
917
922
|
disableDeviceList: () => any[];
|
918
923
|
returnDisableDevice: boolean;
|
919
924
|
}>, {
|
920
925
|
setCheckedKeys: (keys: string[]) => void;
|
921
|
-
setSelectedList: (dataList:
|
922
|
-
setChecked: (
|
926
|
+
setSelectedList: (dataList: any[]) => void;
|
927
|
+
setChecked: (item: any, type: boolean) => void;
|
923
928
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
924
929
|
onCurrent: (...args: any[]) => void;
|
925
930
|
onCurrentDelete: (...args: any[]) => void;
|
926
931
|
onSelectedData: (...args: any[]) => void;
|
927
932
|
onCurrentDepartment: (...args: any[]) => void;
|
928
|
-
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<Props>, {
|
933
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<TreeCpnsProps & Props>, {
|
929
934
|
highlightSelected: boolean;
|
930
935
|
getData: FunctionConstructor;
|
931
936
|
itemSize: number;
|
@@ -937,6 +942,8 @@ checkStrictly: boolean;
|
|
937
942
|
showCheckbox: boolean;
|
938
943
|
parentCheckbox: boolean;
|
939
944
|
showRadio: boolean;
|
945
|
+
showCheckboxButton: boolean;
|
946
|
+
showRadioButton: boolean;
|
940
947
|
defaultCheckedKeys: () => any[];
|
941
948
|
disableDeviceList: () => any[];
|
942
949
|
returnDisableDevice: boolean;
|
@@ -955,6 +962,8 @@ highlightSelected: boolean;
|
|
955
962
|
showCheckbox: boolean;
|
956
963
|
parentCheckbox: boolean;
|
957
964
|
showRadio: boolean;
|
965
|
+
showRadioButton: boolean;
|
966
|
+
showCheckboxButton: boolean;
|
958
967
|
hideDevice: boolean;
|
959
968
|
hideOrgNoDevice: boolean;
|
960
969
|
showOnlineOnly: boolean;
|
@@ -1154,18 +1163,11 @@ declare interface OrgType {
|
|
1154
1163
|
}
|
1155
1164
|
|
1156
1165
|
declare interface Props {
|
1157
|
-
|
1166
|
+
getData?: () => any;
|
1158
1167
|
hideDevice?: boolean;
|
1159
1168
|
hideOrgNoDevice?: boolean;
|
1160
1169
|
defaultGetData?: boolean;
|
1161
|
-
itemSize?: number;
|
1162
|
-
getData?: () => any;
|
1163
|
-
defaultCheckedKeys?: string[];
|
1164
1170
|
showOnlineOnly?: boolean;
|
1165
|
-
checkStrictly?: boolean;
|
1166
|
-
showCheckbox?: boolean;
|
1167
|
-
parentCheckbox?: boolean;
|
1168
|
-
showRadio?: boolean;
|
1169
1171
|
disableDeviceList?: Device[];
|
1170
1172
|
returnDisableDevice?: boolean;
|
1171
1173
|
}
|
@@ -1279,4 +1281,20 @@ declare interface TableProps {
|
|
1279
1281
|
};
|
1280
1282
|
}
|
1281
1283
|
|
1284
|
+
declare interface TreeCpnsProps {
|
1285
|
+
itemType?: number;
|
1286
|
+
itemSelectParam?: string;
|
1287
|
+
height?: number;
|
1288
|
+
itemSize?: number;
|
1289
|
+
dataList?: any[];
|
1290
|
+
defaultCheckedKeys?: string[];
|
1291
|
+
highlightSelected?: boolean;
|
1292
|
+
checkStrictly?: boolean;
|
1293
|
+
showCheckbox?: boolean;
|
1294
|
+
parentCheckbox?: boolean;
|
1295
|
+
showRadio?: boolean;
|
1296
|
+
showRadioButton?: boolean;
|
1297
|
+
showCheckboxButton?: boolean;
|
1298
|
+
}
|
1299
|
+
|
1282
1300
|
export { }
|