jaml-ui 4.1.1 → 4.1.3
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/JamlyzerView.d.ts +3 -1
- package/dist/index.js +523 -506
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ export interface JamlyzerViewProps {
|
|
|
5
5
|
result: MotelyJamlyzerSeedResult;
|
|
6
6
|
deck?: MotelyDeck;
|
|
7
7
|
stake?: MotelyStake;
|
|
8
|
+
/** Maximum ante number to display in the rail. Antes 0–39 are valid in Balatro. */
|
|
9
|
+
maxAnte?: number;
|
|
8
10
|
/** Raw JAML text used to derive clause identities for highlighting. */
|
|
9
11
|
jamlText?: string;
|
|
10
12
|
/** Pre-parsed clauses (alternative to `jamlText`). */
|
|
@@ -14,4 +16,4 @@ export interface JamlyzerViewProps {
|
|
|
14
16
|
/** Called when the user hovers a clause in the scoreboard. */
|
|
15
17
|
onHoverClause?: (clause: ParsedJamlClause | null) => void;
|
|
16
18
|
}
|
|
17
|
-
export declare function JamlyzerView({ result, deck, stake, jamlText, clauses: clausesProp, tallies, onHoverClause }: JamlyzerViewProps): React.JSX.Element;
|
|
19
|
+
export declare function JamlyzerView({ result, deck, stake, maxAnte: maxAnteProp, jamlText, clauses: clausesProp, tallies, onHoverClause, }: JamlyzerViewProps): React.JSX.Element;
|