@epam/ai-dial-ui-kit 0.14.0-dev.2 → 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.
Files changed (42) hide show
  1. package/README.md +3 -0
  2. package/dist/CHANGELOG.md +39 -1
  3. package/dist/{JsonEditor-CM-CG-FK.js → JsonEditor-0ZT9yNXj.js} +1 -1
  4. package/dist/{JsonEditor-DPtZkKQi.cjs → JsonEditor-EOISr6OE.cjs} +1 -1
  5. package/dist/{MarkdownEditor-D4WuEafx.cjs → MarkdownEditor-BfeV6-XV.cjs} +1 -1
  6. package/dist/{MarkdownEditor-DRQoDnC-.js → MarkdownEditor-Csbic0gz.js} +1 -1
  7. package/dist/{MarkdownEditor-cdq8UZxL.js → MarkdownEditor-D8p7zjZ1.js} +1 -1
  8. package/dist/{MarkdownEditor-DyIvPpmt.cjs → MarkdownEditor-vV5rCB3Y.cjs} +1 -1
  9. package/dist/components-manifest.json +468 -11
  10. package/dist/dial-ui-kit.cjs.js +1 -1
  11. package/dist/dial-ui-kit.es.js +186 -174
  12. package/dist/{index-CBk9P1Pa.js → index-BVZGIW7V.js} +8313 -7777
  13. package/dist/{index-A_KNCHda.cjs → index-Ho1ZjGNx.cjs} +29 -29
  14. package/dist/index.css +2 -2
  15. package/dist/migration-guides/0.14.0/control-color-token-rename.md +143 -0
  16. package/dist/migration-guides/0.14.0/focus-border-token-role-naming.md +87 -0
  17. package/dist/migration-guides/README.md +2 -0
  18. package/dist/src/components/New/Calendar/constants.d.ts +5 -5
  19. package/dist/src/components/New/Checkbox/Checkbox.d.ts +46 -0
  20. package/dist/src/components/New/Checkbox/constants.d.ts +10 -0
  21. package/dist/src/components/New/Dropdown/constants.d.ts +1 -1
  22. package/dist/src/components/New/EllipsisTooltip/EllipsisTooltip.d.ts +51 -0
  23. package/dist/src/components/New/EllipsisTooltip/use-truncation.d.ts +21 -0
  24. package/dist/src/components/New/Input/Button/constants.d.ts +1 -1
  25. package/dist/src/components/New/Notification/Notification.d.ts +7 -0
  26. package/dist/src/components/New/Notification/NotificationWrapper.d.ts +2 -0
  27. package/dist/src/components/New/Radio/Radio.d.ts +48 -0
  28. package/dist/src/components/New/SegmentedControl/SegmentedControl.d.ts +54 -0
  29. package/dist/src/components/New/SegmentedControl/constants.d.ts +16 -0
  30. package/dist/src/components/New/Select/constants.d.ts +1 -1
  31. package/dist/src/components/New/ToggleIconButton/ToggleIconButton.d.ts +47 -0
  32. package/dist/src/components/New/Tooltip/Tooltip.d.ts +43 -0
  33. package/dist/src/components/New/Tooltip/TooltipContainer.d.ts +32 -0
  34. package/dist/src/components/New/Tooltip/TooltipContent.d.ts +18 -0
  35. package/dist/src/components/New/Tooltip/TooltipContext.d.ts +115 -0
  36. package/dist/src/components/New/Tooltip/TooltipTrigger.d.ts +18 -0
  37. package/dist/src/components/New/Tooltip/constants.d.ts +25 -0
  38. package/dist/src/components/New/constants/overlay.d.ts +1 -1
  39. package/dist/src/index.d.ts +19 -1
  40. package/dist/src/types/notification.d.ts +2 -1
  41. package/dist/src/types/tooltip.d.ts +6 -0
  42. package/package.json +1 -1
@@ -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';
@@ -3,7 +3,8 @@ export declare enum NotificationVariant {
3
3
  Success = "success",
4
4
  Warning = "warning",
5
5
  Error = "error",
6
- Loading = "loading"
6
+ Loading = "loading",
7
+ General = "general"
7
8
  }
8
9
  export declare enum NotificationType {
9
10
  Toast = "toast",
@@ -0,0 +1,6 @@
1
+ export declare enum TooltipPlacement {
2
+ Top = "top",
3
+ Right = "right",
4
+ Bottom = "bottom",
5
+ Left = "left"
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.14.0-dev.2",
3
+ "version": "0.14.0-dev.3",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",