@hotelinking/ui 10.42.3 → 10.42.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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { UiSmartFilterInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiSmartFilterInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
rightAddOnClicked: () => any;
|
|
3
4
|
smartFilterSelected: (T: {
|
|
4
5
|
name: string;
|
|
5
6
|
value: string;
|
|
@@ -9,6 +10,7 @@ declare const _default: import("vue").DefineComponent<UiSmartFilterInterface, {}
|
|
|
9
10
|
smartInputChanged: (T: import("@/types").InputType) => any;
|
|
10
11
|
smartOptionSelected: (T: import("@/types").UiDropdownItemType) => any;
|
|
11
12
|
}, string, import("vue").PublicProps, Readonly<UiSmartFilterInterface> & Readonly<{
|
|
13
|
+
onRightAddOnClicked?: (() => any) | undefined;
|
|
12
14
|
onSmartFilterSelected?: ((T: {
|
|
13
15
|
name: string;
|
|
14
16
|
value: string;
|
|
@@ -396,8 +396,6 @@ export interface UiSmartFilterInterface {
|
|
|
396
396
|
filterType?: "dropdown" | "input";
|
|
397
397
|
/** filter action literal */
|
|
398
398
|
buttonLiteral: string;
|
|
399
|
-
/** delete add on literal */
|
|
400
|
-
deleteLiteral: string;
|
|
401
399
|
/** show skeleton */
|
|
402
400
|
loading?: boolean;
|
|
403
401
|
}
|
|
@@ -408,6 +406,8 @@ export interface UiSmartFilterEventInterface {
|
|
|
408
406
|
(e: 'smartInputChanged', T: InputType): void;
|
|
409
407
|
/** when a dropdown option is selected */
|
|
410
408
|
(e: 'smartOptionSelected', T: UiDropdownItemType): void;
|
|
409
|
+
/** Right addon is clicked */
|
|
410
|
+
(e: "rightAddOnClicked"): void;
|
|
411
411
|
}
|
|
412
412
|
export interface UiModalInterface {
|
|
413
413
|
/** modal title */
|
|
@@ -1079,7 +1079,7 @@ export interface UiWrapperEventsInterface {
|
|
|
1079
1079
|
(e: 'productBarClick', t: string): void;
|
|
1080
1080
|
/** emitted when a link is clicked, emits item id */
|
|
1081
1081
|
(e: 'sideBarClick', t: string): void;
|
|
1082
|
-
/** When
|
|
1082
|
+
/** When an item is selected */
|
|
1083
1083
|
(e: "selectChanged", T: SelectItemType): void;
|
|
1084
1084
|
/** when clicked in any menu item */
|
|
1085
1085
|
(e: "topBarClick", T: string): void;
|