@epam/ai-dial-ui-kit 0.12.0-dev.17 → 0.12.0-dev.20
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/{JsonEditor-CxIcoOeU.js → JsonEditor-DOuvsPMc.js} +1 -1
- package/dist/{JsonEditor-DL9UD5sT.cjs → JsonEditor-D_UCu5UH.cjs} +1 -1
- package/dist/{MarkdownEditor-XXJ870Zn.js → MarkdownEditor-Cm21SYyL.js} +1 -1
- package/dist/{MarkdownEditor-CuUYDui3.cjs → MarkdownEditor-DEBJwArn.cjs} +1 -1
- package/dist/components-manifest.json +2 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +1 -1
- package/dist/{index-Bx260QXB.cjs → index-C1If7l2o.cjs} +24 -24
- package/dist/{index-BDvL_uU_.js → index-DyhIsKvB.js} +2674 -2666
- package/dist/src/components/ConfirmationPopup/constants.d.ts +1 -1
- package/dist/src/components/FileManager/errors.d.ts +3 -0
- package/dist/src/components/FileManager/hooks/use-folder-creation.d.ts +1 -0
- package/dist/src/components/FileManager/hooks/use-item-renaming.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonAppearance, ButtonVariant } from '../../types/button';
|
|
2
2
|
import { ConfirmationPopupVariant } from '../../types/confirmation-popup';
|
|
3
3
|
export declare const actionsBaseClassName = "flex justify-end gap-2 px-6 py-4 border-t border-tertiary";
|
|
4
|
-
export declare const descriptionBaseClassName = "text-secondary dial-small-150 px-6
|
|
4
|
+
export declare const descriptionBaseClassName = "text-secondary dial-small-150 px-6 pb-4";
|
|
5
5
|
export declare const defaultCancelLabel = "Cancel";
|
|
6
6
|
export declare const defaultConfirmLabel = "Ok";
|
|
7
7
|
export declare const variantConfig: Record<ConfirmationPopupVariant, {
|
|
@@ -4,6 +4,7 @@ export interface RenameValidationMessages {
|
|
|
4
4
|
emptyName?: string;
|
|
5
5
|
duplicateName?: string;
|
|
6
6
|
hiddenItemWarning?: string;
|
|
7
|
+
consecutiveDotsError?: string;
|
|
7
8
|
}
|
|
8
9
|
export declare const useItemRenaming: ({ items, onRenameValidate, validationMessages, onMoveToFiles, }: {
|
|
9
10
|
items?: DialFile[];
|