@orangecheck/design 0.28.11 → 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 +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/components.mjs
CHANGED
|
@@ -2252,6 +2252,10 @@ function OcAccountMenuView({
|
|
|
2252
2252
|
) : null
|
|
2253
2253
|
] }),
|
|
2254
2254
|
/* @__PURE__ */ jsx(CopyableDid, { did: account.didOc }),
|
|
2255
|
+
account.displayIdentity.kind !== "did" && account.displayIdentity.value ? /* @__PURE__ */ jsxs("div", { className: "mt-1 flex items-center gap-1.5 font-mono text-[10px] tracking-wide", children: [
|
|
2256
|
+
/* @__PURE__ */ jsx("span", { className: "text-muted-foreground/50 uppercase", children: IDENTITY_KIND_LABEL[account.displayIdentity.kind] }),
|
|
2257
|
+
/* @__PURE__ */ jsx("span", { className: "text-foreground/75", children: obscureIdentity(account.displayIdentity.value) })
|
|
2258
|
+
] }) : null,
|
|
2255
2259
|
displayName ? /* @__PURE__ */ jsx("div", { className: "text-muted-foreground/80 mt-1 font-mono text-[10px] tracking-wide", children: displayName }) : null
|
|
2256
2260
|
] }),
|
|
2257
2261
|
/* @__PURE__ */ jsx(
|