@thryveai/theme-interfaces 2.7.31 → 2.7.33
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.
|
@@ -193,6 +193,7 @@ export interface ITimeslotModalSettings {
|
|
|
193
193
|
timeslotRequiredToAddToCart: boolean;
|
|
194
194
|
timeslotRequiredToViewCartReview: boolean;
|
|
195
195
|
timeslotRequiredToViewCheckout: boolean;
|
|
196
|
+
enableSelectToContinueText: boolean;
|
|
196
197
|
}
|
|
197
198
|
export declare type IAdvertsData = {
|
|
198
199
|
[screen in IScreenType]?: string;
|
|
@@ -358,6 +359,7 @@ export interface ISiteSettingsV2 {
|
|
|
358
359
|
defaultShoppingMode: "pickup" | "planning" | "delivery";
|
|
359
360
|
defaultStoreLocation: IDefaultStoreLocation;
|
|
360
361
|
defaultTabView: "listView" | "mapView";
|
|
362
|
+
showChangeCustomerEmail: boolean;
|
|
361
363
|
disableTprPrice: boolean;
|
|
362
364
|
footerVersion: IFooterTypes;
|
|
363
365
|
googleAutocompleteSettings: IGoogleAutocompleteSettings;
|
|
@@ -704,6 +704,12 @@ exports.AdminSettingsTemplateSFUI = {
|
|
|
704
704
|
type: exports.AdminTemplateInputTypes.dropdown,
|
|
705
705
|
options: ["listView", "mapView"],
|
|
706
706
|
},
|
|
707
|
+
showChangeCustomerEmail: {
|
|
708
|
+
title: "Show EDit Customer Email Button",
|
|
709
|
+
description: "Allows users to change their email address",
|
|
710
|
+
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3708780694/Default+Tab+View",
|
|
711
|
+
type: exports.AdminTemplateInputTypes.checkbox,
|
|
712
|
+
},
|
|
707
713
|
disableTprPrice: {
|
|
708
714
|
title: "Disable TPR Price",
|
|
709
715
|
description: "Disable the display of tpr pricing",
|
|
@@ -844,6 +850,11 @@ exports.AdminSettingsTemplateSFUI = {
|
|
|
844
850
|
description: "Force a timeslot selection in order to view checkout",
|
|
845
851
|
type: exports.AdminTemplateInputTypes.checkbox,
|
|
846
852
|
},
|
|
853
|
+
enableSelectToContinueText: {
|
|
854
|
+
title: "Show a message on timeslot selection",
|
|
855
|
+
description: "When enabled, a message will be showed to the users to indicate 'something'",
|
|
856
|
+
type: exports.AdminTemplateInputTypes.checkbox,
|
|
857
|
+
},
|
|
847
858
|
},
|
|
848
859
|
},
|
|
849
860
|
headerLinks: {
|
|
@@ -241,6 +241,7 @@ var DefaultConfigSFUI = {
|
|
|
241
241
|
},
|
|
242
242
|
defaultShoppingMode: "pickup",
|
|
243
243
|
defaultTabView: "listView",
|
|
244
|
+
showChangeCustomerEmail: false,
|
|
244
245
|
defaultStoreLocation: {
|
|
245
246
|
latitude: 0,
|
|
246
247
|
longitude: 0,
|
|
@@ -290,6 +291,7 @@ var DefaultConfigSFUI = {
|
|
|
290
291
|
timeslotRequiredToAddToCart: false,
|
|
291
292
|
timeslotRequiredToViewCartReview: false,
|
|
292
293
|
timeslotRequiredToViewCheckout: false,
|
|
294
|
+
enableSelectToContinueText: false,
|
|
293
295
|
},
|
|
294
296
|
useContentEngineV2Components: {
|
|
295
297
|
Carousel: false,
|