jaml-ui 4.1.3 → 4.2.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.
@@ -0,0 +1,20 @@
1
+ import { default as React } from 'react';
2
+ export interface JimboBalatroFooterProps {
3
+ /** Fade the footer out */
4
+ hidden?: boolean;
5
+ /** Extra className */
6
+ className?: string;
7
+ /** Inline style override — e.g. `{ position: 'static' }` to opt out of the
8
+ * default fixed-to-viewport placement when embedding outside the 320×568
9
+ * MCP App frame. */
10
+ style?: React.CSSProperties;
11
+ /** Optional inline children */
12
+ children?: React.ReactNode;
13
+ }
14
+ /**
15
+ * Fan-site attribution footer with Balatro link. The "Balatro" in the name is
16
+ * load-bearing — this footer is the public disclosure that the project is a
17
+ * non-profit, rule-following, PlayStack-aware fan site. Always rendered;
18
+ * required attribution for using Balatro art.
19
+ */
20
+ export declare function JimboBalatroFooter({ hidden, className, style, children }: JimboBalatroFooterProps): React.JSX.Element | null;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export { JamlCardRenderer, type JamlCardRendererProps, } from './render/CanvasRenderer.js';
2
2
  export { JamlGameCard, JamlVoucher, JamlTag, JamlBoss, resolveAnalyzerShopItem, type JamlGameCardProps, type AnalyzerShopItem, type AnalyzerResolvedItem, } from './components/GameCard.js';
3
3
  export { JamlyzerView, type JamlyzerViewProps, } from './components/JamlyzerView.js';
4
+ export { JimboBalatroFooter, type JimboBalatroFooterProps, } from './components/JimboBalatroFooter.js';
4
5
  export { JamlyzerBulk, type JamlyzerBulkProps, } from './components/JamlyzerBulk.js';
5
6
  export { parseJamlClauses, type ParsedJamlClause, type JamlClauseKind, type JamlItemType, type ParsedJamlFilters, matchClauseToItem, matchClauseToAnte, matchMotelyItemToClause, } from './lib/jaml/parseClauses.js';
6
7
  export { DeckSprite, DECK_SPRITE_POS, STAKE_SPRITE_POS, type DeckSpriteProps, } from './components/DeckSprite.js';