jaml-ui 0.24.18 → 0.24.19
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +11 -12
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export { useMotelyStream, type StreamItem, type StreamState } from "./hooks/useS
|
|
|
24
24
|
export { useSearch, type SearchResult, type SearchStatus, type UseSearchState, } from "./hooks/useSearch.js";
|
|
25
25
|
export { useAnalyzer, type AnalyzerStatus, type AnalyzerLive, type MotelyJsRunState, } from "./hooks/useAnalyzer.js";
|
|
26
26
|
export { setMotelyEnums as setMotelyDisplayEnums } from "./motelyDisplay.js";
|
|
27
|
-
export { setMotelyEnums as setMotelyDecoderEnums } from "./decode/motelyItemDecoder.js";
|
|
27
|
+
export { setMotelyEnums as setMotelyDecoderEnums, motelyItemRenderCategory, } from "./decode/motelyItemDecoder.js";
|
|
28
28
|
export { PaginatedFilterBrowser, type PaginatedFilterBrowserProps, type FilterItem, } from "./components/PaginatedFilterBrowser.js";
|
|
29
29
|
export { JamlAestheticSelector, type JamlAestheticSelectorProps, type JamlAestheticOption, } from "./components/JamlAestheticSelector.js";
|
|
30
30
|
export { JamlSeedInput, type JamlSeedInputProps, } from "./components/JamlSeedInput.js";
|
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ export { useAnalyzer, } from "./hooks/useAnalyzer.js";
|
|
|
28
28
|
// and call setMotelyEnums(Motely) once after boot so display/decoder helpers
|
|
29
29
|
// can resolve enum keys without statically importing motely-wasm.
|
|
30
30
|
export { setMotelyEnums as setMotelyDisplayEnums } from "./motelyDisplay.js";
|
|
31
|
-
export { setMotelyEnums as setMotelyDecoderEnums } from "./decode/motelyItemDecoder.js";
|
|
31
|
+
export { setMotelyEnums as setMotelyDecoderEnums, motelyItemRenderCategory, } from "./decode/motelyItemDecoder.js";
|
|
32
32
|
export { PaginatedFilterBrowser, } from "./components/PaginatedFilterBrowser.js";
|
|
33
33
|
export { JamlAestheticSelector, } from "./components/JamlAestheticSelector.js";
|
|
34
34
|
export { JamlSeedInput, } from "./components/JamlSeedInput.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jaml-ui",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.19",
|
|
4
4
|
"description": "Balatro rendering components, sprite metadata, and optional Motely helpers for React apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -56,16 +56,6 @@
|
|
|
56
56
|
"DESIGN.md",
|
|
57
57
|
"LICENSE"
|
|
58
58
|
],
|
|
59
|
-
"scripts": {
|
|
60
|
-
"build": "tsc --pretty false && node -e \"const fs=require('fs');fs.mkdirSync('dist/ui',{recursive:true});fs.copyFileSync('src/ui/jimbo.css','dist/ui/jimbo.css');\"",
|
|
61
|
-
"dev": "tsc --watch",
|
|
62
|
-
"demo": "vite --config demo/vite.config.ts",
|
|
63
|
-
"typecheck": "tsc --noEmit --pretty false",
|
|
64
|
-
"prepack": "npm run build",
|
|
65
|
-
"storybook": "storybook dev -p 6006",
|
|
66
|
-
"build-storybook": "storybook build",
|
|
67
|
-
"lint": "eslint ."
|
|
68
|
-
},
|
|
69
59
|
"engines": {
|
|
70
60
|
"node": ">=18"
|
|
71
61
|
},
|
|
@@ -171,5 +161,14 @@
|
|
|
171
161
|
"lucide-react": "^1.14.0",
|
|
172
162
|
"tailwind-merge": "^2.6.1",
|
|
173
163
|
"zustand": "^5.0.0"
|
|
164
|
+
},
|
|
165
|
+
"scripts": {
|
|
166
|
+
"build": "tsc --pretty false && node -e \"const fs=require('fs');fs.mkdirSync('dist/ui',{recursive:true});fs.copyFileSync('src/ui/jimbo.css','dist/ui/jimbo.css');\"",
|
|
167
|
+
"dev": "tsc --watch",
|
|
168
|
+
"demo": "vite --config demo/vite.config.ts",
|
|
169
|
+
"typecheck": "tsc --noEmit --pretty false",
|
|
170
|
+
"storybook": "storybook dev -p 6006",
|
|
171
|
+
"build-storybook": "storybook build",
|
|
172
|
+
"lint": "eslint ."
|
|
174
173
|
}
|
|
175
|
-
}
|
|
174
|
+
}
|