identity-admin-ui 1.4.3 → 1.4.5
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 +9 -9
- package/lib/cjs/types/helpers/CrudHelper/CreateEdit/CreateEditTexts.d.ts +1 -1
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowTexts.d.ts +1 -1
- package/lib/cjs/types/hooks/useAppConfigurations.d.ts +1 -2
- package/lib/cjs/types/hooks/useCredentials.d.ts +1 -2
- package/lib/cjs/types/hooks/usePaths.d.ts +1 -2
- package/lib/cjs/types/hooks/useResources.d.ts +1 -2
- package/lib/cjs/types/hooks/useSnackAlert.d.ts +1 -2
- package/lib/esm/index.js +1 -1
- package/lib/esm/types/helpers/CrudHelper/CreateEdit/CreateEditTexts.d.ts +1 -1
- package/lib/esm/types/helpers/CrudHelper/Show/ShowTexts.d.ts +1 -1
- package/lib/esm/types/hooks/useAppConfigurations.d.ts +1 -2
- package/lib/esm/types/hooks/useCredentials.d.ts +1 -2
- package/lib/esm/types/hooks/usePaths.d.ts +1 -2
- package/lib/esm/types/hooks/useResources.d.ts +1 -2
- package/lib/esm/types/hooks/useSnackAlert.d.ts +1 -2
- package/lib/index.d.ts +36 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const useAppConfigurations: () => {
|
|
2
|
+
export declare const useAppConfigurations: () => {
|
|
3
3
|
textFieldSize: import("../helpers").SizeType;
|
|
4
4
|
themeLayout?: "horizontal" | "vertical" | "mini" | undefined;
|
|
5
5
|
defaultRowsPerPage: number;
|
|
@@ -9,4 +9,3 @@ declare const useAppConfigurations: () => {
|
|
|
9
9
|
navBarLogo?: string | undefined;
|
|
10
10
|
miniNavBarLogo?: string | undefined;
|
|
11
11
|
};
|
|
12
|
-
export default useAppConfigurations;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
declare const useCredentials: () => import("../context").CredentialKeys;
|
|
2
|
-
export default useCredentials;
|
|
1
|
+
export declare const useCredentials: () => import("../context").CredentialKeys;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
declare const useSnackAlert: () => {
|
|
1
|
+
export declare const useSnackAlert: () => {
|
|
2
2
|
setAlert: (message: string, severity: import("@mui/material").AlertColor, position?: import("notistack").SnackbarOrigin | undefined) => void;
|
|
3
3
|
setErrorAlert: (message: string, position?: import("notistack").SnackbarOrigin | undefined) => void;
|
|
4
4
|
setSuccessAlert: (message: string, position?: import("notistack").SnackbarOrigin | undefined) => void;
|
|
5
5
|
};
|
|
6
|
-
export default useSnackAlert;
|