@hotelinking/ui 9.41.12 → 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
- noResultsSelectChanged: (T: any) => void;
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
- onNoResultsSelectChanged?: ((T: any) => any) | undefined;
7
+ onNoResultsOptionSelected?: ((T: any) => any) | undefined;
8
8
  }, {}, {}>;
9
9
  export default _default;
10
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -170,7 +170,7 @@ export interface UiFilterInterface {
170
170
  active?: boolean;
171
171
  }[];
172
172
  position?: "left" | "right";
173
- label: string;
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: SelectItemType[];
358
- select: SelectItemType;
357
+ items: UiDropdownItemType[];
358
+ select: UiDropdownItemType;
359
359
  }
360
360
  export interface UiPaginationInterface {
361
361
  current: number;