@hotelinking/ui 14.45.0 → 14.46.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
@@ -1486,6 +1486,31 @@ export declare interface UiSmartFilterInterface {
1486
1486
  loading?: boolean;
1487
1487
  }
1488
1488
 
1489
+ export declare const uiSmartFilterMultiple: DefineComponent<UiSmartFilterInterface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1490
+ rightAddOnClicked: () => any;
1491
+ smartFilterSelected: (value: string) => any;
1492
+ smartInputChanged: (value: InputType) => any;
1493
+ smartSelectChanged: (value: SelectItemType_2[]) => any;
1494
+ smartOptionSelected: (value: UiDropdownItemType) => any;
1495
+ smartFilterMultipleSent: (filters: {
1496
+ name: string;
1497
+ value: any;
1498
+ }[]) => any;
1499
+ }, string, PublicProps, Readonly<UiSmartFilterInterface> & Readonly<{
1500
+ onRightAddOnClicked?: (() => any) | undefined;
1501
+ onSmartFilterSelected?: ((value: string) => any) | undefined;
1502
+ onSmartInputChanged?: ((value: InputType) => any) | undefined;
1503
+ onSmartSelectChanged?: ((value: SelectItemType_2[]) => any) | undefined;
1504
+ onSmartOptionSelected?: ((value: UiDropdownItemType) => any) | undefined;
1505
+ onSmartFilterMultipleSent?: ((filters: {
1506
+ name: string;
1507
+ value: any;
1508
+ }[]) => any) | undefined;
1509
+ }>, {
1510
+ loading: boolean;
1511
+ showFilterButton: boolean;
1512
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1513
+
1489
1514
  export declare interface UiSmartFilterMultipleEventInterface {
1490
1515
  /** send filters on click */
1491
1516
  (e: "smartFilterMultipleSent", T: {