@togo-framework/ui 0.1.4 → 0.1.5
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 +18 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16027,7 +16027,7 @@ function MarketplaceCard({
|
|
|
16027
16027
|
enabled,
|
|
16028
16028
|
className
|
|
16029
16029
|
}) {
|
|
16030
|
-
return /* @__PURE__ */ jsx99("a", { href, className: cn("group block h-full", className), children: /* @__PURE__ */ jsxs87(
|
|
16030
|
+
return /* @__PURE__ */ jsx99("a", { href, className: cn("group block h-full", className), children: /* @__PURE__ */ jsxs87("div", { className: "rounded-2xl border border-border bg-card/40 overflow-hidden h-full flex flex-col transition-all duration-200 hover:border-foreground/25 hover:-translate-y-0.5", children: [
|
|
16031
16031
|
/* @__PURE__ */ jsxs87(
|
|
16032
16032
|
"div",
|
|
16033
16033
|
{
|
|
@@ -16035,7 +16035,7 @@ function MarketplaceCard({
|
|
|
16035
16035
|
style: { background: `radial-gradient(120% 140% at 0% 0%, ${categoryColor}55, transparent 62%), linear-gradient(135deg, ${categoryColor}26, #0b1016)` },
|
|
16036
16036
|
children: [
|
|
16037
16037
|
/* @__PURE__ */ jsx99("div", { className: "absolute inset-0 opacity-[0.14]", style: { backgroundImage: "radial-gradient(circle at 1px 1px, #fff 1px, transparent 0)", backgroundSize: "16px 16px" } }),
|
|
16038
|
-
Icon && /* @__PURE__ */ jsx99("div", { className: "relative grid place-items-center w-14 h-14 rounded-2xl bg-
|
|
16038
|
+
Icon && /* @__PURE__ */ jsx99("div", { className: "relative grid place-items-center w-14 h-14 rounded-2xl bg-black/20 ring-1 ring-white/20 transition-transform duration-300 group-hover:scale-105", children: /* @__PURE__ */ jsx99(Icon, { size: 28, style: { color: "#fff" } }) }),
|
|
16039
16039
|
enabled && /* @__PURE__ */ jsx99("span", { className: "absolute top-3 end-3 text-[10px] font-mono px-2 py-0.5 rounded-full bg-black/30 text-emerald-300 ring-1 ring-emerald-400/30", children: "enabled" })
|
|
16040
16040
|
]
|
|
16041
16041
|
}
|
|
@@ -16043,7 +16043,7 @@ function MarketplaceCard({
|
|
|
16043
16043
|
/* @__PURE__ */ jsxs87("div", { className: "p-5 flex flex-col flex-1", children: [
|
|
16044
16044
|
/* @__PURE__ */ jsxs87("div", { className: "flex items-center gap-2", children: [
|
|
16045
16045
|
/* @__PURE__ */ jsx99("h3", { style: DISPLAY3, className: "text-[15px] font-bold truncate", children: name }),
|
|
16046
|
-
category && /* @__PURE__ */ jsx99("span", { className: "ms-auto shrink-0 text-[10px] font-mono uppercase tracking-wider px-2 py-0.5 rounded-full border border-
|
|
16046
|
+
category && /* @__PURE__ */ jsx99("span", { className: "ms-auto shrink-0 text-[10px] font-mono uppercase tracking-wider px-2 py-0.5 rounded-full border border-border text-muted-foreground", children: category })
|
|
16047
16047
|
] }),
|
|
16048
16048
|
/* @__PURE__ */ jsx99("p", { className: "text-[13px] text-muted-foreground mt-1.5 line-clamp-2 flex-1", children: description || "A togo-framework plugin." }),
|
|
16049
16049
|
/* @__PURE__ */ jsxs87("div", { className: "flex items-center gap-3 mt-3 text-[11px] text-muted-foreground font-mono", children: [
|
|
@@ -16066,7 +16066,7 @@ function MarketplaceCard({
|
|
|
16066
16066
|
}
|
|
16067
16067
|
MarketplaceCard.displayName = "MarketplaceCard";
|
|
16068
16068
|
function StatsRow({ stats, className }) {
|
|
16069
|
-
return /* @__PURE__ */ jsx99("div", { className: cn("grid grid-cols-3 gap-3 sm:gap-4", className), children: stats.map((s, i) => /* @__PURE__ */ jsxs87("div", { className: "rounded-2xl border border-
|
|
16069
|
+
return /* @__PURE__ */ jsx99("div", { className: cn("grid grid-cols-3 gap-3 sm:gap-4", className), children: stats.map((s, i) => /* @__PURE__ */ jsxs87("div", { className: "rounded-2xl border border-border bg-card/40 px-4 sm:px-5 py-4 text-center", children: [
|
|
16070
16070
|
/* @__PURE__ */ jsx99("div", { className: "text-[10px] font-mono uppercase tracking-[0.16em] text-muted-foreground/70", children: s.label }),
|
|
16071
16071
|
/* @__PURE__ */ jsx99("div", { style: DISPLAY3, className: "text-2xl sm:text-3xl font-bold mt-1", children: s.value })
|
|
16072
16072
|
] }, i)) });
|
|
@@ -16083,7 +16083,7 @@ function FilterBar({ search, onSearch, chips, active, onChip, sort, searchPlaceh
|
|
|
16083
16083
|
value: search,
|
|
16084
16084
|
onChange: (e) => onSearch(e.target.value),
|
|
16085
16085
|
placeholder: searchPlaceholder,
|
|
16086
|
-
className: "w-full h-11 ps-10 pe-4 rounded-full border border-
|
|
16086
|
+
className: "w-full h-11 ps-10 pe-4 rounded-full border border-border bg-card/40 text-sm outline-none focus:border-[color:rgba(31,199,220,.5)] transition-colors"
|
|
16087
16087
|
}
|
|
16088
16088
|
)
|
|
16089
16089
|
] }),
|
|
@@ -16092,7 +16092,7 @@ function FilterBar({ search, onSearch, chips, active, onChip, sort, searchPlaceh
|
|
|
16092
16092
|
{
|
|
16093
16093
|
value: sort.value,
|
|
16094
16094
|
onChange: (e) => sort.onSort(e.target.value),
|
|
16095
|
-
className: "h-11 px-4 rounded-full border border-
|
|
16095
|
+
className: "h-11 px-4 rounded-full border border-border bg-card/40 text-sm outline-none cursor-pointer",
|
|
16096
16096
|
children: sort.options.map((o) => /* @__PURE__ */ jsx99("option", { value: o.value, className: "bg-[#0b1016]", children: o.label }, o.value))
|
|
16097
16097
|
}
|
|
16098
16098
|
)
|
|
@@ -16105,7 +16105,7 @@ function FilterBar({ search, onSearch, chips, active, onChip, sort, searchPlaceh
|
|
|
16105
16105
|
onClick: () => onChip(c.value),
|
|
16106
16106
|
className: cn(
|
|
16107
16107
|
"font-mono text-[12px] px-3.5 py-1.5 rounded-full border transition-colors",
|
|
16108
|
-
on ? "border-[color:rgba(31,199,220,.5)] text-[#5CDDEC] bg-[color:rgba(31,199,220,.08)]" : "border-
|
|
16108
|
+
on ? "border-[color:rgba(31,199,220,.5)] text-[#5CDDEC] bg-[color:rgba(31,199,220,.08)]" : "border-border text-muted-foreground hover:text-foreground hover:bg-card/40"
|
|
16109
16109
|
),
|
|
16110
16110
|
children: [
|
|
16111
16111
|
c.label,
|
|
@@ -16126,12 +16126,12 @@ function Pager({ page, pages, onPage, className }) {
|
|
|
16126
16126
|
const nums = Array.from({ length: pages }, (_, i) => i + 1).filter((n) => n === 1 || n === pages || Math.abs(n - page) <= 1);
|
|
16127
16127
|
const btn = "min-w-9 h-9 px-2 rounded-full border text-sm font-mono transition-colors";
|
|
16128
16128
|
return /* @__PURE__ */ jsxs87("div", { className: cn("flex items-center justify-center gap-1.5", className), children: [
|
|
16129
|
-
/* @__PURE__ */ jsx99("button", { disabled: page <= 1, onClick: () => onPage(page - 1), className: cn(btn, "border-
|
|
16129
|
+
/* @__PURE__ */ jsx99("button", { disabled: page <= 1, onClick: () => onPage(page - 1), className: cn(btn, "border-border text-muted-foreground hover:text-foreground disabled:opacity-30"), children: "\u2039" }),
|
|
16130
16130
|
nums.map((n, i) => /* @__PURE__ */ jsxs87(React30.Fragment, { children: [
|
|
16131
16131
|
i > 0 && n - nums[i - 1] > 1 && /* @__PURE__ */ jsx99("span", { className: "text-muted-foreground/50 px-1", children: "\u2026" }),
|
|
16132
|
-
/* @__PURE__ */ jsx99("button", { onClick: () => onPage(n), className: cn(btn, n === page ? "border-[color:rgba(31,199,220,.5)] text-[#5CDDEC] bg-[color:rgba(31,199,220,.08)]" : "border-
|
|
16132
|
+
/* @__PURE__ */ jsx99("button", { onClick: () => onPage(n), className: cn(btn, n === page ? "border-[color:rgba(31,199,220,.5)] text-[#5CDDEC] bg-[color:rgba(31,199,220,.08)]" : "border-border text-muted-foreground hover:text-foreground"), children: n })
|
|
16133
16133
|
] }, n)),
|
|
16134
|
-
/* @__PURE__ */ jsx99("button", { disabled: page >= pages, onClick: () => onPage(page + 1), className: cn(btn, "border-
|
|
16134
|
+
/* @__PURE__ */ jsx99("button", { disabled: page >= pages, onClick: () => onPage(page + 1), className: cn(btn, "border-border text-muted-foreground hover:text-foreground disabled:opacity-30"), children: "\u203A" })
|
|
16135
16135
|
] });
|
|
16136
16136
|
}
|
|
16137
16137
|
Pager.displayName = "Pager";
|
|
@@ -16170,7 +16170,7 @@ function DocsGroup({ group, activeHref, defaultOpen, onNavigate }) {
|
|
|
16170
16170
|
/* @__PURE__ */ jsx100(ChevronRight9, { size: 12, className: cn("transition-transform", open && "rotate-90") }),
|
|
16171
16171
|
group.label
|
|
16172
16172
|
] }),
|
|
16173
|
-
open && /* @__PURE__ */ jsx100("ul", { className: "mt-0.5 mb-2 ms-3 border-s border-
|
|
16173
|
+
open && /* @__PURE__ */ jsx100("ul", { className: "mt-0.5 mb-2 ms-3 border-s border-border", children: group.items.map((i) => {
|
|
16174
16174
|
const on = i.href === activeHref;
|
|
16175
16175
|
return /* @__PURE__ */ jsx100("li", { children: /* @__PURE__ */ jsx100(
|
|
16176
16176
|
"a",
|
|
@@ -16208,7 +16208,7 @@ function DocsTOC({ items, className }) {
|
|
|
16208
16208
|
if (!items.length) return null;
|
|
16209
16209
|
return /* @__PURE__ */ jsxs88("nav", { className: cn("text-sm", className), children: [
|
|
16210
16210
|
/* @__PURE__ */ jsx100("div", { className: "text-[10px] font-mono uppercase tracking-[0.16em] text-muted-foreground/60 mb-3", children: "On this page" }),
|
|
16211
|
-
/* @__PURE__ */ jsx100("ul", { className: "border-s border-
|
|
16211
|
+
/* @__PURE__ */ jsx100("ul", { className: "border-s border-border", children: items.map((i) => /* @__PURE__ */ jsx100("li", { style: { paddingInlineStart: `${(Math.max(1, i.level) - 1) * 12}px` }, children: /* @__PURE__ */ jsx100("a", { href: `#${i.id}`, className: cn("block ps-3 -ms-px border-s py-1 transition-colors", active === i.id ? "border-[#1FC7DC] text-[#5CDDEC]" : "border-transparent text-muted-foreground hover:text-foreground"), children: i.text }) }, i.id)) })
|
|
16212
16212
|
] });
|
|
16213
16213
|
}
|
|
16214
16214
|
DocsTOC.displayName = "DocsTOC";
|
|
@@ -16242,20 +16242,20 @@ function CommandPalette({ items, placeholder = "Search docs & plugins\u2026", cl
|
|
|
16242
16242
|
}, []);
|
|
16243
16243
|
const results = q ? items.filter((i) => (i.label + " " + (i.sublabel || "")).toLowerCase().includes(q.toLowerCase())).slice(0, 40) : items.slice(0, 24);
|
|
16244
16244
|
return /* @__PURE__ */ jsxs88(Fragment25, { children: [
|
|
16245
|
-
/* @__PURE__ */ jsxs88("button", { onClick: () => setOpen(true), className: cn("inline-flex items-center gap-2 h-9 px-3 rounded-full border border-
|
|
16245
|
+
/* @__PURE__ */ jsxs88("button", { onClick: () => setOpen(true), className: cn("inline-flex items-center gap-2 h-9 px-3 rounded-full border border-border bg-card/40 text-sm text-muted-foreground hover:text-foreground transition-colors", className), children: [
|
|
16246
16246
|
/* @__PURE__ */ jsx100(Search9, { size: 14 }),
|
|
16247
16247
|
" ",
|
|
16248
16248
|
/* @__PURE__ */ jsx100("span", { className: "hidden sm:inline", children: "Search" }),
|
|
16249
|
-
/* @__PURE__ */ jsx100("kbd", { className: "hidden sm:inline font-mono text-[10px] border border-
|
|
16249
|
+
/* @__PURE__ */ jsx100("kbd", { className: "hidden sm:inline font-mono text-[10px] border border-border rounded px-1 py-0.5", children: "\u2318K" })
|
|
16250
16250
|
] }),
|
|
16251
|
-
open && /* @__PURE__ */ jsx100("div", { className: "fixed inset-0 z-[100] flex items-start justify-center pt-[12vh] bg-black/60
|
|
16252
|
-
/* @__PURE__ */ jsxs88("div", { className: "flex items-center gap-3 px-4 border-b border-
|
|
16251
|
+
open && /* @__PURE__ */ jsx100("div", { className: "fixed inset-0 z-[100] flex items-start justify-center pt-[12vh] bg-black/60", onClick: () => setOpen(false), children: /* @__PURE__ */ jsxs88("div", { className: "w-full max-w-xl mx-4 rounded-2xl border border-border bg-card shadow-[0_30px_80px_-20px_rgba(0,0,0,.8)] overflow-hidden", onClick: (e) => e.stopPropagation(), children: [
|
|
16252
|
+
/* @__PURE__ */ jsxs88("div", { className: "flex items-center gap-3 px-4 border-b border-border", children: [
|
|
16253
16253
|
/* @__PURE__ */ jsx100(Search9, { size: 16, className: "text-muted-foreground" }),
|
|
16254
16254
|
/* @__PURE__ */ jsx100("input", { autoFocus: true, value: q, onChange: (e) => setQ(e.target.value), placeholder, className: "flex-1 h-12 bg-transparent outline-none text-sm" }),
|
|
16255
|
-
/* @__PURE__ */ jsx100("kbd", { className: "font-mono text-[10px] text-muted-foreground border border-
|
|
16255
|
+
/* @__PURE__ */ jsx100("kbd", { className: "font-mono text-[10px] text-muted-foreground border border-border rounded px-1", children: "esc" })
|
|
16256
16256
|
] }),
|
|
16257
16257
|
/* @__PURE__ */ jsxs88("ul", { className: "max-h-[50vh] overflow-auto p-2", children: [
|
|
16258
|
-
results.map((r, idx) => /* @__PURE__ */ jsx100("li", { children: /* @__PURE__ */ jsxs88("a", { href: r.href, className: "flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-
|
|
16258
|
+
results.map((r, idx) => /* @__PURE__ */ jsx100("li", { children: /* @__PURE__ */ jsxs88("a", { href: r.href, className: "flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-card/40", children: [
|
|
16259
16259
|
/* @__PURE__ */ jsx100("span", { className: "text-sm truncate", children: r.label }),
|
|
16260
16260
|
r.sublabel && /* @__PURE__ */ jsx100("span", { className: "text-xs text-muted-foreground truncate min-w-0", children: r.sublabel }),
|
|
16261
16261
|
r.group && /* @__PURE__ */ jsx100("span", { className: "ms-auto shrink-0 text-[10px] font-mono uppercase text-muted-foreground/60", children: r.group })
|