@hexure/ui 1.13.48 → 1.13.50

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[];
@@ -24,6 +24,8 @@ export interface FieldProps extends AccessibleProps {
24
24
  tooltip?: TooltipProps;
25
25
  /** Optional ID for automation purposes */
26
26
  dataItemid?: string;
27
+ /** Optional for black message with icon */
28
+ isNewMessageType?: boolean;
27
29
  }
28
30
  declare const Field: FC<FieldProps>;
29
31
  export default Field;
@@ -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[];
@@ -328,6 +329,8 @@ interface FieldProps extends AccessibleProps {
328
329
  tooltip?: TooltipProps;
329
330
  /** Optional ID for automation purposes */
330
331
  dataItemid?: string;
332
+ /** Optional for black message with icon */
333
+ isNewMessageType?: boolean;
331
334
  }
332
335
  declare const Field: FC<FieldProps>;
333
336
 
@@ -568,6 +571,7 @@ interface PaginationProps extends AccessibleProps {
568
571
  pageCount: number;
569
572
  /** Optional ID for automation purposes */
570
573
  dataItemid?: string;
574
+ type?: 'button' | 'submit' | 'reset' | null;
571
575
  }
572
576
  declare const Pagination: FC<PaginationProps>;
573
577
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.13.48",
3
+ "version": "1.13.50",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",