identity-admin-ui 1.7.25 → 1.7.27
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/lib/cjs/index.js +14 -12
- package/lib/cjs/types/components/dataGrid/DataGridd.d.ts +1 -0
- package/lib/cjs/types/helpers/CrudHelper/List/ListProps.d.ts +1 -1
- package/lib/esm/index.js +14 -12
- package/lib/esm/types/components/dataGrid/DataGridd.d.ts +1 -0
- package/lib/esm/types/helpers/CrudHelper/List/ListProps.d.ts +1 -1
- package/lib/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -32,5 +32,6 @@ export interface GridProps {
|
|
|
32
32
|
[key: string]: IBulkActionsDialogState;
|
|
33
33
|
} | undefined>>;
|
|
34
34
|
extras?: IGridExtras;
|
|
35
|
+
setCustomActions: React.Dispatch<React.SetStateAction<JSX.Element | undefined>>;
|
|
35
36
|
}
|
|
36
37
|
export default function DataGridd({ resources, resourceName, paramsState, bulkActionsDialogState, extras, setBulkActionsDialogState }: GridProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -18,5 +18,5 @@ export interface IListRecordsProps extends IListProps {
|
|
|
18
18
|
bulkActionsComponents?: IBulkActionComponent;
|
|
19
19
|
HeadingView?: JSX.Element;
|
|
20
20
|
disableFilterButton?: boolean;
|
|
21
|
-
dataListComponent?: (props: GridProps) =>
|
|
21
|
+
dataListComponent?: (props: GridProps) => JSX.Element;
|
|
22
22
|
}
|
package/lib/index.d.ts
CHANGED
|
@@ -372,6 +372,7 @@ interface GridProps {
|
|
|
372
372
|
[key: string]: IBulkActionsDialogState;
|
|
373
373
|
} | undefined>>;
|
|
374
374
|
extras?: IGridExtras;
|
|
375
|
+
setCustomActions: react.Dispatch<react.SetStateAction<JSX.Element | undefined>>;
|
|
375
376
|
}
|
|
376
377
|
declare function DataGridd({ resources, resourceName, paramsState, bulkActionsDialogState, extras, setBulkActionsDialogState }: GridProps): react_jsx_runtime.JSX.Element;
|
|
377
378
|
|
|
@@ -424,7 +425,7 @@ interface IListRecordsProps extends IListProps {
|
|
|
424
425
|
bulkActionsComponents?: IBulkActionComponent;
|
|
425
426
|
HeadingView?: JSX.Element;
|
|
426
427
|
disableFilterButton?: boolean;
|
|
427
|
-
dataListComponent?: (props: GridProps) =>
|
|
428
|
+
dataListComponent?: (props: GridProps) => JSX.Element;
|
|
428
429
|
}
|
|
429
430
|
|
|
430
431
|
type AlertColor = 'success' | 'info' | 'warning' | 'error';
|