@thryveai/theme-interfaces 2.7.5 → 2.7.7
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
|
+
```
|
|
@@ -347,6 +347,7 @@ export interface IProductCardSettingsV2 {
|
|
|
347
347
|
productCards: IProductCardsProps;
|
|
348
348
|
}
|
|
349
349
|
export interface ISiteSettingsV2 {
|
|
350
|
+
clientSideOrderModify: boolean;
|
|
350
351
|
anonymousCart: boolean;
|
|
351
352
|
ctaButtons: ICtaButtons | null | undefined;
|
|
352
353
|
daysToRemainSignedIn: number;
|
|
@@ -660,6 +660,12 @@ exports.AdminSettingsTemplateSFUI = {
|
|
|
660
660
|
type: exports.AdminTemplateInputTypes.collapsableObject,
|
|
661
661
|
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3328180235/General+Site+Settings",
|
|
662
662
|
value: {
|
|
663
|
+
clientSideOrderModify: {
|
|
664
|
+
title: "clientSide Order Modify",
|
|
665
|
+
description: "Allows the user to modify an order on the client side and handle the shopping rules instead of getting an error.",
|
|
666
|
+
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3327983631/clientSideOrderModify",
|
|
667
|
+
type: exports.AdminTemplateInputTypes.checkbox,
|
|
668
|
+
},
|
|
663
669
|
anonymousCart: {
|
|
664
670
|
title: "Anonymous Cart",
|
|
665
671
|
description: "⚠️ Allows the customer to add to cart without being logged in.⚠️ (Setting has side effects)",
|