@epam/ai-dial-ui-kit 0.14.0-dev.1 → 0.14.0-dev.3
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/README.md +3 -0
- package/dist/CHANGELOG.md +40 -1
- package/dist/{JsonEditor-v9m_npfK.js → JsonEditor-0ZT9yNXj.js} +1 -1
- package/dist/{JsonEditor-pyqbLZZf.cjs → JsonEditor-EOISr6OE.cjs} +1 -1
- package/dist/{MarkdownEditor-9aPIyyuu.cjs → MarkdownEditor-BfeV6-XV.cjs} +1 -1
- package/dist/{MarkdownEditor-5UpxUtXf.js → MarkdownEditor-Csbic0gz.js} +1 -1
- package/dist/{MarkdownEditor-CWZVSR--.js → MarkdownEditor-D8p7zjZ1.js} +1 -1
- package/dist/{MarkdownEditor-BjqdSHPU.cjs → MarkdownEditor-vV5rCB3Y.cjs} +1 -1
- package/dist/components-manifest.json +468 -11
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +186 -174
- package/dist/{index-DKDaSZqV.js → index-BVZGIW7V.js} +10035 -9480
- package/dist/{index-xlqMH2Q1.cjs → index-Ho1ZjGNx.cjs} +29 -29
- package/dist/index.css +2 -2
- package/dist/migration-guides/0.14.0/control-color-token-rename.md +143 -0
- package/dist/migration-guides/0.14.0/focus-border-token-role-naming.md +87 -0
- package/dist/migration-guides/README.md +2 -0
- package/dist/src/components/New/Calendar/constants.d.ts +5 -5
- package/dist/src/components/New/Checkbox/Checkbox.d.ts +46 -0
- package/dist/src/components/New/Checkbox/constants.d.ts +10 -0
- package/dist/src/components/New/Dropdown/constants.d.ts +1 -1
- package/dist/src/components/New/EllipsisTooltip/EllipsisTooltip.d.ts +51 -0
- package/dist/src/components/New/EllipsisTooltip/use-truncation.d.ts +21 -0
- package/dist/src/components/New/Input/Button/constants.d.ts +1 -1
- package/dist/src/components/New/Notification/Notification.d.ts +7 -0
- package/dist/src/components/New/Notification/NotificationWrapper.d.ts +2 -0
- package/dist/src/components/New/Radio/Radio.d.ts +48 -0
- package/dist/src/components/New/SegmentedControl/SegmentedControl.d.ts +54 -0
- package/dist/src/components/New/SegmentedControl/constants.d.ts +16 -0
- package/dist/src/components/New/Select/constants.d.ts +1 -1
- package/dist/src/components/New/ToggleIconButton/ToggleIconButton.d.ts +47 -0
- package/dist/src/components/New/Tooltip/Tooltip.d.ts +43 -0
- package/dist/src/components/New/Tooltip/TooltipContainer.d.ts +32 -0
- package/dist/src/components/New/Tooltip/TooltipContent.d.ts +18 -0
- package/dist/src/components/New/Tooltip/TooltipContext.d.ts +115 -0
- package/dist/src/components/New/Tooltip/TooltipTrigger.d.ts +18 -0
- package/dist/src/components/New/Tooltip/constants.d.ts +25 -0
- package/dist/src/components/New/constants/overlay.d.ts +1 -1
- package/dist/src/index.d.ts +19 -1
- package/dist/src/types/notification.d.ts +2 -1
- package/dist/src/types/tooltip.d.ts +6 -0
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -150,7 +150,7 @@ export { Notification } from './components/New/Notification/Notification';
|
|
|
150
150
|
export { Highlight } from './components/New/Highlight/Highlight';
|
|
151
151
|
export { CardShell } from './components/New/CardShell/CardShell';
|
|
152
152
|
export type { CardShellProps } from './components/New/CardShell/CardShell';
|
|
153
|
-
export { ErrorMessageNotification, ErrorToastNotification, InfoMessageNotification, InfoToastNotification, LoadingMessageNotification, LoadingToastNotification, SuccessMessageNotification, SuccessToastNotification, WarningMessageNotification, WarningToastNotification, } from './components/New/Notification/NotificationWrapper';
|
|
153
|
+
export { ErrorMessageNotification, ErrorToastNotification, GeneralMessageNotification, GeneralToastNotification, InfoMessageNotification, InfoToastNotification, LoadingMessageNotification, LoadingToastNotification, SuccessMessageNotification, SuccessToastNotification, WarningMessageNotification, WarningToastNotification, } from './components/New/Notification/NotificationWrapper';
|
|
154
154
|
export { CalendarMode } from './types/calendar.ts';
|
|
155
155
|
export { Calendar } from './components/New/Calendar/Calendar';
|
|
156
156
|
export type { CalendarProps, CalendarValue, } from './components/New/Calendar/Calendar';
|
|
@@ -200,6 +200,14 @@ export { Accordion } from './components/New/Accordion/Accordion';
|
|
|
200
200
|
export type { AccordionProps } from './components/New/Accordion/Accordion';
|
|
201
201
|
export { Switch } from './components/New/Switch/Switch';
|
|
202
202
|
export type { SwitchProps } from './components/New/Switch/Switch';
|
|
203
|
+
export { Radio } from './components/New/Radio/Radio';
|
|
204
|
+
export type { RadioProps } from './components/New/Radio/Radio';
|
|
205
|
+
export { Checkbox } from './components/New/Checkbox/Checkbox';
|
|
206
|
+
export type { CheckboxProps } from './components/New/Checkbox/Checkbox';
|
|
207
|
+
export { ToggleIconButton } from './components/New/ToggleIconButton/ToggleIconButton';
|
|
208
|
+
export type { ToggleIconButtonProps } from './components/New/ToggleIconButton/ToggleIconButton';
|
|
209
|
+
export { SegmentedControl } from './components/New/SegmentedControl/SegmentedControl';
|
|
210
|
+
export type { SegmentedControlProps, SegmentedControlItem, } from './components/New/SegmentedControl/SegmentedControl';
|
|
203
211
|
export { Tabs } from './components/New/Tabs/Tabs';
|
|
204
212
|
export type { TabsProps, TabItem } from './components/New/Tabs/Tabs';
|
|
205
213
|
export { FileDropzone } from './components/New/FileDropzone/FileDropzone';
|
|
@@ -211,3 +219,13 @@ export type { TagInputProps } from './components/New/TagInput/TagInput';
|
|
|
211
219
|
export { Search } from './components/New/Search/Search';
|
|
212
220
|
export type { SearchProps } from './components/New/Search/Search';
|
|
213
221
|
export { matchesAccept } from './utils/file-accept';
|
|
222
|
+
export { Tooltip } from './components/New/Tooltip/Tooltip';
|
|
223
|
+
export type { TooltipProps } from './components/New/Tooltip/Tooltip';
|
|
224
|
+
export { TooltipContainer } from './components/New/Tooltip/TooltipContainer';
|
|
225
|
+
export { TooltipContent } from './components/New/Tooltip/TooltipContent';
|
|
226
|
+
export type { TooltipContentProps } from './components/New/Tooltip/TooltipContent';
|
|
227
|
+
export { TooltipTrigger } from './components/New/Tooltip/TooltipTrigger';
|
|
228
|
+
export type { TooltipContainerOptions } from './components/New/Tooltip/TooltipContext';
|
|
229
|
+
export { TooltipPlacement } from './types/tooltip.ts';
|
|
230
|
+
export { EllipsisTooltip } from './components/New/EllipsisTooltip/EllipsisTooltip';
|
|
231
|
+
export type { EllipsisTooltipProps } from './components/New/EllipsisTooltip/EllipsisTooltip';
|