@thryveai/theme-interfaces 2.7.112 → 2.7.114
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/interfaces/retailer-settings.interfaces.d.ts +2 -2
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -0
- package/dist/storefront/SFUISharedSettingsTemplate.AdminUi.js +6 -0
- package/dist/storefront/defaultSettingsStorefront.js +3 -3
- package/dist/storefront/defaultSharedSettings.js +1 -0
- package/package.json +1 -1
|
@@ -639,10 +639,10 @@ export interface IProductCardV2PromotionLabelsSettings {
|
|
|
639
639
|
labelsPriority: ILabelConfig[];
|
|
640
640
|
}
|
|
641
641
|
export declare type ILabelConfig = {
|
|
642
|
-
|
|
642
|
+
_type: "pointPromo" | "promo";
|
|
643
643
|
limit: number;
|
|
644
644
|
} | {
|
|
645
|
-
|
|
645
|
+
_type: "tprPromo";
|
|
646
646
|
};
|
|
647
647
|
export declare type IProductCardLayouts = {
|
|
648
648
|
ContainersGrid: "default" | "pce-centered" | "prs-labels";
|
|
@@ -121,6 +121,12 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
121
121
|
type: exports.AdminSharedTemplateInputTypes.checkbox,
|
|
122
122
|
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/4039704585/Skip+Nearest+Store+Suggestion",
|
|
123
123
|
},
|
|
124
|
+
// addressConfirmationModal: {
|
|
125
|
+
// title: "Enable address confirmation modal",
|
|
126
|
+
// description:
|
|
127
|
+
// "This will display a modal when the customer selects an address from the list of suggestions which will allow them to confirm that they have made the correct selection and complete any remaining required fields. The address finder integration needs to be enabled.",
|
|
128
|
+
// type: AdminSharedTemplateInputTypes.checkbox,
|
|
129
|
+
// },
|
|
124
130
|
},
|
|
125
131
|
},
|
|
126
132
|
};
|
|
@@ -265,9 +265,9 @@ var DefaultConfigSFUI = {
|
|
|
265
265
|
labelSource: "name",
|
|
266
266
|
labelsLimit: 1,
|
|
267
267
|
labelsPriority: [
|
|
268
|
-
{
|
|
269
|
-
{
|
|
270
|
-
{
|
|
268
|
+
{ _type: "tprPromo" },
|
|
269
|
+
{ _type: "pointPromo", limit: 1 },
|
|
270
|
+
{ _type: "promo", limit: 1 },
|
|
271
271
|
],
|
|
272
272
|
},
|
|
273
273
|
recommendedLabel: { enabled: false },
|