@everymatrix/lottery-game-page 1.83.10 → 1.83.12
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/cjs/general-multi-select_16.cjs.entry.js +20 -13
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/lottery-game-page.cjs.js +1 -1
- package/dist/collection/components/lottery-game-page/lottery-game-page.css +13 -0
- package/dist/collection/components/lottery-game-page/lottery-game-page.js +9 -3
- package/dist/collection/utils/locale.utils.js +7 -5
- package/dist/esm/general-multi-select_16.entry.js +20 -13
- package/dist/esm/loader.js +1 -1
- package/dist/esm/lottery-game-page.js +1 -1
- package/dist/lottery-game-page/general-multi-select_16.entry.js +1 -1
- package/dist/lottery-game-page/lottery-game-page.esm.js +1 -1
- package/dist/types/components/lottery-game-page/lottery-game-page.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10123,7 +10123,7 @@ const LotteryDrawResultsHistory = class {
|
|
|
10123
10123
|
let url = new URL(`${this.endpoint}/games/${this.gameId}/draws`);
|
|
10124
10124
|
url.searchParams.append('limit', this.limit.toString());
|
|
10125
10125
|
url.searchParams.append('offset', this.offset.toString());
|
|
10126
|
-
url.searchParams.append('
|
|
10126
|
+
url.searchParams.append('status', 'PAYABLE');
|
|
10127
10127
|
if (this.dateFiltersFrom)
|
|
10128
10128
|
url.searchParams.append('from', this.dateFiltersFrom);
|
|
10129
10129
|
if (this.dateFiltersTo)
|
|
@@ -10136,7 +10136,7 @@ const LotteryDrawResultsHistory = class {
|
|
|
10136
10136
|
return res.json();
|
|
10137
10137
|
})
|
|
10138
10138
|
.then((data) => {
|
|
10139
|
-
this.winningDataSetsData = data.items
|
|
10139
|
+
this.winningDataSetsData = data.items || [];
|
|
10140
10140
|
this.drawData = this.winningDataSetsData.map((item) => item);
|
|
10141
10141
|
this.totalResults = data.total;
|
|
10142
10142
|
})
|
|
@@ -10232,9 +10232,9 @@ const LotteryDrawResultsHistory = class {
|
|
|
10232
10232
|
clearInterval(this.interval);
|
|
10233
10233
|
}
|
|
10234
10234
|
render() {
|
|
10235
|
-
let gridHeader = h("div", { key: '
|
|
10236
|
-
return h("section", { key: '
|
|
10237
|
-
h("p", { key: '
|
|
10235
|
+
let gridHeader = h("div", { key: '43dea3d7f12d1ac0b4df84ee15f3ff5192a16837', class: "DrawResultsHeader" }, h("div", { key: '3ee231127221e0c6dfef0e94a4b2bec613aa25f7', class: "DrawResultsHeaderContent" }, h("h4", { key: '7bc26099b3bb593b6e9229322e19941ecd38e093' }, translate$5('drawResultsHeader', this.language)), h("div", { key: '047d1f6718d26512801de33656a803435234eab1', class: "FilterSection" }, h("helper-filters", { key: '2f6ffe2fd2ae0d1a544a57d330991fd72a043a78', "activate-ticket-search": "false", "game-id": this.gameId, language: this.language, "translation-url": this.translationUrl, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }))));
|
|
10236
|
+
return h("section", { key: '007d8200c91e7a99b911ea4e2b65be8932716a8e', class: "GridWrapper", ref: el => this.stylingContainer = el }, h("div", { key: 'aa947a1455794d7719fb17098743ea60e84d6eb1', class: "DrawResultsSection" }, h("div", { key: 'ab8019f6591d773e8e9d52bfd8ca11d61dd74b89', class: "DrawResultsAreaHistory" }, gridHeader, h("div", { key: '2a3fc14445339ba4895e8a9c7e99bcece2a54ca5', class: "HistoryGridWrapper" }, h("div", { key: '90a5560b549fcd9ae871084ff5a5ab998af686cd', class: "HistoryGrid" }, this.isLoading &&
|
|
10237
|
+
h("p", { key: 'af0bdfd22c48844da0942b128ee304b2168571b5' }, translate$5('loading', this.language)), !this.isLoading && !this.noResults && this.drawData.map((item) => h("lottery-draw-results", { endpoint: this.endpoint, "game-id": this.gameId, "draw-id": item.id, "draw-mode": true, language: this.language, "history-draw-data": this.transDataToString(item), "translation-url": this.translationUrl, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource })), !this.isLoading && this.noResults && (h("p", { key: 'e0691b0f79b53410a4d4cba4439fb907552473f8', class: "errorText" }, translate$5('noResults', this.language))))), h("div", { key: '814919c0ea3baf1286ba2ef13fd405d21e417b19', class: "DrawHistoryPaginationWrapper" }, (this.totalResults > this.limit) && h("lottery-pagination", { key: '29f57cc28abab4a76fecb28a3039cf4f56d3f6f3', arrowsActive: true, numberedNavActive: true, "is-reset": this.isReset, "first-page": false, "prev-page": true, "next-page": true, offset: this.offset, limit: this.limit, total: this.totalResults, language: this.language, "translation-url": this.translationUrl, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource })))));
|
|
10238
10238
|
}
|
|
10239
10239
|
static get watchers() { return {
|
|
10240
10240
|
"clientStyling": ["handleClientStylingChange"],
|
|
@@ -10313,6 +10313,7 @@ const TRANSLATIONS$4 = {
|
|
|
10313
10313
|
orderSummarySubmit: 'Submit',
|
|
10314
10314
|
modalLogin: 'Please login to submit a ticket',
|
|
10315
10315
|
loading: 'Loading, please wait ...',
|
|
10316
|
+
emptyText: 'Sorry. The Game is not available now.'
|
|
10316
10317
|
},
|
|
10317
10318
|
ro: {
|
|
10318
10319
|
error: 'Eroare',
|
|
@@ -10327,7 +10328,7 @@ const TRANSLATIONS$4 = {
|
|
|
10327
10328
|
orderSummaryTotal: 'Total',
|
|
10328
10329
|
orderSummarySubmit: 'Trimite',
|
|
10329
10330
|
modalLogin: 'Please login to submit a ticket',
|
|
10330
|
-
loading: 'Se incarca, va rugam asteptati ...'
|
|
10331
|
+
loading: 'Se incarca, va rugam asteptati ...'
|
|
10331
10332
|
},
|
|
10332
10333
|
fr: {
|
|
10333
10334
|
error: 'Error',
|
|
@@ -10342,7 +10343,7 @@ const TRANSLATIONS$4 = {
|
|
|
10342
10343
|
orderSummaryTotal: 'Total',
|
|
10343
10344
|
orderSummarySubmit: 'Submit',
|
|
10344
10345
|
modalLogin: 'Please login to submit a ticket',
|
|
10345
|
-
loading: 'Loading, please wait ...'
|
|
10346
|
+
loading: 'Loading, please wait ...'
|
|
10346
10347
|
},
|
|
10347
10348
|
ar: {
|
|
10348
10349
|
error: 'خطأ',
|
|
@@ -10357,7 +10358,7 @@ const TRANSLATIONS$4 = {
|
|
|
10357
10358
|
orderSummaryTotal: 'المجموع',
|
|
10358
10359
|
orderSummarySubmit: 'يُقدِّم',
|
|
10359
10360
|
modalLogin: 'الرجاء تسجيل الدخول لتقديم تذكرة',
|
|
10360
|
-
loading: 'Loading, please wait ...'
|
|
10361
|
+
loading: 'Loading, please wait ...'
|
|
10361
10362
|
},
|
|
10362
10363
|
hr: {
|
|
10363
10364
|
error: 'Greška',
|
|
@@ -10372,7 +10373,7 @@ const TRANSLATIONS$4 = {
|
|
|
10372
10373
|
orderSummaryTotal: 'Ukupno',
|
|
10373
10374
|
orderSummarySubmit: 'Podnijeti',
|
|
10374
10375
|
modalLogin: 'Molimo prijavite se da uplatite listić',
|
|
10375
|
-
loading: 'Učitavanje, molimo pričekajte ...'
|
|
10376
|
+
loading: 'Učitavanje, molimo pričekajte ...'
|
|
10376
10377
|
}
|
|
10377
10378
|
};
|
|
10378
10379
|
const translate$4 = (key, customLang) => {
|
|
@@ -10390,7 +10391,8 @@ const getTranslations$4 = (url) => {
|
|
|
10390
10391
|
}
|
|
10391
10392
|
});
|
|
10392
10393
|
resolve(TRANSLATIONS$4);
|
|
10393
|
-
})
|
|
10394
|
+
})
|
|
10395
|
+
.catch((err) => {
|
|
10394
10396
|
reject(err);
|
|
10395
10397
|
});
|
|
10396
10398
|
});
|
|
@@ -10438,7 +10440,7 @@ const showNotification = ({ message, theme = 'success' }) => {
|
|
|
10438
10440
|
});
|
|
10439
10441
|
};
|
|
10440
10442
|
|
|
10441
|
-
const lotteryGamePageCss = "@charset \"UTF-8\";\n@import url(\"https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap\");\n:host {\n display: block;\n font-family: \"Roboto\", sans-serif;\n}\n\n.GamePage {\n background-color: var(--emw--color-background, #fff);\n}\n.GamePage ß .GridBanner {\n background-color: var(--emw--color-background-secondary, #f5f5f5);\n background-repeat: no-repeat;\n background-position: center;\n color: var(--emw--color-typography, #000);\n padding: 0 20px 10px;\n height: 220px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n}\n.GamePage ß .GridBanner .BannerButtonsWrapper {\n display: flex;\n justify-content: space-between;\n padding-top: 16px;\n}\n.GamePage ß .GridBanner .BannerButtonsWrapper .BannerBackButton,\n.GamePage ß .GridBanner .BannerButtonsWrapper .BannerLobbyButton {\n background: var(--emw--color-background-secondary, #f5f5f5);\n border: 1px solid var(--emw--color-gray-100, #e6e6e6);\n border-radius: var(--emw--button-border-radius, 4px);\n padding: 7px 15px;\n font-size: 12px;\n text-transform: uppercase;\n width: 80px;\n cursor: pointer;\n}\n.GamePage ß .GridBanner .GridBannerArea {\n padding-top: 30px;\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.GamePage .TotalWinnings {\n color: var(--emw--color-typography, #000);\n font-size: 18px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 10px;\n text-transform: uppercase;\n}\n.GamePage .TotalWinnings span {\n font-size: 18px;\n font-weight: 700;\n}\n.GamePage .NextDraw {\n color: var(--emw--color-primary, #009993);\n font-size: 24px;\n font-weight: 600;\n margin: 0 auto;\n text-align: center;\n text-transform: uppercase;\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: column;\n gap: 4px;\n}\n.GamePage .NextDraw .BannerText {\n font-weight: 400;\n font-size: 18px;\n text-transform: uppercase;\n padding: 0;\n margin: 15px 0 0 0;\n}\n.GamePage .NextDraw .BannerCountdown {\n font-size: 22px;\n color: var(--emw--color-primary, #009993);\n display: flex;\n gap: 20px;\n}\n.GamePage .Tabs {\n display: flex;\n justify-content: center;\n gap: 10px;\n}\n.GamePage .Tabs .TabButton {\n border-radius: var(--emw--button-border-radius, 4px);\n cursor: pointer;\n padding: 8px 0;\n width: 50%;\n max-width: 200px;\n border: 1px solid var(--emw--color-primary, #009993);\n background: var(--emw--color-primary, #009993);\n color: var(--emw--color-background-secondary, #f5f5f5);\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n}\n.GamePage .Tabs .TabButton.Active {\n color: var(--emw--color-primary, #009993);\n background: var(--emw--color-gray-50, #f5f5f5);\n border: 1px solid var(--emw--color-gray-50, #f5f5f5);\n}\n\n.LastDrawResultsTitle {\n color: var(--emw--color-primary, #009993);\n padding: 25px 0 10px 0;\n text-align: center;\n border-radius: var(--emw--button-border-radius, 4px);\n text-transform: uppercase;\n font-size: 16px;\n font-weight: 600;\n margin: 0;\n}\n\n.NextDrawWrapper {\n padding: 10px 15px;\n background: var(--emw--color-background, #fff);\n}\n.NextDrawWrapper .BannerText {\n font-size: 16px;\n font-weight: 700;\n text-align: center;\n color: var(--emw--color-typography, #000);\n}\n.NextDrawWrapper .BannerCountdown {\n font-size: 22px;\n display: flex;\n gap: 8px;\n color: var(--emw--color-primary, #009993);\n font-weight: bolder;\n justify-content: center;\n}\n\n.GamePageContent {\n max-width: 1200px;\n margin: 0 auto;\n background: var(--emw--color-background, #fff);\n container-type: inline-size;\n container-name: gamePage;\n}\n\n.TicketsWrapper {\n min-height: 300px;\n}\n\n@container gamePage (min-width: 1200px) {\n .GamePageContent .TicketsWrapper {\n float: left;\n width: 49%;\n }\n .GamePageContent .GameDetails {\n float: right;\n width: 49%;\n }\n .GamePageContent .OrderSummary {\n float: right;\n width: 49%;\n }\n}\n.GameDetails {\n padding-bottom: 10px;\n margin-bottom: 20px;\n}\n\n.OrderSummary {\n min-width: 200px;\n border-radius: var(--emw--button-border-radius, 4px);\n color: var(--emw--color-typography, #000);\n display: flex;\n flex-direction: column;\n justify-content: center;\n margin-top: 20px;\n background: var(--emw--color-background, #fff);\n}\n.OrderSummary .OrderSummaryTitle {\n font-size: 16px;\n color: var(--emw--color-primary, #009993);\n text-transform: uppercase;\n text-align: center;\n}\n.OrderSummary .OrderTicketInfo {\n display: flex;\n align-items: center;\n color: var(--emw--color-typography, #000);\n}\n.OrderSummary .OrderTicketInfo .Multiplier {\n margin: 0 6px;\n}\n.OrderSummary .Ticket {\n display: inline-block;\n color: var(--emw--color-typography, #000);\n font-size: 14px;\n height: 50px;\n line-height: 50px;\n margin-left: 15px;\n margin-right: 30px;\n}\n.OrderSummary .Ticket span {\n text-align: right;\n}\n.OrderSummary hr {\n border: none;\n border-top: 1px double var(--emw--color-gray-100, #e6e6e6);\n color: var(--emw--color-gray-100, #e6e6e6);\n width: 100%;\n}\n.OrderSummary .Total {\n display: inline-block;\n color: var(--emw--color-typography, #000);\n font-size: 14px;\n height: 50px;\n line-height: 50px;\n margin-left: 15px;\n}\n.OrderSummary .Total span {\n text-align: right;\n}\n\n.ButtonWrapper {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.ButtonWrapper .Button {\n cursor: pointer;\n border-radius: var(--emw--button-border-radius, 4px);\n padding: 8px 60px;\n width: max-content;\n margin: 5px;\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n background: var(--emw--color-primary, #009993);\n color: var(--emw--color-background-secondary, #f5f5f5);\n}\n.ButtonWrapper .Button:hover {\n background: var(--emw--color-secondary, #00aba4);\n}\n.ButtonWrapper .Button.ButtonDisabled {\n pointer-events: none;\n background: var(--emw--color-background-tertiary, #ccc);\n}\n.ButtonWrapper .submitError {\n margin-top: 10px;\n color: var(--emw--color-error, #ff3d00);\n}\n.ButtonWrapper .submitWrap {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n\n.SubmitModalSuccess {\n text-align: center;\n font-size: 18px;\n padding: 20px;\n}\n\n.DeleteTicketModalWrapper {\n padding: 20px;\n text-align: center;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalTitle {\n font-size: 16px;\n color: var(--emw--color-primary, #009993);\n font-weight: 400;\n text-transform: uppercase;\n margin: 20px 0 40px;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalText {\n font-size: 14px;\n color: var(--emw--color-typography, #000);\n line-height: 22px;\n margin-bottom: 40px;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons {\n display: flex;\n gap: 10px;\n justify-content: center;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalConfirm {\n cursor: pointer;\n border-radius: 4px;\n padding: 8px 25px;\n width: max-content;\n margin: 5px;\n color: var(--emw--color-typography, #000);\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n background: var(--emw--color-error, #ff3d00);\n border: 1px solid var(--emw--color-error, #ff3d00);\n color: var(--emw--color-background-secondary, #f5f5f5);\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalConfirm:hover {\n background: var(--emw--color-tertiary, #ff6536);\n border: 1px solid var(--emw--color-error, #ff3d00);\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalCancel {\n cursor: pointer;\n width: max-content;\n border-radius: var(--emw--button-border-radius, 4px);\n padding: 10px 25px;\n margin: 5px;\n border: 1px solid var(--emw--color-secondary, #00aba4);\n background: var(--emw--color-background-secondary, #f5f5f5);\n color: var(--emw--color-typography, #000);\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalCancel:hover {\n background: var(--emw--color-gray-50, #f5f5f5);\n}\n\n.GamePage {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n.GamePage .GamePageContentWrapper,\n.GamePage .HistoryContentWrapper {\n padding: 15px;\n flex: 1;\n background: var(--emw--color-background, #fff);\n}\n\n.HistoryContentWrapper::after,\n.GamePageContent::after {\n content: \"\";\n display: block;\n clear: both;\n}";
|
|
10443
|
+
const lotteryGamePageCss = "@charset \"UTF-8\";\n@import url(\"https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap\");\n:host {\n display: block;\n font-family: \"Roboto\", sans-serif;\n}\n\n.GamePage {\n background-color: var(--emw--color-background, #fff);\n}\n.GamePage ß .GridBanner {\n background-color: var(--emw--color-background-secondary, #f5f5f5);\n background-repeat: no-repeat;\n background-position: center;\n color: var(--emw--color-typography, #000);\n padding: 0 20px 10px;\n height: 220px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n}\n.GamePage ß .GridBanner .BannerButtonsWrapper {\n display: flex;\n justify-content: space-between;\n padding-top: 16px;\n}\n.GamePage ß .GridBanner .BannerButtonsWrapper .BannerBackButton,\n.GamePage ß .GridBanner .BannerButtonsWrapper .BannerLobbyButton {\n background: var(--emw--color-background-secondary, #f5f5f5);\n border: 1px solid var(--emw--color-gray-100, #e6e6e6);\n border-radius: var(--emw--button-border-radius, 4px);\n padding: 7px 15px;\n font-size: 12px;\n text-transform: uppercase;\n width: 80px;\n cursor: pointer;\n}\n.GamePage ß .GridBanner .GridBannerArea {\n padding-top: 30px;\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.GamePage .TotalWinnings {\n color: var(--emw--color-typography, #000);\n font-size: 18px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 10px;\n text-transform: uppercase;\n}\n.GamePage .TotalWinnings span {\n font-size: 18px;\n font-weight: 700;\n}\n.GamePage .NextDraw {\n color: var(--emw--color-primary, #009993);\n font-size: 24px;\n font-weight: 600;\n margin: 0 auto;\n text-align: center;\n text-transform: uppercase;\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: column;\n gap: 4px;\n}\n.GamePage .NextDraw .BannerText {\n font-weight: 400;\n font-size: 18px;\n text-transform: uppercase;\n padding: 0;\n margin: 15px 0 0 0;\n}\n.GamePage .NextDraw .BannerCountdown {\n font-size: 22px;\n color: var(--emw--color-primary, #009993);\n display: flex;\n gap: 20px;\n}\n.GamePage .Tabs {\n display: flex;\n justify-content: center;\n gap: 10px;\n}\n.GamePage .Tabs .TabButton {\n border-radius: var(--emw--button-border-radius, 4px);\n cursor: pointer;\n padding: 8px 0;\n width: 50%;\n max-width: 200px;\n border: 1px solid var(--emw--color-primary, #009993);\n background: var(--emw--color-primary, #009993);\n color: var(--emw--color-background-secondary, #f5f5f5);\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n}\n.GamePage .Tabs .TabButton.Active {\n color: var(--emw--color-primary, #009993);\n background: var(--emw--color-gray-50, #f5f5f5);\n border: 1px solid var(--emw--color-gray-50, #f5f5f5);\n}\n\n.LastDrawResultsTitle {\n color: var(--emw--color-primary, #009993);\n padding: 25px 0 10px 0;\n text-align: center;\n border-radius: var(--emw--button-border-radius, 4px);\n text-transform: uppercase;\n font-size: 16px;\n font-weight: 600;\n margin: 0;\n}\n\n.NextDrawWrapper {\n padding: 10px 15px;\n background: var(--emw--color-background, #fff);\n}\n.NextDrawWrapper .BannerText {\n font-size: 16px;\n font-weight: 700;\n text-align: center;\n color: var(--emw--color-typography, #000);\n}\n.NextDrawWrapper .BannerCountdown {\n font-size: 22px;\n display: flex;\n gap: 8px;\n color: var(--emw--color-primary, #009993);\n font-weight: bolder;\n justify-content: center;\n}\n\n.GamePageContent {\n max-width: 1200px;\n margin: 0 auto;\n background: var(--emw--color-background, #fff);\n container-type: inline-size;\n container-name: gamePage;\n}\n\n.TicketsWrapper {\n min-height: 300px;\n}\n\n@container gamePage (min-width: 1200px) {\n .GamePageContent .TicketsWrapper {\n float: left;\n width: 49%;\n }\n .GamePageContent .GameDetails {\n float: right;\n width: 49%;\n }\n .GamePageContent .OrderSummary {\n float: right;\n width: 49%;\n }\n}\n.GameDetails {\n padding-bottom: 10px;\n margin-bottom: 20px;\n}\n\n.OrderSummary {\n min-width: 200px;\n border-radius: var(--emw--button-border-radius, 4px);\n color: var(--emw--color-typography, #000);\n display: flex;\n flex-direction: column;\n justify-content: center;\n margin-top: 20px;\n background: var(--emw--color-background, #fff);\n}\n.OrderSummary .OrderSummaryTitle {\n font-size: 16px;\n color: var(--emw--color-primary, #009993);\n text-transform: uppercase;\n text-align: center;\n}\n.OrderSummary .OrderTicketInfo {\n display: flex;\n align-items: center;\n color: var(--emw--color-typography, #000);\n}\n.OrderSummary .OrderTicketInfo .Multiplier {\n margin: 0 6px;\n}\n.OrderSummary .Ticket {\n display: inline-block;\n color: var(--emw--color-typography, #000);\n font-size: 14px;\n height: 50px;\n line-height: 50px;\n margin-left: 15px;\n margin-right: 30px;\n}\n.OrderSummary .Ticket span {\n text-align: right;\n}\n.OrderSummary hr {\n border: none;\n border-top: 1px double var(--emw--color-gray-100, #e6e6e6);\n color: var(--emw--color-gray-100, #e6e6e6);\n width: 100%;\n}\n.OrderSummary .Total {\n display: inline-block;\n color: var(--emw--color-typography, #000);\n font-size: 14px;\n height: 50px;\n line-height: 50px;\n margin-left: 15px;\n}\n.OrderSummary .Total span {\n text-align: right;\n}\n\n.ButtonWrapper {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.ButtonWrapper .Button {\n cursor: pointer;\n border-radius: var(--emw--button-border-radius, 4px);\n padding: 8px 60px;\n width: max-content;\n margin: 5px;\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n background: var(--emw--color-primary, #009993);\n color: var(--emw--color-background-secondary, #f5f5f5);\n}\n.ButtonWrapper .Button:hover {\n background: var(--emw--color-secondary, #00aba4);\n}\n.ButtonWrapper .Button.ButtonDisabled {\n pointer-events: none;\n background: var(--emw--color-background-tertiary, #ccc);\n}\n.ButtonWrapper .submitError {\n margin-top: 10px;\n color: var(--emw--color-error, #ff3d00);\n}\n.ButtonWrapper .submitWrap {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n\n.SubmitModalSuccess {\n text-align: center;\n font-size: 18px;\n padding: 20px;\n}\n\n.DeleteTicketModalWrapper {\n padding: 20px;\n text-align: center;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalTitle {\n font-size: 16px;\n color: var(--emw--color-primary, #009993);\n font-weight: 400;\n text-transform: uppercase;\n margin: 20px 0 40px;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalText {\n font-size: 14px;\n color: var(--emw--color-typography, #000);\n line-height: 22px;\n margin-bottom: 40px;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons {\n display: flex;\n gap: 10px;\n justify-content: center;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalConfirm {\n cursor: pointer;\n border-radius: 4px;\n padding: 8px 25px;\n width: max-content;\n margin: 5px;\n color: var(--emw--color-typography, #000);\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n background: var(--emw--color-error, #ff3d00);\n border: 1px solid var(--emw--color-error, #ff3d00);\n color: var(--emw--color-background-secondary, #f5f5f5);\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalConfirm:hover {\n background: var(--emw--color-tertiary, #ff6536);\n border: 1px solid var(--emw--color-error, #ff3d00);\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalCancel {\n cursor: pointer;\n width: max-content;\n border-radius: var(--emw--button-border-radius, 4px);\n padding: 10px 25px;\n margin: 5px;\n border: 1px solid var(--emw--color-secondary, #00aba4);\n background: var(--emw--color-background-secondary, #f5f5f5);\n color: var(--emw--color-typography, #000);\n font-size: 12px;\n transition: all 0.2s linear;\n text-transform: uppercase;\n text-align: center;\n letter-spacing: 0;\n}\n.DeleteTicketModalWrapper .DeleteTicketModalButtons .DeleteTicketModalCancel:hover {\n background: var(--emw--color-gray-50, #f5f5f5);\n}\n\n.GamePage {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n.GamePage .GamePageContentWrapper,\n.GamePage .HistoryContentWrapper {\n padding: 15px;\n flex: 1;\n background: var(--emw--color-background, #fff);\n}\n\n.HistoryContentWrapper::after,\n.GamePageContent::after {\n content: \"\";\n display: block;\n clear: both;\n}\n\n.GamePageWrap .noActiveDraw {\n margin: 10% auto 0px;\n padding: 24px;\n border: 1px solid var(--emw--color-primary, #009993);\n border-radius: 4px;\n width: 280px;\n color: var(--emw--color-primary, #009993);\n}\n\n.fetching {\n margin: 40px auto;\n}";
|
|
10442
10444
|
const LotteryGamePageStyle0 = lotteryGamePageCss;
|
|
10443
10445
|
|
|
10444
10446
|
const LotteryGamePage = class {
|
|
@@ -10499,6 +10501,7 @@ const LotteryGamePage = class {
|
|
|
10499
10501
|
this.showSubscriptionError = false;
|
|
10500
10502
|
this.subscriptionError = '';
|
|
10501
10503
|
this.isSubscribed = false;
|
|
10504
|
+
this.isFetchingGame = false;
|
|
10502
10505
|
}
|
|
10503
10506
|
handleClientStylingChange(newValue, oldValue) {
|
|
10504
10507
|
if (newValue != oldValue) {
|
|
@@ -10577,6 +10580,7 @@ const LotteryGamePage = class {
|
|
|
10577
10580
|
}
|
|
10578
10581
|
getGameDetails() {
|
|
10579
10582
|
let url = new URL(`${this.endpoint}/games/${this.gameId}`);
|
|
10583
|
+
this.isFetchingGame = true;
|
|
10580
10584
|
fetch(url.href)
|
|
10581
10585
|
.then((res) => {
|
|
10582
10586
|
if (res.status >= 300) {
|
|
@@ -10603,6 +10607,9 @@ const LotteryGamePage = class {
|
|
|
10603
10607
|
.catch((err) => {
|
|
10604
10608
|
this.hasErrors = true;
|
|
10605
10609
|
console.log('Error', err);
|
|
10610
|
+
})
|
|
10611
|
+
.finally(() => {
|
|
10612
|
+
this.isFetchingGame = false;
|
|
10606
10613
|
});
|
|
10607
10614
|
}
|
|
10608
10615
|
calculateTotalAmount() {
|
|
@@ -10946,14 +10953,14 @@ const LotteryGamePage = class {
|
|
|
10946
10953
|
'background-size': 'contain',
|
|
10947
10954
|
'background-repeat': 'no-repeat',
|
|
10948
10955
|
'background-position': 'center'
|
|
10949
|
-
} }, h("div", { class: "BannerButtonsWrapper" }), h("div", { class: "Tabs" }, h("div", { class: 'TabButton' + (this.tabIndex == 0 ? ' Active' : ''), onClick: () => (this.tabIndex = 0) }, translate$4('buy', this.language)), h("div", { class: 'TabButton' + (this.tabIndex == 1 ? ' Active' : ''), onClick: () => (this.tabIndex = 1) }, translate$4('viewLatest', this.language)))), this.nextDate
|
|
10956
|
+
} }, h("div", { class: "BannerButtonsWrapper" }), h("div", { class: "Tabs" }, h("div", { class: 'TabButton' + (this.tabIndex == 0 ? ' Active' : ''), onClick: () => (this.tabIndex = 0) }, translate$4('buy', this.language)), h("div", { class: 'TabButton' + (this.tabIndex == 1 ? ' Active' : ''), onClick: () => (this.tabIndex = 1) }, translate$4('viewLatest', this.language)))), this.isFetchingGame ? (h("div", { class: "fetching" }, "Loading...")) : (h("div", { class: "GamePageWrap" }, this.nextDate ? (h("div", null, h("div", { class: "NextDrawWrapper" }, h("div", { class: "NextDraw" }, h("p", { class: "BannerText" }, translate$4('nextDraw', this.language)), h("div", { class: "BannerCountdown" }, h("span", { class: "CountdownDays" }, this.daysRemaining, "D"), h("span", { class: "CountdownHours" }, this.hoursRemaining, "H"), h("span", { class: "CountdownMinutes" }, this.minutesRemaining, "M"), h("span", { class: "CountdownSeconds" }, this.secondsRemaining, "S")))), this.tabIndex == 0 && (h("div", { class: "GamePageContentWrapper" }, h("div", { class: "GamePageContent" }, h("div", { class: "GameDetails" }, h("lottery-game-details", { "low-number": (_b = (_a = this.gameData.rules) === null || _a === void 0 ? void 0 : _a.boards[0]) === null || _b === void 0 ? void 0 : _b.lowNumber, "high-number": (_d = (_c = this.gameData.rules) === null || _c === void 0 ? void 0 : _c.boards[0]) === null || _d === void 0 ? void 0 : _d.highNumber, "minimum-allowed": (_f = (_e = this.gameData.rules) === null || _e === void 0 ? void 0 : _e.boards[0]) === null || _f === void 0 ? void 0 : _f.minimumAllowed, "maxinum-allowed": (_h = (_g = this.gameData.rules) === null || _g === void 0 ? void 0 : _g.boards[0]) === null || _h === void 0 ? void 0 : _h.maxinumAllowed, language: this.language, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource, "translation-url": this.translationData })), h("div", { class: "TicketsWrapper" }, this.mainTickets.map((item) => {
|
|
10950
10957
|
var _a, _b;
|
|
10951
10958
|
return (h("lottery-ticket-controller", { endpoint: this.endpoint, "ticket-id": item.ticketId, "game-id": item.gameId, collapsed: false, last: true, language: this.language, "auto-pick": (_a = this.gameData.rules) === null || _a === void 0 ? void 0 : _a.quickPickAvailable, "reset-button": (_b = this.gameData.rules) === null || _b === void 0 ? void 0 : _b.quickPickAvailable, "total-controllers": this.mainTickets.length, "translation-url": this.translationData, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }));
|
|
10952
10959
|
})), h("div", { class: "OrderSummary" }, h("h3", { class: "OrderSummaryTitle" }, translate$4('orderSummaryTitle', this.language)), h("div", { class: "OrderTicketInfo" }, h("div", { class: "Ticket" }, translate$4('orderSummaryTickets', this.language), ": ", h("span", null, this.mainTickets.length)), h("div", null, h("span", null, this.thousandSeperator(((_k = (_j = this.mainTickets[0]) === null || _j === void 0 ? void 0 : _j.betType) === null || _k === void 0 ? void 0 : _k.combinations) * ((_l = this.mainTickets[0]) === null || _l === void 0 ? void 0 : _l.lineNum))), h("span", { class: "Multiplier" }, "x"), ((_m = this.gameData.rules) === null || _m === void 0 ? void 0 : _m.stakeMultiplierAvailable) && (h("span", null, h("span", null, ((_o = this.mainTickets[0]) === null || _o === void 0 ? void 0 : _o.multiplierNum) === 1
|
|
10953
10960
|
? `${(_p = this.mainTickets[0]) === null || _p === void 0 ? void 0 : _p.multiplierNum} Multiplier`
|
|
10954
10961
|
: `${(_q = this.mainTickets[0]) === null || _q === void 0 ? void 0 : _q.multiplierNum} Multipliers`), h("span", { class: "Multiplier" }, "x"))), h("span", null, `${(_r = this.mainTickets[0]) === null || _r === void 0 ? void 0 : _r.stake} EUR`), ((_s = this.gameData.rules) === null || _s === void 0 ? void 0 : _s.drawMultiplierAvailable) && (h("span", null, h("span", { class: "Multiplier" }, "x"), h("span", null, ((_t = this.mainTickets[0]) === null || _t === void 0 ? void 0 : _t.drawCount) === 1
|
|
10955
10962
|
? `${(_u = this.mainTickets[0]) === null || _u === void 0 ? void 0 : _u.drawCount} Draw`
|
|
10956
|
-
: `${(_v = this.mainTickets[0]) === null || _v === void 0 ? void 0 : _v.drawCount} Draws`))))), h("hr", null), h("div", { class: "Total" }, translate$4('orderSummaryTotal', this.language), ":", ' ', h("span", null, this.thousandSeperator(this.totalAmount), " ", this.currency)), this.isSubscription && (h("div", { class: "SubscriptionWrapper" }, h("lottery-subscription", { endpoint: this.endpoint, endpointSubscription: this.endpointSubscription, language: this.language, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource, gameName: this.gameData.name }))), h("div", { class: "ButtonWrapper" }, this.isLoggedIn && (h("div", null, !this.isLoading && (h("div", { class: "submitWrap" }, h("div", { class: "Button", onClick: () => this.handleSubmitTickets() }, translate$4('orderSummarySubmit', this.language)), this.showSubmitError && h("div", { class: "submitError" }, this.submitError), this.showApiError && h("div", { class: "submitError" }, this.apiError), this.showSubscriptionError && h("div", { class: "submitError" }, this.subscriptionError))), this.isLoading && (h("span", { class: "Button", style: { cursor: 'default' } }, translate$4('loading', this.language))))), !this.isLoggedIn && (h("div", null, h("span", { class: "Button", onClick: () => this.showLoginModal() }, translate$4('orderSummarySubmit', this.language)), h("helper-modal", { "title-modal": "Success", visible: this.loginModalVisible, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }, h("p", { class: "SubmitModalSuccess" }, translate$4('modalLogin', this.language)))))))))), this.tabIndex == 1 && (h("div", { class: "HistoryContentWrapper" }, h("lottery-draw-results-history", { endpoint: this.endpoint, "game-id": this.gameId, language: this.language, "translation-url": this.translationData, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }))), h("helper-modal", { "title-modal": "Success", visible: this.successVisible, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }, h("p", { class: "SubmitModalSuccess" }, translate$4('submitSuccess', this.language)))));
|
|
10963
|
+
: `${(_v = this.mainTickets[0]) === null || _v === void 0 ? void 0 : _v.drawCount} Draws`))))), h("hr", null), h("div", { class: "Total" }, translate$4('orderSummaryTotal', this.language), ":", ' ', h("span", null, this.thousandSeperator(this.totalAmount), " ", this.currency)), this.isSubscription && (h("div", { class: "SubscriptionWrapper" }, h("lottery-subscription", { endpoint: this.endpoint, endpointSubscription: this.endpointSubscription, language: this.language, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource, gameName: this.gameData.name }))), h("div", { class: "ButtonWrapper" }, this.isLoggedIn && (h("div", null, !this.isLoading && (h("div", { class: "submitWrap" }, h("div", { class: "Button", onClick: () => this.handleSubmitTickets() }, translate$4('orderSummarySubmit', this.language)), this.showSubmitError && h("div", { class: "submitError" }, this.submitError), this.showApiError && h("div", { class: "submitError" }, this.apiError), this.showSubscriptionError && (h("div", { class: "submitError" }, this.subscriptionError)))), this.isLoading && (h("span", { class: "Button", style: { cursor: 'default' } }, translate$4('loading', this.language))))), !this.isLoggedIn && (h("div", null, h("span", { class: "Button", onClick: () => this.showLoginModal() }, translate$4('orderSummarySubmit', this.language)), h("helper-modal", { "title-modal": "Success", visible: this.loginModalVisible, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }, h("p", { class: "SubmitModalSuccess" }, translate$4('modalLogin', this.language)))))))))), this.tabIndex == 1 && (h("div", { class: "HistoryContentWrapper" }, h("lottery-draw-results-history", { endpoint: this.endpoint, "game-id": this.gameId, language: this.language, "translation-url": this.translationData, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }))))) : (h("div", { class: "noActiveDraw" }, translate$4('emptyText', this.language))))), h("helper-modal", { "title-modal": "Success", visible: this.successVisible, "client-styling": this.clientStyling, "client-styling-url": this.clientStylingUrl, "mb-source": this.mbSource }, h("p", { class: "SubmitModalSuccess" }, translate$4('submitSuccess', this.language)))));
|
|
10957
10964
|
}
|
|
10958
10965
|
static get assetsDirs() { return ["../static"]; }
|
|
10959
10966
|
get element() { return getElement(this); }
|
package/dist/esm/loader.js
CHANGED
|
@@ -5,7 +5,7 @@ import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
6
6
|
if (typeof window === 'undefined') return undefined;
|
|
7
7
|
await globalScripts();
|
|
8
|
-
return bootstrapLazy(JSON.parse("[[\"general-multi-select_16\",[[1,\"lottery-game-page\",{\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"gameId\":[513,\"game-id\"],\"playerId\":[514,\"player-id\"],\"sessionId\":[513,\"session-id\"],\"language\":[513],\"backgroundUrl\":[513,\"background-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[513,\"translation-url\"],\"tickets\":[32],\"mainTickets\":[32],\"secondaryTickets\":[32],\"tabIndex\":[32],\"hasErrors\":[32],\"totalAmount\":[32],\"successVisible\":[32],\"daysRemaining\":[32],\"hoursRemaining\":[32],\"minutesRemaining\":[32],\"secondsRemaining\":[32],\"nextDate\":[32],\"isLoggedIn\":[32],\"loginModalVisible\":[32],\"isLoading\":[32],\"showSubmitError\":[32],\"submitError\":[32],\"showApiError\":[32],\"apiError\":[32],\"translationData\":[32],\"isSubscription\":[32],\"subscriptionParam\":[32],\"showSubscriptionError\":[32],\"subscriptionError\":[32],\"isSubscribed\":[32]},[[0,\"ticketCompleted\",\"gridFilledHandler\"],[0,\"gridDirty\",\"gridDirtyHandler\"],[0,\"modalCloseEvent\",\"modalCloseEvent\"],[0,\"stakeChange\",\"stakeChangeHandler\"],[0,\"multiplierChange\",\"multiplierChangeHandler\"],[0,\"drawMultiplierChange\",\"drawMultiplierChangeHandler\"],[0,\"lineMultiplierChange\",\"lineMultiplierChangeHandler\"],[0,\"betTypeChange\",\"betTypeChangeHandler\"],[0,\"subscriptionCompleted\",\"handleSubscriptionReady\"],[0,\"subscriptionCheckChange\",\"handleSubscriptionCheckChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"],\"translationUrl\":[\"handleNewTranslations\"],\"endpoint\":[\"watchGameInfoChange\"],\"gameId\":[\"watchGameInfoChange\"]}],[1,\"lottery-draw-results-history\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"drawData\":[32],\"winningDataSetsData\":[32],\"dateFiltersFrom\":[32],\"dateFiltersTo\":[32],\"isLoading\":[32],\"noResults\":[32],\"activeIndex\":[32],\"totalResults\":[32],\"limit\":[32],\"offset\":[32]},[[0,\"filterSelection\",\"filtersHandler\"],[0,\"filterSelectionReset\",\"clearFiltersHandler\"],[0,\"hpPageChange\",\"hpPageChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket-controller\",{\"endpoint\":[513],\"ticketId\":[514,\"ticket-id\"],\"ticketDescription\":[513,\"ticket-description\"],\"gameId\":[513,\"game-id\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"numberOfGrids\":[514,\"number-of-grids\"],\"last\":[516],\"language\":[513],\"autoPick\":[516,\"auto-pick\"],\"resetButton\":[516,\"reset-button\"],\"totalControllers\":[514,\"total-controllers\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"]},[[0,\"helperAccordionAction\",\"helperAccordionActionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-game-details\",{\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-subscription\",{\"translationUrl\":[520,\"translation-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"language\":[513],\"gameName\":[513,\"game-name\"],\"isSubscribed\":[32],\"frequenceList\":[32],\"frequenceState\":[32],\"filterData\":[32],\"subscriptionCode\":[32],\"conditionId\":[32],\"paramId\":[32],\"conditionRule\":[32],\"paramRule\":[32],\"peroidRule\":[32],\"startDateRule\":[32],\"endDateRule\":[32],\"gameNameRule\":[32],\"ruleType\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-filters\",{\"activateTicketSearch\":[516,\"activate-ticket-search\"],\"gameId\":[513,\"game-id\"],\"playerId\":[513,\"player-id\"],\"session\":[513],\"postMessage\":[516,\"post-message\"],\"language\":[513],\"quickFiltersActive\":[516,\"quick-filters-active\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"translationUrl\":[520,\"translation-url\"],\"showFilterModal\":[32],\"showClearButton\":[32],\"filterData\":[32],\"filterDataReset\":[32],\"limitStylingAppends\":[32],\"ticketTypeList\":[32]},[[0,\"modalCloseEvent\",\"modalCloseEvent\"]]],[1,\"lottery-draw-results\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"playerId\":[513,\"player-id\"],\"drawMode\":[516,\"draw-mode\"],\"drawId\":[513,\"draw-id\"],\"gameName\":[513,\"game-name\"],\"ticketDate\":[513,\"ticket-date\"],\"ticketStatus\":[513,\"ticket-status\"],\"ticketId\":[513,\"ticket-id\"],\"ticketType\":[513,\"ticket-type\"],\"ticketAmount\":[513,\"ticket-amount\"],\"ticketCurrency\":[513,\"ticket-currency\"],\"ticketMultiplier\":[516,\"ticket-multiplier\"],\"ticketMultiplierNum\":[514,\"ticket-multiplier-num\"],\"ticketDrawCount\":[514,\"ticket-draw-count\"],\"ticketNumbers\":[513,\"ticket-numbers\"],\"sessionId\":[513,\"session-id\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"ticketDrawData\":[513,\"ticket-draw-data\"],\"historyDrawData\":[513,\"history-draw-data\"],\"tabValue\":[513,\"tab-value\"],\"translationUrl\":[520,\"translation-url\"],\"multiplier\":[32],\"isLoading\":[32],\"hasErrors\":[32],\"errorText\":[32],\"ticketData\":[32],\"ticketDataLoaded\":[32],\"ticketDraws\":[32],\"toggleDrawer\":[32],\"drawData\":[32],\"resultMap\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"numberOfGrids\":[514,\"number-of-grids\"],\"multipleDraws\":[516,\"multiple-draws\"],\"ticketId\":[514,\"ticket-id\"],\"resetButton\":[516,\"reset-button\"],\"autoPick\":[516,\"auto-pick\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"isLoading\":[32],\"hasErrors\":[32],\"ticketDone\":[32],\"isCustomSelect\":[32],\"amountInfo\":[32],\"stakeMultiplier\":[32],\"lineMultiplier\":[32],\"isCustomSelectStake\":[32],\"isCustomSelectDraw\":[32],\"isCustomSelectLine\":[32],\"drawMultiplier\":[32],\"secondarySelectionAllowed\":[32],\"partialQuickpickAvailable\":[32],\"boardsAllowed\":[32],\"tabIndex\":[32],\"groupType\":[32],\"playType\":[32],\"selectedPlayTypeId\":[32],\"maximumAllowed\":[32],\"numberRange\":[32],\"secondaryNumberRange\":[32],\"secondaryMaximumAllowed\":[32],\"minimumAllowed\":[32],\"secondaryMinimumAllowed\":[32],\"quickPicks\":[32]},[[8,\"click\",\"checkForClickOutside\"],[0,\"gridFilled\",\"gridFilledHandler\"],[0,\"gridClearAllEvent\",\"handleGridClearAllEvent\"],[4,\"resetAllTicketSelection\",\"toggleResetAllSeletion\"]],{\"lineMultiplier\":[\"handleLineMultiplierChange\"],\"tabIndex\":[\"handleTabIndexChange\"],\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-tabs\",{\"disabled\":[516],\"label\":[513],\"selected\":[516],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"selectedIndex\":[1538,\"selected-index\"],\"tabs\":[16],\"clientStyling\":[513,\"client-styling\"],\"mbSource\":[1,\"mb-source\"],\"clientStylingurl\":[513,\"client-stylingurl\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-pagination\",{\"nextPage\":[1540,\"next-page\"],\"prevPage\":[1540,\"prev-page\"],\"offset\":[1538],\"limit\":[1538],\"total\":[1538],\"language\":[1537],\"clientStyling\":[1537,\"client-styling\"],\"clientStylingUrl\":[1537,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"arrowsActive\":[1540,\"arrows-active\"],\"secondaryArrowsActive\":[1540,\"secondary-arrows-active\"],\"numberedNavActive\":[1540,\"numbered-nav-active\"],\"isReset\":[1540,\"is-reset\"],\"translationUrl\":[520,\"translation-url\"],\"offsetInt\":[32],\"lastPage\":[32],\"previousPage\":[32],\"limitInt\":[32],\"totalInt\":[32],\"pagesArray\":[32],\"endInt\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"general-multi-select\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"options\":[16],\"maxVisibleChips\":[2,\"max-visible-chips\"],\"placeholder\":[1],\"selectedValues\":[32],\"dropdownOpen\":[32],\"overflowOpen\":[32],\"popoverStyle\":[32],\"clear\":[64]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-accordion\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"ticketHistoryFlag\":[516,\"ticket-history-flag\"],\"headerTitle\":[513,\"header-title\"],\"headerSubtitle\":[513,\"header-subtitle\"],\"description\":[513],\"footer\":[516],\"deleteTab\":[516,\"delete-tab\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"showContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-modal\",{\"titleModal\":[513,\"title-modal\"],\"visible\":[1540],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"limitStylingAppends\":[32]}],[1,\"helper-tab\",{\"selectedIndex\":[514,\"selected-index\"],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"mbSource\":[1,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"tabContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-grid\",{\"ticketId\":[514,\"ticket-id\"],\"totalNumbers\":[514,\"total-numbers\"],\"gameId\":[513,\"game-id\"],\"maximumAllowed\":[514,\"maximum-allowed\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"numberRange\":[513,\"number-range\"],\"selectable\":[516],\"selectedNumbers\":[513,\"selected-numbers\"],\"secondaryNumbers\":[513,\"secondary-numbers\"],\"displaySelected\":[516,\"display-selected\"],\"language\":[513],\"gridIndex\":[514,\"grid-index\"],\"gridType\":[513,\"grid-type\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"highNumber\":[514,\"high-number\"],\"lowNumber\":[514,\"low-number\"],\"selectionType\":[513,\"selection-type\"],\"partialQuickpickAvailable\":[516,\"partial-quickpick-available\"],\"numbers\":[32],\"bonusNumbers\":[32]},[[0,\"lotteryBulletSelection\",\"lotteryBulletSelectionHandler\"],[4,\"resetSelection\",\"resetSelectionHandler\"],[4,\"autoSelection\",\"autoSelectionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-bullet\",{\"value\":[513],\"selectable\":[516],\"isSelected\":[516,\"is-selected\"],\"isBonus\":[516,\"is-bonus\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}]]]]"), options);
|
|
8
|
+
return bootstrapLazy(JSON.parse("[[\"general-multi-select_16\",[[1,\"lottery-game-page\",{\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"gameId\":[513,\"game-id\"],\"playerId\":[514,\"player-id\"],\"sessionId\":[513,\"session-id\"],\"language\":[513],\"backgroundUrl\":[513,\"background-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[513,\"translation-url\"],\"tickets\":[32],\"mainTickets\":[32],\"secondaryTickets\":[32],\"tabIndex\":[32],\"hasErrors\":[32],\"totalAmount\":[32],\"successVisible\":[32],\"daysRemaining\":[32],\"hoursRemaining\":[32],\"minutesRemaining\":[32],\"secondsRemaining\":[32],\"nextDate\":[32],\"isLoggedIn\":[32],\"loginModalVisible\":[32],\"isLoading\":[32],\"showSubmitError\":[32],\"submitError\":[32],\"showApiError\":[32],\"apiError\":[32],\"translationData\":[32],\"isSubscription\":[32],\"subscriptionParam\":[32],\"showSubscriptionError\":[32],\"subscriptionError\":[32],\"isSubscribed\":[32],\"isFetchingGame\":[32]},[[0,\"ticketCompleted\",\"gridFilledHandler\"],[0,\"gridDirty\",\"gridDirtyHandler\"],[0,\"modalCloseEvent\",\"modalCloseEvent\"],[0,\"stakeChange\",\"stakeChangeHandler\"],[0,\"multiplierChange\",\"multiplierChangeHandler\"],[0,\"drawMultiplierChange\",\"drawMultiplierChangeHandler\"],[0,\"lineMultiplierChange\",\"lineMultiplierChangeHandler\"],[0,\"betTypeChange\",\"betTypeChangeHandler\"],[0,\"subscriptionCompleted\",\"handleSubscriptionReady\"],[0,\"subscriptionCheckChange\",\"handleSubscriptionCheckChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"],\"translationUrl\":[\"handleNewTranslations\"],\"endpoint\":[\"watchGameInfoChange\"],\"gameId\":[\"watchGameInfoChange\"]}],[1,\"lottery-draw-results-history\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"drawData\":[32],\"winningDataSetsData\":[32],\"dateFiltersFrom\":[32],\"dateFiltersTo\":[32],\"isLoading\":[32],\"noResults\":[32],\"activeIndex\":[32],\"totalResults\":[32],\"limit\":[32],\"offset\":[32]},[[0,\"filterSelection\",\"filtersHandler\"],[0,\"filterSelectionReset\",\"clearFiltersHandler\"],[0,\"hpPageChange\",\"hpPageChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket-controller\",{\"endpoint\":[513],\"ticketId\":[514,\"ticket-id\"],\"ticketDescription\":[513,\"ticket-description\"],\"gameId\":[513,\"game-id\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"numberOfGrids\":[514,\"number-of-grids\"],\"last\":[516],\"language\":[513],\"autoPick\":[516,\"auto-pick\"],\"resetButton\":[516,\"reset-button\"],\"totalControllers\":[514,\"total-controllers\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"]},[[0,\"helperAccordionAction\",\"helperAccordionActionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-game-details\",{\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-subscription\",{\"translationUrl\":[520,\"translation-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"language\":[513],\"gameName\":[513,\"game-name\"],\"isSubscribed\":[32],\"frequenceList\":[32],\"frequenceState\":[32],\"filterData\":[32],\"subscriptionCode\":[32],\"conditionId\":[32],\"paramId\":[32],\"conditionRule\":[32],\"paramRule\":[32],\"peroidRule\":[32],\"startDateRule\":[32],\"endDateRule\":[32],\"gameNameRule\":[32],\"ruleType\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-filters\",{\"activateTicketSearch\":[516,\"activate-ticket-search\"],\"gameId\":[513,\"game-id\"],\"playerId\":[513,\"player-id\"],\"session\":[513],\"postMessage\":[516,\"post-message\"],\"language\":[513],\"quickFiltersActive\":[516,\"quick-filters-active\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"translationUrl\":[520,\"translation-url\"],\"showFilterModal\":[32],\"showClearButton\":[32],\"filterData\":[32],\"filterDataReset\":[32],\"limitStylingAppends\":[32],\"ticketTypeList\":[32]},[[0,\"modalCloseEvent\",\"modalCloseEvent\"]]],[1,\"lottery-draw-results\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"playerId\":[513,\"player-id\"],\"drawMode\":[516,\"draw-mode\"],\"drawId\":[513,\"draw-id\"],\"gameName\":[513,\"game-name\"],\"ticketDate\":[513,\"ticket-date\"],\"ticketStatus\":[513,\"ticket-status\"],\"ticketId\":[513,\"ticket-id\"],\"ticketType\":[513,\"ticket-type\"],\"ticketAmount\":[513,\"ticket-amount\"],\"ticketCurrency\":[513,\"ticket-currency\"],\"ticketMultiplier\":[516,\"ticket-multiplier\"],\"ticketMultiplierNum\":[514,\"ticket-multiplier-num\"],\"ticketDrawCount\":[514,\"ticket-draw-count\"],\"ticketNumbers\":[513,\"ticket-numbers\"],\"sessionId\":[513,\"session-id\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"ticketDrawData\":[513,\"ticket-draw-data\"],\"historyDrawData\":[513,\"history-draw-data\"],\"tabValue\":[513,\"tab-value\"],\"translationUrl\":[520,\"translation-url\"],\"multiplier\":[32],\"isLoading\":[32],\"hasErrors\":[32],\"errorText\":[32],\"ticketData\":[32],\"ticketDataLoaded\":[32],\"ticketDraws\":[32],\"toggleDrawer\":[32],\"drawData\":[32],\"resultMap\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"numberOfGrids\":[514,\"number-of-grids\"],\"multipleDraws\":[516,\"multiple-draws\"],\"ticketId\":[514,\"ticket-id\"],\"resetButton\":[516,\"reset-button\"],\"autoPick\":[516,\"auto-pick\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"isLoading\":[32],\"hasErrors\":[32],\"ticketDone\":[32],\"isCustomSelect\":[32],\"amountInfo\":[32],\"stakeMultiplier\":[32],\"lineMultiplier\":[32],\"isCustomSelectStake\":[32],\"isCustomSelectDraw\":[32],\"isCustomSelectLine\":[32],\"drawMultiplier\":[32],\"secondarySelectionAllowed\":[32],\"partialQuickpickAvailable\":[32],\"boardsAllowed\":[32],\"tabIndex\":[32],\"groupType\":[32],\"playType\":[32],\"selectedPlayTypeId\":[32],\"maximumAllowed\":[32],\"numberRange\":[32],\"secondaryNumberRange\":[32],\"secondaryMaximumAllowed\":[32],\"minimumAllowed\":[32],\"secondaryMinimumAllowed\":[32],\"quickPicks\":[32]},[[8,\"click\",\"checkForClickOutside\"],[0,\"gridFilled\",\"gridFilledHandler\"],[0,\"gridClearAllEvent\",\"handleGridClearAllEvent\"],[4,\"resetAllTicketSelection\",\"toggleResetAllSeletion\"]],{\"lineMultiplier\":[\"handleLineMultiplierChange\"],\"tabIndex\":[\"handleTabIndexChange\"],\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-tabs\",{\"disabled\":[516],\"label\":[513],\"selected\":[516],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"selectedIndex\":[1538,\"selected-index\"],\"tabs\":[16],\"clientStyling\":[513,\"client-styling\"],\"mbSource\":[1,\"mb-source\"],\"clientStylingurl\":[513,\"client-stylingurl\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-pagination\",{\"nextPage\":[1540,\"next-page\"],\"prevPage\":[1540,\"prev-page\"],\"offset\":[1538],\"limit\":[1538],\"total\":[1538],\"language\":[1537],\"clientStyling\":[1537,\"client-styling\"],\"clientStylingUrl\":[1537,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"arrowsActive\":[1540,\"arrows-active\"],\"secondaryArrowsActive\":[1540,\"secondary-arrows-active\"],\"numberedNavActive\":[1540,\"numbered-nav-active\"],\"isReset\":[1540,\"is-reset\"],\"translationUrl\":[520,\"translation-url\"],\"offsetInt\":[32],\"lastPage\":[32],\"previousPage\":[32],\"limitInt\":[32],\"totalInt\":[32],\"pagesArray\":[32],\"endInt\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"general-multi-select\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"options\":[16],\"maxVisibleChips\":[2,\"max-visible-chips\"],\"placeholder\":[1],\"selectedValues\":[32],\"dropdownOpen\":[32],\"overflowOpen\":[32],\"popoverStyle\":[32],\"clear\":[64]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-accordion\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"ticketHistoryFlag\":[516,\"ticket-history-flag\"],\"headerTitle\":[513,\"header-title\"],\"headerSubtitle\":[513,\"header-subtitle\"],\"description\":[513],\"footer\":[516],\"deleteTab\":[516,\"delete-tab\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"showContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-modal\",{\"titleModal\":[513,\"title-modal\"],\"visible\":[1540],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"limitStylingAppends\":[32]}],[1,\"helper-tab\",{\"selectedIndex\":[514,\"selected-index\"],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"mbSource\":[1,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"tabContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-grid\",{\"ticketId\":[514,\"ticket-id\"],\"totalNumbers\":[514,\"total-numbers\"],\"gameId\":[513,\"game-id\"],\"maximumAllowed\":[514,\"maximum-allowed\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"numberRange\":[513,\"number-range\"],\"selectable\":[516],\"selectedNumbers\":[513,\"selected-numbers\"],\"secondaryNumbers\":[513,\"secondary-numbers\"],\"displaySelected\":[516,\"display-selected\"],\"language\":[513],\"gridIndex\":[514,\"grid-index\"],\"gridType\":[513,\"grid-type\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"highNumber\":[514,\"high-number\"],\"lowNumber\":[514,\"low-number\"],\"selectionType\":[513,\"selection-type\"],\"partialQuickpickAvailable\":[516,\"partial-quickpick-available\"],\"numbers\":[32],\"bonusNumbers\":[32]},[[0,\"lotteryBulletSelection\",\"lotteryBulletSelectionHandler\"],[4,\"resetSelection\",\"resetSelectionHandler\"],[4,\"autoSelection\",\"autoSelectionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-bullet\",{\"value\":[513],\"selectable\":[516],\"isSelected\":[516,\"is-selected\"],\"isBonus\":[516,\"is-bonus\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}]]]]"), options);
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
export { defineCustomElements };
|
|
@@ -16,5 +16,5 @@ var patchBrowser = () => {
|
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(async (options) => {
|
|
18
18
|
await globalScripts();
|
|
19
|
-
return bootstrapLazy(JSON.parse("[[\"general-multi-select_16\",[[1,\"lottery-game-page\",{\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"gameId\":[513,\"game-id\"],\"playerId\":[514,\"player-id\"],\"sessionId\":[513,\"session-id\"],\"language\":[513],\"backgroundUrl\":[513,\"background-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[513,\"translation-url\"],\"tickets\":[32],\"mainTickets\":[32],\"secondaryTickets\":[32],\"tabIndex\":[32],\"hasErrors\":[32],\"totalAmount\":[32],\"successVisible\":[32],\"daysRemaining\":[32],\"hoursRemaining\":[32],\"minutesRemaining\":[32],\"secondsRemaining\":[32],\"nextDate\":[32],\"isLoggedIn\":[32],\"loginModalVisible\":[32],\"isLoading\":[32],\"showSubmitError\":[32],\"submitError\":[32],\"showApiError\":[32],\"apiError\":[32],\"translationData\":[32],\"isSubscription\":[32],\"subscriptionParam\":[32],\"showSubscriptionError\":[32],\"subscriptionError\":[32],\"isSubscribed\":[32]},[[0,\"ticketCompleted\",\"gridFilledHandler\"],[0,\"gridDirty\",\"gridDirtyHandler\"],[0,\"modalCloseEvent\",\"modalCloseEvent\"],[0,\"stakeChange\",\"stakeChangeHandler\"],[0,\"multiplierChange\",\"multiplierChangeHandler\"],[0,\"drawMultiplierChange\",\"drawMultiplierChangeHandler\"],[0,\"lineMultiplierChange\",\"lineMultiplierChangeHandler\"],[0,\"betTypeChange\",\"betTypeChangeHandler\"],[0,\"subscriptionCompleted\",\"handleSubscriptionReady\"],[0,\"subscriptionCheckChange\",\"handleSubscriptionCheckChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"],\"translationUrl\":[\"handleNewTranslations\"],\"endpoint\":[\"watchGameInfoChange\"],\"gameId\":[\"watchGameInfoChange\"]}],[1,\"lottery-draw-results-history\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"drawData\":[32],\"winningDataSetsData\":[32],\"dateFiltersFrom\":[32],\"dateFiltersTo\":[32],\"isLoading\":[32],\"noResults\":[32],\"activeIndex\":[32],\"totalResults\":[32],\"limit\":[32],\"offset\":[32]},[[0,\"filterSelection\",\"filtersHandler\"],[0,\"filterSelectionReset\",\"clearFiltersHandler\"],[0,\"hpPageChange\",\"hpPageChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket-controller\",{\"endpoint\":[513],\"ticketId\":[514,\"ticket-id\"],\"ticketDescription\":[513,\"ticket-description\"],\"gameId\":[513,\"game-id\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"numberOfGrids\":[514,\"number-of-grids\"],\"last\":[516],\"language\":[513],\"autoPick\":[516,\"auto-pick\"],\"resetButton\":[516,\"reset-button\"],\"totalControllers\":[514,\"total-controllers\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"]},[[0,\"helperAccordionAction\",\"helperAccordionActionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-game-details\",{\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-subscription\",{\"translationUrl\":[520,\"translation-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"language\":[513],\"gameName\":[513,\"game-name\"],\"isSubscribed\":[32],\"frequenceList\":[32],\"frequenceState\":[32],\"filterData\":[32],\"subscriptionCode\":[32],\"conditionId\":[32],\"paramId\":[32],\"conditionRule\":[32],\"paramRule\":[32],\"peroidRule\":[32],\"startDateRule\":[32],\"endDateRule\":[32],\"gameNameRule\":[32],\"ruleType\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-filters\",{\"activateTicketSearch\":[516,\"activate-ticket-search\"],\"gameId\":[513,\"game-id\"],\"playerId\":[513,\"player-id\"],\"session\":[513],\"postMessage\":[516,\"post-message\"],\"language\":[513],\"quickFiltersActive\":[516,\"quick-filters-active\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"translationUrl\":[520,\"translation-url\"],\"showFilterModal\":[32],\"showClearButton\":[32],\"filterData\":[32],\"filterDataReset\":[32],\"limitStylingAppends\":[32],\"ticketTypeList\":[32]},[[0,\"modalCloseEvent\",\"modalCloseEvent\"]]],[1,\"lottery-draw-results\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"playerId\":[513,\"player-id\"],\"drawMode\":[516,\"draw-mode\"],\"drawId\":[513,\"draw-id\"],\"gameName\":[513,\"game-name\"],\"ticketDate\":[513,\"ticket-date\"],\"ticketStatus\":[513,\"ticket-status\"],\"ticketId\":[513,\"ticket-id\"],\"ticketType\":[513,\"ticket-type\"],\"ticketAmount\":[513,\"ticket-amount\"],\"ticketCurrency\":[513,\"ticket-currency\"],\"ticketMultiplier\":[516,\"ticket-multiplier\"],\"ticketMultiplierNum\":[514,\"ticket-multiplier-num\"],\"ticketDrawCount\":[514,\"ticket-draw-count\"],\"ticketNumbers\":[513,\"ticket-numbers\"],\"sessionId\":[513,\"session-id\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"ticketDrawData\":[513,\"ticket-draw-data\"],\"historyDrawData\":[513,\"history-draw-data\"],\"tabValue\":[513,\"tab-value\"],\"translationUrl\":[520,\"translation-url\"],\"multiplier\":[32],\"isLoading\":[32],\"hasErrors\":[32],\"errorText\":[32],\"ticketData\":[32],\"ticketDataLoaded\":[32],\"ticketDraws\":[32],\"toggleDrawer\":[32],\"drawData\":[32],\"resultMap\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"numberOfGrids\":[514,\"number-of-grids\"],\"multipleDraws\":[516,\"multiple-draws\"],\"ticketId\":[514,\"ticket-id\"],\"resetButton\":[516,\"reset-button\"],\"autoPick\":[516,\"auto-pick\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"isLoading\":[32],\"hasErrors\":[32],\"ticketDone\":[32],\"isCustomSelect\":[32],\"amountInfo\":[32],\"stakeMultiplier\":[32],\"lineMultiplier\":[32],\"isCustomSelectStake\":[32],\"isCustomSelectDraw\":[32],\"isCustomSelectLine\":[32],\"drawMultiplier\":[32],\"secondarySelectionAllowed\":[32],\"partialQuickpickAvailable\":[32],\"boardsAllowed\":[32],\"tabIndex\":[32],\"groupType\":[32],\"playType\":[32],\"selectedPlayTypeId\":[32],\"maximumAllowed\":[32],\"numberRange\":[32],\"secondaryNumberRange\":[32],\"secondaryMaximumAllowed\":[32],\"minimumAllowed\":[32],\"secondaryMinimumAllowed\":[32],\"quickPicks\":[32]},[[8,\"click\",\"checkForClickOutside\"],[0,\"gridFilled\",\"gridFilledHandler\"],[0,\"gridClearAllEvent\",\"handleGridClearAllEvent\"],[4,\"resetAllTicketSelection\",\"toggleResetAllSeletion\"]],{\"lineMultiplier\":[\"handleLineMultiplierChange\"],\"tabIndex\":[\"handleTabIndexChange\"],\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-tabs\",{\"disabled\":[516],\"label\":[513],\"selected\":[516],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"selectedIndex\":[1538,\"selected-index\"],\"tabs\":[16],\"clientStyling\":[513,\"client-styling\"],\"mbSource\":[1,\"mb-source\"],\"clientStylingurl\":[513,\"client-stylingurl\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-pagination\",{\"nextPage\":[1540,\"next-page\"],\"prevPage\":[1540,\"prev-page\"],\"offset\":[1538],\"limit\":[1538],\"total\":[1538],\"language\":[1537],\"clientStyling\":[1537,\"client-styling\"],\"clientStylingUrl\":[1537,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"arrowsActive\":[1540,\"arrows-active\"],\"secondaryArrowsActive\":[1540,\"secondary-arrows-active\"],\"numberedNavActive\":[1540,\"numbered-nav-active\"],\"isReset\":[1540,\"is-reset\"],\"translationUrl\":[520,\"translation-url\"],\"offsetInt\":[32],\"lastPage\":[32],\"previousPage\":[32],\"limitInt\":[32],\"totalInt\":[32],\"pagesArray\":[32],\"endInt\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"general-multi-select\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"options\":[16],\"maxVisibleChips\":[2,\"max-visible-chips\"],\"placeholder\":[1],\"selectedValues\":[32],\"dropdownOpen\":[32],\"overflowOpen\":[32],\"popoverStyle\":[32],\"clear\":[64]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-accordion\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"ticketHistoryFlag\":[516,\"ticket-history-flag\"],\"headerTitle\":[513,\"header-title\"],\"headerSubtitle\":[513,\"header-subtitle\"],\"description\":[513],\"footer\":[516],\"deleteTab\":[516,\"delete-tab\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"showContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-modal\",{\"titleModal\":[513,\"title-modal\"],\"visible\":[1540],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"limitStylingAppends\":[32]}],[1,\"helper-tab\",{\"selectedIndex\":[514,\"selected-index\"],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"mbSource\":[1,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"tabContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-grid\",{\"ticketId\":[514,\"ticket-id\"],\"totalNumbers\":[514,\"total-numbers\"],\"gameId\":[513,\"game-id\"],\"maximumAllowed\":[514,\"maximum-allowed\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"numberRange\":[513,\"number-range\"],\"selectable\":[516],\"selectedNumbers\":[513,\"selected-numbers\"],\"secondaryNumbers\":[513,\"secondary-numbers\"],\"displaySelected\":[516,\"display-selected\"],\"language\":[513],\"gridIndex\":[514,\"grid-index\"],\"gridType\":[513,\"grid-type\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"highNumber\":[514,\"high-number\"],\"lowNumber\":[514,\"low-number\"],\"selectionType\":[513,\"selection-type\"],\"partialQuickpickAvailable\":[516,\"partial-quickpick-available\"],\"numbers\":[32],\"bonusNumbers\":[32]},[[0,\"lotteryBulletSelection\",\"lotteryBulletSelectionHandler\"],[4,\"resetSelection\",\"resetSelectionHandler\"],[4,\"autoSelection\",\"autoSelectionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-bullet\",{\"value\":[513],\"selectable\":[516],\"isSelected\":[516,\"is-selected\"],\"isBonus\":[516,\"is-bonus\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}]]]]"), options);
|
|
19
|
+
return bootstrapLazy(JSON.parse("[[\"general-multi-select_16\",[[1,\"lottery-game-page\",{\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"gameId\":[513,\"game-id\"],\"playerId\":[514,\"player-id\"],\"sessionId\":[513,\"session-id\"],\"language\":[513],\"backgroundUrl\":[513,\"background-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[513,\"translation-url\"],\"tickets\":[32],\"mainTickets\":[32],\"secondaryTickets\":[32],\"tabIndex\":[32],\"hasErrors\":[32],\"totalAmount\":[32],\"successVisible\":[32],\"daysRemaining\":[32],\"hoursRemaining\":[32],\"minutesRemaining\":[32],\"secondsRemaining\":[32],\"nextDate\":[32],\"isLoggedIn\":[32],\"loginModalVisible\":[32],\"isLoading\":[32],\"showSubmitError\":[32],\"submitError\":[32],\"showApiError\":[32],\"apiError\":[32],\"translationData\":[32],\"isSubscription\":[32],\"subscriptionParam\":[32],\"showSubscriptionError\":[32],\"subscriptionError\":[32],\"isSubscribed\":[32],\"isFetchingGame\":[32]},[[0,\"ticketCompleted\",\"gridFilledHandler\"],[0,\"gridDirty\",\"gridDirtyHandler\"],[0,\"modalCloseEvent\",\"modalCloseEvent\"],[0,\"stakeChange\",\"stakeChangeHandler\"],[0,\"multiplierChange\",\"multiplierChangeHandler\"],[0,\"drawMultiplierChange\",\"drawMultiplierChangeHandler\"],[0,\"lineMultiplierChange\",\"lineMultiplierChangeHandler\"],[0,\"betTypeChange\",\"betTypeChangeHandler\"],[0,\"subscriptionCompleted\",\"handleSubscriptionReady\"],[0,\"subscriptionCheckChange\",\"handleSubscriptionCheckChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"],\"translationUrl\":[\"handleNewTranslations\"],\"endpoint\":[\"watchGameInfoChange\"],\"gameId\":[\"watchGameInfoChange\"]}],[1,\"lottery-draw-results-history\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"drawData\":[32],\"winningDataSetsData\":[32],\"dateFiltersFrom\":[32],\"dateFiltersTo\":[32],\"isLoading\":[32],\"noResults\":[32],\"activeIndex\":[32],\"totalResults\":[32],\"limit\":[32],\"offset\":[32]},[[0,\"filterSelection\",\"filtersHandler\"],[0,\"filterSelectionReset\",\"clearFiltersHandler\"],[0,\"hpPageChange\",\"hpPageChange\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket-controller\",{\"endpoint\":[513],\"ticketId\":[514,\"ticket-id\"],\"ticketDescription\":[513,\"ticket-description\"],\"gameId\":[513,\"game-id\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"numberOfGrids\":[514,\"number-of-grids\"],\"last\":[516],\"language\":[513],\"autoPick\":[516,\"auto-pick\"],\"resetButton\":[516,\"reset-button\"],\"totalControllers\":[514,\"total-controllers\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"]},[[0,\"helperAccordionAction\",\"helperAccordionActionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-game-details\",{\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-subscription\",{\"translationUrl\":[520,\"translation-url\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"endpoint\":[513],\"endpointTicket\":[513,\"endpoint-ticket\"],\"endpointSubscription\":[513,\"endpoint-subscription\"],\"language\":[513],\"gameName\":[513,\"game-name\"],\"isSubscribed\":[32],\"frequenceList\":[32],\"frequenceState\":[32],\"filterData\":[32],\"subscriptionCode\":[32],\"conditionId\":[32],\"paramId\":[32],\"conditionRule\":[32],\"paramRule\":[32],\"peroidRule\":[32],\"startDateRule\":[32],\"endDateRule\":[32],\"gameNameRule\":[32],\"ruleType\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-filters\",{\"activateTicketSearch\":[516,\"activate-ticket-search\"],\"gameId\":[513,\"game-id\"],\"playerId\":[513,\"player-id\"],\"session\":[513],\"postMessage\":[516,\"post-message\"],\"language\":[513],\"quickFiltersActive\":[516,\"quick-filters-active\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"translationUrl\":[520,\"translation-url\"],\"showFilterModal\":[32],\"showClearButton\":[32],\"filterData\":[32],\"filterDataReset\":[32],\"limitStylingAppends\":[32],\"ticketTypeList\":[32]},[[0,\"modalCloseEvent\",\"modalCloseEvent\"]]],[1,\"lottery-draw-results\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"language\":[513],\"playerId\":[513,\"player-id\"],\"drawMode\":[516,\"draw-mode\"],\"drawId\":[513,\"draw-id\"],\"gameName\":[513,\"game-name\"],\"ticketDate\":[513,\"ticket-date\"],\"ticketStatus\":[513,\"ticket-status\"],\"ticketId\":[513,\"ticket-id\"],\"ticketType\":[513,\"ticket-type\"],\"ticketAmount\":[513,\"ticket-amount\"],\"ticketCurrency\":[513,\"ticket-currency\"],\"ticketMultiplier\":[516,\"ticket-multiplier\"],\"ticketMultiplierNum\":[514,\"ticket-multiplier-num\"],\"ticketDrawCount\":[514,\"ticket-draw-count\"],\"ticketNumbers\":[513,\"ticket-numbers\"],\"sessionId\":[513,\"session-id\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"ticketDrawData\":[513,\"ticket-draw-data\"],\"historyDrawData\":[513,\"history-draw-data\"],\"tabValue\":[513,\"tab-value\"],\"translationUrl\":[520,\"translation-url\"],\"multiplier\":[32],\"isLoading\":[32],\"hasErrors\":[32],\"errorText\":[32],\"ticketData\":[32],\"ticketDataLoaded\":[32],\"ticketDraws\":[32],\"toggleDrawer\":[32],\"drawData\":[32],\"resultMap\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-ticket\",{\"endpoint\":[513],\"gameId\":[513,\"game-id\"],\"numberOfGrids\":[514,\"number-of-grids\"],\"multipleDraws\":[516,\"multiple-draws\"],\"ticketId\":[514,\"ticket-id\"],\"resetButton\":[516,\"reset-button\"],\"autoPick\":[516,\"auto-pick\"],\"language\":[513],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"translationUrl\":[520,\"translation-url\"],\"isLoading\":[32],\"hasErrors\":[32],\"ticketDone\":[32],\"isCustomSelect\":[32],\"amountInfo\":[32],\"stakeMultiplier\":[32],\"lineMultiplier\":[32],\"isCustomSelectStake\":[32],\"isCustomSelectDraw\":[32],\"isCustomSelectLine\":[32],\"drawMultiplier\":[32],\"secondarySelectionAllowed\":[32],\"partialQuickpickAvailable\":[32],\"boardsAllowed\":[32],\"tabIndex\":[32],\"groupType\":[32],\"playType\":[32],\"selectedPlayTypeId\":[32],\"maximumAllowed\":[32],\"numberRange\":[32],\"secondaryNumberRange\":[32],\"secondaryMaximumAllowed\":[32],\"minimumAllowed\":[32],\"secondaryMinimumAllowed\":[32],\"quickPicks\":[32]},[[8,\"click\",\"checkForClickOutside\"],[0,\"gridFilled\",\"gridFilledHandler\"],[0,\"gridClearAllEvent\",\"handleGridClearAllEvent\"],[4,\"resetAllTicketSelection\",\"toggleResetAllSeletion\"]],{\"lineMultiplier\":[\"handleLineMultiplierChange\"],\"tabIndex\":[\"handleTabIndexChange\"],\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-tabs\",{\"disabled\":[516],\"label\":[513],\"selected\":[516],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"selectedIndex\":[1538,\"selected-index\"],\"tabs\":[16],\"clientStyling\":[513,\"client-styling\"],\"mbSource\":[1,\"mb-source\"],\"clientStylingurl\":[513,\"client-stylingurl\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-pagination\",{\"nextPage\":[1540,\"next-page\"],\"prevPage\":[1540,\"prev-page\"],\"offset\":[1538],\"limit\":[1538],\"total\":[1538],\"language\":[1537],\"clientStyling\":[1537,\"client-styling\"],\"clientStylingUrl\":[1537,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"arrowsActive\":[1540,\"arrows-active\"],\"secondaryArrowsActive\":[1540,\"secondary-arrows-active\"],\"numberedNavActive\":[1540,\"numbered-nav-active\"],\"isReset\":[1540,\"is-reset\"],\"translationUrl\":[520,\"translation-url\"],\"offsetInt\":[32],\"lastPage\":[32],\"previousPage\":[32],\"limitInt\":[32],\"totalInt\":[32],\"pagesArray\":[32],\"endInt\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"general-multi-select\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"options\":[16],\"maxVisibleChips\":[2,\"max-visible-chips\"],\"placeholder\":[1],\"selectedValues\":[32],\"dropdownOpen\":[32],\"overflowOpen\":[32],\"popoverStyle\":[32],\"clear\":[64]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-accordion\",{\"mbSource\":[513,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"ticketHistoryFlag\":[516,\"ticket-history-flag\"],\"headerTitle\":[513,\"header-title\"],\"headerSubtitle\":[513,\"header-subtitle\"],\"description\":[513],\"footer\":[516],\"deleteTab\":[516,\"delete-tab\"],\"postMessage\":[516,\"post-message\"],\"eventName\":[513,\"event-name\"],\"collapsed\":[516],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"showContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"helper-modal\",{\"titleModal\":[513,\"title-modal\"],\"visible\":[1540],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrlContent\":[513,\"client-styling-url-content\"],\"limitStylingAppends\":[32]}],[1,\"helper-tab\",{\"selectedIndex\":[514,\"selected-index\"],\"cmsEndpoint\":[513,\"cms-endpoint\"],\"mbSource\":[1,\"mb-source\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"lowNumber\":[514,\"low-number\"],\"highNumber\":[514,\"high-number\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"maxinumAllowed\":[514,\"maxinum-allowed\"],\"language\":[513],\"translationUrl\":[520,\"translation-url\"],\"tabContent\":[32]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingChangeURL\"]}],[1,\"lottery-grid\",{\"ticketId\":[514,\"ticket-id\"],\"totalNumbers\":[514,\"total-numbers\"],\"gameId\":[513,\"game-id\"],\"maximumAllowed\":[514,\"maximum-allowed\"],\"minimumAllowed\":[514,\"minimum-allowed\"],\"numberRange\":[513,\"number-range\"],\"selectable\":[516],\"selectedNumbers\":[513,\"selected-numbers\"],\"secondaryNumbers\":[513,\"secondary-numbers\"],\"displaySelected\":[516,\"display-selected\"],\"language\":[513],\"gridIndex\":[514,\"grid-index\"],\"gridType\":[513,\"grid-type\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"],\"highNumber\":[514,\"high-number\"],\"lowNumber\":[514,\"low-number\"],\"selectionType\":[513,\"selection-type\"],\"partialQuickpickAvailable\":[516,\"partial-quickpick-available\"],\"numbers\":[32],\"bonusNumbers\":[32]},[[0,\"lotteryBulletSelection\",\"lotteryBulletSelectionHandler\"],[4,\"resetSelection\",\"resetSelectionHandler\"],[4,\"autoSelection\",\"autoSelectionHandler\"]],{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}],[1,\"lottery-bullet\",{\"value\":[513],\"selectable\":[516],\"isSelected\":[516,\"is-selected\"],\"isBonus\":[516,\"is-bonus\"],\"clientStyling\":[513,\"client-styling\"],\"clientStylingUrl\":[513,\"client-styling-url\"],\"mbSource\":[513,\"mb-source\"]},null,{\"clientStyling\":[\"handleClientStylingChange\"],\"clientStylingUrl\":[\"handleClientStylingUrlChange\"],\"mbSource\":[\"handleMbSourceChange\"]}]]]]"), options);
|
|
20
20
|
});
|