@opengeoweb/authentication 14.2.2 → 14.4.0
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/package.json +4 -4
- package/src/lib/utils/i18n.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/authentication",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.4.0",
|
|
4
4
|
"description": "GeoWeb authentication library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"axios": "^1.7.7",
|
|
12
12
|
"react-router-dom": "^6.23.1",
|
|
13
|
-
"@opengeoweb/shared": "14.
|
|
14
|
-
"@opengeoweb/theme": "14.
|
|
13
|
+
"@opengeoweb/shared": "14.4.0",
|
|
14
|
+
"@opengeoweb/theme": "14.4.0",
|
|
15
15
|
"i18next": "^25.0.1",
|
|
16
16
|
"react-i18next": "^15.1.1",
|
|
17
|
-
"@opengeoweb/snackbar": "14.
|
|
17
|
+
"@opengeoweb/snackbar": "14.4.0",
|
|
18
18
|
"react-redux": "^9.2.0",
|
|
19
19
|
"@reduxjs/toolkit": "^2.6.1",
|
|
20
20
|
"@mui/material": "^7.0.1"
|
package/src/lib/utils/i18n.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ import type { UseTranslationResponse } from 'react-i18next';
|
|
|
3
3
|
export declare const AUTH_NAMESPACE = "auth";
|
|
4
4
|
export declare const initAuthTestI18n: () => void;
|
|
5
5
|
export declare const useAuthenticationTranslation: () => UseTranslationResponse<typeof AUTH_NAMESPACE, typeof i18n>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const translateInTestsAndStories: (key: string, params?: Record<string, string | number> | undefined) => string;
|