@open-slot-ui/core 0.6.0 → 0.7.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.
package/dist/index.cjs CHANGED
@@ -1462,6 +1462,15 @@ var openuiDefaults = {
1462
1462
  "openui.error": "Error",
1463
1463
  "openui.notice": "Notice",
1464
1464
  "openui.replay": "Replay",
1465
+ // Replay panel (Stake "Replay Support"): the round's cost + worth is shown at the
1466
+ // start; a Replay button re-runs it at the end.
1467
+ "openui.replay.title": "Replay",
1468
+ "openui.replay.baseBet": "Base Bet",
1469
+ "openui.replay.costMultiplier": "Cost Multiplier",
1470
+ "openui.replay.payoutMultiplier": "Payout Multiplier",
1471
+ "openui.replay.amount": "Final amount",
1472
+ "openui.replay.play": "Play",
1473
+ "openui.replay.again": "Replay",
1465
1474
  "openui.buyFeature.title": "Buy feature",
1466
1475
  "openui.buyFeature.message": "Buy this feature now?",
1467
1476
  // Confirm step for a higher-cost play — {{name}} / {{price}} are interpolated.
@@ -1502,6 +1511,11 @@ var openuiSocialDefaults = {
1502
1511
  "openui.buyFeature.title": "Play bonus",
1503
1512
  "openui.buyFeature.message": "Play this bonus now?",
1504
1513
  "openui.buyFeature.confirm": "Play {{name}} for {{price}}?",
1514
+ // Stake.us replay terms: Base Bet → Base Play, Cost Multiplier → Feature Multiplier,
1515
+ // Payout Multiplier → Final Multiplier.
1516
+ "openui.replay.baseBet": "Base Play",
1517
+ "openui.replay.costMultiplier": "Feature Multiplier",
1518
+ "openui.replay.payoutMultiplier": "Final Multiplier",
1505
1519
  "openui.err.insufficient.message": "You don't have enough balance for this play.",
1506
1520
  "openui.err.limit.message": "A play limit has been reached. Please try again later."
1507
1521
  };
@@ -1564,8 +1578,18 @@ var CURRENCY_TABLE = Object.freeze({
1564
1578
  MXN: { symbol: "MX$", decimals: 2 },
1565
1579
  TRY: { symbol: "\u20BA", decimals: 2 },
1566
1580
  GBP: { symbol: "\xA3", decimals: 2 },
1581
+ NGN: { symbol: "\u20A6", decimals: 2 },
1582
+ TWD: { symbol: "NT$", decimals: 2 },
1583
+ SGD: { symbol: "SG$", decimals: 2 },
1584
+ MYR: { symbol: "RM", decimals: 2 },
1585
+ CRC: { symbol: "\u20A1", decimals: 2 },
1586
+ // three-decimal dinars (1 unit = 1000 fils) — the >2-decimal path must format these
1587
+ KWD: { symbol: "KD", decimals: 3 },
1588
+ JOD: { symbol: "JD", decimals: 3 },
1589
+ BHD: { symbol: "BD", decimals: 3 },
1567
1590
  // ── fiat — symbol AFTER the amount ───────────────────────────────────────────
1568
1591
  DKK: { symbol: "kr", decimals: 2, symbolAfter: true },
1592
+ NOK: { symbol: "kr", decimals: 2, symbolAfter: true },
1569
1593
  PLN: { symbol: "z\u0142", decimals: 2, symbolAfter: true },
1570
1594
  VND: { symbol: "\u20AB", decimals: 0, symbolAfter: true },
1571
1595
  CLP: { symbol: "CLP", decimals: 0, symbolAfter: true },