@thryveai/theme-interfaces 2.6.0 → 2.6.1

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
+ ```
@@ -28,6 +28,7 @@ export interface IDefaultRetailerSettings {
28
28
  eircode: string | undefined;
29
29
  enable3dSecure: boolean;
30
30
  enableGoogleTranslate: boolean;
31
+ enableNewFacetView: boolean;
31
32
  enableNewsletterSignup: boolean;
32
33
  enableNotifications: boolean;
33
34
  errorLoggingLevel: ILoggingLevel;
@@ -36,6 +36,7 @@ export interface IRetailerSettings {
36
36
  eircode?: string | null;
37
37
  enable3dSecure?: boolean;
38
38
  enableGoogleTranslate?: boolean;
39
+ enableNewFacetView?: boolean;
39
40
  enableNewsletterSignup?: boolean;
40
41
  enableNotifications?: boolean;
41
42
  entryModalVersion?: IEntryModalVersion;
@@ -309,6 +310,7 @@ export interface IFeaturesV2 {
309
310
  advertSettings: IAdvertSettings;
310
311
  ebtPayments: boolean;
311
312
  enableGoogleTranslate: boolean;
313
+ enableNewFacetView: boolean;
312
314
  enableNewsletterSignup: boolean;
313
315
  enableNotifications: boolean;
314
316
  externalStoreSelectorUrl: {
@@ -87,6 +87,7 @@ var DefaultConfigSFUI = {
87
87
  },
88
88
  ebtPayments: false,
89
89
  enableGoogleTranslate: false,
90
+ enableNewFacetView: false,
90
91
  enableNewsletterSignup: false,
91
92
  enableNotifications: false,
92
93
  entryModalVersion: "entry",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",