@wix/vibe-bookings-plugin 0.57.0 → 0.59.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
|
@@ -2976,6 +2976,7 @@ var getRouterFileContent = () => {
|
|
|
2976
2976
|
// Import route components and loaders
|
|
2977
2977
|
import {
|
|
2978
2978
|
ServiceListPageRoute,
|
|
2979
|
+
serviceListPageRouteLoader,
|
|
2979
2980
|
} from './bookings/routes/service-list-route';
|
|
2980
2981
|
import {
|
|
2981
2982
|
TimeSlotListPageRoute,
|
|
@@ -3035,6 +3036,7 @@ var getRouterFileContent = () => {
|
|
|
3035
3036
|
<ServiceListPageRoute slotsPagePath="/booking/slots" formPagePath="/booking/form" />
|
|
3036
3037
|
</>
|
|
3037
3038
|
),
|
|
3039
|
+
loader: serviceListPageRouteLoader,
|
|
3038
3040
|
},
|
|
3039
3041
|
{
|
|
3040
3042
|
path: 'slots/:serviceSlug',
|
|
@@ -3118,10 +3120,10 @@ To add styling (padding, margins, background, titles), wrap each route element w
|
|
|
3118
3120
|
{
|
|
3119
3121
|
path: 'services',
|
|
3120
3122
|
element: (
|
|
3121
|
-
<div className="...
|
|
3123
|
+
<div className="... bg-background">
|
|
3122
3124
|
<BookingsBreadcrumbs currentPage={BOOKINGS_ROUTES.SERVICES} />
|
|
3123
|
-
<div className="...
|
|
3124
|
-
<h1 className="
|
|
3125
|
+
<div className="...">
|
|
3126
|
+
<h1 className="font-heading ...">Select Service</h1>
|
|
3125
3127
|
<ServiceListPageRoute slotsPagePath="/booking/slots" formPagePath="/booking/form" />
|
|
3126
3128
|
</div>
|
|
3127
3129
|
</div>
|