identity-admin-ui 1.11.4 → 1.11.5

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.
@@ -3,6 +3,7 @@ type INeighborButton = {
3
3
  icon: string;
4
4
  loading?: boolean;
5
5
  onClick: () => void;
6
+ disabled?: boolean;
6
7
  };
7
- export declare function NeighborButton({ title, loading, icon, onClick }: INeighborButton): import("react/jsx-runtime").JSX.Element;
8
+ export declare function NeighborButton({ title, loading, disabled, icon, onClick }: INeighborButton): import("react/jsx-runtime").JSX.Element;
8
9
  export {};
@@ -1,3 +1,4 @@
1
+ import { ListParams } from '../dataGrid/GridTypes';
1
2
  export interface INextpreviousExtras {
2
3
  onNoNextText?: string;
3
4
  onNoPreviousText?: string;
@@ -9,6 +10,9 @@ export interface INextpreviousExtras {
9
10
  export interface INextPrevious extends INextpreviousExtras {
10
11
  recordId: string;
11
12
  modelPath: string;
13
+ numberOfRecords?: number;
14
+ recordIndex?: number;
12
15
  navigateTo: (recordId: string) => void;
16
+ params: ListParams;
13
17
  }
14
- export declare function NextPreviousButtons({ modelPath, onNoNextText, onNoPreviousText, recordId, nextButtonTitle, previousButtonTitle, navigateTo, onClickNext, onClickPrevious, }: INextPrevious): import("react/jsx-runtime").JSX.Element;
18
+ export declare function NextPreviousButtons({ modelPath, onNoNextText, onNoPreviousText, recordId, nextButtonTitle, previousButtonTitle, recordIndex, numberOfRecords, params, navigateTo, onClickNext, onClickPrevious, }: INextPrevious): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,5 @@
1
1
  export interface IRecordResponseData {
2
2
  record: any;
3
+ numberOfRecords?: number;
4
+ recordIndex?: number;
3
5
  }
@@ -11,4 +11,5 @@ export interface ShowRecordProps extends INextpreviousExtras {
11
11
  BreadcrumbsChildren?: (props: any) => JSX.Element;
12
12
  BreadCrumbLinks?: (props: any) => TLink[];
13
13
  disableDefaultActions?: boolean;
14
+ defaultFilters?: string;
14
15
  }
@@ -0,0 +1,9 @@
1
+ import { ListParams } from '../../../components/dataGrid/GridTypes';
2
+ import IResource from '../../../context/Resource';
3
+ interface IUrlFilterForShow {
4
+ defaultFilters: string | undefined;
5
+ resource: IResource;
6
+ searchParams: URLSearchParams;
7
+ }
8
+ export declare function getUrlFiltersForShow(props: IUrlFilterForShow): ListParams;
9
+ export {};
@@ -19,5 +19,6 @@ export interface ICreateEdit extends INextpreviousExtras {
19
19
  BreadCrumbLinks?: (props: any) => TLink[];
20
20
  disableCreateNewButtonOnReference?: boolean;
21
21
  keepFullWidthElements?: boolean;
22
+ defaultFilters: string | undefined;
22
23
  }
23
24
  export default function CreateEdit(props: ICreateEdit): import("react/jsx-runtime").JSX.Element;