@hotelinking/ui 9.41.10 → 9.41.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.
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { UiNoResultsInterface } from "../../../types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiNoResultsInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
3
|
action: (T: string) => void;
|
|
4
|
-
|
|
4
|
+
noResultsOptionSelected: (T: any) => void;
|
|
5
5
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<UiNoResultsInterface>>> & {
|
|
6
6
|
onAction?: ((T: string) => any) | undefined;
|
|
7
|
-
|
|
7
|
+
onNoResultsOptionSelected?: ((T: any) => any) | undefined;
|
|
8
8
|
}, {}, {}>;
|
|
9
9
|
export default _default;
|
|
10
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -159,7 +159,7 @@ export interface UiDeviceStatusInterface {
|
|
|
159
159
|
icon: any;
|
|
160
160
|
color: AllColors;
|
|
161
161
|
qty: number;
|
|
162
|
-
tags
|
|
162
|
+
tags?: UiTagInterface[];
|
|
163
163
|
loading: boolean;
|
|
164
164
|
}
|
|
165
165
|
export interface UiFilterInterface {
|
|
@@ -170,7 +170,7 @@ export interface UiFilterInterface {
|
|
|
170
170
|
active?: boolean;
|
|
171
171
|
}[];
|
|
172
172
|
position?: "left" | "right";
|
|
173
|
-
label
|
|
173
|
+
label?: string;
|
|
174
174
|
loading?: boolean;
|
|
175
175
|
}
|
|
176
176
|
export interface UiModalInterface {
|
|
@@ -354,8 +354,8 @@ export interface UiNoResultsInterface {
|
|
|
354
354
|
action: string;
|
|
355
355
|
text: string;
|
|
356
356
|
}[];
|
|
357
|
-
items:
|
|
358
|
-
select:
|
|
357
|
+
items: UiDropdownItemType[];
|
|
358
|
+
select: UiDropdownItemType;
|
|
359
359
|
}
|
|
360
360
|
export interface UiPaginationInterface {
|
|
361
361
|
current: number;
|