identity-admin-ui 1.8.25 → 1.8.27

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.
@@ -7,6 +7,7 @@ export interface RequestConfig {
7
7
  query?: any;
8
8
  onSuccess?: (data: any) => void;
9
9
  onError?: (error: any) => void;
10
+ rowResponse?: boolean;
10
11
  }
11
12
  declare function useApi<T>(): {
12
13
  requestState: IState<T>;
@@ -8,3 +8,4 @@ export { default as ThemeProvider } from './theme';
8
8
  export * from './routes';
9
9
  export { NextPreviousButtons } from './components/Buttons/NextPreviousButtons';
10
10
  export * from './components';
11
+ export * from './sections/dashboard';
@@ -0,0 +1 @@
1
+ export { default as ShowRecord } from './ShowRecord';
package/lib/index.d.ts CHANGED
@@ -497,6 +497,7 @@ interface RequestConfig {
497
497
  query?: any;
498
498
  onSuccess?: (data: any) => void;
499
499
  onError?: (error: any) => void;
500
+ rowResponse?: boolean;
500
501
  }
501
502
  declare function useApi<T>(): {
502
503
  requestState: IState<T>;
@@ -595,4 +596,16 @@ declare function DashBoardRouter(props: any): {
595
596
  }[];
596
597
  };
597
598
 
598
- export { ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, DialogContext, DialogContextProvider, IAction, IActionMin, IDialogProps, IExtarAction, IExtras, IFilter, IMainProperty, IOptionalResource, IParent, IProperty, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, IdentityClient, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, IdentityPage, IdentityPageProps, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, NextPreviousButtons, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, SettingsValueProps, Severity, SnackAlertContext, SnackAlertProvider, State, ThemeProps, ThemeProvider, orderTypes, path, useApi, useAppConfigurations, useCredentials, useDialogs, useNavData, usePaths, useResources, useSnackAlert };
599
+ interface IdentityShowProps {
600
+ record: {
601
+ [key: string]: any;
602
+ };
603
+ userPath: {
604
+ [key: string]: ResourcePaths;
605
+ };
606
+ path: any;
607
+ }
608
+
609
+ declare function IdentityShow({ record, path, userPath }: IdentityShowProps): react_jsx_runtime.JSX.Element;
610
+
611
+ export { ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, DialogContext, DialogContextProvider, IAction, IActionMin, IDialogProps, IExtarAction, IExtras, IFilter, IMainProperty, IOptionalResource, IParent, IProperty, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, IdentityClient, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, IdentityPage, IdentityPageProps, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, NextPreviousButtons, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, SettingsValueProps, Severity, IdentityShow as ShowRecord, SnackAlertContext, SnackAlertProvider, State, ThemeProps, ThemeProvider, orderTypes, path, useApi, useAppConfigurations, useCredentials, useDialogs, useNavData, usePaths, useResources, useSnackAlert };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.8.25",
3
+ "version": "1.8.27",
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",