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.
- package/lib/cjs/index.js +4 -4
- package/lib/cjs/types/actions/DumpServiceAction.d.ts +6 -0
- package/lib/cjs/types/actions/index.d.ts +1 -0
- package/lib/cjs/types/actions/types.d.ts +9 -0
- package/lib/cjs/types/index.d.ts +1 -0
- package/lib/cjs/types/utils/utils.d.ts +3 -0
- package/lib/esm/index.js +4 -4
- package/lib/esm/types/actions/DumpServiceAction.d.ts +6 -0
- package/lib/esm/types/actions/index.d.ts +1 -0
- package/lib/esm/types/actions/types.d.ts +9 -0
- package/lib/esm/types/index.d.ts +1 -0
- package/lib/esm/types/utils/utils.d.ts +3 -0
- package/lib/index.d.ts +17 -1
- package/package.json +1 -1
|
@@ -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';
|
package/lib/esm/types/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
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 };
|