@thryveai/theme-interfaces 2.7.66 → 2.7.67
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/README.md
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#V8 Theme Interfaces
|
|
2
|
-
|
|
3
|
-
interfaces for all MI9 Retailer Themes.
|
|
4
|
-
|
|
5
|
-
###icons.interfaces
|
|
6
|
-
List of all icons used inside the ui projects.
|
|
7
|
-
|
|
8
|
-
###retailer-settings.interfaces
|
|
9
|
-
more info here
|
|
10
|
-
https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo
|
|
11
|
-
###theme.interfaces
|
|
12
|
-
The interface for each theme, colors, fonts, sizes and other css properties.
|
|
13
|
-
|
|
14
|
-
#To Build Project
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
npm install
|
|
18
|
-
npm run build
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
#To Publish npm package
|
|
22
|
-
```
|
|
23
|
-
npm login
|
|
24
|
-
npm publish
|
|
25
|
-
```
|
|
26
|
-
or
|
|
27
|
-
```
|
|
28
|
-
npm run push
|
|
29
|
-
```
|
|
1
|
+
#V8 Theme Interfaces
|
|
2
|
+
|
|
3
|
+
interfaces for all MI9 Retailer Themes.
|
|
4
|
+
|
|
5
|
+
###icons.interfaces
|
|
6
|
+
List of all icons used inside the ui projects.
|
|
7
|
+
|
|
8
|
+
###retailer-settings.interfaces
|
|
9
|
+
more info here
|
|
10
|
+
https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo
|
|
11
|
+
###theme.interfaces
|
|
12
|
+
The interface for each theme, colors, fonts, sizes and other css properties.
|
|
13
|
+
|
|
14
|
+
#To Build Project
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
npm install
|
|
18
|
+
npm run build
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
#To Publish npm package
|
|
22
|
+
```
|
|
23
|
+
npm login
|
|
24
|
+
npm publish
|
|
25
|
+
```
|
|
26
|
+
or
|
|
27
|
+
```
|
|
28
|
+
npm run push
|
|
29
|
+
```
|
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
export declare const CMSComponentNames: {
|
|
2
2
|
Carousel: string;
|
|
3
|
-
SmallCarousel: string;
|
|
4
|
-
Freeform: string;
|
|
5
3
|
ContactUs: string;
|
|
4
|
+
Freeform: string;
|
|
6
5
|
HeroBanner: string;
|
|
7
6
|
Image: string;
|
|
8
|
-
Video: string;
|
|
9
|
-
VideoWithContent: string;
|
|
10
|
-
ImageWithContent: string;
|
|
11
7
|
ImageTextButton: string;
|
|
12
|
-
|
|
13
|
-
SmallImageWithContent: string;
|
|
8
|
+
ImageWithContent: string;
|
|
14
9
|
LargePromotion: string;
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
LayoutExtraLargeBanner2: string;
|
|
11
|
+
PageTopperWithFullBackground: string;
|
|
12
|
+
ProductCardStory: string;
|
|
13
|
+
Recipe: string;
|
|
17
14
|
Sale: string;
|
|
18
15
|
SmallBannerWithBackgroundImage: string;
|
|
19
16
|
SmallBannerWithSupportingImage: string;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
SmallCarousel: string;
|
|
18
|
+
SmallImageWithContent: string;
|
|
19
|
+
SmallPromotion: string;
|
|
20
|
+
ThreeBannerContainer: string;
|
|
21
|
+
TwoBannerContainer: string;
|
|
22
|
+
Video: string;
|
|
23
|
+
VideoWithContent: string;
|
|
23
24
|
};
|
|
24
25
|
export declare type CMSNames = keyof typeof CMSComponentNames;
|
|
@@ -3,24 +3,25 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CMSComponentNames = void 0;
|
|
4
4
|
exports.CMSComponentNames = {
|
|
5
5
|
Carousel: "Carousel",
|
|
6
|
-
SmallCarousel: "CarouselSmall",
|
|
7
|
-
Freeform: "Freeform",
|
|
8
6
|
ContactUs: "ContactUs",
|
|
7
|
+
Freeform: "Freeform",
|
|
9
8
|
HeroBanner: "HeroBanner",
|
|
10
9
|
Image: "Image",
|
|
11
|
-
Video: "Video",
|
|
12
|
-
VideoWithContent: "VideoWithContent",
|
|
13
|
-
ImageWithContent: "StandardContentBlock3",
|
|
14
10
|
ImageTextButton: "ImageTextButton",
|
|
15
|
-
|
|
16
|
-
SmallImageWithContent: "StackedContentBlock",
|
|
11
|
+
ImageWithContent: "StandardContentBlock3",
|
|
17
12
|
LargePromotion: "LargePromotion",
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
LayoutExtraLargeBanner2: "LayoutExtraLargeBanner2",
|
|
14
|
+
PageTopperWithFullBackground: "PageTopperWithFullBackground",
|
|
15
|
+
ProductCardStory: "ProductCardStory",
|
|
16
|
+
Recipe: "Recipe",
|
|
20
17
|
Sale: "Sale",
|
|
21
18
|
SmallBannerWithBackgroundImage: "StandardContentBlock1",
|
|
22
19
|
SmallBannerWithSupportingImage: "StandardContentBlock2",
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
SmallCarousel: "CarouselSmall",
|
|
21
|
+
SmallImageWithContent: "StackedContentBlock",
|
|
22
|
+
SmallPromotion: "SmallPromotion",
|
|
23
|
+
ThreeBannerContainer: "ThreeBannerContainer",
|
|
24
|
+
TwoBannerContainer: "TwoBannerContainer",
|
|
25
|
+
Video: "Video",
|
|
26
|
+
VideoWithContent: "VideoWithContent",
|
|
26
27
|
};
|
|
@@ -333,26 +333,27 @@ var DefaultConfigSFUI = {
|
|
|
333
333
|
},
|
|
334
334
|
useContentEngineV2Components: {
|
|
335
335
|
Carousel: true,
|
|
336
|
-
SmallCarousel: false,
|
|
337
|
-
Freeform: false,
|
|
338
336
|
ContactUs: false,
|
|
337
|
+
Freeform: false,
|
|
339
338
|
HeroBanner: false,
|
|
340
339
|
Image: false,
|
|
341
|
-
Video: false,
|
|
342
|
-
VideoWithContent: false,
|
|
343
|
-
ImageWithContent: false,
|
|
344
340
|
ImageTextButton: false,
|
|
345
|
-
|
|
346
|
-
SmallImageWithContent: false,
|
|
341
|
+
ImageWithContent: false,
|
|
347
342
|
LargePromotion: false,
|
|
348
|
-
|
|
349
|
-
|
|
343
|
+
LayoutExtraLargeBanner2: false,
|
|
344
|
+
PageTopperWithFullBackground: false,
|
|
345
|
+
ProductCardStory: false,
|
|
346
|
+
Recipe: false,
|
|
350
347
|
Sale: false,
|
|
351
348
|
SmallBannerWithBackgroundImage: false,
|
|
352
349
|
SmallBannerWithSupportingImage: false,
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
350
|
+
SmallCarousel: false,
|
|
351
|
+
SmallImageWithContent: false,
|
|
352
|
+
SmallPromotion: false,
|
|
353
|
+
ThreeBannerContainer: false,
|
|
354
|
+
TwoBannerContainer: false,
|
|
355
|
+
Video: false,
|
|
356
|
+
VideoWithContent: false,
|
|
356
357
|
},
|
|
357
358
|
isLegacyProductURL: false,
|
|
358
359
|
headerLinks: { dimension: 0, enabled: false },
|