@orangecheck/design 0.28.11 → 0.28.13
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.d.mts +1 -1
- package/dist/chrome.d.ts +1 -1
- package/dist/chrome.js +20 -0
- package/dist/chrome.js.map +1 -1
- package/dist/chrome.mjs +20 -0
- package/dist/chrome.mjs.map +1 -1
- package/dist/components.js +20 -0
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +20 -0
- package/dist/components.mjs.map +1 -1
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/chrome.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
import { DisplayIdentity, OcSignOutScope, DisplayIdentityKind, OcAccountSummary } from '@orangecheck/auth-client';
|
|
4
4
|
|
|
5
|
-
type EcosystemSlug = 'home' | 'docs' | 'fleet' | 'me' | 'vault' | 'chat' | 'cosign' | 'btc' | 'attest' | 'lock' | 'vote' | 'stamp' | 'agent' | 'pledge' | 'analytics' | 'bot' | 'forge';
|
|
5
|
+
type EcosystemSlug = 'home' | 'docs' | 'fleet' | 'me' | 'vault' | 'chat' | 'cosign' | 'btc' | 'globe' | 'attest' | 'lock' | 'vote' | 'stamp' | 'agent' | 'pledge' | 'analytics' | 'bot' | 'forge';
|
|
6
6
|
interface EcosystemSwitcherProps {
|
|
7
7
|
current: EcosystemSlug;
|
|
8
8
|
className?: string;
|
package/dist/chrome.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
import { DisplayIdentity, OcSignOutScope, DisplayIdentityKind, OcAccountSummary } from '@orangecheck/auth-client';
|
|
4
4
|
|
|
5
|
-
type EcosystemSlug = 'home' | 'docs' | 'fleet' | 'me' | 'vault' | 'chat' | 'cosign' | 'btc' | 'attest' | 'lock' | 'vote' | 'stamp' | 'agent' | 'pledge' | 'analytics' | 'bot' | 'forge';
|
|
5
|
+
type EcosystemSlug = 'home' | 'docs' | 'fleet' | 'me' | 'vault' | 'chat' | 'cosign' | 'btc' | 'globe' | 'attest' | 'lock' | 'vote' | 'stamp' | 'agent' | 'pledge' | 'analytics' | 'bot' | 'forge';
|
|
6
6
|
interface EcosystemSwitcherProps {
|
|
7
7
|
current: EcosystemSlug;
|
|
8
8
|
className?: string;
|
package/dist/chrome.js
CHANGED
|
@@ -86,6 +86,13 @@ var ENTRIES = [
|
|
|
86
86
|
sub: "read \u2014 bitcoin desk",
|
|
87
87
|
docsHref: "https://btc.ochk.io/data"
|
|
88
88
|
},
|
|
89
|
+
{
|
|
90
|
+
slug: "globe",
|
|
91
|
+
href: "https://globe.ochk.io",
|
|
92
|
+
label: "oc\xB7globe",
|
|
93
|
+
sub: "watch \u2014 the network, live",
|
|
94
|
+
docsHref: "https://globe.ochk.io/sources"
|
|
95
|
+
},
|
|
89
96
|
{
|
|
90
97
|
slug: "attest",
|
|
91
98
|
href: "https://attest.ochk.io",
|
|
@@ -453,6 +460,15 @@ var FAMILY_PROPERTIES = [
|
|
|
453
460
|
docsHref: "https://btc.ochk.io/data",
|
|
454
461
|
category: "product"
|
|
455
462
|
},
|
|
463
|
+
{
|
|
464
|
+
slug: "globe",
|
|
465
|
+
origin: "https://globe.ochk.io",
|
|
466
|
+
hostname: "globe.ochk.io",
|
|
467
|
+
label: "oc\xB7globe",
|
|
468
|
+
sub: "watch \u2014 the network, live",
|
|
469
|
+
docsHref: "https://globe.ochk.io/sources",
|
|
470
|
+
category: "product"
|
|
471
|
+
},
|
|
456
472
|
{
|
|
457
473
|
slug: "attest",
|
|
458
474
|
origin: "https://attest.ochk.io",
|
|
@@ -1394,6 +1410,10 @@ function OcAccountMenuView({
|
|
|
1394
1410
|
) : null
|
|
1395
1411
|
] }),
|
|
1396
1412
|
/* @__PURE__ */ jsxRuntime.jsx(CopyableDid, { did: account.didOc }),
|
|
1413
|
+
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: [
|
|
1414
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-muted-foreground/50 uppercase", children: IDENTITY_KIND_LABEL[account.displayIdentity.kind] }),
|
|
1415
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-foreground/75", children: obscureIdentity(account.displayIdentity.value) })
|
|
1416
|
+
] }) : null,
|
|
1397
1417
|
displayName ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-muted-foreground/80 mt-1 font-mono text-[10px] tracking-wide", children: displayName }) : null
|
|
1398
1418
|
] }),
|
|
1399
1419
|
/* @__PURE__ */ jsxRuntime.jsx(
|