@epam/statgpt-conversation-view 0.2.0-rc.20 → 0.2.0-rc.21

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.
@@ -1,4 +1,3 @@
1
1
  export interface AdvanceViewStyles {
2
2
  isShowShare?: boolean;
3
- isShowAgency?: boolean;
4
3
  }
package/package.json CHANGED
@@ -1,15 +1,14 @@
1
1
  {
2
2
  "name": "@epam/statgpt-conversation-view",
3
- "version": "0.2.0-rc.20",
3
+ "version": "0.2.0-rc.21",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
- "react": "^19.2.1",
7
6
  "classnames": "^2.5.1",
8
7
  "@epam/ai-dial-shared": "^0.34.0",
9
8
  "@tabler/icons-react": "^3.34.1",
10
- "@epam/statgpt-shared-toolkit": "0.2.0-rc.20",
11
- "@epam/statgpt-ui-components": "0.2.0-rc.20",
12
- "@epam/statgpt-sdmx-toolkit": "0.2.0-rc.20",
9
+ "@epam/statgpt-shared-toolkit": "0.2.0-rc.21",
10
+ "@epam/statgpt-ui-components": "0.2.0-rc.21",
11
+ "@epam/statgpt-sdmx-toolkit": "0.2.0-rc.21",
13
12
  "react-window": "^1.8.11",
14
13
  "react-virtualized-auto-sizer": "^1.0.26",
15
14
  "ag-grid-community": "33.3.2",
@@ -17,14 +16,18 @@
17
16
  "@floating-ui/react": "^0.27.14",
18
17
  "echarts": "^5.6.0",
19
18
  "echarts-for-react": "^3.0.2",
20
- "@epam/statgpt-dial-toolkit": "0.2.0-rc.20",
19
+ "@epam/statgpt-dial-toolkit": "0.2.0-rc.21",
21
20
  "react-markdown": "^10.1.0",
22
21
  "remark-gfm": "^4.0.1",
23
- "@epam/statgpt-conversation-list": "0.2.0-rc.20",
22
+ "@epam/statgpt-conversation-list": "0.2.0-rc.21",
24
23
  "flatpickr": "4.6.13",
25
24
  "react-flatpickr": "^4.0.11",
26
25
  "date-fns": "^4.1.0",
27
- "lodash": "^4.17.23"
26
+ "lodash": "^4.17.23",
27
+ "tailwind-merge": "^3.4.0"
28
+ },
29
+ "peerDependencies": {
30
+ "react": "^19.2.1"
28
31
  },
29
32
  "exports": {
30
33
  ".": {
@@ -0,0 +1,2 @@
1
+ import { default as classNames } from 'classnames';
2
+ export declare function mergeClasses(...inputs: Parameters<typeof classNames>): string;