@loczer/storefront-sdk 0.216.0 → 0.217.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/components/Footer/BusinessHours.d.ts +2 -9
- package/dist/components/Footer/BusinessHours.d.ts.map +1 -1
- package/dist/components/Footer/BusinessHours.js +48 -91
- package/dist/components/Footer/BusinessHoursOverviewDialog.d.ts +11 -0
- package/dist/components/Footer/BusinessHoursOverviewDialog.d.ts.map +1 -0
- package/dist/components/Footer/BusinessHoursOverviewDialog.js +161 -0
- package/dist/components/Footer/businessHoursUtils.d.ts +37 -1
- package/dist/components/Footer/businessHoursUtils.d.ts.map +1 -1
- package/dist/components/Footer/businessHoursUtils.js +112 -15
- package/dist/components/Footer/index.d.ts.map +1 -1
- package/dist/components/Footer/index.js +78 -94
- package/dist/i18n/en.d.ts +5 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +5 -0
- package/dist/i18n/fr.d.ts +5 -0
- package/dist/i18n/fr.d.ts.map +1 -1
- package/dist/i18n/fr.js +5 -0
- package/dist/index.d.ts +10 -0
- package/dist/pages/HomePage.d.ts.map +1 -1
- package/dist/pages/HomePage.js +250 -205
- package/dist/storefront.css +1 -1
- package/package.json +1 -1
|
@@ -1,172 +1,156 @@
|
|
|
1
1
|
import { resolveStorefrontMapsHref as e, resolveStorefrontPhoneContact as t } from "../../lib/storefrontContact.js";
|
|
2
2
|
import n from "../../chunks/assets/whatsapp-m5e0vjnZ.js";
|
|
3
3
|
import { MISSING_SHOP_ADDRESS as r, MISSING_SHOP_EMAIL as i, MISSING_SHOP_PHONE_NUMBER as a } from "../../lib/storefrontMissingValues.js";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
4
|
+
import { normalizeStorefrontOpeningHours as o, normalizeStorefrontOpeningHoursOverrides as s } from "./businessHoursUtils.js";
|
|
5
|
+
import { BusinessHours as c } from "./BusinessHours.js";
|
|
6
|
+
import { jsx as l, jsxs as u } from "react/jsx-runtime";
|
|
7
|
+
import { Link as d } from "@rpcbase/router";
|
|
8
|
+
import { useTranslation as f } from "react-i18next";
|
|
9
|
+
import { cn as p } from "@rpcbase/ui";
|
|
10
|
+
import { Clock as m, Mail as h, MapPin as g, Phone as _ } from "lucide-react";
|
|
10
11
|
//#region src/components/Footer/index.tsx
|
|
11
|
-
var
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
openingHours: e.openingHours.map((e) => ({
|
|
16
|
-
day: y(e.day),
|
|
17
|
-
openingSlots: e.openingSlots.map((e) => ({
|
|
18
|
-
start: e.start,
|
|
19
|
-
end: e.end
|
|
20
|
-
}))
|
|
21
|
-
}))
|
|
22
|
-
})) : [], x = (e) => Array.isArray(e) ? e.map((e) => ({
|
|
23
|
-
date: e.date,
|
|
24
|
-
openingSlots: e.openingSlots.map((e) => ({
|
|
25
|
-
start: e.start,
|
|
26
|
-
end: e.end
|
|
27
|
-
}))
|
|
28
|
-
})) : [];
|
|
29
|
-
function S({ storeSlug: y, shop: S, whatsappHref: C, whatsappPhoneDisplay: w, openingHours: T, openingHoursOverrides: E }) {
|
|
30
|
-
let { t: D } = u(), O = t(S), k = S?.emailAddress?.trim() ?? "", A = S?.address?.trim() ?? "", j = e(S), M = b(T), N = x(E), P = M.length > 0, F = y?.trim() || S?.slug?.trim() || "", I = F ? `/${encodeURIComponent(F)}/rental-terms` : "rental-terms";
|
|
31
|
-
return /* @__PURE__ */ s("footer", {
|
|
12
|
+
var v = "group inline-flex gap-2 text-sm font-normal text-slate-600 decoration-current underline-offset-4 transition-colors hover:text-slate-800 hover:underline", y = "inline-flex text-sm font-normal text-slate-600 decoration-current underline-offset-4 transition-colors hover:text-slate-800 hover:underline", b = "mt-0.5 inline-flex h-4 w-4 flex-shrink-0 items-center justify-center text-current transition-colors";
|
|
13
|
+
function x({ storeSlug: x, shop: S, whatsappHref: C, whatsappPhoneDisplay: w, openingHours: T, openingHoursOverrides: E }) {
|
|
14
|
+
let { t: D } = f(), O = t(S), k = S?.emailAddress?.trim() ?? "", A = S?.address?.trim() ?? "", j = e(S), M = o(T), N = s(E), P = M.length > 0, F = x?.trim() || S?.slug?.trim() || "", I = F ? `/${encodeURIComponent(F)}/rental-terms` : "rental-terms";
|
|
15
|
+
return /* @__PURE__ */ l("footer", {
|
|
32
16
|
className: "border-t bg-white",
|
|
33
|
-
children: /* @__PURE__ */
|
|
17
|
+
children: /* @__PURE__ */ u("div", {
|
|
34
18
|
className: "mx-auto grid max-w-7xl gap-8 px-4 py-10 sm:px-6 md:grid-cols-3",
|
|
35
19
|
children: [
|
|
36
|
-
/* @__PURE__ */
|
|
20
|
+
/* @__PURE__ */ u("div", {
|
|
37
21
|
className: "space-y-2",
|
|
38
|
-
children: [/* @__PURE__ */
|
|
22
|
+
children: [/* @__PURE__ */ l("p", {
|
|
39
23
|
className: "text-sm font-semibold text-slate-950",
|
|
40
|
-
children: /* @__PURE__ */
|
|
41
|
-
}), /* @__PURE__ */
|
|
24
|
+
children: /* @__PURE__ */ l("span", { children: D("footer_information_title") })
|
|
25
|
+
}), /* @__PURE__ */ l("nav", {
|
|
42
26
|
className: "grid gap-2",
|
|
43
27
|
"aria-label": D("footer_information_title"),
|
|
44
|
-
children: /* @__PURE__ */
|
|
45
|
-
className:
|
|
28
|
+
children: /* @__PURE__ */ l(d, {
|
|
29
|
+
className: y,
|
|
46
30
|
to: I,
|
|
47
|
-
children: /* @__PURE__ */
|
|
31
|
+
children: /* @__PURE__ */ l("span", { children: D("rental_terms_title") })
|
|
48
32
|
})
|
|
49
33
|
})]
|
|
50
34
|
}),
|
|
51
|
-
/* @__PURE__ */
|
|
35
|
+
/* @__PURE__ */ u("div", {
|
|
52
36
|
className: "space-y-2",
|
|
53
|
-
children: [/* @__PURE__ */
|
|
37
|
+
children: [/* @__PURE__ */ l("p", {
|
|
54
38
|
className: "text-sm font-semibold text-slate-950",
|
|
55
|
-
children: /* @__PURE__ */
|
|
56
|
-
}), /* @__PURE__ */
|
|
39
|
+
children: /* @__PURE__ */ l("span", { children: D("footer_contact_title") })
|
|
40
|
+
}), /* @__PURE__ */ u("div", {
|
|
57
41
|
className: "grid gap-2",
|
|
58
42
|
children: [
|
|
59
|
-
C ? /* @__PURE__ */
|
|
60
|
-
className:
|
|
43
|
+
C ? /* @__PURE__ */ u("a", {
|
|
44
|
+
className: p(v, "items-center"),
|
|
61
45
|
href: C,
|
|
62
46
|
target: "_blank",
|
|
63
47
|
rel: "noreferrer",
|
|
64
48
|
children: [
|
|
65
|
-
/* @__PURE__ */
|
|
66
|
-
className:
|
|
67
|
-
children: /* @__PURE__ */
|
|
49
|
+
/* @__PURE__ */ l("span", {
|
|
50
|
+
className: p(b, "h-5 w-5"),
|
|
51
|
+
children: /* @__PURE__ */ l("img", {
|
|
68
52
|
src: n,
|
|
69
53
|
className: "h-5 w-5 shrink-0",
|
|
70
54
|
alt: "",
|
|
71
55
|
"aria-hidden": "true"
|
|
72
56
|
})
|
|
73
57
|
}),
|
|
74
|
-
/* @__PURE__ */
|
|
75
|
-
w ? /* @__PURE__ */
|
|
58
|
+
/* @__PURE__ */ l("span", { children: D("footer_whatsapp_link") }),
|
|
59
|
+
w ? /* @__PURE__ */ l("span", {
|
|
76
60
|
className: "text-slate-500",
|
|
77
61
|
children: w
|
|
78
62
|
}) : null
|
|
79
63
|
]
|
|
80
64
|
}) : null,
|
|
81
|
-
O ? /* @__PURE__ */
|
|
82
|
-
className:
|
|
65
|
+
O ? /* @__PURE__ */ u("a", {
|
|
66
|
+
className: p(v, "items-center"),
|
|
83
67
|
href: O.href,
|
|
84
68
|
"aria-label": O.phoneDisplay,
|
|
85
|
-
children: [/* @__PURE__ */
|
|
86
|
-
className:
|
|
87
|
-
children: /* @__PURE__ */
|
|
69
|
+
children: [/* @__PURE__ */ l("span", {
|
|
70
|
+
className: b,
|
|
71
|
+
children: /* @__PURE__ */ l(_, {
|
|
88
72
|
className: "h-4 w-4",
|
|
89
73
|
"aria-hidden": "true"
|
|
90
74
|
})
|
|
91
|
-
}), /* @__PURE__ */
|
|
92
|
-
}) : /* @__PURE__ */
|
|
93
|
-
className:
|
|
94
|
-
children: [/* @__PURE__ */
|
|
95
|
-
className:
|
|
96
|
-
children: /* @__PURE__ */
|
|
75
|
+
}), /* @__PURE__ */ l("span", { children: O.phoneDisplay })]
|
|
76
|
+
}) : /* @__PURE__ */ u("div", {
|
|
77
|
+
className: p(v, "items-center text-destructive hover:text-destructive hover:no-underline"),
|
|
78
|
+
children: [/* @__PURE__ */ l("span", {
|
|
79
|
+
className: b,
|
|
80
|
+
children: /* @__PURE__ */ l(_, {
|
|
97
81
|
className: "h-4 w-4",
|
|
98
82
|
"aria-hidden": "true"
|
|
99
83
|
})
|
|
100
|
-
}), /* @__PURE__ */
|
|
84
|
+
}), /* @__PURE__ */ l("span", { children: a })]
|
|
101
85
|
}),
|
|
102
|
-
k ? /* @__PURE__ */
|
|
103
|
-
className:
|
|
86
|
+
k ? /* @__PURE__ */ u("a", {
|
|
87
|
+
className: p(v, "items-center"),
|
|
104
88
|
href: `mailto:${k}`,
|
|
105
89
|
"aria-label": k,
|
|
106
|
-
children: [/* @__PURE__ */
|
|
107
|
-
className:
|
|
108
|
-
children: /* @__PURE__ */
|
|
90
|
+
children: [/* @__PURE__ */ l("span", {
|
|
91
|
+
className: b,
|
|
92
|
+
children: /* @__PURE__ */ l(h, {
|
|
109
93
|
className: "h-4 w-4",
|
|
110
94
|
"aria-hidden": "true"
|
|
111
95
|
})
|
|
112
|
-
}), /* @__PURE__ */
|
|
113
|
-
}) : /* @__PURE__ */
|
|
114
|
-
className:
|
|
115
|
-
children: [/* @__PURE__ */
|
|
116
|
-
className:
|
|
117
|
-
children: /* @__PURE__ */
|
|
96
|
+
}), /* @__PURE__ */ l("span", { children: k })]
|
|
97
|
+
}) : /* @__PURE__ */ u("div", {
|
|
98
|
+
className: p(v, "items-center text-destructive hover:text-destructive hover:no-underline"),
|
|
99
|
+
children: [/* @__PURE__ */ l("span", {
|
|
100
|
+
className: b,
|
|
101
|
+
children: /* @__PURE__ */ l(h, {
|
|
118
102
|
className: "h-4 w-4",
|
|
119
103
|
"aria-hidden": "true"
|
|
120
104
|
})
|
|
121
|
-
}), /* @__PURE__ */
|
|
105
|
+
}), /* @__PURE__ */ l("span", { children: i })]
|
|
122
106
|
}),
|
|
123
|
-
j && A ? /* @__PURE__ */
|
|
124
|
-
className:
|
|
107
|
+
j && A ? /* @__PURE__ */ u("a", {
|
|
108
|
+
className: p(v, "items-start"),
|
|
125
109
|
href: j,
|
|
126
110
|
target: "_blank",
|
|
127
111
|
rel: "noreferrer",
|
|
128
|
-
children: [/* @__PURE__ */
|
|
129
|
-
className:
|
|
130
|
-
children: /* @__PURE__ */
|
|
112
|
+
children: [/* @__PURE__ */ l("span", {
|
|
113
|
+
className: b,
|
|
114
|
+
children: /* @__PURE__ */ l(g, {
|
|
131
115
|
className: "h-4 w-4",
|
|
132
116
|
"aria-hidden": "true"
|
|
133
117
|
})
|
|
134
|
-
}), /* @__PURE__ */
|
|
135
|
-
}) : /* @__PURE__ */
|
|
136
|
-
className:
|
|
137
|
-
children: [/* @__PURE__ */
|
|
138
|
-
className:
|
|
139
|
-
children: /* @__PURE__ */
|
|
118
|
+
}), /* @__PURE__ */ l("span", { children: A })]
|
|
119
|
+
}) : /* @__PURE__ */ u("div", {
|
|
120
|
+
className: p(v, "items-start text-destructive hover:text-destructive hover:no-underline"),
|
|
121
|
+
children: [/* @__PURE__ */ l("span", {
|
|
122
|
+
className: b,
|
|
123
|
+
children: /* @__PURE__ */ l(g, {
|
|
140
124
|
className: "h-4 w-4",
|
|
141
125
|
"aria-hidden": "true"
|
|
142
126
|
})
|
|
143
|
-
}), /* @__PURE__ */
|
|
127
|
+
}), /* @__PURE__ */ l("span", { children: r })]
|
|
144
128
|
})
|
|
145
129
|
]
|
|
146
130
|
})]
|
|
147
131
|
}),
|
|
148
|
-
/* @__PURE__ */
|
|
132
|
+
/* @__PURE__ */ u("div", {
|
|
149
133
|
className: "space-y-2",
|
|
150
|
-
children: [/* @__PURE__ */
|
|
134
|
+
children: [/* @__PURE__ */ l("p", {
|
|
151
135
|
className: "text-sm font-semibold text-slate-950",
|
|
152
|
-
children: /* @__PURE__ */
|
|
153
|
-
}), P ? /* @__PURE__ */
|
|
136
|
+
children: /* @__PURE__ */ l("span", { children: D("footer_hours_title") })
|
|
137
|
+
}), P ? /* @__PURE__ */ l(c, {
|
|
154
138
|
openingHours: M,
|
|
155
139
|
openingHoursOverrides: N
|
|
156
|
-
}) : /* @__PURE__ */
|
|
140
|
+
}) : /* @__PURE__ */ u("div", {
|
|
157
141
|
className: "grid gap-1 text-sm text-slate-700",
|
|
158
|
-
children: [/* @__PURE__ */
|
|
142
|
+
children: [/* @__PURE__ */ u("p", {
|
|
159
143
|
className: "inline-flex items-center gap-2",
|
|
160
|
-
children: [/* @__PURE__ */
|
|
144
|
+
children: [/* @__PURE__ */ l(m, {
|
|
161
145
|
className: "h-4 w-4 text-slate-400",
|
|
162
146
|
"aria-hidden": "true"
|
|
163
|
-
}), /* @__PURE__ */
|
|
164
|
-
}), /* @__PURE__ */
|
|
147
|
+
}), /* @__PURE__ */ l("span", { children: D("footer_hours_week") })]
|
|
148
|
+
}), /* @__PURE__ */ u("p", {
|
|
165
149
|
className: "inline-flex items-center gap-2",
|
|
166
|
-
children: [/* @__PURE__ */
|
|
150
|
+
children: [/* @__PURE__ */ l(m, {
|
|
167
151
|
className: "h-4 w-4 text-slate-400",
|
|
168
152
|
"aria-hidden": "true"
|
|
169
|
-
}), /* @__PURE__ */
|
|
153
|
+
}), /* @__PURE__ */ l("span", { children: D("footer_hours_weekend") })]
|
|
170
154
|
})]
|
|
171
155
|
})]
|
|
172
156
|
})
|
|
@@ -175,4 +159,4 @@ function S({ storeSlug: y, shop: S, whatsappHref: C, whatsappPhoneDisplay: w, op
|
|
|
175
159
|
});
|
|
176
160
|
}
|
|
177
161
|
//#endregion
|
|
178
|
-
export {
|
|
162
|
+
export { x as Footer };
|
package/dist/i18n/en.d.ts
CHANGED
|
@@ -19,6 +19,11 @@ export declare const storefront: {
|
|
|
19
19
|
checkout_button: string;
|
|
20
20
|
storefront_popup_title_fallback: string;
|
|
21
21
|
status_open: string;
|
|
22
|
+
business_hours_modal_title: string;
|
|
23
|
+
business_hours_modal_description: string;
|
|
24
|
+
business_hours_google_maps_note: string;
|
|
25
|
+
business_hours_exceptions_title: string;
|
|
26
|
+
business_hours_exceptions_description: string;
|
|
22
27
|
hero_title: string;
|
|
23
28
|
hero_description: string;
|
|
24
29
|
feature_secure_payment_title: string;
|
package/dist/i18n/en.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6ftB,CAAA"}
|
package/dist/i18n/en.js
CHANGED
|
@@ -20,6 +20,11 @@ var e = {
|
|
|
20
20
|
checkout_button: "Checkout",
|
|
21
21
|
storefront_popup_title_fallback: "Update",
|
|
22
22
|
status_open: "Currently open",
|
|
23
|
+
business_hours_modal_title: "Opening hours by season",
|
|
24
|
+
business_hours_modal_description: "See seasonal opening times and upcoming special hours.",
|
|
25
|
+
business_hours_google_maps_note: "Always check the latest hours on Google Maps to confirm hours.",
|
|
26
|
+
business_hours_exceptions_title: "Special opening hours",
|
|
27
|
+
business_hours_exceptions_description: "These hours replace the usual seasonal schedule on the dates shown.",
|
|
23
28
|
hero_title: "Book your bike in minutes",
|
|
24
29
|
hero_description: "Pick your dates, then choose the right bike for your trip.",
|
|
25
30
|
feature_secure_payment_title: "Secure payment",
|
package/dist/i18n/fr.d.ts
CHANGED
|
@@ -19,6 +19,11 @@ export declare const storefront: {
|
|
|
19
19
|
checkout_button: string;
|
|
20
20
|
storefront_popup_title_fallback: string;
|
|
21
21
|
status_open: string;
|
|
22
|
+
business_hours_modal_title: string;
|
|
23
|
+
business_hours_modal_description: string;
|
|
24
|
+
business_hours_google_maps_note: string;
|
|
25
|
+
business_hours_exceptions_title: string;
|
|
26
|
+
business_hours_exceptions_description: string;
|
|
22
27
|
hero_title: string;
|
|
23
28
|
hero_description: string;
|
|
24
29
|
feature_secure_payment_title: string;
|
package/dist/i18n/fr.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../src/i18n/fr.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../src/i18n/fr.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8ftB,CAAA"}
|
package/dist/i18n/fr.js
CHANGED
|
@@ -20,6 +20,11 @@ var e = {
|
|
|
20
20
|
checkout_button: "Commander",
|
|
21
21
|
storefront_popup_title_fallback: "Information",
|
|
22
22
|
status_open: "Ouvert en ce moment",
|
|
23
|
+
business_hours_modal_title: "Horaires par saison",
|
|
24
|
+
business_hours_modal_description: "Consultez les horaires par saison et les prochains horaires exceptionnels.",
|
|
25
|
+
business_hours_google_maps_note: "Vérifiez toujours les derniers horaires sur Google Maps pour confirmer les horaires.",
|
|
26
|
+
business_hours_exceptions_title: "Horaires exceptionnels",
|
|
27
|
+
business_hours_exceptions_description: "Ces horaires remplacent ceux de la saison aux dates indiquées.",
|
|
23
28
|
hero_title: "Réservez votre vélo en quelques minutes",
|
|
24
29
|
hero_description: "Choisissez vos dates, puis sélectionnez le vélo adapté à votre sortie.",
|
|
25
30
|
feature_secure_payment_title: "Paiement sécurisé",
|
package/dist/index.d.ts
CHANGED
|
@@ -4036,6 +4036,11 @@ export declare const storefrontEn: {
|
|
|
4036
4036
|
checkout_button: string;
|
|
4037
4037
|
storefront_popup_title_fallback: string;
|
|
4038
4038
|
status_open: string;
|
|
4039
|
+
business_hours_modal_title: string;
|
|
4040
|
+
business_hours_modal_description: string;
|
|
4041
|
+
business_hours_google_maps_note: string;
|
|
4042
|
+
business_hours_exceptions_title: string;
|
|
4043
|
+
business_hours_exceptions_description: string;
|
|
4039
4044
|
hero_title: string;
|
|
4040
4045
|
hero_description: string;
|
|
4041
4046
|
feature_secure_payment_title: string;
|
|
@@ -4573,6 +4578,11 @@ export declare const storefrontFr: {
|
|
|
4573
4578
|
checkout_button: string;
|
|
4574
4579
|
storefront_popup_title_fallback: string;
|
|
4575
4580
|
status_open: string;
|
|
4581
|
+
business_hours_modal_title: string;
|
|
4582
|
+
business_hours_modal_description: string;
|
|
4583
|
+
business_hours_google_maps_note: string;
|
|
4584
|
+
business_hours_exceptions_title: string;
|
|
4585
|
+
business_hours_exceptions_description: string;
|
|
4576
4586
|
hero_title: string;
|
|
4577
4587
|
hero_description: string;
|
|
4578
4588
|
feature_secure_payment_title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HomePage.d.ts","sourceRoot":"","sources":["../../src/pages/HomePage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"HomePage.d.ts","sourceRoot":"","sources":["../../src/pages/HomePage.tsx"],"names":[],"mappings":"AAoJA,MAAM,CAAC,OAAO,UAAU,QAAQ,4CAk0B/B"}
|