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.
Files changed (94) hide show
  1. package/dist/assets/{liquidjs-C-LVcoaY.js → liquidjs-B8dqQyVv.js} +639 -632
  2. package/dist/main.js +4156 -3643
  3. package/esm/coms/Empty.vue.d.ts +15 -13
  4. package/esm/coms/Fill.vue.d.ts +14 -5
  5. package/esm/coms/Scroller.vue.d.ts +19 -16
  6. package/esm/coms/Timer.vue.d.ts +12 -5
  7. package/esm/coms/conditions/Condition.vue.d.ts +1 -10
  8. package/esm/coms/conditions/Index.vue.d.ts +1 -10
  9. package/esm/coms/controls/Code.vue.d.ts +19 -17
  10. package/esm/coms/controls/Compare.vue.d.ts +11 -19
  11. package/esm/coms/controls/Option.vue.d.ts +1 -1
  12. package/esm/coms/controls/RichText.vue.d.ts +6 -15
  13. package/esm/coms/controls/Select.vue.d.ts +1 -1
  14. package/esm/coms/layouts/Col.vue.d.ts +11 -4
  15. package/esm/coms/layouts/Container.vue.d.ts +15 -11
  16. package/esm/coms/layouts/Row.vue.d.ts +11 -14
  17. package/esm/coms/progresses/Progress.vue.d.ts +4 -16
  18. package/esm/coms/progresses/SocketProgress.vue.d.ts +15 -8
  19. package/esm/coms/tables/Table.vue.d.ts +1 -1
  20. package/esm/coms/tabs/Tab.vue.d.ts +1 -10
  21. package/esm/coms/tabs/TabPane.vue.d.ts +1 -1
  22. package/esm/drivers/cdns/CdnFactory.d.ts +1 -1
  23. package/esm/drivers/encoders/EncoderFactory.d.ts +1 -1
  24. package/esm/drivers/excels/ExcelFactory.d.ts +2 -2
  25. package/esm/drivers/features/FeatureFactory.d.ts +1 -1
  26. package/esm/drivers/hashers/HasherFactory.d.ts +4 -1
  27. package/esm/drivers/hashers/implement/Md5Hasher.d.ts +1 -1
  28. package/esm/drivers/hashers/implement/Sha256Hasher.d.ts +1 -1
  29. package/esm/drivers/helpers/@types/JsonConfig.d.ts +10 -0
  30. package/esm/drivers/helpers/@types/TreeNodeProp.d.ts +9 -0
  31. package/esm/drivers/helpers/@types/index.d.ts +3 -0
  32. package/esm/drivers/helpers/Helper.d.ts +8 -0
  33. package/esm/drivers/helpers/HelperFactory.d.ts +32 -0
  34. package/esm/drivers/helpers/IHelper.d.ts +4 -0
  35. package/esm/drivers/helpers/implements/ArrayHelper.d.ts +123 -0
  36. package/esm/drivers/helpers/implements/BrowserHelper.d.ts +12 -0
  37. package/esm/drivers/helpers/implements/ComponentHelper.d.ts +20 -0
  38. package/esm/drivers/helpers/implements/DictionaryHelper.d.ts +40 -0
  39. package/esm/drivers/helpers/implements/DomHelper.d.ts +118 -0
  40. package/esm/drivers/helpers/implements/EventHelper.d.ts +32 -0
  41. package/esm/drivers/helpers/implements/FileHelper.d.ts +24 -0
  42. package/esm/drivers/helpers/implements/HtmlHelper.d.ts +16 -0
  43. package/esm/drivers/helpers/implements/ImageHelper.d.ts +12 -0
  44. package/esm/drivers/helpers/implements/JsonHelper.d.ts +49 -0
  45. package/esm/drivers/helpers/implements/MathHelper.d.ts +52 -0
  46. package/esm/drivers/helpers/implements/MicroHelper.d.ts +12 -0
  47. package/esm/drivers/helpers/implements/MountHelper.d.ts +16 -0
  48. package/esm/drivers/helpers/implements/ObjectHelper.d.ts +44 -0
  49. package/esm/drivers/helpers/implements/ScrollHelper.d.ts +16 -0
  50. package/esm/drivers/helpers/implements/SignHelper.d.ts +16 -0
  51. package/esm/drivers/helpers/implements/StringHelper.d.ts +104 -0
  52. package/esm/drivers/helpers/implements/TaskHelper.d.ts +28 -0
  53. package/esm/drivers/helpers/implements/TimeHelper.d.ts +68 -0
  54. package/esm/drivers/helpers/implements/TreeHelper.d.ts +56 -0
  55. package/esm/drivers/helpers/implements/TypeHelper.d.ts +28 -0
  56. package/esm/drivers/helpers/implements/UrlHelper.d.ts +90 -0
  57. package/esm/drivers/helpers/index.d.ts +24 -0
  58. package/esm/drivers/https/HttpFactory.d.ts +1 -1
  59. package/esm/drivers/i18ns/II18n.d.ts +1 -1
  60. package/esm/drivers/index.d.ts +2 -0
  61. package/esm/drivers/providers/ProviderFactory.d.ts +1 -1
  62. package/esm/drivers/signers/SignerFactory.d.ts +1 -1
  63. package/esm/drivers/signers/implements/DefaultSigner.d.ts +1 -1
  64. package/esm/drivers/ssos/SsoFactory.d.ts +1 -1
  65. package/esm/drivers/utilities/@types/DragEvent.d.ts +11 -0
  66. package/esm/drivers/utilities/@types/DragOptions.d.ts +28 -0
  67. package/esm/drivers/utilities/@types/Position.d.ts +15 -0
  68. package/esm/drivers/utilities/@types/Rect.d.ts +10 -0
  69. package/esm/drivers/utilities/@types/index.d.ts +5 -0
  70. package/esm/drivers/utilities/IUtility.d.ts +4 -0
  71. package/esm/drivers/utilities/Utility.d.ts +5 -0
  72. package/esm/drivers/utilities/UtilityFactory.d.ts +43 -0
  73. package/esm/drivers/utilities/implement/AffixUtility.d.ts +11 -0
  74. package/esm/drivers/utilities/implement/DeltaUtility.d.ts +11 -0
  75. package/esm/drivers/utilities/implement/EventUtility.d.ts +73 -0
  76. package/esm/drivers/utilities/implement/KeyboardUtility.d.ts +74 -0
  77. package/esm/drivers/utilities/implement/MouseUtility.d.ts +25 -0
  78. package/esm/drivers/utilities/implement/RandomUtility.d.ts +41 -0
  79. package/esm/drivers/utilities/implement/SaveUtility.d.ts +16 -0
  80. package/esm/drivers/utilities/index.d.ts +9 -0
  81. package/esm/factorying/Factories.d.ts +15 -7
  82. package/esm/factorying/Factory.d.ts +10 -5
  83. package/esm/factorying/Helps.d.ts +29 -0
  84. package/esm/factorying/IFactory.d.ts +13 -5
  85. package/esm/factorying/Utils.d.ts +14 -0
  86. package/esm/factorying/index.d.ts +3 -1
  87. package/esm/helpers/DictionaryHelper.d.ts +6 -0
  88. package/esm/helpers/MathHelper.d.ts +0 -4
  89. package/esm/main.d.ts +1 -2
  90. package/esm/svcs/implement/DriverSvc.d.ts +8 -0
  91. package/esm/svcs/implement/SettingSvc.d.ts +1 -1
  92. package/esm/svcs/implement/UserSvc.d.ts +8 -4
  93. package/esm/svcs/index.d.ts +2 -0
  94. package/package.json +9 -9
@@ -1,25 +1,27 @@
1
- declare function __VLS_template(): {
2
- default?(_: {}): any;
3
- };
4
- declare const __VLS_component: import("vue").DefineComponent<{
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
- hasData: BooleanConstructor;
10
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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, ReturnType<typeof __VLS_template>>;
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;
@@ -1,12 +1,21 @@
1
- declare function __VLS_template(): {
2
- default?(_: {}): any;
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<import("vue").ExtractPropTypes<{}>> & {
15
+ }, string, import("vue").PublicProps, Readonly<{
7
16
  onResize?: (...args: any[]) => any;
8
- }, {}, {}>;
9
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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 function __VLS_template(): {
3
- default?(_: {}): any;
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
- declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<ScrollerProps>, {
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
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
21
  scroll: (...args: any[]) => void;
10
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<ScrollerProps>>> & {
22
+ }, string, import("vue").PublicProps, Readonly<ScrollerProps & {
11
23
  onScroll?: (...args: any[]) => any;
12
- }, {}, {}>;
13
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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
- };
@@ -1,6 +1,13 @@
1
- declare function __VLS_template(): {
2
- default?(_: {}): any;
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<import("vue").ExtractPropTypes<{}>> & {
18
+ }, string, import("vue").PublicProps, Readonly<{
12
19
  onChange?: (...args: any[]) => any;
13
- }, {}, {}>;
14
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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<__VLS_TypePropsToOption<ConditionProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<ConditionProps>>>, {}, {}>;
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<__VLS_TypePropsToOption<ConditionGroupProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<ConditionGroupProps>>>, {}, {}>;
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
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- mounted: (monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor) => void;
10
- change: (value: string) => void;
11
- scroll: (scrollTop: number) => void;
12
- "update:modelValue": (value: any) => void;
13
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<CodeProps>, {
14
- config: any;
15
- }>>> & {
16
- onChange?: (value: string) => any;
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 ? __VLS_Prettify<P[K] & {
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
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
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<import("vue").ExtractPropTypes<{
20
- inline: {
21
- type: BooleanConstructor;
22
- default: boolean;
23
- };
24
- language: {
25
- type: StringConstructor;
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").ExtractPropTypes<{}>>, {}, {}>;
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<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
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<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
11
- onChange?: (...args: any[]) => any;
9
+ }, string, import("vue").PublicProps, Readonly<{
10
+ modelValue?: string;
11
+ } & RichTextProps & {
12
12
  onScroll?: (...args: any[]) => any;
13
- "onUpdate:modelValue"?: (modelValue: string) => any;
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").ExtractPropTypes<{}>>, {}, {}>;
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 function __VLS_template(): {
2
- default?(_: {}): any;
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
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
5
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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 function __VLS_template(): {
2
- default?(_: {}): any;
3
- };
4
- declare const __VLS_component: import("vue").DefineComponent<{
5
- container: {
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
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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, ReturnType<typeof __VLS_template>>;
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
- import { RowProps } from "./@types";
2
- declare function __VLS_template(): {
3
- default?(_: {}): any;
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
- declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<RowProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<RowProps>>>, {}, {}>;
6
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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
- type __VLS_PublicProps = {
2
- modelValue?: boolean;
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 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>>>, {}, {}>;
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 __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;
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").ExtractPropTypes<{}>>, {}, {}>;
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<__VLS_TypePropsToOption<TabProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<TabProps>>>, {}, {}>;
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").ExtractPropTypes<{}>>, {}, {}>;
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;
@@ -8,6 +8,6 @@ declare class CdnFactory extends Factory<ICdn> {
8
8
  /**
9
9
  * 获取指定CDN实例
10
10
  */
11
- create(type: string, conn?: string): Promise<ICdn>;
11
+ createAsync(type: string, conn?: string): Promise<ICdn>;
12
12
  }
13
13
  export default CdnFactory;
@@ -8,7 +8,7 @@ declare class EncoderFactory extends Factory<IEncoder> {
8
8
  /**
9
9
  * 创建执行类型的Hash实例
10
10
  */
11
- create(type: string, conn?: string): Promise<IEncoder>;
11
+ createAsync(type: string, conn?: string): Promise<IEncoder>;
12
12
  /**
13
13
  * 获取Base64 编码器对象
14
14
  */
@@ -4,10 +4,10 @@ import Factory from "../../factorying/Factory";
4
4
  * Excel工厂
5
5
  */
6
6
  declare class ExcelFactory extends Factory<IExcel> {
7
- get instances(): IExcel[];
7
+ open(): void;
8
8
  /**
9
9
  * 获取Excel实例
10
10
  */
11
- create(type: string, conn?: string): Promise<IExcel>;
11
+ createAsync(type: string, conn?: string): Promise<IExcel>;
12
12
  }
13
13
  export default ExcelFactory;
@@ -8,6 +8,6 @@ declare class FeatureFactory extends Factory<IFeature> {
8
8
  /**
9
9
  * 获取指定特征实例
10
10
  */
11
- create(type: string, conn?: string): Promise<IFeature>;
11
+ createAsync(type: string, conn?: string): Promise<IFeature>;
12
12
  }
13
13
  export default FeatureFactory;
@@ -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
- create(type: string, conn?: string): Promise<IHasher>;
8
+ createAsync(type: string, conn?: string): Promise<IHasher>;
6
9
  /**
7
10
  * 获取MD5 Hash对象
8
11
  */
@@ -6,6 +6,6 @@ declare class Md5Hasher extends Hasher {
6
6
  type: string;
7
7
  crypto: any;
8
8
  open(conn: string): Promise<void>;
9
- compute(value: string): Promise<string>;
9
+ compute: (value: string) => Promise<string>;
10
10
  }
11
11
  export default Md5Hasher;
@@ -5,6 +5,6 @@ import Hasher from "../Hasher";
5
5
  declare class Sha256Hasher extends Hasher {
6
6
  type: string;
7
7
  open(conn: string): Promise<void>;
8
- compute(value: string): Promise<string>;
8
+ compute: (value: string) => Promise<string>;
9
9
  }
10
10
  export default Sha256Hasher;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Json配置
3
+ */
4
+ declare class JsonConfig {
5
+ /**
6
+ * 是否美化
7
+ */
8
+ beautify: boolean;
9
+ }
10
+ export default JsonConfig;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * 树节点属性
3
+ */
4
+ interface TreeNodeProp {
5
+ key: string;
6
+ type: string;
7
+ remark: string;
8
+ }
9
+ export default TreeNodeProp;
@@ -0,0 +1,3 @@
1
+ import JsonConfig from "./JsonConfig";
2
+ import TreeNodeProp from "./TreeNodeProp";
3
+ export { JsonConfig, type TreeNodeProp };
@@ -0,0 +1,8 @@
1
+ import IHelper from "./IHelper";
2
+ /**
3
+ * 帮助类基类
4
+ */
5
+ declare abstract class Helper implements IHelper {
6
+ type: string;
7
+ }
8
+ export default Helper;