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