halo-fe 1.0.19 → 1.0.21
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/main.js +676 -667
- package/esm/@types/CreateFeOptions.d.ts +25 -0
- package/esm/@types/index.d.ts +2 -0
- package/esm/coms/@types/ScrollerProps.d.ts +15 -0
- package/esm/coms/@types/index.d.ts +2 -0
- package/esm/coms/Scroller.vue.d.ts +1 -1
- package/esm/coms/conditions/@types/ConditionGroupProps.d.ts +11 -0
- package/esm/coms/conditions/@types/ConditionProps.d.ts +18 -0
- package/esm/coms/conditions/@types/index.d.ts +3 -0
- package/esm/coms/conditions/Condition.vue.d.ts +1 -1
- package/esm/coms/conditions/Index.vue.d.ts +1 -1
- package/esm/coms/controls/@types/CodeEmit.d.ts +23 -0
- package/esm/coms/controls/@types/CodeProps.d.ts +28 -0
- package/esm/coms/controls/@types/Range.d.ts +26 -0
- package/esm/coms/controls/@types/RichTextOptions.d.ts +14 -0
- package/esm/coms/controls/@types/RichTextProps.d.ts +12 -0
- package/esm/coms/controls/@types/index.d.ts +6 -0
- package/esm/coms/controls/Code.vue.d.ts +1 -1
- package/esm/coms/controls/RichText.vue.d.ts +1 -1
- package/esm/coms/controls/index.d.ts +1 -1
- package/esm/coms/index.d.ts +1 -1
- package/esm/coms/layouts/@types/RowProps.d.ts +14 -0
- package/esm/coms/layouts/@types/index.d.ts +2 -0
- package/esm/coms/layouts/Row.vue.d.ts +1 -1
- package/esm/coms/layouts/index.d.ts +1 -1
- package/esm/coms/progresses/@types/SocketProgressProps.d.ts +23 -0
- package/esm/coms/progresses/@types/index.d.ts +2 -0
- package/esm/coms/progresses/SocketProgress.vue.d.ts +1 -1
- package/esm/coms/tabs/@types/TabProps.d.ts +7 -0
- package/esm/coms/tabs/@types/index.d.ts +2 -0
- package/esm/coms/tabs/Tab.vue.d.ts +1 -1
- package/esm/drivers/@types/IDispose.d.ts +10 -0
- package/esm/drivers/@types/IDriver.d.ts +10 -0
- package/esm/drivers/@types/IOpen.d.ts +10 -0
- package/esm/drivers/@types/index.d.ts +4 -0
- package/esm/drivers/bridges/IBridge.d.ts +1 -1
- package/esm/drivers/builders/IBuilder.d.ts +1 -1
- package/esm/drivers/cdns/ICdn.d.ts +1 -1
- package/esm/drivers/excels/IExcel.d.ts +1 -1
- package/esm/drivers/explainers/IExplainer.d.ts +1 -1
- package/esm/drivers/features/IFeature.d.ts +1 -1
- package/esm/drivers/https/Http.d.ts +15 -9
- package/esm/drivers/https/IHttp.d.ts +1 -1
- package/esm/drivers/https/implements/DefaultHttp.d.ts +6 -0
- package/esm/drivers/https/implements/HaloHttp.d.ts +3 -8
- package/esm/drivers/https/implements/MkHttp.d.ts +1 -6
- package/esm/drivers/i18ns/I18n.d.ts +0 -3
- package/esm/drivers/i18ns/I18nFactory.d.ts +0 -4
- package/esm/drivers/i18ns/II18n.d.ts +16 -2
- package/esm/drivers/index.d.ts +1 -1
- package/esm/drivers/messengers/IMessenger.d.ts +1 -1
- package/esm/drivers/providers/IProvider.d.ts +1 -1
- package/esm/drivers/signers/Signer.d.ts +3 -0
- package/esm/drivers/ssos/ISso.d.ts +1 -1
- package/esm/drivers/tasks/ITask.d.ts +1 -1
- package/esm/drivers/templates/ITemplate.d.ts +1 -1
- package/esm/drivers/videos/IVideo.d.ts +1 -1
- package/esm/drivers/voices/IVoice.d.ts +1 -1
- package/esm/factorying/Factory.d.ts +1 -1
- package/esm/factorying/index.d.ts +3 -7
- package/esm/helpers/@types/JsonConfig.d.ts +10 -0
- package/esm/helpers/@types/TreeNodeProp.d.ts +9 -0
- package/esm/helpers/@types/index.d.ts +3 -0
- package/esm/helpers/JsonHelper.d.ts +1 -1
- package/esm/main.d.ts +2 -2
- package/esm/svcs/@types/Dictionary.d.ts +4 -0
- package/esm/svcs/@types/index.d.ts +1 -0
- package/esm/svcs/implement/ConfigSvc.d.ts +2 -2
- package/esm/svcs/implement/LogSvc.d.ts +3 -0
- package/esm/svcs/index.d.ts +1 -1
- package/esm/utilities/@types/DragEvent.d.ts +11 -0
- package/esm/utilities/@types/DragOptions.d.ts +28 -0
- package/esm/utilities/@types/Position.d.ts +15 -0
- package/esm/utilities/@types/Rect.d.ts +10 -0
- package/esm/utilities/@types/index.d.ts +5 -0
- package/esm/utilities/EventUtility.d.ts +1 -1
- package/esm/utilities/index.d.ts +1 -1
- package/package.json +1 -1
@@ -0,0 +1,25 @@
|
|
1
|
+
import { IMessenger } from "../drivers";
|
2
|
+
/**
|
3
|
+
* 初始化选项
|
4
|
+
*/
|
5
|
+
declare class CreateFeOptions {
|
6
|
+
/**
|
7
|
+
* 消息发送对象
|
8
|
+
*/
|
9
|
+
messenger: IMessenger;
|
10
|
+
/**
|
11
|
+
* 基准请求地址
|
12
|
+
*/
|
13
|
+
baseUrl: string;
|
14
|
+
/**
|
15
|
+
* 自定义语言包
|
16
|
+
*/
|
17
|
+
lang: {
|
18
|
+
[key: string]: any;
|
19
|
+
};
|
20
|
+
/**
|
21
|
+
* CDN类型
|
22
|
+
*/
|
23
|
+
cdn: 'Local' | "Third" | string;
|
24
|
+
}
|
25
|
+
export default CreateFeOptions;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ConditionProps } from "
|
1
|
+
import { ConditionProps } from "./@types";
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<ConditionProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<ConditionProps>>>, {}, {}>;
|
3
3
|
export default _default;
|
4
4
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ConditionGroupProps } from "
|
1
|
+
import { ConditionGroupProps } from "./@types";
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<ConditionGroupProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<ConditionGroupProps>>>, {}, {}>;
|
3
3
|
export default _default;
|
4
4
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { Monaco } from "../../../plugins";
|
2
|
+
/**
|
3
|
+
* 代码控件事件
|
4
|
+
*/
|
5
|
+
interface CodeEmit {
|
6
|
+
/**
|
7
|
+
* 挂载完毕事件
|
8
|
+
*/
|
9
|
+
(event: 'mounted', monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor): void;
|
10
|
+
/**
|
11
|
+
* 值变动事件
|
12
|
+
*/
|
13
|
+
(event: 'change', value: string): void;
|
14
|
+
/**
|
15
|
+
* 滚动事件
|
16
|
+
*/
|
17
|
+
(event: 'scroll', scrollTop: number): void;
|
18
|
+
/**
|
19
|
+
* 值更新
|
20
|
+
*/
|
21
|
+
(event: 'update:modelValue', value: any): void;
|
22
|
+
}
|
23
|
+
export default CodeEmit;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import Range from "./Range";
|
2
|
+
/**
|
3
|
+
* 代码属性
|
4
|
+
*/
|
5
|
+
interface CodeProps {
|
6
|
+
/**
|
7
|
+
* 配置
|
8
|
+
*/
|
9
|
+
config?: {
|
10
|
+
readonly?: boolean;
|
11
|
+
lineNumbers?: string;
|
12
|
+
minimap?: boolean;
|
13
|
+
category?: string;
|
14
|
+
schema?: any;
|
15
|
+
language?: string;
|
16
|
+
scrollTop?: number;
|
17
|
+
selection?: Range;
|
18
|
+
};
|
19
|
+
/**
|
20
|
+
* 是否显示边框
|
21
|
+
*/
|
22
|
+
border?: boolean;
|
23
|
+
/**
|
24
|
+
* 值
|
25
|
+
*/
|
26
|
+
modelValue?: string;
|
27
|
+
}
|
28
|
+
export default CodeProps;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/**
|
2
|
+
* 范围
|
3
|
+
*/
|
4
|
+
declare class Range {
|
5
|
+
/**
|
6
|
+
* 起始行号
|
7
|
+
*/
|
8
|
+
startLine: number;
|
9
|
+
/**
|
10
|
+
* 结束行号
|
11
|
+
*/
|
12
|
+
endLine: number;
|
13
|
+
/**
|
14
|
+
* 起始列
|
15
|
+
*/
|
16
|
+
startColumn: number;
|
17
|
+
/**
|
18
|
+
* 结束列
|
19
|
+
*/
|
20
|
+
endColumn: number;
|
21
|
+
/**
|
22
|
+
* 初始化
|
23
|
+
*/
|
24
|
+
constructor(startLine: number, endLine: number, startColumn: number, endColumn: number);
|
25
|
+
}
|
26
|
+
export default Range;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import CodeEmit from "./CodeEmit";
|
2
|
+
import CodeProps from "./CodeProps";
|
3
|
+
import Range from "./Range";
|
4
|
+
import RichTextOptions from "./RichTextOptions";
|
5
|
+
import RichTextProps from "./RichTextProps";
|
6
|
+
export { type CodeEmit, type CodeProps, Range, type RichTextOptions, type RichTextProps, };
|
@@ -3,5 +3,5 @@ import HaCompare from "./Compare.vue";
|
|
3
3
|
import HaOption from "./Option.vue";
|
4
4
|
import HaRichText from "./RichText.vue";
|
5
5
|
import HaSelect from "./Select.vue";
|
6
|
-
export * from "
|
6
|
+
export * from "./@types";
|
7
7
|
export { HaCode, HaCompare, HaOption, HaRichText, HaSelect };
|
package/esm/coms/index.d.ts
CHANGED
@@ -0,0 +1,23 @@
|
|
1
|
+
/**
|
2
|
+
* 实时进度属性
|
3
|
+
*/
|
4
|
+
interface SocketProgressProps {
|
5
|
+
/**
|
6
|
+
* 进度数据
|
7
|
+
*/
|
8
|
+
progress: {
|
9
|
+
/**
|
10
|
+
* 成功数量
|
11
|
+
*/
|
12
|
+
succeed: number;
|
13
|
+
/**
|
14
|
+
* 异常数量
|
15
|
+
*/
|
16
|
+
errored: number;
|
17
|
+
/**
|
18
|
+
* 总数量
|
19
|
+
*/
|
20
|
+
total: number;
|
21
|
+
};
|
22
|
+
}
|
23
|
+
export default SocketProgressProps;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { SocketProgressProps } from "
|
1
|
+
import { SocketProgressProps } from "./@types";
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SocketProgressProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SocketProgressProps>>>, {}, {}>;
|
3
3
|
export default _default;
|
4
4
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { TabProps } from "
|
1
|
+
import { TabProps } from "./@types";
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<TabProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<TabProps>>>, {}, {}>;
|
3
3
|
export default _default;
|
4
4
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -6,19 +6,25 @@ import HttpResponse from "./entities/HttpResponse";
|
|
6
6
|
*/
|
7
7
|
declare abstract class Http implements IHttp {
|
8
8
|
type: string;
|
9
|
+
/**
|
10
|
+
* 默认请求器
|
11
|
+
*/
|
12
|
+
http: IHttp;
|
9
13
|
open(conn: string): Promise<void>;
|
10
|
-
onRequest: (request: HttpRequest) => Promise<void>;
|
11
|
-
|
12
|
-
get(
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
get onRequest(): (request: HttpRequest) => Promise<void>;
|
15
|
+
set onRequest(value: (request: HttpRequest) => Promise<void>);
|
16
|
+
get onResponse(): (response: HttpResponse) => Promise<void>;
|
17
|
+
set onResponse(value: (response: HttpResponse) => Promise<void>);
|
18
|
+
get: (path: string, params?: any) => Promise<any>;
|
19
|
+
sendGet: (path: string, params?: any) => Promise<HttpResponse>;
|
20
|
+
post: (path: string, body: any) => Promise<any>;
|
21
|
+
sendPost: (path: string, body?: any) => Promise<HttpResponse>;
|
22
|
+
patch: (path: string) => Promise<any>;
|
23
|
+
sendPatch: (path: string, pairs?: any) => Promise<HttpResponse>;
|
18
24
|
abstract send(request: HttpRequest): Promise<HttpResponse>;
|
19
25
|
/**
|
20
26
|
* 获取请求消息
|
21
27
|
*/
|
22
|
-
getRequest(method: string, contentType: string, path: string, body?: any)
|
28
|
+
getRequest: (method: string, contentType: string, path: string, body?: any) => HttpRequest;
|
23
29
|
}
|
24
30
|
export default Http;
|
@@ -8,6 +8,12 @@ import HttpResponse from "../entities/HttpResponse";
|
|
8
8
|
declare class DefaultHttp extends Http {
|
9
9
|
type: string;
|
10
10
|
baseUrl: string;
|
11
|
+
_onRequest: any;
|
12
|
+
_onResponse: any;
|
13
|
+
get onRequest(): (request: HttpRequest) => Promise<void>;
|
14
|
+
set onRequest(value: (request: HttpRequest) => Promise<void>);
|
15
|
+
get onResponse(): (response: HttpResponse) => Promise<void>;
|
16
|
+
set onResponse(value: (response: HttpResponse) => Promise<void>);
|
11
17
|
send(request: HttpRequest): Promise<HttpResponse>;
|
12
18
|
/**
|
13
19
|
* 使用Fetch发送请求,谷歌插件场景专用
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import Http from "../Http";
|
2
2
|
import HttpRequest from "../entities/HttpRequest";
|
3
3
|
import HttpResponse from "../entities/HttpResponse";
|
4
|
-
import IHttp from "../IHttp";
|
5
4
|
import { ISso, SsoUser } from "../../ssos";
|
6
5
|
import { ISigner } from "../../signers";
|
7
6
|
/**
|
@@ -29,10 +28,6 @@ declare class HaloHttp extends Http {
|
|
29
28
|
* 当前终端
|
30
29
|
*/
|
31
30
|
platform: string;
|
32
|
-
/**
|
33
|
-
* 默认请求器
|
34
|
-
*/
|
35
|
-
http: IHttp;
|
36
31
|
/**
|
37
32
|
* 单点登录配置
|
38
33
|
*/
|
@@ -48,14 +43,14 @@ declare class HaloHttp extends Http {
|
|
48
43
|
/**
|
49
44
|
* 发送请求
|
50
45
|
*/
|
51
|
-
send(request: HttpRequest)
|
46
|
+
send: (request: HttpRequest) => Promise<HttpResponse>;
|
52
47
|
/**
|
53
48
|
* 请求预处理
|
54
49
|
*/
|
55
|
-
beforeRequest(request: HttpRequest)
|
50
|
+
beforeRequest: (request: HttpRequest) => Promise<void>;
|
56
51
|
/**
|
57
52
|
* 处理网络错误和响应错误场景
|
58
53
|
*/
|
59
|
-
handleError(error: any)
|
54
|
+
handleError: (error: any) => Promise<never>;
|
60
55
|
}
|
61
56
|
export default HaloHttp;
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import Http from "../Http";
|
2
2
|
import HttpRequest from "../entities/HttpRequest";
|
3
3
|
import HttpResponse from "../entities/HttpResponse";
|
4
|
-
import IHttp from "../IHttp";
|
5
4
|
import { IHasher } from "../../hashers";
|
6
5
|
/**
|
7
6
|
* MK请求器
|
@@ -20,10 +19,6 @@ declare class MkHttp extends Http {
|
|
20
19
|
* AppSecret
|
21
20
|
*/
|
22
21
|
appSecret: string;
|
23
|
-
/**
|
24
|
-
* 默认请求器
|
25
|
-
*/
|
26
|
-
requester: IHttp;
|
27
22
|
/**
|
28
23
|
* Hash计算器
|
29
24
|
*/
|
@@ -35,6 +30,6 @@ declare class MkHttp extends Http {
|
|
35
30
|
/**
|
36
31
|
* 危险操作,会暴露敏感信息
|
37
32
|
*/
|
38
|
-
send(request: HttpRequest)
|
33
|
+
send: (request: HttpRequest) => Promise<HttpResponse>;
|
39
34
|
}
|
40
35
|
export default MkHttp;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IDriver, IOpen } from "
|
1
|
+
import { IDriver, IOpen } from "../@types";
|
2
2
|
/**
|
3
3
|
* 多语言翻译接口
|
4
4
|
*/
|
@@ -59,7 +59,21 @@ interface II18n extends IDriver, IOpen {
|
|
59
59
|
*/
|
60
60
|
t_title(): string;
|
61
61
|
/**
|
62
|
-
*
|
62
|
+
* 设置多语言标题
|
63
|
+
*/
|
64
|
+
setI18nTitle(key: string): void;
|
65
|
+
/**
|
66
|
+
* 设置标题
|
67
|
+
*/
|
68
|
+
setTitle(title: string, env: string): void;
|
69
|
+
/**
|
70
|
+
* 添加自定义多语言包
|
71
|
+
*/
|
72
|
+
addMessages(messages: {
|
73
|
+
[key: string]: string;
|
74
|
+
}): void;
|
75
|
+
/**
|
76
|
+
* 加载指定语言包,需http请求器先加载完毕
|
63
77
|
*/
|
64
78
|
loadI18n(lang?: string): Promise<void>;
|
65
79
|
}
|
package/esm/drivers/index.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
export * from "./@types";
|
1
2
|
export * from "./bridges";
|
2
3
|
export * from "./builders";
|
3
4
|
export * from "./cdns";
|
@@ -14,6 +15,5 @@ export * from "./signers";
|
|
14
15
|
export * from "./ssos";
|
15
16
|
export * from "./tasks";
|
16
17
|
export * from "./templates";
|
17
|
-
export * from "./types";
|
18
18
|
export * from "./videos";
|
19
19
|
export * from "./voices";
|