@hexure/ui 1.13.48 → 1.13.49

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,6 +5,7 @@ interface ButtonProps {
5
5
  onClick: (e?: any) => void;
6
6
  format?: 'primary' | 'secondary';
7
7
  icon?: string;
8
+ type?: 'button' | 'submit' | 'reset' | null;
8
9
  }
9
10
  export interface BulkActionBarProps extends AccessibleProps {
10
11
  actions?: ButtonProps[];
@@ -6,6 +6,7 @@ export interface PaginationProps extends AccessibleProps {
6
6
  pageCount: number;
7
7
  /** Optional ID for automation purposes */
8
8
  dataItemid?: string;
9
+ type?: 'button' | 'submit' | 'reset' | null;
9
10
  }
10
11
  declare const Pagination: FC<PaginationProps>;
11
12
  export default Pagination;
package/dist/index.d.ts CHANGED
@@ -157,6 +157,7 @@ interface ButtonProps$2 {
157
157
  onClick: (e?: any) => void;
158
158
  format?: 'primary' | 'secondary';
159
159
  icon?: string;
160
+ type?: 'button' | 'submit' | 'reset' | null;
160
161
  }
161
162
  interface BulkActionBarProps extends AccessibleProps {
162
163
  actions?: ButtonProps$2[];
@@ -568,6 +569,7 @@ interface PaginationProps extends AccessibleProps {
568
569
  pageCount: number;
569
570
  /** Optional ID for automation purposes */
570
571
  dataItemid?: string;
572
+ type?: 'button' | 'submit' | 'reset' | null;
571
573
  }
572
574
  declare const Pagination: FC<PaginationProps>;
573
575
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.13.48",
3
+ "version": "1.13.49",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",