identity-admin-ui 1.6.3 → 1.6.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.
- package/lib/cjs/index.js +11 -11
- package/lib/cjs/types/helpers/CrudHelper/List/PaginationSearchParams.d.ts +13 -0
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +2 -0
- package/lib/cjs/types/layout/dashboard/config-navigation.d.ts +4 -4
- package/lib/cjs/types/pages/IdentityEditPage.d.ts +2 -0
- package/lib/cjs/types/pages/IdentityPage.types.d.ts +1 -1
- package/lib/cjs/types/routes/AdminRouter.d.ts +10 -10
- package/lib/cjs/types/routes/paths.d.ts +5 -5
- package/lib/esm/index.js +4 -4
- package/lib/esm/types/helpers/CrudHelper/List/PaginationSearchParams.d.ts +13 -0
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +2 -0
- package/lib/esm/types/layout/dashboard/config-navigation.d.ts +4 -4
- package/lib/esm/types/pages/IdentityEditPage.d.ts +2 -0
- package/lib/esm/types/pages/IdentityPage.types.d.ts +1 -1
- package/lib/esm/types/routes/AdminRouter.d.ts +10 -10
- package/lib/esm/types/routes/paths.d.ts +5 -5
- package/lib/index.d.ts +3 -1
- package/package.json +78 -78
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class PaginationSearchParams {
|
|
2
|
+
private searchParams;
|
|
3
|
+
private defaultrowsPerPage;
|
|
4
|
+
constructor(searchParams: URLSearchParams, defaultrowsPerPage: number);
|
|
5
|
+
get(): {
|
|
6
|
+
page: number;
|
|
7
|
+
pageSize: number;
|
|
8
|
+
};
|
|
9
|
+
private getPageSize;
|
|
10
|
+
private getPageNumber;
|
|
11
|
+
private getDefaultPageSize;
|
|
12
|
+
private getDefaultPageNumber;
|
|
13
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { TLink } from '../../../components/Breadcrumbs';
|
|
2
3
|
import { INextpreviousExtras } from '../../../components/Buttons/NextPreviousButtons';
|
|
3
4
|
export interface ShowRecordProps extends INextpreviousExtras {
|
|
4
5
|
key?: string;
|
|
@@ -8,5 +9,6 @@ export interface ShowRecordProps extends INextpreviousExtras {
|
|
|
8
9
|
HeadingView?: (props: any) => JSX.Element;
|
|
9
10
|
Actions?: (props: any) => JSX.Element;
|
|
10
11
|
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
12
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
11
13
|
disableDefaultActions?: boolean;
|
|
12
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function useNavData(): {
|
|
2
|
-
subheader: string;
|
|
3
|
-
items: any;
|
|
4
|
-
}[];
|
|
1
|
+
export declare function useNavData(): {
|
|
2
|
+
subheader: string;
|
|
3
|
+
items: any;
|
|
4
|
+
}[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { INextpreviousExtras } from '../components/Buttons/NextPreviousButtons';
|
|
3
|
+
import { TLink } from '../components/Breadcrumbs';
|
|
3
4
|
export interface ICreateEdit extends INextpreviousExtras {
|
|
4
5
|
isEdit: boolean;
|
|
5
6
|
modelRoute: string;
|
|
@@ -14,5 +15,6 @@ export interface ICreateEdit extends INextpreviousExtras {
|
|
|
14
15
|
HeadingView?: (props: any) => JSX.Element;
|
|
15
16
|
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
16
17
|
redirectPath?: (record: any) => string;
|
|
18
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
17
19
|
}
|
|
18
20
|
export default function CreateEdit(props: ICreateEdit): import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,7 +7,7 @@ export interface IdentityPageProps {
|
|
|
7
7
|
taptitle: string;
|
|
8
8
|
headingTitle: string;
|
|
9
9
|
enableDefaultActions?: boolean;
|
|
10
|
-
|
|
10
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
11
11
|
themeStretch?: boolean;
|
|
12
12
|
Component?: (props: any) => JSX.Element;
|
|
13
13
|
DefaultActions: (props: any) => JSX.Element;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { SizeType } from '../helpers/Types';
|
|
2
|
-
export declare var SIZE: SizeType;
|
|
3
|
-
export default function AdminRouter(): {
|
|
4
|
-
path: any;
|
|
5
|
-
children: {
|
|
6
|
-
path: string;
|
|
7
|
-
element: import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
children: any[];
|
|
9
|
-
}[];
|
|
10
|
-
};
|
|
1
|
+
import { SizeType } from '../helpers/Types';
|
|
2
|
+
export declare var SIZE: SizeType;
|
|
3
|
+
export default function AdminRouter(): {
|
|
4
|
+
path: any;
|
|
5
|
+
children: {
|
|
6
|
+
path: string;
|
|
7
|
+
element: import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
children: any[];
|
|
9
|
+
}[];
|
|
10
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare function path(root: string, sublink: string): string;
|
|
2
|
-
export declare const ADMIN_ROOT = "/admin";
|
|
3
|
-
export declare var ADMIN_PATH: {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
};
|
|
1
|
+
export declare function path(root: string, sublink: string): string;
|
|
2
|
+
export declare const ADMIN_ROOT = "/admin";
|
|
3
|
+
export declare var ADMIN_PATH: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
};
|