@hotelinking/ui 16.48.4 → 16.48.6

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
@@ -1853,6 +1853,10 @@ export declare interface UiTableEventsInterface {
1853
1853
  }): void;
1854
1854
  /** emitted when deselect all items is clicked */
1855
1855
  (e: "deselectAllItems"): void;
1856
+ /** emitted when no results action button is clicked */
1857
+ (e: "noResultsAction", T: string): void;
1858
+ /** emitted when no results dropdown option is selected */
1859
+ (e: "noResultsOptionSelected", T: UiDropdownItemType): void;
1856
1860
  }
1857
1861
 
1858
1862
  export declare interface UiTableInterface {
@@ -1951,6 +1955,24 @@ export declare interface UiTableInterface {
1951
1955
  }>;
1952
1956
  /** Current page size */
1953
1957
  currentPageSize?: number | string;
1958
+ /** No results configuration - shown when items array is empty */
1959
+ noResults?: {
1960
+ /** Title for no results message */
1961
+ title: string;
1962
+ /** Message for no results */
1963
+ message: string;
1964
+ /** Action buttons array */
1965
+ actions?: Array<{
1966
+ /** Action to emit when clicked */
1967
+ action: string;
1968
+ /** Button text */
1969
+ text: string;
1970
+ }>;
1971
+ /** Dropdown items for additional options */
1972
+ items?: UiDropdownItemType[];
1973
+ /** Default selected item for dropdown */
1974
+ select?: UiDropdownItemType;
1975
+ };
1954
1976
  }
1955
1977
 
1956
1978
  export declare const uiTabs: DefineComponent<UiTabInterface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {