halo-fe 1.0.23 → 1.0.24

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.
Files changed (143) hide show
  1. package/dist/assets/{liquidjs-C-LVcoaY.js → liquidjs-B8dqQyVv.js} +639 -632
  2. package/dist/main.js +2084 -2005
  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 +11 -13
  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/builders/types/ProviderTable.d.ts +6 -0
  23. package/esm/drivers/builders/types/index.d.ts +2 -0
  24. package/esm/drivers/excels/ExcelFactory.d.ts +1 -1
  25. package/esm/drivers/helpers/implements/ArrayHelper.d.ts +1 -2
  26. package/esm/drivers/helpers/implements/DomHelper.d.ts +1 -1
  27. package/esm/drivers/index.d.ts +1 -0
  28. package/esm/drivers/utilities/@types/DragEvent.d.ts +11 -0
  29. package/esm/drivers/utilities/@types/DragOptions.d.ts +28 -0
  30. package/esm/drivers/utilities/@types/Position.d.ts +15 -0
  31. package/esm/drivers/utilities/@types/Rect.d.ts +10 -0
  32. package/esm/drivers/utilities/@types/index.d.ts +5 -0
  33. package/esm/drivers/utilities/IUtility.d.ts +4 -0
  34. package/esm/drivers/utilities/Utility.d.ts +5 -0
  35. package/esm/drivers/utilities/UtilityFactory.d.ts +43 -0
  36. package/esm/drivers/utilities/implement/AffixUtility.d.ts +11 -0
  37. package/esm/drivers/utilities/implement/DeltaUtility.d.ts +11 -0
  38. package/esm/drivers/utilities/implement/EventUtility.d.ts +73 -0
  39. package/esm/drivers/utilities/implement/KeyboardUtility.d.ts +74 -0
  40. package/esm/drivers/utilities/implement/MouseUtility.d.ts +25 -0
  41. package/esm/drivers/utilities/implement/RandomUtility.d.ts +41 -0
  42. package/esm/drivers/utilities/implement/SaveUtility.d.ts +16 -0
  43. package/esm/drivers/utilities/index.d.ts +9 -0
  44. package/esm/factorying/Factories.d.ts +5 -1
  45. package/esm/factorying/{Helpers.d.ts → Helps.d.ts} +2 -2
  46. package/esm/factorying/Utils.d.ts +14 -0
  47. package/esm/factorying/index.d.ts +2 -2
  48. package/esm/helpers/DictionaryHelper.d.ts +6 -0
  49. package/esm/main.d.ts +1 -1
  50. package/esm/svcs/@types/Dictionary.d.ts +4 -0
  51. package/esm/svcs/implement/DriverSvc.d.ts +4 -0
  52. package/esm/svcs/implement/I18nSvc.d.ts +1 -1
  53. package/esm/svcs/index.d.ts +1 -0
  54. package/esm/utilities/MathUtility.d.ts +35 -0
  55. package/package.json +9 -9
  56. package/esm/coms/Code.vue.d.ts +0 -41
  57. package/esm/coms/Col.vue.d.ts +0 -11
  58. package/esm/coms/Compare.vue.d.ts +0 -40
  59. package/esm/coms/Container.vue.d.ts +0 -23
  60. package/esm/coms/RichText.vue.d.ts +0 -24
  61. package/esm/coms/Row.vue.d.ts +0 -21
  62. package/esm/coms/types/CodeEmit.d.ts +0 -23
  63. package/esm/coms/types/CodeProps.d.ts +0 -18
  64. package/esm/coms/types/RichTextOptions.d.ts +0 -14
  65. package/esm/coms/types/RichTextProps.d.ts +0 -12
  66. package/esm/coms/types/RowProps.d.ts +0 -14
  67. package/esm/drivers/IDriver.d.ts +0 -10
  68. package/esm/drivers/cdns/implements/BootCdn.d.ts +0 -12
  69. package/esm/drivers/cdns/implements/JsdelivrCdn.d.ts +0 -15
  70. package/esm/drivers/cdns/implements/StaticFileCdn.d.ts +0 -21
  71. package/esm/drivers/cdns/implements/UnpkgCdn.d.ts +0 -12
  72. package/esm/drivers/factories/DriverFactory.d.ts +0 -64
  73. package/esm/drivers/factories/Factory.d.ts +0 -18
  74. package/esm/drivers/factories/IFactory.d.ts +0 -18
  75. package/esm/drivers/factories/index.d.ts +0 -42
  76. package/esm/drivers/providers/implements/StorageHelper.d.ts +0 -34
  77. package/esm/helpers/ScriptHelper.d.ts +0 -19
  78. package/esm/helpers/array-helper.d.ts +0 -97
  79. package/esm/helpers/component-helper.d.ts +0 -18
  80. package/esm/helpers/cookie-helper.d.ts +0 -6
  81. package/esm/helpers/dictionary-helper.d.ts +0 -18
  82. package/esm/helpers/dom-helper.d.ts +0 -86
  83. package/esm/helpers/event-helper.d.ts +0 -30
  84. package/esm/helpers/file-helper.d.ts +0 -22
  85. package/esm/helpers/html-helper.d.ts +0 -10
  86. package/esm/helpers/i18n-helper.d.ts +0 -14
  87. package/esm/helpers/image-helper.d.ts +0 -10
  88. package/esm/helpers/json-helper.d.ts +0 -39
  89. package/esm/helpers/math-helper.d.ts +0 -46
  90. package/esm/helpers/micro-helper.d.ts +0 -10
  91. package/esm/helpers/mount-helper.d.ts +0 -14
  92. package/esm/helpers/object-helper.d.ts +0 -38
  93. package/esm/helpers/script-helper.d.ts +0 -31
  94. package/esm/helpers/scroll-helper.d.ts +0 -14
  95. package/esm/helpers/sign-helper.d.ts +0 -14
  96. package/esm/helpers/storage-helper.d.ts +0 -34
  97. package/esm/helpers/string-helper.d.ts +0 -94
  98. package/esm/helpers/task-helper.d.ts +0 -26
  99. package/esm/helpers/time-helper.d.ts +0 -66
  100. package/esm/helpers/tree-helper.d.ts +0 -54
  101. package/esm/helpers/type-helper.d.ts +0 -26
  102. package/esm/helpers/url-helper.d.ts +0 -96
  103. package/esm/plugins/HtmlTransform.d.ts +0 -6
  104. package/esm/plugins/types/IMessager.d.ts +0 -34
  105. package/esm/plugins/types/index.d.ts +0 -7
  106. package/esm/services/ConfigService.d.ts +0 -66
  107. package/esm/services/DriverService.d.ts +0 -36
  108. package/esm/services/EnvService.d.ts +0 -14
  109. package/esm/services/LogService.d.ts +0 -19
  110. package/esm/services/SettingService.d.ts +0 -42
  111. package/esm/services/SocketService.d.ts +0 -23
  112. package/esm/services/UserService.d.ts +0 -47
  113. package/esm/services/index.d.ts +0 -15
  114. package/esm/services/types/IMessage.d.ts +0 -14
  115. package/esm/services/types/IMessager.d.ts +0 -34
  116. package/esm/services/types/index.d.ts +0 -2
  117. package/esm/servs/ConfigServ.d.ts +0 -66
  118. package/esm/servs/DriverServ.d.ts +0 -36
  119. package/esm/servs/EnvServ.d.ts +0 -14
  120. package/esm/servs/IServ.d.ts +0 -6
  121. package/esm/servs/LogServ.d.ts +0 -19
  122. package/esm/servs/Serv.d.ts +0 -4
  123. package/esm/servs/ServFactory.d.ts +0 -11
  124. package/esm/servs/SettingServ.d.ts +0 -42
  125. package/esm/servs/SocketServ.d.ts +0 -38
  126. package/esm/servs/UserServ.d.ts +0 -47
  127. package/esm/servs/implement/ConfigServ.d.ts +0 -66
  128. package/esm/servs/implement/DriverServ.d.ts +0 -36
  129. package/esm/servs/implement/EnvServ.d.ts +0 -14
  130. package/esm/servs/implement/LogServ.d.ts +0 -19
  131. package/esm/servs/implement/SettingServ.d.ts +0 -42
  132. package/esm/servs/implement/SocketServ.d.ts +0 -38
  133. package/esm/servs/implement/UserServ.d.ts +0 -47
  134. package/esm/servs/index.d.ts +0 -15
  135. package/esm/stores/config.d.ts +0 -63
  136. package/esm/stores/driver.d.ts +0 -37
  137. package/esm/stores/env.d.ts +0 -12
  138. package/esm/stores/index.d.ts +0 -8
  139. package/esm/stores/log.d.ts +0 -20
  140. package/esm/stores/setting.d.ts +0 -43
  141. package/esm/stores/socket.d.ts +0 -27
  142. package/esm/stores/user.d.ts +0 -40
  143. package/esm/types/CreateOptions.d.ts +0 -18
