@hexure/ui 1.8.3 → 1.8.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.
@@ -5,7 +5,8 @@ export interface ButtonMenuProps {
5
5
  label: string;
6
6
  small?: boolean;
7
7
  menuItems: Array<MenuItemProps>;
8
- maxHeight?: string | number;
8
+ menuWidth?: string;
9
+ maxHeight?: string;
9
10
  position?: 'left' | 'right';
10
11
  format?: 'primary' | 'secondary';
11
12
  }
@@ -1,6 +1,6 @@
1
1
  import { FC, ReactNode } from 'react';
2
2
  import { AccessibleProps } from '../../utils/Accessibility';
3
- interface ButtonProps extends AccessibleProps {
3
+ export interface ButtonProps extends AccessibleProps {
4
4
  disabled?: boolean;
5
5
  children: string;
6
6
  icon?: string;
package/dist/index.d.ts CHANGED
@@ -116,7 +116,8 @@ interface ButtonMenuProps {
116
116
  label: string;
117
117
  small?: boolean;
118
118
  menuItems: Array<MenuItemProps>;
119
- maxHeight?: string | number;
119
+ menuWidth?: string;
120
+ maxHeight?: string;
120
121
  position?: 'left' | 'right';
121
122
  format?: 'primary' | 'secondary';
122
123
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",