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.
@@ -0,0 +1,5 @@
1
+ export default class StringUtils {
2
+ static convertCamelCaseToWord(camelCaseWord: string): string;
3
+ static lowerCaseFirstLetter(word: string): string;
4
+ static upperCaseFirstLetter(word: string): string;
5
+ }
@@ -0,0 +1,5 @@
1
+ export type IdentityModelConfigurationPageProps = {
2
+ path: string;
3
+ modelRoute: string;
4
+ };
5
+ export default function IdentityModelConfigurationPage({ path, modelRoute }: IdentityModelConfigurationPageProps): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,6 @@
1
- export * from "./IdentityPage";
2
- export * from "./IdentityPage.types";
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
- type Props = {
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, }: Props): import("react/jsx-runtime").JSX.Element;
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;