@orangecheck/design 0.28.10 → 0.28.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/chrome.js +4 -0
- package/dist/chrome.js.map +1 -1
- package/dist/chrome.mjs +4 -0
- package/dist/chrome.mjs.map +1 -1
- package/dist/components.js +4 -0
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +4 -0
- package/dist/components.mjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/dist/primitives.js +1 -1
- package/dist/primitives.js.map +1 -1
- package/dist/primitives.mjs +1 -1
- package/dist/primitives.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2894,7 +2894,7 @@ function TabsList({ className, ...props }) {
|
|
|
2894
2894
|
{
|
|
2895
2895
|
"data-slot": "tabs-list",
|
|
2896
2896
|
className: cn(
|
|
2897
|
-
"border-border -mb-px flex
|
|
2897
|
+
"border-border -mb-px flex flex-wrap items-center gap-6 border-b",
|
|
2898
2898
|
className
|
|
2899
2899
|
),
|
|
2900
2900
|
...props
|
|
@@ -4862,6 +4862,10 @@ function OcAccountMenuView({
|
|
|
4862
4862
|
) : null
|
|
4863
4863
|
] }),
|
|
4864
4864
|
/* @__PURE__ */ jsxRuntime.jsx(CopyableDid, { did: account.didOc }),
|
|
4865
|
+
account.displayIdentity.kind !== "did" && account.displayIdentity.value ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-1 flex items-center gap-1.5 font-mono text-[10px] tracking-wide", children: [
|
|
4866
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-muted-foreground/50 uppercase", children: IDENTITY_KIND_LABEL[account.displayIdentity.kind] }),
|
|
4867
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-foreground/75", children: obscureIdentity(account.displayIdentity.value) })
|
|
4868
|
+
] }) : null,
|
|
4865
4869
|
displayName ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-muted-foreground/80 mt-1 font-mono text-[10px] tracking-wide", children: displayName }) : null
|
|
4866
4870
|
] }),
|
|
4867
4871
|
/* @__PURE__ */ jsxRuntime.jsx(
|