@epam/ai-dial-ui-kit 0.9.0-rc.4 → 0.9.0-rc.40
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/README.md +9 -2
- package/dist/components-manifest.json +4699 -0
- package/dist/dial-ui-kit.cjs.js +41 -36
- package/dist/dial-ui-kit.es.js +20818 -20220
- package/dist/index.css +2 -2
- package/dist/mcp-server.cjs +357 -0
- package/dist/src/components/Alert/Alert.d.ts +1 -0
- package/dist/src/components/Alert/constants.d.ts +1 -1
- package/dist/src/components/AutocompleteInput/AutocompleteInputValue.d.ts +8 -3
- package/dist/src/components/Breadcrumb/Breadcrumb.d.ts +1 -0
- package/dist/src/components/Breadcrumb/BreadcrumbItem.d.ts +1 -1
- package/dist/src/components/Breadcrumb/constants.d.ts +1 -1
- package/dist/src/components/Button/Button.d.ts +1 -0
- package/dist/src/components/ButtonDropdown/ButtonDropdown.d.ts +1 -0
- package/dist/src/components/CaptionText/CaptionText.d.ts +1 -0
- package/dist/src/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/src/components/CloseButton/CloseButton.d.ts +1 -0
- package/dist/src/components/CollapsibleSidebar/CollapsibleSidebar.d.ts +2 -0
- package/dist/src/components/ConfirmationPopup/ConfirmationPopup.d.ts +1 -0
- package/dist/src/components/DraggableItem/DraggableItem.d.ts +1 -0
- package/dist/src/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/src/components/EllipsisTooltip/EllipsisTooltip.d.ts +2 -0
- package/dist/src/components/FileIcon/FileIcon.d.ts +1 -0
- package/dist/src/components/FileManager/FileManager.d.ts +21 -14
- package/dist/src/components/FileManager/FileManagerContext.d.ts +5 -0
- package/dist/src/components/FileManager/FileManagerProvider.d.ts +1 -0
- package/dist/src/components/FileManager/FileManagerTooltip.d.ts +11 -0
- package/dist/src/components/FileManager/components/DestinationFolderPopup/DestinationFolderPopup.d.ts +2 -0
- package/dist/src/components/FileManager/hooks/use-file-download.d.ts +2 -1
- package/dist/src/components/FileManager/hooks/use-file-manager-columns.d.ts +1 -0
- package/dist/src/components/FileManager/hooks/use-file-upload.d.ts +13 -0
- package/dist/src/components/FileManager/hooks/use-grid-context-menu.d.ts +3 -1
- package/dist/src/components/FileManager/utils.d.ts +3 -0
- package/dist/src/components/FileManager/utils.spec.d.ts +1 -0
- package/dist/src/components/FileName/FileName.d.ts +2 -0
- package/dist/src/components/FolderName/FolderName.d.ts +2 -0
- package/dist/src/components/FormItem/FormItem.d.ts +1 -0
- package/dist/src/components/FormPopup/FormPopup.d.ts +1 -0
- package/dist/src/components/Grid/Grid.d.ts +2 -3
- package/dist/src/components/Icon/Icon.d.ts +1 -0
- package/dist/src/components/IconButton/IconButton.d.ts +1 -0
- package/dist/src/components/Input/Input.d.ts +1 -0
- package/dist/src/components/InputPopup/InputPopup.d.ts +7 -0
- package/dist/src/components/Label/Label.d.ts +1 -0
- package/dist/src/components/LabelledText/LabelledText.d.ts +1 -0
- package/dist/src/components/LoadFileArea/LoadFileArea.d.ts +2 -0
- package/dist/src/components/LoadFileArea/LoadFileAreaField.d.ts +2 -0
- package/dist/src/components/Loader/Loader.d.ts +1 -0
- package/dist/src/components/NoDataContent/NoDataContent.d.ts +1 -0
- package/dist/src/components/NumberInput/NumberInput.d.ts +8 -0
- package/dist/src/components/PasswordInput/PasswordInput.d.ts +1 -0
- package/dist/src/components/Popup/Popup.d.ts +1 -0
- package/dist/src/components/RadioButton/RadioButton.d.ts +1 -0
- package/dist/src/components/RadioGroup/RadioGroup.d.ts +1 -0
- package/dist/src/components/RadioGroupPopupField/RadioGroupPopupField.d.ts +1 -0
- package/dist/src/components/RemoveButton/RemoveButton.d.ts +1 -0
- package/dist/src/components/ResizableContainer/ConditionalResizableContainer.d.ts +1 -0
- package/dist/src/components/ResizableContainer/ResizableContainer.d.ts +2 -0
- package/dist/src/components/Search/Search.d.ts +2 -0
- package/dist/src/components/Select/Select.d.ts +2 -0
- package/dist/src/components/Select/constants.d.ts +2 -2
- package/dist/src/components/SelectField/SelectField.d.ts +1 -0
- package/dist/src/components/SharedEntityIndicator/SharedEntityIndicator.d.ts +1 -0
- package/dist/src/components/Skeleton/Skeleton.d.ts +1 -0
- package/dist/src/components/Steps/Steps.d.ts +1 -0
- package/dist/src/components/Switch/Switch.d.ts +1 -0
- package/dist/src/components/Tabs/Tabs.d.ts +2 -0
- package/dist/src/components/Tag/Tag.d.ts +2 -0
- package/dist/src/components/TagInput/TagInput.d.ts +9 -1
- package/dist/src/components/Textarea/Textarea.d.ts +1 -0
- package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
- package/dist/src/constants/storybook/input.d.ts +3 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/mcp/generate-manifest.d.ts +1 -0
- package/dist/src/mcp/server.d.ts +1 -0
- package/dist/src/mcp/types.d.ts +54 -0
- package/dist/src/types/file-manager.d.ts +4 -2
- package/package.json +17 -3
package/README.md
CHANGED
|
@@ -32,6 +32,7 @@ The AI DIAL UI Kit is an production-ready React component library designed to st
|
|
|
32
32
|
- [🚀 Usage in Projects](#-usage-in-projects)
|
|
33
33
|
- [Next.js Integration](#nextjs-integration)
|
|
34
34
|
- [Tree Shaking](#tree-shaking)
|
|
35
|
+
- [🤖 AI Agent MCP Server](#-ai-agent-mcp-server)
|
|
35
36
|
- [🤝 Contributing](#-contributing)
|
|
36
37
|
- [🔒 Security](#-security)
|
|
37
38
|
- [📄 License](#-license)
|
|
@@ -156,11 +157,11 @@ The library uses CSS custom properties for comprehensive theming. Override these
|
|
|
156
157
|
:root {
|
|
157
158
|
/* Background layers */
|
|
158
159
|
--bg-layer-0: #000000;
|
|
159
|
-
--bg-layer-1: #
|
|
160
|
+
--bg-layer-1: #0C101D;
|
|
160
161
|
--bg-layer-2: #171B21;
|
|
161
162
|
|
|
162
163
|
/* Text colors */
|
|
163
|
-
--text-primary:
|
|
164
|
+
--text-primary: ##EEF1F7;
|
|
164
165
|
--text-secondary: #9CA3AF;
|
|
165
166
|
--text-tertiary: #6B7280;
|
|
166
167
|
...
|
|
@@ -269,6 +270,12 @@ import '@epam/ai-dial-ui-kit/styles.css'; // Import styles separately
|
|
|
269
270
|
import * as UIKit from '@epam/ai-dial-ui-kit';
|
|
270
271
|
```
|
|
271
272
|
|
|
273
|
+
## 🤖 AI Agent MCP Server
|
|
274
|
+
|
|
275
|
+
The AI DIAL UI Kit includes a built-in **MCP (Model Context Protocol) server** that enables AI agents to discover components, types, hooks, and utilities programmatically. This allows AI assistants to generate accurate, type-safe component code without hallucination.
|
|
276
|
+
|
|
277
|
+
For setup, configuration, and detailed resources, see the [MCP Server Guide](./src/mcp/README.md).
|
|
278
|
+
|
|
272
279
|
## 🤝 Contributing
|
|
273
280
|
|
|
274
281
|
We welcome contributions! Please see our [Contributing Guide](./CONTRIBUTING.md) for details on:
|