@hotelinking/ui 14.47.10 → 14.47.11
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 +7 -3
- package/dist/ui.es.js +391 -382
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -1575,7 +1575,7 @@ export declare interface UiSmartFilterMultipleEventInterface {
|
|
|
1575
1575
|
}[]): void;
|
|
1576
1576
|
}
|
|
1577
1577
|
|
|
1578
|
-
export declare const uiSmartFilterMultipleV2: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1578
|
+
export declare const uiSmartFilterMultipleV2: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1579
1579
|
smartFiltersSent: (filters: {
|
|
1580
1580
|
logicOperator: string;
|
|
1581
1581
|
filters: {
|
|
@@ -1583,7 +1583,9 @@ category: string;
|
|
|
1583
1583
|
type: "uiInput" | "uiSelect";
|
|
1584
1584
|
value: string | undefined;
|
|
1585
1585
|
}[];
|
|
1586
|
-
}) => any;
|
|
1586
|
+
} | undefined) => any;
|
|
1587
|
+
smartFiltersCleared: () => any;
|
|
1588
|
+
smartFilterDeleted: (I: number) => any;
|
|
1587
1589
|
}, string, PublicProps, Readonly<Props> & Readonly<{
|
|
1588
1590
|
onSmartFiltersSent?: ((filters: {
|
|
1589
1591
|
logicOperator: string;
|
|
@@ -1592,7 +1594,9 @@ category: string;
|
|
|
1592
1594
|
type: "uiInput" | "uiSelect";
|
|
1593
1595
|
value: string | undefined;
|
|
1594
1596
|
}[];
|
|
1595
|
-
}) => any) | undefined;
|
|
1597
|
+
} | undefined) => any) | undefined;
|
|
1598
|
+
onSmartFiltersCleared?: (() => any) | undefined;
|
|
1599
|
+
onSmartFilterDeleted?: ((I: number) => any) | undefined;
|
|
1596
1600
|
}>, {
|
|
1597
1601
|
filters: {
|
|
1598
1602
|
logicOperator: string;
|