@epam/ai-dial-ui-kit 0.13.0-dev.19 → 0.13.0-dev.21
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-Dx8Nqoi0.js → JsonEditor-DJ1uusmG.js} +1 -1
- package/dist/{JsonEditor-CA7NiwCF.cjs → JsonEditor-DTssBtfu.cjs} +1 -1
- package/dist/{MarkdownEditor-CGYu0816.cjs → MarkdownEditor-CSc6mQFa.cjs} +1 -1
- package/dist/{MarkdownEditor-ChL36jsG.js → MarkdownEditor-DGbOtQT4.js} +1 -1
- package/dist/components-manifest.json +219 -43
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +172 -151
- package/dist/{index-nXM5jxpr.cjs → index-COd_ZMPS.cjs} +30 -30
- package/dist/{index-Oyo4CYlW.js → index-CenSNlib.js} +6855 -6692
- 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 +27 -7
- package/dist/src/types/button.d.ts +1 -0
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { DialAccordion } from './components/Accordion/Accordion';
|
|
|
17
17
|
export type { DialAccordionProps } from './components/Accordion/Accordion';
|
|
18
18
|
export { DialIcon } from './components/Icon/Icon';
|
|
19
19
|
export { DialNotification } from './components/Notification/Notification.tsx';
|
|
20
|
+
export type { DialNotificationProps } from './components/Notification/Notification.tsx';
|
|
20
21
|
export { DialLoader } from './components/Loader/Loader';
|
|
21
22
|
export { DialSpinner } from './components/Spinner/Spinner';
|
|
22
23
|
export type { DialSpinnerProps } from './components/Spinner/Spinner';
|
|
@@ -38,6 +39,7 @@ export { DialTag } from './components/Tag/Tag';
|
|
|
38
39
|
export { DialEllipsisTooltip } from './components/EllipsisTooltip/EllipsisTooltip';
|
|
39
40
|
export { DialDraggableItem } from './components/DraggableItem/DraggableItem';
|
|
40
41
|
export { DialFileIcon } from './components/FileIcon/FileIcon';
|
|
42
|
+
export type { DialFileIconProps } from './components/FileIcon/FileIcon';
|
|
41
43
|
export { DialFormItem } from './components/FormItem/FormItem';
|
|
42
44
|
export { DialSharedEntityIndicator } from './components/SharedEntityIndicator/SharedEntityIndicator';
|
|
43
45
|
export { DialFileName } from './components/FileName/FileName';
|
|
@@ -46,21 +48,29 @@ export { DialResizableContainer } from './components/ResizableContainer/Resizabl
|
|
|
46
48
|
export { DialConditionalResizableContainer } from './components/ResizableContainer/ConditionalResizableContainer';
|
|
47
49
|
export { DialSkeleton } from './components/Skeleton/Skeleton';
|
|
48
50
|
export { DialGrid } from './components/Grid/Grid';
|
|
51
|
+
export type { DialGridProps } from './components/Grid/Grid';
|
|
52
|
+
export { DialDateCellRenderer } from './components/Grid/renderers/DateCellRenderer';
|
|
53
|
+
export type { DateValue as DialGridDateValue, DialDateCellRendererProps, } from './components/Grid/renderers/DateCellRenderer';
|
|
54
|
+
export { DEFAULT_DATE_FORMAT_OPTIONS as DEFAULT_GRID_DATE_FORMAT_OPTIONS, DEFAULT_LOCALE as DEFAULT_GRID_DATE_LOCALE, } from './components/Grid/renderers/constants';
|
|
55
|
+
export { convertToDate as convertGridDateToDate } from './components/Grid/renderers/utils';
|
|
49
56
|
export { DialTabs } from './components/Tabs/Tabs';
|
|
50
57
|
export { DialBreadcrumb } from './components/Breadcrumb/Breadcrumb';
|
|
58
|
+
export type { DialBreadcrumbProps } from './components/Breadcrumb/Breadcrumb';
|
|
51
59
|
export { DialBreadcrumbItem } from './components/Breadcrumb/BreadcrumbItem';
|
|
52
60
|
export { DialButton } from './components/Button/Button';
|
|
53
61
|
export { DialIconButton } from './components/IconButton/IconButton';
|
|
54
62
|
export type { DialIconButtonProps } from './components/IconButton/IconButton';
|
|
55
|
-
export { DialDangerButton, DialNeutralButton, DialPrimaryButton, DialGhostButton, DialLinkButton,
|
|
56
|
-
export type { DialRoundedButtonProps } from './components/Button/ButtonWrappers';
|
|
63
|
+
export { DialDangerButton, DialNeutralButton, DialPrimaryButton, DialGhostButton, DialLinkButton, } from './components/Button/ButtonWrappers';
|
|
57
64
|
export { DialDangerIconButton, DialGhostIconButton, DialNeutralIconButton, DialPrimaryIconButton, DialSecondaryIconButton, DialSuccessIconButton, DialTertiaryIconButton, } from './components/IconButton/IconButtonWrappers';
|
|
58
65
|
export { DialCloseButton } from './components/CloseButton/CloseButton';
|
|
59
66
|
export { DialRemoveButton } from './components/RemoveButton/RemoveButton';
|
|
60
|
-
export { DialFabButton } from './components/FabButton/FabButton';
|
|
61
|
-
export type { DialFabButtonProps } from './components/FabButton/FabButton';
|
|
62
67
|
export { DialTextarea } from './components/Textarea/Textarea';
|
|
63
68
|
export { DialTooltip } from './components/Tooltip/Tooltip';
|
|
69
|
+
export type { DialTooltipProps } from './components/Tooltip/Tooltip';
|
|
70
|
+
export { DialTooltipContainer } from './components/Tooltip/TooltipContainer';
|
|
71
|
+
export { DialTooltipContent } from './components/Tooltip/TooltipContent';
|
|
72
|
+
export { DialTooltipTrigger } from './components/Tooltip/TooltipTrigger';
|
|
73
|
+
export type { DialTooltipContainerOptions } from './components/Tooltip/TooltipContext';
|
|
64
74
|
export { DialSwitch } from './components/Switch/Switch';
|
|
65
75
|
export { DialSegmentedControl } from './components/SegmentedControl/SegmentedControl';
|
|
66
76
|
export type { DialSegmentedControlProps } from './components/SegmentedControl/SegmentedControl';
|
|
@@ -74,6 +84,7 @@ export type { DialInputProps } from './components/Input/Input';
|
|
|
74
84
|
export { DialNumberInput } from './components/NumberInput/NumberInput';
|
|
75
85
|
export { DialPasswordInput } from './components/PasswordInput/PasswordInput';
|
|
76
86
|
export { DialSearch } from './components/Search/Search';
|
|
87
|
+
export type { DialSearchProps } from './components/Search/Search';
|
|
77
88
|
export { DialInputPopup } from './components/InputPopup/InputPopup';
|
|
78
89
|
export { DialAutocompleteInputValue } from './components/AutocompleteInput/AutocompleteInputValue';
|
|
79
90
|
export { DialTagInput } from './components/TagInput/TagInput';
|
|
@@ -89,14 +100,14 @@ export { DialFileManager } from './components/FileManager/FileManager';
|
|
|
89
100
|
export type { FileManagerGridRow } from './components/FileManager/FileManagerContext';
|
|
90
101
|
export type { GridOptions, ToolbarOptions, BulkActionsToolbarOptions, } from './components/FileManager/FileManager';
|
|
91
102
|
export { DialDestinationFolderPopup } from './components/FileManager/components/DestinationFolderPopup/DestinationFolderPopup';
|
|
92
|
-
export { DialFoldersTree } from './components/FileManager/components/FoldersTree/FoldersTree
|
|
103
|
+
export { DialFoldersTree } from './components/FileManager/components/FoldersTree/FoldersTree';
|
|
93
104
|
export { ButtonVariant, ButtonAppearance } from './types/button';
|
|
94
105
|
export { RadioGroupOrientation } from './types/radio-group';
|
|
95
106
|
export { PopupSize } from './types/popup';
|
|
96
107
|
export { ConfirmationPopupVariant } from './types/confirmation-popup';
|
|
97
108
|
export { DropdownType, DropdownTrigger, DropdownItemType, } from './types/dropdown';
|
|
98
109
|
export { ElementSize } from './types/size';
|
|
99
|
-
export { TabOrientation, TabView } from './types/tab';
|
|
110
|
+
export { ScreenResolution, TabOrientation, TabView } from './types/tab';
|
|
100
111
|
export type { DialBreadcrumbPathItem } from './models/breadcrumb';
|
|
101
112
|
export { FormItemOrientation } from './types/form-item';
|
|
102
113
|
export { SelectSize, SelectVariant } from './types/select';
|
|
@@ -106,7 +117,8 @@ export { DialItemType } from './types/item';
|
|
|
106
117
|
export { ResizableContainerSide } from './types/resizable-container';
|
|
107
118
|
export { DialSkeletonVariant, DialSkeletonAvatarSize, DialSkeletonAvatarShape, } from './types/skeleton';
|
|
108
119
|
export { useDialFileManagerTabs } from './components/FileManager/hooks/use-file-manager-tabs';
|
|
109
|
-
export { useEditableItem } from './hooks/use-editable-item';
|
|
120
|
+
export { EDITABLE_CONTAINER_ATTRIBUTE, editableContainerProps, useEditableItem, } from './hooks/use-editable-item';
|
|
121
|
+
export type { UseEditableItemOptions } from './hooks/use-editable-item';
|
|
110
122
|
export { FileManagerProvider } from './components/FileManager/FileManagerProvider';
|
|
111
123
|
export { useFileManagerContext } from './components/FileManager/hooks/use-file-manager-context';
|
|
112
124
|
export { StepStatus } from './models/step';
|
|
@@ -143,3 +155,11 @@ export { Calendar } from './components/New/Calendar/Calendar';
|
|
|
143
155
|
export type { CalendarProps, CalendarValue, } from './components/New/Calendar/Calendar';
|
|
144
156
|
export { FolderPath } from './components/New/FolderPath/FolderPath';
|
|
145
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 as DialFabButton } from './components/FabButton/FabButton';
|
|
165
|
+
export type { FabButtonProps as DialFabButtonProps } from './components/FabButton/FabButton';
|