@hotelinking/ui 16.45.4 → 16.45.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
@@ -1608,7 +1608,10 @@ export declare const uiTable: DefineComponent<UiTableInterface, {}, {}, {}, {},
1608
1608
  loading: boolean;
1609
1609
  resetSelected: boolean;
1610
1610
  orderDirection: "desc" | "asc";
1611
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1611
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1612
+ tableWrapper: HTMLDivElement;
1613
+ tableScrollContainer: HTMLDivElement;
1614
+ }, any>;
1612
1615
 
1613
1616
  export declare interface UiTableEventsInterface {
1614
1617
  /** if table action is clicked, emits selected rows ids */
@@ -1654,6 +1657,8 @@ export declare interface UiTableEventsInterface {
1654
1657
  index: number;
1655
1658
  hidden: boolean;
1656
1659
  }): void;
1660
+ /** emitted when deselect all items is clicked */
1661
+ (e: "deselectAllItems"): void;
1657
1662
  }
1658
1663
 
1659
1664
  export declare interface UiTableInterface {