@hotelinking/ui 9.41.34 → 9.41.36
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.
|
@@ -4,7 +4,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
6
|
}>, {}, {}, {
|
|
7
|
-
currentDate():
|
|
7
|
+
currentDate(): dayjs.Dayjs;
|
|
8
|
+
today(): dayjs.Dayjs;
|
|
9
|
+
formatedDate(): string;
|
|
8
10
|
}, {
|
|
9
11
|
selectDate(name: any, page: any): void;
|
|
10
12
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -17,3 +19,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
17
19
|
ChevronRightIcon: import("vue").FunctionalComponent<import("vue").HTMLAttributes & import("vue").VNodeProps, {}, any, {}>;
|
|
18
20
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
21
|
export default _default;
|
|
22
|
+
import dayjs from "dayjs";
|
|
@@ -5,13 +5,21 @@ declare const _default: import("vue").DefineComponent<UiPriceCalendarInterface,
|
|
|
5
5
|
changeCategoryBulkPrices: () => any;
|
|
6
6
|
changeCategorySelectionPrice: (t: UiRoomTypeSelectionPriceType) => any;
|
|
7
7
|
changeCategoryUpgradePrice: (t: UiRoomTypeSelectionPriceType) => any;
|
|
8
|
-
changeRoomPrice: (t:
|
|
8
|
+
changeRoomPrice: (t: {
|
|
9
|
+
price: UiRoomTypeSelectionPriceType;
|
|
10
|
+
roomId: string;
|
|
11
|
+
roomName: string;
|
|
12
|
+
}) => any;
|
|
9
13
|
}, string, import("vue").PublicProps, Readonly<UiPriceCalendarInterface> & Readonly<{
|
|
10
14
|
onTableAction?: ((t: any) => any) | undefined;
|
|
11
15
|
onDateChanged?: ((t: Date) => any) | undefined;
|
|
12
16
|
onChangeCategoryBulkPrices?: (() => any) | undefined;
|
|
13
17
|
onChangeCategorySelectionPrice?: ((t: UiRoomTypeSelectionPriceType) => any) | undefined;
|
|
14
18
|
onChangeCategoryUpgradePrice?: ((t: UiRoomTypeSelectionPriceType) => any) | undefined;
|
|
15
|
-
onChangeRoomPrice?: ((t:
|
|
19
|
+
onChangeRoomPrice?: ((t: {
|
|
20
|
+
price: UiRoomTypeSelectionPriceType;
|
|
21
|
+
roomId: string;
|
|
22
|
+
roomName: string;
|
|
23
|
+
}) => any) | undefined;
|
|
16
24
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
25
|
export default _default;
|
|
@@ -1124,7 +1124,11 @@ export interface UiPricesCalendarEventsInterface {
|
|
|
1124
1124
|
/** click on category upgrade price */
|
|
1125
1125
|
(e: 'changeCategoryUpgradePrice', t: UiRoomTypeSelectionPriceType): void;
|
|
1126
1126
|
/** click on room price */
|
|
1127
|
-
(e: 'changeRoomPrice', t:
|
|
1127
|
+
(e: 'changeRoomPrice', t: {
|
|
1128
|
+
price: UiRoomTypeSelectionPriceType;
|
|
1129
|
+
roomId: string;
|
|
1130
|
+
roomName: string;
|
|
1131
|
+
}): void;
|
|
1128
1132
|
/** click on table action */
|
|
1129
1133
|
(e: 'tableAction', t: any): void;
|
|
1130
1134
|
}
|