@epam/statgpt-conversation-view 0.6.1 → 0.7.0-dev.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/index.js +6 -6
- package/index.mjs +2603 -2595
- package/package.json +6 -6
- package/utils/attachments/attachment-parser.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/statgpt-conversation-view",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0-dev.10",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"classnames": "^2.5.1",
|
|
7
7
|
"@epam/ai-dial-shared": "^0.43.3",
|
|
8
8
|
"@tabler/icons-react": "^3.34.1",
|
|
9
|
-
"@epam/statgpt-shared-toolkit": "0.
|
|
10
|
-
"@epam/statgpt-ui-components": "0.
|
|
11
|
-
"@epam/statgpt-sdmx-toolkit": "0.
|
|
9
|
+
"@epam/statgpt-shared-toolkit": "0.7.0-dev.10",
|
|
10
|
+
"@epam/statgpt-ui-components": "0.7.0-dev.10",
|
|
11
|
+
"@epam/statgpt-sdmx-toolkit": "0.7.0-dev.10",
|
|
12
12
|
"react-window": "^1.8.11",
|
|
13
13
|
"react-virtualized-auto-sizer": "^1.0.26",
|
|
14
14
|
"ag-grid-community": "33.3.2",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"@floating-ui/react": "^0.27.14",
|
|
17
17
|
"echarts": "^5.6.0",
|
|
18
18
|
"echarts-for-react": "^3.0.2",
|
|
19
|
-
"@epam/statgpt-dial-toolkit": "0.
|
|
19
|
+
"@epam/statgpt-dial-toolkit": "0.7.0-dev.10",
|
|
20
20
|
"react-markdown": "^10.1.0",
|
|
21
21
|
"remark-gfm": "^4.0.1",
|
|
22
|
-
"@epam/statgpt-conversation-list": "0.
|
|
22
|
+
"@epam/statgpt-conversation-list": "0.7.0-dev.10",
|
|
23
23
|
"flatpickr": "4.6.13",
|
|
24
24
|
"react-flatpickr": "^4.0.11",
|
|
25
25
|
"date-fns": "^4.1.0",
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { Attachment } from '@epam/ai-dial-shared';
|
|
2
2
|
import { Message } from '../../../../dial-toolkit/src/index';
|
|
3
|
+
import { CrossDatasetGridAttachmentType, CustomGridAttachment } from '../../models/attachments';
|
|
3
4
|
export declare const parseMessageAttachments: (message: Message) => Attachment[];
|
|
4
5
|
export declare function isUrlAttachment(attachment: Attachment): boolean;
|
|
5
6
|
export declare function isJsonAttachment(attachment: Attachment): boolean;
|
|
6
7
|
export declare function isMarkdownAttachment(attachment: Attachment): boolean;
|
|
7
8
|
export declare function isFileAttachment(attachment: Attachment): boolean;
|
|
8
9
|
export declare function isGridAttachment(attachment: Attachment): boolean;
|
|
9
|
-
export declare function isCustomGridAttachment(attachment: Attachment):
|
|
10
|
+
export declare function isCustomGridAttachment(attachment: Attachment): attachment is CustomGridAttachment;
|
|
10
11
|
export declare function isCustomChartAttachment(attachment: Attachment): boolean;
|
|
11
12
|
export declare function isChartAttachment(attachment: Attachment): boolean;
|
|
12
13
|
export declare function isCustomCodeSampleAttachment(attachment: Attachment): boolean;
|
|
13
|
-
export declare function isCrossDatasetGrid(attachment: Attachment):
|
|
14
|
+
export declare function isCrossDatasetGrid(attachment: Attachment): attachment is CrossDatasetGridAttachmentType;
|
|
14
15
|
export declare function isAnyGridAttachment(attachment: Attachment): boolean;
|
|
15
16
|
export declare function hasPythonCodeAttachment(attachments?: Attachment[]): boolean;
|