halo-fe 1.0.22 → 1.0.24
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/assets/{liquidjs-C-LVcoaY.js → liquidjs-B8dqQyVv.js} +639 -632
- package/dist/main.js +4156 -3643
- package/esm/coms/Empty.vue.d.ts +15 -13
- package/esm/coms/Fill.vue.d.ts +14 -5
- package/esm/coms/Scroller.vue.d.ts +19 -16
- package/esm/coms/Timer.vue.d.ts +12 -5
- package/esm/coms/conditions/Condition.vue.d.ts +1 -10
- package/esm/coms/conditions/Index.vue.d.ts +1 -10
- package/esm/coms/controls/Code.vue.d.ts +19 -17
- package/esm/coms/controls/Compare.vue.d.ts +11 -19
- package/esm/coms/controls/Option.vue.d.ts +1 -1
- package/esm/coms/controls/RichText.vue.d.ts +6 -15
- package/esm/coms/controls/Select.vue.d.ts +1 -1
- package/esm/coms/layouts/Col.vue.d.ts +11 -4
- package/esm/coms/layouts/Container.vue.d.ts +15 -11
- package/esm/coms/layouts/Row.vue.d.ts +11 -14
- package/esm/coms/progresses/Progress.vue.d.ts +4 -16
- package/esm/coms/progresses/SocketProgress.vue.d.ts +15 -8
- package/esm/coms/tables/Table.vue.d.ts +1 -1
- package/esm/coms/tabs/Tab.vue.d.ts +1 -10
- package/esm/coms/tabs/TabPane.vue.d.ts +1 -1
- package/esm/drivers/cdns/CdnFactory.d.ts +1 -1
- package/esm/drivers/encoders/EncoderFactory.d.ts +1 -1
- package/esm/drivers/excels/ExcelFactory.d.ts +2 -2
- package/esm/drivers/features/FeatureFactory.d.ts +1 -1
- package/esm/drivers/hashers/HasherFactory.d.ts +4 -1
- package/esm/drivers/hashers/implement/Md5Hasher.d.ts +1 -1
- package/esm/drivers/hashers/implement/Sha256Hasher.d.ts +1 -1
- package/esm/drivers/helpers/@types/JsonConfig.d.ts +10 -0
- package/esm/drivers/helpers/@types/TreeNodeProp.d.ts +9 -0
- package/esm/drivers/helpers/@types/index.d.ts +3 -0
- package/esm/drivers/helpers/Helper.d.ts +8 -0
- package/esm/drivers/helpers/HelperFactory.d.ts +32 -0
- package/esm/drivers/helpers/IHelper.d.ts +4 -0
- package/esm/drivers/helpers/implements/ArrayHelper.d.ts +123 -0
- package/esm/drivers/helpers/implements/BrowserHelper.d.ts +12 -0
- package/esm/drivers/helpers/implements/ComponentHelper.d.ts +20 -0
- package/esm/drivers/helpers/implements/DictionaryHelper.d.ts +40 -0
- package/esm/drivers/helpers/implements/DomHelper.d.ts +118 -0
- package/esm/drivers/helpers/implements/EventHelper.d.ts +32 -0
- package/esm/drivers/helpers/implements/FileHelper.d.ts +24 -0
- package/esm/drivers/helpers/implements/HtmlHelper.d.ts +16 -0
- package/esm/drivers/helpers/implements/ImageHelper.d.ts +12 -0
- package/esm/drivers/helpers/implements/JsonHelper.d.ts +49 -0
- package/esm/drivers/helpers/implements/MathHelper.d.ts +52 -0
- package/esm/drivers/helpers/implements/MicroHelper.d.ts +12 -0
- package/esm/drivers/helpers/implements/MountHelper.d.ts +16 -0
- package/esm/drivers/helpers/implements/ObjectHelper.d.ts +44 -0
- package/esm/drivers/helpers/implements/ScrollHelper.d.ts +16 -0
- package/esm/drivers/helpers/implements/SignHelper.d.ts +16 -0
- package/esm/drivers/helpers/implements/StringHelper.d.ts +104 -0
- package/esm/drivers/helpers/implements/TaskHelper.d.ts +28 -0
- package/esm/drivers/helpers/implements/TimeHelper.d.ts +68 -0
- package/esm/drivers/helpers/implements/TreeHelper.d.ts +56 -0
- package/esm/drivers/helpers/implements/TypeHelper.d.ts +28 -0
- package/esm/drivers/helpers/implements/UrlHelper.d.ts +90 -0
- package/esm/drivers/helpers/index.d.ts +24 -0
- package/esm/drivers/https/HttpFactory.d.ts +1 -1
- package/esm/drivers/i18ns/II18n.d.ts +1 -1
- package/esm/drivers/index.d.ts +2 -0
- package/esm/drivers/providers/ProviderFactory.d.ts +1 -1
- package/esm/drivers/signers/SignerFactory.d.ts +1 -1
- package/esm/drivers/signers/implements/DefaultSigner.d.ts +1 -1
- package/esm/drivers/ssos/SsoFactory.d.ts +1 -1
- package/esm/drivers/utilities/@types/DragEvent.d.ts +11 -0
- package/esm/drivers/utilities/@types/DragOptions.d.ts +28 -0
- package/esm/drivers/utilities/@types/Position.d.ts +15 -0
- package/esm/drivers/utilities/@types/Rect.d.ts +10 -0
- package/esm/drivers/utilities/@types/index.d.ts +5 -0
- package/esm/drivers/utilities/IUtility.d.ts +4 -0
- package/esm/drivers/utilities/Utility.d.ts +5 -0
- package/esm/drivers/utilities/UtilityFactory.d.ts +43 -0
- package/esm/drivers/utilities/implement/AffixUtility.d.ts +11 -0
- package/esm/drivers/utilities/implement/DeltaUtility.d.ts +11 -0
- package/esm/drivers/utilities/implement/EventUtility.d.ts +73 -0
- package/esm/drivers/utilities/implement/KeyboardUtility.d.ts +74 -0
- package/esm/drivers/utilities/implement/MouseUtility.d.ts +25 -0
- package/esm/drivers/utilities/implement/RandomUtility.d.ts +41 -0
- package/esm/drivers/utilities/implement/SaveUtility.d.ts +16 -0
- package/esm/drivers/utilities/index.d.ts +9 -0
- package/esm/factorying/Factories.d.ts +15 -7
- package/esm/factorying/Factory.d.ts +10 -5
- package/esm/factorying/Helps.d.ts +29 -0
- package/esm/factorying/IFactory.d.ts +13 -5
- package/esm/factorying/Utils.d.ts +14 -0
- package/esm/factorying/index.d.ts +3 -1
- package/esm/helpers/DictionaryHelper.d.ts +6 -0
- package/esm/helpers/MathHelper.d.ts +0 -4
- package/esm/main.d.ts +1 -2
- package/esm/svcs/implement/DriverSvc.d.ts +8 -0
- package/esm/svcs/implement/SettingSvc.d.ts +1 -1
- package/esm/svcs/implement/UserSvc.d.ts +8 -4
- package/esm/svcs/index.d.ts +2 -0
- package/package.json +9 -9
package/esm/coms/Empty.vue.d.ts
CHANGED
@@ -1,25 +1,27 @@
|
|
1
|
-
declare
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
message: {
|
6
|
-
type: StringConstructor;
|
7
|
-
default: string;
|
1
|
+
declare var __VLS_inheritedAttrs: {};
|
2
|
+
declare const __VLS_templateResult: {
|
3
|
+
slots: {
|
4
|
+
default?(_: {}): any;
|
8
5
|
};
|
9
|
-
|
10
|
-
|
6
|
+
refs: {};
|
7
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
8
|
+
};
|
9
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
11
11
|
message: {
|
12
12
|
type: StringConstructor;
|
13
13
|
default: string;
|
14
14
|
};
|
15
15
|
hasData: BooleanConstructor;
|
16
|
-
}
|
16
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
17
|
+
message: string;
|
18
|
+
hasData: boolean;
|
19
|
+
} & {} & {}>, {
|
17
20
|
message: string;
|
18
21
|
hasData: boolean;
|
19
|
-
}, {}>;
|
20
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
21
24
|
export default _default;
|
22
|
-
|
23
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
24
26
|
new (): {
|
25
27
|
$slots: S;
|
package/esm/coms/Fill.vue.d.ts
CHANGED
@@ -1,12 +1,21 @@
|
|
1
|
-
declare
|
2
|
-
|
1
|
+
declare var __VLS_0: {};
|
2
|
+
declare var __VLS_inheritedAttrs: {};
|
3
|
+
declare const __VLS_templateResult: {
|
4
|
+
slots: {
|
5
|
+
default?(_: typeof __VLS_0): any;
|
6
|
+
};
|
7
|
+
refs: {
|
8
|
+
fillRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
9
|
+
};
|
10
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
3
11
|
};
|
12
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
4
13
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
5
14
|
resize: (...args: any[]) => void;
|
6
|
-
}, string, import("vue").PublicProps, Readonly<
|
15
|
+
}, string, import("vue").PublicProps, Readonly<{
|
7
16
|
onResize?: (...args: any[]) => any;
|
8
|
-
}, {}, {}>;
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
10
19
|
export default _default;
|
11
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
12
21
|
new (): {
|
@@ -1,28 +1,31 @@
|
|
1
1
|
import ScrollerProps from "./@types/ScrollerProps";
|
2
|
-
declare
|
3
|
-
|
2
|
+
declare var __VLS_0: {};
|
3
|
+
declare var __VLS_inheritedAttrs: {};
|
4
|
+
declare const __VLS_templateResult: {
|
5
|
+
slots: {
|
6
|
+
default?(_: typeof __VLS_0): any;
|
7
|
+
};
|
8
|
+
refs: {
|
9
|
+
scrollerRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
10
|
+
containerRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
11
|
+
trackRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
12
|
+
thumbRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
13
|
+
};
|
14
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
4
15
|
};
|
5
|
-
|
16
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
17
|
+
declare const __VLS_component: import("vue").DefineComponent<ScrollerProps, {
|
6
18
|
scrollTo: (scrollTop: number) => void;
|
7
19
|
update: () => void;
|
8
|
-
},
|
20
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
9
21
|
scroll: (...args: any[]) => void;
|
10
|
-
}, string, import("vue").PublicProps, Readonly<
|
22
|
+
}, string, import("vue").PublicProps, Readonly<ScrollerProps & {
|
11
23
|
onScroll?: (...args: any[]) => any;
|
12
|
-
}, {}, {}>;
|
13
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
24
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
25
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
14
26
|
export default _default;
|
15
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
16
28
|
new (): {
|
17
29
|
$slots: S;
|
18
30
|
};
|
19
31
|
};
|
20
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
21
|
-
type __VLS_TypePropsToOption<T> = {
|
22
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
23
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
24
|
-
} : {
|
25
|
-
type: import('vue').PropType<T[K]>;
|
26
|
-
required: true;
|
27
|
-
};
|
28
|
-
};
|
package/esm/coms/Timer.vue.d.ts
CHANGED
@@ -1,6 +1,13 @@
|
|
1
|
-
declare
|
2
|
-
|
1
|
+
declare var __VLS_0: {};
|
2
|
+
declare var __VLS_inheritedAttrs: {};
|
3
|
+
declare const __VLS_templateResult: {
|
4
|
+
slots: {
|
5
|
+
default?(_: typeof __VLS_0): any;
|
6
|
+
};
|
7
|
+
refs: {};
|
8
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
3
9
|
};
|
10
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
4
11
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
5
12
|
restart: () => void;
|
6
13
|
start: () => void;
|
@@ -8,10 +15,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
8
15
|
reset: () => void;
|
9
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
10
17
|
change: (...args: any[]) => void;
|
11
|
-
}, string, import("vue").PublicProps, Readonly<
|
18
|
+
}, string, import("vue").PublicProps, Readonly<{
|
12
19
|
onChange?: (...args: any[]) => any;
|
13
|
-
}, {}, {}>;
|
14
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
15
22
|
export default _default;
|
16
23
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
17
24
|
new (): {
|
@@ -1,12 +1,3 @@
|
|
1
1
|
import { ConditionProps } from "./@types";
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
2
|
+
declare const _default: import("vue").DefineComponent<ConditionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConditionProps & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
3
3
|
export default _default;
|
4
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
5
|
-
type __VLS_TypePropsToOption<T> = {
|
6
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
7
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
8
|
-
} : {
|
9
|
-
type: import('vue').PropType<T[K]>;
|
10
|
-
required: true;
|
11
|
-
};
|
12
|
-
};
|
@@ -1,12 +1,3 @@
|
|
1
1
|
import { ConditionGroupProps } from "./@types";
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
2
|
+
declare const _default: import("vue").DefineComponent<ConditionGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConditionGroupProps & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
3
3
|
export default _default;
|
4
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
5
|
-
type __VLS_TypePropsToOption<T> = {
|
6
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
7
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
8
|
-
} : {
|
9
|
-
type: import('vue').PropType<T[K]>;
|
10
|
-
required: true;
|
11
|
-
};
|
12
|
-
};
|
@@ -1,34 +1,33 @@
|
|
1
1
|
import { type Monaco } from "../../plugins";
|
2
2
|
import { CodeProps } from "./@types";
|
3
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<CodeProps>, {
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<CodeProps>, {
|
4
4
|
config: any;
|
5
|
-
}
|
5
|
+
}>>, {
|
6
6
|
layout: () => void;
|
7
7
|
getEditor: () => Monaco.editor.IStandaloneCodeEditor;
|
8
|
-
},
|
9
|
-
|
10
|
-
change: (value: string) =>
|
11
|
-
|
12
|
-
"update:modelValue": (value: any) =>
|
13
|
-
}, string, import("vue").PublicProps, Readonly<
|
14
|
-
config
|
15
|
-
|
16
|
-
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
9
|
+
scroll: (scrollTop: number) => any;
|
10
|
+
change: (value: string) => any;
|
11
|
+
mounted: (monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor) => any;
|
12
|
+
"update:modelValue": (value: any) => any;
|
13
|
+
}, string, import("vue").PublicProps, Readonly<{} & {
|
14
|
+
config?: any;
|
15
|
+
border?: boolean;
|
16
|
+
modelValue?: string;
|
17
|
+
} & {
|
17
18
|
onScroll?: (scrollTop: number) => any;
|
19
|
+
onChange?: (value: string) => any;
|
18
20
|
onMounted?: (monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor) => any;
|
19
21
|
"onUpdate:modelValue"?: (value: any) => any;
|
20
|
-
}
|
22
|
+
}>, {
|
21
23
|
config: any;
|
22
|
-
}, {}>;
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
23
25
|
export default _default;
|
24
26
|
type __VLS_WithDefaults<P, D> = {
|
25
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
27
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
26
28
|
default: D[K];
|
27
29
|
}> : P[K];
|
28
30
|
};
|
29
|
-
type __VLS_Prettify<T> = {
|
30
|
-
[K in keyof T]: T[K];
|
31
|
-
} & {};
|
32
31
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
33
32
|
type __VLS_TypePropsToOption<T> = {
|
34
33
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
@@ -38,3 +37,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
38
37
|
required: true;
|
39
38
|
};
|
40
39
|
};
|
40
|
+
type __VLS_PrettifyLocal<T> = {
|
41
|
+
[K in keyof T]: T[K];
|
42
|
+
} & {};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
2
2
|
inline: {
|
3
3
|
type: BooleanConstructor;
|
4
4
|
default: boolean;
|
@@ -12,29 +12,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
12
12
|
modelValue: {
|
13
13
|
type: StringConstructor;
|
14
14
|
};
|
15
|
-
}
|
15
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
16
16
|
change: (...args: any[]) => void;
|
17
17
|
"update:modelValue": (...args: any[]) => void;
|
18
18
|
"update:original": (...args: any[]) => void;
|
19
|
-
}, string, import("vue").PublicProps, Readonly<
|
20
|
-
inline:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
};
|
27
|
-
original: {
|
28
|
-
type: StringConstructor;
|
29
|
-
};
|
30
|
-
modelValue: {
|
31
|
-
type: StringConstructor;
|
32
|
-
};
|
33
|
-
}>> & {
|
19
|
+
}, string, import("vue").PublicProps, Readonly<{
|
20
|
+
inline: boolean;
|
21
|
+
} & {
|
22
|
+
language?: string;
|
23
|
+
modelValue?: string;
|
24
|
+
original?: string;
|
25
|
+
} & {
|
34
26
|
onChange?: (...args: any[]) => any;
|
35
27
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
36
28
|
"onUpdate:original"?: (...args: any[]) => any;
|
37
|
-
}
|
29
|
+
}>, {
|
38
30
|
inline: boolean;
|
39
|
-
}, {}>;
|
31
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
40
32
|
export default _default;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
2
2
|
export default _default;
|
@@ -3,22 +3,13 @@ declare let __VLS_typeProps: RichTextProps;
|
|
3
3
|
type __VLS_PublicProps = {
|
4
4
|
modelValue?: string;
|
5
5
|
} & typeof __VLS_typeProps;
|
6
|
-
declare const _default: import("vue").DefineComponent<
|
7
|
-
"update:modelValue": (modelValue: string) => void;
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
8
7
|
scroll: (...args: any[]) => void;
|
9
8
|
change: (...args: any[]) => void;
|
10
|
-
}, string, import("vue").PublicProps, Readonly<
|
11
|
-
|
9
|
+
}, string, import("vue").PublicProps, Readonly<{
|
10
|
+
modelValue?: string;
|
11
|
+
} & RichTextProps & {
|
12
12
|
onScroll?: (...args: any[]) => any;
|
13
|
-
|
14
|
-
}, {}, {}>;
|
13
|
+
onChange?: (...args: any[]) => any;
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
15
15
|
export default _default;
|
16
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
17
|
-
type __VLS_TypePropsToOption<T> = {
|
18
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
19
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
20
|
-
} : {
|
21
|
-
type: import('vue').PropType<T[K]>;
|
22
|
-
required: true;
|
23
|
-
};
|
24
|
-
};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
2
2
|
export default _default;
|
@@ -1,8 +1,15 @@
|
|
1
|
-
declare
|
2
|
-
|
1
|
+
declare var __VLS_0: {};
|
2
|
+
declare var __VLS_inheritedAttrs: {};
|
3
|
+
declare const __VLS_templateResult: {
|
4
|
+
slots: {
|
5
|
+
default?(_: typeof __VLS_0): any;
|
6
|
+
};
|
7
|
+
refs: {};
|
8
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
3
9
|
};
|
4
|
-
|
5
|
-
declare const
|
10
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
6
13
|
export default _default;
|
7
14
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
8
15
|
new (): {
|
@@ -1,20 +1,24 @@
|
|
1
|
-
declare
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
type: BooleanConstructor;
|
7
|
-
default: boolean;
|
1
|
+
declare var __VLS_0: {};
|
2
|
+
declare var __VLS_inheritedAttrs: {};
|
3
|
+
declare const __VLS_templateResult: {
|
4
|
+
slots: {
|
5
|
+
default?(_: typeof __VLS_0): any;
|
8
6
|
};
|
9
|
-
|
7
|
+
refs: {};
|
8
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
9
|
+
};
|
10
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
10
12
|
container: {
|
11
13
|
type: BooleanConstructor;
|
12
14
|
default: boolean;
|
13
15
|
};
|
14
|
-
}
|
16
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
17
|
+
container: boolean;
|
18
|
+
} & {} & {}>, {
|
15
19
|
container: boolean;
|
16
|
-
}, {}>;
|
17
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
18
22
|
export default _default;
|
19
23
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
20
24
|
new (): {
|
@@ -1,21 +1,18 @@
|
|
1
|
-
|
2
|
-
declare
|
3
|
-
|
1
|
+
declare var __VLS_0: {};
|
2
|
+
declare var __VLS_inheritedAttrs: {};
|
3
|
+
declare const __VLS_templateResult: {
|
4
|
+
slots: {
|
5
|
+
default?(_: typeof __VLS_0): any;
|
6
|
+
};
|
7
|
+
refs: {};
|
8
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
4
9
|
};
|
5
|
-
|
6
|
-
declare const
|
10
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
7
13
|
export default _default;
|
8
14
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
9
15
|
new (): {
|
10
16
|
$slots: S;
|
11
17
|
};
|
12
18
|
};
|
13
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
14
|
-
type __VLS_TypePropsToOption<T> = {
|
15
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
16
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
17
|
-
} : {
|
18
|
-
type: import('vue').PropType<T[K]>;
|
19
|
-
required: true;
|
20
|
-
};
|
21
|
-
};
|
@@ -1,18 +1,6 @@
|
|
1
|
-
|
2
|
-
modelValue
|
3
|
-
}
|
4
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
5
|
-
"update:modelValue": (modelValue: boolean) => void;
|
6
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
2
|
+
'update:modelValue': (modelValue: boolean) => any;
|
3
|
+
}, string, import("vue").PublicProps, Readonly<{
|
7
4
|
"onUpdate:modelValue"?: (modelValue: boolean) => any;
|
8
|
-
}, {}, {}>;
|
5
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
9
6
|
export default _default;
|
10
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
11
|
-
type __VLS_TypePropsToOption<T> = {
|
12
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
13
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
14
|
-
} : {
|
15
|
-
type: import('vue').PropType<T[K]>;
|
16
|
-
required: true;
|
17
|
-
};
|
18
|
-
};
|
@@ -1,12 +1,19 @@
|
|
1
1
|
import { SocketProgressProps } from "./@types";
|
2
|
-
declare
|
2
|
+
declare var __VLS_0: {};
|
3
|
+
declare var __VLS_inheritedAttrs: {};
|
4
|
+
declare const __VLS_templateResult: {
|
5
|
+
slots: {
|
6
|
+
default?(_: typeof __VLS_0): any;
|
7
|
+
};
|
8
|
+
refs: {};
|
9
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
10
|
+
};
|
11
|
+
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<SocketProgressProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SocketProgressProps & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
3
14
|
export default _default;
|
4
|
-
type
|
5
|
-
|
6
|
-
|
7
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
8
|
-
} : {
|
9
|
-
type: import('vue').PropType<T[K]>;
|
10
|
-
required: true;
|
15
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
16
|
+
new (): {
|
17
|
+
$slots: S;
|
11
18
|
};
|
12
19
|
};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
2
2
|
export default _default;
|
@@ -1,12 +1,3 @@
|
|
1
1
|
import { TabProps } from "./@types";
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
2
|
+
declare const _default: import("vue").DefineComponent<TabProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TabProps & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
3
3
|
export default _default;
|
4
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
5
|
-
type __VLS_TypePropsToOption<T> = {
|
6
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
7
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
8
|
-
} : {
|
9
|
-
type: import('vue').PropType<T[K]>;
|
10
|
-
required: true;
|
11
|
-
};
|
12
|
-
};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
2
2
|
export default _default;
|
@@ -4,10 +4,10 @@ import Factory from "../../factorying/Factory";
|
|
4
4
|
* Excel工厂
|
5
5
|
*/
|
6
6
|
declare class ExcelFactory extends Factory<IExcel> {
|
7
|
-
|
7
|
+
open(): void;
|
8
8
|
/**
|
9
9
|
* 获取Excel实例
|
10
10
|
*/
|
11
|
-
|
11
|
+
createAsync(type: string, conn?: string): Promise<IExcel>;
|
12
12
|
}
|
13
13
|
export default ExcelFactory;
|
@@ -1,8 +1,11 @@
|
|
1
1
|
import IHasher from "./IHasher";
|
2
2
|
import Factory from "../../factorying/Factory";
|
3
|
+
/**
|
4
|
+
* 哈希工厂
|
5
|
+
*/
|
3
6
|
declare class HasherFactory extends Factory<IHasher> {
|
4
7
|
get instances(): IHasher[];
|
5
|
-
|
8
|
+
createAsync(type: string, conn?: string): Promise<IHasher>;
|
6
9
|
/**
|
7
10
|
* 获取MD5 Hash对象
|
8
11
|
*/
|