@scbt-ecom/ui 0.121.1 → 0.122.1
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/lib/shared/ui/pagination/Pagination.js +1 -1
- package/dist/lib/shared/ui/pagination/Pagination.js.map +1 -1
- package/dist/lib/widgets/dynamicForm/DynamicForm.js +1 -1
- package/dist/lib/widgets/dynamicForm/DynamicForm.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/types/lib/shared/ui/pagination/Pagination.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
1
2
|
type PaginationClasses = {
|
|
2
3
|
root?: string;
|
|
3
4
|
button?: string;
|
|
4
5
|
ellipsis?: string;
|
|
5
6
|
active?: string;
|
|
6
7
|
};
|
|
7
|
-
export type PaginationProps = {
|
|
8
|
+
export type PaginationProps = HTMLAttributes<HTMLDivElement> & {
|
|
8
9
|
/**
|
|
9
10
|
* активная страница
|
|
10
11
|
*/
|
|
@@ -35,5 +36,5 @@ export type PaginationProps = {
|
|
|
35
36
|
*/
|
|
36
37
|
classes?: PaginationClasses;
|
|
37
38
|
};
|
|
38
|
-
export declare const Pagination: ({ page, between, totalPages, changePage, next, ellipsis, classes }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export declare const Pagination: ({ page, between, totalPages, changePage, next, ellipsis, classes, ...props }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
40
|
export {};
|