@epam/ai-dial-ui-kit 0.13.0-dev.20 → 0.13.0-dev.23
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-Cj7iZBZc.js → JsonEditor-BmDaIGpA.js} +1 -1
- package/dist/{JsonEditor-YI7-ZfhY.cjs → JsonEditor-DTssBtfu.cjs} +1 -1
- package/dist/{MarkdownEditor-B8-eZ1Ii.cjs → MarkdownEditor-CSc6mQFa.cjs} +1 -1
- package/dist/{MarkdownEditor-D9NNkira.js → MarkdownEditor-CY0NvuQZ.js} +1 -1
- package/dist/components-manifest.json +85 -43
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +165 -154
- package/dist/{index-CABQ5KGr.js → index-BTXhfGmi.js} +6797 -6644
- package/dist/{index-CC8FUZdJ.cjs → index-COd_ZMPS.cjs} +29 -29
- package/dist/index.css +2 -2
- package/dist/src/components/Button/ButtonWrappers.d.ts +0 -15
- package/dist/src/components/FabButton/FabButton.d.ts +3 -3
- package/dist/src/components/New/Button/Button.d.ts +50 -0
- package/dist/src/components/New/Button/ButtonWrappers.d.ts +83 -0
- package/dist/src/components/New/Button/__tests__/utils.spec.d.ts +1 -0
- package/dist/src/components/New/Button/constants.d.ts +2 -0
- package/dist/src/components/New/Button/utils.d.ts +2 -0
- package/dist/src/components/New/Calendar/constants.d.ts +5 -5
- package/dist/src/components/New/IconButton/IconButton.d.ts +43 -0
- package/dist/src/components/New/IconButton/IconButtonWrappers.d.ts +70 -0
- package/dist/src/components/New/Notification/constants.d.ts +1 -1
- package/dist/src/index.d.ts +10 -5
- package/dist/src/types/button.d.ts +1 -0
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -60,13 +60,10 @@ export { DialBreadcrumbItem } from './components/Breadcrumb/BreadcrumbItem';
|
|
|
60
60
|
export { DialButton } from './components/Button/Button';
|
|
61
61
|
export { DialIconButton } from './components/IconButton/IconButton';
|
|
62
62
|
export type { DialIconButtonProps } from './components/IconButton/IconButton';
|
|
63
|
-
export { DialDangerButton, DialNeutralButton, DialPrimaryButton, DialGhostButton, DialLinkButton,
|
|
64
|
-
export type { DialRoundedButtonProps } from './components/Button/ButtonWrappers';
|
|
63
|
+
export { DialDangerButton, DialNeutralButton, DialPrimaryButton, DialGhostButton, DialLinkButton, } from './components/Button/ButtonWrappers';
|
|
65
64
|
export { DialDangerIconButton, DialGhostIconButton, DialNeutralIconButton, DialPrimaryIconButton, DialSecondaryIconButton, DialSuccessIconButton, DialTertiaryIconButton, } from './components/IconButton/IconButtonWrappers';
|
|
66
65
|
export { DialCloseButton } from './components/CloseButton/CloseButton';
|
|
67
66
|
export { DialRemoveButton } from './components/RemoveButton/RemoveButton';
|
|
68
|
-
export { DialFabButton } from './components/FabButton/FabButton';
|
|
69
|
-
export type { DialFabButtonProps } from './components/FabButton/FabButton';
|
|
70
67
|
export { DialTextarea } from './components/Textarea/Textarea';
|
|
71
68
|
export { DialTooltip } from './components/Tooltip/Tooltip';
|
|
72
69
|
export type { DialTooltipProps } from './components/Tooltip/Tooltip';
|
|
@@ -103,7 +100,7 @@ export { DialFileManager } from './components/FileManager/FileManager';
|
|
|
103
100
|
export type { FileManagerGridRow } from './components/FileManager/FileManagerContext';
|
|
104
101
|
export type { GridOptions, ToolbarOptions, BulkActionsToolbarOptions, } from './components/FileManager/FileManager';
|
|
105
102
|
export { DialDestinationFolderPopup } from './components/FileManager/components/DestinationFolderPopup/DestinationFolderPopup';
|
|
106
|
-
export { DialFoldersTree } from './components/FileManager/components/FoldersTree/FoldersTree
|
|
103
|
+
export { DialFoldersTree } from './components/FileManager/components/FoldersTree/FoldersTree';
|
|
107
104
|
export { ButtonVariant, ButtonAppearance } from './types/button';
|
|
108
105
|
export { RadioGroupOrientation } from './types/radio-group';
|
|
109
106
|
export { PopupSize } from './types/popup';
|
|
@@ -158,3 +155,11 @@ export { Calendar } from './components/New/Calendar/Calendar';
|
|
|
158
155
|
export type { CalendarProps, CalendarValue, } from './components/New/Calendar/Calendar';
|
|
159
156
|
export { FolderPath } from './components/New/FolderPath/FolderPath';
|
|
160
157
|
export type { FolderPathProps } from './components/New/FolderPath/FolderPath';
|
|
158
|
+
export { DangerButton, GhostButton, LinkButton, NeutralButton, OutlinedButton, PrimaryButton, } from './components/New/Button/ButtonWrappers';
|
|
159
|
+
export { DangerIconButton, GhostIconButton, NeutralIconButton, PrimaryIconButton, } from './components/New/IconButton/IconButtonWrappers';
|
|
160
|
+
export { Button } from './components/New/Button/Button';
|
|
161
|
+
export { IconButton } from './components/New/IconButton/IconButton';
|
|
162
|
+
export type { ButtonProps } from './components/New/Button/Button';
|
|
163
|
+
export type { IconButtonProps } from './components/New/IconButton/IconButton';
|
|
164
|
+
export { FabButton } from './components/FabButton/FabButton';
|
|
165
|
+
export type { FabButtonProps } from './components/FabButton/FabButton';
|