identity-admin-ui 1.5.13 → 1.5.14
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/StringUtils.d.ts +5 -0
- package/lib/cjs/types/pages/IdentityModelConfigurationPage.d.ts +5 -0
- package/lib/cjs/types/pages/index.d.ts +3 -2
- package/lib/cjs/types/sections/dashboard/ModelConfiguration/ActionsSection.d.ts +7 -0
- package/lib/cjs/types/sections/dashboard/ModelConfiguration/ModelConfigurationEditForm.d.ts +12 -0
- package/lib/cjs/types/sections/dashboard/NewEditForm.d.ts +3 -4
- package/lib/esm/index.js +12 -12
- package/lib/esm/types/helpers/StringUtils.d.ts +5 -0
- package/lib/esm/types/pages/IdentityModelConfigurationPage.d.ts +5 -0
- package/lib/esm/types/pages/index.d.ts +3 -2
- package/lib/esm/types/sections/dashboard/ModelConfiguration/ActionsSection.d.ts +7 -0
- package/lib/esm/types/sections/dashboard/ModelConfiguration/ModelConfigurationEditForm.d.ts +12 -0
- package/lib/esm/types/sections/dashboard/NewEditForm.d.ts +3 -4
- package/lib/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './IdentityPage';
|
|
2
|
+
export * from './IdentityPage.types';
|
|
3
3
|
export { default as IdentityList } from './IdentityListPage';
|
|
4
4
|
export { default as IdentityShow } from './IdentityShowPage';
|
|
5
5
|
export { default as IdentityEdit } from './IdentityEditPage';
|
|
6
|
+
export { default as IdenityModelConfiguration } from './IdentityModelConfigurationPage';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface IActionField {
|
|
2
|
+
getValues: any;
|
|
3
|
+
size: any;
|
|
4
|
+
checked: any;
|
|
5
|
+
handleChange: (event: any, key: string) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare function ActionSection({ getValues, checked, size, handleChange }: IActionField): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { INewEditFormProps } from '../NewEditForm';
|
|
2
|
+
export interface IModelConfigurationFormProps extends INewEditFormProps {
|
|
3
|
+
isEdit: boolean;
|
|
4
|
+
record?: any;
|
|
5
|
+
path: string;
|
|
6
|
+
baseApiRoute: string;
|
|
7
|
+
resources: any;
|
|
8
|
+
mediaUploaderFields?: string[];
|
|
9
|
+
apiRoute: string;
|
|
10
|
+
onSubmitForm?: any;
|
|
11
|
+
}
|
|
12
|
+
export default function ModelConfigurationForm({ isEdit, record, path, apiRoute, resources, afterEditSnackText }: IModelConfigurationFormProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
export interface INewEditFormProps {
|
|
2
2
|
isEdit: boolean;
|
|
3
3
|
id?: string;
|
|
4
4
|
record?: any;
|
|
@@ -10,6 +10,5 @@ type Props = {
|
|
|
10
10
|
redirectPath?: (record: any) => string;
|
|
11
11
|
afterEditSnackText?: (recordName: string) => string;
|
|
12
12
|
afterCreateSnackText?: (recordName: string) => string;
|
|
13
|
-
}
|
|
14
|
-
export default function NewEditForm({ isEdit, id, record, path, mediaUploaderFields, onSubmitForm, referencedMap, modelRoute, redirectPath, afterCreateSnackText, afterEditSnackText, }:
|
|
15
|
-
export {};
|
|
13
|
+
}
|
|
14
|
+
export default function NewEditForm({ isEdit, id, record, path, mediaUploaderFields, onSubmitForm, referencedMap, modelRoute, redirectPath, afterCreateSnackText, afterEditSnackText, }: INewEditFormProps): import("react/jsx-runtime").JSX.Element;
|
package/lib/index.d.ts
CHANGED
|
@@ -129,6 +129,12 @@ interface ICreateEdit {
|
|
|
129
129
|
}
|
|
130
130
|
declare function CreateEdit(props: ICreateEdit): react_jsx_runtime.JSX.Element;
|
|
131
131
|
|
|
132
|
+
type IdentityModelConfigurationPageProps = {
|
|
133
|
+
path: string;
|
|
134
|
+
modelRoute: string;
|
|
135
|
+
};
|
|
136
|
+
declare function IdentityModelConfigurationPage({ path, modelRoute }: IdentityModelConfigurationPageProps): react_jsx_runtime.JSX.Element;
|
|
137
|
+
|
|
132
138
|
declare enum RequestState {
|
|
133
139
|
IDLE = "idle",
|
|
134
140
|
LOADING = "loading",
|
|
@@ -505,4 +511,4 @@ declare function DashBoardRouter(props: any): {
|
|
|
505
511
|
}[];
|
|
506
512
|
};
|
|
507
513
|
|
|
508
|
-
export { ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, IAction, IActionMin, IExtarAction, IExtras, IFilter, IMainProperty, IParent, IProperty, ISchemaObject, ISnackMessageProps, IState, IdentityClient, CreateEdit as IdentityEdit, ListRecords as IdentityList, IdentityPage, IdentityPageProps, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, SettingsValueProps, Severity, SnackAlertContext, SnackAlertProvider, State, ThemeProps, ThemeProvider, orderTypes, path, useApi, useAppConfigurations, useCredentials, useNavData, usePaths, useResources, useSnackAlert };
|
|
514
|
+
export { ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, IAction, IActionMin, IExtarAction, IExtras, IFilter, IMainProperty, IParent, IProperty, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, IdentityClient, CreateEdit as IdentityEdit, ListRecords as IdentityList, IdentityPage, IdentityPageProps, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, SettingsValueProps, Severity, SnackAlertContext, SnackAlertProvider, State, ThemeProps, ThemeProvider, orderTypes, path, useApi, useAppConfigurations, useCredentials, useNavData, usePaths, useResources, useSnackAlert };
|