@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,2 @@
1
+ import McFileList from './FileList.vue.ts';
2
+ export { McFileList };