@voyant-travel/inventory-react 0.1.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/LICENSE +201 -0
- package/dist/admin/index.d.ts +91 -0
- package/dist/admin/index.d.ts.map +1 -0
- package/dist/admin/index.js +132 -0
- package/dist/admin/pages/product-detail-page.d.ts +18 -0
- package/dist/admin/pages/product-detail-page.d.ts.map +1 -0
- package/dist/admin/pages/product-detail-page.js +63 -0
- package/dist/admin/product-categories-host.d.ts +7 -0
- package/dist/admin/product-categories-host.d.ts.map +1 -0
- package/dist/admin/product-categories-host.js +11 -0
- package/dist/admin/product-detail-api.d.ts +22 -0
- package/dist/admin/product-detail-api.d.ts.map +1 -0
- package/dist/admin/product-detail-api.js +58 -0
- package/dist/admin/products-host.d.ts +11 -0
- package/dist/admin/products-host.d.ts.map +1 -0
- package/dist/admin/products-host.js +17 -0
- package/dist/admin/products-list-skeleton.d.ts +10 -0
- package/dist/admin/products-list-skeleton.d.ts.map +1 -0
- package/dist/admin/products-list-skeleton.js +23 -0
- package/dist/client.d.ts +16 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +79 -0
- package/dist/components/option-unit-dialog.d.ts +11 -0
- package/dist/components/option-unit-dialog.d.ts.map +1 -0
- package/dist/components/option-unit-dialog.js +17 -0
- package/dist/components/option-unit-form.d.ts +17 -0
- package/dist/components/option-unit-form.d.ts.map +1 -0
- package/dist/components/option-unit-form.js +123 -0
- package/dist/components/product-action-ledger-card.d.ts +17 -0
- package/dist/components/product-action-ledger-card.d.ts.map +1 -0
- package/dist/components/product-action-ledger-card.js +73 -0
- package/dist/components/product-catalog-card.d.ts +14 -0
- package/dist/components/product-catalog-card.d.ts.map +1 -0
- package/dist/components/product-catalog-card.js +44 -0
- package/dist/components/product-categories-page.d.ts +7 -0
- package/dist/components/product-categories-page.d.ts.map +1 -0
- package/dist/components/product-categories-page.js +9 -0
- package/dist/components/product-category-combobox.d.ts +10 -0
- package/dist/components/product-category-combobox.d.ts.map +1 -0
- package/dist/components/product-category-combobox.js +47 -0
- package/dist/components/product-category-dialog.d.ts +9 -0
- package/dist/components/product-category-dialog.d.ts.map +1 -0
- package/dist/components/product-category-dialog.js +17 -0
- package/dist/components/product-category-form.d.ts +15 -0
- package/dist/components/product-category-form.d.ts.map +1 -0
- package/dist/components/product-category-form.js +82 -0
- package/dist/components/product-category-list.d.ts +5 -0
- package/dist/components/product-category-list.d.ts.map +1 -0
- package/dist/components/product-category-list.js +48 -0
- package/dist/components/product-combobox.d.ts +13 -0
- package/dist/components/product-combobox.d.ts.map +1 -0
- package/dist/components/product-combobox.js +23 -0
- package/dist/components/product-contract-template-combobox.d.ts +9 -0
- package/dist/components/product-contract-template-combobox.d.ts.map +1 -0
- package/dist/components/product-contract-template-combobox.js +97 -0
- package/dist/components/product-day-dialog.d.ts +20 -0
- package/dist/components/product-day-dialog.d.ts.map +1 -0
- package/dist/components/product-day-dialog.js +20 -0
- package/dist/components/product-day-form.d.ts +19 -0
- package/dist/components/product-day-form.d.ts.map +1 -0
- package/dist/components/product-day-form.js +77 -0
- package/dist/components/product-day-media-tray.d.ts +11 -0
- package/dist/components/product-day-media-tray.d.ts.map +1 -0
- package/dist/components/product-day-media-tray.js +74 -0
- package/dist/components/product-day-service-dialog.d.ts +14 -0
- package/dist/components/product-day-service-dialog.d.ts.map +1 -0
- package/dist/components/product-day-service-dialog.js +19 -0
- package/dist/components/product-day-service-form.d.ts +44 -0
- package/dist/components/product-day-service-form.d.ts.map +1 -0
- package/dist/components/product-day-service-form.js +152 -0
- package/dist/components/product-detail/commerce-client.d.ts +314 -0
- package/dist/components/product-detail/commerce-client.d.ts.map +1 -0
- package/dist/components/product-detail/commerce-client.js +261 -0
- package/dist/components/product-detail/host.d.ts +54 -0
- package/dist/components/product-detail/host.d.ts.map +1 -0
- package/dist/components/product-detail/host.js +27 -0
- package/dist/components/product-detail/index.d.ts +6 -0
- package/dist/components/product-detail/index.d.ts.map +1 -0
- package/dist/components/product-detail/index.js +5 -0
- package/dist/components/product-detail/product-activity-section.d.ts +4 -0
- package/dist/components/product-detail/product-activity-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-activity-section.js +37 -0
- package/dist/components/product-detail/product-day-sheet.d.ts +14 -0
- package/dist/components/product-detail/product-day-sheet.d.ts.map +1 -0
- package/dist/components/product-detail/product-day-sheet.js +75 -0
- package/dist/components/product-detail/product-day-translation.d.ts +41 -0
- package/dist/components/product-detail/product-day-translation.d.ts.map +1 -0
- package/dist/components/product-detail/product-day-translation.js +111 -0
- package/dist/components/product-detail/product-departure-dialog.d.ts +11 -0
- package/dist/components/product-detail/product-departure-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-departure-dialog.js +10 -0
- package/dist/components/product-detail/product-departure-form.d.ts +25 -0
- package/dist/components/product-detail/product-departure-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-departure-form.js +241 -0
- package/dist/components/product-detail/product-departure-pricing-override-dialog.d.ts +8 -0
- package/dist/components/product-detail/product-departure-pricing-override-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-departure-pricing-override-dialog.js +126 -0
- package/dist/components/product-detail/product-detail-availability-sections.d.ts +19 -0
- package/dist/components/product-detail/product-detail-availability-sections.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-availability-sections.js +29 -0
- package/dist/components/product-detail/product-detail-channel-section.d.ts +8 -0
- package/dist/components/product-detail/product-detail-channel-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-channel-section.js +16 -0
- package/dist/components/product-detail/product-detail-day-row.d.ts +14 -0
- package/dist/components/product-detail/product-detail-day-row.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-day-row.js +43 -0
- package/dist/components/product-detail/product-detail-dialog.d.ts +10 -0
- package/dist/components/product-detail/product-detail-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-dialog.js +10 -0
- package/dist/components/product-detail/product-detail-form.d.ts +22 -0
- package/dist/components/product-detail/product-detail-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-form.js +205 -0
- package/dist/components/product-detail/product-detail-header.d.ts +12 -0
- package/dist/components/product-detail/product-detail-header.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-header.js +19 -0
- package/dist/components/product-detail/product-detail-itinerary-section.d.ts +4 -0
- package/dist/components/product-detail/product-detail-itinerary-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-itinerary-section.js +201 -0
- package/dist/components/product-detail/product-detail-media-sections.d.ts +15 -0
- package/dist/components/product-detail/product-detail-media-sections.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-media-sections.js +19 -0
- package/dist/components/product-detail/product-detail-organize-section.d.ts +6 -0
- package/dist/components/product-detail/product-detail-organize-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-organize-section.js +18 -0
- package/dist/components/product-detail/product-detail-page.d.ts +4 -0
- package/dist/components/product-detail/product-detail-page.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-page.js +95 -0
- package/dist/components/product-detail/product-detail-section-shell.d.ts +19 -0
- package/dist/components/product-detail/product-detail-section-shell.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-section-shell.js +23 -0
- package/dist/components/product-detail/product-detail-sections.d.ts +7 -0
- package/dist/components/product-detail/product-detail-sections.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-sections.js +6 -0
- package/dist/components/product-detail/product-detail-shared.d.ts +264 -0
- package/dist/components/product-detail/product-detail-shared.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-shared.js +157 -0
- package/dist/components/product-detail/product-detail-skeleton.d.ts +9 -0
- package/dist/components/product-detail/product-detail-skeleton.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-skeleton.js +53 -0
- package/dist/components/product-detail/product-detail-summary-section.d.ts +6 -0
- package/dist/components/product-detail/product-detail-summary-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-detail-summary-section.js +66 -0
- package/dist/components/product-detail/product-extra-dialog.d.ts +21 -0
- package/dist/components/product-detail/product-extra-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-extra-dialog.js +131 -0
- package/dist/components/product-detail/product-itinerary-form.d.ts +16 -0
- package/dist/components/product-detail/product-itinerary-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-itinerary-form.js +38 -0
- package/dist/components/product-detail/product-market-rules-section.d.ts +6 -0
- package/dist/components/product-detail/product-market-rules-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-market-rules-section.js +81 -0
- package/dist/components/product-detail/product-media-gallery.d.ts +19 -0
- package/dist/components/product-detail/product-media-gallery.d.ts.map +1 -0
- package/dist/components/product-detail/product-media-gallery.js +114 -0
- package/dist/components/product-detail/product-option-price-rule-dialog.d.ts +12 -0
- package/dist/components/product-detail/product-option-price-rule-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-option-price-rule-dialog.js +10 -0
- package/dist/components/product-detail/product-option-price-rule-form.d.ts +29 -0
- package/dist/components/product-detail/product-option-price-rule-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-option-price-rule-form.js +122 -0
- package/dist/components/product-detail/product-option-pricing-grid.d.ts +16 -0
- package/dist/components/product-detail/product-option-pricing-grid.d.ts.map +1 -0
- package/dist/components/product-detail/product-option-pricing-grid.js +236 -0
- package/dist/components/product-detail/product-options-extra-price-rules.d.ts +8 -0
- package/dist/components/product-detail/product-options-extra-price-rules.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-extra-price-rules.js +123 -0
- package/dist/components/product-detail/product-options-pricing-helpers.d.ts +14 -0
- package/dist/components/product-detail/product-options-pricing-helpers.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-pricing-helpers.js +49 -0
- package/dist/components/product-detail/product-options-pricing-panel.d.ts +17 -0
- package/dist/components/product-detail/product-options-pricing-panel.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-pricing-panel.js +88 -0
- package/dist/components/product-detail/product-options-pricing.d.ts +5 -0
- package/dist/components/product-detail/product-options-pricing.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-pricing.js +4 -0
- package/dist/components/product-detail/product-options-shared.d.ts +236 -0
- package/dist/components/product-detail/product-options-shared.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-shared.js +57 -0
- package/dist/components/product-detail/product-options-traveler-category-dialog.d.ts +12 -0
- package/dist/components/product-detail/product-options-traveler-category-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-traveler-category-dialog.js +132 -0
- package/dist/components/product-detail/product-options-unit-price-matrix.d.ts +10 -0
- package/dist/components/product-detail/product-options-unit-price-matrix.d.ts.map +1 -0
- package/dist/components/product-detail/product-options-unit-price-matrix.js +103 -0
- package/dist/components/product-detail/product-payment-policy-section.d.ts +17 -0
- package/dist/components/product-detail/product-payment-policy-section.d.ts.map +1 -0
- package/dist/components/product-detail/product-payment-policy-section.js +58 -0
- package/dist/components/product-detail/product-schedule-dialog.d.ts +11 -0
- package/dist/components/product-detail/product-schedule-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-schedule-dialog.js +10 -0
- package/dist/components/product-detail/product-schedule-form.d.ts +17 -0
- package/dist/components/product-detail/product-schedule-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-schedule-form.js +223 -0
- package/dist/components/product-detail/product-service-dialog.d.ts +12 -0
- package/dist/components/product-detail/product-service-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-service-dialog.js +10 -0
- package/dist/components/product-detail/product-service-form.d.ts +22 -0
- package/dist/components/product-detail/product-service-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-service-form.js +154 -0
- package/dist/components/product-detail/product-translation-popover.d.ts +94 -0
- package/dist/components/product-detail/product-translation-popover.d.ts.map +1 -0
- package/dist/components/product-detail/product-translation-popover.js +238 -0
- package/dist/components/product-detail/product-unit-dialog.d.ts +14 -0
- package/dist/components/product-detail/product-unit-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-dialog.js +10 -0
- package/dist/components/product-detail/product-unit-form.d.ts +34 -0
- package/dist/components/product-detail/product-unit-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-form.js +139 -0
- package/dist/components/product-detail/product-unit-price-rule-dialog.d.ts +17 -0
- package/dist/components/product-detail/product-unit-price-rule-dialog.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-price-rule-dialog.js +10 -0
- package/dist/components/product-detail/product-unit-price-rule-form.d.ts +29 -0
- package/dist/components/product-detail/product-unit-price-rule-form.d.ts.map +1 -0
- package/dist/components/product-detail/product-unit-price-rule-form.js +144 -0
- package/dist/components/product-detail/rrule-labels.d.ts +2 -0
- package/dist/components/product-detail/rrule-labels.d.ts.map +1 -0
- package/dist/components/product-detail/rrule-labels.js +65 -0
- package/dist/components/product-detail/timezone-options.d.ts +9 -0
- package/dist/components/product-detail/timezone-options.d.ts.map +1 -0
- package/dist/components/product-detail/timezone-options.js +28 -0
- package/dist/components/product-detail/use-product-detail-data.d.ts +41 -0
- package/dist/components/product-detail/use-product-detail-data.d.ts.map +1 -0
- package/dist/components/product-detail/use-product-detail-data.js +143 -0
- package/dist/components/product-detail/use-product-detail-dialogs.d.ts +24 -0
- package/dist/components/product-detail/use-product-detail-dialogs.d.ts.map +1 -0
- package/dist/components/product-detail/use-product-detail-dialogs.js +40 -0
- package/dist/components/product-detail/zod-resolver.d.ts +4 -0
- package/dist/components/product-detail/zod-resolver.d.ts.map +1 -0
- package/dist/components/product-detail/zod-resolver.js +39 -0
- package/dist/components/product-detail-page.d.ts +57 -0
- package/dist/components/product-detail-page.d.ts.map +1 -0
- package/dist/components/product-detail-page.js +118 -0
- package/dist/components/product-detail.d.ts +2 -0
- package/dist/components/product-detail.d.ts.map +1 -0
- package/dist/components/product-detail.js +1 -0
- package/dist/components/product-dialog.d.ts +9 -0
- package/dist/components/product-dialog.d.ts.map +1 -0
- package/dist/components/product-dialog.js +13 -0
- package/dist/components/product-facility-combobox.d.ts +9 -0
- package/dist/components/product-facility-combobox.d.ts.map +1 -0
- package/dist/components/product-facility-combobox.js +94 -0
- package/dist/components/product-form.d.ts +14 -0
- package/dist/components/product-form.d.ts.map +1 -0
- package/dist/components/product-form.js +191 -0
- package/dist/components/product-itinerary-day-row.d.ts +22 -0
- package/dist/components/product-itinerary-day-row.d.ts.map +1 -0
- package/dist/components/product-itinerary-day-row.js +17 -0
- package/dist/components/product-itinerary-dialog.d.ts +16 -0
- package/dist/components/product-itinerary-dialog.d.ts.map +1 -0
- package/dist/components/product-itinerary-dialog.js +85 -0
- package/dist/components/product-itinerary-section.d.ts +16 -0
- package/dist/components/product-itinerary-section.d.ts.map +1 -0
- package/dist/components/product-itinerary-section.js +105 -0
- package/dist/components/product-list.d.ts +7 -0
- package/dist/components/product-list.d.ts.map +1 -0
- package/dist/components/product-list.js +155 -0
- package/dist/components/product-media-dialog.d.ts +11 -0
- package/dist/components/product-media-dialog.d.ts.map +1 -0
- package/dist/components/product-media-dialog.js +17 -0
- package/dist/components/product-media-form.d.ts +17 -0
- package/dist/components/product-media-form.d.ts.map +1 -0
- package/dist/components/product-media-form.js +101 -0
- package/dist/components/product-media-lightbox.d.ts +7 -0
- package/dist/components/product-media-lightbox.d.ts.map +1 -0
- package/dist/components/product-media-lightbox.js +31 -0
- package/dist/components/product-media-section.d.ts +27 -0
- package/dist/components/product-media-section.d.ts.map +1 -0
- package/dist/components/product-media-section.js +130 -0
- package/dist/components/product-media-tile.d.ts +17 -0
- package/dist/components/product-media-tile.d.ts.map +1 -0
- package/dist/components/product-media-tile.js +16 -0
- package/dist/components/product-option-dialog.d.ts +11 -0
- package/dist/components/product-option-dialog.d.ts.map +1 -0
- package/dist/components/product-option-dialog.js +17 -0
- package/dist/components/product-option-form.d.ts +17 -0
- package/dist/components/product-option-form.d.ts.map +1 -0
- package/dist/components/product-option-form.js +91 -0
- package/dist/components/product-options-section.d.ts +13 -0
- package/dist/components/product-options-section.d.ts.map +1 -0
- package/dist/components/product-options-section.js +200 -0
- package/dist/components/product-quick-view-sheet.d.ts +23 -0
- package/dist/components/product-quick-view-sheet.d.ts.map +1 -0
- package/dist/components/product-quick-view-sheet.js +65 -0
- package/dist/components/product-tag-dialog.d.ts +9 -0
- package/dist/components/product-tag-dialog.d.ts.map +1 -0
- package/dist/components/product-tag-dialog.js +17 -0
- package/dist/components/product-tag-form.d.ts +15 -0
- package/dist/components/product-tag-form.d.ts.map +1 -0
- package/dist/components/product-tag-form.js +48 -0
- package/dist/components/product-tag-list.d.ts +5 -0
- package/dist/components/product-tag-list.d.ts.map +1 -0
- package/dist/components/product-tag-list.js +44 -0
- package/dist/components/product-tags-page.d.ts +7 -0
- package/dist/components/product-tags-page.d.ts.map +1 -0
- package/dist/components/product-tags-page.js +9 -0
- package/dist/components/product-tax-class-combobox.d.ts +9 -0
- package/dist/components/product-tax-class-combobox.d.ts.map +1 -0
- package/dist/components/product-tax-class-combobox.js +100 -0
- package/dist/components/product-translations-card.d.ts +7 -0
- package/dist/components/product-translations-card.d.ts.map +1 -0
- package/dist/components/product-translations-card.js +188 -0
- package/dist/components/product-type-combobox.d.ts +9 -0
- package/dist/components/product-type-combobox.d.ts.map +1 -0
- package/dist/components/product-type-combobox.js +48 -0
- package/dist/components/product-types-page.d.ts +6 -0
- package/dist/components/product-types-page.d.ts.map +1 -0
- package/dist/components/product-types-page.js +103 -0
- package/dist/components/product-version-dialog.d.ts +8 -0
- package/dist/components/product-version-dialog.d.ts.map +1 -0
- package/dist/components/product-version-dialog.js +39 -0
- package/dist/components/product-versions-section.d.ts +7 -0
- package/dist/components/product-versions-section.d.ts.map +1 -0
- package/dist/components/product-versions-section.js +19 -0
- package/dist/components/products-page.d.ts +8 -0
- package/dist/components/products-page.d.ts.map +1 -0
- package/dist/components/products-page.js +8 -0
- package/dist/extras/client.d.ts +14 -0
- package/dist/extras/client.d.ts.map +1 -0
- package/dist/extras/client.js +58 -0
- package/dist/extras/components/extra-catalog-card.d.ts +13 -0
- package/dist/extras/components/extra-catalog-card.d.ts.map +1 -0
- package/dist/extras/components/extra-catalog-card.js +52 -0
- package/dist/extras/components/product-combobox.d.ts +9 -0
- package/dist/extras/components/product-combobox.d.ts.map +1 -0
- package/dist/extras/components/product-combobox.js +46 -0
- package/dist/extras/hooks/index.d.ts +4 -0
- package/dist/extras/hooks/index.d.ts.map +1 -0
- package/dist/extras/hooks/index.js +3 -0
- package/dist/extras/hooks/use-product-extra-mutation.d.ts +70 -0
- package/dist/extras/hooks/use-product-extra-mutation.d.ts.map +1 -0
- package/dist/extras/hooks/use-product-extra-mutation.js +38 -0
- package/dist/extras/hooks/use-product-extra.d.ts +24 -0
- package/dist/extras/hooks/use-product-extra.d.ts.map +1 -0
- package/dist/extras/hooks/use-product-extra.js +12 -0
- package/dist/extras/hooks/use-product-extras.d.ts +30 -0
- package/dist/extras/hooks/use-product-extras.d.ts.map +1 -0
- package/dist/extras/hooks/use-product-extras.js +12 -0
- package/dist/extras/i18n/en.d.ts +52 -0
- package/dist/extras/i18n/en.d.ts.map +1 -0
- package/dist/extras/i18n/en.js +51 -0
- package/dist/extras/i18n/index.d.ts +5 -0
- package/dist/extras/i18n/index.d.ts.map +1 -0
- package/dist/extras/i18n/index.js +3 -0
- package/dist/extras/i18n/messages.d.ts +37 -0
- package/dist/extras/i18n/messages.d.ts.map +1 -0
- package/dist/extras/i18n/messages.js +1 -0
- package/dist/extras/i18n/provider.d.ts +126 -0
- package/dist/extras/i18n/provider.d.ts.map +1 -0
- package/dist/extras/i18n/provider.js +44 -0
- package/dist/extras/i18n/ro.d.ts +52 -0
- package/dist/extras/i18n/ro.d.ts.map +1 -0
- package/dist/extras/i18n/ro.js +51 -0
- package/dist/extras/index.d.ts +7 -0
- package/dist/extras/index.d.ts.map +1 -0
- package/dist/extras/index.js +6 -0
- package/dist/extras/provider.d.ts +2 -0
- package/dist/extras/provider.d.ts.map +1 -0
- package/dist/extras/provider.js +1 -0
- package/dist/extras/query-keys.d.ts +16 -0
- package/dist/extras/query-keys.d.ts.map +1 -0
- package/dist/extras/query-keys.js +8 -0
- package/dist/extras/query-options.d.ts +455 -0
- package/dist/extras/query-options.d.ts.map +1 -0
- package/dist/extras/query-options.js +44 -0
- package/dist/extras/schemas.d.ts +416 -0
- package/dist/extras/schemas.d.ts.map +1 -0
- package/dist/extras/schemas.js +89 -0
- package/dist/extras/ui.d.ts +3 -0
- package/dist/extras/ui.d.ts.map +1 -0
- package/dist/extras/ui.js +2 -0
- package/dist/extras-compat.d.ts +3 -0
- package/dist/extras-compat.d.ts.map +1 -0
- package/dist/extras-compat.js +1 -0
- package/dist/extras.d.ts +10 -0
- package/dist/extras.d.ts.map +1 -0
- package/dist/extras.js +9 -0
- package/dist/hooks/index.d.ts +36 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +35 -0
- package/dist/hooks/use-duplicate-product-option-mutation.d.ts +19 -0
- package/dist/hooks/use-duplicate-product-option-mutation.d.ts.map +1 -0
- package/dist/hooks/use-duplicate-product-option-mutation.js +65 -0
- package/dist/hooks/use-option-unit-mutation.d.ts +60 -0
- package/dist/hooks/use-option-unit-mutation.d.ts.map +1 -0
- package/dist/hooks/use-option-unit-mutation.js +41 -0
- package/dist/hooks/use-option-unit.d.ts +21 -0
- package/dist/hooks/use-option-unit.d.ts.map +1 -0
- package/dist/hooks/use-option-unit.js +12 -0
- package/dist/hooks/use-option-units.d.ts +27 -0
- package/dist/hooks/use-option-units.d.ts.map +1 -0
- package/dist/hooks/use-option-units.js +12 -0
- package/dist/hooks/use-product-action-ledger.d.ts +48 -0
- package/dist/hooks/use-product-action-ledger.d.ts.map +1 -0
- package/dist/hooks/use-product-action-ledger.js +12 -0
- package/dist/hooks/use-product-categories.d.ts +32 -0
- package/dist/hooks/use-product-categories.d.ts.map +1 -0
- package/dist/hooks/use-product-categories.js +29 -0
- package/dist/hooks/use-product-category-mutation.d.ts +65 -0
- package/dist/hooks/use-product-category-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-category-mutation.js +39 -0
- package/dist/hooks/use-product-category.d.ts +26 -0
- package/dist/hooks/use-product-category.d.ts.map +1 -0
- package/dist/hooks/use-product-category.js +18 -0
- package/dist/hooks/use-product-day-mutation.d.ts +43 -0
- package/dist/hooks/use-product-day-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-day-mutation.js +54 -0
- package/dist/hooks/use-product-day-service-mutation.d.ts +66 -0
- package/dist/hooks/use-product-day-service-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-day-service-mutation.js +41 -0
- package/dist/hooks/use-product-day-services.d.ts +21 -0
- package/dist/hooks/use-product-day-services.d.ts.map +1 -0
- package/dist/hooks/use-product-day-services.js +12 -0
- package/dist/hooks/use-product-day-translation-mutation.d.ts +49 -0
- package/dist/hooks/use-product-day-translation-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-day-translation-mutation.js +38 -0
- package/dist/hooks/use-product-day-translations.d.ts +19 -0
- package/dist/hooks/use-product-day-translations.d.ts.map +1 -0
- package/dist/hooks/use-product-day-translations.js +20 -0
- package/dist/hooks/use-product-days.d.ts +16 -0
- package/dist/hooks/use-product-days.d.ts.map +1 -0
- package/dist/hooks/use-product-days.js +12 -0
- package/dist/hooks/use-product-itineraries.d.ts +15 -0
- package/dist/hooks/use-product-itineraries.d.ts.map +1 -0
- package/dist/hooks/use-product-itineraries.js +12 -0
- package/dist/hooks/use-product-itinerary-days.d.ts +16 -0
- package/dist/hooks/use-product-itinerary-days.d.ts.map +1 -0
- package/dist/hooks/use-product-itinerary-days.js +12 -0
- package/dist/hooks/use-product-itinerary-mutation.d.ts +54 -0
- package/dist/hooks/use-product-itinerary-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-itinerary-mutation.js +63 -0
- package/dist/hooks/use-product-media-mutation.d.ts +101 -0
- package/dist/hooks/use-product-media-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-media-mutation.js +69 -0
- package/dist/hooks/use-product-media.d.ts +26 -0
- package/dist/hooks/use-product-media.d.ts.map +1 -0
- package/dist/hooks/use-product-media.js +12 -0
- package/dist/hooks/use-product-mutation.d.ts +121 -0
- package/dist/hooks/use-product-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-mutation.js +44 -0
- package/dist/hooks/use-product-option-mutation.d.ts +49 -0
- package/dist/hooks/use-product-option-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-option-mutation.js +39 -0
- package/dist/hooks/use-product-option.d.ts +18 -0
- package/dist/hooks/use-product-option.d.ts.map +1 -0
- package/dist/hooks/use-product-option.js +12 -0
- package/dist/hooks/use-product-options.d.ts +24 -0
- package/dist/hooks/use-product-options.d.ts.map +1 -0
- package/dist/hooks/use-product-options.js +12 -0
- package/dist/hooks/use-product-tag-mutation.d.ts +25 -0
- package/dist/hooks/use-product-tag-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-tag-mutation.js +39 -0
- package/dist/hooks/use-product-tag.d.ts +10 -0
- package/dist/hooks/use-product-tag.d.ts.map +1 -0
- package/dist/hooks/use-product-tag.js +18 -0
- package/dist/hooks/use-product-tags.d.ts +16 -0
- package/dist/hooks/use-product-tags.d.ts.map +1 -0
- package/dist/hooks/use-product-tags.js +25 -0
- package/dist/hooks/use-product-translation-mutation.d.ts +52 -0
- package/dist/hooks/use-product-translation-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-translation-mutation.js +47 -0
- package/dist/hooks/use-product-translations.d.ts +28 -0
- package/dist/hooks/use-product-translations.d.ts.map +1 -0
- package/dist/hooks/use-product-translations.js +24 -0
- package/dist/hooks/use-product-type-mutation.d.ts +50 -0
- package/dist/hooks/use-product-type-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-type-mutation.js +47 -0
- package/dist/hooks/use-product-type.d.ts +15 -0
- package/dist/hooks/use-product-type.d.ts.map +1 -0
- package/dist/hooks/use-product-type.js +12 -0
- package/dist/hooks/use-product-types.d.ts +21 -0
- package/dist/hooks/use-product-types.d.ts.map +1 -0
- package/dist/hooks/use-product-types.js +9 -0
- package/dist/hooks/use-product-version-mutation.d.ts +16 -0
- package/dist/hooks/use-product-version-mutation.d.ts.map +1 -0
- package/dist/hooks/use-product-version-mutation.js +22 -0
- package/dist/hooks/use-product-versions.d.ts +15 -0
- package/dist/hooks/use-product-versions.d.ts.map +1 -0
- package/dist/hooks/use-product-versions.js +12 -0
- package/dist/hooks/use-product.d.ts +45 -0
- package/dist/hooks/use-product.d.ts.map +1 -0
- package/dist/hooks/use-product.js +23 -0
- package/dist/hooks/use-products.d.ts +51 -0
- package/dist/hooks/use-products.d.ts.map +1 -0
- package/dist/hooks/use-products.js +38 -0
- package/dist/i18n/en-catalog.d.ts +199 -0
- package/dist/i18n/en-catalog.d.ts.map +1 -0
- package/dist/i18n/en-catalog.js +198 -0
- package/dist/i18n/en-core.d.ts +323 -0
- package/dist/i18n/en-core.d.ts.map +1 -0
- package/dist/i18n/en-core.js +322 -0
- package/dist/i18n/en-operations.d.ts +287 -0
- package/dist/i18n/en-operations.d.ts.map +1 -0
- package/dist/i18n/en-operations.js +286 -0
- package/dist/i18n/en.d.ts +803 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +8 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/message-shared.d.ts +6 -0
- package/dist/i18n/message-shared.d.ts.map +1 -0
- package/dist/i18n/message-shared.js +1 -0
- package/dist/i18n/messages-catalog.d.ts +199 -0
- package/dist/i18n/messages-catalog.d.ts.map +1 -0
- package/dist/i18n/messages-catalog.js +1 -0
- package/dist/i18n/messages-core.d.ts +304 -0
- package/dist/i18n/messages-core.d.ts.map +1 -0
- package/dist/i18n/messages-core.js +1 -0
- package/dist/i18n/messages-operations.d.ts +287 -0
- package/dist/i18n/messages-operations.d.ts.map +1 -0
- package/dist/i18n/messages-operations.js +1 -0
- package/dist/i18n/messages.d.ts +6 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +1 -0
- package/dist/i18n/provider.d.ts +1628 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro-catalog.d.ts +199 -0
- package/dist/i18n/ro-catalog.d.ts.map +1 -0
- package/dist/i18n/ro-catalog.js +198 -0
- package/dist/i18n/ro-core.d.ts +323 -0
- package/dist/i18n/ro-core.d.ts.map +1 -0
- package/dist/i18n/ro-core.js +322 -0
- package/dist/i18n/ro-operations.d.ts +287 -0
- package/dist/i18n/ro-operations.d.ts.map +1 -0
- package/dist/i18n/ro-operations.js +286 -0
- package/dist/i18n/ro.d.ts +803 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +8 -0
- package/dist/i18n-en.d.ts +2 -0
- package/dist/i18n-en.d.ts.map +1 -0
- package/dist/i18n-en.js +1 -0
- package/dist/i18n-ro.d.ts +2 -0
- package/dist/i18n-ro.d.ts.map +1 -0
- package/dist/i18n-ro.js +1 -0
- package/dist/i18n.d.ts +2 -0
- package/dist/i18n.d.ts.map +1 -0
- package/dist/i18n.js +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/operations.d.ts +53 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +13 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +114 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +34 -0
- package/dist/query-options-action-ledger.d.ts +194 -0
- package/dist/query-options-action-ledger.d.ts.map +1 -0
- package/dist/query-options-action-ledger.js +20 -0
- package/dist/query-options.d.ts +1313 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +281 -0
- package/dist/schemas.d.ts +1098 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +320 -0
- package/dist/ui.d.ts +44 -0
- package/dist/ui.d.ts.map +1 -0
- package/dist/ui.js +42 -0
- package/package.json +159 -0
- package/src/styles.css +12 -0
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
export declare const productsUiCoreRo: {
|
|
2
|
+
common: {
|
|
3
|
+
cancel: string;
|
|
4
|
+
saveChanges: string;
|
|
5
|
+
create: string;
|
|
6
|
+
add: string;
|
|
7
|
+
loading: string;
|
|
8
|
+
none: string;
|
|
9
|
+
previous: string;
|
|
10
|
+
next: string;
|
|
11
|
+
page: string;
|
|
12
|
+
active: string;
|
|
13
|
+
inactive: string;
|
|
14
|
+
mediaTypeLabels: {
|
|
15
|
+
image: string;
|
|
16
|
+
video: string;
|
|
17
|
+
document: string;
|
|
18
|
+
};
|
|
19
|
+
optionUnitTypeLabels: {
|
|
20
|
+
person: string;
|
|
21
|
+
group: string;
|
|
22
|
+
room: string;
|
|
23
|
+
vehicle: string;
|
|
24
|
+
service: string;
|
|
25
|
+
other: string;
|
|
26
|
+
};
|
|
27
|
+
optionStatusLabels: {
|
|
28
|
+
draft: string;
|
|
29
|
+
active: string;
|
|
30
|
+
archived: string;
|
|
31
|
+
};
|
|
32
|
+
productStatusLabels: {
|
|
33
|
+
draft: string;
|
|
34
|
+
active: string;
|
|
35
|
+
archived: string;
|
|
36
|
+
};
|
|
37
|
+
productBookingModeLabels: {
|
|
38
|
+
date: string;
|
|
39
|
+
date_time: string;
|
|
40
|
+
open: string;
|
|
41
|
+
stay: string;
|
|
42
|
+
transfer: string;
|
|
43
|
+
itinerary: string;
|
|
44
|
+
other: string;
|
|
45
|
+
};
|
|
46
|
+
productCapacityModeLabels: {
|
|
47
|
+
free_sale: string;
|
|
48
|
+
limited: string;
|
|
49
|
+
on_request: string;
|
|
50
|
+
};
|
|
51
|
+
productVisibilityLabels: {
|
|
52
|
+
public: string;
|
|
53
|
+
private: string;
|
|
54
|
+
hidden: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
comboboxes: {
|
|
58
|
+
product: {
|
|
59
|
+
placeholder: string;
|
|
60
|
+
empty: string;
|
|
61
|
+
};
|
|
62
|
+
productCategory: {
|
|
63
|
+
placeholder: string;
|
|
64
|
+
empty: string;
|
|
65
|
+
};
|
|
66
|
+
productType: {
|
|
67
|
+
placeholder: string;
|
|
68
|
+
empty: string;
|
|
69
|
+
};
|
|
70
|
+
facility: {
|
|
71
|
+
placeholder: string;
|
|
72
|
+
empty: string;
|
|
73
|
+
};
|
|
74
|
+
taxClass: {
|
|
75
|
+
placeholder: string;
|
|
76
|
+
empty: string;
|
|
77
|
+
};
|
|
78
|
+
contractTemplate: {
|
|
79
|
+
placeholder: string;
|
|
80
|
+
empty: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
catalogCard: {
|
|
84
|
+
untitled: string;
|
|
85
|
+
};
|
|
86
|
+
productCategoriesPage: {
|
|
87
|
+
title: string;
|
|
88
|
+
description: string;
|
|
89
|
+
};
|
|
90
|
+
productsPage: {
|
|
91
|
+
title: string;
|
|
92
|
+
description: string;
|
|
93
|
+
};
|
|
94
|
+
productDetailPage: {
|
|
95
|
+
actions: {
|
|
96
|
+
back: string;
|
|
97
|
+
edit: string;
|
|
98
|
+
delete: string;
|
|
99
|
+
createBooking: string;
|
|
100
|
+
addItinerary: string;
|
|
101
|
+
editItinerary: string;
|
|
102
|
+
deleteItinerary: string;
|
|
103
|
+
addDay: string;
|
|
104
|
+
};
|
|
105
|
+
sections: {
|
|
106
|
+
overview: {
|
|
107
|
+
title: string;
|
|
108
|
+
description: string;
|
|
109
|
+
};
|
|
110
|
+
inclusions: {
|
|
111
|
+
title: string;
|
|
112
|
+
description: string;
|
|
113
|
+
};
|
|
114
|
+
exclusions: {
|
|
115
|
+
title: string;
|
|
116
|
+
description: string;
|
|
117
|
+
};
|
|
118
|
+
terms: {
|
|
119
|
+
title: string;
|
|
120
|
+
description: string;
|
|
121
|
+
};
|
|
122
|
+
details: {
|
|
123
|
+
title: string;
|
|
124
|
+
description: string;
|
|
125
|
+
};
|
|
126
|
+
commercial: {
|
|
127
|
+
title: string;
|
|
128
|
+
description: string;
|
|
129
|
+
};
|
|
130
|
+
itinerary: {
|
|
131
|
+
title: string;
|
|
132
|
+
description: string;
|
|
133
|
+
};
|
|
134
|
+
sidebar: {
|
|
135
|
+
title: string;
|
|
136
|
+
description: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
fields: {
|
|
140
|
+
status: string;
|
|
141
|
+
bookingMode: string;
|
|
142
|
+
visibility: string;
|
|
143
|
+
capacityMode: string;
|
|
144
|
+
timezone: string;
|
|
145
|
+
productType: string;
|
|
146
|
+
facility: string;
|
|
147
|
+
taxClass: string;
|
|
148
|
+
contractTemplate: string;
|
|
149
|
+
sellAmount: string;
|
|
150
|
+
costAmount: string;
|
|
151
|
+
margin: string;
|
|
152
|
+
pax: string;
|
|
153
|
+
startDate: string;
|
|
154
|
+
endDate: string;
|
|
155
|
+
reservationTimeout: string;
|
|
156
|
+
tags: string;
|
|
157
|
+
createdAt: string;
|
|
158
|
+
updatedAt: string;
|
|
159
|
+
};
|
|
160
|
+
states: {
|
|
161
|
+
loading: string;
|
|
162
|
+
loadFailed: string;
|
|
163
|
+
notFoundTitle: string;
|
|
164
|
+
notFoundDescription: string;
|
|
165
|
+
noDescription: string;
|
|
166
|
+
noInclusions: string;
|
|
167
|
+
noExclusions: string;
|
|
168
|
+
noTerms: string;
|
|
169
|
+
noItineraries: string;
|
|
170
|
+
noDays: string;
|
|
171
|
+
deleteConfirm: string;
|
|
172
|
+
deleteItineraryConfirm: string;
|
|
173
|
+
deleteDayConfirm: string;
|
|
174
|
+
deleteServiceConfirm: string;
|
|
175
|
+
deleteFailed: string;
|
|
176
|
+
minutes: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
productDialog: {
|
|
180
|
+
titles: {
|
|
181
|
+
create: string;
|
|
182
|
+
edit: string;
|
|
183
|
+
};
|
|
184
|
+
descriptions: {
|
|
185
|
+
create: string;
|
|
186
|
+
edit: string;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
productForm: {
|
|
190
|
+
fields: {
|
|
191
|
+
name: string;
|
|
192
|
+
description: string;
|
|
193
|
+
inclusions: string;
|
|
194
|
+
exclusions: string;
|
|
195
|
+
terms: string;
|
|
196
|
+
tags: string;
|
|
197
|
+
status: string;
|
|
198
|
+
bookingMode: string;
|
|
199
|
+
productType: string;
|
|
200
|
+
facility: string;
|
|
201
|
+
taxClass: string;
|
|
202
|
+
contractTemplate: string;
|
|
203
|
+
visibility: string;
|
|
204
|
+
capacityMode: string;
|
|
205
|
+
timezone: string;
|
|
206
|
+
pax: string;
|
|
207
|
+
reservationTimeout: string;
|
|
208
|
+
sellCurrency: string;
|
|
209
|
+
sellAmount: string;
|
|
210
|
+
costAmount: string;
|
|
211
|
+
};
|
|
212
|
+
placeholders: {
|
|
213
|
+
name: string;
|
|
214
|
+
description: string;
|
|
215
|
+
inclusions: string;
|
|
216
|
+
exclusions: string;
|
|
217
|
+
terms: string;
|
|
218
|
+
tagInput: string;
|
|
219
|
+
productTypeSearch: string;
|
|
220
|
+
facilitySearch: string;
|
|
221
|
+
taxClassSearch: string;
|
|
222
|
+
contractTemplateSearch: string;
|
|
223
|
+
timezone: string;
|
|
224
|
+
pax: string;
|
|
225
|
+
reservationTimeout: string;
|
|
226
|
+
currencySearch: string;
|
|
227
|
+
amount: string;
|
|
228
|
+
};
|
|
229
|
+
validation: {
|
|
230
|
+
nameRequired: string;
|
|
231
|
+
sellCurrencyInvalid: string;
|
|
232
|
+
paxInvalid: string;
|
|
233
|
+
reservationTimeoutInvalid: string;
|
|
234
|
+
saveFailed: string;
|
|
235
|
+
};
|
|
236
|
+
actions: {
|
|
237
|
+
cancel: string;
|
|
238
|
+
saving: string;
|
|
239
|
+
create: string;
|
|
240
|
+
saveChanges: string;
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
productTranslationsCard: {
|
|
244
|
+
title: string;
|
|
245
|
+
description: string;
|
|
246
|
+
languageSelectLabel: string;
|
|
247
|
+
newLanguageLabel: string;
|
|
248
|
+
fields: {
|
|
249
|
+
languageTag: string;
|
|
250
|
+
name: string;
|
|
251
|
+
slug: string;
|
|
252
|
+
shortDescription: string;
|
|
253
|
+
description: string;
|
|
254
|
+
inclusions: string;
|
|
255
|
+
exclusions: string;
|
|
256
|
+
terms: string;
|
|
257
|
+
seoTitle: string;
|
|
258
|
+
seoDescription: string;
|
|
259
|
+
};
|
|
260
|
+
placeholders: {
|
|
261
|
+
languageTag: string;
|
|
262
|
+
newLanguage: string;
|
|
263
|
+
name: string;
|
|
264
|
+
slug: string;
|
|
265
|
+
shortDescription: string;
|
|
266
|
+
description: string;
|
|
267
|
+
inclusions: string;
|
|
268
|
+
exclusions: string;
|
|
269
|
+
terms: string;
|
|
270
|
+
seoTitle: string;
|
|
271
|
+
seoDescription: string;
|
|
272
|
+
};
|
|
273
|
+
actions: {
|
|
274
|
+
addLanguage: string;
|
|
275
|
+
copyBase: string;
|
|
276
|
+
save: string;
|
|
277
|
+
saving: string;
|
|
278
|
+
delete: string;
|
|
279
|
+
deleting: string;
|
|
280
|
+
};
|
|
281
|
+
states: {
|
|
282
|
+
loading: string;
|
|
283
|
+
loadFailed: string;
|
|
284
|
+
noTranslations: string;
|
|
285
|
+
deleteConfirm: string;
|
|
286
|
+
deleteFailed: string;
|
|
287
|
+
saveFailed: string;
|
|
288
|
+
languageRequired: string;
|
|
289
|
+
nameRequired: string;
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
productList: {
|
|
293
|
+
searchPlaceholder: string;
|
|
294
|
+
newProduct: string;
|
|
295
|
+
filters: {
|
|
296
|
+
button: string;
|
|
297
|
+
statusLabel: string;
|
|
298
|
+
statusAll: string;
|
|
299
|
+
dateLabel: string;
|
|
300
|
+
datePlaceholder: string;
|
|
301
|
+
paxLabel: string;
|
|
302
|
+
sellAmountLabel: string;
|
|
303
|
+
min: string;
|
|
304
|
+
max: string;
|
|
305
|
+
clear: string;
|
|
306
|
+
};
|
|
307
|
+
columns: {
|
|
308
|
+
name: string;
|
|
309
|
+
status: string;
|
|
310
|
+
sellAmount: string;
|
|
311
|
+
pax: string;
|
|
312
|
+
startDate: string;
|
|
313
|
+
};
|
|
314
|
+
loadFailed: string;
|
|
315
|
+
empty: string;
|
|
316
|
+
noValue: string;
|
|
317
|
+
paginationShowing: string;
|
|
318
|
+
paginationPage: string;
|
|
319
|
+
paginationPrevious: string;
|
|
320
|
+
paginationNext: string;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
//# sourceMappingURL=ro-core.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ro-core.d.ts","sourceRoot":"","sources":["../../src/i18n/ro-core.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiUK,CAAA"}
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
export const productsUiCoreRo = {
|
|
2
|
+
common: {
|
|
3
|
+
cancel: "Anuleaza",
|
|
4
|
+
saveChanges: "Salveaza modificarile",
|
|
5
|
+
create: "Creeaza",
|
|
6
|
+
add: "Adauga",
|
|
7
|
+
loading: "Se incarca...",
|
|
8
|
+
none: "—",
|
|
9
|
+
previous: "Anterior",
|
|
10
|
+
next: "Urmator",
|
|
11
|
+
page: "Pagina",
|
|
12
|
+
active: "Activ",
|
|
13
|
+
inactive: "Inactiv",
|
|
14
|
+
mediaTypeLabels: {
|
|
15
|
+
image: "Imagine",
|
|
16
|
+
video: "Video",
|
|
17
|
+
document: "Document",
|
|
18
|
+
},
|
|
19
|
+
optionUnitTypeLabels: {
|
|
20
|
+
person: "Persoana",
|
|
21
|
+
group: "Grup",
|
|
22
|
+
room: "Camera",
|
|
23
|
+
vehicle: "Vehicul",
|
|
24
|
+
service: "Serviciu",
|
|
25
|
+
other: "Altul",
|
|
26
|
+
},
|
|
27
|
+
optionStatusLabels: {
|
|
28
|
+
draft: "Ciorna",
|
|
29
|
+
active: "Activ",
|
|
30
|
+
archived: "Arhivat",
|
|
31
|
+
},
|
|
32
|
+
productStatusLabels: {
|
|
33
|
+
draft: "Ciorna",
|
|
34
|
+
active: "Activ",
|
|
35
|
+
archived: "Arhivat",
|
|
36
|
+
},
|
|
37
|
+
productBookingModeLabels: {
|
|
38
|
+
date: "Data",
|
|
39
|
+
date_time: "Data si ora",
|
|
40
|
+
open: "Deschis",
|
|
41
|
+
stay: "Sejur",
|
|
42
|
+
transfer: "Transfer",
|
|
43
|
+
itinerary: "Itinerariu",
|
|
44
|
+
other: "Altul",
|
|
45
|
+
},
|
|
46
|
+
productCapacityModeLabels: {
|
|
47
|
+
free_sale: "Vanzare libera",
|
|
48
|
+
limited: "Limitat",
|
|
49
|
+
on_request: "La cerere",
|
|
50
|
+
},
|
|
51
|
+
productVisibilityLabels: {
|
|
52
|
+
public: "Public",
|
|
53
|
+
private: "Privat",
|
|
54
|
+
hidden: "Ascuns",
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
comboboxes: {
|
|
58
|
+
product: {
|
|
59
|
+
placeholder: "Cauta produse...",
|
|
60
|
+
empty: "Nu au fost gasite produse.",
|
|
61
|
+
},
|
|
62
|
+
productCategory: {
|
|
63
|
+
placeholder: "Cauta categoria parinte...",
|
|
64
|
+
empty: "Nu au fost gasite categorii de produs.",
|
|
65
|
+
},
|
|
66
|
+
productType: {
|
|
67
|
+
placeholder: "Cauta tipuri de produs...",
|
|
68
|
+
empty: "Nu au fost gasite tipuri de produs.",
|
|
69
|
+
},
|
|
70
|
+
facility: {
|
|
71
|
+
placeholder: "Cauta facilitati...",
|
|
72
|
+
empty: "Nu au fost gasite facilitati.",
|
|
73
|
+
},
|
|
74
|
+
taxClass: {
|
|
75
|
+
placeholder: "Cauta clase fiscale...",
|
|
76
|
+
empty: "Nu au fost gasite clase fiscale.",
|
|
77
|
+
},
|
|
78
|
+
contractTemplate: {
|
|
79
|
+
placeholder: "Foloseste valoarea implicita a organizatiei",
|
|
80
|
+
empty: "Nu au fost gasite sabloane active pentru clienti.",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
catalogCard: {
|
|
84
|
+
untitled: "Produs fara nume",
|
|
85
|
+
},
|
|
86
|
+
productCategoriesPage: {
|
|
87
|
+
title: "Categorii",
|
|
88
|
+
description: "Categorii ierarhice de produse pentru organizarea catalogului.",
|
|
89
|
+
},
|
|
90
|
+
productsPage: {
|
|
91
|
+
title: "Produse",
|
|
92
|
+
description: "Administreaza ofertele, pachetele si propunerile tale.",
|
|
93
|
+
},
|
|
94
|
+
productDetailPage: {
|
|
95
|
+
actions: {
|
|
96
|
+
back: "Inapoi",
|
|
97
|
+
edit: "Editeaza",
|
|
98
|
+
delete: "Sterge",
|
|
99
|
+
createBooking: "Creeaza rezervare",
|
|
100
|
+
addItinerary: "Adauga itinerar",
|
|
101
|
+
editItinerary: "Editeaza itinerarul",
|
|
102
|
+
deleteItinerary: "Sterge itinerarul",
|
|
103
|
+
addDay: "Adauga zi",
|
|
104
|
+
},
|
|
105
|
+
sections: {
|
|
106
|
+
overview: {
|
|
107
|
+
title: "Prezentare",
|
|
108
|
+
description: "Informatii de baza si setari comerciale ale produsului.",
|
|
109
|
+
},
|
|
110
|
+
inclusions: {
|
|
111
|
+
title: "Ce este inclus",
|
|
112
|
+
description: "Evidentiaza ce primesc calatorii cu acest produs.",
|
|
113
|
+
},
|
|
114
|
+
exclusions: {
|
|
115
|
+
title: "Ce nu este inclus",
|
|
116
|
+
description: "Stabileste asteptari despre ce nu este acoperit.",
|
|
117
|
+
},
|
|
118
|
+
terms: {
|
|
119
|
+
title: "Termeni",
|
|
120
|
+
description: "Termeni, conditii si note de furnizor la nivel de produs.",
|
|
121
|
+
},
|
|
122
|
+
details: {
|
|
123
|
+
title: "Detalii",
|
|
124
|
+
description: "Clasificare, programare si configurare operationala.",
|
|
125
|
+
},
|
|
126
|
+
commercial: {
|
|
127
|
+
title: "Comercial",
|
|
128
|
+
description: "Preturi, marja si valori implicite de capacitate.",
|
|
129
|
+
},
|
|
130
|
+
itinerary: {
|
|
131
|
+
title: "Itinerar",
|
|
132
|
+
description: "Administreaza variantele de itinerar si serviciile pe zile.",
|
|
133
|
+
},
|
|
134
|
+
sidebar: {
|
|
135
|
+
title: "Stare produs",
|
|
136
|
+
description: "Status, etichete si metadate de audit.",
|
|
137
|
+
},
|
|
138
|
+
},
|
|
139
|
+
fields: {
|
|
140
|
+
status: "Status",
|
|
141
|
+
bookingMode: "Mod rezervare",
|
|
142
|
+
visibility: "Vizibilitate",
|
|
143
|
+
capacityMode: "Mod capacitate",
|
|
144
|
+
timezone: "Fus orar",
|
|
145
|
+
productType: "Tip produs",
|
|
146
|
+
facility: "Facilitate",
|
|
147
|
+
taxClass: "Clasa fiscala",
|
|
148
|
+
contractTemplate: "Sablon contract",
|
|
149
|
+
sellAmount: "Pret vanzare",
|
|
150
|
+
costAmount: "Cost",
|
|
151
|
+
margin: "Marja",
|
|
152
|
+
pax: "Pax",
|
|
153
|
+
startDate: "Data inceput",
|
|
154
|
+
endDate: "Data sfarsit",
|
|
155
|
+
reservationTimeout: "Timeout rezervare",
|
|
156
|
+
tags: "Etichete",
|
|
157
|
+
createdAt: "Creat",
|
|
158
|
+
updatedAt: "Actualizat",
|
|
159
|
+
},
|
|
160
|
+
states: {
|
|
161
|
+
loading: "Se incarca produsul...",
|
|
162
|
+
loadFailed: "Produsul nu a putut fi incarcat.",
|
|
163
|
+
notFoundTitle: "Produsul nu a fost gasit",
|
|
164
|
+
notFoundDescription: "Produsul cerut nu exista sau nu mai este disponibil.",
|
|
165
|
+
noDescription: "Nu exista descriere.",
|
|
166
|
+
noInclusions: "Nu sunt specificate incluziuni.",
|
|
167
|
+
noExclusions: "Nu sunt specificate excluziuni.",
|
|
168
|
+
noTerms: "Nu sunt specificati termeni.",
|
|
169
|
+
noItineraries: "Nu exista itinerare configurate pentru acest produs.",
|
|
170
|
+
noDays: "Nu exista zile de itinerar configurate.",
|
|
171
|
+
deleteConfirm: 'Stergi produsul "{name}"?',
|
|
172
|
+
deleteItineraryConfirm: 'Stergi itinerarul "{name}"?',
|
|
173
|
+
deleteDayConfirm: 'Stergi ziua "{dayNumber}"?',
|
|
174
|
+
deleteServiceConfirm: 'Stergi serviciul "{name}"?',
|
|
175
|
+
deleteFailed: "Produsul nu a putut fi sters.",
|
|
176
|
+
minutes: "{count} min",
|
|
177
|
+
},
|
|
178
|
+
},
|
|
179
|
+
productDialog: {
|
|
180
|
+
titles: {
|
|
181
|
+
create: "Produs nou",
|
|
182
|
+
edit: "Editeaza produsul",
|
|
183
|
+
},
|
|
184
|
+
descriptions: {
|
|
185
|
+
create: "Creeaza un produs nou in catalogul tau.",
|
|
186
|
+
edit: "Actualizeaza detaliile produsului, preturile si clasificarea.",
|
|
187
|
+
},
|
|
188
|
+
},
|
|
189
|
+
productForm: {
|
|
190
|
+
fields: {
|
|
191
|
+
name: "Nume",
|
|
192
|
+
description: "Descriere",
|
|
193
|
+
inclusions: "Ce este inclus",
|
|
194
|
+
exclusions: "Ce nu este inclus",
|
|
195
|
+
terms: "Termeni",
|
|
196
|
+
tags: "Etichete",
|
|
197
|
+
status: "Status",
|
|
198
|
+
bookingMode: "Mod rezervare",
|
|
199
|
+
productType: "Tip produs",
|
|
200
|
+
facility: "Facilitate",
|
|
201
|
+
taxClass: "Clasa fiscala",
|
|
202
|
+
contractTemplate: "Sablon contract",
|
|
203
|
+
visibility: "Vizibilitate",
|
|
204
|
+
capacityMode: "Mod capacitate",
|
|
205
|
+
timezone: "Fus orar",
|
|
206
|
+
pax: "Pax",
|
|
207
|
+
reservationTimeout: "Timeout rezervare",
|
|
208
|
+
sellCurrency: "Moneda vanzare",
|
|
209
|
+
sellAmount: "Pret vanzare",
|
|
210
|
+
costAmount: "Cost",
|
|
211
|
+
},
|
|
212
|
+
placeholders: {
|
|
213
|
+
name: "Croatia Explorer 2026",
|
|
214
|
+
description: "Prezentare scurta a produsului...",
|
|
215
|
+
inclusions: "Listeaza ce este inclus in pret...",
|
|
216
|
+
exclusions: "Listeaza ce nu este inclus in pret...",
|
|
217
|
+
terms: "Adauga conditii de anulare, note legale sau termeni de furnizor...",
|
|
218
|
+
tagInput: "Scrie o eticheta si apasa Enter",
|
|
219
|
+
productTypeSearch: "Cauta tipuri de produs...",
|
|
220
|
+
facilitySearch: "Cauta facilitati...",
|
|
221
|
+
taxClassSearch: "Cauta clase fiscale...",
|
|
222
|
+
contractTemplateSearch: "Foloseste valoarea implicita a organizatiei",
|
|
223
|
+
timezone: "Europe/Bucharest",
|
|
224
|
+
pax: "2",
|
|
225
|
+
reservationTimeout: "20",
|
|
226
|
+
currencySearch: "Cauta moneda...",
|
|
227
|
+
amount: "0.00",
|
|
228
|
+
},
|
|
229
|
+
validation: {
|
|
230
|
+
nameRequired: "Numele produsului este obligatoriu.",
|
|
231
|
+
sellCurrencyInvalid: "Moneda de vanzare trebuie sa fie un cod ISO din 3 litere.",
|
|
232
|
+
paxInvalid: "Pax trebuie sa fie un numar intreg mai mare decat zero.",
|
|
233
|
+
reservationTimeoutInvalid: "Timeout-ul rezervarii trebuie sa fie un numar intreg de minute.",
|
|
234
|
+
saveFailed: "Produsul nu a putut fi salvat.",
|
|
235
|
+
},
|
|
236
|
+
actions: {
|
|
237
|
+
cancel: "Anuleaza",
|
|
238
|
+
saving: "Se salveaza...",
|
|
239
|
+
create: "Creeaza produsul",
|
|
240
|
+
saveChanges: "Salveaza modificarile",
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
productTranslationsCard: {
|
|
244
|
+
title: "Traduceri",
|
|
245
|
+
description: "Texte localizate folosite in catalog si in paginile publice de produs.",
|
|
246
|
+
languageSelectLabel: "Limba",
|
|
247
|
+
newLanguageLabel: "Adauga limba",
|
|
248
|
+
fields: {
|
|
249
|
+
languageTag: "Cod limba",
|
|
250
|
+
name: "Titlu",
|
|
251
|
+
slug: "Slug",
|
|
252
|
+
shortDescription: "Descriere scurta",
|
|
253
|
+
description: "Descriere",
|
|
254
|
+
inclusions: "Ce este inclus",
|
|
255
|
+
exclusions: "Ce nu este inclus",
|
|
256
|
+
terms: "Termeni",
|
|
257
|
+
seoTitle: "Titlu SEO",
|
|
258
|
+
seoDescription: "Descriere SEO",
|
|
259
|
+
},
|
|
260
|
+
placeholders: {
|
|
261
|
+
languageTag: "ro",
|
|
262
|
+
newLanguage: "de-DE",
|
|
263
|
+
name: "Titlu localizat al produsului",
|
|
264
|
+
slug: "slug-localizat-produs",
|
|
265
|
+
shortDescription: "Rezumat localizat scurt...",
|
|
266
|
+
description: "Descriere localizata a produsului...",
|
|
267
|
+
inclusions: "Incluziuni localizate...",
|
|
268
|
+
exclusions: "Excluziuni localizate...",
|
|
269
|
+
terms: "Termeni localizati...",
|
|
270
|
+
seoTitle: "Titlu localizat pentru cautare",
|
|
271
|
+
seoDescription: "Descriere localizata pentru cautare...",
|
|
272
|
+
},
|
|
273
|
+
actions: {
|
|
274
|
+
addLanguage: "Adauga",
|
|
275
|
+
copyBase: "Copiaza baza",
|
|
276
|
+
save: "Salveaza traducerea",
|
|
277
|
+
saving: "Se salveaza...",
|
|
278
|
+
delete: "Sterge",
|
|
279
|
+
deleting: "Se sterge...",
|
|
280
|
+
},
|
|
281
|
+
states: {
|
|
282
|
+
loading: "Se incarca traducerile...",
|
|
283
|
+
loadFailed: "Traducerile nu au putut fi incarcate.",
|
|
284
|
+
noTranslations: "Nu exista traduceri.",
|
|
285
|
+
deleteConfirm: 'Stergi traducerea "{languageTag}"?',
|
|
286
|
+
deleteFailed: "Traducerea nu a putut fi stearsa.",
|
|
287
|
+
saveFailed: "Traducerea nu a putut fi salvata.",
|
|
288
|
+
languageRequired: "Codul limbii este obligatoriu.",
|
|
289
|
+
nameRequired: "Titlul este obligatoriu.",
|
|
290
|
+
},
|
|
291
|
+
},
|
|
292
|
+
productList: {
|
|
293
|
+
searchPlaceholder: "Cauta produse...",
|
|
294
|
+
newProduct: "Produs nou",
|
|
295
|
+
filters: {
|
|
296
|
+
button: "Filtre",
|
|
297
|
+
statusLabel: "Status",
|
|
298
|
+
statusAll: "Toate statusurile",
|
|
299
|
+
dateLabel: "Data inceput",
|
|
300
|
+
datePlaceholder: "Orice data",
|
|
301
|
+
paxLabel: "Pax",
|
|
302
|
+
sellAmountLabel: "Pret vanzare",
|
|
303
|
+
min: "Min",
|
|
304
|
+
max: "Max",
|
|
305
|
+
clear: "Sterge",
|
|
306
|
+
},
|
|
307
|
+
columns: {
|
|
308
|
+
name: "Nume",
|
|
309
|
+
status: "Status",
|
|
310
|
+
sellAmount: "Pret vanzare",
|
|
311
|
+
pax: "Pax",
|
|
312
|
+
startDate: "Data inceput",
|
|
313
|
+
},
|
|
314
|
+
loadFailed: "Produsele nu au putut fi incarcate.",
|
|
315
|
+
empty: "Nu au fost gasite produse.",
|
|
316
|
+
noValue: "—",
|
|
317
|
+
paginationShowing: "Afisezi {count} din {total}",
|
|
318
|
+
paginationPage: "Pagina {page} / {pageCount}",
|
|
319
|
+
paginationPrevious: "Anterior",
|
|
320
|
+
paginationNext: "Urmator",
|
|
321
|
+
},
|
|
322
|
+
};
|