@homebound/beam 3.99.2 → 3.99.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/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -27978,6 +27978,7 @@ function TabImpl(props) {
|
|
|
27978
27978
|
aiStyles
|
|
27979
27979
|
} = (0, import_react156.useMemo)(() => getTabStyles(), []);
|
|
27980
27980
|
const uniqueValue = uniqueTabValue(tab);
|
|
27981
|
+
const tid = useTestIds(others);
|
|
27981
27982
|
const tabProps = {
|
|
27982
27983
|
"aria-controls": `${uniqueValue}-tabPanel`,
|
|
27983
27984
|
"aria-selected": active,
|
|
@@ -28004,7 +28005,7 @@ function TabImpl(props) {
|
|
|
28004
28005
|
onClick: () => onClick(tab.value)
|
|
28005
28006
|
}
|
|
28006
28007
|
});
|
|
28007
|
-
const decoration = aiMode ? /* @__PURE__ */ (0, import_jsx_runtime224.jsx)(
|
|
28008
|
+
const decoration = aiMode ? /* @__PURE__ */ (0, import_jsx_runtime224.jsx)(Tag, { text: "Tab has AI proposals ready for review", preventTooltip: true, icon: "aiStar", type: "ai", variant: "primary", iconOnly: true, ...tid.aiTag }) : icon ? /* @__PURE__ */ (0, import_jsx_runtime224.jsx)(Icon, { icon }) : endAdornment;
|
|
28008
28009
|
const tabLabel = /* @__PURE__ */ (0, import_jsx_runtime224.jsxs)(import_jsx_runtime224.Fragment, { children: [
|
|
28009
28010
|
label,
|
|
28010
28011
|
decoration && /* @__PURE__ */ (0, import_jsx_runtime224.jsx)("span", { className: "ml1 df aic", children: decoration })
|