@everymatrix/player-elevate-points-history 1.94.76 → 1.94.78

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.
Files changed (30) hide show
  1. package/dist/cjs/{bonus-pagination-limits_6.cjs.entry.js → bonus-pagination-limits_7.cjs.entry.js} +202 -13
  2. package/dist/cjs/{index-8f337cb6.js → index-c3212d9e.js} +3 -2
  3. package/dist/cjs/loader.cjs.js +2 -2
  4. package/dist/cjs/{player-elevate-card-items-151194f9.js → player-elevate-card-items-afdfd629.js} +1 -1
  5. package/dist/cjs/player-elevate-card.cjs.entry.js +2 -2
  6. package/dist/cjs/player-elevate-loyaltycard.cjs.entry.js +2 -2
  7. package/dist/cjs/player-elevate-points-history.cjs.js +2 -2
  8. package/dist/cjs/player-rakeback-card.cjs.entry.js +1 -1
  9. package/dist/collection/collection-manifest.json +6 -0
  10. package/dist/collection/components/player-elevate-points-history/player-elevate-points-history.js +17 -9
  11. package/dist/collection/renders/renderWallets.js +8 -1
  12. package/dist/esm/{bonus-pagination-limits_6.entry.js → bonus-pagination-limits_7.entry.js} +202 -14
  13. package/dist/esm/{index-58af35f4.js → index-717e7bf3.js} +3 -3
  14. package/dist/esm/loader.js +3 -3
  15. package/dist/esm/{player-elevate-card-items-5a57ffb1.js → player-elevate-card-items-f1914b1a.js} +1 -1
  16. package/dist/esm/player-elevate-card.entry.js +2 -2
  17. package/dist/esm/player-elevate-loyaltycard.entry.js +2 -2
  18. package/dist/esm/player-elevate-points-history.js +3 -3
  19. package/dist/esm/player-rakeback-card.entry.js +1 -1
  20. package/dist/player-elevate-points-history/bonus-pagination-limits_7.entry.js +9 -0
  21. package/dist/player-elevate-points-history/{index-58af35f4.js → index-717e7bf3.js} +2 -2
  22. package/dist/player-elevate-points-history/{player-elevate-card-items-5a57ffb1.js → player-elevate-card-items-f1914b1a.js} +1 -1
  23. package/dist/player-elevate-points-history/player-elevate-card.entry.js +1 -1
  24. package/dist/player-elevate-points-history/player-elevate-loyaltycard.entry.js +1 -1
  25. package/dist/player-elevate-points-history/player-elevate-points-history.esm.js +1 -1
  26. package/dist/player-elevate-points-history/player-rakeback-card.entry.js +1 -1
  27. package/dist/types/components/player-elevate-points-history/player-elevate-points-history.d.ts +2 -0
  28. package/dist/types/renders/renderWallets.d.ts +2 -1
  29. package/package.json +1 -1
  30. package/dist/player-elevate-points-history/bonus-pagination-limits_6.entry.js +0 -9
@@ -1,6 +1,6 @@
1
- import { r as registerInstance, c as createEvent, h, g as getElement, a as getAssetPath, F as Fragment } from './index-58af35f4.js';
1
+ import { r as registerInstance, c as createEvent, h, g as getElement, a as getAssetPath, F as Fragment, H as Host } from './index-717e7bf3.js';
2
2
  import { t as translateWithParams, T as TRANSLATIONS$2, a as translate$2 } from './locale.utils-10bf5b6c.js';
3
- import { r as requiredArgs, t as toDate, g as getTimezoneOffsetInMilliseconds, P as PlayerAvatar, a as PlayerPoints } from './player-elevate-card-items-5a57ffb1.js';
3
+ import { r as requiredArgs, t as toDate, g as getTimezoneOffsetInMilliseconds, P as PlayerAvatar, a as PlayerPoints } from './player-elevate-card-items-f1914b1a.js';
4
4
 
5
5
  const DEFAULT_LANGUAGE$1 = 'en';
6
6
  const SUPPORTED_LANGUAGES$1 = ['pt-br', 'en', 'es-mx', 'hu', 'hr', 'tr'];
@@ -1268,10 +1268,18 @@ const WalletItem = ({ locale, wallet, walletType, isRakeback }) => {
1268
1268
  h("span", { class: 'Value' }, wallet.extension.powerUpCoefficient))))));
1269
1269
  }
1270
1270
  };
