@neus/sdk 1.0.4 → 1.0.6
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/README.md +21 -4
- package/SECURITY.md +11 -6
- package/cjs/client.cjs +132 -220
- package/cjs/gates.cjs +10 -33
- package/cjs/index.cjs +143 -252
- package/cjs/utils.cjs +0 -6
- package/cli/neus.mjs +589 -41
- package/client.js +1834 -1955
- package/errors.js +0 -34
- package/gates.js +73 -175
- package/index.js +0 -9
- package/package.json +5 -4
- package/types.d.ts +14 -459
- package/utils.js +1 -265
- package/widgets/README.md +45 -45
- package/widgets/index.js +0 -8
- package/widgets/verify-gate/dist/ProofBadge.js +0 -3
- package/widgets/verify-gate/dist/VerifyGate.js +58 -78
- package/widgets/verify-gate/index.js +0 -4
package/widgets/index.js
CHANGED
|
@@ -107,7 +107,6 @@ function ProofBadge({
|
|
|
107
107
|
textDecoration: "none",
|
|
108
108
|
padding: `${padY}px ${padX}px`,
|
|
109
109
|
borderRadius: 9999,
|
|
110
|
-
// rounded-full
|
|
111
110
|
border: "1px solid var(--neus-badge-border, rgba(148, 163, 184, 0.2))",
|
|
112
111
|
background: "var(--neus-badge-bg, rgba(148, 163, 184, 0.06))",
|
|
113
112
|
color: "var(--neus-badge-text, #94a3b8)",
|
|
@@ -206,7 +205,6 @@ function SimpleProofBadge({
|
|
|
206
205
|
textDecoration: "none",
|
|
207
206
|
padding: "2px 6px",
|
|
208
207
|
borderRadius: 9999,
|
|
209
|
-
// rounded-full
|
|
210
208
|
border: "1px solid var(--neus-badge-border, rgba(148, 163, 184, 0.2))",
|
|
211
209
|
background: "var(--neus-badge-bg, transparent)",
|
|
212
210
|
color: "var(--neus-badge-text, #94a3b8)",
|
|
@@ -267,7 +265,6 @@ function NeusPillLink({
|
|
|
267
265
|
textDecoration: "none",
|
|
268
266
|
padding: "2px 6px",
|
|
269
267
|
borderRadius: 9999,
|
|
270
|
-
// rounded-full
|
|
271
268
|
border: "1px solid var(--neus-badge-border, rgba(148, 163, 184, 0.2))",
|
|
272
269
|
background: "var(--neus-badge-bg, transparent)",
|
|
273
270
|
color: "var(--neus-badge-text, #94a3b8)",
|