@wix/vibe-bookings-plugin 0.17.0 → 0.18.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/dist/index.cjs +5 -3
- package/dist/index.cjs.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -2971,9 +2971,10 @@ var getRouterFileContent = () => {
|
|
|
2971
2971
|
} from './bookings/routes/booking-form-route';
|
|
2972
2972
|
import {
|
|
2973
2973
|
LocationSelectorPageRoute,
|
|
2974
|
+
LocationSelectorPageRouteLoader,
|
|
2974
2975
|
} from './bookings/routes/location-selector-route';
|
|
2975
2976
|
import { Booking } from '@wix/bookings/components';
|
|
2976
|
-
import { WixServicesProvider } from '@/wix-verticals/react-pages/react-router/routes/root';
|
|
2977
|
+
import { rootRouteLoader, WixServicesProvider } from '@/wix-verticals/react-pages/react-router/routes/root';
|
|
2977
2978
|
|
|
2978
2979
|
const router = createBrowserRouter(
|
|
2979
2980
|
[
|
|
@@ -2990,15 +2991,16 @@ var getRouterFileContent = () => {
|
|
|
2990
2991
|
</Booking.Root>
|
|
2991
2992
|
</WixServicesProvider>
|
|
2992
2993
|
),
|
|
2994
|
+
loader: rootRouteLoader,
|
|
2993
2995
|
children: [
|
|
2994
2996
|
{
|
|
2995
2997
|
path: 'locations',
|
|
2996
2998
|
element: <LocationSelectorPageRoute servicesPagePath="/booking/services" />,
|
|
2999
|
+
loader: LocationSelectorPageRouteLoader,
|
|
2997
3000
|
},
|
|
2998
3001
|
{
|
|
2999
3002
|
path: 'services',
|
|
3000
3003
|
element: <ServiceListPageRoute slotsPagePath="/booking/slots" />,
|
|
3001
|
-
loader: serviceListPageRouteLoader,
|
|
3002
3004
|
},
|
|
3003
3005
|
{
|
|
3004
3006
|
path: 'slots/:serviceSlug',
|
|
@@ -9679,7 +9681,7 @@ var onServiceCreated2 = createEventModule(onServiceCreated);
|
|
|
9679
9681
|
var onServiceDeleted2 = createEventModule(onServiceDeleted);
|
|
9680
9682
|
var onServiceUpdated2 = createEventModule(onServiceUpdated);
|
|
9681
9683
|
|
|
9682
|
-
// node_modules/@wix/auto_sdk_bookings_staff-members/build/es/index.mjs
|
|
9684
|
+
// ../../../node_modules/@wix/auto_sdk_bookings_staff-members/build/es/index.mjs
|
|
9683
9685
|
var es_exports2 = {};
|
|
9684
9686
|
__export(es_exports2, {
|
|
9685
9687
|
AggregationType: () => AggregationType2,
|