@thryveai/theme-interfaces 2.7.78 → 2.7.80

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.
@@ -152,6 +152,10 @@ export interface IDefaultThemeInterface {
152
152
  color: string;
153
153
  bgColor: string;
154
154
  };
155
+ cartCurrency: {
156
+ color: string;
157
+ bgColor: string;
158
+ };
155
159
  };
156
160
  notifications: {
157
161
  counter: {
@@ -166,6 +166,10 @@ export interface IThemeInterface {
166
166
  color?: string;
167
167
  bgColor?: string;
168
168
  };
169
+ cartCurrency?: {
170
+ color?: string;
171
+ bgColor?: string;
172
+ };
169
173
  };
170
174
  notifications?: {
171
175
  counter: {
@@ -21,10 +21,6 @@ var DefaultConfigSFUI = {
21
21
  businessAccount: {
22
22
  enabled: false,
23
23
  fields: {
24
- title: {
25
- enabled: true,
26
- validationTypes: [{ length: 50, _type: "less" }, "required"],
27
- },
28
24
  company: {
29
25
  enabled: true,
30
26
  validationTypes: [{ length: 50, _type: "less" }, "required"],
@@ -40,6 +36,10 @@ var DefaultConfigSFUI = {
40
36
  ],
41
37
  validationTypes: ["required"],
42
38
  },
39
+ title: {
40
+ enabled: true,
41
+ validationTypes: [{ length: 50, _type: "less" }, "required"],
42
+ },
43
43
  },
44
44
  },
45
45
  },
@@ -59,6 +59,10 @@ var DefaultThemeSFUI = function (colors) {
59
59
  color: colors.secondary1,
60
60
  bgColor: colors.greyscale1,
61
61
  },
62
+ cartCurrency: {
63
+ color: colors.secondary1,
64
+ bgColor: colors.greyscale1,
65
+ },
62
66
  },
63
67
  topMenu: {
64
68
  color: colors.greyscale6,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.78",
3
+ "version": "2.7.80",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",