@scmlatam/web-ui 0.2.1 → 0.2.3
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/src/auth.d.ts +4 -2
- package/dist/src/components/main.d.ts +1 -0
- package/dist/web-ui.js +7770 -1250
- package/dist/web-ui.umd.cjs +6 -6
- package/package.json +1 -1
package/dist/src/auth.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountInfo, IPublicClientApplication } from '@azure/msal-browser';
|
|
1
|
+
import { PublicClientApplication, AccountInfo, IPublicClientApplication } from '@azure/msal-browser';
|
|
2
2
|
declare const loginRequest: {
|
|
3
3
|
scopes: string[];
|
|
4
4
|
};
|
|
@@ -22,4 +22,6 @@ declare const msalConfig: {
|
|
|
22
22
|
declare const getSSOToken: (instance: IPublicClientApplication, account: AccountInfo) => Promise<string>;
|
|
23
23
|
declare const SignSSOMS: (account: AccountInfo, ssoToken: string) => Promise<void>;
|
|
24
24
|
declare const chekingSSOMS: (instance: IPublicClientApplication, account: AccountInfo) => Promise<void>;
|
|
25
|
-
|
|
25
|
+
declare const initializeAuth: () => Promise<PublicClientApplication>;
|
|
26
|
+
declare const observeSSO: (msalInstance: PublicClientApplication) => void;
|
|
27
|
+
export { msalConfig, loginRequest, getSSOToken, SignSSOMS, chekingSSOMS, initializeAuth, observeSSO, };
|
|
@@ -12,3 +12,4 @@ export type { TextFieldForm, SelectFieldForm, DateFieldForm, TimeFieldForm, Date
|
|
|
12
12
|
export type { ValueItem } from './form/select/types/types';
|
|
13
13
|
export type { CustomTreeItem } from './form/types/types';
|
|
14
14
|
export type { Row, Option, OptionGroup, TableProps, ITableContext, PaginationModel, TableProviderProps, ContextMenu, ContextMenuProps, } from './table/types/types';
|
|
15
|
+
export { initializeAuth, observeSSO, chekingSSOMS } from '../auth';
|