command-center-v3-common 0.0.17 → 0.0.19

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/index.d.ts CHANGED
@@ -237,6 +237,12 @@ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
237
237
  };
238
238
  };
239
239
 
240
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
241
+ new (): {
242
+ $slots: S;
243
+ };
244
+ };
245
+
240
246
  declare interface BoxBorderProps {
241
247
  [key: string]: any;
242
248
  prefix?: string;
@@ -786,7 +792,7 @@ menuList: MenuItem[];
786
792
  menuTitle: string;
787
793
  }, {}>;
788
794
 
789
- export declare const HyOrgCascader: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<Props_3>, {
795
+ export declare const HyOrgCascader: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<Props_3>, {
790
796
  size: string;
791
797
  className: string;
792
798
  placeholder: string;
@@ -895,8 +901,13 @@ multiple: boolean;
895
901
  placeholder: string;
896
902
  }, {}>;
897
903
 
898
- export declare const HySelectDevice: DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<Props>, {
904
+ export declare const HySelectDevice: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<Props>, {
905
+ highlightSelected: boolean;
899
906
  getData: FunctionConstructor;
907
+ itemSize: number;
908
+ hideDevice: boolean;
909
+ hideOrgNoDevice: boolean;
910
+ defaultGetData: boolean;
900
911
  showOnlineOnly: boolean;
901
912
  checkStrictly: boolean;
902
913
  showCheckbox: boolean;
@@ -907,16 +918,20 @@ disableDeviceList: () => any[];
907
918
  returnDisableDevice: boolean;
908
919
  }>, {
909
920
  setCheckedKeys: (keys: string[]) => void;
910
- setDeviceList: (dataList: Device[]) => void;
921
+ setSelectedList: (dataList: Device[]) => void;
911
922
  setChecked: (device: Device, type: boolean) => void;
912
- handlerDeviceStateChange: (payload: Device) => void;
913
923
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
914
- onCurrentDevice: (...args: any[]) => void;
915
- onCurrentDeviceDelete: (...args: any[]) => void;
924
+ onCurrent: (...args: any[]) => void;
925
+ onCurrentDelete: (...args: any[]) => void;
916
926
  onSelectedData: (...args: any[]) => void;
917
927
  onCurrentDepartment: (...args: any[]) => void;
918
928
  }, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<Props>, {
929
+ highlightSelected: boolean;
919
930
  getData: FunctionConstructor;
931
+ itemSize: number;
932
+ hideDevice: boolean;
933
+ hideOrgNoDevice: boolean;
934
+ defaultGetData: boolean;
920
935
  showOnlineOnly: boolean;
921
936
  checkStrictly: boolean;
922
937
  showCheckbox: boolean;
@@ -926,21 +941,28 @@ defaultCheckedKeys: () => any[];
926
941
  disableDeviceList: () => any[];
927
942
  returnDisableDevice: boolean;
928
943
  }>>> & {
929
- onOnCurrentDevice?: (...args: any[]) => any;
930
- onOnCurrentDeviceDelete?: (...args: any[]) => any;
944
+ onOnCurrent?: (...args: any[]) => any;
945
+ onOnCurrentDelete?: (...args: any[]) => any;
931
946
  onOnSelectedData?: (...args: any[]) => any;
932
947
  onOnCurrentDepartment?: (...args: any[]) => any;
933
948
  }, {
934
949
  getData: () => any;
950
+ defaultGetData: boolean;
935
951
  checkStrictly: boolean;
952
+ itemSize: number;
936
953
  defaultCheckedKeys: string[];
954
+ highlightSelected: boolean;
937
955
  showCheckbox: boolean;
938
956
  parentCheckbox: boolean;
939
957
  showRadio: boolean;
958
+ hideDevice: boolean;
959
+ hideOrgNoDevice: boolean;
960
+ showOnlineOnly: boolean;
940
961
  disableDeviceList: Device[];
941
962
  returnDisableDevice: boolean;
942
- showOnlineOnly: boolean;
943
- }, {}>;
963
+ }, {}>, {
964
+ "below-the-input"?(_: {}): any;
965
+ }>;
944
966
 
945
967
  export declare const HySvgIcon: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<IconProps>, {
946
968
  prefix: string;
@@ -958,7 +980,7 @@ width: string;
958
980
  height: string;
959
981
  }>>>, {}, {}>;
960
982
 
961
- export declare const HyTable: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<TableProps>, {
983
+ export declare const HyTable: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<TableProps>, {
962
984
  height: number;
963
985
  columnList: () => any[];
964
986
  searchArr: () => any[];
@@ -1132,6 +1154,11 @@ declare interface OrgType {
1132
1154
  }
1133
1155
 
1134
1156
  declare interface Props {
1157
+ highlightSelected?: boolean;
1158
+ hideDevice?: boolean;
1159
+ hideOrgNoDevice?: boolean;
1160
+ defaultGetData?: boolean;
1161
+ itemSize?: number;
1135
1162
  getData?: () => any;
1136
1163
  defaultCheckedKeys?: string[];
1137
1164
  showOnlineOnly?: boolean;