@qite/tide-booking-component 1.4.58 → 1.4.59
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/.nvmrc +1 -0
- package/README.md +3 -3
- package/build/build-cjs/index.js +497 -3952
- package/build/build-cjs/src/booking-wizard/features/price-details/price-details-slice.d.ts +1 -278
- package/build/build-cjs/src/booking-wizard/features/price-details/selectors.d.ts +392 -0
- package/build/build-cjs/src/booking-wizard/features/sidebar/sidebar.d.ts +3 -0
- package/build/build-cjs/src/booking-wizard/types.d.ts +12 -0
- package/build/build-cjs/src/index.d.ts +1 -3
- package/build/build-cjs/src/shared/utils/localization-util.d.ts +0 -32
- package/build/build-esm/index.js +497 -3951
- package/build/build-esm/src/booking-wizard/features/price-details/price-details-slice.d.ts +1 -278
- package/build/build-esm/src/booking-wizard/features/price-details/selectors.d.ts +392 -0
- package/build/build-esm/src/booking-wizard/features/sidebar/sidebar.d.ts +3 -0
- package/build/build-esm/src/booking-wizard/types.d.ts +12 -0
- package/build/build-esm/src/index.d.ts +1 -3
- package/build/build-esm/src/shared/utils/localization-util.d.ts +0 -32
- package/package.json +2 -1
- package/src/booking-wizard/features/price-details/price-details-slice.ts +3 -44
- package/src/booking-wizard/features/price-details/selectors.ts +117 -0
- package/src/booking-wizard/features/sidebar/index.tsx +6 -3
- package/src/booking-wizard/features/sidebar/sidebar-util.ts +13 -0
- package/src/booking-wizard/features/sidebar/sidebar.tsx +49 -3
- package/src/booking-wizard/types.ts +15 -0
- package/src/content/login/login-component.tsx +2 -1
- package/src/content/login/reset-password-component.tsx +2 -1
- package/src/shared/translations/ar-SA.json +2 -0
- package/src/shared/translations/da-DK.json +2 -0
- package/src/shared/translations/de-DE.json +2 -0
- package/src/shared/translations/en-GB.json +2 -0
- package/src/shared/translations/es-ES.json +2 -0
- package/src/shared/translations/fr-BE.json +2 -0
- package/src/shared/translations/fr-FR.json +2 -0
- package/src/shared/translations/is-IS.json +2 -0
- package/src/shared/translations/it-IT.json +2 -0
- package/src/shared/translations/ja-JP.json +2 -0
- package/src/shared/translations/nl-BE.json +2 -0
- package/src/shared/translations/nl-NL.json +2 -0
- package/src/shared/translations/no-NO.json +2 -0
- package/src/shared/translations/pl-PL.json +2 -0
- package/src/shared/translations/pt-PT.json +2 -0
- package/src/shared/translations/sv-SE.json +2 -0
- package/styles/components/_pricing-summary.scss +9 -0
- package/build/build-cjs/src/content/login/confirm-component.d.ts +0 -4
- package/build/build-cjs/src/content/login/index.d.ts +0 -4
- package/build/build-cjs/src/content/login/login-component.d.ts +0 -4
- package/build/build-cjs/src/content/login/login-services.d.ts +0 -11
- package/build/build-cjs/src/content/login/reset-password-component.d.ts +0 -4
- package/build/build-cjs/src/content/login/types.d.ts +0 -24
- package/build/build-esm/src/content/login/confirm-component.d.ts +0 -4
- package/build/build-esm/src/content/login/index.d.ts +0 -4
- package/build/build-esm/src/content/login/login-component.d.ts +0 -4
- package/build/build-esm/src/content/login/login-services.d.ts +0 -11
- package/build/build-esm/src/content/login/reset-password-component.d.ts +0 -4
- package/build/build-esm/src/content/login/types.d.ts +0 -24
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v20.10.0
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@ This is the unified Tide Booking component.
|
|
|
5
5
|
## Setup
|
|
6
6
|
|
|
7
7
|
- Use Node version 20
|
|
8
|
-
- Install node modules with "npm
|
|
9
|
-
- Install node modules with "npm
|
|
8
|
+
- Install node modules with "npm ci"
|
|
9
|
+
- Install node modules with "npm ci" in the playground directory
|
|
10
10
|
- Start playground with "npm start"
|
|
11
11
|
|
|
12
12
|
## Remarks
|
|
@@ -18,7 +18,7 @@ If using the playground, after installing its node modules, execute the followin
|
|
|
18
18
|
|
|
19
19
|
When using booking-wizard in a gatsby v5 website do following steps
|
|
20
20
|
|
|
21
|
-
- Use react
|
|
21
|
+
- Use react v20 and react-router-dom@6
|
|
22
22
|
- Import only @runtime (otherwise signalr-no-query gives an error an window)
|
|
23
23
|
- Surround <BookingWizard> with a <BrowserRouter basename={basePath}> to handle the internal routing
|
|
24
24
|
- Set 'skipBasePathInRouting' to true in the settings to avoid duplicate basepaths in the internal routing.
|