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/cjs/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[];
|