acsi-core 1.0.0 → 1.1.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/components/MSALRedirectHandler/index.d.ts +14 -0
- package/dist/components/UpdateNotifier.d.ts +3 -0
- package/dist/configs/api.d.ts +3 -0
- package/dist/configs/api_removed.d.ts +3 -0
- package/dist/index.js +800 -80
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +788 -68
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/configLoader.d.ts +2 -0
- package/dist/utils/constants.d.ts +1 -0
- package/dist/utils/hooks/useServiceWorker.d.ts +1 -0
- package/dist/utils/msalInstance.d.ts +38 -0
- package/package.json +1 -1
- package/dist/components/MarkdownLatexRender/MarkdownLatexRender.d.ts +0 -7
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MSALRedirectHandler component
|
|
3
|
+
*
|
|
4
|
+
* This component handles MSAL redirect authentication flows by processing
|
|
5
|
+
* the hash fragment in the URL before any router code can clear it.
|
|
6
|
+
*
|
|
7
|
+
* Uses useLayoutEffect to run synchronously before browser paint,
|
|
8
|
+
* ensuring it processes the redirect before React Router initializes.
|
|
9
|
+
*
|
|
10
|
+
* This component uses the singleton MSAL instance to avoid conflicts
|
|
11
|
+
* and ensure consistent state management.
|
|
12
|
+
*/
|
|
13
|
+
declare const MSALRedirectHandler: () => null;
|
|
14
|
+
export default MSALRedirectHandler;
|