@@ -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,21 +1,19 @@
1
1
  import { SocketProgressProps } from "./@types";
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
+ attrs: Partial<typeof __VLS_inheritedAttrs>;
4
10
  };
5
- declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<SocketProgressProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SocketProgressProps>>>, {}, {}>;
6
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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>;
7
14
  export default _default;
8
15
  type __VLS_WithTemplateSlots<T, S> = T & {
9
16
  new (): {
10
17
  $slots: S;
11
18
  };
12
19
  };
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,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;
@@ -0,0 +1,6 @@
1
+ interface ProviderTable {
2
+ name: string;
3
+ columns: any[];
4
+ rows: any[];
5
+ }
6
+ export default ProviderTable;
@@ -0,0 +1,2 @@
1
+ import ProviderTable from "./ProviderTable";
2
+ export { type ProviderTable };
@@ -4,7 +4,7 @@ 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
  */
@@ -105,9 +105,8 @@ declare class ArrayHelper extends Helper {
105
105
  removeIndex: (str: string, index: number, split: string) => string;
106
106
  /**
107
107
  * 按照指定函数对数组排序
108
- * order: asc desc null
109
108
  */
110
- orderBy: (entities: any[], handlers: Function | Function[], order?: string) => any[];
109
+ orderBy: (entities: any[], orderByFns: Function | Function[], order?: "asc" | "desc" | null) => any[];
111
110
  /**
112
111
  * 分组,封装成字典而不是集合,大数据场景速度提升百倍
113
112
  */
@@ -1,4 +1,4 @@
1
- import { Position } from "../../../utilities";
1
+ import { Position } from "../../utilities";
2
2
  import Helper from "../Helper";
3
3
  /**
4
4
  * Dom帮助类
@@ -16,5 +16,6 @@ export * from "./signers";
16
16
  export * from "./ssos";
17
17
  export * from "./tasks";
18
18
  export * from "./templates";
19
+ export * from "./utilities";
19
20
  export * from "./videos";
20
21
  export * from "./voices";
@@ -0,0 +1,11 @@
1
+ import Position from "./Position";
2
+ /**
3
+ * 自定义拖拽事件
4
+ */
5
+ declare class DragEvent extends Position {
6
+ /**
7
+ * 吸附的方向
8
+ */
9
+ affix?: string;
10
+ }
11
+ export default DragEvent;
@@ -0,0 +1,28 @@
1
+ import Rect from "./Rect";
2
+ import DragEvent from "./DragEvent";
3
+ /**
4
+ * 拖拽选项
5
+ */
6
+ interface DragOptions {
7
+ /**
8
+ * 拖拽初始化
9
+ */
10
+ init: (event: MouseEvent) => any;
11
+ /**
12
+ * 拖拽事件
13
+ */
14
+ handler: (dragEvent: DragEvent, start: MouseEvent, data: any, first: boolean, event: MouseEvent) => void;
15
+ /**
16
+ * 拖拽结束事件
17
+ */
18
+ end?: (event: MouseEvent) => void;
19
+ /**
20
+ * 可拖拽范围
21
+ */
22
+ range?: Rect;
23
+ /**
24
+ * 吸附检测的距离,设置吸附位置必须设置拖拽范围(依赖宽度等信息)
25
+ */
26
+ affix?: number;
27
+ }
28
+ export default DragOptions;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * 位置
3
+ */
4
+ declare class Position {
5
+ /**
6
+ * 距窗口左边的距离
7
+ */
8
+ x: number;
9
+ /**
10
+ * 距窗口顶部的距离
11
+ */
12
+ y: number;
13
+ constructor(x?: number, y?: number);
14
+ }
15
+ export default Position;
@@ -0,0 +1,10 @@
1
+ import Position from "./Position";
2
+ /**
3
+ * 区域类
4
+ */
5
+ declare class Rect extends Position {
6
+ width: number;
7
+ height: number;
8
+ constructor(x: number, y: number, width: number, height: number);
9
+ }
10
+ export default Rect;
@@ -0,0 +1,5 @@
1
+ import DragOptions from "./DragOptions";
2
+ import DragEvent from "./DragEvent";
3
+ import Position from "./Position";
4
+ import Rect from "./Rect";
5
+ export { type DragOptions, DragEvent, Position, Rect };