@olwiba/ui 0.2.21 → 0.2.22
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.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/app/AppShell.tsx +2 -2
- package/src/app/UpdateBanner.tsx +4 -4
package/dist/index.js
CHANGED
|
@@ -306,7 +306,7 @@ function NavUser({ user }) {
|
|
|
306
306
|
BirdIcon,
|
|
307
307
|
{
|
|
308
308
|
"aria-hidden": true,
|
|
309
|
-
className: "size-
|
|
309
|
+
className: "size-5 drop-shadow-[0_1px_1px_rgb(0_0_0/0.3)]"
|
|
310
310
|
}
|
|
311
311
|
) })
|
|
312
312
|
] }),
|
|
@@ -333,7 +333,7 @@ function NavUser({ user }) {
|
|
|
333
333
|
BirdIcon,
|
|
334
334
|
{
|
|
335
335
|
"aria-hidden": true,
|
|
336
|
-
className: "size-
|
|
336
|
+
className: "size-5 drop-shadow-[0_1px_1px_rgb(0_0_0/0.3)]"
|
|
337
337
|
}
|
|
338
338
|
) })
|
|
339
339
|
] }),
|
|
@@ -1502,13 +1502,13 @@ function UpdateBanner({
|
|
|
1502
1502
|
Card$1,
|
|
1503
1503
|
{
|
|
1504
1504
|
className: cn$1(
|
|
1505
|
-
"max-w-3xl border-
|
|
1505
|
+
"max-w-3xl border-border bg-card text-card-foreground shadow-lg",
|
|
1506
1506
|
className
|
|
1507
1507
|
),
|
|
1508
1508
|
children: /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-6 p-4", children: [
|
|
1509
1509
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
|
|
1510
|
-
/* @__PURE__ */ jsx(Sparkles, { className: "size-5 shrink-0 text-
|
|
1511
|
-
/* @__PURE__ */ jsx("p", { className: "text-sm text-
|
|
1510
|
+
/* @__PURE__ */ jsx(Sparkles, { className: "size-5 shrink-0 text-primary", "aria-hidden": "true" }),
|
|
1511
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm text-card-foreground", children: message })
|
|
1512
1512
|
] }),
|
|
1513
1513
|
/* @__PURE__ */ jsx(
|
|
1514
1514
|
Button$1,
|
|
@@ -1516,7 +1516,7 @@ function UpdateBanner({
|
|
|
1516
1516
|
onClick: handleRefresh,
|
|
1517
1517
|
disabled: refreshing,
|
|
1518
1518
|
size: "sm",
|
|
1519
|
-
className: "shrink-0
|
|
1519
|
+
className: "shrink-0",
|
|
1520
1520
|
children: refreshing ? /* @__PURE__ */ jsx(RefreshCw, { className: "size-4 animate-spin" }) : buttonLabel
|
|
1521
1521
|
}
|
|
1522
1522
|
)
|