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.
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.7.25",
3
+ "version": "1.7.27",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",