reachat 2.0.2 → 2.1.0-alpha.10
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/dist/AppBar/AppBar.d.ts +1 -1
- package/dist/{CSVFileRenderer-fklKR5lg.js → CSVFileRenderer-BJ6YmtEo.js} +15 -14
- package/dist/CSVFileRenderer-BJ6YmtEo.js.map +1 -0
- package/dist/Chat.d.ts +3 -3
- package/dist/ChatBubble/ChatBubble.d.ts +1 -1
- package/dist/ChatContext.d.ts +2 -2
- package/dist/ChatInput/ChatInput.d.ts +24 -0
- package/dist/ChatInput/FileInput.d.ts +1 -1
- package/dist/{DefaultFileRenderer-BQ9xzbrH.js → DefaultFileRenderer-BVeS3GS1.js} +2 -2
- package/dist/DefaultFileRenderer-BVeS3GS1.js.map +1 -0
- package/dist/ImageFileRenderer-C8tVW3I8.js.map +1 -1
- package/dist/Markdown/Markdown.d.ts +5 -0
- package/dist/Markdown/Table.d.ts +1 -1
- package/dist/Markdown/index.d.ts +2 -2
- package/dist/Markdown/plugins/remarkCve.d.ts +1 -1
- package/dist/PDFFileRenderer-BBn2EVrV.js +16 -0
- package/dist/PDFFileRenderer-BBn2EVrV.js.map +1 -0
- package/dist/SessionMessages/SessionEmpty.d.ts +1 -4
- package/dist/SessionMessages/SessionMessage/MessageFile/renderers/index.d.ts +1 -1
- package/dist/SessionMessages/SessionMessage/MessageFiles.d.ts +1 -1
- package/dist/SessionMessages/SessionMessage/MessageSources.d.ts +1 -1
- package/dist/SessionMessages/SessionMessage/SessionMessage.d.ts +4 -0
- package/dist/SessionMessages/SessionMessage/index.d.ts +2 -2
- package/dist/SessionMessages/SessionMessages.d.ts +9 -1
- package/dist/SessionMessages/index.d.ts +2 -2
- package/dist/SessionsList/index.d.ts +2 -2
- package/dist/docs.json +159 -20
- package/dist/{index-D7d92jbn.js → index-BIrmxgH5.js} +1326 -1308
- package/dist/index-BIrmxgH5.js.map +1 -0
- package/dist/index.css +8227 -850
- package/dist/index.d.ts +7 -6
- package/dist/index.js +33 -32
- package/dist/index.umd.cjs +1306 -1280
- package/dist/index.umd.cjs.map +1 -1
- package/dist/stories/Changelog.mdx +1 -1
- package/dist/stories/Chat.stories.tsx +5 -5
- package/dist/stories/ChatBubble.stories.tsx +3 -3
- package/dist/stories/Companion.stories.tsx +6 -6
- package/dist/stories/Console.stories.tsx +23 -23
- package/dist/stories/Integration.stories.tsx +2 -2
- package/dist/stories/Intro.mdx +1 -1
- package/dist/stories/assets/logo.svg +38 -19
- package/dist/stories/assets/paperclip.svg +4 -1
- package/dist/stories/assets/search.svg +5 -1
- package/dist/stories/examples.ts +20 -13
- package/dist/theme.d.ts +14 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +63 -47
- package/dist/CSVFileRenderer-fklKR5lg.js.map +0 -1
- package/dist/DefaultFileRenderer-BQ9xzbrH.js.map +0 -1
- package/dist/PDFFileRenderer-DQdFS2l6.js +0 -9
- package/dist/PDFFileRenderer-DQdFS2l6.js.map +0 -1
- package/dist/index-D7d92jbn.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
export * from './AppBar';
|
|
2
|
+
export * from './Chat';
|
|
3
|
+
export * from './ChatBubble';
|
|
4
|
+
export * from './ChatContext';
|
|
1
5
|
export * from './ChatInput';
|
|
6
|
+
export * from './Markdown';
|
|
2
7
|
export * from './SessionMessages';
|
|
3
|
-
export * from './Chat';
|
|
4
8
|
export * from './SessionsList';
|
|
5
|
-
export * from './types';
|
|
6
9
|
export * from './theme';
|
|
7
|
-
export * from './
|
|
8
|
-
export * from './
|
|
9
|
-
export * from './AppBar';
|
|
10
|
-
export * from './ChatBubble';
|
|
10
|
+
export * from './types';
|
|
11
|
+
export * from './utils';
|