@voyantjs/bookings-ui 0.26.0 → 0.26.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/components/booking-activity-timeline.js +1 -1
- package/dist/components/booking-cancellation-dialog.js +1 -1
- package/dist/components/booking-create-dialog.js +9 -9
- package/dist/components/booking-dialog.js +2 -2
- package/dist/components/booking-document-dialog.js +2 -2
- package/dist/components/booking-document-list.js +2 -2
- package/dist/components/booking-group-link-dialog.js +1 -1
- package/dist/components/booking-group-section.js +2 -2
- package/dist/components/booking-guarantee-dialog.js +1 -1
- package/dist/components/booking-guarantee-list.js +2 -2
- package/dist/components/booking-item-dialog.js +1 -1
- package/dist/components/booking-item-list.js +3 -3
- package/dist/components/booking-item-travelers.js +1 -1
- package/dist/components/booking-list.js +2 -2
- package/dist/components/booking-notes.js +1 -1
- package/dist/components/booking-payment-schedule-dialog.js +1 -1
- package/dist/components/booking-payment-schedule-list.js +2 -2
- package/dist/components/booking-payments-summary.js +1 -1
- package/dist/components/file-dropzone.js +1 -1
- package/dist/components/passengers-section.js +1 -1
- package/dist/components/payment-schedule-section.js +1 -1
- package/dist/components/person-picker-section.js +1 -1
- package/dist/components/price-breakdown-section.js +1 -1
- package/dist/components/product-picker-section.js +1 -1
- package/dist/components/rooms-stepper-section.js +1 -1
- package/dist/components/shared-room-section.js +1 -1
- package/dist/components/status-change-dialog.js +1 -1
- package/dist/components/supplier-status-dialog.js +1 -1
- package/dist/components/supplier-status-list.js +2 -2
- package/dist/components/traveler-dialog.d.ts.map +1 -1
- package/dist/components/traveler-dialog.js +170 -13
- package/dist/components/traveler-list.js +2 -2
- package/dist/components/voucher-picker-section.js +1 -1
- package/dist/i18n/en.d.ts +22 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +22 -0
- package/dist/i18n/index.d.ts +4 -4
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/index.js +3 -3
- package/dist/i18n/messages.d.ts +22 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/provider.d.ts +45 -1
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/provider.js +2 -2
- package/dist/i18n/ro.d.ts +22 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/i18n/ro.js +22 -0
- package/dist/index.d.ts +33 -33
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -33
- package/package.json +20 -20
package/dist/index.js
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export { BookingActivityTimeline, } from "./components/booking-activity-timeline";
|
|
2
|
-
export { BookingCancellationDialog, } from "./components/booking-cancellation-dialog";
|
|
3
|
-
export { BookingCreateDialog, } from "./components/booking-create-dialog";
|
|
4
|
-
export { BookingDialog } from "./components/booking-dialog";
|
|
5
|
-
export { BookingDocumentDialog, } from "./components/booking-document-dialog";
|
|
6
|
-
export { BookingDocumentList, } from "./components/booking-document-list";
|
|
7
|
-
export { BookingGroupLinkDialog, } from "./components/booking-group-link-dialog";
|
|
8
|
-
export { BookingGroupSection, } from "./components/booking-group-section";
|
|
9
|
-
export { BookingGuaranteeDialog, } from "./components/booking-guarantee-dialog";
|
|
10
|
-
export { BookingGuaranteeList, } from "./components/booking-guarantee-list";
|
|
11
|
-
export { BookingItemDialog } from "./components/booking-item-dialog";
|
|
12
|
-
export { BookingItemList } from "./components/booking-item-list";
|
|
13
|
-
export { BookingItemTravelers, } from "./components/booking-item-travelers";
|
|
14
|
-
export { BookingList } from "./components/booking-list";
|
|
15
|
-
export { BookingNotes } from "./components/booking-notes";
|
|
16
|
-
export { BookingPaymentScheduleDialog, } from "./components/booking-payment-schedule-dialog";
|
|
17
|
-
export { BookingPaymentScheduleList, } from "./components/booking-payment-schedule-list";
|
|
18
|
-
export { BookingPaymentsSummary, } from "./components/booking-payments-summary";
|
|
19
|
-
export { FileDropzone } from "./components/file-dropzone";
|
|
20
|
-
export { PassengersSection, } from "./components/passengers-section";
|
|
21
|
-
export { PaymentScheduleSection, } from "./components/payment-schedule-section";
|
|
22
|
-
export { PersonPickerSection, } from "./components/person-picker-section";
|
|
23
|
-
export { PriceBreakdownSection, } from "./components/price-breakdown-section";
|
|
24
|
-
export { ProductPickerSection, } from "./components/product-picker-section";
|
|
25
|
-
export { RoomsStepperSection, } from "./components/rooms-stepper-section";
|
|
26
|
-
export { SharedRoomSection, } from "./components/shared-room-section";
|
|
27
|
-
export { StatusChangeDialog } from "./components/status-change-dialog";
|
|
28
|
-
export { SupplierStatusDialog, } from "./components/supplier-status-dialog";
|
|
29
|
-
export { SupplierStatusList } from "./components/supplier-status-list";
|
|
30
|
-
export { TravelerDialog } from "./components/traveler-dialog";
|
|
31
|
-
export { TravelerList } from "./components/traveler-list";
|
|
32
|
-
export { VoucherPickerSection, } from "./components/voucher-picker-section";
|
|
33
|
-
export { BookingsUiMessagesProvider, bookingsUiEn, bookingsUiMessageDefinitions, bookingsUiRo, formatMessage, getBookingsUiI18n, resolveBookingsUiMessages, useBookingsUiI18n, useBookingsUiI18nOrDefault, useBookingsUiMessages, useBookingsUiMessagesOrDefault, } from "./i18n";
|
|
1
|
+
export { BookingActivityTimeline, } from "./components/booking-activity-timeline.js";
|
|
2
|
+
export { BookingCancellationDialog, } from "./components/booking-cancellation-dialog.js";
|
|
3
|
+
export { BookingCreateDialog, } from "./components/booking-create-dialog.js";
|
|
4
|
+
export { BookingDialog } from "./components/booking-dialog.js";
|
|
5
|
+
export { BookingDocumentDialog, } from "./components/booking-document-dialog.js";
|
|
6
|
+
export { BookingDocumentList, } from "./components/booking-document-list.js";
|
|
7
|
+
export { BookingGroupLinkDialog, } from "./components/booking-group-link-dialog.js";
|
|
8
|
+
export { BookingGroupSection, } from "./components/booking-group-section.js";
|
|
9
|
+
export { BookingGuaranteeDialog, } from "./components/booking-guarantee-dialog.js";
|
|
10
|
+
export { BookingGuaranteeList, } from "./components/booking-guarantee-list.js";
|
|
11
|
+
export { BookingItemDialog } from "./components/booking-item-dialog.js";
|
|
12
|
+
export { BookingItemList } from "./components/booking-item-list.js";
|
|
13
|
+
export { BookingItemTravelers, } from "./components/booking-item-travelers.js";
|
|
14
|
+
export { BookingList } from "./components/booking-list.js";
|
|
15
|
+
export { BookingNotes } from "./components/booking-notes.js";
|
|
16
|
+
export { BookingPaymentScheduleDialog, } from "./components/booking-payment-schedule-dialog.js";
|
|
17
|
+
export { BookingPaymentScheduleList, } from "./components/booking-payment-schedule-list.js";
|
|
18
|
+
export { BookingPaymentsSummary, } from "./components/booking-payments-summary.js";
|
|
19
|
+
export { FileDropzone, } from "./components/file-dropzone.js";
|
|
20
|
+
export { PassengersSection, } from "./components/passengers-section.js";
|
|
21
|
+
export { PaymentScheduleSection, } from "./components/payment-schedule-section.js";
|
|
22
|
+
export { PersonPickerSection, } from "./components/person-picker-section.js";
|
|
23
|
+
export { PriceBreakdownSection, } from "./components/price-breakdown-section.js";
|
|
24
|
+
export { ProductPickerSection, } from "./components/product-picker-section.js";
|
|
25
|
+
export { RoomsStepperSection, } from "./components/rooms-stepper-section.js";
|
|
26
|
+
export { SharedRoomSection, } from "./components/shared-room-section.js";
|
|
27
|
+
export { StatusChangeDialog, } from "./components/status-change-dialog.js";
|
|
28
|
+
export { SupplierStatusDialog, } from "./components/supplier-status-dialog.js";
|
|
29
|
+
export { SupplierStatusList, } from "./components/supplier-status-list.js";
|
|
30
|
+
export { TravelerDialog } from "./components/traveler-dialog.js";
|
|
31
|
+
export { TravelerList } from "./components/traveler-list.js";
|
|
32
|
+
export { VoucherPickerSection, } from "./components/voucher-picker-section.js";
|
|
33
|
+
export { BookingsUiMessagesProvider, bookingsUiEn, bookingsUiMessageDefinitions, bookingsUiRo, formatMessage, getBookingsUiI18n, resolveBookingsUiMessages, useBookingsUiI18n, useBookingsUiI18nOrDefault, useBookingsUiMessages, useBookingsUiMessagesOrDefault, } from "./i18n/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/bookings-ui",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -51,18 +51,18 @@
|
|
|
51
51
|
"react-dom": "^19.0.0",
|
|
52
52
|
"react-hook-form": "^7.60.0",
|
|
53
53
|
"zod": "^4.3.6",
|
|
54
|
-
"@voyantjs/availability-react": "0.26.
|
|
55
|
-
"@voyantjs/bookings-react": "0.26.
|
|
56
|
-
"@voyantjs/catalog": "0.26.
|
|
57
|
-
"@voyantjs/catalog-react": "0.26.
|
|
58
|
-
"@voyantjs/crm-react": "0.26.
|
|
59
|
-
"@voyantjs/finance-react": "0.26.
|
|
60
|
-
"@voyantjs/legal-react": "0.26.
|
|
61
|
-
"@voyantjs/products-react": "0.26.
|
|
62
|
-
"@voyantjs/ui": "0.26.
|
|
54
|
+
"@voyantjs/availability-react": "0.26.2",
|
|
55
|
+
"@voyantjs/bookings-react": "0.26.2",
|
|
56
|
+
"@voyantjs/catalog": "0.26.2",
|
|
57
|
+
"@voyantjs/catalog-react": "0.26.2",
|
|
58
|
+
"@voyantjs/crm-react": "0.26.2",
|
|
59
|
+
"@voyantjs/finance-react": "0.26.2",
|
|
60
|
+
"@voyantjs/legal-react": "0.26.2",
|
|
61
|
+
"@voyantjs/products-react": "0.26.2",
|
|
62
|
+
"@voyantjs/ui": "0.26.2"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@voyantjs/i18n": "0.26.
|
|
65
|
+
"@voyantjs/i18n": "0.26.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -75,16 +75,16 @@
|
|
|
75
75
|
"typescript": "^6.0.2",
|
|
76
76
|
"vitest": "^4.1.2",
|
|
77
77
|
"zod": "^4.3.6",
|
|
78
|
-
"@voyantjs/availability-react": "0.26.
|
|
79
|
-
"@voyantjs/bookings-react": "0.26.
|
|
80
|
-
"@voyantjs/catalog": "0.26.
|
|
81
|
-
"@voyantjs/catalog-react": "0.26.
|
|
82
|
-
"@voyantjs/crm-react": "0.26.
|
|
83
|
-
"@voyantjs/finance-react": "0.26.
|
|
84
|
-
"@voyantjs/legal-react": "0.26.
|
|
85
|
-
"@voyantjs/products-react": "0.26.
|
|
78
|
+
"@voyantjs/availability-react": "0.26.2",
|
|
79
|
+
"@voyantjs/bookings-react": "0.26.2",
|
|
80
|
+
"@voyantjs/catalog": "0.26.2",
|
|
81
|
+
"@voyantjs/catalog-react": "0.26.2",
|
|
82
|
+
"@voyantjs/crm-react": "0.26.2",
|
|
83
|
+
"@voyantjs/finance-react": "0.26.2",
|
|
84
|
+
"@voyantjs/legal-react": "0.26.2",
|
|
85
|
+
"@voyantjs/products-react": "0.26.2",
|
|
86
86
|
"@voyantjs/voyant-typescript-config": "0.1.0",
|
|
87
|
-
"@voyantjs/ui": "0.26.
|
|
87
|
+
"@voyantjs/ui": "0.26.2"
|
|
88
88
|
},
|
|
89
89
|
"files": [
|
|
90
90
|
"dist",
|