@thryveai/theme-interfaces 2.7.89 → 2.7.91
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/icons.interfaces.d.ts +1 -1
- package/dist/interfaces/retailer-settings.interfaces.d.ts +0 -8
- package/dist/interfaces/shared-settings.interfaces.d.ts +6 -8
- package/dist/storefront/SFUISharedSettingsTemplate.AdminUi.js +8 -33
- package/dist/storefront/defaultIconsStorefront.js +0 -1
- package/dist/storefront/defaultSettingsStorefront.js +0 -4
- package/dist/storefront/defaultSharedSettings.js +3 -7
- package/package.json +1 -1
|
@@ -3,5 +3,5 @@ export declare type IIconsObject = {
|
|
|
3
3
|
};
|
|
4
4
|
export declare type PaymentTypesLogos = "AmExpCard" | "AmExpLogo" | "Comodo" | "DiscoverCard" | "DiscoverLogo" | "MasterLogo" | "MasterSecure" | "VisaLogo" | "VisaVerified";
|
|
5
5
|
export declare type PaymentCards = "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "PayPal" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard";
|
|
6
|
-
export declare type IconNames = "AccountOutline" | "AccountSolid" | "Addresses" | "ApplePay" | "ArrowDown" | "
|
|
6
|
+
export declare type IconNames = "AccountOutline" | "AccountSolid" | "Addresses" | "ApplePay" | "ArrowDown" | "ArrowRight" | "ArrowUpdown" | "BarScan" | "Bell" | "Blog" | "Cart" | "Check" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Circular" | "Clear" | "Close" | "Coupon" | "Credit" | "Dashboard" | "DeliveryOutline" | "DeliverySolid" | "Dietary" | "DoubleArrows" | "Download" | "Dropship" | "EBT" | "Eco" | "Edit" | "Error" | "FaceHappy" | "FaceSad" | "Facebook" | "Fav" | "FavSolid" | "Filter" | "Flag" | "Geolocate" | "GooglePay" | "Hamburger" | "Help" | "Home" | "Info" | "Instacart" | "InstacartLogo" | "Instagram" | "InstructionsFilled" | "ItemLocation" | "ListCheck" | "ListItems" | "ListLarge" | "ListRemove" | "ListSave" | "ListSearch" | "LocationDistance" | "LocationPin" | "LoyaltyCard" | "Mail" | "Minus" | "MoreOptionsH" | "MoreOptionsV" | "None" | "Note" | "NoteFilled" | "Notifications" | "Orders" | "PastPurchases" | "PayPal" | "Pause" | "PaymentOutline" | "PaymentSolid" | "Phone" | "PhoneMobile" | "Pickup" | "PickupInfo" | "Pinterest" | "Plus" | "Print" | "PromoOutline" | "PromoSolid" | "RadioActive" | "RadioEmpty" | "RecipeCalories" | "RecipeCooktime" | "RecipeIngredients" | "RecipePreptime" | "RecipeServings" | "Remove" | "Reserve" | "ReserveTime" | "Search" | "SelectCheck" | "SelectEmpty" | "SelectMark" | "Send" | "Settings" | "Share" | "SodiumWarning" | "SortGrid" | "SortList" | "StarOutline" | "StarSolid" | "Subscription" | "Substitute" | "SubstituteBestmatch" | "SubstituteNone" | "SubstituteProduct" | "Trash" | "Twitter" | "Unavailable" | "Voice" | "Warning" | "YourLocation" | "Youtube" | PaymentTypesLogos | PaymentCards | ProductAttributeIcons;
|
|
7
7
|
export declare type ProductAttributeIcons = "GlutenFree" | "Organic" | "Local" | "DairyFree" | "DiabetesFriendly" | "EggFree" | "FairTrade" | "NoArtificialIngredients" | "Halal" | "HeartHealth" | "NoHighFructoseCornSyrup" | "KetoFriendly" | "Kosher" | "LactoseFree" | "LowFODMAP" | "LowSodium" | "NoAddedSugar" | "NonGMO" | "Paleo" | "PeanutFree" | "PlantGoodness" | "SoyFree" | "Vegan" | "WholeGrain" | "BottleDeposit";
|
|
@@ -403,7 +403,6 @@ export interface ISiteSettingsV2 {
|
|
|
403
403
|
useAdsV1: boolean;
|
|
404
404
|
advertProductView: boolean;
|
|
405
405
|
showCartValueOnMobile: boolean;
|
|
406
|
-
scrollToTopButton: IScrollToTopButton;
|
|
407
406
|
}
|
|
408
407
|
export interface IHeaderLinksLayout {
|
|
409
408
|
enabled: boolean;
|
|
@@ -645,10 +644,3 @@ export interface IMobileViewCardLayout {
|
|
|
645
644
|
enabled: boolean;
|
|
646
645
|
defaultView: "List" | "Grid";
|
|
647
646
|
}
|
|
648
|
-
export interface IScrollToTopButton {
|
|
649
|
-
enabled: boolean;
|
|
650
|
-
percentOffset: {
|
|
651
|
-
right: number;
|
|
652
|
-
bottom: number;
|
|
653
|
-
};
|
|
654
|
-
}
|
|
@@ -1,19 +1,16 @@
|
|
|
1
|
-
import { IAdminOnlyV2 } from "./retailer-settings.interfaces";
|
|
2
1
|
export interface ISharedSettings {
|
|
3
2
|
features: ISharedFeatures;
|
|
4
|
-
|
|
3
|
+
checkout: ISharedCheckout;
|
|
5
4
|
general: ISharedGeneral;
|
|
6
|
-
adminPanelOnly: IAdminOnlyV2;
|
|
7
5
|
}
|
|
8
6
|
export interface ISharedFeatures {
|
|
9
7
|
specialRequestItems: ISpecialRequestItems;
|
|
10
8
|
}
|
|
11
9
|
export interface ISharedCheckout {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
};
|
|
10
|
+
preserveOrderNote: IOrderInstructions;
|
|
11
|
+
}
|
|
12
|
+
interface IOrderInstructions {
|
|
13
|
+
enabled: boolean;
|
|
17
14
|
}
|
|
18
15
|
export interface ISpecialRequestItems {
|
|
19
16
|
enable: boolean;
|
|
@@ -22,3 +19,4 @@ export interface ISpecialRequestItems {
|
|
|
22
19
|
export interface ISharedGeneral {
|
|
23
20
|
enableStoreSelectorList: boolean;
|
|
24
21
|
}
|
|
22
|
+
export {};
|
|
@@ -17,23 +17,6 @@ exports.AdminSharedTemplateInputTypes = {
|
|
|
17
17
|
storeSelection: "storeSelection",
|
|
18
18
|
};
|
|
19
19
|
exports.AdminSharedSettingsTemplateSFUI = {
|
|
20
|
-
adminPanelOnly: {
|
|
21
|
-
title: "Retailer Details",
|
|
22
|
-
description: "Only used to identify the banner in the admin panel",
|
|
23
|
-
type: exports.AdminSharedTemplateInputTypes.collapsableObject,
|
|
24
|
-
value: {
|
|
25
|
-
bannerName: {
|
|
26
|
-
title: "Retailer Name",
|
|
27
|
-
description: "Set the banner name here.",
|
|
28
|
-
type: exports.AdminSharedTemplateInputTypes.inputChar,
|
|
29
|
-
},
|
|
30
|
-
logoUrl: {
|
|
31
|
-
title: "Retailer Logo",
|
|
32
|
-
description: "Set a logo here to help identify the banner.",
|
|
33
|
-
type: exports.AdminSharedTemplateInputTypes.images,
|
|
34
|
-
},
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
20
|
features: {
|
|
38
21
|
title: "Shared Features",
|
|
39
22
|
description: "Global Features for the website and app",
|
|
@@ -60,28 +43,20 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
60
43
|
},
|
|
61
44
|
},
|
|
62
45
|
},
|
|
63
|
-
|
|
46
|
+
checkout: {
|
|
64
47
|
title: "Checkout",
|
|
65
48
|
description: "Shared checkout settings",
|
|
66
49
|
type: exports.AdminSharedTemplateInputTypes.collapsableObject,
|
|
67
50
|
value: {
|
|
68
|
-
|
|
69
|
-
title: "
|
|
70
|
-
description: "
|
|
51
|
+
preserveOrderNote: {
|
|
52
|
+
title: "Order Instructions",
|
|
53
|
+
description: "",
|
|
71
54
|
type: exports.AdminSharedTemplateInputTypes.collapsableObject,
|
|
72
55
|
value: {
|
|
73
|
-
|
|
74
|
-
title: "
|
|
75
|
-
description: "
|
|
76
|
-
type: exports.AdminSharedTemplateInputTypes.
|
|
77
|
-
value: {
|
|
78
|
-
checkboxLabel: {
|
|
79
|
-
title: "CheckboxLabel",
|
|
80
|
-
description: "CheckboxLabel",
|
|
81
|
-
type: exports.AdminSharedTemplateInputTypes.checkbox,
|
|
82
|
-
value: true,
|
|
83
|
-
},
|
|
84
|
-
},
|
|
56
|
+
enabled: {
|
|
57
|
+
title: "Enable order instructions saving",
|
|
58
|
+
description: "This will display a checkbox below the order instrucitons comment box in the checkout. If selected the text entered in the comment box will be saved for the customer next order.",
|
|
59
|
+
type: exports.AdminSharedTemplateInputTypes.checkbox,
|
|
85
60
|
},
|
|
86
61
|
},
|
|
87
62
|
},
|
|
@@ -9,7 +9,6 @@ var DefaultIconsSFUI = {
|
|
|
9
9
|
"ApplePay": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg id=\"ApplePayLayer_9\" data-name=\"Layer 9\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 45.86 32.23\" role=\"presentation\"><path d=\"m38.32,4.11H7.54c-.13,0-.26,0-.38,0-.11,0-.22,0-.32,0-.24,0-.47.02-.71.06-.24.04-.46.11-.67.22-.21.11-.4.25-.57.41-.17.17-.31.36-.41.57-.11.21-.18.43-.22.67-.04.23-.06.47-.06.7,0,.11,0,.22,0,.32,0,.13,0,.26,0,.38v17.29c0,.13,0,.26,0,.38,0,.11,0,.22,0,.32,0,.23.02.47.06.7.04.24.11.46.22.67.11.21.25.4.41.57.17.17.36.31.57.41.21.11.43.18.67.22.23.04.47.06.71.06.11,0,.22,0,.32,0,.13,0,.26,0,.38,0h30.77c.13,0,.26,0,.38,0,.11,0,.22,0,.32,0,.23,0,.47-.02.71-.06.24-.04.46-.11.67-.22.21-.11.4-.25.57-.41.17-.17.31-.36.41-.57.11-.21.18-.43.22-.67.04-.23.06-.47.06-.7,0-.11,0-.22,0-.32,0-.13,0-.26,0-.38V7.47c0-.13,0-.26,0-.38,0-.11,0-.22,0-.32,0-.24-.02-.47-.06-.7-.04-.24-.11-.46-.22-.67-.11-.21-.25-.4-.41-.57-.17-.17-.36-.31-.57-.41-.21-.11-.43-.18-.67-.22-.23-.04-.47-.06-.71-.06-.11,0-.22,0-.32,0-.13,0-.26,0-.38,0h0Z\" style=\"fill:#010101\"/><path d=\"m38.32,4.91h.38c.1,0,.21,0,.31,0,.18,0,.39.01.58.05.17.03.31.08.45.15.14.07.26.16.37.27.11.11.2.23.27.37.07.14.12.28.15.45.03.19.04.4.05.58,0,.1,0,.2,0,.31,0,.13,0,.25,0,.38v17.29c0,.13,0,.25,0,.38,0,.1,0,.2,0,.31,0,.18-.01.39-.05.59-.03.17-.08.31-.15.45-.07.14-.16.26-.27.37-.11.11-.23.2-.37.27-.14.07-.28.12-.45.15-.2.04-.42.05-.58.05-.1,0-.21,0-.31,0-.13,0-.25,0-.38,0H7.54c-.12,0-.25,0-.38,0-.1,0-.21,0-.31,0-.17,0-.39-.01-.59-.05-.17-.03-.31-.08-.45-.15-.14-.07-.26-.16-.37-.27-.11-.11-.2-.23-.27-.37-.07-.14-.12-.28-.15-.45-.04-.2-.04-.4-.05-.58,0-.1,0-.2,0-.31v-.3s0-.08,0-.08V7.39s0-.3,0-.3c0-.1,0-.2,0-.31,0-.18.01-.39.05-.59.03-.17.08-.31.15-.45.07-.14.16-.26.27-.37.11-.11.23-.2.37-.27.14-.07.28-.12.45-.15.2-.04.41-.04.59-.05.1,0,.21,0,.31,0h.38s30.77,0,30.77,0\" style=\"fill:#fff\"/><g><g><path d=\"m14.42,12.19c.32-.4.54-.94.48-1.49-.47.02-1.04.31-1.38.71-.3.34-.56.91-.49,1.43.53.05,1.05-.26,1.39-.65\" style=\"fill:#010101\"/><path d=\"m14.9,12.94c-.77-.05-1.42.43-1.78.43s-.93-.41-1.53-.4c-.79.01-1.52.46-1.92,1.17-.82,1.42-.22,3.52.58,4.68.39.57.86,1.2,1.47,1.18.58-.02.81-.38,1.52-.38s.91.38,1.53.37c.64-.01,1.04-.57,1.43-1.14.45-.65.63-1.28.64-1.32-.01-.01-1.23-.48-1.25-1.89-.01-1.18.96-1.74,1.01-1.77-.55-.81-1.41-.9-1.7-.93\" style=\"fill:#010101\"/></g><g><path d=\"m21.57,11.35c1.66,0,2.82,1.15,2.82,2.82s-1.18,2.83-2.87,2.83h-1.84v2.93h-1.33v-8.58h3.22Zm-1.89,4.53h1.53c1.16,0,1.82-.62,1.82-1.71s-.66-1.7-1.81-1.7h-1.53v3.41Z\" style=\"fill:#010101\"/><path d=\"m24.74,18.15c0-1.09.84-1.77,2.33-1.85l1.71-.1v-.48c0-.7-.47-1.11-1.25-1.11-.74,0-1.21.36-1.32.92h-1.21c.07-1.13,1.03-1.96,2.58-1.96s2.49.8,2.49,2.06v4.31h-1.23v-1.03h-.03c-.36.7-1.15,1.14-1.97,1.14-1.22,0-2.08-.76-2.08-1.88Zm4.04-.56v-.49l-1.54.1c-.77.05-1.2.39-1.2.93s.45.9,1.14.9c.9,0,1.6-.62,1.6-1.43Z\" style=\"fill:#010101\"/><path d=\"m31.22,22.23v-1.04c.09.02.31.02.42.02.59,0,.92-.25,1.11-.89,0-.01.11-.38.11-.39l-2.26-6.26h1.39l1.58,5.09h.02l1.58-5.09h1.36l-2.34,6.58c-.53,1.52-1.15,2-2.45,2-.11,0-.43-.01-.52-.03Z\" style=\"fill:#010101\"/></g></g></svg>",
|
|
10
10
|
"ArrowDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" role=\"presentation\"><defs><path id=\"ArrowDownarrow-down-a\" d=\"M7.09015871,5 L5.29305193,3.20289322 C4.90252764,2.81236893 4.90252764,2.17920395 5.29305193,1.78867966 L5.37883837,1.70289322 C5.76936266,1.31236893 6.40252764,1.31236893 6.79305193,1.70289322 L10.3788384,5.28867966 C10.7693627,5.67920395 10.7693627,6.31236893 10.3788384,6.70289322 L6.79281611,10.2884438 C6.40238389,10.6788761 5.76940075,10.6789816 5.37860263,10.2889155 L5.29292493,10.2036575 C4.90237061,9.81316322 4.9023219,9.17999824 5.29299754,8.78962527 L7.08205193,7 L0.33,7 C-0.22228475,7 -0.67,6.55228475 -0.67,6 C-0.67,5.44771525 -0.22228475,5 0.33,5 L7.09015871,5 Z\"/></defs><use fill-rule=\"evenodd\" transform=\"rotate(90 5.5 8.496)\" xlink:href=\"#ArrowDownarrow-down-a\"/></svg>",
|
|
11
11
|
"ArrowRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" role=\"presentation\"><defs><path id=\"ArrowRightarrow-right-a\" d=\"M8.09015871,4 L6.29305193,2.20289322 C5.90252764,1.81236893 5.90252764,1.17920395 6.29305193,0.788679656 L6.37883837,0.702893219 C6.76936266,0.312368927 7.40252764,0.312368927 7.79305193,0.702893219 L11.3788384,4.28867966 C11.7693627,4.67920395 11.7693627,5.31236893 11.3788384,5.70289322 L7.79281611,9.28844384 C7.40238389,9.67887605 6.76940075,9.67898159 6.37860263,9.28891548 L6.29292493,9.20365747 C5.90237061,8.81316322 5.9023219,8.17999824 6.29299754,7.78962527 L8.08205193,6 L1.33,6 C0.77771525,6 0.33,5.55228475 0.33,5 C0.33,4.44771525 0.77771525,4 1.33,4 L8.09015871,4 Z\"/></defs><use fill-rule=\"evenodd\" transform=\"translate(2 3)\" xlink:href=\"#ArrowRightarrow-right-a\"/></svg>",
|
|
12
|
-
"ArrowUp": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" role=\"presentation\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.40786 9.98629C3.89769 9.52118 3.86117 8.73057 4.32627 8.2204L10.993 0.907852C11.2298 0.648048 11.5651 0.5 11.9167 0.5C12.2683 0.5 12.6036 0.648048 12.8404 0.907852L19.5071 8.2204C19.9722 8.73057 19.9357 9.52118 19.4255 9.98628C18.9154 10.4514 18.1248 10.4149 17.6597 9.9047L13.1667 4.97647L13.1667 21.75C13.1667 22.4404 12.6071 23 11.9167 23C11.2263 23 10.6667 22.4404 10.6667 21.75L10.6667 4.97647L6.17374 9.9047C5.70864 10.4149 4.91802 10.4514 4.40786 9.98629Z\" fill=\"#40464B\"/></svg>",
|
|
13
12
|
"ArrowUpdown": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" role=\"presentation\"><defs><path id=\"ArrowUpdownarrow-updown-a\" d=\"M6,4.249681 L6,11.7499456 L7.7926574,9.95728817 C8.18318169,9.56676388 8.81634667,9.56676388 9.20687096,9.95728817 L9.2926574,10.0430746 C9.68318169,10.4335989 9.68318169,11.0667639 9.2926574,11.4572882 L5.70687096,15.0430746 C5.31634667,15.4335989 4.68318169,15.4335989 4.2926574,15.0430746 L0.707106781,11.4570523 C0.316674564,11.0666201 0.316569032,10.433637 0.706635141,10.0428389 L0.791893144,9.95716117 C1.1823874,9.56660684 1.81555237,9.56655814 2.20592535,9.95723378 L4,11.7507361 L4,4.25 L2.20710678,6.04289322 C1.81658249,6.43341751 1.18341751,6.43341751 0.792893219,6.04289322 L0.707106781,5.95710678 C0.316582489,5.56658249 0.316582489,4.93341751 0.707106781,4.54289322 L4.29289322,0.957106781 C4.68341751,0.566582489 5.31658249,0.566582489 5.70710678,0.957106781 L9.2926574,4.54312904 C9.68308962,4.93356126 9.68319515,5.5665444 9.29312904,5.95734252 L9.20787104,6.04302022 C8.81737678,6.43357454 8.18421181,6.43362325 7.79383883,6.04294761 L6,4.249681 Z\"/></defs><use fill-rule=\"evenodd\" transform=\"translate(3)\" xlink:href=\"#ArrowUpdownarrow-updown-a\"/></svg>",
|
|
14
13
|
"BarScan": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg width=\"16px\" height=\"16px\" viewBox=\"0 0 16 16\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" role=\"presentation\"><title>719247BD-FE0D-40DA-98BE-40A0D2ACB3D7svg/</title><defs><filter x=\"-14.1%\" y=\"-11.1%\" width=\"128.2%\" height=\"122.2%\" filterUnits=\"objectBoundingBox\" id=\"BarScanfilter-1\"><feOffset dx=\"0\" dy=\"2\" in=\"SourceAlpha\" result=\"shadowOffsetOuter1\"/><feGaussianBlur stdDeviation=\"2\" in=\"shadowOffsetOuter1\" result=\"shadowBlurOuter1\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0\" type=\"matrix\" in=\"shadowBlurOuter1\" result=\"shadowMatrixOuter1\"/><feMerge><feMergeNode in=\"shadowMatrixOuter1\"/><feMergeNode in=\"SourceGraphic\"/></feMerge></filter><path d=\"M2.66666667,0 L2.66666667,11.9745223 L0.666666667,11.9745223 L0.666666667,0 L2.66666667,0 Z M4.66666667,0 L4.66666667,11.9745223 L3.66666667,11.9745223 L3.66666667,0 L4.66666667,0 Z M6.66666667,0 L6.66666667,11.9745223 L5.66666667,11.9745223 L5.66666667,0 L6.66666667,0 Z M10.6666667,0 L10.6666667,11.9745223 L8.66666667,11.9745223 L8.66666667,0 L10.6666667,0 Z M12.6666667,0 L12.6666667,11.9745223 L11.6666667,11.9745223 L11.6666667,0 L12.6666667,0 Z M15.6666667,0 L15.6666667,11.9745223 L14.6666667,11.9745223 L14.6666667,0 L15.6666667,0 Z\" id=\"BarScanpath-2\"/></defs><g id=\"BarScan000_STYLE-GUIDE\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"BarScan01.3-Iconography\" transform=\"translate(-940.000000, -457.000000)\"><rect id=\"BarScanPAGE-BG\" fill=\"#F3F4F6\" x=\"351\" y=\"0\" width=\"1089\" height=\"2634\"/><g id=\"BarScanNavigation-Copy\" transform=\"translate(501.000000, 369.000000)\"><g id=\"BarScanLogos\" filter=\"url(#BarScanfilter-1)\" transform=\"translate(404.000000, 53.000000)\"><rect id=\"BarScanRectangle\" fill=\"#FFFFFF\" x=\"0\" y=\"0\" width=\"85\" height=\"85\"/><g id=\"BarScanIcon/control/bar-scan\" transform=\"translate(35.000000, 35.000000)\"><g id=\"BarScanICON\" transform=\"translate(0.333333, 2.000000)\"><mask id=\"BarScanmask-3\" fill=\"white\"><use xlink:href=\"#BarScanpath-2\"/></mask><use id=\"BarScanCombined-Shape\" fill=\"#000000\" fill-rule=\"nonzero\" xlink:href=\"#BarScanpath-2\"/><g id=\"BarScan↳Color\" mask=\"url(#BarScanmask-3)\"><g transform=\"translate(-0.333333, -2.000000)\"><rect id=\"BarScane1-Border\" stroke=\"#40464B\" stroke-width=\"1\" fill=\"none\" x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\"/><rect id=\"BarScane1-Color\" stroke=\"none\" fill=\"#40464B\" fill-rule=\"evenodd\" x=\"0\" y=\"0\" width=\"16\" height=\"16\"/></g></g></g></g></g></g></g></g></svg>",
|
|
15
14
|
"Bell": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg width=\"17px\" height=\"16px\" viewBox=\"0 0 17 16\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" role=\"presentation\"><!--Generator: sketchtool 60.1 (101010) - https://sketch.com--><title>09E9925A-7C1C-433B-BE6D-B6ED47360919svg/</title><desc>Created with sketchtool.</desc><defs><path d=\"M7.99999878,2.90909126 C4.61809149,2.90909126 2.88697775,4.75491078 2.55856536,9.00001629 L13.4414302,9.00001629 C13.112996,4.75488588 11.3818842,2.90909126 7.99999878,2.90909126 Z M8,0 C8.82842712,0 9.5,0.671572875 9.5,1.5 L9.50010683,1.52651485 C12.8687959,2.08770631 14.6892134,4.66043483 14.9613591,9.24470041 C15.5801761,9.5853974 16,10.2436711 16,11 C16,12.1045695 15.1045695,13 14,13 L2,13 C0.8954305,13 0,12.1045695 0,11 C0,10.2436711 0.419823878,9.5853974 1.03914779,9.24550262 L1.02752031,9.45146502 C1.25677582,4.73728391 3.08123788,2.09557944 6.50087913,1.52635027 C6.50008582,1.51858182 6.5,1.50936483 6.5,1.5 C6.5,0.671572875 7.17157288,0 8,0 Z M14,10.5 L2,10.5 C1.72385763,10.5 1.5,10.7238576 1.5,11 C1.5,11.2761424 1.72385763,11.5 2,11.5 L14,11.5 C14.2761424,11.5 14.5,11.2761424 14.5,11 C14.5,10.7238576 14.2761424,10.5 14,10.5 Z\" id=\"Bellpath-1\"/><rect id=\"Bellpath-3\" x=\"0\" y=\"0\" width=\"16\" height=\"16\"/><mask id=\"Bellmask-4\" maskContentUnits=\"userSpaceOnUse\" maskUnits=\"objectBoundingBox\" x=\"0\" y=\"0\" width=\"16\" height=\"16\" fill=\"white\"><use xlink:href=\"#Bellpath-3\"/></mask></defs><g id=\"BellAsset-Artboard-Page\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"BellIcon/info/warning-Icon/info/SpecialRequest\" transform=\"translate(0.368750, 0.000000)\"><g id=\"Bellspecialrequest\" transform=\"translate(0.000000, 1.000000)\"><mask id=\"Bellmask-2\" fill=\"white\"><use xlink:href=\"#Bellpath-1\"/></mask><use id=\"BellOval-2-Copy\" fill=\"#979797\" fill-rule=\"nonzero\" xlink:href=\"#Bellpath-1\"/><g id=\"Bell↳Color-Mixin/Color/Brand/p1\" mask=\"url(#Bellmask-2)\"><g transform=\"translate(0.000000, -1.000000)\"><rect id=\"BellPrimary-Border\" stroke=\"#016ABC\" stroke-width=\"1\" fill=\"none\" x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\"/><use id=\"Bellp1-Dash\" stroke=\"#016ABC\" mask=\"url(#Bellmask-4)\" stroke-width=\"2\" fill=\"none\" stroke-dasharray=\"4,6\" xlink:href=\"#Bellpath-3\"/><rect id=\"BellPrimary-Color\" stroke=\"none\" fill=\"#016ABC\" fill-rule=\"evenodd\" x=\"0\" y=\"0\" width=\"16\" height=\"16\"/></g></g></g></g></g></svg>",
|
|
@@ -366,10 +366,6 @@ var DefaultConfigSFUI = {
|
|
|
366
366
|
headerLinks: { dimension: 0, enabled: false },
|
|
367
367
|
showCartValueOnMobile: false,
|
|
368
368
|
cookiePro: { enabled: false, domain: "", src: "" },
|
|
369
|
-
scrollToTopButton: {
|
|
370
|
-
enabled: false,
|
|
371
|
-
percentOffset: { bottom: 10, right: 0 },
|
|
372
|
-
},
|
|
373
369
|
},
|
|
374
370
|
welcomeModal: [],
|
|
375
371
|
};
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var DefaultSharedSettingsConfig = {
|
|
4
|
-
adminPanelOnly: {
|
|
5
|
-
bannerName: "New banner name",
|
|
6
|
-
logoUrl: "https://wynshop.com/wp-content/uploads/2021/08/xWynshop_Font_logo_150x39.png.pagespeed.ic.3j0jIxPBvP.webp 1x",
|
|
7
|
-
},
|
|
8
4
|
features: {
|
|
9
5
|
specialRequestItems: {
|
|
10
6
|
enable: false,
|
|
11
7
|
excludeStores: [],
|
|
12
8
|
},
|
|
13
9
|
},
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
checkout: {
|
|
11
|
+
preserveOrderNote: {
|
|
12
|
+
enabled: false,
|
|
17
13
|
},
|
|
18
14
|
},
|
|
19
15
|
general: {
|