qlfy-ecological-login 1.0.9 → 1.0.10
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/lib/components/qlfyEcologicalLogin/data.d.ts +0 -1
- package/lib/components/qlfyEcologicalLogin/index.vue.d.ts +0 -1
- package/lib/components/qlfyEcologicalLogin/tools.d.ts +1 -1
- package/lib/index.d.ts +0 -1
- package/lib/index.mjs +701 -699
- package/lib/index.mjs.gz +0 -0
- package/lib/index.umd.js +8 -8
- package/lib/index.umd.js.gz +0 -0
- package/package.json +1 -1
|
@@ -23,6 +23,5 @@ declare const _default: import('vue').DefineComponent<Prop, {
|
|
|
23
23
|
redirectPath: string;
|
|
24
24
|
tokenName: string;
|
|
25
25
|
tokenValidity: number;
|
|
26
|
-
tenantId: number;
|
|
27
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
27
|
export default _default;
|
|
@@ -16,7 +16,7 @@ export declare function goLogin(): void;
|
|
|
16
16
|
* @param {string} redirectUrl 重定向地址
|
|
17
17
|
* @returns {string}
|
|
18
18
|
*/
|
|
19
|
-
export declare function getLoginUrl(loginPageBaseAddress: string, clientId: string, clientSecret: string,
|
|
19
|
+
export declare function getLoginUrl(loginPageBaseAddress: string, clientId: string, clientSecret: string, redirectUrl?: string): string;
|
|
20
20
|
export declare function generateUUID(): string;
|
|
21
21
|
export declare function getUserPermission(): any;
|
|
22
22
|
/** ----------------------- 密码弹窗 ---------------------- */
|
package/lib/index.d.ts
CHANGED
|
@@ -21,7 +21,6 @@ export declare const qlfyEcologicalLogin: import('vue').DefineComponent<import('
|
|
|
21
21
|
redirectPath: string;
|
|
22
22
|
tokenName: string;
|
|
23
23
|
tokenValidity: number;
|
|
24
|
-
tenantId: number;
|
|
25
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
25
|
/** 组件参数、事件接口 */
|
|
27
26
|
export type { Prop as qlfyEcologicalLoginProps, Emits } from './components/qlfyEcologicalLogin/data';
|