jaml-ui 0.24.0 → 0.24.1

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.
@@ -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: "wrap",
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,4 +1,5 @@
1
1
  "use client";
2
+ import "./ui/jimbo.css";
2
3
  export { JAML_ASSET_FILES, resolveJamlAssetUrl, setJamlAssetBaseUrl, } from "./assets.js";
3
4
  export { Layer } from "./render/Layer.js";
4
5
  export { JamlCardRenderer } from "./render/CanvasRenderer.js";
@@ -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.MotelyLegacyTextAnalyzer | null | undefined;
3
+ data: Motely.Analysis.SeedAnalysisDto | null | undefined;
4
4
  loading: boolean;
5
5
  error: string | null;
6
6
  };