1271
- const renderWallets = (locale, wallets, pageSetting) => wallets && (h(Fragment, null,
1272
- h("div", { class: "Records" }, wallets.map(wallet => h(WalletItem, { locale: locale, wallet: wallet, walletType: pageSetting.tableId, isRakeback: pageSetting.tableId === WalletType.rakeback }))),
1273
- h("div", { class: "PaginationContainer" },
1274
- h("bonus-pagination-nav", { offset: pageSetting.offset, limit: pageSetting.limit, tableId: pageSetting.tableId, secondaryArrowsActive: pageSetting.secondaryArrowsActive, total: pageSetting.total }))));
1271
+ const renderWallets = (locale, wallets, pageSetting, isLoading = false) => {
1272
+ if (isLoading)
1273
+ return renderSkeletons();
1274
+ return wallets && (h(Fragment, null,
1275
+ h("div", { class: "Records" }, wallets.map(wallet => h(WalletItem, { locale: locale, wallet: wallet, walletType: pageSetting.tableId, isRakeback: pageSetting.tableId === WalletType.rakeback }))),
1276
+ h("div", { class: "PaginationContainer" },
1277
+ h("bonus-pagination-nav", { offset: pageSetting.offset, limit: pageSetting.limit, tableId: pageSetting.tableId, secondaryArrowsActive: pageSetting.secondaryArrowsActive, total: pageSetting.total }))));
1278
+ };
1279
+ const renderSkeletons = (rows = 3) => {
1280
+ return h("div", { class: "Records" }, Array.from({ length: rows }).map(() => (h("div", { class: "RecordContainer" },
1281
+ h("ui-skeleton", { structure: "rectangle", width: "100%", height: "70px", "border-radius": "5px" })))));
1282
+ };
1275
1283
  const getAmountConfig = (amount) => {
1276
1284
  if (amount > 0) {
1277
1285
  return {
@@ -6302,11 +6310,13 @@ const PlayerElevatePointsHistory = class {
6302
6310
  this.pageSetting = undefined;
6303
6311
  this.pointsWallets = {};
6304
6312
  this.validWallets = [];
6313
+ this.isLoading = false;
6305
6314
  }
6306
6315
  switchTab(type) {
6307
6316
  var _a, _b;
6308
6317
  this.type = type;
6309
- if (this.pointsWallets[type] || !((_a = this.pointsWallets[type]) === null || _a === void 0 ? void 0 : _a.isLoadFailed)) {
6318
+ window.postMessage({ type: 'PlayerElevatePointsHistorySwitchTab' }, window.location.href);
6319
+ if (this.pointsWallets[type] && !((_a = this.pointsWallets[type]) === null || _a === void 0 ? void 0 : _a.isLoadFailed)) {
6310
6320
  return;
6311
6321
  }
6312
6322
  this.paginationReset.emit({ limit: ((_b = this.pointsWallets[type]) === null || _b === void 0 ? void 0 : _b.pageSetting.limit) || this.limit, tableId: this.type });
@@ -6321,7 +6331,7 @@ const PlayerElevatePointsHistory = class {
6321
6331
  }
6322
6332
  loadWallets(renderer) {
6323
6333
  if (!this.pointsWallets[this.type] || this.pointsWallets[this.type].isLoading) {
6324
- return h("div", { class: "Loading" }, this.locale.loading);
6334
+ return renderSkeletons();
6325
6335
  }
6326
6336
  else {
6327
6337
  if (this.pointsWallets[this.type].wallets.length === 0) {
@@ -6338,14 +6348,14 @@ const PlayerElevatePointsHistory = class {
6338
6348
  render() {
6339
6349
  var _a, _b;
6340
6350
  const pageSetting = this.getPageSettingByType(this.type);
6341
- return (h("main", { key: '88ee16781c8b84ba0cf4c008409c8b0460a65c5d' }, h("general-styling-wrapper", { key: 'a4a86b442087c1a9e8ff27a21adde4a63c2b1773', clientStyling: this.clientStyling, clientStylingUrl: this.clientStylingUrl,
6351
+ return (h("main", { key: '31bc0e0fec29354fa1941e7dbeb078955155092a' }, h("general-styling-wrapper", { key: 'ca42c2addde3b5741858eda057f162daf32daffc', clientStyling: this.clientStyling, clientStylingUrl: this.clientStylingUrl,
6342
6352
  // @ts-ignore
6343
- targetTranslations: translation, translationUrl: this.translationUrl, mbSource: this.mbSource }), h("player-elevate-pointcard", { key: 'bed65d6923747be4beb1d1520e4eca4c124eb3e9', playerAvatarUrl: this.playerAvatarUrl, endpoint: this.endpoint, session: this.session, language: this.language, clientStylingUrl: this.clientStylingUrl, clientStyling: this.clientStyling, translationUrl: this.translationUrl }), h("div", { key: 'f5d93a35b480712866fd4af9d0923f65d07b7bb8', class: "PlayerElevatePointsDetaisContainer" }, [
6353
+ targetTranslations: translation, translationUrl: this.translationUrl, mbSource: this.mbSource }), h("player-elevate-pointcard", { key: 'aaacea16dee050ea42960b5f78ce821ae0bfcaf2', playerAvatarUrl: this.playerAvatarUrl, endpoint: this.endpoint, session: this.session, language: this.language, clientStylingUrl: this.clientStylingUrl, clientStyling: this.clientStyling, translationUrl: this.translationUrl }), h("div", { key: 'a41847eb39948f9ebc8b511d1c0de3ac6d2fc4fa', class: "PlayerElevatePointsDetaisContainer" }, [
6344
6354
  renderTopBar(this.locale, this.type, pageSetting, this.language),
6345
- h("div", { key: '5642ba092d69c539eeceb1360408b6a44d870e3f', class: "Tabs Row" }, (this.validWallets || []).map(key => (h("div", { class: "tab" }, h("div", { class: `TabText ${key === this.type ? 'active' : ''}`, onClick: this.switchTab.bind(this, key) }, this.locale.tabTitle[key]), h("div", { class: `TabBorderBottom ${key === this.type ? 'active' : ''}` }))))),
6355
+ h("div", { key: 'c3987866c5039e1f94c07a3dfe5705ceaf6acf5a', class: "Tabs Row" }, (this.validWallets || []).map(key => (h("div", { class: "tab" }, h("div", { class: `TabText ${key === this.type ? 'active' : ''}`, onClick: this.switchTab.bind(this, key) }, this.locale.tabTitle[key]), h("div", { class: `TabBorderBottom ${key === this.type ? 'active' : ''}` }))))),
6346
6356
  ((_a = this.pointsWallets[this.type]) === null || _a === void 0 ? void 0 : _a.isLoadFailed)
6347
6357
  ? h("div", { class: "ReloadMsg" }, this.locale['reloadMsgWhenError'], h("a", { class: "Reload", onClick: this.updateWallets }, this.locale['reload']))
6348
- : this.loadWallets(renderWallets.bind(this, this.locale, ((_b = this.pointsWallets[this.type]) === null || _b === void 0 ? void 0 : _b.wallets) || [], pageSetting))
6358
+ : this.loadWallets(renderWallets.bind(this, this.locale, ((_b = this.pointsWallets[this.type]) === null || _b === void 0 ? void 0 : _b.wallets) || [], pageSetting, this.isLoading))
6349
6359
  ])));
6350
6360
  }
6351
6361
  walletTypeChangedHandler() {
@@ -6359,6 +6369,9 @@ const PlayerElevatePointsHistory = class {
6359
6369
  if (!this.endpoint || !this.session || this.session === 'undefined') {
6360
6370
  return;
6361
6371
  }
6372
+ this.isLoading = true;
6373
+ this.setLimit();
6374
+ window.postMessage({ type: 'PlayerElevatePointsHistoryUpdate' }, window.location.href);
6362
6375
  let pageSetting = this.pointsWallets[this.type]
6363
6376
  ? this.pointsWallets[this.type].pageSetting
6364
6377
  : this.getPageSettingByType(this.type);
@@ -6384,6 +6397,7 @@ const PlayerElevatePointsHistory = class {
6384
6397
  console.error(e);
6385
6398
  this.pointsWallets[this.type].isLoadFailed = true;
6386
6399
  }
6400
+ this.isLoading = false;
6387
6401
  }
6388
6402
  formatRakebackWalletPoints(wallets) {
6389
6403
  wallets.forEach(wallet => {
@@ -6398,7 +6412,7 @@ const PlayerElevatePointsHistory = class {
6398
6412
  }
6399
6413
  //reset all wallets when limit changed
6400
6414
  //otherwise fetch new data with new offset when offset changed
6401
- if (this.limit != event.detail.limit) {
6415
+ if (event.detail.limit != null && this.limit != event.detail.limit) {
6402
6416
  this.pointsWallets = {};
6403
6417
  this.limit = event.detail.limit;
6404
6418
  }
@@ -6443,4 +6457,178 @@ const PlayerElevatePointsHistory = class {
6443
6457
  };
6444
6458
  PlayerElevatePointsHistory.style = PlayerElevatePointsHistoryStyle0;
6445
6459
 
6446
- export { BonusPaginationLimits as bonus_pagination_limits, BonusPaginationNav as bonus_pagination_nav, GeneralStylingWrapper as general_styling_wrapper, PlayerElevateCardData as player_elevate_card_data, PlayerElevatePointcard as player_elevate_pointcard, PlayerElevatePointsHistory as player_elevate_points_history };
6460
+ const uiSkeletonCss = ":host{display:block}.Skeleton{animation:skeleton-loading 1s linear infinite alternate}.SkeletonRectangle{background-color:var(--emw-skeleton-rectangle-background, #c2c2c2);width:var(--emw-skeleton-rectangle-width, 400px);height:var(--emw-skeleton-rectangle-height, 200px);border-radius:var(--emw-skeleton-rectangle-border-radius, 10px)}.SkeletonCircle{background-color:var(--emw-skeleton-circle-background, #c2c2c2);width:var(--emw-skeleton-circle-size, 400px);height:var(--emw-skeleton-circle-size, 400px);border-radius:50%}.SkeletonText{background-color:var(--emw-skeleton-text-background, #c2c2c2);width:var(--emw-skeleton-text-width, 500px);height:var(--emw-skeleton-text-height, 20px);border-radius:var(--emw-skeleton-text-border-radius, 10px);margin-bottom:var(--emw-skeleton-text-margin-bottom, 5px)}.SkeletonText:last-child{width:calc(var(--emw-skeleton-text-width, 400px) - 100px)}.SkeletonTitle{background-color:var(--emw-skeleton-title-background, #c2c2c2);width:var(--emw-skeleton-title-width, 300px);height:var(--emw-skeleton-title-height, 30px);border-radius:var(--emw-skeleton-title-border-radius, 10px);margin-bottom:var(--emw-skeleton-title-margin-bottom, 5px)}.SkeletonImage{background-color:var(--emw-skeleton-image-background, #c2c2c2);width:var(--emw-skeleton-image-width, 100%);height:var(--emw-skeleton-image-height, 100%);border-radius:var(--emw-skeleton-image-border-radius, unset)}.SkeletonLogo{background-color:var(--emw-skeleton-logo-background, #c2c2c2);width:var(--emw-skeleton-logo-width, 120px);height:var(--emw-skeleton-logo-height, 75px);border-radius:var(--emw-skeleton-logo-border-radius, 10px)}@keyframes skeleton-loading{0%{background-color:var(--emw-skeleton-primary-color, #e0e0e0)}100%{background-color:var(--emw-skeleton-secondary-color, #f0f0f0)}}";
6461
+ const UiSkeletonStyle0 = uiSkeletonCss;
6462
+
6463
+ const UiSkeleton = class {
6464
+ constructor(hostRef) {
6465
+ registerInstance(this, hostRef);
6466
+ this.stylingValue = {
6467
+ width: this.handleStylingProps(this.width),
6468
+ height: this.handleStylingProps(this.height),
6469
+ borderRadius: this.handleStylingProps(this.borderRadius),
6470
+ marginBottom: this.handleStylingProps(this.marginBottom),
6471
+ marginTop: this.handleStylingProps(this.marginTop),
6472
+ marginLeft: this.handleStylingProps(this.marginLeft),
6473
+ marginRight: this.handleStylingProps(this.marginRight),
6474
+ size: this.handleStylingProps(this.size),
6475
+ };
6476
+ this.structure = undefined;
6477
+ this.width = 'unset';
6478
+ this.height = 'unset';
6479
+ this.borderRadius = 'unset';
6480
+ this.marginBottom = 'unset';
6481
+ this.marginTop = 'unset';
6482
+ this.marginLeft = 'unset';
6483
+ this.marginRight = 'unset';
6484
+ this.animation = true;
6485
+ this.rows = 0;
6486
+ this.size = '100%';
6487
+ }
6488
+ handleStructureChange(newValue, oldValue) {
6489
+ if (oldValue !== newValue) {
6490
+ this.handleStructure(newValue);
6491
+ }
6492
+ }
6493
+ handleStylingProps(value) {
6494
+ switch (typeof value) {
6495
+ case 'number':
6496
+ return value === 0 ? 0 : `${value}px`;
6497
+ case 'undefined':
6498
+ return 'unset';
6499
+ case 'string':
6500
+ if (['auto', 'unset', 'none', 'inherit', 'initial'].includes(value) ||
6501
+ value.endsWith('px') ||
6502
+ value.endsWith('%')) {
6503
+ return value;
6504
+ }
6505
+ else {
6506
+ return 'unset';
6507
+ }
6508
+ default:
6509
+ return 'unset';
6510
+ }
6511
+ }
6512
+ handleStructure(structure) {
6513
+ switch (structure) {
6514
+ case 'logo':
6515
+ return this.renderLogo();
6516
+ case 'image':
6517
+ return this.renderImage();
6518
+ case 'title':
6519
+ return this.renderTitle();
6520
+ case 'text':
6521
+ return this.renderText();
6522
+ case 'rectangle':
6523
+ return this.renderRectangle();
6524
+ case 'circle':
6525
+ return this.renderCircle();
6526
+ default:
6527
+ return null;
6528
+ }
6529
+ }
6530
+ renderLogo() {
6531
+ return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'SkeletonLogo ' + (this.animation ? 'Skeleton' : '') })));
6532
+ }
6533
+ renderImage() {
6534
+ return h("div", { class: 'SkeletonImage ' + (this.animation ? 'Skeleton' : '') });
6535
+ }
6536
+ renderTitle() {
6537
+ return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'SkeletonTitle ' + (this.animation ? 'Skeleton' : '') })));
6538
+ }
6539
+ renderText() {
6540
+ return (h("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((_, index) => (h("div", { key: index, class: 'SkeletonText ' + (this.animation ? 'Skeleton' : '') })))));
6541
+ }
6542
+ renderRectangle() {
6543
+ return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'SkeletonRectangle ' + (this.animation ? 'Skeleton' : '') })));
6544
+ }
6545
+ renderCircle() {
6546
+ return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'SkeletonCircle ' + (this.animation ? 'Skeleton' : '') })));
6547
+ }
6548
+ render() {
6549
+ let styleBlock = '';
6550
+ switch (this.structure) {
6551
+ case 'logo':
6552
+ styleBlock = `
6553
+ :host {
6554
+ --emw-skeleton-logo-width: ${this.stylingValue.width};
6555
+ --emw-skeleton-logo-height: ${this.stylingValue.height};
6556
+ --emw-skeleton-logo-border-radius: ${this.stylingValue.borderRadius};
6557
+ --emw-skeleton-logo-margin-bottom: ${this.stylingValue.marginBottom};
6558
+ --emw-skeleton-logo-margin-top: ${this.stylingValue.marginTop};
6559
+ --emw-skeleton-logo-margin-left: ${this.stylingValue.marginLeft};
6560
+ --emw-skeleton-logo-margin-right: ${this.stylingValue.marginRight};
6561
+ }
6562
+ `;
6563
+ break;
6564
+ case 'image':
6565
+ styleBlock = `
6566
+ :host {
6567
+ --emw-skeleton-image-width: ${this.stylingValue.width};
6568
+ --emw-skeleton-image-height: ${this.stylingValue.height};
6569
+ --emw-skeleton-image-border-radius: ${this.stylingValue.borderRadius};
6570
+ --emw-skeleton-image-margin-bottom: ${this.stylingValue.marginBottom};
6571
+ --emw-skeleton-image-margin-top: ${this.stylingValue.marginTop};
6572
+ --emw-skeleton-image-margin-left: ${this.stylingValue.marginLeft};
6573
+ --emw-skeleton-image-margin-right: ${this.stylingValue.marginRight};
6574
+ }
6575
+ `;
6576
+ break;
6577
+ case 'title':
6578
+ styleBlock = `
6579
+ :host {
6580
+ --emw-skeleton-title-width: ${this.stylingValue.width};
6581
+ --emw-skeleton-title-height: ${this.stylingValue.height};
6582
+ --emw-skeleton-title-border-radius: ${this.stylingValue.borderRadius};
6583
+ --emw-skeleton-title-margin-bottom: ${this.stylingValue.marginBottom};
6584
+ --emw-skeleton-title-margin-top: ${this.stylingValue.marginTop};
6585
+ --emw-skeleton-title-margin-left: ${this.stylingValue.marginLeft};
6586
+ --emw-skeleton-title-margin-right: ${this.stylingValue.marginRight};
6587
+ }
6588
+ `;
6589
+ break;
6590
+ case 'text':
6591
+ styleBlock = `
6592
+ :host {
6593
+ --emw-skeleton-text-width: ${this.stylingValue.width};
6594
+ --emw-skeleton-text-height: ${this.stylingValue.height};
6595
+ --emw-skeleton-text-border-radius: ${this.stylingValue.borderRadius};
6596
+ --emw-skeleton-text-margin-bottom: ${this.stylingValue.marginBottom};
6597
+ --emw-skeleton-text-margin-top: ${this.stylingValue.marginTop};
6598
+ --emw-skeleton-text-margin-left: ${this.stylingValue.marginLeft};
6599
+ --emw-skeleton-text-margin-right: ${this.stylingValue.marginRight};
6600
+ }
6601
+ `;
6602
+ break;
6603
+ case 'rectangle':
6604
+ styleBlock = `
6605
+ :host {
6606
+ --emw-skeleton-rectangle-width: ${this.stylingValue.width};
6607
+ --emw-skeleton-rectangle-height: ${this.stylingValue.height};
6608
+ --emw-skeleton-rectangle-border-radius: ${this.stylingValue.borderRadius};
6609
+ --emw-skeleton-rectangle-margin-bottom: ${this.stylingValue.marginBottom};
6610
+ --emw-skeleton-rectangle-margin-top: ${this.stylingValue.marginTop};
6611
+ --emw-skeleton-rectangle-margin-left: ${this.stylingValue.marginLeft};
6612
+ --emw-skeleton-rectangle-margin-right: ${this.stylingValue.marginRight};
6613
+ }
6614
+ `;
6615
+ break;
6616
+ case 'circle':
6617
+ styleBlock = `
6618
+ :host {
6619
+ --emw-skeleton-circle-size: ${this.stylingValue.size};
6620
+ }
6621
+ `;
6622
+ break;
6623
+ default:
6624
+ styleBlock = '';
6625
+ }
6626
+ return (h(Host, { key: 'c2a2650acd416962a2bc4e1a7ee18bc6d8e2def8' }, h("style", { key: '9bd7fc1f9e9ed9f17735a7b72fce6f09696f5e19' }, styleBlock), this.handleStructure(this.structure)));
6627
+ }
6628
+ static get watchers() { return {
6629
+ "structure": ["handleStructureChange"]
6630
+ }; }
6631
+ };
6632
+ UiSkeleton.style = UiSkeletonStyle0;
6633
+
6634
+ export { BonusPaginationLimits as bonus_pagination_limits, BonusPaginationNav as bonus_pagination_nav, GeneralStylingWrapper as general_styling_wrapper, PlayerElevateCardData as player_elevate_card_data, PlayerElevatePointcard as player_elevate_pointcard, PlayerElevatePointsHistory as player_elevate_points_history, UiSkeleton as ui_skeleton };
@@ -49,10 +49,10 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
49
49
  }
50
50
  switch(bundleId) {
51
51
 
52
- case 'bonus-pagination-limits_6':
52
+ case 'bonus-pagination-limits_7':
53
53
  return import(
54
54
  /* webpackMode: "lazy" */
55
- './bonus-pagination-limits_6.entry.js').then(processMod, consoleError);
55
+ './bonus-pagination-limits_7.entry.js').then(processMod, consoleError);
56
56
  case 'player-elevate-card':
57
57
  return import(
58
58
  /* webpackMode: "lazy" */
@@ -1604,4 +1604,4 @@ var hostListenerOpts = (flags) => supportsListenerOptions ? {
1604
1604
  // src/runtime/nonce.ts
1605
1605
  var setNonce = (nonce) => plt.$nonce$ = nonce;
1606
1606
 
1607
- export { Fragment as F, getAssetPath as a, bootstrapLazy as b, createEvent as c, getElement as g, h, promiseResolve as p, registerInstance as r, setNonce as s };
1607
+ export { Fragment as F, Host as H, getAssetPath as a, bootstrapLazy as b, createEvent as c, getElement as g, h, promiseResolve as p, registerInstance as r, setNonce as s };
@@ -1,11 +1,11 @@
1
- import { b as bootstrapLazy } from './index-58af35f4.js';
2
- export { s as setNonce } from './index-58af35f4.js';
1
+ import { b as bootstrapLazy } from './index-717e7bf3.js';
2
+ export { s as setNonce } from './index-717e7bf3.js';
3
3
  import { g as globalScripts } from './app-globals-0f993ce5.js';
4
4
 
5
5
  const defineCustomElements = async (win, options) => {
6
6
  if (typeof window === 'undefined') return undefined;
7
7
  await globalScripts();
8
- return bootstrapLazy([["bonus-pagination-limits_6",[[1,"player-elevate-points-history",{"playerAvatarUrl":[513,"player-avatar-url"],"session":[513],"endpoint":[513],"limit":[1538],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"pageLimitOptions":[1537,"page-limit-options"],"currencyPrecision":[1538,"currency-precision"],"enableRakeback":[1540,"enable-rakeback"],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"locale":[32],"type":[32],"pageSetting":[32],"pointsWallets":[32],"validWallets":[32]},[[0,"reloadPageByType","reloadPageByTypeHandler"]],{"type":["walletTypeChangedHandler"],"endpoint":["updateWallets"],"language":["updateWallets"],"session":["updateWallets"]}],[1,"player-elevate-pointcard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"mbSource":[513,"mb-source"],"playerName":[513,"player-name"],"cardTitle":[513,"card-title"],"buttonType":[513,"button-type"],"dateFormat":[513,"date-format"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32],"elevateSPTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}],[0,"bonus-pagination-limits",{"language":[513],"translationUrl":[513,"translation-url"],"pageLimitOptions":[513,"page-limit-options"],"limit":[1538],"pageLimits":[32]}],[0,"bonus-pagination-nav",{"total":[1538],"limit":[1538],"offset":[1538],"tableId":[1537,"table-id"],"language":[1537],"translationUrl":[513,"translation-url"],"arrowsActive":[1540,"arrows-active"],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"displayRangeOfTotal":[1540,"display-range-of-total"],"navItemAccount":[1538,"nav-item-account"],"endPageIndex":[32],"pagesArray":[32],"currentPage":[32],"showAsEllipsisMid":[32]},[[8,"paginationReset","pageLimitChangedHandler"],[8,"pageLimitChanged","pageLimitChangedHandler"]]],[0,"player-elevate-card-data",{"params":[8],"playerElevateLevel":[32],"pointExpireString":[32]},[[9,"resize","handleWindowResizs"],[8,"redeemGiftButton","redeemGiftButtonHandler"]],{"params":["onParamsChanged"]}],[4,"general-styling-wrapper",{"clientStyling":[1,"client-styling"],"clientStylingUrl":[1,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[1,"translation-url"],"targetTranslations":[16]},null,{"mbSource":["handleMbSourceChange"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]],["player-elevate-card",[[1,"player-elevate-card",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerLevelFlag":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-elevate-loyaltycard",[[1,"player-elevate-loyaltycard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[1,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-rakeback-card",[[1,"player-rakeback-card",{"endpoint":[513],"theme":[513],"session":[513],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"show":[516],"rakebackInfo":[32],"isLoading":[32],"coolingOffPeriod":[32],"showTheWidget":[32]},[[8,"message","handleMessage"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"],"show":["onShowOrHasRakebackWalletChange"],"rakebackInfo":["onShowOrHasRakebackWalletChange"]}]]]], options);
8
+ return bootstrapLazy([["bonus-pagination-limits_7",[[1,"player-elevate-points-history",{"playerAvatarUrl":[513,"player-avatar-url"],"session":[513],"endpoint":[513],"limit":[1538],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"pageLimitOptions":[1537,"page-limit-options"],"currencyPrecision":[1538,"currency-precision"],"enableRakeback":[1540,"enable-rakeback"],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"locale":[32],"type":[32],"pageSetting":[32],"pointsWallets":[32],"validWallets":[32],"isLoading":[32]},[[0,"reloadPageByType","reloadPageByTypeHandler"]],{"type":["walletTypeChangedHandler"],"endpoint":["updateWallets"],"language":["updateWallets"],"session":["updateWallets"]}],[1,"player-elevate-pointcard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"mbSource":[513,"mb-source"],"playerName":[513,"player-name"],"cardTitle":[513,"card-title"],"buttonType":[513,"button-type"],"dateFormat":[513,"date-format"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32],"elevateSPTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}],[0,"bonus-pagination-limits",{"language":[513],"translationUrl":[513,"translation-url"],"pageLimitOptions":[513,"page-limit-options"],"limit":[1538],"pageLimits":[32]}],[0,"bonus-pagination-nav",{"total":[1538],"limit":[1538],"offset":[1538],"tableId":[1537,"table-id"],"language":[1537],"translationUrl":[513,"translation-url"],"arrowsActive":[1540,"arrows-active"],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"displayRangeOfTotal":[1540,"display-range-of-total"],"navItemAccount":[1538,"nav-item-account"],"endPageIndex":[32],"pagesArray":[32],"currentPage":[32],"showAsEllipsisMid":[32]},[[8,"paginationReset","pageLimitChangedHandler"],[8,"pageLimitChanged","pageLimitChangedHandler"]]],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[8,"border-radius"],"marginBottom":[8,"margin-bottom"],"marginTop":[8,"margin-top"],"marginLeft":[8,"margin-left"],"marginRight":[8,"margin-right"],"animation":[4],"rows":[2],"size":[1]},null,{"structure":["handleStructureChange"]}],[0,"player-elevate-card-data",{"params":[8],"playerElevateLevel":[32],"pointExpireString":[32]},[[9,"resize","handleWindowResizs"],[8,"redeemGiftButton","redeemGiftButtonHandler"]],{"params":["onParamsChanged"]}],[4,"general-styling-wrapper",{"clientStyling":[1,"client-styling"],"clientStylingUrl":[1,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[1,"translation-url"],"targetTranslations":[16]},null,{"mbSource":["handleMbSourceChange"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]],["player-elevate-card",[[1,"player-elevate-card",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerLevelFlag":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-elevate-loyaltycard",[[1,"player-elevate-loyaltycard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[1,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-rakeback-card",[[1,"player-rakeback-card",{"endpoint":[513],"theme":[513],"session":[513],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"show":[516],"rakebackInfo":[32],"isLoading":[32],"coolingOffPeriod":[32],"showTheWidget":[32]},[[8,"message","handleMessage"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"],"show":["onShowOrHasRakebackWalletChange"],"rakebackInfo":["onShowOrHasRakebackWalletChange"]}]]]], options);
9
9
  };
10
10
 
11
11
  export { defineCustomElements };
@@ -1,4 +1,4 @@
1
- import { h, a as getAssetPath } from './index-58af35f4.js';
1
+ import { h, a as getAssetPath } from './index-717e7bf3.js';
2
2
  import { a as translate } from './locale.utils-10bf5b6c.js';
3
3
 
4
4
  function _typeof(o) {
@@ -1,5 +1,5 @@
1
- import { r as registerInstance, a as getAssetPath, h, F as Fragment } from './index-58af35f4.js';
2
- import { P as PlayerAvatar, a as PlayerPoints, b as PlayerNameDiv, c as PlayerElevateLoyaltyLevel, d as PlayerLoyaltyProcess, e as PlayerElevateCardRedeem } from './player-elevate-card-items-5a57ffb1.js';
1
+ import { r as registerInstance, a as getAssetPath, h, F as Fragment } from './index-717e7bf3.js';
2
+ import { P as PlayerAvatar, a as PlayerPoints, b as PlayerNameDiv, c as PlayerElevateLoyaltyLevel, d as PlayerLoyaltyProcess, e as PlayerElevateCardRedeem } from './player-elevate-card-items-f1914b1a.js';
3
3
  import { T as TRANSLATIONS } from './locale.utils-10bf5b6c.js';
4
4
 
5
5
  const playerElevateCardCss = "@container (max-width: 270px) {\n .Card .Inner {\n flex-direction: column;\n }\n .Card .Inner .Content {\n padding: 9px;\n }\n .Inner .Row .ExpirationPoints {\n order: 1;\n }\n}\n.Card .PlayerImg {\n order: 0;\n}\n.Card .ExpirationPoints {\n order: 3;\n}\n.Card .LevelInfo {\n order: 2;\n}\n.Card .Inner .Row .PlayerImg {\n flex-direction: column;\n}\n.Card .Inner .Row .PointsInfo {\n width: 100%;\n text-align: center;\n display: flex;\n flex-direction: column;\n max-height: 50%;\n}\n.Card .Inner .PlayerAvatar .Badge {\n background-size: contain;\n background-repeat: no-repeat;\n position: absolute;\n right: 5px;\n bottom: -5px;\n width: 40%;\n height: 40%;\n overflow: visible;\n}\n.Card .Inner .Row .ExpirationPoints {\n text-align: left;\n color: var(--emw--color-red, red);\n}\n.Card .Inner .Row .Points {\n text-wrap: nowrap;\n}\n.Card .Inner .LevelInfo .ElevateLevel {\n flex-direction: column;\n}\n.Card .Inner .LevelInfo .ElevateLevel .LevelName {\n width: calc(100% - 20px);\n text-align: left;\n font-size: 13px;\n padding-left: 20px;\n margin: 10px 0;\n}\n.Card .Inner .LevelInfo .ElevateLevel .ExpirationDate {\n text-align: center;\n font-size: smaller;\n}\n.Card .Inner .LevelInfo .ElevateLevel .ExpireTime {\n margin-left: 5px;\n}";
@@ -1,5 +1,5 @@
1
- import { r as registerInstance, a as getAssetPath, h, F as Fragment } from './index-58af35f4.js';
2
- import { P as PlayerAvatar, a as PlayerPoints, d as PlayerLoyaltyProcess, L as LoyaltyLevelExpireDay } from './player-elevate-card-items-5a57ffb1.js';
1
+ import { r as registerInstance, a as getAssetPath, h, F as Fragment } from './index-717e7bf3.js';
2
+ import { P as PlayerAvatar, a as PlayerPoints, d as PlayerLoyaltyProcess, L as LoyaltyLevelExpireDay } from './player-elevate-card-items-f1914b1a.js';
3
3
  import { t as translateWithParams, T as TRANSLATIONS } from './locale.utils-10bf5b6c.js';
4
4
 
5
5
  const playerElevateLoyaltycardCss = ":host{display:block}@media screen and (min-width: 501px){.LoyaltyCard .Inner .LevelInfo .ElevateLevel{flex-wrap:nowrap}.LoyaltyCard .Inner .LevelInfo .ElevateLevel .ExpirationDate{padding-top:6px;margin-left:0px}}@media screen and (max-width: 500px){.LoyaltyCard .Inner .LevelInfo .ElevateLevel{flex-wrap:wrap}.LoyaltyCard .Inner .LevelInfo .ElevateLevel .ExpirationDate{padding-top:0px;margin-left:0px}}.LoyaltyCard .Inner .LevelProgress{margin-left:0px}.LoyaltyCard .Inner .Row .PointsInfo.ExpirationPoints{text-align:left;color:var(--emw--color-red-50, red)}.LoyaltyCard .Inner .PlayerAvatar .Avatar{display:none}.LoyaltyCard .Inner .PlayerAvatar .Badge{border-radius:50%;background-size:contain;width:100%;height:100%}.LoyaltyCard .Inner .LevelInfo .ElevateLevel{display:flex;flex:1;align-items:center}.LoyaltyCard .Inner .LevelInfo .ElevateLevel .ExpirationDate{position:relative;padding-left:0px}.LoyaltyCard .Inner .LevelInfo .ElevateLevel .ExpirationDate .ExpireTime{margin-left:5px}.LoyaltyCard .Inner .LevelInfo .ElevateLevel .LevelName{padding-left:0;font-size:var(--emw--elevate-fontsize-2xlarge, 21px);position:relative;width:auto;color:var(--emw--elevate-color-levelname, #FFBD2B);font-weight:bold}.LoyaltyCard .PointsRange{display:flex;justify-content:space-between}.LoyaltyCard .PointsRange .PointsInfo{width:auto}.LoyaltyCard .NextLevelTip{text-align:right;font-size:11px;color:var(--emw--color-black, #000);opacity:0.8;font-weight:bold}";
@@ -1,5 +1,5 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-58af35f4.js';
2
- export { s as setNonce } from './index-58af35f4.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-717e7bf3.js';
2
+ export { s as setNonce } from './index-717e7bf3.js';
3
3
  import { g as globalScripts } from './app-globals-0f993ce5.js';
4
4
 
5
5
  /*
@@ -16,5 +16,5 @@ var patchBrowser = () => {
16
16
 
17
17
  patchBrowser().then(async (options) => {
18
18
  await globalScripts();
19
- return bootstrapLazy([["bonus-pagination-limits_6",[[1,"player-elevate-points-history",{"playerAvatarUrl":[513,"player-avatar-url"],"session":[513],"endpoint":[513],"limit":[1538],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"pageLimitOptions":[1537,"page-limit-options"],"currencyPrecision":[1538,"currency-precision"],"enableRakeback":[1540,"enable-rakeback"],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"locale":[32],"type":[32],"pageSetting":[32],"pointsWallets":[32],"validWallets":[32]},[[0,"reloadPageByType","reloadPageByTypeHandler"]],{"type":["walletTypeChangedHandler"],"endpoint":["updateWallets"],"language":["updateWallets"],"session":["updateWallets"]}],[1,"player-elevate-pointcard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"mbSource":[513,"mb-source"],"playerName":[513,"player-name"],"cardTitle":[513,"card-title"],"buttonType":[513,"button-type"],"dateFormat":[513,"date-format"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32],"elevateSPTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}],[0,"bonus-pagination-limits",{"language":[513],"translationUrl":[513,"translation-url"],"pageLimitOptions":[513,"page-limit-options"],"limit":[1538],"pageLimits":[32]}],[0,"bonus-pagination-nav",{"total":[1538],"limit":[1538],"offset":[1538],"tableId":[1537,"table-id"],"language":[1537],"translationUrl":[513,"translation-url"],"arrowsActive":[1540,"arrows-active"],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"displayRangeOfTotal":[1540,"display-range-of-total"],"navItemAccount":[1538,"nav-item-account"],"endPageIndex":[32],"pagesArray":[32],"currentPage":[32],"showAsEllipsisMid":[32]},[[8,"paginationReset","pageLimitChangedHandler"],[8,"pageLimitChanged","pageLimitChangedHandler"]]],[0,"player-elevate-card-data",{"params":[8],"playerElevateLevel":[32],"pointExpireString":[32]},[[9,"resize","handleWindowResizs"],[8,"redeemGiftButton","redeemGiftButtonHandler"]],{"params":["onParamsChanged"]}],[4,"general-styling-wrapper",{"clientStyling":[1,"client-styling"],"clientStylingUrl":[1,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[1,"translation-url"],"targetTranslations":[16]},null,{"mbSource":["handleMbSourceChange"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]],["player-elevate-card",[[1,"player-elevate-card",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerLevelFlag":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-elevate-loyaltycard",[[1,"player-elevate-loyaltycard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[1,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-rakeback-card",[[1,"player-rakeback-card",{"endpoint":[513],"theme":[513],"session":[513],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"show":[516],"rakebackInfo":[32],"isLoading":[32],"coolingOffPeriod":[32],"showTheWidget":[32]},[[8,"message","handleMessage"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"],"show":["onShowOrHasRakebackWalletChange"],"rakebackInfo":["onShowOrHasRakebackWalletChange"]}]]]], options);
19
+ return bootstrapLazy([["bonus-pagination-limits_7",[[1,"player-elevate-points-history",{"playerAvatarUrl":[513,"player-avatar-url"],"session":[513],"endpoint":[513],"limit":[1538],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"pageLimitOptions":[1537,"page-limit-options"],"currencyPrecision":[1538,"currency-precision"],"enableRakeback":[1540,"enable-rakeback"],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"locale":[32],"type":[32],"pageSetting":[32],"pointsWallets":[32],"validWallets":[32],"isLoading":[32]},[[0,"reloadPageByType","reloadPageByTypeHandler"]],{"type":["walletTypeChangedHandler"],"endpoint":["updateWallets"],"language":["updateWallets"],"session":["updateWallets"]}],[1,"player-elevate-pointcard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"mbSource":[513,"mb-source"],"playerName":[513,"player-name"],"cardTitle":[513,"card-title"],"buttonType":[513,"button-type"],"dateFormat":[513,"date-format"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32],"elevateSPTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}],[0,"bonus-pagination-limits",{"language":[513],"translationUrl":[513,"translation-url"],"pageLimitOptions":[513,"page-limit-options"],"limit":[1538],"pageLimits":[32]}],[0,"bonus-pagination-nav",{"total":[1538],"limit":[1538],"offset":[1538],"tableId":[1537,"table-id"],"language":[1537],"translationUrl":[513,"translation-url"],"arrowsActive":[1540,"arrows-active"],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"displayRangeOfTotal":[1540,"display-range-of-total"],"navItemAccount":[1538,"nav-item-account"],"endPageIndex":[32],"pagesArray":[32],"currentPage":[32],"showAsEllipsisMid":[32]},[[8,"paginationReset","pageLimitChangedHandler"],[8,"pageLimitChanged","pageLimitChangedHandler"]]],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[8,"border-radius"],"marginBottom":[8,"margin-bottom"],"marginTop":[8,"margin-top"],"marginLeft":[8,"margin-left"],"marginRight":[8,"margin-right"],"animation":[4],"rows":[2],"size":[1]},null,{"structure":["handleStructureChange"]}],[0,"player-elevate-card-data",{"params":[8],"playerElevateLevel":[32],"pointExpireString":[32]},[[9,"resize","handleWindowResizs"],[8,"redeemGiftButton","redeemGiftButtonHandler"]],{"params":["onParamsChanged"]}],[4,"general-styling-wrapper",{"clientStyling":[1,"client-styling"],"clientStylingUrl":[1,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[1,"translation-url"],"targetTranslations":[16]},null,{"mbSource":["handleMbSourceChange"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]],["player-elevate-card",[[1,"player-elevate-card",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerLevelFlag":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-elevate-loyaltycard",[[1,"player-elevate-loyaltycard",{"endpoint":[513],"theme":[513],"session":[513],"playerAvatarUrl":[513,"player-avatar-url"],"language":[513],"playerName":[513,"player-name"],"dateFormat":[513,"date-format"],"mbSource":[1,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"pointExpireString":[32],"playerElevateLevel":[32],"elevateWalletTotal":[32]},[[0,"playerElevateLeveLoaded","playerElevateLeveLoadedHandler"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"]}]]],["player-rakeback-card",[[1,"player-rakeback-card",{"endpoint":[513],"theme":[513],"session":[513],"language":[513],"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"show":[516],"rakebackInfo":[32],"isLoading":[32],"coolingOffPeriod":[32],"showTheWidget":[32]},[[8,"message","handleMessage"]],{"session":["onSessionOrEndpointChange"],"endpoint":["onSessionOrEndpointChange"],"language":["onSessionOrEndpointChange"],"show":["onShowOrHasRakebackWalletChange"],"rakebackInfo":["onShowOrHasRakebackWalletChange"]}]]]], options);
20
20
  });
@@ -1,4 +1,4 @@
1
- import { r as registerInstance, h } from './index-58af35f4.js';
1
+ import { r as registerInstance, h } from './index-717e7bf3.js';
2
2
  import { a as translate, t as translateWithParams, T as TRANSLATIONS } from './locale.utils-10bf5b6c.js';
3
3
 
4
4
  const playerRakebackCardCss = ":host{display:block}@keyframes rotate{from{transform:rotate(360deg)}to{transform:rotate(0deg)}}.RakebackCard{border:2px solid var(--em-color-border-primary, #003E5C);padding:32px;border-radius:var(--emw--border-radius-medium, 12px);overflow:hidden;font-family:inherit}.RakebackCard .RakebackCardContent .RakebackTitle{font-size:var(--emw--font-size-small, 14px);font-weight:var(--emw--font-weight-semibold, 500);color:var(--em-color-text-secondary, #727672)}.RakebackCard .RakebackCardContent .RakebackDetails{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;margin-top:17px}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackInfo{display:flex;flex-wrap:wrap;align-items:center;gap:0 17px}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackInfo .RakebackRefresh{width:52px;height:52px;cursor:pointer}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackInfo .RakebackRefresh.RakebackLoading{animation:rotate 0.5s linear infinite}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackInfo .RakebackNumContainer{color:var(--em-color-text-primary, #fff);display:flex;align-items:center;gap:8px}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackInfo .RakebackNumContainer .RakebackNum{display:inline-block;font-weight:var(--emw--font-weight-bold, 700);font-size:var(--emw--font-size-2x-large, 36px)}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackInfo .RakebackNumContainer .RakebackCurrency{display:inline-block;font-weight:var(--emw--font-weight-semibold, 500);font-size:var(--emw--font-size-small, 14px);margin-top:14px}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackButton{font-family:inherit;cursor:pointer;width:90px;height:34px;border-radius:var(--emw--border-radius-large, 99px);border:2px solid var(--em-color-border-success, #083B17);display:flex;justify-content:center;align-items:center;color:var(--em-color-text-primary, #fff);background:linear-gradient(180deg, var(--em-color-gradient-1, #24B24E) 0%, var(--em-color-gradient-1, #24B24E) 100%)}.RakebackCard .RakebackCardContent .RakebackDetails .RakebackButton.disabled{cursor:not-allowed;opacity:0.4}.RakebackCard .RakebackCardContent .RakebackCoolOff,.RakebackCard .RakebackCardContent .RakebackError{margin-top:8px;font-weight:var(--emw--font-weight-semibold, 500);font-size:var(--emw--font-size-x-small, 12px);color:var(--em-color-text-error, #FF7A73);text-align:center}";