@hotelinking/ui 16.48.0 → 16.48.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.cjs +1 -1
- package/dist/ui.d.ts +4 -0
- package/dist/ui.es.js +1021 -1015
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -1764,6 +1764,10 @@ export declare interface UiTableEventsInterface {
|
|
|
1764
1764
|
logicOperator: string;
|
|
1765
1765
|
filters: any[];
|
|
1766
1766
|
}): void;
|
|
1767
|
+
/** emitted when all smart filters are cleared */
|
|
1768
|
+
(e: "smartFiltersCleared"): void;
|
|
1769
|
+
/** emitted when a smart filter is deleted, sends the index of the deleted filter */
|
|
1770
|
+
(e: "smartFilterDeleted", T: number): void;
|
|
1767
1771
|
/** emitted when table action dropdown option is selected */
|
|
1768
1772
|
(e: "tableActionSelected", T: UiDropdownItemType): void;
|
|
1769
1773
|
/** emitted when a custom action button is clicked */
|