@matechat/core 1.10.0 → 1.11.0-alpha.1

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 (115) hide show
  1. package/Attachment/Attachment.vue.d.ts +121 -0
  2. package/Attachment/attachment-types.d.ts +103 -0
  3. package/Attachment/drop-area.vue.d.ts +13 -0
  4. package/Attachment/index.css +1 -1
  5. package/Attachment/index.d.ts +2 -0
  6. package/Attachment/index.js +211 -311
  7. package/Attachment/uploader.d.ts +11 -0
  8. package/Attachment/use-upload.d.ts +8 -0
  9. package/Bubble/Bubble.vue.d.ts +75 -0
  10. package/Bubble/BubbleLoading.vue.d.ts +3 -0
  11. package/Bubble/bubble-constants.d.ts +4 -0
  12. package/Bubble/bubble-types.d.ts +38 -0
  13. package/Bubble/components/Avatar.vue.d.ts +57 -0
  14. package/Bubble/components/AvatarBodyIcon.vue.d.ts +24 -0
  15. package/Bubble/components/AvatarNoBodyIcon.vue.d.ts +24 -0
  16. package/Bubble/components/avatar-types.d.ts +25 -0
  17. package/Bubble/index.css +1 -1
  18. package/Bubble/index.d.ts +2 -0
  19. package/Bubble/index.js +11 -11
  20. package/FileList/FileIcon/CodeFile.vue.d.ts +10 -0
  21. package/FileList/FileIcon/CompressedFile.vue.d.ts +10 -0
  22. package/FileList/FileIcon/DefaultFileIcon.vue.d.ts +10 -0
  23. package/FileList/FileIcon/Document.vue.d.ts +10 -0
  24. package/FileList/FileIcon/DrawingBoard.vue.d.ts +10 -0
  25. package/FileList/FileIcon/EmailFile.vue.d.ts +10 -0
  26. package/FileList/FileIcon/Excel.vue.d.ts +10 -0
  27. package/FileList/FileIcon/FlowChart.vue.d.ts +10 -0
  28. package/FileList/FileIcon/FolderClosed.vue.d.ts +10 -0
  29. package/FileList/FileIcon/FolderOpen.vue.d.ts +10 -0
  30. package/FileList/FileIcon/Image.vue.d.ts +10 -0
  31. package/FileList/FileIcon/Markdown.vue.d.ts +10 -0
  32. package/FileList/FileIcon/Mind.vue.d.ts +10 -0
  33. package/FileList/FileIcon/Mp4.vue.d.ts +10 -0
  34. package/FileList/FileIcon/MultidimentionalTable.vue.d.ts +10 -0
  35. package/FileList/FileIcon/Page.vue.d.ts +10 -0
  36. package/FileList/FileIcon/Pdf.vue.d.ts +10 -0
  37. package/FileList/FileIcon/Ppt.vue.d.ts +10 -0
  38. package/FileList/FileIcon/Unknown.vue.d.ts +10 -0
  39. package/FileList/FileIcon/Wrong.vue.d.ts +10 -0
  40. package/FileList/FileList.vue.d.ts +36 -0
  41. package/FileList/fileList-types.d.ts +21 -0
  42. package/FileList/index.d.ts +2 -0
  43. package/FileList/index.js +220 -228
  44. package/Header/Header.vue.d.ts +47 -0
  45. package/Header/header-types.d.ts +14 -0
  46. package/Header/index.d.ts +2 -0
  47. package/Input/Input.vue.d.ts +165 -0
  48. package/Input/components/EditableBlock.vue.d.ts +101 -0
  49. package/Input/components/InputTag.vue.d.ts +30 -0
  50. package/Input/components/LoadingIcon.vue.d.ts +3 -0
  51. package/Input/components/SendIcon.vue.d.ts +3 -0
  52. package/Input/components/button.vue.d.ts +3 -0
  53. package/Input/components/textarea-utils.d.ts +17 -0
  54. package/Input/components/textarea.vue.d.ts +3 -0
  55. package/Input/components/use-textarea-autosize.d.ts +12 -0
  56. package/Input/components/util.d.ts +3 -0
  57. package/Input/index.css +1 -1
  58. package/Input/index.d.ts +2 -0
  59. package/Input/index.js +593 -165
  60. package/Input/input-types.d.ts +118 -0
  61. package/Introduction/Introduction.vue.d.ts +88 -0
  62. package/Introduction/index.css +1 -1
  63. package/Introduction/index.d.ts +2 -0
  64. package/Introduction/index.js +41 -32
  65. package/Introduction/introduction-types.d.ts +37 -0
  66. package/Layout/Aside.vue.d.ts +13 -0
  67. package/Layout/Content.vue.d.ts +13 -0
  68. package/Layout/Header.vue.d.ts +13 -0
  69. package/Layout/Layout.vue.d.ts +13 -0
  70. package/Layout/Sender.vue.d.ts +13 -0
  71. package/Layout/index.d.ts +6 -0
  72. package/List/List.vue.d.ts +98 -0
  73. package/List/const.d.ts +5 -0
  74. package/List/index.d.ts +3 -0
  75. package/List/list-types.d.ts +52 -0
  76. package/List/use-list.d.ts +13 -0
  77. package/Locale/i18n.d.ts +21 -0
  78. package/Locale/index.d.ts +7 -0
  79. package/Locale/index.js +33 -51
  80. package/Locale/lang/en-us.d.ts +34 -0
  81. package/Locale/lang/zh-cn.d.ts +34 -0
  82. package/MarkdownCard/CodeBlock.vue.d.ts +76 -0
  83. package/MarkdownCard/MDCardParser.d.ts +12 -0
  84. package/MarkdownCard/MDCardService.d.ts +14 -0
  85. package/MarkdownCard/MermaidService.d.ts +22 -0
  86. package/MarkdownCard/index.css +1 -1
  87. package/MarkdownCard/index.d.ts +2 -0
  88. package/MarkdownCard/index.js +159 -159
  89. package/MarkdownCard/mdCard.types.d.ts +88 -0
  90. package/MarkdownCard/mdCard.vue.d.ts +29 -0
  91. package/Mention/Mention.vue.d.ts +51 -0
  92. package/Mention/const.d.ts +4 -0
  93. package/Mention/index.d.ts +2 -0
  94. package/Mention/mention-types.d.ts +24 -0
  95. package/Mention/use-mention.d.ts +10 -0
  96. package/Prompt/Prompt.vue.d.ts +38 -0
  97. package/Prompt/PromptItem.vue.d.ts +11 -0
  98. package/Prompt/components/Icon.vue.d.ts +42 -0
  99. package/Prompt/components/icon-types.d.ts +18 -0
  100. package/Prompt/index.d.ts +2 -0
  101. package/Prompt/prompt-types.d.ts +33 -0
  102. package/Toolbar/Toolbar.vue.d.ts +68 -0
  103. package/Toolbar/icon/CopyIcon.vue.d.ts +42 -0
  104. package/Toolbar/icon/DeleteIcon.vue.d.ts +42 -0
  105. package/Toolbar/icon/DislikeIcon.vue.d.ts +46 -0
  106. package/Toolbar/icon/LikeIcon.vue.d.ts +46 -0
  107. package/Toolbar/icon/RefreshIcon.vue.d.ts +42 -0
  108. package/Toolbar/icon/ShareIcon.vue.d.ts +42 -0
  109. package/Toolbar/index.css +1 -0
  110. package/Toolbar/index.d.ts +9 -0
  111. package/Toolbar/index.js +520 -0
  112. package/Toolbar/toolbar.types.d.ts +60 -0
  113. package/index.d.ts +18 -6
  114. package/mate-chat.js +11 -2
  115. package/package.json +1 -1
