commit 6743b5f56140ce1826f9bdadc6ee7c3b58553944
parent 34d934c0c309e33e3790cf777241e033adb3399b
Author: triesap <137732411+triesap@users.noreply.github.com>
Date: Fri, 23 May 2025 02:46:31 +0000
utils: edit types, package.json
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/utils/package.json b/utils/package.json
@@ -34,10 +34,10 @@
"@nostr-dev-kit/ndk": "^2.11.0",
"@sveltekit-i18n/base": "^1.3.7",
"@sveltekit-i18n/parser-icu": "^1.0.8",
- "@radroots/radroots-common-bindings": "workspace:*",
+ "@radroots/radroots-common-bindings": "*",
"convert": "^5.5.1",
"geohashing": "^2.0.1",
- "nostr-geotags": "workspace:*",
+ "nostr-geotags": "*",
"nostr-tools": "^2.10.4",
"sveltekit-i18n": "^2.4.2",
"uuid": "^10.0.0",
diff --git a/utils/src/app/glyph.ts b/utils/src/app/glyph.ts
@@ -1,6 +1,7 @@
import type { GeometryCardinalDirection } from "$root";
export type GlyphKey = |
+ string |
`chat-text` |
`eye` |
`export` |
@@ -127,4 +128,4 @@ export type GlyphKey = |
`caret-up-down`;
export type GlyphKeyCurrency = `dollar` | `eur`;
-export type GlyphWeight = `bold` | `fill`
+export type GlyphWeight = `bold` | `fill` | `light`;