lighteningcards 2.1.7 → 2.1.8

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.js CHANGED
@@ -45256,12 +45256,12 @@ const LighteningCard = ({
45256
45256
  const isBaccarat = (gameType === null || gameType === void 0 ? void 0 : gameType.toLowerCase()) === "baccarat" || showRank === true;
45257
45257
  if (isBaccarat) {
45258
45258
  // Use baccarat SVG cards (no PNGs, uses SVG suit symbols)
45259
- ["LIGHTNING"].includes(roundStatus) && new BaccaratCardStart(cards, border_start, appRef);
45260
- ["NEW_CARD", "ROUND_END", "BETTING_STARTED"].includes(roundStatus) && new BaccaratCard(cards, border_loop, appRef);
45259
+ ["LIGHTNING"].includes(roundStatus) && new BaccaratCardStart(cards, border_loop, appRef);
45260
+ ["NEW_CARD", "ROUND_END", "BETTING_STARTED"].includes(roundStatus) && new BaccaratCard(cards, border_start, appRef);
45261
45261
  } else {
45262
45262
  // Use suit-only display (with PNG suit images)
45263
- ["LIGHTNING"].includes(roundStatus) && new LighteningStart(cards, border_start, appRef);
45264
- ["NEW_CARD", "ROUND_END", "BETTING_STARTED"].includes(roundStatus) && new Lightening(cards, border_loop, appRef);
45263
+ ["LIGHTNING"].includes(roundStatus) && new LighteningStart(cards, border_loop, appRef);
45264
+ ["NEW_CARD", "ROUND_END", "BETTING_STARTED"].includes(roundStatus) && new Lightening(cards, border_start, appRef);
45265
45265
  }
45266
45266
  };
45267
45267
  React.useEffect(() => {