@azure/msal-react 2.0.11-alpha.2 → 2.0.11-beta.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/dist/MsalContext.js +1 -1
- package/dist/MsalProvider.js +1 -1
- package/dist/components/AuthenticatedTemplate.js +1 -1
- package/dist/components/MsalAuthenticationTemplate.js +1 -1
- package/dist/components/UnauthenticatedTemplate.js +1 -1
- package/dist/components/withMsal.js +1 -1
- package/dist/error/ReactAuthError.js +1 -1
- package/dist/hooks/useAccount.js +1 -1
- package/dist/hooks/useIsAuthenticated.js +1 -1
- package/dist/hooks/useMsal.js +1 -1
- package/dist/hooks/useMsalAuthentication.js +1 -1
- package/dist/index.js +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.js +2 -2
- package/dist/utils/utilities.js +1 -1
- package/package.json +4 -4
- package/src/packageMetadata.ts +1 -1
package/dist/MsalContext.js
CHANGED
package/dist/MsalProvider.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-react v2.0.11-
|
|
1
|
+
/*! @azure/msal-react v2.0.11-beta.0 2024-02-07 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import React__default, { useEffect, useMemo, useReducer } from 'react';
|
|
4
4
|
import { WrapperSKU, InteractionStatus, EventMessageUtils } from '@azure/msal-browser';
|
package/dist/hooks/useAccount.js
CHANGED
package/dist/hooks/useMsal.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-react v2.0.11-
|
|
1
|
+
/*! @azure/msal-react v2.0.11-beta.0 2024-02-07 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { useState, useRef, useEffect, useCallback } from 'react';
|
|
4
4
|
import { InteractionStatus, InteractionType, EventType, OIDC_DEFAULT_SCOPES, InteractionRequiredAuthError } from '@azure/msal-browser';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const name = "@azure/msal-react";
|
|
2
|
-
export declare const version = "2.0.11-
|
|
2
|
+
export declare const version = "2.0.11-beta.0";
|
package/dist/packageMetadata.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-react v2.0.11-
|
|
1
|
+
/*! @azure/msal-react v2.0.11-beta.0 2024-02-07 */
|
|
2
2
|
'use strict';
|
|
3
3
|
/* eslint-disable header/header */
|
|
4
4
|
const name = "@azure/msal-react";
|
|
5
|
-
const version = "2.0.11-
|
|
5
|
+
const version = "2.0.11-beta.0";
|
|
6
6
|
|
|
7
7
|
export { name, version };
|
|
8
8
|
//# sourceMappingURL=packageMetadata.js.map
|
package/dist/utils/utilities.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/msal-react",
|
|
3
|
-
"version": "2.0.11-
|
|
3
|
+
"version": "2.0.11-beta.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Microsoft",
|
|
6
6
|
"email": "nugetaad@microsoft.com",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"format:fix": "npx prettier --ignore-path .gitignore --write src test"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@azure/msal-browser": "^3.
|
|
50
|
+
"@azure/msal-browser": "^3.8.1-beta.0",
|
|
51
51
|
"react": "^16.8.0 || ^17 || ^18"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@azure/msal-browser": "^3.
|
|
54
|
+
"@azure/msal-browser": "^3.8.1-beta.0",
|
|
55
55
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
56
56
|
"@testing-library/jest-dom": "^5.11.5",
|
|
57
57
|
"@testing-library/react": "^13.4.0",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"prettier": "2.8.7",
|
|
66
66
|
"react": "^18.2.0",
|
|
67
67
|
"react-dom": "^18.2.0",
|
|
68
|
-
"rollup": "^4.6
|
|
68
|
+
"rollup": "^4.9.6",
|
|
69
69
|
"ts-jest": "^29.1.0",
|
|
70
70
|
"tslib": "^2.0.0",
|
|
71
71
|
"typescript": "^4.9.5"
|
package/src/packageMetadata.ts
CHANGED