@epam/ai-dial-ui-kit 0.9.0 → 0.10.0-dev.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.
@@ -1,22 +1,22 @@
1
1
  {
2
- "version": "0.9.0",
3
- "generatedAt": "2026-04-29T08:28:44.352Z",
2
+ "version": "0.10.0-dev.1",
3
+ "generatedAt": "2026-04-30T14:54:17.430Z",
4
4
  "kit": {
5
5
  "name": "@epam/ai-dial-ui-kit",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",
7
7
  "installation": "npm install @epam/ai-dial-ui-kit",
8
8
  "cssImport": "import '@epam/ai-dial-ui-kit/styles.css'",
9
9
  "peerDependencies": {
10
- "@floating-ui/react": "^0.27.16",
11
- "@modelcontextprotocol/sdk": "^1.12.0",
10
+ "@floating-ui/react": "^0.27.19",
11
+ "@modelcontextprotocol/sdk": "^1.29.0",
12
12
  "@monaco-editor/react": "^4.7.0",
13
- "@tabler/icons-react": "^3.36.1",
14
- "@uiw/react-markdown-preview": "^5.1.5",
15
- "@uiw/react-md-editor": "^4.0.11",
13
+ "@tabler/icons-react": "^3.41.1",
14
+ "@uiw/react-markdown-preview": "^5.2.0",
15
+ "@uiw/react-md-editor": "^4.1.0",
16
16
  "classnames": "^2.5.1",
17
- "monaco-editor": "^0.52.2",
18
- "react": "^19.1.0",
19
- "react-dom": "^19.1.0"
17
+ "monaco-editor": "^0.55.1",
18
+ "react": "^19.2.5",
19
+ "react-dom": "^19.2.5"
20
20
  },
21
21
  "setupNotes": "## Next.js Integration\n1. Install the package and peer dependencies that are not currently in your project\n``` bash\nnpm install @epam/ai-dial-ui-kit\nnpm install react react-dom @tabler/icons-react classnames\nnpm install @floating-ui/react monaco-editor @monaco-editor/react\n```\n\n2. Import style in the root layout of the project:\n\n```tsx\n// app/layout.tsx\nimport \"@epam/ai-dial-ui-kit/styles.css\";\n```\n\n3. Usage example\n\n```tsx\n// app/page.tsx\n\"use client\";\nimport { DialPrimaryButton } from \"@epam/ai-dial-ui-kit\";\n\nexport default function Home() {\n return (\n <div className=\"w-full h-full flex flex-col gap-3 items-center justify-center\">\n <h1>Test library</h1>\n <DialPrimaryButton onClick={() => alert('Hello AI DIAL!')} />\n </div>\n );\n}\n```\nSee \"🎨 Theming & Customization\" section in README."
22
22
  },