@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.
- package/dist/cjs/index.js +28 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/BulkActionBar/BulkActionBar.d.ts +1 -0
- package/dist/cjs/types/components/Field/Field.d.ts +2 -0
- package/dist/cjs/types/components/Pagination/Pagination.d.ts +1 -0
- package/dist/esm/index.js +29 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/BulkActionBar/BulkActionBar.d.ts +1 -0
- package/dist/esm/types/components/Field/Field.d.ts +2 -0
- package/dist/esm/types/components/Pagination/Pagination.d.ts +1 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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
|
|