@epam/ai-dial-conversation-input 1.1.0-dev.44 → 1.1.0-dev.45

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 (2) hide show
  1. package/index.js +10 -5
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -404,14 +404,19 @@ ge(({ tabs: e, activeTabId: t, onTabChange: n, styles: r }) => {
404
404
  let { tabClassName: i = "dial-tiny-semi-text" } = r?.typography ?? {};
405
405
  return /* @__PURE__ */ R("div", {
406
406
  className: "flex flex-nowrap gap-1",
407
+ role: "tablist",
407
408
  children: e.map((e) => {
408
409
  let r = t === e.id;
409
- return /* @__PURE__ */ R(D, {
410
- label: e.label,
411
- selected: r,
412
- onClick: () => n(e.id),
410
+ return /* @__PURE__ */ R("div", {
411
+ role: "tab",
413
412
  "aria-selected": r,
414
- className: s("box-border h-auto shrink-0 justify-center rounded-full p-2 text-center", i, U.tabContainer, r && U.tabActive)
413
+ className: "contents",
414
+ children: /* @__PURE__ */ R(D, {
415
+ label: e.label,
416
+ selected: r,
417
+ onClick: () => n(e.id),
418
+ className: s("box-border h-auto shrink-0 justify-center rounded-full p-2 text-center", i, U.tabContainer, r && U.tabActive)
419
+ })
415
420
  }, e.id);
416
421
  })
417
422
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-conversation-input",
3
3
  "description": "Conversation message input with model selection, attachments, voice input, and edit mode",
4
- "version": "1.1.0-dev.44",
4
+ "version": "1.1.0-dev.45",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "main": "./index.js",
@@ -17,12 +17,12 @@
17
17
  }
18
18
  },
19
19
  "peerDependencies": {
20
- "@epam/ai-dial-attachment-input": "1.1.0-dev.44",
21
- "@epam/ai-dial-chat-shared": "1.1.0-dev.44",
20
+ "@epam/ai-dial-attachment-input": "1.1.0-dev.45",
21
+ "@epam/ai-dial-chat-shared": "1.1.0-dev.45",
22
22
  "@tabler/icons-react": "^3.44.0",
23
23
  "react": "^19.0.0",
24
24
  "react-dom": "^19.2.6",
25
- "@epam/ai-dial-kit": "1.1.0-dev.44",
25
+ "@epam/ai-dial-kit": "1.1.0-dev.45",
26
26
  "@epam/ai-dial-ui-kit": "^0.13.0-dev.12"
27
27
  },
28
28
  "dependencies": {