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;
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.5.13",
3
+ "version": "1.5.14",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",