identity-admin-ui 1.11.16 → 1.11.18
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.
|
@@ -33,5 +33,6 @@ export interface GridProps {
|
|
|
33
33
|
} | undefined>>;
|
|
34
34
|
extras?: IGridExtras;
|
|
35
35
|
setCustomActions: React.Dispatch<React.SetStateAction<JSX.Element | undefined>>;
|
|
36
|
+
hidePagination?: boolean;
|
|
36
37
|
}
|
|
37
|
-
export default function DataGridd({ resources, resourceName, paramsState, bulkActionsDialogState, extras, setBulkActionsDialogState }: GridProps): import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
export default function DataGridd({ resources, resourceName, paramsState, bulkActionsDialogState, extras, setBulkActionsDialogState, hidePagination }: GridProps): import("react/jsx-runtime").JSX.Element;
|
package/lib/index.d.ts
CHANGED
|
@@ -438,8 +438,9 @@ interface GridProps {
|
|
|
438
438
|
} | undefined>>;
|
|
439
439
|
extras?: IGridExtras;
|
|
440
440
|
setCustomActions: react.Dispatch<react.SetStateAction<JSX.Element | undefined>>;
|
|
441
|
+
hidePagination?: boolean;
|
|
441
442
|
}
|
|
442
|
-
declare function DataGridd({ resources, resourceName, paramsState, bulkActionsDialogState, extras, setBulkActionsDialogState }: GridProps): react_jsx_runtime.JSX.Element;
|
|
443
|
+
declare function DataGridd({ resources, resourceName, paramsState, bulkActionsDialogState, extras, setBulkActionsDialogState, hidePagination }: GridProps): react_jsx_runtime.JSX.Element;
|
|
443
444
|
|
|
444
445
|
interface ListProps {
|
|
445
446
|
value: string;
|