identity-admin-ui 1.6.4 → 1.6.6
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 +2 -2
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +2 -0
- package/lib/cjs/types/pages/IdentityEditPage.d.ts +2 -0
- package/lib/cjs/types/pages/IdentityPage.types.d.ts +1 -1
- package/lib/esm/index.js +8 -8
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +2 -0
- package/lib/esm/types/pages/IdentityEditPage.d.ts +2 -0
- package/lib/esm/types/pages/IdentityPage.types.d.ts +1 -1
- package/lib/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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,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;
|
package/lib/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ interface IdentityPageProps {
|
|
|
23
23
|
taptitle: string;
|
|
24
24
|
headingTitle: string;
|
|
25
25
|
enableDefaultActions?: boolean;
|
|
26
|
-
|
|
26
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
27
27
|
themeStretch?: boolean;
|
|
28
28
|
Component?: (props: any) => JSX.Element;
|
|
29
29
|
DefaultActions: (props: any) => JSX.Element;
|
|
@@ -118,6 +118,7 @@ interface ShowRecordProps extends INextpreviousExtras {
|
|
|
118
118
|
HeadingView?: (props: any) => JSX.Element;
|
|
119
119
|
Actions?: (props: any) => JSX.Element;
|
|
120
120
|
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
121
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
121
122
|
disableDefaultActions?: boolean;
|
|
122
123
|
}
|
|
123
124
|
|
|
@@ -137,6 +138,7 @@ interface ICreateEdit extends INextpreviousExtras {
|
|
|
137
138
|
HeadingView?: (props: any) => JSX.Element;
|
|
138
139
|
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
139
140
|
redirectPath?: (record: any) => string;
|
|
141
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
140
142
|
}
|
|
141
143
|
declare function CreateEdit(props: ICreateEdit): react_jsx_runtime.JSX.Element;
|
|
142
144
|
|