@natoora-libs/core 0.2.31 → 0.2.32
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/components/index.cjs +6 -2
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +6 -2
- package/dist/components/index.js.map +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -749,8 +749,10 @@ interface PaginationForTableProps {
|
|
|
749
749
|
position?: any;
|
|
750
750
|
style?: any;
|
|
751
751
|
updateFilters: any;
|
|
752
|
+
siblingCount?: number;
|
|
753
|
+
boundaryCount?: number;
|
|
752
754
|
}
|
|
753
|
-
declare const PaginationForTable: ({ appliedFilters, className, page, pagination, position, style, updateFilters, }: PaginationForTableProps) => react_jsx_runtime.JSX.Element;
|
|
755
|
+
declare const PaginationForTable: ({ appliedFilters, className, page, pagination, position, style, updateFilters, siblingCount, boundaryCount }: PaginationForTableProps) => react_jsx_runtime.JSX.Element;
|
|
754
756
|
|
|
755
757
|
interface PhoneInputProps {
|
|
756
758
|
value?: string | null;
|
|
@@ -749,8 +749,10 @@ interface PaginationForTableProps {
|
|
|
749
749
|
position?: any;
|
|
750
750
|
style?: any;
|
|
751
751
|
updateFilters: any;
|
|
752
|
+
siblingCount?: number;
|
|
753
|
+
boundaryCount?: number;
|
|
752
754
|
}
|
|
753
|
-
declare const PaginationForTable: ({ appliedFilters, className, page, pagination, position, style, updateFilters, }: PaginationForTableProps) => react_jsx_runtime.JSX.Element;
|
|
755
|
+
declare const PaginationForTable: ({ appliedFilters, className, page, pagination, position, style, updateFilters, siblingCount, boundaryCount }: PaginationForTableProps) => react_jsx_runtime.JSX.Element;
|
|
754
756
|
|
|
755
757
|
interface PhoneInputProps {
|
|
756
758
|
value?: string | null;
|
package/dist/components/index.js
CHANGED
|
@@ -6407,7 +6407,9 @@ var PaginationForTable = ({
|
|
|
6407
6407
|
pagination,
|
|
6408
6408
|
position = "relative",
|
|
6409
6409
|
style,
|
|
6410
|
-
updateFilters
|
|
6410
|
+
updateFilters,
|
|
6411
|
+
siblingCount = 1,
|
|
6412
|
+
boundaryCount = 1
|
|
6411
6413
|
}) => {
|
|
6412
6414
|
const { classes, cx } = useStyles33();
|
|
6413
6415
|
const handleChange = (event, value) => {
|
|
@@ -6431,7 +6433,9 @@ var PaginationForTable = ({
|
|
|
6431
6433
|
{
|
|
6432
6434
|
count: pagination.num_pages,
|
|
6433
6435
|
page,
|
|
6434
|
-
onChange: handleChange
|
|
6436
|
+
onChange: handleChange,
|
|
6437
|
+
siblingCount,
|
|
6438
|
+
boundaryCount
|
|
6435
6439
|
}
|
|
6436
6440
|
)
|
|
6437
6441
|
]
|