@opengeoweb/authentication 11.0.0 → 12.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/authentication",
3
- "version": "11.0.0",
3
+ "version": "12.0.0",
4
4
  "description": "GeoWeb authentication library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -8,21 +8,28 @@
8
8
  "url": "git@gitlab.com:opengeoweb/opengeoweb.git"
9
9
  },
10
10
  "dependencies": {
11
+ "@emotion/react": "11.14.0",
12
+ "@emotion/styled": "11.14.0",
13
+ "@mui/material": "^6.1.1",
14
+ "@mui/system": "6.4.6",
15
+ "@mui/x-date-pickers": "7.27.1",
16
+ "@reduxjs/toolkit": "^1.9.7",
17
+ "@sentry/react": "8.54.0",
18
+ "@storybook/react": "8.4.2",
19
+ "@testing-library/react": "16.0.1",
20
+ "@testing-library/user-event": "14.5.2",
11
21
  "axios": "^1.7.7",
12
- "react-router-dom": "^6.23.1",
13
- "@opengeoweb/shared": "*",
14
- "@opengeoweb/theme": "*",
22
+ "date-fns": "4.1.0",
15
23
  "i18next": "^23.11.5",
24
+ "jest-date-mock": "1.0.10",
25
+ "lodash": "4.17.21",
26
+ "msw": "2.7.3",
27
+ "re-resizable": "6.11.2",
28
+ "react": "18.3.1",
29
+ "react-draggable": "4.4.6",
16
30
  "react-i18next": "^15.1.1",
17
- "@opengeoweb/snackbar": "*",
18
31
  "react-redux": "^8.1.3",
19
- "@reduxjs/toolkit": "^1.9.7",
20
- "@mui/material": "^6.1.1"
21
- },
22
- "peerDependencies": {
23
- "react": "18",
24
- "@emotion/react": "*",
25
- "@emotion/styled": "*"
32
+ "react-router-dom": "^6.23.1"
26
33
  },
27
34
  "module": "./index.esm.js",
28
35
  "type": "module",
@@ -1,18 +1,11 @@
1
1
  export declare const mockloginSuccess: {
2
- statusCode: number;
3
- body: {
4
- access_token: string;
5
- refresh_token: string;
6
- id_token: string;
7
- };
2
+ access_token: string;
3
+ refresh_token: string;
4
+ id_token: string;
8
5
  };
9
6
  export declare const mockloginSuccessGitlab: {
10
- statusCode: number;
11
7
  access_token: string;
12
8
  refresh_token: string;
13
9
  id_token: string;
14
10
  };
15
- export declare const mockloginFailed: {
16
- statusCode: number;
17
- body: {};
18
- };
11
+ export declare const mockloginFailed: {};