@matechat/core 1.11.0-alpha.1 → 1.11.0-alpha.2
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.
- package/Toolbar/index.d.ts +1 -2
- package/Toolbar/index.js +0 -1
- package/index.d.ts +2 -2
- package/mate-chat.js +1 -2
- package/package.json +1 -1
package/Toolbar/index.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import McToolbar from './Toolbar.vue.ts';
|
|
2
2
|
import McCopyIcon from './icon/CopyIcon.vue.ts';
|
|
3
3
|
import McDeleteIcon from './icon/DeleteIcon.vue.ts';
|
|
4
|
-
import McDislikeIcon from './icon/DislikeIcon.vue.ts';
|
|
5
4
|
import McLikeIcon from './icon/LikeIcon.vue.ts';
|
|
6
5
|
import McRefreshIcon from './icon/RefreshIcon.vue.ts';
|
|
7
6
|
import McShareIcon from './icon/ShareIcon.vue.ts';
|
|
8
7
|
export * from './toolbar.types';
|
|
9
|
-
export { McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon,
|
|
8
|
+
export { McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon, McRefreshIcon, McShareIcon, };
|
package/Toolbar/index.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ import { useMcI18n, McLocale } from './Locale';
|
|
|
10
10
|
import { McMarkdownCard } from './MarkdownCard';
|
|
11
11
|
import { McMention } from './Mention';
|
|
12
12
|
import { McPrompt } from './Prompt';
|
|
13
|
-
import { McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon,
|
|
14
|
-
export { McAttachment, McBubble, McFileList, McHeader, McInput, McIntroduction, McLayoutAside, McLayoutContent, McLayoutHeader, McLayout, McLayoutSender, McList, useMcI18n, McLocale, McMarkdownCard, McMention, McPrompt, McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon,
|
|
13
|
+
import { McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon, McRefreshIcon, McShareIcon } from './Toolbar';
|
|
14
|
+
export { McAttachment, McBubble, McFileList, McHeader, McInput, McIntroduction, McLayoutAside, McLayoutContent, McLayoutHeader, McLayout, McLayoutSender, McList, useMcI18n, McLocale, McMarkdownCard, McMention, McPrompt, McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon, McRefreshIcon, McShareIcon };
|
|
15
15
|
declare const _default: {
|
|
16
16
|
install(app: any): void;
|
|
17
17
|
};
|
package/mate-chat.js
CHANGED
|
@@ -10,7 +10,7 @@ import { useMcI18n, McLocale } from './Locale';
|
|
|
10
10
|
import { McMarkdownCard } from './MarkdownCard';
|
|
11
11
|
import { McMention } from './Mention';
|
|
12
12
|
import { McPrompt } from './Prompt';
|
|
13
|
-
import { McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon,
|
|
13
|
+
import { McToolbar, McCopyIcon, McDeleteIcon, McLikeIcon, McRefreshIcon, McShareIcon } from './Toolbar';
|
|
14
14
|
|
|
15
15
|
const installs = [
|
|
16
16
|
McAttachment,
|
|
@@ -50,7 +50,6 @@ export {
|
|
|
50
50
|
McCopyIcon,
|
|
51
51
|
McDeleteIcon,
|
|
52
52
|
McLikeIcon,
|
|
53
|
-
McDislikeIcon,
|
|
54
53
|
McRefreshIcon,
|
|
55
54
|
McShareIcon
|
|
56
55
|
};
|