@xenide-io/the-old-ui-theme 0.6.11 → 0.6.12
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/suite.js
CHANGED
|
@@ -1588,10 +1588,10 @@ function SuiteNotificationBell({
|
|
|
1588
1588
|
panelClassName: "w-80 overflow-hidden p-0",
|
|
1589
1589
|
open,
|
|
1590
1590
|
onOpenChange,
|
|
1591
|
-
trigger: /* @__PURE__ */ (0, import_jsx_runtime7.
|
|
1591
|
+
trigger: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "inline-flex h-11 w-11 items-center justify-center rounded-full text-ph-mutedtext transition hover:bg-ph-muted hover:text-ph-ink", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: "relative inline-flex", children: [
|
|
1592
1592
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_iconoir_react3.Bell, { className: "h-5 w-5", strokeWidth: 1.75, "aria-hidden": true }),
|
|
1593
|
-
unread > 0 ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "absolute
|
|
1594
|
-
] }),
|
|
1593
|
+
unread > 0 ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "absolute right-0 top-0 flex h-3.5 min-w-3.5 translate-x-0.5 -translate-y-0.5 items-center justify-center rounded-full bg-ph-brand px-1 text-[9px] font-semibold leading-none text-white ring-1 ring-ph-surface", children: unread > 9 ? "9+" : unread }) : null
|
|
1594
|
+
] }) }),
|
|
1595
1595
|
children: [
|
|
1596
1596
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex items-center justify-between border-b border-ph-border px-3 py-2", children: [
|
|
1597
1597
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "text-sm font-semibold text-ph-ink", children: "Notifications" }),
|
package/dist/suite.mjs
CHANGED
|
@@ -1286,10 +1286,10 @@ function SuiteNotificationBell({
|
|
|
1286
1286
|
panelClassName: "w-80 overflow-hidden p-0",
|
|
1287
1287
|
open,
|
|
1288
1288
|
onOpenChange,
|
|
1289
|
-
trigger: /* @__PURE__ */
|
|
1289
|
+
trigger: /* @__PURE__ */ jsx7("span", { className: "inline-flex h-11 w-11 items-center justify-center rounded-full text-ph-mutedtext transition hover:bg-ph-muted hover:text-ph-ink", children: /* @__PURE__ */ jsxs7("span", { className: "relative inline-flex", children: [
|
|
1290
1290
|
/* @__PURE__ */ jsx7(Bell, { className: "h-5 w-5", strokeWidth: 1.75, "aria-hidden": true }),
|
|
1291
|
-
unread > 0 ? /* @__PURE__ */ jsx7("span", { className: "absolute
|
|
1292
|
-
] }),
|
|
1291
|
+
unread > 0 ? /* @__PURE__ */ jsx7("span", { className: "absolute right-0 top-0 flex h-3.5 min-w-3.5 translate-x-0.5 -translate-y-0.5 items-center justify-center rounded-full bg-ph-brand px-1 text-[9px] font-semibold leading-none text-white ring-1 ring-ph-surface", children: unread > 9 ? "9+" : unread }) : null
|
|
1292
|
+
] }) }),
|
|
1293
1293
|
children: [
|
|
1294
1294
|
/* @__PURE__ */ jsxs7("div", { className: "flex items-center justify-between border-b border-ph-border px-3 py-2", children: [
|
|
1295
1295
|
/* @__PURE__ */ jsx7("span", { className: "text-sm font-semibold text-ph-ink", children: "Notifications" }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenide-io/the-old-ui-theme",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.12",
|
|
4
4
|
"description": "Props-driven React components and theme tokens inspired by classic interface design \u2014 optimized for Next.js apps and internal tools.",
|
|
5
5
|
"author": "Xenide",
|
|
6
6
|
"license": "MIT",
|
|
@@ -178,13 +178,15 @@ export function SuiteNotificationBell({
|
|
|
178
178
|
open={open}
|
|
179
179
|
onOpenChange={onOpenChange}
|
|
180
180
|
trigger={
|
|
181
|
-
<span className="
|
|
182
|
-
<
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
181
|
+
<span className="inline-flex h-11 w-11 items-center justify-center rounded-full text-ph-mutedtext transition hover:bg-ph-muted hover:text-ph-ink">
|
|
182
|
+
<span className="relative inline-flex">
|
|
183
|
+
<Bell className="h-5 w-5" strokeWidth={1.75} aria-hidden />
|
|
184
|
+
{unread > 0 ? (
|
|
185
|
+
<span className="absolute right-0 top-0 flex h-3.5 min-w-3.5 translate-x-0.5 -translate-y-0.5 items-center justify-center rounded-full bg-ph-brand px-1 text-[9px] font-semibold leading-none text-white ring-1 ring-ph-surface">
|
|
186
|
+
{unread > 9 ? "9+" : unread}
|
|
187
|
+
</span>
|
|
188
|
+
) : null}
|
|
189
|
+
</span>
|
|
188
190
|
</span>
|
|
189
191
|
}
|
|
190
192
|
>
|