@epam/ai-dial-ui-kit 0.5.0-rc.98 → 0.5.0
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/dist/dial-ui-kit.cjs.js +28 -28
- package/dist/dial-ui-kit.es.js +8799 -8488
- package/dist/index.css +2 -2
- package/dist/src/components/Alert/Alert.d.ts +10 -4
- package/dist/src/components/Button/Button.d.ts +1 -1
- package/dist/src/components/Checkbox/Checkbox.d.ts +3 -4
- package/dist/src/components/CollapsibleSidebar/CollapsibleSidebar.d.ts +1 -1
- package/dist/src/components/ConfirmationPopup/ConfirmationPopup.d.ts +1 -1
- package/dist/src/components/EllipsisTooltip/EllipsisTooltip.d.ts +3 -1
- package/dist/src/components/Field/Field.d.ts +1 -1
- package/dist/src/components/FileIcon/FileIcon.d.ts +1 -1
- package/dist/src/components/FileManager/FileManager.d.ts +11 -4
- package/dist/src/components/FileManager/FileManagerContext.d.ts +8 -1
- package/dist/src/components/FileManager/components/DestinationFolderPopup/DestinationFolderPopup.d.ts +2 -2
- package/dist/src/components/FileManager/components/FileManagerDeleteConfirmationPopup/FileManagerDeleteConfirmationPopup.d.ts +1 -1
- package/dist/src/components/FileManager/components/FileMetadataPopup/FileMetadataPopup.d.ts +2 -2
- package/dist/src/components/FileManager/hooks/use-file-search.d.ts +22 -0
- package/dist/src/components/FileManager/hooks/use-file-upload.d.ts +4 -2
- package/dist/src/components/FileManager/hooks/use-grid-actions-column.d.ts +4 -1
- package/dist/src/components/FileManager/utils.d.ts +2 -0
- package/dist/src/components/FormItem/FormItem.d.ts +1 -1
- package/dist/src/components/Grid/Grid.d.ts +3 -1
- package/dist/src/components/Grid/hooks/use-grid-selection.d.ts +2 -1
- package/dist/src/components/LabelledText/LabelledText.d.ts +2 -0
- package/dist/src/components/Popup/Popup.d.ts +7 -3
- package/dist/src/components/RadioButton/RadioButton.d.ts +1 -1
- package/dist/src/components/Search/Search.d.ts +3 -0
- package/dist/src/components/SharedEntityIndicator/SharedEntityIndicator.d.ts +2 -2
- package/dist/src/components/Switch/Switch.d.ts +2 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/src/models/file-manager.d.ts +1 -0
- package/dist/src/models/tab.d.ts +1 -1
- package/dist/src/types/file-manager.d.ts +1 -0
- package/dist/src/types/form-item.d.ts +2 -2
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -83,5 +83,5 @@ export type { DropdownItem } from './models/dropdown';
|
|
|
83
83
|
export type { DialModifiedEntity } from './models/base-entity';
|
|
84
84
|
export type { DialFile } from './models/file';
|
|
85
85
|
export { DialFileNodeType, DialFilePermission, DialFileResourceType, } from './models/file';
|
|
86
|
-
export { type DialCopiedItem, type DialDeletedItem, type DialUploadFileItem, type DialFileManagerActionsRef, } from './models/file-manager';
|
|
86
|
+
export { type DialCopiedItem, type DialDeletedItem, type DialUploadFileItem, type DialFileManagerActionsRef, type DialFileAcceptType, } from './models/file-manager';
|
|
87
87
|
export { mergeClasses } from './utils/merge-classes';
|
package/dist/src/models/tab.d.ts
CHANGED
|
@@ -22,11 +22,11 @@ export declare enum FormItemOrientation {
|
|
|
22
22
|
* @param orientation - Layout orientation for the form item
|
|
23
23
|
*/
|
|
24
24
|
export interface DialFormItemBaseProps {
|
|
25
|
-
label?:
|
|
25
|
+
label?: ReactNode;
|
|
26
26
|
optional?: boolean;
|
|
27
27
|
optionalText?: string;
|
|
28
28
|
description?: string;
|
|
29
|
-
error?:
|
|
29
|
+
error?: ReactNode;
|
|
30
30
|
captionDescription?: string;
|
|
31
31
|
readonly?: boolean;
|
|
32
32
|
orientation?: FormItemOrientation;
|