lightnode-sdk 0.10.2 → 0.10.3

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.
Files changed (2) hide show
  1. package/dist/add.js +1 -1
  2. package/package.json +1 -1
package/dist/add.js CHANGED
@@ -1281,7 +1281,7 @@ export default function ChatWeb3() {
1281
1281
  onChange={(e) => setModel(e.target.value as ModelId)}
1282
1282
  disabled={busy}
1283
1283
  title="Model (both live on LightChain mainnet)"
1284
- className="rounded-lg border border-border bg-background px-2 py-1 text-xs font-medium text-muted-foreground outline-none focus:ring-2 focus:ring-primary disabled:opacity-50"
1284
+ className="cursor-pointer rounded-lg bg-muted-foreground/10 px-2 py-1 text-xs font-medium text-muted-foreground outline-none transition-colors hover:bg-muted-foreground/15 focus:ring-1 focus:ring-primary disabled:opacity-50"
1285
1285
  >
1286
1286
  {MODELS.map((m) => (
1287
1287
  <option key={m} value={m}>{m}</option>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightnode-sdk",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "Read-only TypeScript client for LightChain AI: workers, jobs, models, on-chain registration, and per-model network analytics. Independent, community-built (not an official LightChain package).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",