@thryveai/theme-interfaces 2.7.154 → 2.7.155-2.zod
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/core/interfaces/default-settings.interfaces.d.ts +3 -0
- package/dist/core/interfaces/default-settings.interfaces.js +2 -0
- package/dist/core/storefront-zod/retailer-settings/accountPage.d.ts +687 -0
- package/dist/core/storefront-zod/retailer-settings/accountPage.js +54 -0
- package/dist/core/storefront-zod/retailer-settings/addressSettings.d.ts +828 -0
- package/dist/core/storefront-zod/retailer-settings/addressSettings.js +23 -0
- package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.d.ts +11 -0
- package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.js +8 -0
- package/dist/core/storefront-zod/retailer-settings/cartSummary.d.ts +14 -0
- package/dist/core/storefront-zod/retailer-settings/cartSummary.js +9 -0
- package/dist/core/storefront-zod/retailer-settings/checkout.d.ts +238 -0
- package/dist/core/storefront-zod/retailer-settings/checkout.js +15 -0
- package/dist/core/storefront-zod/retailer-settings/features.d.ts +890 -0
- package/dist/core/storefront-zod/retailer-settings/features.js +63 -0
- package/dist/core/storefront-zod/retailer-settings/index.d.ts +9917 -0
- package/dist/core/storefront-zod/retailer-settings/index.js +31 -0
- package/dist/core/storefront-zod/retailer-settings/integration.d.ts +28 -0
- package/dist/core/storefront-zod/retailer-settings/integration.js +12 -0
- package/dist/core/storefront-zod/retailer-settings/pdpSettings.d.ts +157 -0
- package/dist/core/storefront-zod/retailer-settings/pdpSettings.js +59 -0
- package/dist/core/storefront-zod/retailer-settings/performance.d.ts +8 -0
- package/dist/core/storefront-zod/retailer-settings/performance.js +7 -0
- package/dist/core/storefront-zod/retailer-settings/productCard.d.ts +307 -0
- package/dist/core/storefront-zod/retailer-settings/productCard.js +10 -0
- package/dist/core/storefront-zod/retailer-settings/sharedSchemas.d.ts +1675 -0
- package/dist/core/storefront-zod/retailer-settings/sharedSchemas.js +590 -0
- package/dist/core/storefront-zod/retailer-settings/siteSettings.d.ts +594 -0
- package/dist/core/storefront-zod/retailer-settings/siteSettings.js +79 -0
- package/dist/core/storefront-zod/retailer-settings/welcomeModal.d.ts +17 -0
- package/dist/core/storefront-zod/retailer-settings/welcomeModal.js +11 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +20 -18
- package/dist/interfaces/retailer-settings.interfaces.d.ts +2 -2
- package/dist/storefront/SFUIImagesTemplate.AdminUi.js +1 -1
- package/dist/storefront/SFUIThemesTemplate.AdminUi.js +36 -47
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultImagesStorefront.js +32 -32
- package/dist/storefront/defaultSettingsStorefront.js +1 -1
- package/dist/storefront/defaultSharedSettings.js +1 -1
- package/dist/storefront/defaultThemeStorefront.js +978 -981
- package/dist/sts/STSImagesTemplate.AdminUi.js +1 -1
- package/dist/sts/STSSettingsTemplate.AdminUi.js +1 -1
- package/dist/sts/defaultSettingsSts.js +1 -1
- package/dist/theme-templates/index.js +2 -2
- package/dist/zodSchemas/generator.d.ts +6 -0
- package/dist/zodSchemas/generator.js +12 -0
- package/dist/zodSchemas/retailer-settings-zod.d.ts +1 -0
- package/dist/zodSchemas/retailer-settings-zod.js +315 -0
- package/package.json +5 -2
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.iSiteSettingsV2Schema = exports.iShowShopAllLinkSchema = exports.iScrollToTopButtonSchema = exports.iHeaderLinksLayoutSchema = exports.iMobileViewCardLayoutSchema = exports.iCookieProSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const contentEngineComponents_1 = require("../../../storefront/contentEngineComponents");
|
|
6
|
+
const sharedSchemas_1 = require("./sharedSchemas");
|
|
7
|
+
exports.iCookieProSchema = zod_1.z.object({
|
|
8
|
+
enabled: zod_1.z.boolean(),
|
|
9
|
+
src: zod_1.z.string(),
|
|
10
|
+
domain: zod_1.z.string(),
|
|
11
|
+
});
|
|
12
|
+
exports.iMobileViewCardLayoutSchema = zod_1.z.object({
|
|
13
|
+
enabled: zod_1.z.boolean(),
|
|
14
|
+
defaultView: zod_1.z.union([zod_1.z.literal("List"), zod_1.z.literal("Grid")]),
|
|
15
|
+
});
|
|
16
|
+
const cmsComponentsValues = Object.values(contentEngineComponents_1.CMSComponentNames);
|
|
17
|
+
const iUseContentEngineV2ComponentsSchema = zod_1.z.record(zod_1.z.enum(cmsComponentsValues), zod_1.z.boolean());
|
|
18
|
+
exports.iHeaderLinksLayoutSchema = zod_1.z.object({
|
|
19
|
+
enabled: zod_1.z.boolean(),
|
|
20
|
+
dimension: zod_1.z.number(),
|
|
21
|
+
});
|
|
22
|
+
exports.iScrollToTopButtonSchema = zod_1.z.object({
|
|
23
|
+
enabled: zod_1.z.boolean(),
|
|
24
|
+
percentOffset: zod_1.z.object({
|
|
25
|
+
right: zod_1.z.number(),
|
|
26
|
+
bottom: zod_1.z.number(),
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
exports.iShowShopAllLinkSchema = zod_1.z.object({
|
|
30
|
+
enabled: zod_1.z.boolean(),
|
|
31
|
+
});
|
|
32
|
+
exports.iSiteSettingsV2Schema = zod_1.z.object({
|
|
33
|
+
clientSideOrderModify: zod_1.z.boolean(),
|
|
34
|
+
cookiePro: exports.iCookieProSchema,
|
|
35
|
+
anonymousCart: zod_1.z.boolean(),
|
|
36
|
+
ctaButtons: zod_1.z.union([sharedSchemas_1.iCtaButtonsSchema, zod_1.z.undefined()]).nullable(),
|
|
37
|
+
cmsLazyLoadRows: zod_1.z.number(),
|
|
38
|
+
daysToRemainSignedIn: zod_1.z.number(),
|
|
39
|
+
defaultCountry: sharedSchemas_1.iDefaultCountySchema,
|
|
40
|
+
defaultLanguage: zod_1.z.string(),
|
|
41
|
+
defaultSearchParams: sharedSchemas_1.iDefaultSearchParamsSchema,
|
|
42
|
+
defaultShoppingMode: zod_1.z.union([
|
|
43
|
+
zod_1.z.literal("pickup"),
|
|
44
|
+
zod_1.z.literal("planning"),
|
|
45
|
+
zod_1.z.literal("delivery"),
|
|
46
|
+
]),
|
|
47
|
+
defaultStoreLocation: sharedSchemas_1.iDefaultStoreLocationSchema,
|
|
48
|
+
defaultTabView: zod_1.z.union([zod_1.z.literal("listView"), zod_1.z.literal("mapView")]),
|
|
49
|
+
showChangeCustomerEmail: zod_1.z.boolean(),
|
|
50
|
+
disableTprPrice: zod_1.z.boolean(),
|
|
51
|
+
mobileViewCardLayout: exports.iMobileViewCardLayoutSchema,
|
|
52
|
+
footerVersion: sharedSchemas_1.iFooterTypesSchema,
|
|
53
|
+
googleAutocompleteSettings: sharedSchemas_1.iGoogleAutocompleteSettingsSchema,
|
|
54
|
+
gtmId: zod_1.z.string(),
|
|
55
|
+
hideWelcomeModalOnCorporate: zod_1.z.boolean(),
|
|
56
|
+
isPlanningOnly: zod_1.z.boolean(),
|
|
57
|
+
RemoveAllOutOfStock: zod_1.z.boolean(),
|
|
58
|
+
mainHeaderHeight: zod_1.z.number(),
|
|
59
|
+
maintainCustomerJourney: zod_1.z.boolean(),
|
|
60
|
+
maintainCustomerPreferences: sharedSchemas_1.iMaintainCustomerPreferencesSchema,
|
|
61
|
+
mapZoom: zod_1.z.number(),
|
|
62
|
+
promoTemplateVersion: zod_1.z.number(),
|
|
63
|
+
restrictMapPlacesResults: sharedSchemas_1.iRestrictMapPlacesSchema,
|
|
64
|
+
retailerCountry: sharedSchemas_1.iRetailerCountrySchema,
|
|
65
|
+
retailerName: zod_1.z.string(),
|
|
66
|
+
searchPreview: sharedSchemas_1.iSearchPreviewVisibilitySchema,
|
|
67
|
+
subHeaderHeight: zod_1.z.number(),
|
|
68
|
+
timeslotModalSettings: sharedSchemas_1.iTimeslotModalSettingsSchema,
|
|
69
|
+
useContentEngineV2Components: iUseContentEngineV2ComponentsSchema,
|
|
70
|
+
isLegacyProductURL: zod_1.z.boolean(),
|
|
71
|
+
headerLinks: exports.iHeaderLinksLayoutSchema,
|
|
72
|
+
useAdsV1: zod_1.z.boolean(),
|
|
73
|
+
advertProductView: zod_1.z.boolean(),
|
|
74
|
+
showCartValueOnMobile: zod_1.z.boolean(),
|
|
75
|
+
scrollToTopButton: exports.iScrollToTopButtonSchema,
|
|
76
|
+
clientRenderCoupons: zod_1.z.boolean(),
|
|
77
|
+
showShopAllLink: exports.iShowShopAllLinkSchema,
|
|
78
|
+
showEmptyMiniList: zod_1.z.boolean(),
|
|
79
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const iWelcomeModalV2Schema: z.ZodObject<{
|
|
3
|
+
label: z.ZodString;
|
|
4
|
+
href: z.ZodString;
|
|
5
|
+
target: z.ZodUnion<[z.ZodLiteral<"_blank">, z.ZodLiteral<"_self">, z.ZodLiteral<"_parent">, z.ZodLiteral<"_top">]>;
|
|
6
|
+
icon: z.ZodString;
|
|
7
|
+
}, "strip", z.ZodTypeAny, {
|
|
8
|
+
label?: string;
|
|
9
|
+
target?: "_blank" | "_self" | "_parent" | "_top";
|
|
10
|
+
href?: string;
|
|
11
|
+
icon?: string;
|
|
12
|
+
}, {
|
|
13
|
+
label?: string;
|
|
14
|
+
target?: "_blank" | "_self" | "_parent" | "_top";
|
|
15
|
+
href?: string;
|
|
16
|
+
icon?: string;
|
|
17
|
+
}>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.iWelcomeModalV2Schema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const sharedSchemas_1 = require("./sharedSchemas");
|
|
6
|
+
exports.iWelcomeModalV2Schema = zod_1.z.object({
|
|
7
|
+
label: zod_1.z.string(),
|
|
8
|
+
href: zod_1.z.string(),
|
|
9
|
+
target: sharedSchemas_1.linkTargetSchema,
|
|
10
|
+
icon: zod_1.z.string(),
|
|
11
|
+
});
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IDefaultCoreRetailerSettings } from "./core/interfaces/default-settings.interfaces";
|
|
1
2
|
import DefaultImagesSFUI from "./storefront/defaultImagesStorefront";
|
|
2
3
|
import DefaultIconsSFUI from "./storefront/defaultIconsStorefront";
|
|
3
4
|
import DefaultConfigSFUI from "./storefront/defaultSettingsStorefront";
|
|
@@ -27,6 +28,7 @@ import { AdminSettingsTemplateMobile } from "./mobile/reactnative/MobileSettings
|
|
|
27
28
|
import { ISharedSettings } from "./interfaces/shared-settings.interfaces";
|
|
28
29
|
import { AdminSharedSettingsTemplateSFUI } from "./storefront/SFUISharedSettingsTemplate.AdminUi";
|
|
29
30
|
import { IAdminSharedSettingsTemplate } from "./interfaces/shared-settings-interfaces";
|
|
31
|
+
import { iCoreRetailerSettingsBannerSchema } from "./core/storefront-zod/retailer-settings";
|
|
30
32
|
export { DefaultSharedSettingsConfig, DefaultConfigSFUI, DefaultConfigSTS, AllThemeTemplates, DefaultThemeSFUI, globalTheme, DefaultThemeColors, DefaultImagesSFUI, DefaultIconsSFUI, AdminSettingsTemplateSFUI, AdminSettingsTemplateSTS, AdminTemplateInputTypes, AdminImagesTemplateSFUI, AdminThemeTemplateSFUI, AdminThemeTemplateOptions, AdminImagesTemplateSTS, IMobileSettings, AdminSettingsTemplateMobile, MobileDefaultSettings, AdminSharedSettingsTemplateSFUI, };
|
|
31
33
|
export { CMSComponentNames, CMSNames };
|
|
32
34
|
export { ProductAttrToIcons, ProductAttributes };
|
|
@@ -35,4 +37,4 @@ export { IAdminTemplateInputTypes, IAdminSettingsTemplate, IAdminSharedSettingsT
|
|
|
35
37
|
export { IDefaultRetailerSettingsVersion2, IDefaultStsSettings };
|
|
36
38
|
export { IDefaultTheme, IDefaultThemeScripts, IDefaultThemeImages, IDefaultThemeMetadata, IDefaultThemeFavicons, IDefaultThemeLogoPosition, IDefaultThemeLogoHeightsProps, IDefaultThemeLogoHeights, ISTSDefaultThemeInterface, IDefaultThemeFavicon, IDefaultThemeMetadataItem, IDefaultThemeInterface, IGlobalDefaultTheme, IDefaultColors, IBrandColors, IUiColors, IInitializedEmptyDefaultTheme, IDefaultThemeAnimationConfettiPlaces, IDefaultThemeGlobalAnimations, IDefaultThemeAnimationsConfettiPlacesTypes, IDefaultThemeAnimationsConfettiProps, IDefaultEmbeddedFont, IDefaultEmbeddedFontSource, ITheme, IThemeScripts, IThemeImages, IThemeMetadata, IThemeFavicons, IThemeLogoPosition, IThemeLogoHeightsProps, IThemeLogoHeights, ISTSThemeInterface, IThemeFavicon, IThemeMetadataItem, IThemeInterface, IGlobalTheme, IColors, IInitializedEmptyTheme, IThemeAnimationConfettiPlaces, IThemeGlobalAnimations, IThemeAnimationsConfettiPlacesTypes, IThemeAnimationsConfettiProps, IEmbeddedFont, IEmbeddedFontSource, IIconPosition, };
|
|
37
39
|
export { IIconsObject, PaymentTypesLogos, PaymentCards, IconNames };
|
|
38
|
-
export { PdpDetailsElementLayout, ISearchPreview, IRetailerSettings, ISecondTierAuthorization, IFlippConfig, IFlippConfigV2, IFlippScriptUrls, IRedPepperConfig, IAllSettings, ISMSConfig, ICtaButtons, IAddressesSettings, IAccountPageSettings, ILayoutSettings, ILoggingLevel, IDefaultSearchParams, IDefaultStoreLocation, IDefaultCounty, IRetailerCountry, IRestrictMapPlaces, IValidationType, INutritionZone, IFooterTypes, IRegistrationFieldTypes, IRegistrationFieldNames, IValidateLength, IValidateMultipleLengths, IValidateDateRange, IRegistrationField, ICheckoutValidation, ISearchPreviewVisibility, IPaymentCards, IGlobalAnimations, ILayoutAnimationsConfetti, IGlobalCheckoutProps, IAddressIntegration, IAddressFinderType, IAdvertLeaderboards, IAdvertProductGrid, IAdvertSkyScrapers, IPageNamesForAdverts, IAddressValidationTypes, IUseContentEngineV2Components, IAdvertSettings, IGoogleAutocompleteSettings, ITimeslotModalSettings, IPdpNutritionLink, ISodiumWarning, IProductCardsProps, IProductDetailsPageLayout, ICartSummaryLayout, ISmartBanner, IEntryModalVersion, IShoppingRuleControl, ICouponGalleryLayout, IPageAdvertsRow, IScreenType, IProductCardLayoutObjects, IProductCardILayoutVersions, IProductCardILayoutTypes, IAdvertsData, IAdminOnlyV2, IAccountPageV2, IAddressesSettingsV2, ICartSummaryV2, ICheckoutSettingsV2, IFeaturesV2, IPdpSettingsV2, IProductCardSettingsV2, ISiteSettingsV2, ISharedSettings, IPerformanceSettingsV2, };
|
|
40
|
+
export { PdpDetailsElementLayout, ISearchPreview, IRetailerSettings, ISecondTierAuthorization, IFlippConfig, IFlippConfigV2, IFlippScriptUrls, IRedPepperConfig, IAllSettings, ISMSConfig, ICtaButtons, IAddressesSettings, IAccountPageSettings, ILayoutSettings, ILoggingLevel, IDefaultSearchParams, IDefaultStoreLocation, IDefaultCounty, IRetailerCountry, IRestrictMapPlaces, IValidationType, INutritionZone, IFooterTypes, IRegistrationFieldTypes, IRegistrationFieldNames, IValidateLength, IValidateMultipleLengths, IValidateDateRange, IRegistrationField, ICheckoutValidation, ISearchPreviewVisibility, IPaymentCards, IGlobalAnimations, ILayoutAnimationsConfetti, IGlobalCheckoutProps, IAddressIntegration, IAddressFinderType, IAdvertLeaderboards, IAdvertProductGrid, IAdvertSkyScrapers, IPageNamesForAdverts, IAddressValidationTypes, IUseContentEngineV2Components, IAdvertSettings, IGoogleAutocompleteSettings, ITimeslotModalSettings, IPdpNutritionLink, ISodiumWarning, IProductCardsProps, IProductDetailsPageLayout, ICartSummaryLayout, ISmartBanner, IEntryModalVersion, IShoppingRuleControl, ICouponGalleryLayout, IPageAdvertsRow, IScreenType, IProductCardLayoutObjects, IProductCardILayoutVersions, IProductCardILayoutTypes, IAdvertsData, IAdminOnlyV2, IAccountPageV2, IAddressesSettingsV2, ICartSummaryV2, ICheckoutSettingsV2, IFeaturesV2, IPdpSettingsV2, IProductCardSettingsV2, ISiteSettingsV2, ISharedSettings, IPerformanceSettingsV2, IDefaultCoreRetailerSettings, iCoreRetailerSettingsBannerSchema, };
|
package/dist/index.js
CHANGED
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ProductAttrToIcons = exports.CMSComponentNames = exports.AdminSharedSettingsTemplateSFUI = exports.MobileDefaultSettings = exports.AdminSettingsTemplateMobile = exports.AdminImagesTemplateSTS = exports.AdminThemeTemplateOptions = exports.AdminThemeTemplateSFUI = exports.AdminImagesTemplateSFUI = exports.AdminTemplateInputTypes = exports.AdminSettingsTemplateSTS = exports.AdminSettingsTemplateSFUI = exports.DefaultIconsSFUI = exports.DefaultImagesSFUI = exports.DefaultThemeColors = exports.globalTheme = exports.DefaultThemeSFUI = exports.AllThemeTemplates = exports.DefaultConfigSTS = exports.DefaultConfigSFUI = exports.DefaultSharedSettingsConfig = void 0;
|
|
4
|
-
|
|
3
|
+
exports.iCoreRetailerSettingsBannerSchema = exports.ProductAttrToIcons = exports.CMSComponentNames = exports.AdminSharedSettingsTemplateSFUI = exports.MobileDefaultSettings = exports.AdminSettingsTemplateMobile = exports.AdminImagesTemplateSTS = exports.AdminThemeTemplateOptions = exports.AdminThemeTemplateSFUI = exports.AdminImagesTemplateSFUI = exports.AdminTemplateInputTypes = exports.AdminSettingsTemplateSTS = exports.AdminSettingsTemplateSFUI = exports.DefaultIconsSFUI = exports.DefaultImagesSFUI = exports.DefaultThemeColors = exports.globalTheme = exports.DefaultThemeSFUI = exports.AllThemeTemplates = exports.DefaultConfigSTS = exports.DefaultConfigSFUI = exports.DefaultSharedSettingsConfig = void 0;
|
|
4
|
+
const defaultImagesStorefront_1 = require("./storefront/defaultImagesStorefront");
|
|
5
5
|
exports.DefaultImagesSFUI = defaultImagesStorefront_1.default;
|
|
6
|
-
|
|
6
|
+
const defaultIconsStorefront_1 = require("./storefront/defaultIconsStorefront");
|
|
7
7
|
exports.DefaultIconsSFUI = defaultIconsStorefront_1.default;
|
|
8
|
-
|
|
8
|
+
const defaultSettingsStorefront_1 = require("./storefront/defaultSettingsStorefront");
|
|
9
9
|
exports.DefaultConfigSFUI = defaultSettingsStorefront_1.default;
|
|
10
|
-
|
|
10
|
+
const defaultSharedSettings_1 = require("./storefront/defaultSharedSettings");
|
|
11
11
|
exports.DefaultSharedSettingsConfig = defaultSharedSettings_1.default;
|
|
12
|
-
|
|
12
|
+
const defaultThemeStorefront_1 = require("./storefront/defaultThemeStorefront");
|
|
13
13
|
exports.DefaultThemeSFUI = defaultThemeStorefront_1.default;
|
|
14
14
|
Object.defineProperty(exports, "globalTheme", { enumerable: true, get: function () { return defaultThemeStorefront_1.globalTheme; } });
|
|
15
15
|
Object.defineProperty(exports, "DefaultThemeColors", { enumerable: true, get: function () { return defaultThemeStorefront_1.DefaultThemeColors; } });
|
|
16
|
-
|
|
16
|
+
const defaultSettingsSts_1 = require("./sts/defaultSettingsSts");
|
|
17
17
|
exports.DefaultConfigSTS = defaultSettingsSts_1.default;
|
|
18
|
-
|
|
18
|
+
const SFUISettingsTemplate_AdminUi_1 = require("./storefront/SFUISettingsTemplate.AdminUi");
|
|
19
19
|
Object.defineProperty(exports, "AdminTemplateInputTypes", { enumerable: true, get: function () { return SFUISettingsTemplate_AdminUi_1.AdminTemplateInputTypes; } });
|
|
20
20
|
Object.defineProperty(exports, "AdminSettingsTemplateSFUI", { enumerable: true, get: function () { return SFUISettingsTemplate_AdminUi_1.AdminSettingsTemplateSFUI; } });
|
|
21
|
-
|
|
21
|
+
const STSSettingsTemplate_AdminUi_1 = require("./sts/STSSettingsTemplate.AdminUi");
|
|
22
22
|
Object.defineProperty(exports, "AdminSettingsTemplateSTS", { enumerable: true, get: function () { return STSSettingsTemplate_AdminUi_1.AdminSettingsTemplateSTS; } });
|
|
23
|
-
|
|
23
|
+
const SFUIImagesTemplate_AdminUi_1 = require("./storefront/SFUIImagesTemplate.AdminUi");
|
|
24
24
|
Object.defineProperty(exports, "AdminImagesTemplateSFUI", { enumerable: true, get: function () { return SFUIImagesTemplate_AdminUi_1.AdminImagesTemplateSFUI; } });
|
|
25
|
-
|
|
25
|
+
const SFUIThemesTemplate_AdminUi_1 = require("./storefront/SFUIThemesTemplate.AdminUi");
|
|
26
26
|
Object.defineProperty(exports, "AdminThemeTemplateSFUI", { enumerable: true, get: function () { return SFUIThemesTemplate_AdminUi_1.AdminThemeTemplateSFUI; } });
|
|
27
27
|
Object.defineProperty(exports, "AdminThemeTemplateOptions", { enumerable: true, get: function () { return SFUIThemesTemplate_AdminUi_1.AdminThemeTemplateOptions; } });
|
|
28
|
-
|
|
28
|
+
const STSImagesTemplate_AdminUi_1 = require("./sts/STSImagesTemplate.AdminUi");
|
|
29
29
|
Object.defineProperty(exports, "AdminImagesTemplateSTS", { enumerable: true, get: function () { return STSImagesTemplate_AdminUi_1.AdminImagesTemplateSTS; } });
|
|
30
|
-
|
|
30
|
+
const theme_templates_1 = require("./theme-templates");
|
|
31
31
|
exports.AllThemeTemplates = theme_templates_1.default;
|
|
32
|
-
|
|
32
|
+
const contentEngineComponents_1 = require("./storefront/contentEngineComponents");
|
|
33
33
|
Object.defineProperty(exports, "CMSComponentNames", { enumerable: true, get: function () { return contentEngineComponents_1.CMSComponentNames; } });
|
|
34
|
-
|
|
34
|
+
const productBadgeAttributes_1 = require("./storefront/productBadgeAttributes");
|
|
35
35
|
Object.defineProperty(exports, "ProductAttrToIcons", { enumerable: true, get: function () { return productBadgeAttributes_1.ProductAttrToIcons; } });
|
|
36
|
-
|
|
36
|
+
const MobileDefaultSettings_1 = require("./mobile/reactnative/MobileDefaultSettings");
|
|
37
37
|
Object.defineProperty(exports, "MobileDefaultSettings", { enumerable: true, get: function () { return MobileDefaultSettings_1.MobileDefaultSettings; } });
|
|
38
|
-
|
|
38
|
+
const MobileSettingsTemplate_AdminUi_1 = require("./mobile/reactnative/MobileSettingsTemplate.AdminUi");
|
|
39
39
|
Object.defineProperty(exports, "AdminSettingsTemplateMobile", { enumerable: true, get: function () { return MobileSettingsTemplate_AdminUi_1.AdminSettingsTemplateMobile; } });
|
|
40
|
-
|
|
40
|
+
const SFUISharedSettingsTemplate_AdminUi_1 = require("./storefront/SFUISharedSettingsTemplate.AdminUi");
|
|
41
41
|
Object.defineProperty(exports, "AdminSharedSettingsTemplateSFUI", { enumerable: true, get: function () { return SFUISharedSettingsTemplate_AdminUi_1.AdminSharedSettingsTemplateSFUI; } });
|
|
42
|
+
const retailer_settings_1 = require("./core/storefront-zod/retailer-settings");
|
|
43
|
+
Object.defineProperty(exports, "iCoreRetailerSettingsBannerSchema", { enumerable: true, get: function () { return retailer_settings_1.iCoreRetailerSettingsBannerSchema; } });
|
|
@@ -680,8 +680,8 @@ export declare type ILabelConfig = {
|
|
|
680
680
|
_type: "tprPromo";
|
|
681
681
|
};
|
|
682
682
|
export declare type IProductCardLayouts = {
|
|
683
|
-
ContainersGrid: "default" | "pce-centered" | "prs-labels";
|
|
684
|
-
ContainersCarousel: "default" | "pce-centered" | "prs-labels";
|
|
683
|
+
ContainersGrid: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
|
|
684
|
+
ContainersCarousel: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
|
|
685
685
|
FlyerCard: "default" | "detailed";
|
|
686
686
|
SimplifiedCarousel: "default";
|
|
687
687
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AdminImagesTemplateSFUI = void 0;
|
|
4
|
-
|
|
4
|
+
const SFUISettingsTemplate_AdminUi_1 = require("./SFUISettingsTemplate.AdminUi");
|
|
5
5
|
exports.AdminImagesTemplateSFUI = {
|
|
6
6
|
icons: {
|
|
7
7
|
title: "Icons Files",
|
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
3
|
exports.AdminThemeTemplateOptions = exports.AdminThemeTemplateSFUI = void 0;
|
|
15
|
-
|
|
16
|
-
|
|
4
|
+
const SFUISettingsTemplate_AdminUi_1 = require("./SFUISettingsTemplate.AdminUi");
|
|
5
|
+
const ColorFields = {
|
|
17
6
|
description: " ",
|
|
18
7
|
type: SFUISettingsTemplate_AdminUi_1.AdminTemplateInputTypes.color,
|
|
19
8
|
};
|
|
20
|
-
|
|
9
|
+
const ColorFieldsDescription = 'This color is not used by all themes, so it could be empty.';
|
|
21
10
|
exports.AdminThemeTemplateSFUI = {
|
|
22
11
|
colors: {
|
|
23
12
|
title: "Colors",
|
|
@@ -29,21 +18,21 @@ exports.AdminThemeTemplateSFUI = {
|
|
|
29
18
|
description: "",
|
|
30
19
|
type: SFUISettingsTemplate_AdminUi_1.AdminTemplateInputTypes.collapsableObject,
|
|
31
20
|
value: {
|
|
32
|
-
primary1:
|
|
33
|
-
primary2:
|
|
34
|
-
primary3:
|
|
35
|
-
primary4:
|
|
36
|
-
primary5:
|
|
37
|
-
secondary1:
|
|
38
|
-
secondary2:
|
|
39
|
-
secondary3:
|
|
40
|
-
secondary4:
|
|
41
|
-
secondary5:
|
|
42
|
-
tertiary1:
|
|
43
|
-
tertiary2:
|
|
44
|
-
tertiary3:
|
|
45
|
-
tertiary4:
|
|
46
|
-
tertiary5:
|
|
21
|
+
primary1: Object.assign({ title: "Primary1" }, ColorFields),
|
|
22
|
+
primary2: Object.assign({ title: "Primary2" }, ColorFields),
|
|
23
|
+
primary3: Object.assign({ title: "Primary3" }, ColorFields),
|
|
24
|
+
primary4: Object.assign({ title: "Primary4" }, ColorFields),
|
|
25
|
+
primary5: Object.assign({ title: "Primary5" }, ColorFields),
|
|
26
|
+
secondary1: Object.assign({ title: "Secondary1" }, ColorFields),
|
|
27
|
+
secondary2: Object.assign({ title: "Secondary2" }, ColorFields),
|
|
28
|
+
secondary3: Object.assign({ title: "Secondary3" }, ColorFields),
|
|
29
|
+
secondary4: Object.assign({ title: "Secondary4" }, ColorFields),
|
|
30
|
+
secondary5: Object.assign({ title: "Secondary5" }, ColorFields),
|
|
31
|
+
tertiary1: Object.assign({ title: "Tertiary1" }, ColorFields),
|
|
32
|
+
tertiary2: Object.assign({ title: "Tertiary2" }, ColorFields),
|
|
33
|
+
tertiary3: Object.assign({ title: "Tertiary3" }, ColorFields),
|
|
34
|
+
tertiary4: Object.assign(Object.assign({ title: "Tertiary4" }, ColorFields), { description: ColorFieldsDescription }),
|
|
35
|
+
tertiary5: Object.assign(Object.assign({ title: "Tertiary5" }, ColorFields), { description: ColorFieldsDescription }),
|
|
47
36
|
}
|
|
48
37
|
},
|
|
49
38
|
uiColors: {
|
|
@@ -51,24 +40,24 @@ exports.AdminThemeTemplateSFUI = {
|
|
|
51
40
|
description: "",
|
|
52
41
|
type: SFUISettingsTemplate_AdminUi_1.AdminTemplateInputTypes.collapsableObject,
|
|
53
42
|
value: {
|
|
54
|
-
success:
|
|
55
|
-
successDark:
|
|
56
|
-
successLight:
|
|
57
|
-
warn:
|
|
58
|
-
warnDark:
|
|
59
|
-
warnLight:
|
|
60
|
-
alert:
|
|
61
|
-
alertDark:
|
|
62
|
-
alertLight:
|
|
63
|
-
promotion1:
|
|
64
|
-
promotion2:
|
|
65
|
-
greyscale1:
|
|
66
|
-
greyscale2:
|
|
67
|
-
greyscale3:
|
|
68
|
-
greyscale4:
|
|
69
|
-
greyscale5:
|
|
70
|
-
greyscale6:
|
|
71
|
-
greyscale7:
|
|
43
|
+
success: Object.assign({ title: "Success" }, ColorFields),
|
|
44
|
+
successDark: Object.assign({ title: "Success Dark" }, ColorFields),
|
|
45
|
+
successLight: Object.assign({ title: "Success Light" }, ColorFields),
|
|
46
|
+
warn: Object.assign({ title: "Warn" }, ColorFields),
|
|
47
|
+
warnDark: Object.assign({ title: "Warn Dark" }, ColorFields),
|
|
48
|
+
warnLight: Object.assign({ title: "Warn Light" }, ColorFields),
|
|
49
|
+
alert: Object.assign({ title: "Alert" }, ColorFields),
|
|
50
|
+
alertDark: Object.assign({ title: "Alert Dark" }, ColorFields),
|
|
51
|
+
alertLight: Object.assign({ title: "Alert Light" }, ColorFields),
|
|
52
|
+
promotion1: Object.assign({ title: "Promotion1" }, ColorFields),
|
|
53
|
+
promotion2: Object.assign({ title: "Promotion2" }, ColorFields),
|
|
54
|
+
greyscale1: Object.assign({ title: "Greyscale1" }, ColorFields),
|
|
55
|
+
greyscale2: Object.assign({ title: "Greyscale2" }, ColorFields),
|
|
56
|
+
greyscale3: Object.assign({ title: "Greyscale3" }, ColorFields),
|
|
57
|
+
greyscale4: Object.assign({ title: "Greyscale4" }, ColorFields),
|
|
58
|
+
greyscale5: Object.assign({ title: "Greyscale5" }, ColorFields),
|
|
59
|
+
greyscale6: Object.assign({ title: "Greyscale6" }, ColorFields),
|
|
60
|
+
greyscale7: Object.assign({ title: "Greyscale7" }, ColorFields),
|
|
72
61
|
}
|
|
73
62
|
},
|
|
74
63
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
3
|
+
const DefaultIconsSFUI = {
|
|
4
4
|
"AccountOutline": "<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\" aria-hidden=\"true\"><defs><path id=\"AccountOutlineaccount-outline-a\" d=\"M10.6315075,9.69423814 C10.7007613,9.75612506 11.3009936,10.0613558 12.3908566,10.4467107 C14.4743181,11.1582178 16,12.364014 16,14.1676917 C16,14.9840468 15.3382134,15.6458333 14.5218583,15.6458333 L1.47814167,15.6458333 C0.661786566,15.6458333 0,14.9840468 0,14.1676917 C0,12.382107 1.49231212,11.1829515 3.57460091,10.4579799 C4.68711312,10.0655424 5.29526531,9.7577935 5.36554567,9.69477559 C5.34596512,9.65470242 5.30394739,9.58847564 5.22734281,9.48266002 C5.29004911,9.56927763 4.9252069,9.07609883 4.8113293,8.90986 C4.06663013,7.83952171 3.63642956,6.45835864 3.63642956,5.09232292 C3.63642956,2.27200603 5.50238008,0.249884306 8.01704209,0.250467074 C8.53431693,0.25213081 9.037314,0.343396048 9.50851297,0.520356737 C10.0730104,0.732703498 10.5823168,1.06553523 11.0098008,1.50089344 C11.8179096,2.32365071 12.2929152,3.47070772 12.3554285,4.78984786 C12.3604664,4.89703502 12.3631133,4.99523563 12.3631133,5.09232292 C12.3631133,5.45873081 12.3320062,5.82763956 12.2713099,6.19292253 C12.1935282,6.66523748 12.0650844,7.13102432 11.8908191,7.57928759 C11.6863591,8.10371457 11.4222496,8.5914481 11.1163969,9.00943339 C11.0260488,9.13722746 10.7760212,9.47293554 10.749238,9.51043964 C10.685602,9.59954844 10.6492227,9.65792575 10.6315075,9.69423814 Z M11.8984817,11.8635741 C10.0861435,11.222838 9.38090446,10.8524108 9.17433084,10.0681566 C9.09716599,9.77521504 9.11021629,9.49068198 9.20865408,9.21384496 C9.27741016,9.02048193 9.37548216,8.85304448 9.52855285,8.63870134 C9.56773134,8.58384015 9.81490194,8.25196812 9.89863924,8.13369366 C10.1331117,7.81313168 10.3351282,7.44006582 10.4930132,7.03510168 C10.6297474,6.68337907 10.730515,6.31795725 10.7914215,5.94811805 C10.838936,5.66216195 10.8631133,5.37543664 10.8631133,5.09232292 C10.8631133,5.02067508 10.8610852,4.94543156 10.8570963,4.86056195 C10.8115847,3.90018807 10.4819003,3.10405688 9.93958129,2.55190734 C9.6643197,2.27157545 9.33982802,2.05952012 8.9807673,1.92445229 C8.67788175,1.81070247 8.35188006,1.75155179 8.01445703,1.75046317 C6.35880858,1.75008168 5.13642956,3.07476803 5.13642956,5.09232292 C5.13642956,6.15309191 5.4734574,7.23512304 6.04568207,8.05760165 C6.14449161,8.20181445 6.49045476,8.66947332 6.44236789,8.60304985 C6.61393523,8.84003964 6.7169878,9.01223402 6.78958227,9.21764956 C6.88696867,9.49321709 6.89963889,9.77633437 6.82290314,10.0682436 C6.61536741,10.8557669 5.90838131,11.2253297 4.07069913,11.8735636 C2.54599926,12.4044093 1.5162755,13.226395 1.50019116,14.1458333 L14.4998073,14.1458333 C14.4834243,13.2166504 13.4238061,12.3845215 11.8984817,11.8635741 Z\"/></defs><use xlink:href=\"#AccountOutlineaccount-outline-a\"/></svg>",
|
|
5
5
|
"AccountSolid": "<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\" aria-hidden=\"true\"><defs><path id=\"AccountSolidaccount-solid-a\" d=\"M10.0961029,10.1287778 C9.96847017,9.64424444 10.2968849,9.35291111 10.7630218,8.69357778 C11.0662126,8.27906667 11.3229916,7.80373333 11.5222601,7.29262222 C11.6907555,6.8592 11.8188927,6.40073333 11.8965822,5.92897778 C11.955606,5.57375556 11.9868836,5.21188889 11.9868836,4.849 C11.9868836,4.74882222 11.9838567,4.65068889 11.9793164,4.55408889 C11.9177702,3.25535556 11.4496153,2.19786667 10.7307353,1.46595556 C10.3427923,1.07086667 9.88270904,0.770333333 9.37318703,0.578666667 C8.94993063,0.419711111 8.49287426,0.335377778 8.01614327,0.333844444 C5.79795687,0.333333333 4.01261193,2.09155556 4.01261193,4.849 C4.01261193,6.21468889 4.45100265,7.56862222 5.16080212,8.5888 C5.66578383,9.32582222 6.03455669,9.62022222 5.90087022,10.1287778 C5.76415689,10.6475556 4.72947408,11.0784222 3.39210493,11.5501778 C2.03859251,12.0214222 0,13.0722667 0,14.8632 L0,14.8632 C5.43427694e-17,15.3069424 0.35972428,15.6666667 0.803466667,15.6666667 L15.1965333,15.6666667 C15.6402757,15.6666667 16,15.3069424 16,14.8632 C16,13.0416 13.882709,11.9861556 12.5776264,11.5404667 C11.2533737,11.0722889 10.2318073,10.6439778 10.0961029,10.1287778 Z\"/></defs><use fill-rule=\"evenodd\" xlink:href=\"#AccountSolidaccount-solid-a\"/></svg>",
|
|
6
6
|
"Addresses": "<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\" aria-hidden=\"true\"><defs><path id=\"Addressesaddresses-a\" d=\"M1.5,11.5 L1.25,11.5 C0.835786438,11.5 0.5,11.1642136 0.5,10.75 C0.5,10.3357864 0.835786438,10 1.25,10 L1.5,10 L1.5,8.5 L1.25,8.5 C0.835786438,8.5 0.5,8.16421356 0.5,7.75 C0.5,7.33578644 0.835786438,7 1.25,7 L1.5,7 L1.5,5.5 L1.25,5.5 C0.835786438,5.5 0.5,5.16421356 0.5,4.75 C0.5,4.33578644 0.835786438,4 1.25,4 L1.5,4 L1.5,2 C1.5,0.8954305 2.3954305,2.02906125e-16 3.5,0 L11.5,0 C12.6045695,-2.02906125e-16 13.5,0.8954305 13.5,2 L13.5,14 C13.5,15.1045695 12.6045695,16 11.5,16 L3.5,16 C2.3954305,16 1.5,15.1045695 1.5,14 L1.5,11.5 Z M3,1.5 L3,14.5 L12,14.5 L12,1.5 L3,1.5 Z M7.5,4 C8.8805,4 10,5.1195 10,6.5 C10,9 7.5,12 7.5,12 C7.5,12 5,9 5,6.5 C5,5.1195 6.1195,4 7.5,4 Z M6,6.5 C6,7.3285 6.6715,8 7.5,8 C8.3285,8 9,7.3285 9,6.5 C9,5.6715 8.3285,5 7.5,5 C6.6715,5 6,5.6715 6,6.5 Z\"/></defs><use fill-rule=\"evenodd\" transform=\"translate(1)\" xlink:href=\"#Addressesaddresses-a\"/></svg>",
|
|
@@ -1,95 +1,95 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
icons:
|
|
3
|
+
const imageBucket = "https://www";
|
|
4
|
+
const DefaultImagesSFUI = {
|
|
5
|
+
icons: `/assets/icons.js`,
|
|
6
6
|
logos: {
|
|
7
|
-
primary:
|
|
8
|
-
primaryMobile:
|
|
9
|
-
sts:
|
|
10
|
-
stsMobile:
|
|
7
|
+
primary: `${imageBucket}/img/primary-logo.png`,
|
|
8
|
+
primaryMobile: `${imageBucket}/img/primary-logo.png`,
|
|
9
|
+
sts: `${imageBucket}/img/primary-logo.png`,
|
|
10
|
+
stsMobile: `${imageBucket}/img/primary-logo.png`,
|
|
11
11
|
},
|
|
12
|
-
confirmationPageImage:
|
|
12
|
+
confirmationPageImage: `${imageBucket}/img/CheckoutConfirmation_DesktopBG.png`,
|
|
13
13
|
stsCheckBox: {
|
|
14
|
-
primary:
|
|
15
|
-
empty:
|
|
16
|
-
success:
|
|
14
|
+
primary: `${imageBucket}/img/select-check_p1.png`,
|
|
15
|
+
empty: `${imageBucket}/img/select-empty.png`,
|
|
16
|
+
success: `${imageBucket}/img/select-check_success.png`,
|
|
17
17
|
},
|
|
18
|
-
favicon:
|
|
19
|
-
stsFavicon:
|
|
20
|
-
rewards:
|
|
18
|
+
favicon: `${imageBucket}/img/mi9-favicon.ico`,
|
|
19
|
+
stsFavicon: `${imageBucket}/img/mi9-favicon.ico`,
|
|
20
|
+
rewards: `${imageBucket}/img/rewards-logo.svg`,
|
|
21
21
|
missingImg: {
|
|
22
|
-
recipes:
|
|
23
|
-
x2:
|
|
24
|
-
x3:
|
|
25
|
-
square:
|
|
22
|
+
recipes: `${imageBucket}/img/missing-Image-Recipe.svg`,
|
|
23
|
+
x2: `${imageBucket}/img/missing-Image-SquareX2.svg`,
|
|
24
|
+
x3: `${imageBucket}/img/missing-Image-SquareX3.svg`,
|
|
25
|
+
square: `${imageBucket}/img/missing-Image-Square.svg`,
|
|
26
26
|
},
|
|
27
|
-
verifySiteImage:
|
|
27
|
+
verifySiteImage: `${imageBucket}/img/verify-footer-image.png`,
|
|
28
28
|
favicons: [
|
|
29
29
|
{
|
|
30
30
|
rel: "apple-touch-icon",
|
|
31
31
|
sizes: "57x57",
|
|
32
|
-
href:
|
|
32
|
+
href: `${imageBucket}/favicons/apple-icon-57x57.png`,
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
rel: "apple-touch-icon",
|
|
36
36
|
sizes: "60x60",
|
|
37
|
-
href:
|
|
37
|
+
href: `${imageBucket}/favicons/apple-icon-60x60.png`,
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
rel: "apple-touch-icon",
|
|
41
41
|
sizes: "72x72",
|
|
42
|
-
href:
|
|
42
|
+
href: `${imageBucket}/favicons/apple-icon-72x72.png`,
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
rel: "apple-touch-icon",
|
|
46
46
|
sizes: "76x76",
|
|
47
|
-
href:
|
|
47
|
+
href: `${imageBucket}/favicons/apple-icon-76x76.png`,
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
rel: "apple-touch-icon",
|
|
51
51
|
sizes: "114x114",
|
|
52
|
-
href:
|
|
52
|
+
href: `${imageBucket}/favicons/apple-icon-114x114.png`,
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
rel: "apple-touch-icon",
|
|
56
56
|
sizes: "120x120",
|
|
57
|
-
href:
|
|
57
|
+
href: `${imageBucket}/favicons/apple-icon-120x120.png`,
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
rel: "apple-touch-icon",
|
|
61
61
|
sizes: "144x144",
|
|
62
|
-
href:
|
|
62
|
+
href: `${imageBucket}/favicons/apple-icon-144x144.png`,
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
rel: "apple-touch-icon",
|
|
66
66
|
sizes: "152x152",
|
|
67
|
-
href:
|
|
67
|
+
href: `${imageBucket}/favicons/apple-icon-152x152.png`,
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
rel: "apple-touch-icon",
|
|
71
71
|
sizes: "180x180",
|
|
72
|
-
href:
|
|
72
|
+
href: `${imageBucket}/favicons/apple-icon-180x180.png`,
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
rel: "icon",
|
|
76
76
|
sizes: "192x192",
|
|
77
|
-
href:
|
|
77
|
+
href: `${imageBucket}/favicons/android-icon-192x192.png`,
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
rel: "icon",
|
|
81
81
|
sizes: "32x32",
|
|
82
|
-
href:
|
|
82
|
+
href: `${imageBucket}/favicons/favicon-32x32.png`,
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
rel: "icon",
|
|
86
86
|
sizes: "96x96",
|
|
87
|
-
href:
|
|
87
|
+
href: `${imageBucket}/favicons/favicon-96x96.png`,
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
rel: "icon",
|
|
91
91
|
sizes: "16x16",
|
|
92
|
-
href:
|
|
92
|
+
href: `${imageBucket}/favicons/favicon-16x16.png`,
|
|
93
93
|
},
|
|
94
94
|
],
|
|
95
95
|
banner: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
3
|
+
const DefaultSharedSettingsConfig = {
|
|
4
4
|
adminPanelOnly: {
|
|
5
5
|
bannerName: "New banner name",
|
|
6
6
|
logoUrl: "https://wynshop.com/wp-content/uploads/2021/08/xWynshop_Font_logo_150x39.png.pagespeed.ic.3j0jIxPBvP.webp 1x",
|