@epam/ai-dial-ui-kit 0.3.0-rc.2 → 0.3.0-rc.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.
Files changed (30) hide show
  1. package/dist/dial-ui-kit.cjs.js +1 -1
  2. package/dist/dial-ui-kit.es.js +4475 -1146
  3. package/dist/index.css +2 -2
  4. package/dist/src/components/Breadcrumb/Breadcrumb.d.ts +41 -0
  5. package/dist/src/components/Breadcrumb/BreadcrumbItem.d.ts +13 -0
  6. package/dist/src/components/Breadcrumb/constants.d.ts +9 -0
  7. package/dist/src/components/Checkbox/Checkbox.d.ts +3 -1
  8. package/dist/src/components/Dropdown/Dropdown.d.ts +2 -0
  9. package/dist/src/components/EllipsisTooltip/EllipsisTooltip.d.ts +31 -0
  10. package/dist/src/components/EllipsisTooltip/constants.d.ts +1 -0
  11. package/dist/src/components/Input/Input.d.ts +4 -1
  12. package/dist/src/components/InputField/InputField.d.ts +1 -1
  13. package/dist/src/components/InputPopup/InputPopup.d.ts +3 -3
  14. package/dist/src/components/RadioGroupPopupField/RadioGroupPopupField.d.ts +69 -0
  15. package/dist/src/components/Select/Select.d.ts +59 -0
  16. package/dist/src/components/Select/constants.d.ts +8 -0
  17. package/dist/src/components/Tab/Tab.d.ts +35 -0
  18. package/dist/src/components/Tabs/Tabs.d.ts +40 -0
  19. package/dist/src/components/Tag/Tag.d.ts +6 -2
  20. package/dist/src/hooks/use-is-tablet-screen.d.ts +1 -0
  21. package/dist/src/index.d.ts +13 -0
  22. package/dist/src/models/breadcrumb.d.ts +9 -0
  23. package/dist/src/models/field-control-props.d.ts +1 -0
  24. package/dist/src/models/select.d.ts +7 -0
  25. package/dist/src/models/tab.d.ts +4 -0
  26. package/dist/src/types/tab.d.ts +4 -0
  27. package/dist/src/utils/merge-classes.d.ts +3 -0
  28. package/dist/src/utils/mobile.d.ts +1 -0
  29. package/package.json +6 -3
  30. package/dist/src/components/RadioGroupModalField/RadioGroupModal.d.ts +0 -1
@@ -0,0 +1,4 @@
1
+ export interface TabModel {
2
+ id: string;
3
+ name: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum TabOrientation {
2
+ Horizontal = "horizontal",
3
+ Vertical = "vertical"
4
+ }
@@ -0,0 +1,3 @@
1
+ import { default as classNames } from 'classnames';
2
+ /** Merge class names (classnames → tailwind-merge). */
3
+ export declare function mergeClasses(...inputs: Parameters<typeof classNames>): string;
@@ -0,0 +1 @@
1
+ export declare const isMediumScreen: () => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.3.0-rc.2",
3
+ "version": "0.3.0-rc.21",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",
@@ -37,9 +37,9 @@
37
37
  "format": "prettier --check .",
38
38
  "format-fix": "prettier --write .",
39
39
  "preview": "vite preview",
40
- "storybook": "concurrently 'npm run storybook:css' 'storybook dev -p 6006'",
40
+ "storybook": "concurrently \"npm run storybook:css\" \"storybook dev -p 6006\"",
41
41
  "storybook:css": "tailwindcss -w -i ./src/styles/tailwind-entry.scss -o ./src/index.css",
42
- "build-storybook": "concurrently 'npm run build-storybook:css' 'storybook build'",
42
+ "build-storybook": "concurrently \"npm run build-storybook:css\" \"storybook build\"",
43
43
  "build-storybook:css": "tailwindcss -m -i ./src/styles/tailwind-entry.scss -o ./src/index.css",
44
44
  "prepare": "husky",
45
45
  "publish": "node tools/publish-lib.mjs",
@@ -56,6 +56,9 @@
56
56
  "overrides": {
57
57
  "esbuild": "0.25.9"
58
58
  },
59
+ "dependencies": {
60
+ "tailwind-merge": "^3.3.1"
61
+ },
59
62
  "peerDependencies": {
60
63
  "@floating-ui/react": "^0.27.15",
61
64
  "@monaco-editor/react": "^4.7.0",