@hotelinking/ui 11.45.0 → 11.45.1
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.cjs +1 -1
- package/dist/ui.d.ts +12 -4
- package/dist/ui.es.js +1640 -1718
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
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
|
|
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 {
|