identity-admin-ui 1.11.45 → 1.11.46
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.css +1843 -1843
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +72 -68
- package/lib/cjs/types/pages/index.d.ts +8 -8
- package/lib/cjs/types/pages/maillog/ShowMailLog.d.ts +1 -1
- package/lib/esm/index.css +1843 -1843
- package/lib/esm/index.js +1 -1
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +72 -68
- package/lib/esm/types/pages/index.d.ts +8 -8
- package/lib/esm/types/pages/maillog/ShowMailLog.d.ts +1 -1
- package/lib/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,68 +1,72 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { TLink } from '../../../components/Breadcrumbs';
|
|
3
|
-
import { INextpreviousExtras } from '../../../components/Buttons/NextPreviousButtons';
|
|
4
|
-
/**
|
|
5
|
-
* Props interface for the ShowRecord component.
|
|
6
|
-
* This interface defines the properties required to render the record detail view,
|
|
7
|
-
* including optional custom components and actions.
|
|
8
|
-
*/
|
|
9
|
-
export interface ShowRecordProps extends INextpreviousExtras {
|
|
10
|
-
/**
|
|
11
|
-
* An optional key for React's reconciliation process.
|
|
12
|
-
*/
|
|
13
|
-
key?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The path to the specific resource being shown.
|
|
16
|
-
*/
|
|
17
|
-
path: string;
|
|
18
|
-
/**
|
|
19
|
-
* The API route to fetch the model data for the resource.
|
|
20
|
-
*/
|
|
21
|
-
modelRoute: string;
|
|
22
|
-
/**
|
|
23
|
-
* An optional custom component to render the record details.
|
|
24
|
-
* @param props - The props passed to the component.
|
|
25
|
-
* @returns {JSX.Element} The rendered component.
|
|
26
|
-
*/
|
|
27
|
-
Component?: (props: any) => JSX.Element;
|
|
28
|
-
/**
|
|
29
|
-
* An optional custom component for rendering the heading view.
|
|
30
|
-
* @param props - The props passed to the component.
|
|
31
|
-
* @returns {JSX.Element} The rendered component.
|
|
32
|
-
*/
|
|
33
|
-
HeadingView?: (props: any) => JSX.Element;
|
|
34
|
-
/**
|
|
35
|
-
* An optional component to render additional actions related to the record.
|
|
36
|
-
* @param props - The props passed to the component.
|
|
37
|
-
* @returns {JSX.Element} The rendered component.
|
|
38
|
-
*/
|
|
39
|
-
Actions?: (props: any) => JSX.Element;
|
|
40
|
-
/**
|
|
41
|
-
* An optional component to render children elements within the breadcrumbs.
|
|
42
|
-
* @param props - The props passed to the component.
|
|
43
|
-
* @returns {JSX.Element} The rendered component.
|
|
44
|
-
*/
|
|
45
|
-
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
46
|
-
/**
|
|
47
|
-
* An optional array of links for the breadcrumbs navigation.
|
|
48
|
-
* This can be used to generate links based on the current record's data.
|
|
49
|
-
*/
|
|
50
|
-
BreadCrumbLinks?: (props: any) => TLink[];
|
|
51
|
-
/**
|
|
52
|
-
* An optional flag to disable default actions like edit.
|
|
53
|
-
*/
|
|
54
|
-
disableDefaultActions?: boolean;
|
|
55
|
-
/**
|
|
56
|
-
* An optional string representing default filters to apply when fetching records.
|
|
57
|
-
*/
|
|
58
|
-
defaultFilters?: string;
|
|
59
|
-
showFilterChips?: boolean;
|
|
60
|
-
/**
|
|
61
|
-
* An optional flag to disable default actions like edit.
|
|
62
|
-
*/
|
|
63
|
-
hideHeaderBreadcrumbs?: boolean;
|
|
64
|
-
/**
|
|
65
|
-
* An optional flag to disable skeleton before loading record.
|
|
66
|
-
*/
|
|
67
|
-
hideSkeleton?: boolean;
|
|
68
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TLink } from '../../../components/Breadcrumbs';
|
|
3
|
+
import { INextpreviousExtras } from '../../../components/Buttons/NextPreviousButtons';
|
|
4
|
+
/**
|
|
5
|
+
* Props interface for the ShowRecord component.
|
|
6
|
+
* This interface defines the properties required to render the record detail view,
|
|
7
|
+
* including optional custom components and actions.
|
|
8
|
+
*/
|
|
9
|
+
export interface ShowRecordProps extends INextpreviousExtras {
|
|
10
|
+
/**
|
|
11
|
+
* An optional key for React's reconciliation process.
|
|
12
|
+
*/
|
|
13
|
+
key?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The path to the specific resource being shown.
|
|
16
|
+
*/
|
|
17
|
+
path: string;
|
|
18
|
+
/**
|
|
19
|
+
* The API route to fetch the model data for the resource.
|
|
20
|
+
*/
|
|
21
|
+
modelRoute: string;
|
|
22
|
+
/**
|
|
23
|
+
* An optional custom component to render the record details.
|
|
24
|
+
* @param props - The props passed to the component.
|
|
25
|
+
* @returns {JSX.Element} The rendered component.
|
|
26
|
+
*/
|
|
27
|
+
Component?: (props: any) => JSX.Element;
|
|
28
|
+
/**
|
|
29
|
+
* An optional custom component for rendering the heading view.
|
|
30
|
+
* @param props - The props passed to the component.
|
|
31
|
+
* @returns {JSX.Element} The rendered component.
|
|
32
|
+
*/
|
|
33
|
+
HeadingView?: (props: any) => JSX.Element;
|
|
34
|
+
/**
|
|
35
|
+
* An optional component to render additional actions related to the record.
|
|
36
|
+
* @param props - The props passed to the component.
|
|
37
|
+
* @returns {JSX.Element} The rendered component.
|
|
38
|
+
*/
|
|
39
|
+
Actions?: (props: any) => JSX.Element;
|
|
40
|
+
/**
|
|
41
|
+
* An optional component to render children elements within the breadcrumbs.
|
|
42
|
+
* @param props - The props passed to the component.
|
|
43
|
+
* @returns {JSX.Element} The rendered component.
|
|
44
|
+
*/
|
|
45
|
+
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
46
|
+
/**
|
|
47
|
+
* An optional array of links for the breadcrumbs navigation.
|
|
48
|
+
* This can be used to generate links based on the current record's data.
|
|
49
|
+
*/
|
|
50
|
+
BreadCrumbLinks?: (props: any) => TLink[];
|
|
51
|
+
/**
|
|
52
|
+
* An optional flag to disable default actions like edit.
|
|
53
|
+
*/
|
|
54
|
+
disableDefaultActions?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* An optional string representing default filters to apply when fetching records.
|
|
57
|
+
*/
|
|
58
|
+
defaultFilters?: string;
|
|
59
|
+
showFilterChips?: boolean;
|
|
60
|
+
/**
|
|
61
|
+
* An optional flag to disable default actions like edit.
|
|
62
|
+
*/
|
|
63
|
+
hideHeaderBreadcrumbs?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* An optional flag to disable skeleton before loading record.
|
|
66
|
+
*/
|
|
67
|
+
hideSkeleton?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* An optional flag to disable fetching the record.
|
|
70
|
+
*/
|
|
71
|
+
disableFetchRecord?: boolean;
|
|
72
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from './IdentityPage';
|
|
2
|
-
export * from './IdentityPage.types';
|
|
3
|
-
export { default as IdentityList } from './IdentityListPage';
|
|
4
|
-
export { default as IdentityShow } from './IdentityShowPage';
|
|
5
|
-
export { default as IdentityEdit } from './IdentityEditPage';
|
|
6
|
-
export { default as IdenityModelConfiguration } from './IdentityModelConfigurationPage';
|
|
7
|
-
export { default as IdentityPermissionPage } from './permissions';
|
|
8
|
-
export { default as IdentityShowMailLog } from './maillog/ShowMailLog';
|
|
1
|
+
export * from './IdentityPage';
|
|
2
|
+
export * from './IdentityPage.types';
|
|
3
|
+
export { default as IdentityList } from './IdentityListPage';
|
|
4
|
+
export { default as IdentityShow } from './IdentityShowPage';
|
|
5
|
+
export { default as IdentityEdit } from './IdentityEditPage';
|
|
6
|
+
export { default as IdenityModelConfiguration } from './IdentityModelConfigurationPage';
|
|
7
|
+
export { default as IdentityPermissionPage } from './permissions';
|
|
8
|
+
export { default as IdentityShowMailLog } from './maillog/ShowMailLog';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function ShowMailLog(props: any): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export default function ShowMailLog(props: any): import("react/jsx-runtime").JSX.Element;
|
package/lib/index.d.ts
CHANGED
|
@@ -598,6 +598,10 @@ interface ShowRecordProps extends INextpreviousExtras {
|
|
|
598
598
|
* An optional flag to disable skeleton before loading record.
|
|
599
599
|
*/
|
|
600
600
|
hideSkeleton?: boolean;
|
|
601
|
+
/**
|
|
602
|
+
* An optional flag to disable fetching the record.
|
|
603
|
+
*/
|
|
604
|
+
disableFetchRecord?: boolean;
|
|
601
605
|
}
|
|
602
606
|
|
|
603
607
|
/**
|