jaml-ui 2.2.0 → 2.3.0

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.
@@ -1,3 +1,4 @@
1
+ import { SpriteSheetType } from '../sprites/spriteMapper.js';
1
2
  export type JamlZone = "must" | "should" | "mustnot";
2
3
  export interface JamlVisualClause {
3
4
  id: string;
@@ -27,4 +28,5 @@ export interface JamlIdeVisualProps {
27
28
  /** Tap the "?" mystery tile to add a new clause to a zone (Pass 2 wires this to the cascade picker). */
28
29
  onAddClause?: (zone: JamlZone) => void;
29
30
  }
31
+ export declare function clauseSpriteSheet(type: string): SpriteSheetType | undefined;
30
32
  export declare function JamlIdeVisual({ filter, onChange, onEditClause, onAddClause }: JamlIdeVisualProps): import("react/jsx-runtime").JSX.Element;