identity-admin-ui 1.11.12 → 1.11.13

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,6 @@
1
+ import { DumpServiceActionProps } from './types';
2
+ /**
3
+ * DumpServiceAction: is a button with custom dialog where to unselect the model where didn't meant to be included in the dump
4
+ * @param DumpServiceActionProps
5
+ */
6
+ export default function DumpServiceAction({ baseUrl }: DumpServiceActionProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export { default as IdentityDumpServiceAction } from './DumpServiceAction';
@@ -0,0 +1,9 @@
1
+ /**
2
+ * DumpServiceActionProps type for Dump service action
3
+ */
4
+ export interface DumpServiceActionProps {
5
+ /**
6
+ * @param baseUrl is the base url for dump service where deployed ex: http:localhost:3000/api
7
+ */
8
+ baseUrl: string;
9
+ }
@@ -9,3 +9,4 @@ export * from './routes';
9
9
  export { NextPreviousButtons } from './components/Buttons/NextPreviousButtons';
10
10
  export * from './components';
11
11
  export * from './sections/dashboard';
12
+ export * from './actions';
@@ -1 +1,4 @@
1
1
  export declare function sleep(ms: number): Promise<unknown>;
2
+ export declare function not(a: readonly string[], b: readonly string[]): string[];
3
+ export declare function intersection(a: readonly string[], b: readonly string[]): string[];
4
+ export declare function union(a: readonly string[], b: readonly string[]): string[];
package/lib/index.d.ts CHANGED
@@ -669,4 +669,20 @@ interface IdentityShowProps {
669
669
 
670
670
  declare function IdentityShow({ record, path, userPath }: IdentityShowProps): react_jsx_runtime.JSX.Element;
671
671
 
672
- 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, Permissions as IdentityPermissionPage, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, NextPreviousButtons, NotificationContext, NotificationsPopover as NotificationPopover, NotificationsContextConfig, NotificationsContextProvider, 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, useNotifications, usePaths, useResources, useSnackAlert };
672
+ /**
673
+ * DumpServiceActionProps type for Dump service action
674
+ */
675
+ interface DumpServiceActionProps {
676
+ /**
677
+ * @param baseUrl is the base url for dump service where deployed ex: http:localhost:3000/api
678
+ */
679
+ baseUrl: string;
680
+ }
681
+
682
+ /**
683
+ * DumpServiceAction: is a button with custom dialog where to unselect the model where didn't meant to be included in the dump
684
+ * @param DumpServiceActionProps
685
+ */
686
+ declare function DumpServiceAction({ baseUrl }: DumpServiceActionProps): react_jsx_runtime.JSX.Element;
687
+
688
+ 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, DumpServiceAction as IdentityDumpServiceAction, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, IdentityPage, IdentityPageProps, Permissions as IdentityPermissionPage, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, NextPreviousButtons, NotificationContext, NotificationsPopover as NotificationPopover, NotificationsContextConfig, NotificationsContextProvider, 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, useNotifications, usePaths, useResources, useSnackAlert };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.11.12",
3
+ "version": "1.11.13",
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",