@epam/ai-dial-ui-kit 0.13.0-dev.18 → 0.13.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-DVPADGwg.js → JsonEditor-Cj7iZBZc.js} +1 -1
- package/dist/{JsonEditor-udqMOaLs.cjs → JsonEditor-YI7-ZfhY.cjs} +1 -1
- package/dist/{MarkdownEditor-A4q5U3Jn.cjs → MarkdownEditor-B8-eZ1Ii.cjs} +1 -1
- package/dist/{MarkdownEditor-DKMJmE5N.js → MarkdownEditor-D9NNkira.js} +1 -1
- package/dist/components-manifest.json +146 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +151 -141
- package/dist/{index-DU_a_6qa.js → index-CABQ5KGr.js} +3575 -3548
- package/dist/{index-OEabRekp.cjs → index-CC8FUZdJ.cjs} +29 -29
- package/dist/src/components/SchemaRenderer/types.d.ts +1 -0
- package/dist/src/index.d.ts +17 -2
- 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,8 +48,14 @@ 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';
|
|
@@ -61,6 +69,11 @@ export { DialFabButton } from './components/FabButton/FabButton';
|
|
|
61
69
|
export type { DialFabButtonProps } from './components/FabButton/FabButton';
|
|
62
70
|
export { DialTextarea } from './components/Textarea/Textarea';
|
|
63
71
|
export { DialTooltip } from './components/Tooltip/Tooltip';
|
|
72
|
+
export type { DialTooltipProps } from './components/Tooltip/Tooltip';
|
|
73
|
+
export { DialTooltipContainer } from './components/Tooltip/TooltipContainer';
|
|
74
|
+
export { DialTooltipContent } from './components/Tooltip/TooltipContent';
|
|
75
|
+
export { DialTooltipTrigger } from './components/Tooltip/TooltipTrigger';
|
|
76
|
+
export type { DialTooltipContainerOptions } from './components/Tooltip/TooltipContext';
|
|
64
77
|
export { DialSwitch } from './components/Switch/Switch';
|
|
65
78
|
export { DialSegmentedControl } from './components/SegmentedControl/SegmentedControl';
|
|
66
79
|
export type { DialSegmentedControlProps } from './components/SegmentedControl/SegmentedControl';
|
|
@@ -74,6 +87,7 @@ export type { DialInputProps } from './components/Input/Input';
|
|
|
74
87
|
export { DialNumberInput } from './components/NumberInput/NumberInput';
|
|
75
88
|
export { DialPasswordInput } from './components/PasswordInput/PasswordInput';
|
|
76
89
|
export { DialSearch } from './components/Search/Search';
|
|
90
|
+
export type { DialSearchProps } from './components/Search/Search';
|
|
77
91
|
export { DialInputPopup } from './components/InputPopup/InputPopup';
|
|
78
92
|
export { DialAutocompleteInputValue } from './components/AutocompleteInput/AutocompleteInputValue';
|
|
79
93
|
export { DialTagInput } from './components/TagInput/TagInput';
|
|
@@ -96,7 +110,7 @@ export { PopupSize } from './types/popup';
|
|
|
96
110
|
export { ConfirmationPopupVariant } from './types/confirmation-popup';
|
|
97
111
|
export { DropdownType, DropdownTrigger, DropdownItemType, } from './types/dropdown';
|
|
98
112
|
export { ElementSize } from './types/size';
|
|
99
|
-
export { TabOrientation, TabView } from './types/tab';
|
|
113
|
+
export { ScreenResolution, TabOrientation, TabView } from './types/tab';
|
|
100
114
|
export type { DialBreadcrumbPathItem } from './models/breadcrumb';
|
|
101
115
|
export { FormItemOrientation } from './types/form-item';
|
|
102
116
|
export { SelectSize, SelectVariant } from './types/select';
|
|
@@ -106,7 +120,8 @@ export { DialItemType } from './types/item';
|
|
|
106
120
|
export { ResizableContainerSide } from './types/resizable-container';
|
|
107
121
|
export { DialSkeletonVariant, DialSkeletonAvatarSize, DialSkeletonAvatarShape, } from './types/skeleton';
|
|
108
122
|
export { useDialFileManagerTabs } from './components/FileManager/hooks/use-file-manager-tabs';
|
|
109
|
-
export { useEditableItem } from './hooks/use-editable-item';
|
|
123
|
+
export { EDITABLE_CONTAINER_ATTRIBUTE, editableContainerProps, useEditableItem, } from './hooks/use-editable-item';
|
|
124
|
+
export type { UseEditableItemOptions } from './hooks/use-editable-item';
|
|
110
125
|
export { FileManagerProvider } from './components/FileManager/FileManagerProvider';
|
|
111
126
|
export { useFileManagerContext } from './components/FileManager/hooks/use-file-manager-context';
|
|
112
127
|
export { StepStatus } from './models/step';
|