@qite/tide-booking-component 1.4.82 → 1.4.83
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/.husky/pre-commit +1 -2
- package/build/build-cjs/index.js +4731 -252
- package/build/build-cjs/src/search-results/components/item-picker/index.d.ts +1 -1
- package/build/build-cjs/src/search-results/store/search-results-slice.d.ts +3 -3
- package/build/build-cjs/src/search-results/utils/flight-utils.d.ts +1 -2
- package/build/build-cjs/src/search-results/utils/search-results-utils.d.ts +7 -3
- package/build/build-cjs/src/shared/utils/localization-util.d.ts +5 -0
- package/build/build-esm/index.js +4735 -246
- package/build/build-esm/src/search-results/components/item-picker/index.d.ts +1 -1
- package/build/build-esm/src/search-results/store/search-results-slice.d.ts +3 -3
- package/build/build-esm/src/search-results/utils/flight-utils.d.ts +1 -2
- package/build/build-esm/src/search-results/utils/search-results-utils.d.ts +7 -3
- package/build/build-esm/src/shared/utils/localization-util.d.ts +5 -0
- package/package.json +3 -1
- package/src/booking-wizard/features/confirmation/confirmation.tsx +1 -1
- package/src/booking-wizard/features/error/error.tsx +2 -1
- package/src/booking-wizard/features/flight-options/index.tsx +1 -1
- package/src/booking-wizard/features/product-options/options-form.tsx +2 -2
- package/src/booking-wizard/features/room-options/index.tsx +1 -1
- package/src/booking-wizard/features/summary/summary.tsx +1 -1
- package/src/booking-wizard/features/travelers-form/travelers-form.tsx +1 -1
- package/src/search-results/components/group-tour/group-tour-results.tsx +11 -3
- package/src/search-results/components/hotel/hotel-accommodation-results.tsx +114 -131
- package/src/search-results/components/hotel/hotel-card.tsx +2 -1
- package/src/search-results/components/item-picker/index.tsx +1 -1
- package/src/search-results/components/round-trip/round-trip-results.tsx +14 -4
- package/src/search-results/components/search-results-container/flight-search-results.tsx +4 -9
- package/src/search-results/components/search-results-container/search-results-container.tsx +45 -20
- package/src/search-results/components/tab-views/index.tsx +10 -7
- package/src/search-results/store/search-results-slice.ts +7 -7
- package/src/search-results/utils/flight-utils.ts +0 -13
- package/src/search-results/utils/search-results-utils.ts +31 -5
- package/src/shared/components/flyin/accommodation-flyin.tsx +169 -3
- package/src/shared/translations/ar-SA.json +3 -1
- package/src/shared/translations/da-DK.json +3 -1
- package/src/shared/translations/de-DE.json +3 -1
- package/src/shared/translations/en-GB.json +3 -1
- package/src/shared/translations/es-ES.json +3 -1
- package/src/shared/translations/fr-BE.json +3 -1
- package/src/shared/translations/fr-FR.json +3 -1
- package/src/shared/translations/is-IS.json +3 -1
- package/src/shared/translations/it-IT.json +3 -1
- package/src/shared/translations/ja-JP.json +3 -1
- package/src/shared/translations/nl-BE.json +3 -1
- package/src/shared/translations/nl-NL.json +3 -1
- package/src/shared/translations/no-NO.json +3 -1
- package/src/shared/translations/pl-PL.json +3 -1
- package/src/shared/translations/pt-PT.json +3 -1
- package/src/shared/translations/sv-SE.json +3 -1
- package/src/shared/utils/localization-util.ts +18 -0
- package/styles/components/_flyin.scss +121 -1
package/.husky/pre-commit
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
npx prettier --write .
|
|
2
|
-
git add -A
|
|
1
|
+
npx prettier --write .
|