@@ -0,0 +1,75 @@
1
+ declare var __VLS_1: {}, __VLS_7: {}, __VLS_9: {}, __VLS_15: {}, __VLS_17: {};
2
+ type __VLS_Slots = {} & {
3
+ avatar?: (props: typeof __VLS_1) => any;
4
+ } & {
5
+ top?: (props: typeof __VLS_7) => any;
6
+ } & {
7
+ loadingTpl?: (props: typeof __VLS_9) => any;
8
+ } & {
9
+ default?: (props: typeof __VLS_15) => any;
10
+ } & {
11
+ bottom?: (props: typeof __VLS_17) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
14
+ content: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ loading: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ align: {
23
+ type: import("vue").PropType<import("./bubble-types").BubbleAlign>;
24
+ default: string;
25
+ };
26
+ avatarPosition: {
27
+ type: import("vue").PropType<import("./bubble-types").AvatarPosition>;
28
+ default: string;
29
+ };
30
+ variant: {
31
+ type: import("vue").PropType<import("./bubble-types").BubbleVariant>;
32
+ default: string;
33
+ };
34
+ avatarConfig: {
35
+ type: import("vue").PropType<import("./bubble-types").BubbleAvatar>;
36
+ };
37
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
38
+ content: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ loading: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ align: {
47
+ type: import("vue").PropType<import("./bubble-types").BubbleAlign>;
48
+ default: string;
49
+ };
50
+ avatarPosition: {
51
+ type: import("vue").PropType<import("./bubble-types").AvatarPosition>;
52
+ default: string;
53
+ };
54
+ variant: {
55
+ type: import("vue").PropType<import("./bubble-types").BubbleVariant>;
56
+ default: string;
57
+ };
58
+ avatarConfig: {
59
+ type: import("vue").PropType<import("./bubble-types").BubbleAvatar>;
60
+ };
61
+ }>> & Readonly<{}>, {
62
+ variant: import("./bubble-types").BubbleVariant;
63
+ content: string;
64
+ loading: boolean;
65
+ align: import("./bubble-types").BubbleAlign;
66
+ avatarPosition: import("./bubble-types").AvatarPosition;
67
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
68
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
69
+ declare const _default: typeof __VLS_export;
70
+ export default _default;
71
+ type __VLS_WithSlots<T, S> = T & {
72
+ new (): {
73
+ $slots: S;
74
+ };
75
+ };
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export declare const DEFAULT_AVATAR_WIDTH = 36;
2
+ export declare const DEFAULT_AVATAR_HEIGHT = 36;
3
+ export declare const AVATAR_NAME = "name";
4
+ export declare const AVATAR_IMG = "imgSrc";
@@ -0,0 +1,38 @@
1
+ import type { PropType } from 'vue';
2
+ export type BubbleVariant = 'filled' | 'none' | 'bordered';
3
+ export type AvatarPosition = 'top' | 'side';
4
+ export type BubbleAlign = 'left' | 'right';
5
+ export interface BubbleAvatar {
6
+ name?: string;
7
+ gender?: string;
8
+ width?: number;
9
+ height?: number;
10
+ isRound?: boolean;
11
+ imgSrc?: string;
12
+ displayName?: string;
13
+ }
14
+ export declare const props: {
15
+ content: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ loading: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ align: {
24
+ type: PropType<BubbleAlign>;
25
+ default: string;
26
+ };
27
+ avatarPosition: {
28
+ type: PropType<AvatarPosition>;
29
+ default: string;
30
+ };
31
+ variant: {
32
+ type: PropType<BubbleVariant>;
33
+ default: string;
34
+ };
35
+ avatarConfig: {
36
+ type: PropType<BubbleAvatar>;
37
+ };
38
+ };
@@ -0,0 +1,57 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ name: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ gender: {
7
+ type: StringConstructor;
8
+ };
9
+ width: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ height: {
14
+ type: NumberConstructor;
15
+ default: number;
16
+ };
17
+ isRound: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ imgSrc: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
26
+ name: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ gender: {
31
+ type: StringConstructor;
32
+ };
33
+ width: {
34
+ type: NumberConstructor;
35
+ default: number;
36
+ };
37
+ height: {
38
+ type: NumberConstructor;
39
+ default: number;
40
+ };
41
+ isRound: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ imgSrc: {
46
+ type: StringConstructor;
47
+ default: string;
48
+ };
49
+ }>> & Readonly<{}>, {
50
+ name: string;
51
+ height: number;
52
+ width: number;
53
+ imgSrc: string;
54
+ isRound: boolean;
55
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
56
+ declare const _default: typeof __VLS_export;
57
+ export default _default;
@@ -0,0 +1,24 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ width: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ height: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ width: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ height: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ height: number;
21
+ width: number;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
@@ -0,0 +1,24 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ width: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ height: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ width: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ height: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ height: number;
21
+ width: number;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
@@ -0,0 +1,25 @@
1
+ export declare const avatarProps: {
2
+ name: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ gender: {
7
+ type: StringConstructor;
8
+ };
9
+ width: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ height: {
14
+ type: NumberConstructor;
15
+ default: number;
16
+ };
17
+ isRound: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ imgSrc: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ };
package/Bubble/index.css CHANGED
@@ -1 +1 @@
1
- .mc-bubble-loading[data-v-395fc568]{display:flex;align-items:center;gap:8px}.mc-bubble-loading .loading-dot[data-v-395fc568]{width:8px;height:8px;border-radius:5px;background-color:#9880ff}.mc-bubble-loading .loading-dot.dot-start[data-v-395fc568]{animation:dotFlashing-395fc568 1s infinite linear alternate;animation-delay:0s}.mc-bubble-loading .loading-dot.dot-middle[data-v-395fc568]{animation:dotFlashing-395fc568 1s infinite linear alternate;animation-delay:.5s}.mc-bubble-loading .loading-dot.dot-end[data-v-395fc568]{animation:dotFlashing-395fc568 1s infinite linear alternate;animation-delay:1s}@keyframes dotFlashing-395fc568{0%{background-color:#9880ff}to{background-color:#ebe6ff}}.mc-bubble-avatar-wrapper{display:inline-block}.mc-bubble-avatar-wrapper .mc-bubble-avatar-style{display:inline-block;text-align:center;color:var(--devui-light-text, #ffffff)}.mc-bubble-avatar-wrapper .mc-bubble-avatar-background-0{background-color:#ff8b87}.mc-bubble-avatar-wrapper .mc-bubble-avatar-background-1{background-color:#7693f5}.mc-bubble[data-v-f104b241]{display:flex;gap:4px;font-size:var(--devui-font-size, 14px)}.mc-bubble .mc-bubble-content[data-v-f104b241]{word-wrap:break-word}.mc-bubble .mc-bubble-content.filled[data-v-f104b241],.mc-bubble .mc-bubble-content.bordered[data-v-f104b241]{padding:12px 16px;border-radius:12px}.mc-bubble .mc-bubble-content.filled[data-v-f104b241]{background-color:var(--devui-global-bg, #f6f6f8)}.mc-bubble .mc-bubble-content.bordered[data-v-f104b241]{border:1px solid var(--devui-dividing-line, #f2f2f3)}.mc-bubble .mc-bubble-avatar[data-v-f104b241]{flex-shrink:0;display:flex;gap:4px}.mc-bubble .mc-bubble-avatar .mc-bubble-avatar-name[data-v-f104b241]{font-size:14px}.mc-bubble .mc-bubble-avatar.empty-avatar[data-v-f104b241]{visibility:hidden}.mc-bubble.mc-bubble-avatar-top .mc-bubble-avatar[data-v-f104b241]{align-items:center}.mc-bubble .mc-bubble-content-container[data-v-f104b241]{max-width:100%}.mc-bubble.mc-bubble-avatar-top[data-v-f104b241]{flex-direction:column}.mc-bubble.mc-bubble-avatar-top .mc-bubble-content-container[data-v-f104b241]{align-items:flex-start;flex-direction:column}.mc-bubble.mc-bubble-loading.mc-bubble-avatar-side[data-v-f104b241]{align-items:center}.mc-bubble.mc-bubble-avatar-side.mc-bubble-right[data-v-f104b241]{flex-direction:row-reverse;justify-content:end}.mc-bubble.mc-bubble-avatar-top .mc-bubble-avatar[data-v-f104b241],.mc-bubble.mc-bubble-avatar-top .mc-bubble-content-container[data-v-f104b241]{display:flex}.mc-bubble.mc-bubble-avatar-top.mc-bubble-right .mc-bubble-avatar[data-v-f104b241],.mc-bubble.mc-bubble-avatar-top.mc-bubble-right .mc-bubble-content-container[data-v-f104b241]{align-items:flex-end}.mc-bubble.mc-bubble-avatar-top.mc-bubble-right .mc-bubble-avatar[data-v-f104b241]{flex-direction:row-reverse}
1
+ .mc-bubble-loading[data-v-395fc568]{display:flex;align-items:center;gap:8px}.mc-bubble-loading .loading-dot[data-v-395fc568]{width:8px;height:8px;border-radius:5px;background-color:#9880ff}.mc-bubble-loading .loading-dot.dot-start[data-v-395fc568]{animation:dotFlashing-395fc568 1s infinite linear alternate;animation-delay:0s}.mc-bubble-loading .loading-dot.dot-middle[data-v-395fc568]{animation:dotFlashing-395fc568 1s infinite linear alternate;animation-delay:.5s}.mc-bubble-loading .loading-dot.dot-end[data-v-395fc568]{animation:dotFlashing-395fc568 1s infinite linear alternate;animation-delay:1s}@keyframes dotFlashing-395fc568{0%{background-color:#9880ff}to{background-color:#ebe6ff}}.mc-bubble-avatar-wrapper{display:inline-block}.mc-bubble-avatar-wrapper .mc-bubble-avatar-style{display:inline-block;text-align:center;color:var(--devui-light-text, #ffffff)}.mc-bubble-avatar-wrapper .mc-bubble-avatar-background-0{background-color:#ff8b87}.mc-bubble-avatar-wrapper .mc-bubble-avatar-background-1{background-color:#7693f5}.mc-bubble[data-v-f104b241]{display:flex;gap:4px;font-size:var(--devui-font-size, 14px)}.mc-bubble .mc-bubble-content[data-v-f104b241]{word-wrap:break-word;word-break:break-all}.mc-bubble .mc-bubble-content.filled[data-v-f104b241],.mc-bubble .mc-bubble-content.bordered[data-v-f104b241]{padding:12px 16px;border-radius:12px}.mc-bubble .mc-bubble-content.filled[data-v-f104b241]{background-color:var(--devui-global-bg, #f6f6f8)}.mc-bubble .mc-bubble-content.bordered[data-v-f104b241]{border:1px solid var(--devui-dividing-line, #f2f2f3)}.mc-bubble .mc-bubble-avatar[data-v-f104b241]{flex-shrink:0;display:flex;gap:4px}.mc-bubble .mc-bubble-avatar .mc-bubble-avatar-name[data-v-f104b241]{font-size:14px}.mc-bubble .mc-bubble-avatar.empty-avatar[data-v-f104b241]{visibility:hidden}.mc-bubble.mc-bubble-avatar-top .mc-bubble-avatar[data-v-f104b241]{align-items:center}.mc-bubble .mc-bubble-content-container[data-v-f104b241]{max-width:100%}.mc-bubble.mc-bubble-avatar-top[data-v-f104b241]{flex-direction:column}.mc-bubble.mc-bubble-avatar-top .mc-bubble-content-container[data-v-f104b241]{align-items:flex-start;flex-direction:column}.mc-bubble.mc-bubble-loading.mc-bubble-avatar-side[data-v-f104b241]{align-items:center}.mc-bubble.mc-bubble-avatar-side.mc-bubble-right[data-v-f104b241]{flex-direction:row-reverse;justify-content:end}.mc-bubble.mc-bubble-avatar-top .mc-bubble-avatar[data-v-f104b241],.mc-bubble.mc-bubble-avatar-top .mc-bubble-content-container[data-v-f104b241]{display:flex}.mc-bubble.mc-bubble-avatar-top.mc-bubble-right .mc-bubble-avatar[data-v-f104b241],.mc-bubble.mc-bubble-avatar-top.mc-bubble-right .mc-bubble-content-container[data-v-f104b241]{align-items:flex-end}.mc-bubble.mc-bubble-avatar-top.mc-bubble-right .mc-bubble-avatar[data-v-f104b241]{flex-direction:row-reverse}
@@ -0,0 +1,2 @@
1
+ import McBubble from './Bubble.vue.ts';
2
+ export { McBubble };
package/Bubble/index.js CHANGED
@@ -7,29 +7,29 @@ const k = (i, a) => {
7
7
  return s;
8
8
  }, F = {}, T = { class: "mc-bubble-loading" };
9
9
  function D(i, a) {
10
- return r(), o("div", T, [...a[0] || (a[0] = [
10
+ return r(), o("div", T, a[0] || (a[0] = [
11
11
  v(
12
12
  "div",
13
13
  { class: "loading-dot dot-start" },
14
14
  null,
15
15
  -1
16
- /* CACHED */
16
+ /* HOISTED */
17
17
  ),
18
18
  v(
19
19
  "div",
20
20
  { class: "loading-dot dot-middle" },
21
21
  null,
22
22
  -1
23
- /* CACHED */
23
+ /* HOISTED */
24
24
  ),
25
25
  v(
26
26
  "div",
27
27
  { class: "loading-dot dot-end" },
28
28
  null,
29
29
  -1
30
- /* CACHED */
30
+ /* HOISTED */
31
31
  )
32
- ])]);
32
+ ]));
33
33
  }
34
34
  const I = /* @__PURE__ */ k(F, [["render", D], ["__scopeId", "data-v-395fc568"]]), z = 36, P = 36, U = "name", H = "imgSrc", O = {
35
35
  content: {
@@ -104,7 +104,7 @@ const I = /* @__PURE__ */ k(F, [["render", D], ["__scopeId", "data-v-395fc568"]]
104
104
  version: "1.1",
105
105
  xmlns: "http://www.w3.org/2000/svg"
106
106
  },
107
- [...s[0] || (s[0] = [
107
+ s[0] || (s[0] = [
108
108
  v(
109
109
  "g",
110
110
  {
@@ -127,9 +127,9 @@ const I = /* @__PURE__ */ k(F, [["render", D], ["__scopeId", "data-v-395fc568"]]
127
127
  })
128
128
  ],
129
129
  -1
130
- /* CACHED */
130
+ /* HOISTED */
131
131
  )
132
- ])],
132
+ ]),
133
133
  4
134
134
  /* STYLE */
135
135
  ));
@@ -159,7 +159,7 @@ const I = /* @__PURE__ */ k(F, [["render", D], ["__scopeId", "data-v-395fc568"]]
159
159
  version: "1.1",
160
160
  xmlns: "http://www.w3.org/2000/svg"
161
161
  },
162
- [...s[0] || (s[0] = [
162
+ s[0] || (s[0] = [
163
163
  v(
164
164
  "g",
165
165
  {
@@ -259,9 +259,9 @@ const I = /* @__PURE__ */ k(F, [["render", D], ["__scopeId", "data-v-395fc568"]]
259
259
  })
260
260
  ],
261
261
  -1
262
- /* CACHED */
262
+ /* HOISTED */
263
263
  )
264
- ])],
264
+ ]),
265
265
  4
266
266
  /* STYLE */
267
267
  ));
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ size?: number | string;
3
+ title?: string;
4
+ class?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number | string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,36 @@
1
+ import type { FileItem } from '../Attachment/attachment-types';
2
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ readonly fileItems: {
4
+ readonly type: import("vue").PropType<FileItem[]>;
5
+ readonly default: () => never[];
6
+ };
7
+ readonly context: {
8
+ readonly type: import("vue").PropType<"input" | "dialog">;
9
+ readonly validator: (value: string) => boolean;
10
+ };
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ remove: (file: FileItem<unknown, unknown>) => void;
13
+ download: (file: FileItem<unknown, unknown>, event: Event) => void;
14
+ "retry-upload": (file: FileItem<unknown, unknown>) => void;
15
+ preview: (file: FileItem<unknown, unknown>) => void;
16
+ "retry-download": (file: FileItem<unknown, unknown>) => void;
17
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
18
+ readonly fileItems: {
19
+ readonly type: import("vue").PropType<FileItem[]>;
20
+ readonly default: () => never[];
21
+ };
22
+ readonly context: {
23
+ readonly type: import("vue").PropType<"input" | "dialog">;
24
+ readonly validator: (value: string) => boolean;
25
+ };
26
+ }>> & Readonly<{
27
+ onRemove?: ((file: FileItem<unknown, unknown>) => any) | undefined;
28
+ onDownload?: ((file: FileItem<unknown, unknown>, event: Event) => any) | undefined;
29
+ "onRetry-upload"?: ((file: FileItem<unknown, unknown>) => any) | undefined;
30
+ onPreview?: ((file: FileItem<unknown, unknown>) => any) | undefined;
31
+ "onRetry-download"?: ((file: FileItem<unknown, unknown>) => any) | undefined;
32
+ }>, {
33
+ readonly fileItems: FileItem<unknown, unknown>[];
34
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
35
+ declare const _default: typeof __VLS_export;
36
+ export default _default;
@@ -0,0 +1,21 @@
1
+ import type { ExtractPropTypes, PropType } from 'vue';
2
+ import type { FileItem } from '../Attachment/attachment-types';
3
+ export declare const fileListProps: {
4
+ readonly fileItems: {
5
+ readonly type: PropType<FileItem[]>;
6
+ readonly default: () => never[];
7
+ };
8
+ readonly context: {
9
+ readonly type: PropType<"input" | "dialog">;
10
+ readonly validator: (value: string) => boolean;
11
+ };
12
+ };
13
+ export type FileListProps = ExtractPropTypes<typeof fileListProps>;
14
+ export declare const fileListEmits: {
15
+ remove: (file: FileItem) => boolean;
16
+ 'retry-upload': (file: FileItem) => boolean;
17
+ download: (file: FileItem, event: Event) => boolean;
18
+ preview: (file: FileItem) => boolean;
19
+ 'retry-download': (file: FileItem) => boolean;
20
+ };
21
+ export type FileListEmits = typeof fileListEmits;