@hotelinking/ui 11.45.1 → 12.45.0

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
@@ -1925,6 +1925,7 @@ selectChanged: (T: SelectItemType_2 | SelectItemType_2[]) => any;
1925
1925
  sideBarClick: (t: string) => any;
1926
1926
  productBarClick: (t: string) => any;
1927
1927
  topBarClick: (T: string) => any;
1928
+ sidebarToggle: (T: boolean) => any;
1928
1929
  }, string, PublicProps, Readonly<UiWrapperInterface> & Readonly<{
1929
1930
  onCheckboxChanged?: ((checkbox: UiCheckboxType_2) => any) | undefined;
1930
1931
  onInputChanged?: ((T: InputType_2) => any) | undefined;
@@ -1932,6 +1933,7 @@ onSelectChanged?: ((T: SelectItemType_2 | SelectItemType_2[]) => any) | undefine
1932
1933
  onSideBarClick?: ((t: string) => any) | undefined;
1933
1934
  onProductBarClick?: ((t: string) => any) | undefined;
1934
1935
  onTopBarClick?: ((T: string) => any) | undefined;
1936
+ onSidebarToggle?: ((T: boolean) => any) | undefined;
1935
1937
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1936
1938
  default?(_: {}): any;
1937
1939
  }>;
@@ -1949,6 +1951,8 @@ export declare interface UiWrapperEventsInterface {
1949
1951
  (e: "checkboxChanged", checkbox: UiCheckboxType): void;
1950
1952
  /** Whenever the input changes */
1951
1953
  (e: "inputChanged", T: InputType): void;
1954
+ /** State of sidebar changed */
1955
+ (e: "sidebarToggle", T: boolean): void;
1952
1956
  }
1953
1957
 
1954
1958
  export declare interface UiWrapperInterface {
@@ -1971,6 +1975,8 @@ export declare interface UiWrapperInterface {
1971
1975
  };
1972
1976
  /** wrapper sidebar */
1973
1977
  sidebar: UiSidebarV2Interface;
1978
+ /** open or close sidebar in mobile */
1979
+ sidebarOpen: boolean;
1974
1980
  }
1975
1981
 
1976
1982
  export { }