@thryveai/theme-interfaces 2.3.4 → 2.3.5

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.
@@ -65,9 +65,6 @@ export interface IDefaultThemeInterface {
65
65
  mainMenu: INavStyles;
66
66
  bottomMenu: INavBottom;
67
67
  mobileMenu: INavStyles;
68
- accountPopoverOptionButtonLink?: {
69
- color?: string;
70
- };
71
68
  accountPopover: {
72
69
  backgroundColor: string;
73
70
  borderColor: string;
@@ -273,8 +270,8 @@ export interface IDefaultThemeInterface {
273
270
  visited: ILinkType;
274
271
  };
275
272
  };
276
- buttonLinks?: {
277
- color?: string;
273
+ buttonLinks: {
274
+ color: string;
278
275
  };
279
276
  buttons: {
280
277
  globalThemeBorderRadius: string;
@@ -65,9 +65,6 @@ export interface IThemeInterface {
65
65
  mainMenu?: INavStyles;
66
66
  bottomMenu?: INavBottom;
67
67
  mobileMenu?: INavStyles;
68
- accountPopoverOptionButtonLink?: {
69
- color?: string;
70
- };
71
68
  accountPopover?: {
72
69
  backgroundColor?: string;
73
70
  borderColor?: string;
@@ -595,6 +595,7 @@ var DefaultThemeSFUI = function (colors) {
595
595
  }
596
596
  }
597
597
  },
598
+ buttonLinks: { color: colors.primary1 },
598
599
  buttons: {
599
600
  globalThemeBorderRadius: exports.globalTheme.BorderRadius,
600
601
  globalThemeFontWeight: exports.globalTheme.FontWeightBold,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "tsc",