@epam/ai-dial-ui-kit 0.13.0-dev.26 → 0.13.0-dev.27

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,6 +1,6 @@
1
1
  {
2
- "version": "0.13.0-dev.26",
3
- "generatedAt": "2026-08-03T15:18:49.408Z",
2
+ "version": "0.13.0-dev.27",
3
+ "generatedAt": "2026-08-04T14:54:31.181Z",
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",
@@ -3698,7 +3698,7 @@
3698
3698
  {
3699
3699
  "name": "DialFileManager",
3700
3700
  "category": "FileManager",
3701
- "description": "File Manager layout with a collapsible folders tree, breadcrumb/search header, and a data grid.\naliases: FileExplorer|FileBrowser\n\nFeatures:\n- Global `path` drives both the breadcrumb trail and the visible folder in the grid.\n- The grid shows children of the current folder. When a search query is present, it scans all nested descendants.\n- Pluggable tree, navigation panel, and grid behaviors via `treeOptions`, `navigationPanelOptions`, and `gridOptions`.\n- Optional filters toggle via `gridOptions.filterable` (default `true`).\n- Supports bulk actions toolbar when items are selected.",
3701
+ "description": "File Manager layout with a collapsible folders tree, breadcrumb/search header, and a data grid.\naliases: FileExplorer|FileBrowser",
3702
3702
  "props": [
3703
3703
  {
3704
3704
  "name": "path",
@@ -4180,7 +4180,7 @@
4180
4180
  {
4181
4181
  "name": "DialDestinationFolderPopup",
4182
4182
  "category": "FileManager/components",
4183
- "description": "DestinationFolderPopup\naliases: FolderSelector|PathChooser\n\nA popup dialog for selecting a destination folder when copying or moving files.\nDisplays a File Manager interface with a footer containing action buttons and\na toggle for showing hidden files.",
4183
+ "description": "DestinationFolderPopup\naliases: FolderSelector|PathChooser",
4184
4184
  "props": [],
4185
4185
  "examples": [
4186
4186
  "<DestinationFolderPopup\n open={isOpen}\n onClose={handleClose}\n onConfirm={handleConfirm}\n mode=\"copy\"\n title=\"Copy 3 files\"\n items={files}\n rootItem={rootFolder}\n path={currentPath}\n onPathChange={setCurrentPath}\n/>"
@@ -4190,7 +4190,7 @@
4190
4190
  {
4191
4191
  "name": "DialFoldersTree",
4192
4192
  "category": "Data Display",
4193
- "description": "DialFoldersTree — A hierarchical folder tree component with nested expand/collapse support, selection highlighting,\nand optional file display.\n\nProvides a fully interactive, recursive folder structure with:\n- Expandable and collapsible items\n- Optional file visibility\n- Loading state indicators for specific paths\n- Inline renaming support for folders or files\n- Multi-item selection highlighting\n- Context menu integration via `DialDropdown`\n- Recursive rendering with indentation and icons\n- Customizable empty state (title, description, and icon)",
4193
+ "description": "DialFoldersTree — A hierarchical folder tree component with nested expand/collapse support, selection highlighting,\nand optional file display.",
4194
4194
  "props": [
4195
4195
  {
4196
4196
  "name": "items",
@@ -208,6 +208,8 @@ export interface DialFileManagerProps {
208
208
  * File Manager layout with a collapsible folders tree, breadcrumb/search header, and a data grid.
209
209
  * aliases: FileExplorer|FileBrowser
210
210
  *
211
+ * @deprecated Import `DialFileManager` from `@epam/ai-dial-react-file-manager` instead.
212
+ *
211
213
  * Features:
212
214
  * - Global `path` drives both the breadcrumb trail and the visible folder in the grid.
213
215
  * - The grid shows children of the current folder. When a search query is present, it scans all nested descendants.
@@ -16,5 +16,6 @@ export interface FileManagerProviderProps extends Omit<DialFileManagerProps, 'ch
16
16
  * - computed grid rows
17
17
  * - new actions
18
18
  *
19
+ * @deprecated Import `FileManagerProvider` from `@epam/ai-dial-react-file-manager` instead.
19
20
  */
20
21
  export declare const FileManagerProvider: FC<FileManagerProviderProps>;
@@ -26,6 +26,8 @@ export interface DestinationFolderPopupProps extends DialFileManagerProps {
26
26
  * DestinationFolderPopup
27
27
  * aliases: FolderSelector|PathChooser
28
28
  *
29
+ * @deprecated Import `DialDestinationFolderPopup` from `@epam/ai-dial-react-file-manager` instead.
30
+ *
29
31
  * A popup dialog for selecting a destination folder when copying or moving files.
30
32
  * Displays a File Manager interface with a footer containing action buttons and
31
33
  * a toggle for showing hidden files.
@@ -33,6 +33,8 @@ export interface DialFoldersTreeProps {
33
33
  * DialFoldersTree — A hierarchical folder tree component with nested expand/collapse support, selection highlighting,
34
34
  * and optional file display.
35
35
  *
36
+ * @deprecated Import `DialFoldersTree` from `@epam/ai-dial-react-file-manager` instead.
37
+ *
36
38
  * Provides a fully interactive, recursive folder structure with:
37
39
  * - Expandable and collapsible items
38
40
  * - Optional file visibility
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * Hook to read the File Manager context.
3
3
  * Throws if used outside of the provider.
4
+ *
5
+ * @deprecated Import `useFileManagerContext` from `@epam/ai-dial-react-file-manager` instead.
4
6
  */
5
7
  export declare const useFileManagerContext: () => import('../FileManagerContext').FileManagerContextValue;
@@ -1,5 +1,8 @@
1
1
  import { TabModel } from '../../../models/tab';
2
2
  import { DialFileManagerTabs } from '../../../types/file-manager';
3
+ /**
4
+ * @deprecated Import `useDialFileManagerTabs` from `@epam/ai-dial-react-file-manager` instead.
5
+ */
3
6
  export declare const useDialFileManagerTabs: (tabLabels?: Record<DialFileManagerTabs, string>, initialTab?: DialFileManagerTabs) => {
4
7
  activeTab: DialFileManagerTabs;
5
8
  handleTabChange: (tab: DialFileManagerTabs) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.13.0-dev.26",
3
+ "version": "0.13.0-dev.27",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",
@@ -73,7 +73,7 @@
73
73
  "shell-quote": "1.10.0",
74
74
  "esbuild": "0.28.1",
75
75
  "undici": "^6.27.0",
76
- "brace-expansion": "^5.0.8",
76
+ "brace-expansion": "^5.0.9",
77
77
  "minimatch": "^10.2.5"
78
78
  },
79
79
  "dependencies": {