kaleido-ui 0.1.3 → 0.1.4

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": "kaleido-ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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",
@@ -32,7 +32,8 @@
32
32
  ],
33
33
  "scripts": {
34
34
  "generate:css": "node node_modules/tsx/dist/cli.mjs scripts/generate-css.ts",
35
- "build": "npm run generate:css && tsup && mkdir -p dist/css && cp src/css/kaleido-ui.css dist/css/kaleido-ui.css",
35
+ "check:tokens": "node node_modules/tsx/dist/cli.mjs scripts/check-tokens.ts",
36
+ "build": "npm run generate:css && npm run check:tokens && tsup && mkdir -p dist/css && cp src/css/kaleido-ui.css dist/css/kaleido-ui.css",
36
37
  "dev": "tsup --watch",
37
38
  "showcase": "vite --config showcase/vite.config.ts",
38
39
  "showcase:build": "npm run generate:css && vite build --config showcase/vite.config.ts",
@@ -40,11 +41,13 @@
40
41
  "clean": "rm -rf dist"
41
42
  },
42
43
  "dependencies": {
43
- "@tetherto/wdk-uikit-react-native": "^1.0.0-beta.2"
44
+ "@tetherto/wdk-uikit-react-native": "^1.0.0-beta.2",
45
+ "qr": "^0.5.5"
44
46
  },
45
47
  "peerDependencies": {
46
48
  "@radix-ui/react-dialog": "^1.1.0",
47
49
  "@radix-ui/react-label": "^2.1.0",
50
+ "@radix-ui/react-select": "^2.1.0",
48
51
  "@radix-ui/react-slot": "^1.2.0",
49
52
  "@radix-ui/react-tabs": "^1.1.0",
50
53
  "@radix-ui/react-toast": "^1.2.0",
@@ -65,6 +68,9 @@
65
68
  "@radix-ui/react-dialog": {
66
69
  "optional": true
67
70
  },
71
+ "@radix-ui/react-select": {
72
+ "optional": true
73
+ },
68
74
  "@radix-ui/react-label": {
69
75
  "optional": true
70
76
  },
@@ -90,12 +96,13 @@
90
96
  "devDependencies": {
91
97
  "@radix-ui/react-dialog": "^1.1.15",
92
98
  "@radix-ui/react-label": "^2.1.8",
99
+ "@radix-ui/react-select": "^2.1.7",
93
100
  "@radix-ui/react-slot": "^1.2.4",
94
101
  "@radix-ui/react-tabs": "^1.1.13",
95
102
  "@radix-ui/react-toast": "^1.2.15",
96
103
  "@tailwindcss/vite": "^4.2.4",
97
- "@types/react": "^19.2.14",
98
- "@types/react-dom": "^19.2.3",
104
+ "@types/react": "^18.3.28",
105
+ "@types/react-dom": "^18.3.7",
99
106
  "@types/react-native": "^0.72.8",
100
107
  "@vitejs/plugin-react": "^4.3.0",
101
108
  "autoprefixer": "^10.5.0",