@thryveai/theme-interfaces 2.7.106 → 2.7.108
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
|
+
```
|
|
@@ -64,18 +64,20 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
64
64
|
},
|
|
65
65
|
},
|
|
66
66
|
},
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
67
|
+
//TO BE UNCOMMENTED ONCE FEATURE IS COMPLETE
|
|
68
|
+
// couponGallery: {
|
|
69
|
+
// title: "Coupon Gallery",
|
|
70
|
+
// description: "",
|
|
71
|
+
// type: AdminSharedTemplateInputTypes.collapsableObject,
|
|
72
|
+
// value: {
|
|
73
|
+
// enabled: {
|
|
74
|
+
// title: "Enable coupon gallery",
|
|
75
|
+
// description:
|
|
76
|
+
// "This will display a fully integrated coupon gallery on the storefront and mobile app.",
|
|
77
|
+
// type: AdminSharedTemplateInputTypes.checkbox,
|
|
78
|
+
// },
|
|
79
|
+
// },
|
|
80
|
+
// }
|
|
79
81
|
},
|
|
80
82
|
},
|
|
81
83
|
checkout: {
|
|
@@ -107,12 +109,15 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
107
109
|
description: "This will display the list of available stores for the planning and pickup store selector modals prior to the user entering their address.",
|
|
108
110
|
type: exports.AdminSharedTemplateInputTypes.checkbox,
|
|
109
111
|
},
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
112
|
+
//TO BE UNCOMMENTED ONCE FEATURE IS COMPLETE
|
|
113
|
+
// skipStoreSelection: {
|
|
114
|
+
// title: "Skip store selection",
|
|
115
|
+
// description:
|
|
116
|
+
// "This will skip the enter nearest store modal in the first time user flow if no store is returned. The corporate store will be selected if available otherwise the default store will be used.",
|
|
117
|
+
// type: AdminSharedTemplateInputTypes.checkbox,
|
|
118
|
+
// helpLink:
|
|
119
|
+
// "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/4039704585/Skip+Nearest+Store+Suggestion",
|
|
120
|
+
// },
|
|
116
121
|
},
|
|
117
122
|
},
|
|
118
123
|
};
|