@opengeoweb/authentication 9.14.0 → 9.16.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/index.esm.js +483 -498
- package/package.json +1 -1
- package/src/index.d.ts +2 -0
- package/src/lib/Providers/Providers.d.ts +0 -1
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import authTranslations from '../locales/authentication.json';
|
|
1
2
|
export { default as Code } from './lib/pages/Code';
|
|
2
3
|
export { default as Login } from './lib/pages/Login';
|
|
3
4
|
export { default as Logout } from './lib/pages/Logout';
|
|
@@ -5,3 +6,4 @@ export * from './lib/AuthenticationContext';
|
|
|
5
6
|
export * from './lib/PrivateRoute';
|
|
6
7
|
export * from './lib/utils/session';
|
|
7
8
|
export * from './lib/utils/utils';
|
|
9
|
+
export { authTranslations };
|
|
@@ -2,6 +2,5 @@ import React from 'react';
|
|
|
2
2
|
interface AuthTranslationWrapperProps {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
}
|
|
5
|
-
export declare const AuthTranslationsWrapper: React.FC<AuthTranslationWrapperProps>;
|
|
6
5
|
export declare const AuthI18nProvider: React.FC<AuthTranslationWrapperProps>;
|
|
7
6
|
export {};
|