jaml-ui 0.24.0 → 0.24.2
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/components/JamlIdeToolbar.js +3 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/lib/hooks/useSeedAnalyzer.d.ts +1 -1
- package/dist/ui/jimbo.css +455 -99
- package/fonts.css +5 -5
- package/jaml.schema.json +172 -17
- package/package.json +27 -4
|
@@ -14,10 +14,11 @@ export function JamlIdeToolbar({ mode, onModeChange, resultCount = 0, className
|
|
|
14
14
|
display: "flex",
|
|
15
15
|
alignItems: "center",
|
|
16
16
|
justifyContent: "space-between",
|
|
17
|
-
flexWrap: "
|
|
17
|
+
flexWrap: "nowrap",
|
|
18
18
|
gap: 8,
|
|
19
|
+
minWidth: 0,
|
|
19
20
|
padding: "10px 10px 6px",
|
|
20
21
|
borderBottom: `1px solid ${JimboColorOption.PANEL_EDGE}`,
|
|
21
22
|
background: JimboColorOption.DARKEST,
|
|
22
|
-
}, children: [_jsx(JimboTabs, { tabs: tabs, activeTab: mode, onTabChange: (id) => onModeChange(id) }), onSearch ? (_jsx(JimboButton, { tone: isSearching ? "red" : "blue", size: "xs", onClick: onSearch, children: isSearching ? "Stop" : "Search" })) : null] }));
|
|
23
|
+
}, children: [_jsx("div", { style: { flex: "1 1 auto", minWidth: 0, overflow: "hidden" }, children: _jsx(JimboTabs, { tabs: tabs, activeTab: mode, onTabChange: (id) => onModeChange(id) }) }), onSearch ? (_jsx("div", { style: { flexShrink: 0 }, children: _jsx(JimboButton, { tone: isSearching ? "red" : "blue", size: "xs", onClick: onSearch, children: isSearching ? "Stop" : "Search" }) })) : null] }));
|
|
23
24
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "./ui/jimbo.css";
|
|
1
2
|
export { JAML_ASSET_FILES, resolveJamlAssetUrl, setJamlAssetBaseUrl, type JamlAssetFile, type JamlAssetKey, } from "./assets.js";
|
|
2
3
|
export { Layer, type LayerOptions } from "./render/Layer.js";
|
|
3
4
|
export { JamlCardRenderer, type JamlCardRendererProps } from "./render/CanvasRenderer.js";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Motely } from "motely-wasm";
|
|
2
2
|
export declare function useSeedAnalyzer(motely: typeof Motely | null, seed: string | null): {
|
|
3
|
-
data: Motely.Analysis.
|
|
3
|
+
data: Motely.Analysis.SeedAnalysisDto | null | undefined;
|
|
4
4
|
loading: boolean;
|
|
5
5
|
error: string | null;
|
|
6
6
|
};
|