@hotelinking/ui 11.45.0 → 11.45.2

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/ui.d.ts CHANGED
@@ -1919,12 +1919,16 @@ export declare interface UiTopbarInterface {
1919
1919
  }
1920
1920
 
1921
1921
  export declare const uiWrapper: __VLS_WithTemplateSlots_8<DefineComponent<UiWrapperInterface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1922
- selectChanged: (T: SelectItemType) => any;
1922
+ checkboxChanged: (checkbox: UiCheckboxType_2) => any;
1923
+ inputChanged: (T: InputType_2) => any;
1924
+ selectChanged: (T: SelectItemType_2 | SelectItemType_2[]) => any;
1923
1925
  sideBarClick: (t: string) => any;
1924
1926
  productBarClick: (t: string) => any;
1925
1927
  topBarClick: (T: string) => any;
1926
1928
  }, string, PublicProps, Readonly<UiWrapperInterface> & Readonly<{
1927
- onSelectChanged?: ((T: SelectItemType) => any) | undefined;
1929
+ onCheckboxChanged?: ((checkbox: UiCheckboxType_2) => any) | undefined;
1930
+ onInputChanged?: ((T: InputType_2) => any) | undefined;
1931
+ onSelectChanged?: ((T: SelectItemType_2 | SelectItemType_2[]) => any) | undefined;
1928
1932
  onSideBarClick?: ((t: string) => any) | undefined;
1929
1933
  onProductBarClick?: ((t: string) => any) | undefined;
1930
1934
  onTopBarClick?: ((T: string) => any) | undefined;
@@ -1937,10 +1941,14 @@ export declare interface UiWrapperEventsInterface {
1937
1941
  (e: "productBarClick", t: string): void;
1938
1942
  /** emitted when a link is clicked, emits item id */
1939
1943
  (e: "sideBarClick", t: string): void;
1940
- /** When an item is selected */
1941
- (e: "selectChanged", T: SelectItemType): void;
1944
+ /** When a item is selected */
1945
+ (e: "selectChanged", T: SelectItemType | SelectItemType[]): void;
1942
1946
  /** when clicked in any menu item */
1943
1947
  (e: "topBarClick", T: string): void;
1948
+ /** Emitted when click over checkbox */
1949
+ (e: "checkboxChanged", checkbox: UiCheckboxType): void;
1950
+ /** Whenever the input changes */
1951
+ (e: "inputChanged", T: InputType): void;
1944
1952
  }
1945
1953
 
1946
1954
  export declare interface UiWrapperInterface {