jaml-ui 4.2.5 → 4.2.6

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,8 @@
1
+ import { default as React } from 'react';
2
+ export interface JamlCodeEditorProps {
3
+ value: string;
4
+ onChange: (value: string) => void;
5
+ placeholder?: string;
6
+ minHeight?: number;
7
+ }
8
+ export declare function JamlCodeEditor({ value, onChange, placeholder, minHeight, }: JamlCodeEditorProps): React.JSX.Element;
@@ -0,0 +1,44 @@
1
+ import { default as React } from 'react';
2
+ import { JamlIdeMode } from './JamlIdeToolbar.js';
3
+ import { JamlVisualFilter } from './JamlIdeVisual.js';
4
+ export interface JamlIdeSearchResult {
5
+ seed: string;
6
+ score?: number;
7
+ tallyColumns?: number[];
8
+ tallyLabels?: string[];
9
+ }
10
+ export interface JamlIdeProps {
11
+ /** Controlled value. When provided alongside `onChange`, the editor is fully controlled. */
12
+ jaml?: string;
13
+ /** Initial value for uncontrolled mode. Ignored when `jaml` is provided on first render. */
14
+ defaultJaml?: string;
15
+ /** Subscriber for every edit. Optional — the editor still works without it. */
16
+ onChange?: (jaml: string) => void;
17
+ defaultMode?: JamlIdeMode;
18
+ searchResults?: JamlIdeSearchResult[];
19
+ className?: string;
20
+ style?: React.CSSProperties;
21
+ title?: string;
22
+ subtitle?: React.ReactNode;
23
+ compactHeader?: boolean;
24
+ actions?: React.ReactNode;
25
+ codePlaceholder?: string;
26
+ onSearch?: () => void;
27
+ isSearching?: boolean;
28
+ /**
29
+ * Shows a "Load File" button in the toolbar and loads the selected file into the editor.
30
+ * When `onLoadFile` is provided, that callback is used (for example, a mounted library flow).
31
+ * Otherwise the component falls back to a browser file picker.
32
+ */
33
+ showLoadFileButton?: boolean;
34
+ onLoadFile?: () => Promise<string | null> | string | null;
35
+ /**
36
+ * Controlled visual filter. When provided alongside `onVisualFilterChange`, the Visual tab
37
+ * is fully controlled by the parent. When absent, the Visual tab auto-derives from the text.
38
+ */
39
+ visualFilter?: JamlVisualFilter;
40
+ onVisualFilterChange?: (filter: JamlVisualFilter) => void;
41
+ }
42
+ export type { JamlVisualFilter } from './JamlIdeVisual.js';
43
+ export type { JamlVisualClause, JamlZone } from './JamlIdeVisual.js';
44
+ export declare function JamlIde({ jaml, defaultJaml, onChange, defaultMode, searchResults, className, style, title, subtitle, compactHeader, actions, codePlaceholder, onSearch, isSearching, showLoadFileButton, onLoadFile, visualFilter, onVisualFilterChange, }: JamlIdeProps): React.JSX.Element;
@@ -0,0 +1,15 @@
1
+ import { default as React } from 'react';
2
+ export type JamlIdeMode = "visual" | "code" | "map" | "results" | "jamlyzer";
3
+ export interface JamlIdeToolbarProps {
4
+ mode: JamlIdeMode;
5
+ onModeChange: (mode: JamlIdeMode) => void;
6
+ resultCount?: number;
7
+ showResultsTab?: boolean;
8
+ showJamlyzerTab?: boolean;
9
+ className?: string;
10
+ onSearch?: () => void;
11
+ isSearching?: boolean;
12
+ onLoadFile?: () => void;
13
+ isLoadingFile?: boolean;
14
+ }
15
+ export declare function JamlIdeToolbar({ mode, onModeChange, resultCount, showResultsTab, showJamlyzerTab, className, onSearch, isSearching, onLoadFile, isLoadingFile, }: JamlIdeToolbarProps): React.JSX.Element;
@@ -0,0 +1,31 @@
1
+ import { default as React } from 'react';
2
+ export type JamlZone = "must" | "should" | "mustnot";
3
+ export interface JamlVisualClause {
4
+ id: string;
5
+ type: string;
6
+ value: string;
7
+ label?: string;
8
+ antes?: number[];
9
+ boosterPacks?: number[];
10
+ score?: number;
11
+ edition?: string;
12
+ }
13
+ export interface JamlVisualFilter {
14
+ name?: string;
15
+ author?: string;
16
+ description?: string;
17
+ deck?: string;
18
+ stake?: string;
19
+ must: JamlVisualClause[];
20
+ should: JamlVisualClause[];
21
+ mustnot: JamlVisualClause[];
22
+ }
23
+ export interface JamlIdeVisualProps {
24
+ filter: JamlVisualFilter;
25
+ onChange: (filter: JamlVisualFilter) => void;
26
+ /** Tap a clause to edit it (Pass 2 wires this to the cascade picker). */
27
+ onEditClause?: (zone: JamlZone, clause: JamlVisualClause) => void;
28
+ /** Tap the "?" mystery tile to add a new clause to a zone (Pass 2 wires this to the cascade picker). */
29
+ onAddClause?: (zone: JamlZone) => void;
30
+ }
31
+ export declare function JamlIdeVisual({ filter, onChange, onEditClause, onAddClause }: JamlIdeVisualProps): React.JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ export interface JamlMapPreviewProps {
3
+ /** The raw JAML string to parse and visualize. */
4
+ jaml: string;
5
+ className?: string;
6
+ emptyMessage?: string;
7
+ tallyColumns?: number[];
8
+ tallyLabels?: string[];
9
+ /** Reduces padding and sizes for sidebar/explorer usage. */
10
+ compact?: boolean;
11
+ }
12
+ export declare function JamlMapPreview({ jaml, className, emptyMessage, tallyColumns, tallyLabels, compact, }: JamlMapPreviewProps): React.JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ export interface JamlyzerProps {
3
+ /** Full JAML document. Seeds come from the top-level `seeds:` array via Motely. */
4
+ jaml: string;
5
+ className?: string;
6
+ style?: React.CSSProperties;
7
+ }
8
+ export declare function Jamlyzer({ jaml, className, style }: JamlyzerProps): React.JSX.Element;
@@ -0,0 +1,33 @@
1
+ import { default as React } from 'react';
2
+ import { SpriteEntry } from '../../sprites/spriteData.js';
3
+ import { SpriteSheetType } from '../../sprites/spriteMapper.js';
4
+ import { SlotSelection, SlotCategory } from './MysterySlot.js';
5
+ export interface CategoryPickerConfig {
6
+ /** Display title, e.g. "Vouchers" */
7
+ title: string;
8
+ /** The SlotCategory value */
9
+ category: SlotCategory;
10
+ /** JAML clause key emitted on select, e.g. "voucher" */
11
+ clauseKey: string;
12
+ /** Which sprite sheet to render from */
13
+ sheet: SpriteSheetType;
14
+ /** Full list of items for the grid */
15
+ items: SpriteEntry[];
16
+ /** Accent color for the header/buttons */
17
+ accent: string;
18
+ /** Optional tooltip hint shown in the "Any" button area */
19
+ hint?: string;
20
+ }
21
+ export interface CategoryPickerProps {
22
+ config: CategoryPickerConfig;
23
+ onSelect: (selection: SlotSelection) => void;
24
+ onCancel?: () => void;
25
+ }
26
+ export declare function CategoryPicker({ config, onSelect }: CategoryPickerProps): React.JSX.Element;
27
+ export declare const VOUCHER_PICKER_CONFIG: CategoryPickerConfig;
28
+ export declare const TAG_PICKER_CONFIG: CategoryPickerConfig;
29
+ export declare const BOSS_PICKER_CONFIG: CategoryPickerConfig;
30
+ export declare const TAROT_PICKER_CONFIG: CategoryPickerConfig;
31
+ export declare const PLANET_PICKER_CONFIG: CategoryPickerConfig;
32
+ export declare const SPECTRAL_PICKER_CONFIG: CategoryPickerConfig;
33
+ export declare const PACK_PICKER_CONFIG: CategoryPickerConfig;
@@ -0,0 +1,15 @@
1
+ import { default as React } from 'react';
2
+ import { SlotSelection, JamlZone, SlotCategory } from './MysterySlot.js';
3
+ export interface JamlMapEditorProps {
4
+ /** Initial zone for the demo. */
5
+ zone?: JamlZone;
6
+ /** Callback when selections change. Returns JAML string. */
7
+ onChange?: (jamlString: string) => void;
8
+ }
9
+ export interface MapSlotSelection extends SlotSelection {
10
+ zone: JamlZone;
11
+ }
12
+ export declare function JamlMapEditor({ zone: initialZone, onChange, }: JamlMapEditorProps): React.JSX.Element;
13
+ export declare function CategoryMenu({ onSelect, }: {
14
+ onSelect: (cat: SlotCategory) => void;
15
+ }): React.JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { default as React } from 'react';
2
+ import { JokerRarityTier } from './jokerRarity.js';
3
+ import { SlotSelection } from './MysterySlot.js';
4
+ export type JokerRarity = JokerRarityTier;
5
+ export interface JokerPickerProps {
6
+ onSelect: (selection: SlotSelection) => void;
7
+ onCancel?: () => void;
8
+ }
9
+ export declare function JokerPicker({ onSelect }: JokerPickerProps): React.JSX.Element;
@@ -0,0 +1,37 @@
1
+ import { default as React } from 'react';
2
+ import { JokerRarityTier } from './jokerRarity.js';
3
+ import { SpriteSheetType } from '../../sprites/spriteMapper.js';
4
+ export type JamlZone = "must" | "should" | "mustnot";
5
+ /** The item category that can appear in a slot. */
6
+ export type SlotCategory = "joker" | "voucher" | "tag" | "boss" | "tarot" | "spectral" | "planet" | "pack";
7
+ /** Result of selecting a specific item in a slot. */
8
+ export interface SlotSelection {
9
+ category: SlotCategory;
10
+ /** The specific item name, or "Any" for wildcards. */
11
+ value: string;
12
+ /** JAML clause key (e.g. "commonJoker", "legendaryJoker", "voucher"). */
13
+ clauseKey: string;
14
+ /** Optional selected pack display name for pack slots. */
15
+ packName?: string;
16
+ /** Optional source pack indices for pack-derived item clauses. */
17
+ boosterPacks?: number[];
18
+ /** Optional rarity for jokers. */
19
+ rarity?: JokerRarityTier;
20
+ }
21
+ export interface MysterySlotProps {
22
+ /** Which zone this slot belongs to — determines border color. */
23
+ zone: JamlZone;
24
+ /** What sheet type to render mystery card from. */
25
+ sheetType: SpriteSheetType;
26
+ /** Current selection, if any. */
27
+ selection?: SlotSelection;
28
+ /** Width of the card sprite. */
29
+ width?: number;
30
+ /** Called when the slot is tapped (to open a picker). */
31
+ onTap?: () => void;
32
+ /** Called when the selection is cleared. */
33
+ onClear?: () => void;
34
+ /** Additional inline styles. */
35
+ style?: React.CSSProperties;
36
+ }
37
+ export declare function MysterySlot({ zone, sheetType, selection, width, onTap, onClear, style, }: MysterySlotProps): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ export { MysterySlot, type MysterySlotProps, type SlotSelection, type SlotCategory, type JamlZone } from './MysterySlot.js';
2
+ export { JokerPicker, type JokerPickerProps, type JokerRarity } from './JokerPicker.js';
3
+ export { JamlMapEditor, CategoryMenu, type JamlMapEditorProps } from './JamlMapEditor.js';
4
+ export { CategoryPicker, type CategoryPickerConfig, type CategoryPickerProps, VOUCHER_PICKER_CONFIG, TAG_PICKER_CONFIG, BOSS_PICKER_CONFIG, TAROT_PICKER_CONFIG, PLANET_PICKER_CONFIG, SPECTRAL_PICKER_CONFIG, PACK_PICKER_CONFIG, } from './CategoryPicker.js';
@@ -0,0 +1,6 @@
1
+ export declare enum JokerRarityTier {
2
+ Common = 0,
3
+ Uncommon = 1,
4
+ Rare = 2,
5
+ Legendary = 3
6
+ }
@@ -0,0 +1 @@
1
+ export declare function normalizeJamlSeed(seed: string): string;
@@ -0,0 +1,310 @@
1
+ export declare const MotelyJokerCommon: {
2
+ readonly Joker: 0;
3
+ readonly GreedyJoker: 1;
4
+ readonly LustyJoker: 2;
5
+ readonly WrathfulJoker: 3;
6
+ readonly GluttonousJoker: 4;
7
+ readonly JollyJoker: 5;
8
+ readonly ZanyJoker: 6;
9
+ readonly MadJoker: 7;
10
+ readonly CrazyJoker: 8;
11
+ readonly DrollJoker: 9;
12
+ readonly SlyJoker: 10;
13
+ readonly WilyJoker: 11;
14
+ readonly CleverJoker: 12;
15
+ readonly DeviousJoker: 13;
16
+ readonly CraftyJoker: 14;
17
+ readonly HalfJoker: 15;
18
+ readonly CreditCard: 16;
19
+ readonly Banner: 17;
20
+ readonly MysticSummit: 18;
21
+ readonly EightBall: 19;
22
+ readonly Misprint: 20;
23
+ readonly RaisedFist: 21;
24
+ readonly ChaostheClown: 22;
25
+ readonly ScaryFace: 23;
26
+ readonly AbstractJoker: 24;
27
+ readonly DelayedGratification: 25;
28
+ readonly GrosMichel: 26;
29
+ readonly EvenSteven: 27;
30
+ readonly OddTodd: 28;
31
+ readonly Scholar: 29;
32
+ readonly BusinessCard: 30;
33
+ readonly Supernova: 31;
34
+ readonly RideTheBus: 32;
35
+ readonly Egg: 33;
36
+ readonly Runner: 34;
37
+ readonly IceCream: 35;
38
+ readonly Splash: 36;
39
+ readonly BlueJoker: 37;
40
+ readonly FacelessJoker: 38;
41
+ readonly GreenJoker: 39;
42
+ readonly Superposition: 40;
43
+ readonly ToDoList: 41;
44
+ readonly Cavendish: 42;
45
+ readonly RedCard: 43;
46
+ readonly SquareJoker: 44;
47
+ readonly RiffRaff: 45;
48
+ readonly Photograph: 46;
49
+ readonly ReservedParking: 47;
50
+ readonly MailInRebate: 48;
51
+ readonly Hallucination: 49;
52
+ readonly FortuneTeller: 50;
53
+ readonly Juggler: 51;
54
+ readonly Drunkard: 52;
55
+ readonly GoldenJoker: 53;
56
+ readonly Popcorn: 54;
57
+ readonly WalkieTalkie: 55;
58
+ readonly SmileyFace: 56;
59
+ readonly GoldenTicket: 57;
60
+ readonly Swashbuckler: 58;
61
+ readonly HangingChad: 59;
62
+ readonly ShootTheMoon: 60;
63
+ };
64
+ export declare const MotelyJokerUncommon: {
65
+ readonly JokerStencil: 0;
66
+ readonly FourFingers: 1;
67
+ readonly Mime: 2;
68
+ readonly CeremonialDagger: 3;
69
+ readonly MarbleJoker: 4;
70
+ readonly LoyaltyCard: 5;
71
+ readonly Dusk: 6;
72
+ readonly Fibonacci: 7;
73
+ readonly SteelJoker: 8;
74
+ readonly Hack: 9;
75
+ readonly Pareidolia: 10;
76
+ readonly SpaceJoker: 11;
77
+ readonly Burglar: 12;
78
+ readonly Blackboard: 13;
79
+ readonly SixthSense: 14;
80
+ readonly Constellation: 15;
81
+ readonly Hiker: 16;
82
+ readonly CardSharp: 17;
83
+ readonly Madness: 18;
84
+ readonly Seance: 19;
85
+ readonly Vampire: 20;
86
+ readonly Shortcut: 21;
87
+ readonly Hologram: 22;
88
+ readonly Cloud9: 23;
89
+ readonly Rocket: 24;
90
+ readonly MidasMask: 25;
91
+ readonly Luchador: 26;
92
+ readonly GiftCard: 27;
93
+ readonly TurtleBean: 28;
94
+ readonly Erosion: 29;
95
+ readonly ToTheMoon: 30;
96
+ readonly StoneJoker: 31;
97
+ readonly LuckyCat: 32;
98
+ readonly Bull: 33;
99
+ readonly DietCola: 34;
100
+ readonly TradingCard: 35;
101
+ readonly FlashCard: 36;
102
+ readonly SpareTrousers: 37;
103
+ readonly Ramen: 38;
104
+ readonly Seltzer: 39;
105
+ readonly Castle: 40;
106
+ readonly MrBones: 41;
107
+ readonly Acrobat: 42;
108
+ readonly SockAndBuskin: 43;
109
+ readonly Troubadour: 44;
110
+ readonly Certificate: 45;
111
+ readonly SmearedJoker: 46;
112
+ readonly Throwback: 47;
113
+ readonly RoughGem: 48;
114
+ readonly Bloodstone: 49;
115
+ readonly Arrowhead: 50;
116
+ readonly OnyxAgate: 51;
117
+ readonly GlassJoker: 52;
118
+ readonly Showman: 53;
119
+ readonly FlowerPot: 54;
120
+ readonly MerryAndy: 55;
121
+ readonly OopsAll6s: 56;
122
+ readonly TheIdol: 57;
123
+ readonly SeeingDouble: 58;
124
+ readonly Matador: 59;
125
+ readonly Satellite: 60;
126
+ readonly Cartomancer: 61;
127
+ readonly Astronomer: 62;
128
+ readonly Bootstraps: 63;
129
+ };
130
+ export declare const MotelyJokerRare: {
131
+ readonly DNA: 0;
132
+ readonly Vagabond: 1;
133
+ readonly Baron: 2;
134
+ readonly Obelisk: 3;
135
+ readonly BaseballCard: 4;
136
+ readonly AncientJoker: 5;
137
+ readonly Campfire: 6;
138
+ readonly Blueprint: 7;
139
+ readonly WeeJoker: 8;
140
+ readonly HitTheRoad: 9;
141
+ readonly TheDuo: 10;
142
+ readonly TheTrio: 11;
143
+ readonly TheFamily: 12;
144
+ readonly TheOrder: 13;
145
+ readonly TheTribe: 14;
146
+ readonly Stuntman: 15;
147
+ readonly InvisibleJoker: 16;
148
+ readonly Brainstorm: 17;
149
+ readonly DriversLicense: 18;
150
+ readonly BurntJoker: 19;
151
+ };
152
+ export declare const MotelyJokerLegendary: {
153
+ readonly Canio: 0;
154
+ readonly Triboulet: 1;
155
+ readonly Yorick: 2;
156
+ readonly Chicot: 3;
157
+ readonly Perkeo: 4;
158
+ };
159
+ export declare const MotelyJoker: {
160
+ readonly Canio: 0;
161
+ readonly Triboulet: 1;
162
+ readonly Yorick: 2;
163
+ readonly Chicot: 3;
164
+ readonly Perkeo: 4;
165
+ readonly DNA: 0;
166
+ readonly Vagabond: 1;
167
+ readonly Baron: 2;
168
+ readonly Obelisk: 3;
169
+ readonly BaseballCard: 4;
170
+ readonly AncientJoker: 5;
171
+ readonly Campfire: 6;
172
+ readonly Blueprint: 7;
173
+ readonly WeeJoker: 8;
174
+ readonly HitTheRoad: 9;
175
+ readonly TheDuo: 10;
176
+ readonly TheTrio: 11;
177
+ readonly TheFamily: 12;
178
+ readonly TheOrder: 13;
179
+ readonly TheTribe: 14;
180
+ readonly Stuntman: 15;
181
+ readonly InvisibleJoker: 16;
182
+ readonly Brainstorm: 17;
183
+ readonly DriversLicense: 18;
184
+ readonly BurntJoker: 19;
185
+ readonly JokerStencil: 0;
186
+ readonly FourFingers: 1;
187
+ readonly Mime: 2;
188
+ readonly CeremonialDagger: 3;
189
+ readonly MarbleJoker: 4;
190
+ readonly LoyaltyCard: 5;
191
+ readonly Dusk: 6;
192
+ readonly Fibonacci: 7;
193
+ readonly SteelJoker: 8;
194
+ readonly Hack: 9;
195
+ readonly Pareidolia: 10;
196
+ readonly SpaceJoker: 11;
197
+ readonly Burglar: 12;
198
+ readonly Blackboard: 13;
199
+ readonly SixthSense: 14;
200
+ readonly Constellation: 15;
201
+ readonly Hiker: 16;
202
+ readonly CardSharp: 17;
203
+ readonly Madness: 18;
204
+ readonly Seance: 19;
205
+ readonly Vampire: 20;
206
+ readonly Shortcut: 21;
207
+ readonly Hologram: 22;
208
+ readonly Cloud9: 23;
209
+ readonly Rocket: 24;
210
+ readonly MidasMask: 25;
211
+ readonly Luchador: 26;
212
+ readonly GiftCard: 27;
213
+ readonly TurtleBean: 28;
214
+ readonly Erosion: 29;
215
+ readonly ToTheMoon: 30;
216
+ readonly StoneJoker: 31;
217
+ readonly LuckyCat: 32;
218
+ readonly Bull: 33;
219
+ readonly DietCola: 34;
220
+ readonly TradingCard: 35;
221
+ readonly FlashCard: 36;
222
+ readonly SpareTrousers: 37;
223
+ readonly Ramen: 38;
224
+ readonly Seltzer: 39;
225
+ readonly Castle: 40;
226
+ readonly MrBones: 41;
227
+ readonly Acrobat: 42;
228
+ readonly SockAndBuskin: 43;
229
+ readonly Troubadour: 44;
230
+ readonly Certificate: 45;
231
+ readonly SmearedJoker: 46;
232
+ readonly Throwback: 47;
233
+ readonly RoughGem: 48;
234
+ readonly Bloodstone: 49;
235
+ readonly Arrowhead: 50;
236
+ readonly OnyxAgate: 51;
237
+ readonly GlassJoker: 52;
238
+ readonly Showman: 53;
239
+ readonly FlowerPot: 54;
240
+ readonly MerryAndy: 55;
241
+ readonly OopsAll6s: 56;
242
+ readonly TheIdol: 57;
243
+ readonly SeeingDouble: 58;
244
+ readonly Matador: 59;
245
+ readonly Satellite: 60;
246
+ readonly Cartomancer: 61;
247
+ readonly Astronomer: 62;
248
+ readonly Bootstraps: 63;
249
+ readonly Joker: 0;
250
+ readonly GreedyJoker: 1;
251
+ readonly LustyJoker: 2;
252
+ readonly WrathfulJoker: 3;
253
+ readonly GluttonousJoker: 4;
254
+ readonly JollyJoker: 5;
255
+ readonly ZanyJoker: 6;
256
+ readonly MadJoker: 7;
257
+ readonly CrazyJoker: 8;
258
+ readonly DrollJoker: 9;
259
+ readonly SlyJoker: 10;
260
+ readonly WilyJoker: 11;
261
+ readonly CleverJoker: 12;
262
+ readonly DeviousJoker: 13;
263
+ readonly CraftyJoker: 14;
264
+ readonly HalfJoker: 15;
265
+ readonly CreditCard: 16;
266
+ readonly Banner: 17;
267
+ readonly MysticSummit: 18;
268
+ readonly EightBall: 19;
269
+ readonly Misprint: 20;
270
+ readonly RaisedFist: 21;
271
+ readonly ChaostheClown: 22;
272
+ readonly ScaryFace: 23;
273
+ readonly AbstractJoker: 24;
274
+ readonly DelayedGratification: 25;
275
+ readonly GrosMichel: 26;
276
+ readonly EvenSteven: 27;
277
+ readonly OddTodd: 28;
278
+ readonly Scholar: 29;
279
+ readonly BusinessCard: 30;
280
+ readonly Supernova: 31;
281
+ readonly RideTheBus: 32;
282
+ readonly Egg: 33;
283
+ readonly Runner: 34;
284
+ readonly IceCream: 35;
285
+ readonly Splash: 36;
286
+ readonly BlueJoker: 37;
287
+ readonly FacelessJoker: 38;
288
+ readonly GreenJoker: 39;
289
+ readonly Superposition: 40;
290
+ readonly ToDoList: 41;
291
+ readonly Cavendish: 42;
292
+ readonly RedCard: 43;
293
+ readonly SquareJoker: 44;
294
+ readonly RiffRaff: 45;
295
+ readonly Photograph: 46;
296
+ readonly ReservedParking: 47;
297
+ readonly MailInRebate: 48;
298
+ readonly Hallucination: 49;
299
+ readonly FortuneTeller: 50;
300
+ readonly Juggler: 51;
301
+ readonly Drunkard: 52;
302
+ readonly GoldenJoker: 53;
303
+ readonly Popcorn: 54;
304
+ readonly WalkieTalkie: 55;
305
+ readonly SmileyFace: 56;
306
+ readonly GoldenTicket: 57;
307
+ readonly Swashbuckler: 58;
308
+ readonly HangingChad: 59;
309
+ readonly ShootTheMoon: 60;
310
+ };
package/dist/motely.js CHANGED
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { MotelyItemEdition as u, MotelyItemEnhancement as m, MotelyItemSeal as d, MotelyStandardcardRank as l, MotelyStandardcardSuit as s } from "motely-wasm";
3
2
  import * as x from "motely-wasm";
4
3
  import { default as Y } from "motely-wasm";