@homebound/beam 3.90.0 → 3.90.1
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 +3 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -7536,7 +7536,7 @@ type AiSlimBannerProps = {
|
|
|
7536
7536
|
action?: ActionButtonProps;
|
|
7537
7537
|
};
|
|
7538
7538
|
/**
|
|
7539
|
-
* A
|
|
7539
|
+
* A slim AI notice, for sitting inline above the content it's about.
|
|
7540
7540
|
*/
|
|
7541
7541
|
declare function AiSlimBanner(props: AiSlimBannerProps): JSX.Element;
|
|
7542
7542
|
|
package/dist/index.d.ts
CHANGED
|
@@ -7536,7 +7536,7 @@ type AiSlimBannerProps = {
|
|
|
7536
7536
|
action?: ActionButtonProps;
|
|
7537
7537
|
};
|
|
7538
7538
|
/**
|
|
7539
|
-
* A
|
|
7539
|
+
* A slim AI notice, for sitting inline above the content it's about.
|
|
7540
7540
|
*/
|
|
7541
7541
|
declare function AiSlimBanner(props: AiSlimBannerProps): JSX.Element;
|
|
7542
7542
|
|
package/dist/index.js
CHANGED
|
@@ -19036,7 +19036,7 @@ function AiLoadingPanel(props) {
|
|
|
19036
19036
|
return (
|
|
19037
19037
|
// `status` rather than `alert` so assistive tech waits for a pause instead of interrupting, and
|
|
19038
19038
|
// `aria-busy` so it knows the surrounding content is still settling.
|
|
19039
|
-
/* @__PURE__ */ jsx110(AiPanel, { role: "status", "aria-busy": true, ...tid, children: /* @__PURE__ */ jsxs60("div", { className: "df fdc aic gap1 w100", children: [
|
|
19039
|
+
/* @__PURE__ */ jsx110(AiPanel, { role: "status", "aria-busy": true, ...tid, children: /* @__PURE__ */ jsxs60("div", { className: "df fdc aic gap1 w100 pl1 pr1", children: [
|
|
19040
19040
|
/* @__PURE__ */ jsx110(AiLoader, {}),
|
|
19041
19041
|
/* @__PURE__ */ jsx110("span", { className: "fw6 fz_18px lh_28px purple700 aiBoldBg bgcl_text WebkitBackgroundClip_text wktfc_transparent", ...tid.title, children: title }),
|
|
19042
19042
|
/* @__PURE__ */ jsx110("span", { ...trussProps75({
|
|
@@ -19061,10 +19061,8 @@ function AiSlimBanner(props) {
|
|
|
19061
19061
|
action
|
|
19062
19062
|
} = props;
|
|
19063
19063
|
const tid = useTestIds(props, "aiSlimBanner");
|
|
19064
|
-
return /* @__PURE__ */ jsxs61("div", { className: "df
|
|
19065
|
-
/* @__PURE__ */ jsx111(Icon, { icon: "aiStar", inc: 1.5
|
|
19066
|
-
flexShrink: "fs0"
|
|
19067
|
-
} }),
|
|
19064
|
+
return /* @__PURE__ */ jsxs61("div", { className: "df ais gap2 w100 pl2 pr2 fw4 fz_12px lh_16px aiBackground", ...tid, children: [
|
|
19065
|
+
/* @__PURE__ */ jsx111("span", { className: "df aic fs0 pt1 pb1 h_32px", children: /* @__PURE__ */ jsx111(Icon, { icon: "aiStar", inc: 1.5 }) }),
|
|
19068
19066
|
/* @__PURE__ */ jsxs61("div", { className: "df aic jcsb gap2 fg1 mw0", children: [
|
|
19069
19067
|
/* @__PURE__ */ jsx111("span", { className: "fw6 fz_12px lh_16px purple700 aiBoldBg bgcl_text WebkitBackgroundClip_text wktfc_transparent pt1 pb1 mw0", ...tid.title, children: title }),
|
|
19070
19068
|
action && /* @__PURE__ */ jsx111("div", { className: "fs0", children: /* @__PURE__ */ jsx111(Button, { ...action, variant: "text" }) })
|