kaleido-ui 0.1.59 → 0.1.60

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.
Binary file
@@ -29,6 +29,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
29
29
  var fonts_exports = {};
30
30
  __export(fonts_exports, {
31
31
  kaleidoFonts: () => kaleidoFonts,
32
+ monoFontFamily: () => monoFontFamily,
32
33
  satoshiFamilyForWeight: () => satoshiFamilyForWeight,
33
34
  satoshiFontFamily: () => satoshiFontFamily
34
35
  });
@@ -37,12 +38,15 @@ var import_Satoshi_Regular = __toESM(require("./fonts/Satoshi-Regular.ttf"), 1);
37
38
  var import_Satoshi_Medium = __toESM(require("./fonts/Satoshi-Medium.ttf"), 1);
38
39
  var import_Satoshi_Bold = __toESM(require("./fonts/Satoshi-Bold.ttf"), 1);
39
40
  var import_Satoshi_Black = __toESM(require("./fonts/Satoshi-Black.ttf"), 1);
41
+ var import_GeistMono = __toESM(require("./fonts/GeistMono.ttf"), 1);
40
42
  const kaleidoFonts = {
41
43
  "Satoshi-Regular": import_Satoshi_Regular.default,
42
44
  "Satoshi-Medium": import_Satoshi_Medium.default,
43
45
  "Satoshi-Bold": import_Satoshi_Bold.default,
44
- "Satoshi-Black": import_Satoshi_Black.default
46
+ "Satoshi-Black": import_Satoshi_Black.default,
47
+ GeistMono: import_GeistMono.default
45
48
  };
49
+ const monoFontFamily = "GeistMono";
46
50
  const satoshiFontFamily = {
47
51
  regular: "Satoshi-Regular",
48
52
  medium: "Satoshi-Medium",
@@ -64,6 +68,7 @@ function satoshiFamilyForWeight(weight) {
64
68
  // Annotate the CommonJS export names for ESM import in node:
65
69
  0 && (module.exports = {
66
70
  kaleidoFonts,
71
+ monoFontFamily,
67
72
  satoshiFamilyForWeight,
68
73
  satoshiFontFamily
69
74
  });
@@ -4,6 +4,12 @@
4
4
  * you use as `fontFamily` in styles (identical on iOS and Android).
5
5
  */
6
6
  declare const kaleidoFonts: Record<string, number>;
7
+ /**
8
+ * Monospaced family for numerals / equivalent balances — Geist Mono (the same
9
+ * face the web/extension references). Use for tabular amounts; pair with the
10
+ * `mono` text role rather than the Satoshi body face.
11
+ */
12
+ declare const monoFontFamily = "GeistMono";
7
13
  /** Registered Satoshi family names, by semantic weight. */
8
14
  declare const satoshiFontFamily: {
9
15
  readonly regular: "Satoshi-Regular";
@@ -22,4 +28,4 @@ type SatoshiWeightName = keyof typeof satoshiFontFamily;
22
28
  */
23
29
  declare function satoshiFamilyForWeight(weight?: string | number): string;
24
30
 
25
- export { type SatoshiWeightName, kaleidoFonts, satoshiFamilyForWeight, satoshiFontFamily };
31
+ export { type SatoshiWeightName, kaleidoFonts, monoFontFamily, satoshiFamilyForWeight, satoshiFontFamily };
@@ -4,6 +4,12 @@
4
4
  * you use as `fontFamily` in styles (identical on iOS and Android).
5
5
  */
6
6
  declare const kaleidoFonts: Record<string, number>;
7
+ /**
8
+ * Monospaced family for numerals / equivalent balances — Geist Mono (the same
9
+ * face the web/extension references). Use for tabular amounts; pair with the
10
+ * `mono` text role rather than the Satoshi body face.
11
+ */
12
+ declare const monoFontFamily = "GeistMono";
7
13
  /** Registered Satoshi family names, by semantic weight. */
8
14
  declare const satoshiFontFamily: {
9
15
  readonly regular: "Satoshi-Regular";
@@ -22,4 +28,4 @@ type SatoshiWeightName = keyof typeof satoshiFontFamily;
22
28
  */
23
29
  declare function satoshiFamilyForWeight(weight?: string | number): string;
24
30
 
25
- export { type SatoshiWeightName, kaleidoFonts, satoshiFamilyForWeight, satoshiFontFamily };
31
+ export { type SatoshiWeightName, kaleidoFonts, monoFontFamily, satoshiFamilyForWeight, satoshiFontFamily };
@@ -2,12 +2,15 @@ import SatoshiRegular from "./fonts/Satoshi-Regular.ttf";
2
2
  import SatoshiMedium from "./fonts/Satoshi-Medium.ttf";
3
3
  import SatoshiBold from "./fonts/Satoshi-Bold.ttf";
4
4
  import SatoshiBlack from "./fonts/Satoshi-Black.ttf";
5
+ import GeistMono from "./fonts/GeistMono.ttf";
5
6
  const kaleidoFonts = {
6
7
  "Satoshi-Regular": SatoshiRegular,
7
8
  "Satoshi-Medium": SatoshiMedium,
8
9
  "Satoshi-Bold": SatoshiBold,
9
- "Satoshi-Black": SatoshiBlack
10
+ "Satoshi-Black": SatoshiBlack,
11
+ GeistMono
10
12
  };
13
+ const monoFontFamily = "GeistMono";
11
14
  const satoshiFontFamily = {
12
15
  regular: "Satoshi-Regular",
13
16
  medium: "Satoshi-Medium",
@@ -28,6 +31,7 @@ function satoshiFamilyForWeight(weight) {
28
31
  }
29
32
  export {
30
33
  kaleidoFonts,
34
+ monoFontFamily,
31
35
  satoshiFamilyForWeight,
32
36
  satoshiFontFamily
33
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
4
4
  "description": "KaleidoSwap shared UI library — design tokens, web components (Tailwind + Radix), and React Native components extending WDK UI Kit",
5
5
  "license": "MIT",
6
6
  "type": "module",