mac-human-design 0.1.2 → 0.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mac-human-design",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Reusable macOS-oriented UI primitives and SF Symbols bridge for Tauri apps.",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -1,4 +1,3 @@
1
- import { ReactNode } from "react";
2
1
  import { Block } from "baseui/block";
3
2
  import { useStyletron } from "baseui";
4
3
 
@@ -7,7 +7,6 @@ import { Block } from "baseui/block";
7
7
  const SYMBOL_SCALE_MULTIPLIER = 2.5;
8
8
  const SYMBOL_MIN_POINT_SIZE = 10;
9
9
  const SYMBOL_MAX_POINT_SIZE = 160;
10
- const DEFAULT_SYMBOL_POINT_SIZE = 18;
11
10
 
12
11
  const systemSymbolIconCache = new Map<string, string | null>();
13
12