@everymatrix/casino-wagering-bonuses-controller 1.15.0 → 1.15.2
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.
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).app=t()}(this,(function(){"use strict";function e(){}function t(e,t){
|
|
2
2
|
// @ts-ignore
|
|
3
|
-
for(const n in t)e[n]=t[n];return e}function n(e){return e()}function r(){return Object.create(null)}function o(e){e.forEach(n)}function i(e){return"function"==typeof e}function s(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}let a;function l(
|
|
3
|
+
for(const n in t)e[n]=t[n];return e}function n(e){return e()}function r(){return Object.create(null)}function o(e){e.forEach(n)}function i(e){return"function"==typeof e}function s(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}let a;function l(t,...n){if(null==t)return e;const r=t.subscribe(...n);return r.unsubscribe?()=>r.unsubscribe():r}function c(e,t,n){e.$$.on_destroy.push(l(t,n))}const u=["",!0,1,"true","contenteditable"];function h(e,t){e.appendChild(t)}function p(e,t,n){e.insertBefore(t,n||null)}function f(e){e.parentNode&&e.parentNode.removeChild(e)}function d(e,t){for(let n=0;n<e.length;n+=1)e[n]&&e[n].d(t)}function g(e){return document.createElement(e)}function m(e){return document.createElementNS("http://www.w3.org/2000/svg",e)}function b(e){return document.createTextNode(e)}function y(){return b(" ")}function v(){return b("")}function E(e,t,n,r){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n,r)}function w(e,t,n){null==n?e.removeAttribute(t):e.getAttribute(t)!==n&&e.setAttribute(t,n)}
|
|
4
4
|
/**
|
|
5
5
|
* List of attributes that should always be set through the attr method,
|
|
6
6
|
* because updating them through the property setter doesn't work reliably.
|
|
7
7
|
* In the example of `width`/`height`, the problem is that the setter only
|
|
8
8
|
* accepts numeric values, but the attribute can also be set to a string like `50%`.
|
|
9
9
|
* If this list becomes too big, rethink this approach.
|
|
10
|
-
*/const
|
|
10
|
+
*/const T=["width","height"];function B(e,t){
|
|
11
11
|
// @ts-ignore
|
|
12
|
-
const n=Object.getOwnPropertyDescriptors(e.__proto__);for(const r in t)null==t[r]?e.removeAttribute(r):"style"===r?e.style.cssText=t[r]:"__value"===r?e.value=e[r]=t[r]:n[r]&&n[r].set&&-1===
|
|
12
|
+
const n=Object.getOwnPropertyDescriptors(e.__proto__);for(const r in t)null==t[r]?e.removeAttribute(r):"style"===r?e.style.cssText=t[r]:"__value"===r?e.value=e[r]=t[r]:n[r]&&n[r].set&&-1===T.indexOf(r)?e[r]=t[r]:w(e,r,t[r])}function C(e,t){for(const n in t)w(e,n,t[n])}function S(e,t,n){t in e?e[t]="boolean"==typeof e[t]&&""===n||n:w(e,t,n)}function A(e,t){t=""+t,e.data!==t&&(e.data=t)}function _(e,t,n){~u.indexOf(n)?function(e,t){t=""+t,e.wholeText!==t&&(e.data=t)}(e,t):A(e,t)}
|
|
13
|
+
// unfortunately this can't be a constant as that wouldn't be tree-shakeable
|
|
14
|
+
// so we cache the result instead
|
|
15
|
+
let L,H;function x(){if(void 0===L){L=!1;try{"undefined"!=typeof window&&window.parent&&window.parent.document}catch(e){L=!0}}return L}function R(e,t,n){e.classList[n?"add":"remove"](t)}function I(e){const t={};for(const n of e)t[n.name]=n.value;return t}function $(e){H=e}
|
|
13
16
|
/**
|
|
14
17
|
* The `onMount` function schedules a callback to run as soon as the component has been mounted to the DOM.
|
|
15
18
|
* It must be called during the component's initialisation (but doesn't need to live *inside* the component;
|
|
@@ -19,7 +22,7 @@ const n=Object.getOwnPropertyDescriptors(e.__proto__);for(const r in t)null==t[r
|
|
|
19
22
|
*
|
|
20
23
|
* https://svelte.dev/docs#run-time-svelte-onmount
|
|
21
24
|
*/
|
|
22
|
-
function
|
|
25
|
+
function P(e){(function(){if(!H)throw new Error("Function called outside component initialization");return H})().$$.on_mount.push(e)}const M=[],O=[];let N=[];const D=[],k=Promise.resolve();let U=!1;function G(e){N.push(e)}
|
|
23
26
|
// flush() calls callbacks in this order:
|
|
24
27
|
// 1. All beforeUpdate callbacks, in order: parents before children
|
|
25
28
|
// 2. All bind:this callbacks, in reverse order: children before parents.
|
|
@@ -38,74 +41,66 @@ function R(e){(function(){if(!L)throw new Error("Function called outside compone
|
|
|
38
41
|
// 3. During afterUpdate, any updated components will NOT have their afterUpdate
|
|
39
42
|
// callback called a second time; the seen_callbacks set, outside the flush()
|
|
40
43
|
// function, guarantees this behavior.
|
|
41
|
-
const
|
|
42
|
-
function
|
|
44
|
+
const F=new Set;let j=0;// Do *not* move this inside the flush() function
|
|
45
|
+
function V(){
|
|
43
46
|
// Do not reenter flush while dirty components are updated, as this can
|
|
44
47
|
// result in an infinite loop. Instead, let the inner flush handle it.
|
|
45
48
|
// Reentrancy is ok afterwards for bindings etc.
|
|
46
|
-
if(0!==
|
|
49
|
+
if(0!==j)return;const e=H;do{
|
|
47
50
|
// first, call beforeUpdate functions
|
|
48
51
|
// and update components
|
|
49
|
-
try{for(;
|
|
52
|
+
try{for(;j<M.length;){const e=M[j];j++,$(e),W(e.$$)}}catch(e){
|
|
50
53
|
// reset dirty state to not end up in a deadlocked state and then rethrow
|
|
51
|
-
throw
|
|
54
|
+
throw M.length=0,j=0,e}for($(null),M.length=0,j=0;O.length;)O.pop()();
|
|
52
55
|
// then, once components are updated, call
|
|
53
56
|
// afterUpdate functions. This may cause
|
|
54
57
|
// subsequent updates...
|
|
55
|
-
for(let e=0;e<
|
|
58
|
+
for(let e=0;e<N.length;e+=1){const t=N[e];F.has(t)||(
|
|
56
59
|
// ...so guard against infinite loops
|
|
57
|
-
|
|
60
|
+
F.add(t),t())}N.length=0}while(M.length);for(;D.length;)D.pop()();U=!1,F.clear(),$(e)}function W(e){if(null!==e.fragment){e.update(),o(e.before_update);const t=e.dirty;e.dirty=[-1],e.fragment&&e.fragment.p(e.ctx,t),e.after_update.forEach(G)}}
|
|
58
61
|
/**
|
|
59
62
|
* Useful for example to execute remaining `afterUpdate` callbacks before executing `destroy`.
|
|
60
|
-
*/const
|
|
63
|
+
*/const K=new Set;function Z(e,t){const n={},r={},o={$$scope:1};let i=e.length;for(;i--;){const s=e[i],a=t[i];if(a){for(const e in s)e in a||(r[e]=1);for(const e in a)o[e]||(n[e]=a[e],o[e]=1);e[i]=a}else for(const e in s)o[e]=1}for(const e in r)e in n||(n[e]=void 0);return n}function X(e,t){const n=e.$$;null!==n.fragment&&(!function(e){const t=[],n=[];N.forEach((r=>-1===e.indexOf(r)?t.push(r):n.push(r))),n.forEach((e=>e())),N=t}(n.after_update),o(n.on_destroy),n.fragment&&n.fragment.d(t),
|
|
61
64
|
// TODO null out other refs, including component.$$ (but need to
|
|
62
65
|
// preserve final state?)
|
|
63
|
-
n.on_destroy=n.fragment=null,n.ctx=[])}function
|
|
66
|
+
n.on_destroy=n.fragment=null,n.ctx=[])}function z(e,t){-1===e.$$.dirty[0]&&(M.push(e),U||(U=!0,k.then(V)),e.$$.dirty.fill(0)),e.$$.dirty[t/31|0]|=1<<t%31}function Y(t,s,a,l,c,u,h,p=[-1]){const d=H;$(t);const g=t.$$={fragment:null,ctx:[],
|
|
64
67
|
// state
|
|
65
68
|
props:u,update:e,not_equal:c,bound:r(),
|
|
66
69
|
// lifecycle
|
|
67
70
|
on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(s.context||(d?d.$$.context:[])),
|
|
68
71
|
// everything else
|
|
69
|
-
callbacks:r(),dirty:
|
|
72
|
+
callbacks:r(),dirty:p,skip_bound:!1,root:s.target||d.$$.root};h&&h(g.root);let m=!1;if(g.ctx=a?a(t,s.props||{},((e,n,...r)=>{const o=r.length?r[0]:n;return g.ctx&&c(g.ctx[e],g.ctx[e]=o)&&(!g.skip_bound&&g.bound[e]&&g.bound[e](o),m&&z(t,e)),n})):[],g.update(),m=!0,o(g.before_update),
|
|
70
73
|
// `false` as a special case of no DOM component
|
|
71
74
|
g.fragment=!!l&&l(g.ctx),s.target){if(s.hydrate){const e=function(e){return Array.from(e.childNodes)}(s.target);
|
|
72
75
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
73
|
-
g.fragment&&g.fragment.l(e),e.forEach(
|
|
76
|
+
g.fragment&&g.fragment.l(e),e.forEach(f)}else
|
|
74
77
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
75
|
-
g.fragment&&g.fragment.c();s.intro&&((b=t.$$.fragment)&&b.i&&(
|
|
78
|
+
g.fragment&&g.fragment.c();s.intro&&((b=t.$$.fragment)&&b.i&&(K.delete(b),b.i(y))),function(e,t,r,s){const{fragment:a,after_update:l}=e.$$;a&&a.m(t,r),s||
|
|
76
79
|
// onMount happens before the initial afterUpdate
|
|
77
|
-
|
|
80
|
+
G((()=>{const t=e.$$.on_mount.map(n).filter(i);
|
|
78
81
|
// if the component was destroyed immediately
|
|
79
82
|
// it will update the `$$.on_destroy` reference to `null`.
|
|
80
83
|
// the destructured on_destroy may still reference to the old array
|
|
81
84
|
e.$$.on_destroy?e.$$.on_destroy.push(...t):
|
|
82
85
|
// Edge case - component was destroyed immediately,
|
|
83
86
|
// most likely as a result of a binding initialising
|
|
84
|
-
o(t),e.$$.on_mount=[]})),l.forEach(
|
|
87
|
+
o(t),e.$$.on_mount=[]})),l.forEach(G)}(t,s.target,s.anchor,s.customElement),V()}var b,y;$(d)}let J;"function"==typeof HTMLElement&&(J=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:e}=this.$$;this.$$.on_disconnect=e.map(n).filter(i);
|
|
85
88
|
// @ts-ignore todo: improve typings
|
|
86
89
|
for(const e in this.$$.slotted)
|
|
87
90
|
// @ts-ignore todo: improve typings
|
|
88
|
-
this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,n){this[e]=n}disconnectedCallback(){o(this.$$.on_disconnect)}$destroy(){
|
|
91
|
+
this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,n){this[e]=n}disconnectedCallback(){o(this.$$.on_disconnect)}$destroy(){X(this,1),this.$destroy=e}$on(t,n){
|
|
89
92
|
// TODO should this delegate to addEventListener?
|
|
90
93
|
if(!i(n))return e;const r=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return r.push(n),()=>{const e=r.indexOf(n);-1!==e&&r.splice(e,1)}}$set(e){var t;this.$$set&&(t=e,0!==Object.keys(t).length)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}});
|
|
91
94
|
/* ../casino-wagering-bonus-progress/src/CasinoWageringBonusProgress.svelte generated by Svelte v3.59.2 */
|
|
92
|
-
function
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
102
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
103
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
104
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
105
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
106
|
-
***************************************************************************** */
|
|
107
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
108
|
-
var ie=function(e,t){return ie=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},ie(e,t)};function se(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}ie(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var ae,le,ce,ue,he=function(){return he=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},he.apply(this,arguments)};function fe(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}function pe(e,t,n){if(n||2===arguments.length)for(var r,o=0,i=t.length;o<i;o++)!r&&o in t||(r||(r=Array.prototype.slice.call(t,0,o)),r[o]=t[o]);return e.concat(r||Array.prototype.slice.call(t))}"function"==typeof SuppressedError&&SuppressedError,function(e){e.claimable="claimable",e.active="active",e.completed="completed",e.forfeited="forfeited",e.expired="expired",e.released="released",e.closed="closed"}(ae||(ae={})),function(e){e.standard="standard",e.freeBet="freeBet",e.freeRound="freeRound",e.tournamentTicket="tournamentTicket",e.oddsBoost="oddsBoost",e.cashBack="cashBack"}(le||(le={})),function(e){e.Money="money",e.BetCount="betcount"}(ce||(ce={})),function(e){e.en="en",e["zh-hk"]="zh-hk"}(ue||(ue={}));var de="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};var ge=function(e,t,n){return e(n={path:t,exports:{},require:function(e,t){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==t&&n.path)}},n.exports),n.exports}((function(e,t){
|
|
95
|
+
function q(n){let r,o,i,s,a,l,c,u,d;G(/*onwindowresize*/n[11]);let g=[{class:"ring",r:/*radius*/n[3],cx:/*center*/n[9],cy:/*center*/n[9],"stroke-width":`${/*ringStrokeWidth*/n[5]}px`}],y={};for(let e=0;e<g.length;e+=1)y=t(y,g[e]);let v=[{class:"ring ring-progress "+(/*status*/n[1]===/*BonusStatus*/n[6].InProgress?"active":""),r:/*radius*/n[3],cx:/*center*/n[9],cy:/*center*/n[9],"stroke-width":`${/*ringStrokeWidth*/n[5]}px`,"stroke-dasharray":`${/*circumference*/n[8]} ${/*circumference*/n[8]}`,"stroke-dashoffset":/*circumference*/n[8]-Number(/*percent*/n[0])/100*/*circumference*/n[8]}],w={};for(let e=0;e<v.length;e+=1)w=t(w,v[e]);let T=[{class:"center "+(/*status*/n[1]===/*BonusStatus*/n[6].InProgress?"active":""),r:/*radius*/n[3]-/*ringStrokeWidth*/n[5]/2-3,cx:/*center*/n[9],cy:/*center*/n[9]}],B={};for(let e=0;e<T.length;e+=1)B=t(B,T[e]);let S=[{x:/*center*/n[9],y:/*center*/n[9]},
|
|
96
|
+
/*classWithPartMatchMobile*/n[7]("ProgressText")],A={};for(let e=0;e<S.length;e+=1)A=t(A,S[e]);let L=[{width:/*size*/n[4],height:/*size*/n[4]}],H={};for(let e=0;e<L.length;e+=1)H=t(H,L[e]);return{c(){r=m("svg"),o=m("circle"),i=m("circle"),s=m("circle"),a=m("text"),l=b(/*percent*/n[0]),c=b("%"),this.c=e,C(o,y),C(i,w),C(s,B),C(a,A),C(r,H)},m(e,t){p(e,r,t),h(r,o),h(r,i),h(r,s),h(r,a),h(a,l),h(a,c),u||(d=E(window,"resize",/*onwindowresize*/n[11]),u=!0)},p(e,[t]){C(o,y=Z(g,[/*radius, center, ringStrokeWidth*/552&t&&{class:"ring",r:/*radius*/e[3],cx:/*center*/e[9],cy:/*center*/e[9],"stroke-width":`${/*ringStrokeWidth*/e[5]}px`}])),C(i,w=Z(v,[/*status, BonusStatus, radius, center, ringStrokeWidth, circumference, percent*/875&t&&{class:"ring ring-progress "+(/*status*/e[1]===/*BonusStatus*/e[6].InProgress?"active":""),r:/*radius*/e[3],cx:/*center*/e[9],cy:/*center*/e[9],"stroke-width":`${/*ringStrokeWidth*/e[5]}px`,"stroke-dasharray":`${/*circumference*/e[8]} ${/*circumference*/e[8]}`,"stroke-dashoffset":/*circumference*/e[8]-Number(/*percent*/e[0])/100*/*circumference*/e[8]}])),C(s,B=Z(T,[/*status, BonusStatus, radius, ringStrokeWidth, center*/618&t&&{class:"center "+(/*status*/e[1]===/*BonusStatus*/e[6].InProgress?"active":""),r:/*radius*/e[3]-/*ringStrokeWidth*/e[5]/2-3,cx:/*center*/e[9],cy:/*center*/e[9]}])),/*percent*/1&t&&_(l,/*percent*/e[0],A.contenteditable),C(a,A=Z(S,[/*center*/512&t&&{x:/*center*/e[9],y:/*center*/e[9]},/*classWithPartMatchMobile*/128&t&&/*classWithPartMatchMobile*/e[7]("ProgressText")])),C(r,H=Z(L,[/*size*/16&t&&{width:/*size*/e[4],height:/*size*/e[4]}]))},i:e,o:e,d(e){e&&f(r),u=!1,d()}}}function Q(e,t,n){let r,o,i,s,a,l,c,{percent:u=""}=t,{status:h=""}=t;var p;!function(e){e.BeforeClaimed="BeforeClaimed",e.InProgress="active",e.ForfeitedOrCompleted="ForfeitedOrCompleted"}(p||(p={}));let f=200;return e.$$set=e=>{"percent"in e&&n(0,u=e.percent),"status"in e&&n(1,h=e.status)},e.$$.update=()=>{/*innerWidth*/4&e.$$.dirty&&n(10,r=f<=576),/*isMobileView, innerWidth*/1028&e.$$.dirty&&
|
|
97
|
+
// svg
|
|
98
|
+
n(4,o=r?f/4:100),/*size*/16&e.$$.dirty&&n(5,i=o/7.5),/*size, ringStrokeWidth*/48&e.$$.dirty&&n(3,s=o/2-i/2),/*size*/16&e.$$.dirty&&n(9,a=o/2),/*radius*/8&e.$$.dirty&&n(8,l=2*s*Math.PI),/*isMobileView*/1024&e.$$.dirty&&n(7,c=(e,t="")=>((e,t="")=>({part:e,class:[e,t].join(" ")}))(`${e}${r?` ${e}Mobile`:""}`,t))},[u,h,f,s,o,i,p,c,l,a,r,function(){n(2,f=window.innerWidth)}]}!customElements.get("casino-wagering-bonus-progress")&&customElements.define("casino-wagering-bonus-progress",class extends J{constructor(e){super();const t=document.createElement("style");t.textContent="*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}.ProgressText{fill:#FFFFFF;text-anchor:middle;dominant-baseline:middle;font-style:normal;font-weight:700;font-size:22.0351951033px}.ProgressTextMobile{font-size:5.1282051282vw}circle.ring{stroke:#F2F4F6;fill:transparent}circle.ring-progress{transition:0.35s stroke-dashoffset;stroke:#C4C4C4;transform:rotate(-90deg);transform-origin:50% 50%}circle.ring-progress.active{stroke:#00AEEF}circle.center{fill:#C4C4C4}circle.center.active{fill:#00AEEF}",this.shadowRoot.appendChild(t),Y(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},Q,q,s,{percent:0,status:1},null),e&&(e.target&&p(e.target,this,e.anchor),e.props&&(this.$set(e.props),V()))}static get observedAttributes(){return["percent","status"]}get percent(){return this.$$.ctx[0]}set percent(e){this.$$set({percent:e}),V()}get status(){return this.$$.ctx[1]}set status(e){this.$$set({status:e}),V()}});const ee=(e,t)=>({remainder:e%t,quotient:Math.floor(e/t)}),te=e=>{const t=new Date;return new Date(e).getTime()-t.getTime()},ne=e=>{const t=te(e)/6e4,{quotient:n,remainder:r}=ee(t,1440),{quotient:o,remainder:i}=ee(r,60),s=Math.floor(i);return[{value:n,symbol:"d"},{value:o,symbol:"h"},{value:s,symbol:"m"}].map((e=>{return t=e.value,(Math.abs(t)<10?`0${t}`:t)+e.symbol;var t})).join(" ")},re=(e,t="")=>({part:e,class:[e,t].join(" ")}),oe=async(e,t,n={})=>{const r=Object.assign(Object.assign({},n),{signal:e.signal});let o;return o=await fetch(t,r),o=await o.json(),o};
|
|
99
|
+
/* ../casino-wagering-bonus/src/private.infos.svelte generated by Svelte v3.59.2 */
|
|
100
|
+
function ie(e,t,n){const r=e.slice();return r[6]=t[n],r}
|
|
101
|
+
// (23:2) {#each _infos as info}
|
|
102
|
+
function se(e){let n,r,o,i,s,l,c,u,d=/*info*/e[6].text+"",m=[
|
|
103
|
+
/*classWithPartMatchMobile*/e[2](`InfoIcon ${/*info*/e[6].key}InfoIcon`),{src:o=/*info*/e[6].svg},{alt:i=/*info*/e[6].key}],v={};for(let e=0;e<m.length;e+=1)v=t(v,m[e]);let E=[/*classWithPartMatchMobile*/e[2](`InfoText ${/*info*/e[6].key}InfoText`)],w={};for(let e=0;e<E.length;e+=1)w=t(w,E[e]);let T=[/*classWithPartMatchMobile*/e[2](`Info ${/*info*/e[6].key}Info`)],C={};for(let e=0;e<T.length;e+=1)C=t(C,T[e]);return{c(){n=g("div"),r=g("img"),s=y(),l=g("span"),c=b(d),u=y(),B(r,v),B(l,w),B(n,C)},m(e,t){p(e,n,t),h(n,r),h(n,s),h(n,l),h(l,c),h(n,u)},p(e,t){var s,u;B(r,v=Z(m,[/*classWithPartMatchMobile, _infos*/6&t&&/*classWithPartMatchMobile*/e[2](`InfoIcon ${/*info*/e[6].key}InfoIcon`),/*_infos*/2&t&&(s=r.src,u=o=/*info*/e[6].svg,a||(a=document.createElement("a")),a.href=u,!(s===a.href))&&{src:o},/*_infos*/2&t&&i!==(i=/*info*/e[6].key)&&{alt:i}])),/*_infos*/2&t&&d!==(d=/*info*/e[6].text+"")&&_(c,d,w.contenteditable),B(l,w=Z(E,[/*classWithPartMatchMobile, _infos*/6&t&&/*classWithPartMatchMobile*/e[2](`InfoText ${/*info*/e[6].key}InfoText`)])),B(n,C=Z(T,[/*classWithPartMatchMobile, _infos*/6&t&&/*classWithPartMatchMobile*/e[2](`Info ${/*info*/e[6].key}Info`)]))},d(e){e&&f(n)}}}function ae(n){let r,o,i;G(/*onwindowresize*/n[5]);let s=/*_infos*/n[1],a=[];for(let e=0;e<s.length;e+=1)a[e]=se(ie(n,s,e));let l=[/*classWithPartMatchMobile*/n[2]("InfoContainer")],c={};for(let e=0;e<l.length;e+=1)c=t(c,l[e]);return{c(){r=g("div");for(let e=0;e<a.length;e+=1)a[e].c();this.c=e,B(r,c)},m(e,t){p(e,r,t);for(let e=0;e<a.length;e+=1)a[e]&&a[e].m(r,null);o||(i=E(window,"resize",/*onwindowresize*/n[5]),o=!0)},p(e,[t]){if(/*classWithPartMatchMobile, _infos*/6&t){let n;for(s=/*_infos*/e[1],n=0;n<s.length;n+=1){const o=ie(e,s,n);a[n]?a[n].p(o,t):(a[n]=se(o),a[n].c(),a[n].m(r,null))}for(;n<a.length;n+=1)a[n].d(1);a.length=s.length}B(r,c=Z(l,[/*classWithPartMatchMobile*/4&t&&/*classWithPartMatchMobile*/e[2]("InfoContainer")]))},i:e,o:e,d(e){e&&f(r),d(a,e),o=!1,i()}}}function le(e,t,n){let r,o,i,s,{infos:a="[]"}=t;return e.$$set=e=>{"infos"in e&&n(3,a=e.infos)},e.$$.update=()=>{/*innerWidth*/1&e.$$.dirty&&n(4,r=s<=576),/*isMobileView*/16&e.$$.dirty&&n(2,o=e=>{if(r){const t=e.split(" ").map((e=>`${e}Mobile`)).join(" ");return re(`${e} ${t}`)}return re(`${e}`)}),/*infos*/8&e.$$.dirty&&n(1,i=JSON.parse(a))},[s,i,o,a,r,function(){n(0,s=window.innerWidth)}]}customElements.define("private-casino-wagering-bonus-info",class extends J{constructor(e){super();const t=document.createElement("style");t.textContent=':host{font-family:system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-family:"Roboto";font-style:normal}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}.Info{margin-top:9.181331293px;margin-bottom:9.181331293px}.InfoMobile{margin-top:2.0512820513vw;margin-bottom:1.2820512821vw}.InfoIcon{vertical-align:middle;width:14.6901300689px;height:14.6901300689px}.InfoIconMobile{width:5.1282051282vw;height:5.1282051282vw}.InfoText{vertical-align:middle}.InfoTextMobile{margin-left:1.5384615385vw}',this.shadowRoot.appendChild(t),Y(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},le,ae,s,{infos:3},null),e&&(e.target&&p(e.target,this,e.anchor),e.props&&(this.$set(e.props),V()))}static get observedAttributes(){return["infos"]}get infos(){return this.$$.ctx[3]}set infos(e){this.$$set({infos:e}),V()}});var ce="data:image/svg+xml,%3csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_3490_338)'%3e %3cpath d='M12.5 0C5.60762 0 0 5.60762 0 12.5C0 19.3924 5.60762 25 12.5 25C19.3924 25 25 19.3924 25 12.5C25 5.60762 19.3924 0 12.5 0ZM12.5 23.4375C6.46896 23.4375 1.56251 18.531 1.56251 12.5C1.56251 6.46896 6.46896 1.56251 12.5 1.56251C18.531 1.56251 23.4375 6.46896 23.4375 12.5C23.4375 18.531 18.531 23.4375 12.5 23.4375V23.4375Z' fill='%2300AEEF'/%3e %3cpath d='M13.2813 4.6875H11.7188V12.8235L16.6351 17.7398L17.7399 16.6351L13.2813 12.1765V4.6875Z' fill='%2300AEEF'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_3490_338'%3e %3crect width='25' height='25' fill='white'/%3e %3c/clipPath%3e %3c/defs%3e%3c/svg%3e",ue="data:image/svg+xml,%3csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_3490_347)'%3e %3cpath d='M12.5002 7.5C11.5797 7.5 10.8335 8.2462 10.8335 9.16667V23.3333C10.8335 24.2538 11.5797 25 12.5002 25C13.4206 25 14.1668 24.2538 14.1668 23.3333V9.16667C14.1668 8.2462 13.4206 7.5 12.5002 7.5ZM13.3335 23.3333C13.3335 23.7936 12.9604 24.1667 12.5002 24.1667C12.0399 24.1667 11.6668 23.7936 11.6668 23.3333V9.16667C11.6668 8.70641 12.0399 8.33333 12.5002 8.33333C12.9604 8.33333 13.3335 8.70641 13.3335 9.16667V23.3333Z' fill='%2300AEEF'/%3e %3cpath d='M7.08317 12.5C6.1627 12.5 5.4165 13.2462 5.4165 14.1667V23.3333C5.4165 24.2538 6.1627 25 7.08317 25C8.00364 25 8.74984 24.2538 8.74984 23.3333V14.1667C8.74984 13.2462 8.00364 12.5 7.08317 12.5ZM7.9165 23.3333C7.9165 23.7936 7.54343 24.1667 7.08317 24.1667C6.62291 24.1667 6.24984 23.7936 6.24984 23.3333V14.1667C6.24984 13.7064 6.62291 13.3333 7.08317 13.3333C7.54343 13.3333 7.9165 13.7064 7.9165 14.1667V23.3333Z' fill='%2300AEEF'/%3e %3cpath d='M1.66667 18.333C0.746198 18.333 0 19.0792 0 19.9997V23.333C0 24.2535 0.746198 24.9997 1.66667 24.9997C2.58714 24.9997 3.33333 24.2535 3.33333 23.333V19.9997C3.33333 19.0792 2.58714 18.333 1.66667 18.333ZM2.5 23.333C2.5 23.7933 2.12693 24.1663 1.66667 24.1663C1.20641 24.1663 0.833333 23.7933 0.833333 23.333V19.9997C0.833333 19.5394 1.20641 19.1663 1.66667 19.1663C2.12693 19.1663 2.5 19.5394 2.5 19.9997V23.333Z' fill='%2300AEEF'/%3e %3cpath d='M17.9167 2.5C16.9962 2.5 16.25 3.2462 16.25 4.16667V23.3333C16.25 24.2538 16.9962 25 17.9167 25C18.8371 25 19.5833 24.2538 19.5833 23.3333V4.16667C19.5833 3.2462 18.8371 2.5 17.9167 2.5ZM18.75 23.3333C18.75 23.7936 18.3769 24.1667 17.9167 24.1667C17.4564 24.1667 17.0833 23.7936 17.0833 23.3333V4.16667C17.0833 3.70641 17.4564 3.33333 17.9167 3.33333C18.3769 3.33333 18.75 3.70641 18.75 4.16667V23.3333Z' fill='%2300AEEF'/%3e %3cpath d='M23.3332 0C22.4127 0 21.6665 0.746198 21.6665 1.66667V23.3333C21.6665 24.2538 22.4127 25 23.3332 25C24.2536 25 24.9998 24.2538 24.9998 23.3333V1.66667C24.9998 0.746198 24.2536 0 23.3332 0ZM24.1665 23.3333C24.1665 23.7936 23.7934 24.1667 23.3332 24.1667C22.8729 24.1667 22.4998 23.7936 22.4998 23.3333V1.66667C22.4998 1.20641 22.8729 0.833333 23.3332 0.833333C23.7934 0.833333 24.1665 1.20641 24.1665 1.66667V23.3333Z' fill='%2300AEEF'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_3490_347'%3e %3crect width='25' height='25' fill='white'/%3e %3c/clipPath%3e %3c/defs%3e%3c/svg%3e",he=function(e,t){return he=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},he(e,t)};function pe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}he(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var fe,de,ge,me,be,ye=function(){return ye=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},ye.apply(this,arguments)};function ve(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}function Ee(e,t,n){if(n||2===arguments.length)for(var r,o=0,i=t.length;o<i;o++)!r&&o in t||(r||(r=Array.prototype.slice.call(t,0,o)),r[o]=t[o]);return e.concat(r||Array.prototype.slice.call(t))}"function"==typeof SuppressedError&&SuppressedError,function(e){e.claimable="claimable",e.active="active",e.completed="completed",e.forfeited="forfeited",e.expired="expired",e.released="released",e.closed="closed"}(fe||(fe={})),function(e){e.claimable="claimable",e.active="active",e.completed="completed"}(de||(de={})),function(e){e.standard="standard",e.freeBet="freeBet",e.freeRound="freeRound",e.tournamentTicket="tournamentTicket",e.oddsBoost="oddsBoost",e.cashBack="cashBack"}(ge||(ge={})),function(e){e.Money="money",e.BetCount="betCount"}(me||(me={})),function(e){e.en="en"}(be||(be={}));var we="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};var Te=function(e,t,n){return e(n={path:t,exports:{},require:function(e,t){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==t&&n.path)}},n.exports),n.exports}((function(e,t){
|
|
109
104
|
/** @license
|
|
110
105
|
* eventsource.js
|
|
111
106
|
* Available under MIT License (MIT)
|
|
@@ -113,7 +108,7 @@ var ie=function(e,t){return ie=Object.setPrototypeOf||{__proto__:[]}instanceof A
|
|
|
113
108
|
*/
|
|
114
109
|
/*jslint indent: 2, vars: true, plusplus: true */
|
|
115
110
|
/*global setTimeout, clearTimeout */
|
|
116
|
-
!function(n){var r=n.setTimeout,o=n.clearTimeout,i=n.XMLHttpRequest,s=n.XDomainRequest,a=n.ActiveXObject,l=n.EventSource,c=n.document,u=n.Promise,h=n.fetch,
|
|
111
|
+
!function(n){var r=n.setTimeout,o=n.clearTimeout,i=n.XMLHttpRequest,s=n.XDomainRequest,a=n.ActiveXObject,l=n.EventSource,c=n.document,u=n.Promise,h=n.fetch,p=n.Response,f=n.TextDecoder,d=n.TextEncoder,g=n.AbortController;
|
|
117
112
|
// see #118 (Promise#finally with polyfilled Promise)
|
|
118
113
|
// see #123 (data URLs crash Edge)
|
|
119
114
|
// see #125 (CSP violations)
|
|
@@ -123,9 +118,9 @@ if("undefined"==typeof window||void 0===c||"readyState"in c||null!=c.body||(// F
|
|
|
123
118
|
c.readyState="loading",window.addEventListener("load",(function(e){c.readyState="complete"}),!1)),null==i&&null!=a&&(// https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest_in_IE6
|
|
124
119
|
i=function(){return new a("Microsoft.XMLHTTP")}),null==Object.create&&(Object.create=function(e){function t(){}return t.prototype=e,new t}),Date.now||(Date.now=function(){return(new Date).getTime()}),null==g){var m=h;h=function(e,t){var n=t.signal;return m(e,{headers:t.headers,credentials:t.credentials,cache:t.cache}).then((function(e){var t=e.body.getReader();return n._reader=t,n._aborted&&n._reader.cancel(),{status:e.status,statusText:e.statusText,headers:e.headers,body:{getReader:function(){return t}}}}))},g=function(){this.signal={_reader:null,_aborted:!1},this.abort=function(){null!=this.signal._reader&&this.signal._reader.cancel(),this.signal._aborted=!0}}}function b(){this.bitsNeeded=0,this.codePoint=0}b.prototype.decode=function(e){function t(e,t,n){if(1===n)return e>=128>>t&&e<<t<=2047;if(2===n)return e>=2048>>t&&e<<t<=55295||e>=57344>>t&&e<<t<=65535;if(3===n)return e>=65536>>t&&e<<t<=1114111;throw new Error}function n(e,t){if(6===e)return t>>6>15?3:t>31?2:1;if(12===e)return t>15?3:2;if(18===e)return 3;throw new Error}for(var r=65533,o="",i=this.bitsNeeded,s=this.codePoint,a=0;a<e.length;a+=1){var l=e[a];0!==i&&(l<128||l>191||!t(s<<6|63&l,i-6,n(i,s)))&&(i=0,s=r,o+=String.fromCharCode(s)),0===i?(l>=0&&l<=127?(i=0,s=l):l>=192&&l<=223?(i=6,s=31&l):l>=224&&l<=239?(i=12,s=15&l):l>=240&&l<=247?(i=18,s=7&l):(i=0,s=r),0===i||t(s,i,n(i,s))||(i=0,s=r)):(i-=6,s=s<<6|63&l),0===i&&(s<=65535?o+=String.fromCharCode(s):(o+=String.fromCharCode(55296+(s-65535-1>>10)),o+=String.fromCharCode(56320+(s-65535-1&1023))))}return this.bitsNeeded=i,this.codePoint=s,o};
|
|
125
120
|
// IE, Edge
|
|
126
|
-
null!=
|
|
121
|
+
null!=f&&null!=d&&function(){try{return"test"===(new f).decode((new d).encode("test"),{stream:!0})}catch(e){console.debug("TextDecoder does not support streaming option. Using polyfill instead: "+e)}return!1}()||(f=b);var y=function(){};function v(e){this.withCredentials=!1,this.readyState=0,this.status=0,this.statusText="",this.responseText="",this.onprogress=y,this.onload=y,this.onerror=y,this.onreadystatechange=y,this._contentType="",this._xhr=e,this._sendTimeout=0,this._abort=y}function E(e){return e.replace(/[A-Z]/g,(function(e){return String.fromCharCode(e.charCodeAt(0)+32)}))}function w(e){for(
|
|
127
122
|
// Get headers: implemented according to mozilla's example code: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/getAllResponseHeaders#Example
|
|
128
|
-
var t=Object.create(null),n=e.split("\r\n"),r=0;r<n.length;r+=1){var o=n[r].split(": "),i=o.shift(),s=o.join(": ");t[E(i)]=s}this._map=t}function
|
|
123
|
+
var t=Object.create(null),n=e.split("\r\n"),r=0;r<n.length;r+=1){var o=n[r].split(": "),i=o.shift(),s=o.join(": ");t[E(i)]=s}this._map=t}function T(){}function B(e){this._headers=e}function C(){}function S(){this._listeners=Object.create(null)}function A(e){r((function(){throw e}),0)}function _(e){this.type=e,this.target=void 0}function L(e,t){_.call(this,e),this.data=t.data,this.lastEventId=t.lastEventId}function H(e,t){_.call(this,e),this.status=t.status,this.statusText=t.statusText,this.headers=t.headers}function x(e,t){_.call(this,e),this.error=t.error}v.prototype.open=function(e,t){this._abort(!0);var n=this,s=this._xhr,a=1,l=0;this._abort=function(e){0!==n._sendTimeout&&(o(n._sendTimeout),n._sendTimeout=0),1!==a&&2!==a&&3!==a||(a=4,s.onload=y,s.onerror=y,s.onabort=y,s.onprogress=y,s.onreadystatechange=y,
|
|
129
124
|
// IE 8 - 9: XDomainRequest#abort() does not fire any event
|
|
130
125
|
// Opera < 10: XMLHttpRequest#abort() does not fire any event
|
|
131
126
|
s.abort(),0!==l&&(o(l),l=0),e||(n.readyState=4,n.onabort(null),n.onreadystatechange())),a=0};var c=function(){if(1===a){
|
|
@@ -139,7 +134,7 @@ e=0,t="",r=void 0}0!==e&&(a=2,n.readyState=2,n.status=e,n.statusText=t,n._conten
|
|
|
139
134
|
}n.readyState=3,n.responseText=e,n.onprogress()}},h=function(e,t){if(null!=t&&null!=t.preventDefault||(t={preventDefault:y}),
|
|
140
135
|
// Firefox 52 fires "readystatechange" (xhr.readyState === 4) without final "readystatechange" (xhr.readyState === 3)
|
|
141
136
|
// IE 8 fires "onload" without "onprogress"
|
|
142
|
-
u(),1===a||2===a||3===a){if(a=4,0!==l&&(o(l),l=0),n.readyState=4,"load"===e)n.onload(t);else if("error"===e)n.onerror(t);else{if("abort"!==e)throw new TypeError;n.onabort(t)}n.onreadystatechange()}},
|
|
137
|
+
u(),1===a||2===a||3===a){if(a=4,0!==l&&(o(l),l=0),n.readyState=4,"load"===e)n.onload(t);else if("error"===e)n.onerror(t);else{if("abort"!==e)throw new TypeError;n.onabort(t)}n.onreadystatechange()}},p=function(){l=r((function(){p()}),500),3===s.readyState&&u()};
|
|
143
138
|
// XDomainRequest#abort removes onprogress, onerror, onload
|
|
144
139
|
"onload"in s&&(s.onload=function(e){h("load",e)}),"onerror"in s&&(s.onerror=function(e){h("error",e)}),
|
|
145
140
|
// improper fix to match Firefox behaviour, but it is better than just ignore abort
|
|
@@ -160,7 +155,7 @@ u(),1===a||2===a||3===a){if(a=4,0!==l&&(o(l),l=0),n.readyState=4,"load"===e)n.on
|
|
|
160
155
|
u():2===s.readyState&&c())}(e)}),!("contentType"in s)&&"ontimeout"in i.prototype||(t+=(-1===t.indexOf("?")?"?":"&")+"padding=true"),s.open(e,t,!0),"readyState"in s&&(
|
|
161
156
|
// workaround for Opera 12 issue with "progress" events
|
|
162
157
|
// #91 (XMLHttpRequest onprogress not fired for streaming response in Edge 14-15-?)
|
|
163
|
-
l=r((function(){
|
|
158
|
+
l=r((function(){p()}),0))},v.prototype.abort=function(){this._abort(!1)},v.prototype.getResponseHeader=function(e){return this._contentType},v.prototype.setRequestHeader=function(e,t){var n=this._xhr;"setRequestHeader"in n&&n.setRequestHeader(e,t)},v.prototype.getAllResponseHeaders=function(){
|
|
164
159
|
// XMLHttpRequest#getAllResponseHeaders returns null for CORS requests in Firefox 3.6.28
|
|
165
160
|
return null!=this._xhr.getAllResponseHeaders&&this._xhr.getAllResponseHeaders()||""},v.prototype.send=function(){
|
|
166
161
|
// loading indicator in Safari < ? (6), Chrome < 14, Firefox
|
|
@@ -171,60 +166,60 @@ if("ontimeout"in i.prototype&&("sendAsBinary"in i.prototype||"mozAnon"in i.proto
|
|
|
171
166
|
// xhr.send(); throws "Not enough arguments" in Firefox 3.0
|
|
172
167
|
e.send(void 0)}catch(e){
|
|
173
168
|
// Safari 5.1.7, Opera 12
|
|
174
|
-
throw e}}else{var t=this;t._sendTimeout=r((function(){t._sendTimeout=0,t.send()}),4)}},
|
|
175
|
-
i.HEADERS_RECEIVED=2),
|
|
169
|
+
throw e}}else{var t=this;t._sendTimeout=r((function(){t._sendTimeout=0,t.send()}),4)}},w.prototype.get=function(e){return this._map[E(e)]},null!=i&&null==i.HEADERS_RECEIVED&&(// IE < 9, Firefox 3.6
|
|
170
|
+
i.HEADERS_RECEIVED=2),T.prototype.open=function(e,t,n,r,o,s,a){e.open("GET",o);var l=0;for(var c in e.onprogress=function(){var t=e.responseText.slice(l);l+=t.length,n(t)},e.onerror=function(e){e.preventDefault(),r(new Error("NetworkError"))},e.onload=function(){r(null)},e.onabort=function(){r(null)},e.onreadystatechange=function(){if(e.readyState===i.HEADERS_RECEIVED){var n=e.status,r=e.statusText,o=e.getResponseHeader("Content-Type"),s=e.getAllResponseHeaders();t(n,r,o,new w(s))}},e.withCredentials=s,a)Object.prototype.hasOwnProperty.call(a,c)&&e.setRequestHeader(c,a[c]);return e.send(),e},B.prototype.get=function(e){return this._headers.get(e)},C.prototype.open=function(e,t,n,r,o,i,s){var a=null,l=new g,c=l.signal,p=new f;return h(o,{headers:s,credentials:i?"include":"same-origin",signal:c,cache:"no-store"}).then((function(e){
|
|
176
171
|
// see https://github.com/promises-aplus/promises-spec/issues/179
|
|
177
172
|
return a=e.body.getReader(),t(e.status,e.statusText,e.headers.get("Content-Type"),new B(e.headers)),new u((function(e,t){var r=function(){a.read().then((function(t){if(t.done)
|
|
178
173
|
//Note: bytes in textDecoder are ignored
|
|
179
|
-
e(void 0);else{var o=
|
|
174
|
+
e(void 0);else{var o=p.decode(t.value,{stream:!0});n(o),r()}})).catch((function(e){t(e)}))};r()}))})).catch((function(e){return"AbortError"===e.name?void 0:e})).then((function(e){r(e)})),{abort:function(){null!=a&&a.cancel(),l.abort()}}},S.prototype.dispatchEvent=function(e){e.target=this;var t=this._listeners[e.type];if(null!=t)for(var n=t.length,r=0;r<n;r+=1){var o=t[r];try{"function"==typeof o.handleEvent?o.handleEvent(e):o.call(this,e)}catch(e){A(e)}}},S.prototype.addEventListener=function(e,t){e=String(e);var n=this._listeners,r=n[e];null==r&&(r=[],n[e]=r);for(var o=!1,i=0;i<r.length;i+=1)r[i]===t&&(o=!0);o||r.push(t)},S.prototype.removeEventListener=function(e,t){e=String(e);var n=this._listeners,r=n[e];if(null!=r){for(var o=[],i=0;i<r.length;i+=1)r[i]!==t&&o.push(r[i]);0===o.length?delete n[e]:n[e]=o}},L.prototype=Object.create(_.prototype),H.prototype=Object.create(_.prototype),x.prototype=Object.create(_.prototype);var R=-1,I=0,$=1,P=2,M=-1,O=0,N=1,D=2,k=3,U=/^text\/event\-stream(;.*)?$/i,G=function(e,t){var n=null==e?t:parseInt(e,10);return n!=n&&(n=t),F(n)},F=function(e){return Math.min(Math.max(e,1e3),18e6)},j=function(e,t,n){try{"function"==typeof t&&t.call(e,n)}catch(e){A(e)}};function V(e,t){S.call(this),t=t||{},this.onopen=void 0,this.onmessage=void 0,this.onerror=void 0,this.url=void 0,this.readyState=void 0,this.withCredentials=void 0,this.headers=void 0,this._close=void 0,function(e,t,n){t=String(t);var a=Boolean(n.withCredentials),l=n.lastEventIdQueryParameterName||"lastEventId",c=F(1e3),u=G(n.heartbeatTimeout,45e3),h="",p=c,f=!1,d=0,g=n.headers||{},m=n.Transport,b=W&&null==m?void 0:new v(null!=m?new m:null!=i&&"withCredentials"in i.prototype||null==s?new i:new s),y=null!=m&&"string"!=typeof m?new m:null==b?new C:new T,E=void 0,w=0,B=R,S="",A="",_="",V="",K=O,Z=0,X=0,z=function(t,n,r,o){if(B===I)if(200===t&&null!=r&&U.test(r)){B=$,f=Date.now(),p=c,e.readyState=$;var i=new H("open",{status:t,statusText:n,headers:o});e.dispatchEvent(i),j(e,e.onopen,i)}else{var s="";200!==t?(n&&(n=n.replace(/\s+/g," ")),s="EventSource's response has a status "+t+" "+n+" that is not 200. Aborting the connection."):s="EventSource's response has a Content-Type specifying an unsupported type: "+(null==r?"-":r.replace(/\s+/g," "))+". Aborting the connection.",q();i=new H("error",{status:t,statusText:n,headers:o});e.dispatchEvent(i),j(e,e.onerror,i),console.error(s)}},Y=function(t){if(B===$){for(var n=-1,i=0;i<t.length;i+=1){(l=t.charCodeAt(i))!=="\n".charCodeAt(0)&&l!=="\r".charCodeAt(0)||(n=i)}var s=(-1!==n?V:"")+t.slice(0,n+1);V=(-1===n?V:"")+t.slice(n+1),""!==t&&(f=Date.now(),d+=t.length);for(var a=0;a<s.length;a+=1){var l=s.charCodeAt(a);if(K===M&&l==="\n".charCodeAt(0))K=O;else if(K===M&&(K=O),l==="\r".charCodeAt(0)||l==="\n".charCodeAt(0)){if(K!==O){K===N&&(X=a+1);var g=s.slice(Z,X-1),m=s.slice(X+(X<a&&s.charCodeAt(X)===" ".charCodeAt(0)?1:0),a);"data"===g?(S+="\n",S+=m):"id"===g?A=m:"event"===g?_=m:"retry"===g?(c=G(m,c),p=c):"heartbeatTimeout"===g&&(u=G(m,u),0!==w&&(o(w),w=r((function(){Q()}),u)))}if(K===O){if(""!==S){h=A,""===_&&(_="message");var b=new L(_,{data:S.slice(1),lastEventId:A});if(e.dispatchEvent(b),"open"===_?j(e,e.onopen,b):"message"===_?j(e,e.onmessage,b):"error"===_&&j(e,e.onerror,b),B===P)return}S="",_=""}K=l==="\r".charCodeAt(0)?M:O}else K===O&&(Z=a,K=N),K===N?l===":".charCodeAt(0)&&(X=a+1,K=D):K===D&&(K=k)}}},J=function(t){if(B===$||B===I){B=R,0!==w&&(o(w),w=0),w=r((function(){Q()}),p),p=F(Math.min(16*c,2*p)),e.readyState=I;var n=new x("error",{error:t});e.dispatchEvent(n),j(e,e.onerror,n),null!=t&&console.error(t)}},q=function(){B=P,null!=E&&(E.abort(),E=void 0),0!==w&&(o(w),w=0),e.readyState=P},Q=function(){if(w=0,B===R){f=!1,d=0,w=r((function(){Q()}),u),B=I,S="",_="",A=h,V="",Z=0,X=0,K=O;
|
|
180
175
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=428916
|
|
181
176
|
// Request header field Last-Event-ID is not allowed by Access-Control-Allow-Headers.
|
|
182
177
|
var n=t;if("data:"!==t.slice(0,5)&&"blob:"!==t.slice(0,5)&&""!==h){
|
|
183
178
|
// Remove the lastEventId parameter if it's already part of the request URL.
|
|
184
179
|
var o=t.indexOf("?");n=-1===o?t:t.slice(0,o+1)+t.slice(o+1).replace(/(?:^|&)([^=&]*)(?:=[^&]*)?/g,(function(e,t){return t===l?"":e})),
|
|
185
180
|
// Append the current lastEventId to the request URL.
|
|
186
|
-
n+=(-1===t.indexOf("?")?"?":"&")+l+"="+encodeURIComponent(h)}var i=e.withCredentials,s={Accept:"text/event-stream"},a=e.headers;if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(s[c]=a[c]);try{E=y.open(b,z,Y,J,n,i,s)}catch(e){throw q(),e}}else if(
|
|
181
|
+
n+=(-1===t.indexOf("?")?"?":"&")+l+"="+encodeURIComponent(h)}var i=e.withCredentials,s={Accept:"text/event-stream"},a=e.headers;if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(s[c]=a[c]);try{E=y.open(b,z,Y,J,n,i,s)}catch(e){throw q(),e}}else if(f||null==E){var p=Math.max((f||Date.now())+u-Date.now(),1);f=!1,w=r((function(){Q()}),p)}else J(new Error("No activity within "+u+" milliseconds. "+(B===I?"No response received.":d+" chars received.")+" Reconnecting.")),null!=E&&(E.abort(),E=void 0)};e.url=t,e.readyState=I,e.withCredentials=a,e.headers=g,e._close=q,Q()}(this,e,t)}var W=null!=h&&null!=p&&"body"in p.prototype;V.prototype=Object.create(S.prototype),V.prototype.CONNECTING=I,V.prototype.OPEN=$,V.prototype.CLOSED=P,V.prototype.close=function(){this._close()},V.CONNECTING=I,V.OPEN=$,V.CLOSED=P,V.prototype.withCredentials=void 0;var K,Z=l;null==i||null!=l&&"withCredentials"in l.prototype||(
|
|
187
182
|
// Why replace a native EventSource ?
|
|
188
183
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=444328
|
|
189
184
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=831392
|
|
190
185
|
// https://code.google.com/p/chromium/issues/detail?id=260144
|
|
191
186
|
// https://code.google.com/p/chromium/issues/detail?id=225654
|
|
192
187
|
// ...
|
|
193
|
-
Z=V),
|
|
194
|
-
/* eslint-disable quote-props */,
|
|
188
|
+
Z=V),K=function(e){e.EventSourcePolyfill=V,e.NativeEventSource=l,e.EventSource=Z}(t),void 0!==K&&(e.exports=K)}("undefined"==typeof globalThis?"undefined"!=typeof window?window:"undefined"!=typeof self?self:we:globalThis)}));const Be=e=>window.postMessage(e,window.location.href),Ce=e=>{const t=(n=e,e=>{Object.keys(n).map((t=>{if(e.data&&e.data.type==t){const r=ve(e.data,["type"]);n[t](r)}}))});var n;P((()=>(window.addEventListener("message",t),()=>{window.removeEventListener("message",t)})))},Se=(e,t)=>{e&&(e.removeEventListener("message",t),e.close())},Ae=e=>_e[e]
|
|
189
|
+
/* eslint-disable quote-props */,_e={AED:"د.إ",AFN:"؋",ALL:"L",AMD:"֏",ANG:"ƒ",AOA:"Kz",ARS:"$",AUD:"$",AWG:"ƒ",AZN:"ман",BAM:"KM",BBD:"$",BDT:"৳",BGN:"лв",BHD:".د.ب",BIF:"FBu",BMD:"$",BND:"$",BOB:"$b",BRL:"R$",BSD:"$",BTC:"฿",BTN:"Nu.",BWP:"P",BYR:"p.",BZD:"BZ$",CAD:"$",CDF:"FC",CHF:"CHF",CLP:"$",CNY:"¥",COP:"$",CRC:"₡",CUC:"$",CUP:"₱",CVE:"$",CZK:"Kč",DJF:"Fdj",DKK:"kr",DOP:"RD$",DZD:"دج",EEK:"kr",EGP:"£",ERN:"Nfk",ETB:"Br",ETH:"Ξ",EUR:"€",FJD:"$",FKP:"£",GBP:"£",GEL:"₾",GGP:"£",GHC:"₵",GHS:"GH₵",GIP:"£",GMD:"D",GNF:"FG",GTQ:"Q",GYD:"$",HKD:"$",HNL:"L",HRK:"kn",HTG:"G",HUF:"Ft",IDR:"Rp",ILS:"₪",IMP:"£",INR:"₹",IQD:"ع.د",IRR:"﷼",ISK:"kr",JEP:"£",JMD:"J$",JOD:"JD",JPY:"¥",KES:"KSh",KGS:"лв",KHR:"៛",KMF:"CF",KPW:"₩",KRW:"₩",KWD:"KD",KYD:"$",KZT:"лв",LAK:"₭",LBP:"£",LKR:"₨",LRD:"$",LSL:"M",LTC:"Ł",LTL:"Lt",LVL:"Ls",LYD:"LD",MAD:"MAD",MDL:"lei",MGA:"Ar",MKD:"ден",MMK:"K",MNT:"₮",MOP:"MOP$",MRO:"UM",MUR:"₨",MVR:"Rf",MWK:"MK",MXN:"$",MYR:"RM",MZN:"MT",NAD:"$",NGN:"₦",NIO:"C$",NOK:"kr",NPR:"₨",NZD:"$",OMR:"﷼",PAB:"B/.",PEN:"S/.",PGK:"K",PHP:"₱",PKR:"₨",PLN:"zł",PYG:"Gs",QAR:"﷼",RMB:"¥",RON:"lei",RSD:"Дин.",RUB:"₽",RWF:"R₣",SAR:"﷼",SBD:"$",SCR:"₨",SDG:"ج.س.",SEK:"kr",SGD:"$",SHP:"£",SLL:"Le",SOS:"S",SRD:"$",SSP:"£",STD:"Db",SVC:"$",SYP:"£",SZL:"E",THB:"฿",TJS:"SM",TMT:"T",TND:"د.ت",TOP:"T$",TRL:"₤",TRY:"₺",TTD:"TT$",TVD:"$",TWD:"NT$",TZS:"TSh",UAH:"₴",UGX:"USh",USD:"$",UYU:"$U",UZS:"лв",VEF:"Bs",VND:"₫",VUV:"VT",WST:"WS$",XAF:"FCFA",XBT:"Ƀ",XCD:"$",XOF:"CFA",XPF:"₣",YER:"﷼",ZAR:"R",ZWD:"Z$"},Le=(e,t,n,r)=>{if(!n.length)return;const o={bonusWalletIDs:null==n?void 0:n.filter((e=>$e(e))).map((e=>e.id)).join(","),XSessionId:t};if(!o.bonusWalletIDs)return;const i=`${e}/bonus/wagering/updates?${(e=>Object.keys(e).map((t=>`${t}=${e[t]}`)).join("&"))(o)}`;return((e,t)=>{let n;return n=EventSource?new EventSource(e):new Te.EventSourcePolyfill(e,{headers:{accept:"text/event-stream"}}),n.addEventListener("message",t),n})(i,r)},He=(e,t)=>{switch(e){case fe.completed:case fe.released:case fe.expired:case fe.closed:case fe.forfeited:return t.other();case fe.active:case void 0:return t.active();default:throw new Error(`unknown Bonus Status: ${e}`)}},xe=(e,t)=>{switch(e){case fe.completed:case fe.released:return t.completed();case fe.active:case fe.expired:case fe.closed:case fe.forfeited:return t.current();default:throw new Error(`unknown Bonus Status: ${e}`)}},Re=async(e,t,n,r={})=>{const{limit:o,lang:i,status:s}=r,a=ve(r,["limit","lang","status"]),l=Object.assign(Object.assign({type:"wagering",pagination:`limit=${o||50},offset=0`,language:i},s&&s!==fe.claimable?{status:s}:{}),a),c=s===fe.claimable?"claimable":"granted",u=new URL(`${t}/bonus/${c}`);return Object.keys(l).map((e=>{u.searchParams.append(e,l[e])})),await oe(e,u,{headers:Object.assign({},n?{"x-SessionId":n}:{})})},Ie=async(e,t,n,r,o)=>await oe(e,t+"/bonus/claim",{method:"PUT",body:JSON.stringify({bonusCode:r,currency:o}),headers:{"x-SessionId":n,accept:"text/plain","Content-Type":"application/json-patch+json"}}),$e=e=>!!e.bonusWalletID&&He(e.status,{active:()=>!0,other:()=>!1}),Pe=(e,t,n)=>{switch(t.type){case ge.standard:case ge.freeBet:const r=Object.assign(Object.assign({},t),{currency:Ae(Object.keys(e.increment)[0])});return"percentage"===t.mode&&(r.bonusAmount=100*r.bonusAmount),"freeBet"===t.type&&"fixed"===t.mode&&(r.currency=""),n(`reward.${t.mode}`,r)+" "+n(`reward.${t.type}`);default:return n(`reward.${t.type}`,t)}},Me=(e,t,n)=>{var r;const o=(null===(r=e.wageringProgress)||void 0===r?void 0:r.currentLevel)-1,i=t.length-1,s=e=>e.filter((e=>e.index>=0&&e.index<=i)).map((e=>{const r=t[e.index];return{key:e.key,descriptions:r.bonuses.map((e=>Pe(r,e,n)))}}))
|
|
195
190
|
// .map(line => `${line.key} Level: ${getTitleByIndex(line.index)}`);
|
|
196
|
-
return
|
|
191
|
+
return He(e.status,{active:()=>e.status?s([{key:"current",index:o},{key:"next",index:o+1}]):e.status?void 0:s([{key:"first",index:0},{key:"next",index:1}]),other:()=>s([{key:"last",index:i},{key:"previous",index:i-1}])})},Oe=(e,t)=>{if(!e.wageringProgress)return;const{currency:n,currentLevelIncrement:r,gap:o,currentLevel:i}=e.wageringProgress;return{currencySymbol:Ae(n),levelInfo:t[i-1],currency:n,currentLevelIncrement:r,gap:o,currentLevel:i}},Ne=e=>{if(!e.wageringProgress)return 0;const{currency:t,currentLevelIncrement:n,gap:r,currentLevel:o}=e.wageringProgress;return n-r},De=e=>xe(e.status,{completed:()=>"100",current:()=>{if(!e.wageringProgress)return"0";const{currency:t,currentLevelIncrement:n,gap:r,currentLevel:o}=e.wageringProgress,i=Number(function(e,t){var n,r,o;try{n=e.toString().split(".")[1].length}catch(e){n=0}try{r=t.toString().split(".")[1].length}catch(e){r=0}return((e*(o=Math.pow(10,Math.max(n,r)))-t*o)/o).toFixed(n>=r?n:r)}(n,r));return String(Math.ceil(i/n*100))}}),ke=(e,t,n)=>e.levels.find((e=>0===e.maxRepeats))?t:n,Ue=(e,t,n,r)=>{const o=te(e);o<0?n():(r(ne(e)),
|
|
197
192
|
// check if bonus will expire
|
|
198
|
-
o<t&&setTimeout((()=>{
|
|
193
|
+
o<t&&setTimeout((()=>{Be({type:"OnWageringBonusExpired"})}),o))},Ge=e=>{switch(e){case"active":return fe.active;case"completed":return[fe.expired,fe.forfeited,fe.released,fe.completed,fe.closed].join(",")}},Fe=(e,t,n)=>{const r=0===e?0:n.levels[e-1].maxRepeats-1;return t.maxRepeats>1?`${e+1+r}-${e+1+r+t.maxRepeats-1}`:e+1+r},je=[];
|
|
199
194
|
/**
|
|
200
195
|
* Create a `Writable` store that allows both updating and reading by subscription.
|
|
201
196
|
* @param {*=}value initial value
|
|
202
197
|
* @param {StartStopNotifier=} start
|
|
203
198
|
*/
|
|
204
|
-
function
|
|
205
|
-
const e=!
|
|
199
|
+
function Ve(t,n=e){let r;const o=new Set;function i(e){if(s(t,e)&&(t=e,r)){// store is ready
|
|
200
|
+
const e=!je.length;for(const e of o)e[1](),je.push(e,t);if(e){for(let e=0;e<je.length;e+=2)je[e][0](je[e+1]);je.length=0}}}return{set:i,update:function(e){i(e(t))},subscribe:function(s,a=e){const l=[s,a];return o.add(l),1===o.size&&(r=n(i)||e),s(t),()=>{o.delete(l),0===o.size&&r&&(r(),r=null)}}}}function We(t,n,r){const s=!Array.isArray(t),a=s?[t]:t,c=n.length<2;return u=t=>{let r=!1;const u=[];let h=0,p=e;const f=()=>{if(h)return;p();const r=n(s?u[0]:u,t);c?t(r):p=i(r)?r:e},d=a.map(((e,t)=>l(e,(e=>{u[t]=e,h&=~(1<<t),r&&f()}),(()=>{h|=1<<t}))));return r=!0,f(),function(){o(d),p(),
|
|
206
201
|
// We need to set this to false because callbacks can still happen despite having unsubscribed:
|
|
207
202
|
// Callbacks might already be placed in the queue which doesn't know it should no longer
|
|
208
203
|
// invoke this derived store.
|
|
209
|
-
r=!1}},{subscribe:
|
|
204
|
+
r=!1}},{subscribe:Ve(r,u).subscribe};
|
|
210
205
|
/**
|
|
211
206
|
* Creates a `Readable` store that allows reading by subscription.
|
|
212
207
|
* @param value initial value
|
|
213
208
|
* @param {StartStopNotifier} [start]
|
|
214
209
|
*/
|
|
215
|
-
var u}var
|
|
210
|
+
var u}var Ke=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===Ze}(e)}
|
|
216
211
|
// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
|
|
217
|
-
(e)};var
|
|
212
|
+
(e)};var Ze="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function Xe(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Qe((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function ze(e,t,n){return e.concat(t).map((function(e){return Xe(e,n)}))}function Ye(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return Object.propertyIsEnumerable.call(e,t)})):[]}(e))}function Je(e,t){try{return t in e}catch(e){return!1}}
|
|
218
213
|
// Protects from prototype poisoning and unexpected merging up the prototype chain.
|
|
219
|
-
function
|
|
220
|
-
})(e,o)||(
|
|
214
|
+
function qe(e,t,n){var r={};return n.isMergeableObject(e)&&Ye(e).forEach((function(t){r[t]=Xe(e[t],n)})),Ye(t).forEach((function(o){(function(e,t){return Je(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t));// and also unsafe if they're nonenumerable.
|
|
215
|
+
})(e,o)||(Je(e,o)&&n.isMergeableObject(t[o])?r[o]=function(e,t){if(!t.customMerge)return Qe;var n=t.customMerge(e);return"function"==typeof n?n:Qe}(o,n)(e[o],t[o],n):r[o]=Xe(t[o],n))})),r}function Qe(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||ze,n.isMergeableObject=n.isMergeableObject||Ke,
|
|
221
216
|
// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()
|
|
222
217
|
// implementations can use it. The caller may not replace it.
|
|
223
|
-
n.cloneUnlessOtherwiseSpecified=
|
|
218
|
+
n.cloneUnlessOtherwiseSpecified=Xe;var r=Array.isArray(t);return r===Array.isArray(e)?r?n.arrayMerge(e,t,n):qe(e,t,n):Xe(t,n)}Qe.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return Qe(e,n,t)}),{})};var et,tt,nt,rt=Qe;
|
|
224
219
|
/**
|
|
225
220
|
* Type Guards
|
|
226
221
|
*/
|
|
227
|
-
function
|
|
222
|
+
function ot(e){return e.type===tt.literal}function it(e){return e.type===tt.argument}function st(e){return e.type===tt.number}function at(e){return e.type===tt.date}function lt(e){return e.type===tt.time}function ct(e){return e.type===tt.select}function ut(e){return e.type===tt.plural}function ht(e){return e.type===tt.pound}function pt(e){return e.type===tt.tag}function ft(e){return!(!e||"object"!=typeof e||e.type!==nt.number)}function dt(e){return!(!e||"object"!=typeof e||e.type!==nt.dateTime)}
|
|
228
223
|
// @generated from regex-gen.ts
|
|
229
224
|
!function(e){
|
|
230
225
|
/** Argument is unclosed (e.g. `{0`) */
|
|
@@ -286,7 +281,7 @@ e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",
|
|
|
286
281
|
/** The closing tag does not match the opening tag. (e.g. `<bold>foo</italic>`) */
|
|
287
282
|
e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",
|
|
288
283
|
/** The opening tag has unmatched closing tag. (e.g. `<bold>foo`) */
|
|
289
|
-
e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"}(
|
|
284
|
+
e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"}(et||(et={})),function(e){
|
|
290
285
|
/**
|
|
291
286
|
* Raw text
|
|
292
287
|
*/
|
|
@@ -323,7 +318,7 @@ e[e.pound=7]="pound",
|
|
|
323
318
|
/**
|
|
324
319
|
* XML-like tag
|
|
325
320
|
*/
|
|
326
|
-
e[e.tag=8]="tag"}(
|
|
321
|
+
e[e.tag=8]="tag"}(tt||(tt={})),function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"}(nt||(nt={}));var gt=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,mt=/(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;
|
|
327
322
|
/**
|
|
328
323
|
* https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
|
|
329
324
|
* Credit: https://github.com/caridy/intl-datetimeformat-pattern/blob/master/index.js
|
|
@@ -335,7 +330,7 @@ e[e.tag=8]="tag"}(Ke||(Ke={})),function(e){e[e.number=0]="number",e[e.dateTime=1
|
|
|
335
330
|
* @public
|
|
336
331
|
* @param skeleton skeleton string
|
|
337
332
|
*/
|
|
338
|
-
function
|
|
333
|
+
function bt(e){var t={};return e.replace(mt,(function(e){var n=e.length;switch(e[0]){
|
|
339
334
|
// Era
|
|
340
335
|
case"G":t.era=4===n?"long":5===n?"narrow":"short";break;
|
|
341
336
|
// Year
|
|
@@ -369,33 +364,33 @@ case"X":// 1, 2, 3, 4: The ISO8601 varios formats
|
|
|
369
364
|
case"x":// 1, 2, 3, 4: The ISO8601 varios formats
|
|
370
365
|
throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""})),t}
|
|
371
366
|
// @generated from regex-gen.ts
|
|
372
|
-
var
|
|
367
|
+
var yt=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;var vt=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,Et=/^(@+)?(\+|#+)?[rs]?$/g,wt=/(\*)(0+)|(#+)(0+)|(0+)/g,Tt=/^(0+)$/;function Bt(e){var t={};return"r"===e[e.length-1]?t.roundingPriority="morePrecision":"s"===e[e.length-1]&&(t.roundingPriority="lessPrecision"),e.replace(Et,(function(e,n,r){
|
|
373
368
|
// @@@ case
|
|
374
|
-
return"string"!=typeof r?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):"+"===r?t.minimumSignificantDigits=n.length:"#"===n[0]?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+("string"==typeof r?r.length:0)),""})),t}function
|
|
369
|
+
return"string"!=typeof r?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):"+"===r?t.minimumSignificantDigits=n.length:"#"===n[0]?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+("string"==typeof r?r.length:0)),""})),t}function Ct(e){switch(e){case"sign-auto":return{signDisplay:"auto"};case"sign-accounting":case"()":return{currencySign:"accounting"};case"sign-always":case"+!":return{signDisplay:"always"};case"sign-accounting-always":case"()!":return{signDisplay:"always",currencySign:"accounting"};case"sign-except-zero":case"+?":return{signDisplay:"exceptZero"};case"sign-accounting-except-zero":case"()?":return{signDisplay:"exceptZero",currencySign:"accounting"};case"sign-never":case"+_":return{signDisplay:"never"}}}function St(e){
|
|
375
370
|
// Engineering
|
|
376
|
-
var t;if("E"===e[0]&&"E"===e[1]?(t={notation:"engineering"},e=e.slice(2)):"E"===e[0]&&(t={notation:"scientific"},e=e.slice(1)),t){var n=e.slice(0,2);if("+!"===n?(t.signDisplay="always",e=e.slice(2)):"+?"===n&&(t.signDisplay="exceptZero",e=e.slice(2)),!
|
|
371
|
+
var t;if("E"===e[0]&&"E"===e[1]?(t={notation:"engineering"},e=e.slice(2)):"E"===e[0]&&(t={notation:"scientific"},e=e.slice(1)),t){var n=e.slice(0,2);if("+!"===n?(t.signDisplay="always",e=e.slice(2)):"+?"===n&&(t.signDisplay="exceptZero",e=e.slice(2)),!Tt.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function At(e){var t=Ct(e);return t||{}}
|
|
377
372
|
/**
|
|
378
373
|
* https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options
|
|
379
|
-
*/function
|
|
374
|
+
*/function _t(e){for(var t={},n=0,r=e;n<r.length;n++){var o=r[n];switch(o.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=o.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=o.options[0].replace(/^(.*?)-/,"");continue;case"compact-short":case"K":t.notation="compact",t.compactDisplay="short";continue;case"compact-long":case"KK":t.notation="compact",t.compactDisplay="long";continue;case"scientific":t=ye(ye(ye({},t),{notation:"scientific"}),o.options.reduce((function(e,t){return ye(ye({},e),At(t))}),{}));continue;case"engineering":t=ye(ye(ye({},t),{notation:"engineering"}),o.options.reduce((function(e,t){return ye(ye({},e),At(t))}),{}));continue;case"notation-simple":t.notation="standard";continue;
|
|
380
375
|
// https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h
|
|
381
376
|
case"unit-width-narrow":t.currencyDisplay="narrowSymbol",t.unitDisplay="narrow";continue;case"unit-width-short":t.currencyDisplay="code",t.unitDisplay="short";continue;case"unit-width-full-name":t.currencyDisplay="name",t.unitDisplay="long";continue;case"unit-width-iso-code":t.currencyDisplay="symbol";continue;case"scale":t.scale=parseFloat(o.options[0]);continue;
|
|
382
377
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
|
|
383
|
-
case"integer-width":if(o.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");o.options[0].replace(
|
|
378
|
+
case"integer-width":if(o.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");o.options[0].replace(wt,(function(e,n,r,o,i,s){if(n)t.minimumIntegerDigits=r.length;else{if(o&&i)throw new Error("We currently do not support maximum integer digits");if(s)throw new Error("We currently do not support exact integer digits")}return""}));continue}
|
|
384
379
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
|
|
385
|
-
if(
|
|
380
|
+
if(Tt.test(o.stem))t.minimumIntegerDigits=o.stem.length;else if(vt.test(o.stem)){
|
|
386
381
|
// Precision
|
|
387
382
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#fraction-precision
|
|
388
383
|
// precision-integer case
|
|
389
|
-
if(o.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");o.stem.replace(
|
|
384
|
+
if(o.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");o.stem.replace(vt,(function(e,n,r,o,i,s){
|
|
390
385
|
// .000* case (before ICU67 it was .000+)
|
|
391
386
|
return"*"===r?t.minimumFractionDigits=n.length:o&&"#"===o[0]?t.maximumFractionDigits=o.length:i&&s?(t.minimumFractionDigits=i.length,t.maximumFractionDigits=i.length+s.length):(t.minimumFractionDigits=n.length,t.maximumFractionDigits=n.length),""}));var i=o.options[0];
|
|
392
387
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#trailing-zero-display
|
|
393
|
-
"w"===i?t=
|
|
388
|
+
"w"===i?t=ye(ye({},t),{trailingZeroDisplay:"stripIfInteger"}):i&&(t=ye(ye({},t),Bt(i)))}
|
|
394
389
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision
|
|
395
|
-
else if(
|
|
390
|
+
else if(Et.test(o.stem))t=ye(ye({},t),Bt(o.stem));else{var s=Ct(o.stem);s&&(t=ye(ye({},t),s));var a=St(o.stem);a&&(t=ye(ye({},t),a))}}return t}
|
|
396
391
|
// @generated from time-data-gen.ts
|
|
397
392
|
// prettier-ignore
|
|
398
|
-
var
|
|
393
|
+
var Lt,Ht={AX:["H"],BQ:["H"],CP:["H"],CZ:["H"],DK:["H"],FI:["H"],ID:["H"],IS:["H"],ML:["H"],NE:["H"],RU:["H"],SE:["H"],SJ:["H"],SK:["H"],AS:["h","H"],BT:["h","H"],DJ:["h","H"],ER:["h","H"],GH:["h","H"],IN:["h","H"],LS:["h","H"],PG:["h","H"],PW:["h","H"],SO:["h","H"],TO:["h","H"],VU:["h","H"],WS:["h","H"],"001":["H","h"],AL:["h","H","hB"],TD:["h","H","hB"],"ca-ES":["H","h","hB"],CF:["H","h","hB"],CM:["H","h","hB"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],LU:["H","h","hB"],NP:["H","h","hB"],PF:["H","h","hB"],SC:["H","h","hB"],SM:["H","h","hB"],SN:["H","h","hB"],TF:["H","h","hB"],VA:["H","h","hB"],CY:["h","H","hb","hB"],GR:["h","H","hb","hB"],CO:["h","H","hB","hb"],DO:["h","H","hB","hb"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],NA:["h","H","hB","hb"],PA:["h","H","hB","hb"],PR:["h","H","hB","hb"],VE:["h","H","hB","hb"],AC:["H","h","hb","hB"],AI:["H","h","hb","hB"],BW:["H","h","hb","hB"],BZ:["H","h","hb","hB"],CC:["H","h","hb","hB"],CK:["H","h","hb","hB"],CX:["H","h","hb","hB"],DG:["H","h","hb","hB"],FK:["H","h","hb","hB"],GB:["H","h","hb","hB"],GG:["H","h","hb","hB"],GI:["H","h","hb","hB"],IE:["H","h","hb","hB"],IM:["H","h","hb","hB"],IO:["H","h","hb","hB"],JE:["H","h","hb","hB"],LT:["H","h","hb","hB"],MK:["H","h","hb","hB"],MN:["H","h","hb","hB"],MS:["H","h","hb","hB"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],PN:["H","h","hb","hB"],SH:["H","h","hb","hB"],SX:["H","h","hb","hB"],TA:["H","h","hb","hB"],ZA:["H","h","hb","hB"],"af-ZA":["H","h","hB","hb"],AR:["H","h","hB","hb"],CL:["H","h","hB","hb"],CR:["H","h","hB","hb"],CU:["H","h","hB","hb"],EA:["H","h","hB","hb"],"es-BO":["H","h","hB","hb"],"es-BR":["H","h","hB","hb"],"es-EC":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"es-PE":["H","h","hB","hb"],GT:["H","h","hB","hb"],HN:["H","h","hB","hb"],IC:["H","h","hB","hb"],KG:["H","h","hB","hb"],KM:["H","h","hB","hb"],LK:["H","h","hB","hb"],MA:["H","h","hB","hb"],MX:["H","h","hB","hb"],NI:["H","h","hB","hb"],PY:["H","h","hB","hb"],SV:["H","h","hB","hb"],UY:["H","h","hB","hb"],JP:["H","h","K"],AD:["H","hB"],AM:["H","hB"],AO:["H","hB"],AT:["H","hB"],AW:["H","hB"],BE:["H","hB"],BF:["H","hB"],BJ:["H","hB"],BL:["H","hB"],BR:["H","hB"],CG:["H","hB"],CI:["H","hB"],CV:["H","hB"],DE:["H","hB"],EE:["H","hB"],FR:["H","hB"],GA:["H","hB"],GF:["H","hB"],GN:["H","hB"],GP:["H","hB"],GW:["H","hB"],HR:["H","hB"],IL:["H","hB"],IT:["H","hB"],KZ:["H","hB"],MC:["H","hB"],MD:["H","hB"],MF:["H","hB"],MQ:["H","hB"],MZ:["H","hB"],NC:["H","hB"],NL:["H","hB"],PM:["H","hB"],PT:["H","hB"],RE:["H","hB"],RO:["H","hB"],SI:["H","hB"],SR:["H","hB"],ST:["H","hB"],TG:["H","hB"],TR:["H","hB"],WF:["H","hB"],YT:["H","hB"],BD:["h","hB","H"],PK:["h","hB","H"],AZ:["H","hB","h"],BA:["H","hB","h"],BG:["H","hB","h"],CH:["H","hB","h"],GE:["H","hB","h"],LI:["H","hB","h"],ME:["H","hB","h"],RS:["H","hB","h"],UA:["H","hB","h"],UZ:["H","hB","h"],XK:["H","hB","h"],AG:["h","hb","H","hB"],AU:["h","hb","H","hB"],BB:["h","hb","H","hB"],BM:["h","hb","H","hB"],BS:["h","hb","H","hB"],CA:["h","hb","H","hB"],DM:["h","hb","H","hB"],"en-001":["h","hb","H","hB"],FJ:["h","hb","H","hB"],FM:["h","hb","H","hB"],GD:["h","hb","H","hB"],GM:["h","hb","H","hB"],GU:["h","hb","H","hB"],GY:["h","hb","H","hB"],JM:["h","hb","H","hB"],KI:["h","hb","H","hB"],KN:["h","hb","H","hB"],KY:["h","hb","H","hB"],LC:["h","hb","H","hB"],LR:["h","hb","H","hB"],MH:["h","hb","H","hB"],MP:["h","hb","H","hB"],MW:["h","hb","H","hB"],NZ:["h","hb","H","hB"],SB:["h","hb","H","hB"],SG:["h","hb","H","hB"],SL:["h","hb","H","hB"],SS:["h","hb","H","hB"],SZ:["h","hb","H","hB"],TC:["h","hb","H","hB"],TT:["h","hb","H","hB"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],VC:["h","hb","H","hB"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],ZM:["h","hb","H","hB"],BO:["H","hB","h","hb"],EC:["H","hB","h","hb"],ES:["H","hB","h","hb"],GQ:["H","hB","h","hb"],PE:["H","hB","h","hb"],AE:["h","hB","hb","H"],"ar-001":["h","hB","hb","H"],BH:["h","hB","hb","H"],DZ:["h","hB","hb","H"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],HK:["h","hB","hb","H"],IQ:["h","hB","hb","H"],JO:["h","hB","hb","H"],KW:["h","hB","hb","H"],LB:["h","hB","hb","H"],LY:["h","hB","hb","H"],MO:["h","hB","hb","H"],MR:["h","hB","hb","H"],OM:["h","hB","hb","H"],PH:["h","hB","hb","H"],PS:["h","hB","hb","H"],QA:["h","hB","hb","H"],SA:["h","hB","hb","H"],SD:["h","hB","hb","H"],SY:["h","hB","hb","H"],TN:["h","hB","hb","H"],YE:["h","hB","hb","H"],AF:["H","hb","hB","h"],LA:["H","hb","hB","h"],CN:["H","hB","hb","h"],LV:["H","hB","hb","h"],TL:["H","hB","hb","h"],"zu-ZA":["H","hB","hb","h"],CD:["hB","H"],IR:["hB","H"],"hi-IN":["hB","h","H"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"te-IN":["hB","h","H"],KH:["hB","h","H","hb"],"ta-IN":["hB","h","hb","H"],BN:["hb","hB","h","H"],MY:["hb","hB","h","H"],ET:["hB","hb","h","H"],"gu-IN":["hB","hb","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],TW:["hB","hb","h","H"],KE:["hB","hb","H","h"],MM:["hB","hb","H","h"],TZ:["hB","hb","H","h"],UG:["hB","hb","H","h"]};
|
|
399
394
|
/**
|
|
400
395
|
* Returns the best matching date time pattern if a date time skeleton
|
|
401
396
|
* pattern is provided with a locale. Follows the Unicode specification:
|
|
@@ -408,7 +403,7 @@ var yt,vt={AX:["H"],BQ:["H"],CP:["H"],CZ:["H"],DK:["H"],FI:["H"],ID:["H"],IS:["H
|
|
|
408
403
|
* of the given `locale` to the corresponding time pattern.
|
|
409
404
|
* @param locale
|
|
410
405
|
*/
|
|
411
|
-
function
|
|
406
|
+
function xt(e){var t=e.hourCycle;if(void 0===t&&
|
|
412
407
|
// @ts-ignore hourCycle(s) is not identified yet
|
|
413
408
|
e.hourCycles&&
|
|
414
409
|
// @ts-ignore
|
|
@@ -416,37 +411,37 @@ e.hourCycles.length&&(
|
|
|
416
411
|
// @ts-ignore
|
|
417
412
|
t=e.hourCycles[0]),t)switch(t){case"h24":return"k";case"h23":return"H";case"h12":return"h";case"h11":return"K";default:throw new Error("Invalid hourCycle")}
|
|
418
413
|
// TODO: Once hourCycle is fully supported remove the following with data generation
|
|
419
|
-
var n,r=e.language;return"root"!==r&&(n=e.maximize().region),(
|
|
414
|
+
var n,r=e.language;return"root"!==r&&(n=e.maximize().region),(Ht[n||""]||Ht[r||""]||Ht["".concat(r,"-001")]||Ht["001"])[0]}var Rt=new RegExp("^".concat(gt.source,"*")),It=new RegExp("".concat(gt.source,"*$"));function $t(e,t){return{start:e,end:t}}
|
|
420
415
|
// #region Ponyfills
|
|
421
416
|
// Consolidate these variables up top for easier toggling during debugging
|
|
422
|
-
var
|
|
417
|
+
var Pt=!!String.prototype.startsWith,Mt=!!String.fromCodePoint,Ot=!!Object.fromEntries,Nt=!!String.prototype.codePointAt,Dt=!!String.prototype.trimStart,kt=!!String.prototype.trimEnd,Ut=!!Number.isSafeInteger?Number.isSafeInteger:function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Gt=!0;try{
|
|
423
418
|
/**
|
|
424
419
|
* legacy Edge or Xbox One browser
|
|
425
420
|
* Unicode flag support: supported
|
|
426
421
|
* Pattern_Syntax support: not supported
|
|
427
422
|
* See https://github.com/formatjs/formatjs/issues/2822
|
|
428
423
|
*/
|
|
429
|
-
|
|
424
|
+
Gt="a"===(null===(Lt=zt("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu").exec("a"))||void 0===Lt?void 0:Lt[0])}catch(e){Gt=!1}var Ft,jt=Pt?// Native
|
|
430
425
|
function(e,t,n){return e.startsWith(t,n)}:// For IE11
|
|
431
|
-
function(e,t,n){return e.slice(n,n+t.length)===t},
|
|
432
|
-
function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n,r="",o=e.length,i=0;o>i;){if((n=e[i++])>1114111)throw RangeError(n+" is not a valid code point");r+=n<65536?String.fromCharCode(n):String.fromCharCode(55296+((n-=65536)>>10),n%1024+56320)}return r}
|
|
426
|
+
function(e,t,n){return e.slice(n,n+t.length)===t},Vt=Mt?String.fromCodePoint:// IE11
|
|
427
|
+
function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n,r="",o=e.length,i=0;o>i;){if((n=e[i++])>1114111)throw RangeError(n+" is not a valid code point");r+=n<65536?String.fromCharCode(n):String.fromCharCode(55296+((n-=65536)>>10),n%1024+56320)}return r},Wt=
|
|
433
428
|
// native
|
|
434
|
-
|
|
435
|
-
function(e){for(var t={},n=0,r=e;n<r.length;n++){var o=r[n],i=o[0],s=o[1];t[i]=s}return t},
|
|
429
|
+
Ot?Object.fromEntries:// Ponyfill
|
|
430
|
+
function(e){for(var t={},n=0,r=e;n<r.length;n++){var o=r[n],i=o[0],s=o[1];t[i]=s}return t},Kt=Nt?// Native
|
|
436
431
|
function(e,t){return e.codePointAt(t)}:// IE 11
|
|
437
|
-
function(e,t){var n=e.length;if(!(t<0||t>=n)){var r,o=e.charCodeAt(t);return o<55296||o>56319||t+1===n||(r=e.charCodeAt(t+1))<56320||r>57343?o:r-56320+(o-55296<<10)+65536}},
|
|
432
|
+
function(e,t){var n=e.length;if(!(t<0||t>=n)){var r,o=e.charCodeAt(t);return o<55296||o>56319||t+1===n||(r=e.charCodeAt(t+1))<56320||r>57343?o:r-56320+(o-55296<<10)+65536}},Zt=Dt?// Native
|
|
438
433
|
function(e){return e.trimStart()}:// Ponyfill
|
|
439
|
-
function(e){return e.replace(
|
|
434
|
+
function(e){return e.replace(Rt,"")},Xt=kt?// Native
|
|
440
435
|
function(e){return e.trimEnd()}:// Ponyfill
|
|
441
|
-
function(e){return e.replace(
|
|
436
|
+
function(e){return e.replace(It,"")};
|
|
442
437
|
// Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.
|
|
443
|
-
function
|
|
438
|
+
function zt(e,t){return new RegExp(e,t)}
|
|
444
439
|
// #endregion
|
|
445
|
-
if(
|
|
440
|
+
if(Gt){
|
|
446
441
|
// Native
|
|
447
|
-
var
|
|
442
|
+
var Yt=zt("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Ft=function(e,t){var n;return Yt.lastIndex=t,null!==(n=Yt.exec(e)[1])&&void 0!==n?n:""}}else
|
|
448
443
|
// IE11
|
|
449
|
-
|
|
444
|
+
Ft=function(e,t){for(var n=[];;){var r=Kt(e,t);if(void 0===r||en(r)||tn(r))break;n.push(r),t+=r>=65536?2:1}return Vt.apply(void 0,n)};var Jt=/** @class */function(){function e(e,t){void 0===t&&(t={}),this.message=e,this.position={offset:0,line:1,column:1},this.ignoreTag=!!t.ignoreTag,this.locale=t.locale,this.requiresOtherClause=!!t.requiresOtherClause,this.shouldParseSkeletons=!!t.shouldParseSkeletons}return e.prototype.parse=function(){if(0!==this.offset())throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(e,t,n){for(var r=[];!this.isEOF();){var o=this.char();if(123/* `{` */===o){if((i=this.parseArgument(e,n)).err)return i;r.push(i.val)}else{if(125/* `}` */===o&&e>0)break;if(35/* `#` */!==o||"plural"!==t&&"selectordinal"!==t){if(60/* `<` */===o&&!this.ignoreTag&&47===this.peek()){if(n)break;return this.error(et.UNMATCHED_CLOSING_TAG,$t(this.clonePosition(),this.clonePosition()))}if(60/* `<` */===o&&!this.ignoreTag&&qt(this.peek()||0)){if((i=this.parseTag(e,t)).err)return i;r.push(i.val)}else{var i;if((i=this.parseLiteral(e,t)).err)return i;r.push(i.val)}}else{var s=this.clonePosition();this.bump(),r.push({type:tt.pound,location:$t(s,this.clonePosition())})}}}return{val:r,err:null}},
|
|
450
445
|
/**
|
|
451
446
|
* A tag name must start with an ASCII lower/upper case letter. The grammar is based on the
|
|
452
447
|
* [custom element name][] except that a dash is NOT always mandatory and uppercase letters
|
|
@@ -468,14 +463,14 @@ Ot=function(e,t){for(var n=[];;){var r=xt(e,t);if(void 0===r||Vt(r)||Kt(r))break
|
|
|
468
463
|
e.prototype.parseTag=function(e,t){var n=this.clonePosition();this.bump();// `<`
|
|
469
464
|
var r=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))
|
|
470
465
|
// Self closing tag
|
|
471
|
-
return{val:{type:
|
|
466
|
+
return{val:{type:tt.literal,value:"<".concat(r,"/>"),location:$t(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var o=this.parseMessage(e+1,t,!0);if(o.err)return o;var i=o.val,s=this.clonePosition();
|
|
472
467
|
// Expecting a close tag
|
|
473
|
-
if(this.bumpIf("</")){if(this.isEOF()||!
|
|
468
|
+
if(this.bumpIf("</")){if(this.isEOF()||!qt(this.char()))return this.error(et.INVALID_TAG,$t(s,this.clonePosition()));var a=this.clonePosition();return r!==this.parseTagName()?this.error(et.UNMATCHED_CLOSING_TAG,$t(a,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:tt.tag,value:r,children:i,location:$t(n,this.clonePosition())},err:null}:this.error(et.INVALID_TAG,$t(s,this.clonePosition())))}return this.error(et.UNCLOSED_TAG,$t(n,this.clonePosition()))}return this.error(et.INVALID_TAG,$t(n,this.clonePosition()))},
|
|
474
469
|
/**
|
|
475
470
|
* This method assumes that the caller has peeked ahead for the first tag character.
|
|
476
471
|
*/
|
|
477
472
|
e.prototype.parseTagName=function(){var e=this.offset();// the first tag name character
|
|
478
|
-
for(this.bump();!this.isEOF()&&
|
|
473
|
+
for(this.bump();!this.isEOF()&&Qt(this.char());)this.bump();return this.message.slice(e,this.offset())},e.prototype.parseLiteral=function(e,t){for(var n=this.clonePosition(),r="";;){var o=this.tryParseQuote(t);if(o)r+=o;else{var i=this.tryParseUnquoted(e,t);if(i)r+=i;else{var s=this.tryParseLeftAngleBracket();if(!s)break;r+=s}}}var a=$t(n,this.clonePosition());return{val:{type:tt.literal,value:r,location:a},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return this.isEOF()||60/* `<` */!==this.char()||!this.ignoreTag&&(qt(e=this.peek()||0)||47===e)?null:(this.bump(),"<");var e;
|
|
479
474
|
/** See `parseTag` function docs. */},
|
|
480
475
|
/**
|
|
481
476
|
* Starting with ICU 4.8, an ASCII apostrophe only starts quoted text if it immediately precedes
|
|
@@ -497,67 +492,67 @@ for(this.bump();!this.isEOF();){var n=this.char();if(39/* `'` */===n){if(39/* `'
|
|
|
497
492
|
// Optional closing apostrophe.
|
|
498
493
|
this.bump();break}t.push(39),
|
|
499
494
|
// Bump one more time because we need to skip 2 characters.
|
|
500
|
-
this.bump()}else t.push(n);this.bump()}return
|
|
501
|
-
this.bumpSpace(),this.isEOF())return this.error(
|
|
495
|
+
this.bump()}else t.push(n);this.bump()}return Vt.apply(void 0,t)},e.prototype.tryParseUnquoted=function(e,t){if(this.isEOF())return null;var n=this.char();return 60/* `<` */===n||123/* `{` */===n||35/* `#` */===n&&("plural"===t||"selectordinal"===t)||125/* `}` */===n&&e>0?null:(this.bump(),Vt(n))},e.prototype.parseArgument=function(e,t){var n=this.clonePosition();if(this.bump(),// `{`
|
|
496
|
+
this.bumpSpace(),this.isEOF())return this.error(et.EXPECT_ARGUMENT_CLOSING_BRACE,$t(n,this.clonePosition()));if(125/* `}` */===this.char())return this.bump(),this.error(et.EMPTY_ARGUMENT,$t(n,this.clonePosition()));
|
|
502
497
|
// argument name
|
|
503
|
-
var r=this.parseIdentifierIfPossible().value;if(!r)return this.error(
|
|
498
|
+
var r=this.parseIdentifierIfPossible().value;if(!r)return this.error(et.MALFORMED_ARGUMENT,$t(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(et.EXPECT_ARGUMENT_CLOSING_BRACE,$t(n,this.clonePosition()));switch(this.char()){
|
|
504
499
|
// Simple argument: `{name}`
|
|
505
500
|
case 125/* `}` */:// `}`
|
|
506
|
-
return this.bump(),{val:{type:
|
|
501
|
+
return this.bump(),{val:{type:tt.argument,
|
|
507
502
|
// value does not include the opening and closing braces.
|
|
508
|
-
value:r,location
|
|
503
|
+
value:r,location:$t(n,this.clonePosition())},err:null};
|
|
509
504
|
// Argument with options: `{name, format, ...}`
|
|
510
505
|
case 44/* `,` */:return this.bump(),// `,`
|
|
511
|
-
this.bumpSpace(),this.isEOF()?this.error(
|
|
506
|
+
this.bumpSpace(),this.isEOF()?this.error(et.EXPECT_ARGUMENT_CLOSING_BRACE,$t(n,this.clonePosition())):this.parseArgumentOptions(e,t,r,n);default:return this.error(et.MALFORMED_ARGUMENT,$t(n,this.clonePosition()))}},
|
|
512
507
|
/**
|
|
513
508
|
* Advance the parser until the end of the identifier, if it is currently on
|
|
514
509
|
* an identifier character. Return an empty string otherwise.
|
|
515
510
|
*/
|
|
516
|
-
e.prototype.parseIdentifierIfPossible=function(){var e=this.clonePosition(),t=this.offset(),n=
|
|
511
|
+
e.prototype.parseIdentifierIfPossible=function(){var e=this.clonePosition(),t=this.offset(),n=Ft(this.message,t),r=t+n.length;return this.bumpTo(r),{value:n,location:$t(e,this.clonePosition())}},e.prototype.parseArgumentOptions=function(e,t,n,r){var o,i=this.clonePosition(),s=this.parseIdentifierIfPossible().value,a=this.clonePosition();
|
|
517
512
|
// Parse this range:
|
|
518
513
|
// {name, type, style}
|
|
519
514
|
// ^---^
|
|
520
515
|
switch(s){case"":
|
|
521
516
|
// Expecting a style string number, date, time, plural, selectordinal, or select.
|
|
522
|
-
return this.error(
|
|
517
|
+
return this.error(et.EXPECT_ARGUMENT_TYPE,$t(i,a));case"number":case"date":case"time":
|
|
523
518
|
// Parse this range:
|
|
524
519
|
// {name, number, style}
|
|
525
520
|
// ^-------^
|
|
526
|
-
this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var c=this.clonePosition();if((b=this.parseSimpleArgStyleIfPossible()).err)return b;if(0===(
|
|
521
|
+
this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var c=this.clonePosition();if((b=this.parseSimpleArgStyleIfPossible()).err)return b;if(0===(f=Xt(b.val)).length)return this.error(et.EXPECT_ARGUMENT_STYLE,$t(this.clonePosition(),this.clonePosition()));l={style:f,styleLocation:$t(c,this.clonePosition())}}if((y=this.tryParseArgumentClose(r)).err)return y;var u=$t(r,this.clonePosition());
|
|
527
522
|
// Extract style or skeleton
|
|
528
|
-
if(l&&
|
|
523
|
+
if(l&&jt(null==l?void 0:l.style,"::",0)){
|
|
529
524
|
// Skeleton starts with `::`.
|
|
530
|
-
var h=
|
|
525
|
+
var h=Zt(l.style.slice(2));if("number"===s)return(b=this.parseNumberSkeletonFromString(h,l.styleLocation)).err?b:{val:{type:tt.number,value:n,location:u,style:b.val},err:null};if(0===h.length)return this.error(et.EXPECT_DATE_TIME_SKELETON,u);var p=h;
|
|
531
526
|
// Get "best match" pattern only if locale is passed, if not, let it
|
|
532
527
|
// pass as-is where `parseDateTimeSkeleton()` will throw an error
|
|
533
528
|
// for unsupported patterns.
|
|
534
|
-
this.locale&&(
|
|
529
|
+
this.locale&&(p=function(e,t){for(var n="",r=0;r<e.length;r++){var o=e.charAt(r);if("j"===o){for(var i=0;r+1<e.length&&e.charAt(r+1)===o;)i++,r++;var s=1+(1&i),a=i<2?1:3+(i>>1),l=xt(t);for("H"!=l&&"k"!=l||(a=0);a-- >0;)n+="a";for(;s-- >0;)n=l+n}else n+="J"===o?"H":o}return n}(h,this.locale));var f={type:nt.dateTime,pattern:p,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?bt(p):{}};return{val:{type:"date"===s?tt.date:tt.time,value:n,location:u,style:f},err:null}}
|
|
535
530
|
// Regular style or no style.
|
|
536
|
-
return{val:{type:"number"===s?
|
|
531
|
+
return{val:{type:"number"===s?tt.number:"date"===s?tt.date:tt.time,value:n,location:u,style:null!==(o=null==l?void 0:l.style)&&void 0!==o?o:null},err:null};case"plural":case"selectordinal":case"select":
|
|
537
532
|
// Parse this range:
|
|
538
533
|
// {name, plural, options}
|
|
539
534
|
// ^---------^
|
|
540
|
-
var d=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(
|
|
535
|
+
var d=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(et.EXPECT_SELECT_ARGUMENT_OPTIONS,$t(d,ye({},d)));this.bumpSpace();
|
|
541
536
|
// Parse offset:
|
|
542
537
|
// {name, plural, offset:1, options}
|
|
543
538
|
// ^-----^
|
|
544
539
|
// or the first option:
|
|
545
540
|
// {name, plural, one {...} other {...}}
|
|
546
541
|
// ^--^
|
|
547
|
-
var g=this.parseIdentifierIfPossible(),m=0;if("select"!==s&&"offset"===g.value){if(!this.bumpIf(":"))return this.error(
|
|
542
|
+
var g=this.parseIdentifierIfPossible(),m=0;if("select"!==s&&"offset"===g.value){if(!this.bumpIf(":"))return this.error(et.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,$t(this.clonePosition(),this.clonePosition()));var b;if(this.bumpSpace(),(b=this.tryParseDecimalInteger(et.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,et.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE)).err)return b;
|
|
548
543
|
// Parse another identifier for option parsing
|
|
549
|
-
this.bumpSpace(),g=this.parseIdentifierIfPossible(),m=b.val}var y,v=this.tryParsePluralOrSelectOptions(e,s,t,g);if(v.err)return v;if((y=this.tryParseArgumentClose(r)).err)return y;var E
|
|
544
|
+
this.bumpSpace(),g=this.parseIdentifierIfPossible(),m=b.val}var y,v=this.tryParsePluralOrSelectOptions(e,s,t,g);if(v.err)return v;if((y=this.tryParseArgumentClose(r)).err)return y;var E=$t(r,this.clonePosition());return"select"===s?{val:{type:tt.select,value:n,options:Wt(v.val),location:E},err:null}:{val:{type:tt.plural,value:n,options:Wt(v.val),offset:m,pluralType:"plural"===s?"cardinal":"ordinal",location:E},err:null};default:return this.error(et.INVALID_ARGUMENT_TYPE,$t(i,a))}},e.prototype.tryParseArgumentClose=function(e){
|
|
550
545
|
// Parse: {value, number, ::currency/GBP }
|
|
551
|
-
return this.isEOF()||125/* `}` */!==this.char()?this.error(
|
|
546
|
+
return this.isEOF()||125/* `}` */!==this.char()?this.error(et.EXPECT_ARGUMENT_CLOSING_BRACE,$t(e,this.clonePosition())):(this.bump(),{val:!0,err:null})},
|
|
552
547
|
/**
|
|
553
548
|
* See: https://github.com/unicode-org/icu/blob/af7ed1f6d2298013dc303628438ec4abe1f16479/icu4c/source/common/messagepattern.cpp#L659
|
|
554
549
|
*/
|
|
555
550
|
e.prototype.parseSimpleArgStyleIfPossible=function(){for(var e=0,t=this.clonePosition();!this.isEOF();){switch(this.char()){case 39/* `'` */:
|
|
556
551
|
// Treat apostrophe as quoting but include it in the style part.
|
|
557
552
|
// Find the end of the quoted literal text.
|
|
558
|
-
this.bump();var n=this.clonePosition();if(!this.bumpUntil("'"))return this.error(
|
|
553
|
+
this.bump();var n=this.clonePosition();if(!this.bumpUntil("'"))return this.error(et.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,$t(n,this.clonePosition()));this.bump();break;case 123/* `{` */:e+=1,this.bump();break;case 125/* `}` */:if(!(e>0))return{val:this.message.slice(t.offset,this.offset()),err:null};e-=1;break;default:this.bump()}}return{val:this.message.slice(t.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(e,t){var n=[];try{n=function(e){if(0===e.length)throw new Error("Number skeleton cannot be empty");
|
|
559
554
|
// Parse the skeleton
|
|
560
|
-
for(var t=e.split(
|
|
555
|
+
for(var t=e.split(yt).filter((function(e){return e.length>0})),n=[],r=0,o=t;r<o.length;r++){var i=o[r].split("/");if(0===i.length)throw new Error("Invalid number skeleton");for(var s=i[0],a=i.slice(1),l=0,c=a;l<c.length;l++)if(0===c[l].length)throw new Error("Invalid number skeleton");n.push({stem:s,options:a})}return n}(e)}catch(e){return this.error(et.INVALID_NUMBER_SKELETON,t)}return{val:{type:nt.number,tokens:n,location:t,parsedOptions:this.shouldParseSkeletons?_t(n):{}},err:null}},
|
|
561
556
|
/**
|
|
562
557
|
* @param nesting_level The current nesting level of messages.
|
|
563
558
|
* This can be positive when parsing message fragment in select or plural argument options.
|
|
@@ -574,24 +569,24 @@ e.prototype.tryParsePluralOrSelectOptions=function(e,t,n,r){
|
|
|
574
569
|
// ^--^
|
|
575
570
|
for(var o,i=!1,s=[],a=new Set,l=r.value,c=r.location;;){if(0===l.length){var u=this.clonePosition();if("select"===t||!this.bumpIf("="))break;
|
|
576
571
|
// Try parse `={number}` selector
|
|
577
|
-
var h=this.tryParseDecimalInteger(
|
|
572
|
+
var h=this.tryParseDecimalInteger(et.EXPECT_PLURAL_ARGUMENT_SELECTOR,et.INVALID_PLURAL_ARGUMENT_SELECTOR);if(h.err)return h;c=$t(u,this.clonePosition()),l=this.message.slice(u.offset,this.offset())}
|
|
578
573
|
// Duplicate selector clauses
|
|
579
|
-
if(a.has(l))return this.error("select"===t?
|
|
574
|
+
if(a.has(l))return this.error("select"===t?et.DUPLICATE_SELECT_ARGUMENT_SELECTOR:et.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,c);"other"===l&&(i=!0),
|
|
580
575
|
// Parse:
|
|
581
576
|
// one {one apple}
|
|
582
577
|
// ^----------^
|
|
583
|
-
this.bumpSpace();var
|
|
578
|
+
this.bumpSpace();var p=this.clonePosition();if(!this.bumpIf("{"))return this.error("select"===t?et.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:et.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,$t(this.clonePosition(),this.clonePosition()));var f=this.parseMessage(e+1,t,n);if(f.err)return f;var d=this.tryParseArgumentClose(p);if(d.err)return d;s.push([l,{value:f.val,location:$t(p,this.clonePosition())}]),
|
|
584
579
|
// Keep track of the existing selectors
|
|
585
580
|
a.add(l),
|
|
586
581
|
// Prep next selector clause.
|
|
587
|
-
this.bumpSpace(),l=(o=this.parseIdentifierIfPossible()).value,c=o.location}return 0===s.length?this.error("select"===t?
|
|
582
|
+
this.bumpSpace(),l=(o=this.parseIdentifierIfPossible()).value,c=o.location}return 0===s.length?this.error("select"===t?et.EXPECT_SELECT_ARGUMENT_SELECTOR:et.EXPECT_PLURAL_ARGUMENT_SELECTOR,$t(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!i?this.error(et.MISSING_OTHER_CLAUSE,$t(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(e,t){var n=1,r=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-1);for(var o=!1,i=0;!this.isEOF();){var s=this.char();if(!(s>=48/* `0` */&&s<=57/* `9` */))break;o=!0,i=10*i+(s-48),this.bump()}var a=$t(r,this.clonePosition());return o?Ut(i*=n)?{val:i,err:null}:this.error(t,a):this.error(e,a)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){
|
|
588
583
|
// This is much faster than `Object.assign` or spread.
|
|
589
584
|
return{offset:this.position.offset,line:this.position.line,column:this.position.column}},
|
|
590
585
|
/**
|
|
591
586
|
* Return the code point at the current position of the parser.
|
|
592
587
|
* Throws if the index is out of bound.
|
|
593
588
|
*/
|
|
594
|
-
e.prototype.char=function(){var e=this.position.offset;if(e>=this.message.length)throw Error("out of bound");var t=
|
|
589
|
+
e.prototype.char=function(){var e=this.position.offset;if(e>=this.message.length)throw Error("out of bound");var t=Kt(this.message,e);if(void 0===t)throw Error("Offset ".concat(e," is at invalid UTF-16 code unit boundary"));return t},e.prototype.error=function(e,t){return{val:null,err:{kind:e,message:this.message,location:t}}},
|
|
595
590
|
/** Bump the parser to the next UTF-16 code unit. */
|
|
596
591
|
e.prototype.bump=function(){if(!this.isEOF()){var e=this.char();10/* '\n' */===e?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,
|
|
597
592
|
// 0 ~ 0x10000 -> unicode BMP, otherwise skip the surrogate pair.
|
|
@@ -602,7 +597,7 @@ this.position.offset+=e<65536?1:2)}},
|
|
|
602
597
|
* following the prefix and return true. Otherwise, don't bump the parser
|
|
603
598
|
* and return false.
|
|
604
599
|
*/
|
|
605
|
-
e.prototype.bumpIf=function(e){if(
|
|
600
|
+
e.prototype.bumpIf=function(e){if(jt(this.message,e,this.offset())){for(var t=0;t<e.length;t++)this.bump();return!0}return!1},
|
|
606
601
|
/**
|
|
607
602
|
* Bump the parser until the pattern character is found and return `true`.
|
|
608
603
|
* Otherwise bump to the end of the file and return `false`.
|
|
@@ -614,7 +609,7 @@ e.prototype.bumpUntil=function(e){var t=this.offset(),n=this.message.indexOf(e,t
|
|
|
614
609
|
*/
|
|
615
610
|
e.prototype.bumpTo=function(e){if(this.offset()>e)throw Error("targetOffset ".concat(e," must be greater than or equal to the current offset ").concat(this.offset()));for(e=Math.min(e,this.message.length);;){var t=this.offset();if(t===e)break;if(t>e)throw Error("targetOffset ".concat(e," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},
|
|
616
611
|
/** advance the parser through all whitespace to the next non-whitespace code unit. */
|
|
617
|
-
e.prototype.bumpSpace=function(){for(;!this.isEOF()&&
|
|
612
|
+
e.prototype.bumpSpace=function(){for(;!this.isEOF()&&en(this.char());)this.bump()},
|
|
618
613
|
/**
|
|
619
614
|
* Peek at the *next* Unicode codepoint in the input without advancing the parser.
|
|
620
615
|
* If the input has been exhausted, then this returns null.
|
|
@@ -624,139 +619,177 @@ e.prototype.peek=function(){if(this.isEOF())return null;var e=this.char(),t=this
|
|
|
624
619
|
* This check if codepoint is alphabet (lower & uppercase)
|
|
625
620
|
* @param codepoint
|
|
626
621
|
* @returns
|
|
627
|
-
*/function
|
|
622
|
+
*/function qt(e){return e>=97&&e<=122||e>=65&&e<=90}function Qt(e){return 45/* '-' */===e||46/* '.' */===e||e>=48&&e<=57/* 0..9 */||95/* '_' */===e||e>=97&&e<=122/** a..z */||e>=65&&e<=90/* A..Z */||183==e||e>=192&&e<=214||e>=216&&e<=246||e>=248&&e<=893||e>=895&&e<=8191||e>=8204&&e<=8205||e>=8255&&e<=8256||e>=8304&&e<=8591||e>=11264&&e<=12271||e>=12289&&e<=55295||e>=63744&&e<=64975||e>=65008&&e<=65533||e>=65536&&e<=983039}
|
|
628
623
|
/**
|
|
629
624
|
* Code point equivalent of regex `\p{White_Space}`.
|
|
630
625
|
* From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
|
|
631
|
-
*/function
|
|
626
|
+
*/function en(e){return e>=9&&e<=13||32===e||133===e||e>=8206&&e<=8207||8232===e||8233===e}
|
|
632
627
|
/**
|
|
633
628
|
* Code point equivalent of regex `\p{Pattern_Syntax}`.
|
|
634
629
|
* See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
|
|
635
|
-
*/function
|
|
630
|
+
*/function tn(e){return e>=33&&e<=35||36===e||e>=37&&e<=39||40===e||41===e||42===e||43===e||44===e||45===e||e>=46&&e<=47||e>=58&&e<=59||e>=60&&e<=62||e>=63&&e<=64||91===e||92===e||93===e||94===e||96===e||123===e||124===e||125===e||126===e||161===e||e>=162&&e<=165||166===e||167===e||169===e||171===e||172===e||174===e||176===e||177===e||182===e||187===e||191===e||215===e||247===e||e>=8208&&e<=8213||e>=8214&&e<=8215||8216===e||8217===e||8218===e||e>=8219&&e<=8220||8221===e||8222===e||8223===e||e>=8224&&e<=8231||e>=8240&&e<=8248||8249===e||8250===e||e>=8251&&e<=8254||e>=8257&&e<=8259||8260===e||8261===e||8262===e||e>=8263&&e<=8273||8274===e||8275===e||e>=8277&&e<=8286||e>=8592&&e<=8596||e>=8597&&e<=8601||e>=8602&&e<=8603||e>=8604&&e<=8607||8608===e||e>=8609&&e<=8610||8611===e||e>=8612&&e<=8613||8614===e||e>=8615&&e<=8621||8622===e||e>=8623&&e<=8653||e>=8654&&e<=8655||e>=8656&&e<=8657||8658===e||8659===e||8660===e||e>=8661&&e<=8691||e>=8692&&e<=8959||e>=8960&&e<=8967||8968===e||8969===e||8970===e||8971===e||e>=8972&&e<=8991||e>=8992&&e<=8993||e>=8994&&e<=9e3||9001===e||9002===e||e>=9003&&e<=9083||9084===e||e>=9085&&e<=9114||e>=9115&&e<=9139||e>=9140&&e<=9179||e>=9180&&e<=9185||e>=9186&&e<=9254||e>=9255&&e<=9279||e>=9280&&e<=9290||e>=9291&&e<=9311||e>=9472&&e<=9654||9655===e||e>=9656&&e<=9664||9665===e||e>=9666&&e<=9719||e>=9720&&e<=9727||e>=9728&&e<=9838||9839===e||e>=9840&&e<=10087||10088===e||10089===e||10090===e||10091===e||10092===e||10093===e||10094===e||10095===e||10096===e||10097===e||10098===e||10099===e||10100===e||10101===e||e>=10132&&e<=10175||e>=10176&&e<=10180||10181===e||10182===e||e>=10183&&e<=10213||10214===e||10215===e||10216===e||10217===e||10218===e||10219===e||10220===e||10221===e||10222===e||10223===e||e>=10224&&e<=10239||e>=10240&&e<=10495||e>=10496&&e<=10626||10627===e||10628===e||10629===e||10630===e||10631===e||10632===e||10633===e||10634===e||10635===e||10636===e||10637===e||10638===e||10639===e||10640===e||10641===e||10642===e||10643===e||10644===e||10645===e||10646===e||10647===e||10648===e||e>=10649&&e<=10711||10712===e||10713===e||10714===e||10715===e||e>=10716&&e<=10747||10748===e||10749===e||e>=10750&&e<=11007||e>=11008&&e<=11055||e>=11056&&e<=11076||e>=11077&&e<=11078||e>=11079&&e<=11084||e>=11085&&e<=11123||e>=11124&&e<=11125||e>=11126&&e<=11157||11158===e||e>=11159&&e<=11263||e>=11776&&e<=11777||11778===e||11779===e||11780===e||11781===e||e>=11782&&e<=11784||11785===e||11786===e||11787===e||11788===e||11789===e||e>=11790&&e<=11798||11799===e||e>=11800&&e<=11801||11802===e||11803===e||11804===e||11805===e||e>=11806&&e<=11807||11808===e||11809===e||11810===e||11811===e||11812===e||11813===e||11814===e||11815===e||11816===e||11817===e||e>=11818&&e<=11822||11823===e||e>=11824&&e<=11833||e>=11834&&e<=11835||e>=11836&&e<=11839||11840===e||11841===e||11842===e||e>=11843&&e<=11855||e>=11856&&e<=11857||11858===e||e>=11859&&e<=11903||e>=12289&&e<=12291||12296===e||12297===e||12298===e||12299===e||12300===e||12301===e||12302===e||12303===e||12304===e||12305===e||e>=12306&&e<=12307||12308===e||12309===e||12310===e||12311===e||12312===e||12313===e||12314===e||12315===e||12316===e||12317===e||e>=12318&&e<=12319||12320===e||12336===e||64830===e||64831===e||e>=65093&&e<=65094}function nn(e){e.forEach((function(e){if(delete e.location,ct(e)||ut(e))for(var t in e.options)delete e.options[t].location,nn(e.options[t].value);else st(e)&&ft(e.style)||(at(e)||lt(e))&&dt(e.style)?delete e.style.location:pt(e)&&nn(e.children)}))}function rn(e,t){void 0===t&&(t={}),t=ye({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var n=new Jt(e,t).parse();if(n.err){var r=SyntaxError(et[n.err.kind]);
|
|
636
631
|
// @ts-expect-error Assign to error object
|
|
637
632
|
throw r.location=n.err.location,
|
|
638
633
|
// @ts-expect-error Assign to error object
|
|
639
|
-
r.originalMessage=n.err.message,r}return(null==t?void 0:t.captureLocation)||
|
|
634
|
+
r.originalMessage=n.err.message,r}return(null==t?void 0:t.captureLocation)||nn(n.val),n.val}
|
|
640
635
|
|
|
641
636
|
// Main
|
|
642
637
|
|
|
643
|
-
function
|
|
638
|
+
function on(e,t){var n=t&&t.cache?t.cache:fn,r=t&&t.serializer?t.serializer:un;return(t&&t.strategy?t.strategy:cn)(e,{cache:n,serializer:r})}
|
|
644
639
|
|
|
645
640
|
// Strategy
|
|
646
641
|
|
|
647
|
-
function
|
|
642
|
+
function sn(e,t,n,r){var o,i=null==(o=r)||"number"==typeof o||"boolean"==typeof o?r:n(r),s=t.get(i);return void 0===s&&(s=e.call(this,r),t.set(i,s)),s}function an(e,t,n){var r=Array.prototype.slice.call(arguments,3),o=n(r),i=t.get(o);return void 0===i&&(i=e.apply(this,r),t.set(o,i)),i}function ln(e,t,n,r,o){return n.bind(t,e,r,o)}function cn(e,t){return ln(e,this,1===e.length?sn:an,t.cache.create(),t.serializer)}
|
|
648
643
|
// Serializer
|
|
649
|
-
var
|
|
644
|
+
var un=function(){return JSON.stringify(arguments)};
|
|
650
645
|
|
|
651
646
|
// Cache
|
|
652
647
|
|
|
653
|
-
function
|
|
648
|
+
function hn(){this.cache=Object.create(null)}hn.prototype.get=function(e){return this.cache[e]},hn.prototype.set=function(e,t){this.cache[e]=t};var pn,fn={create:function(){
|
|
654
649
|
// @ts-ignore
|
|
655
|
-
return new
|
|
650
|
+
return new hn}},dn={variadic:function(e,t){return ln(e,this,an,t.cache.create(),t.serializer)},monadic:function(e,t){return ln(e,this,sn,t.cache.create(),t.serializer)}};!function(e){
|
|
656
651
|
// When we have a placeholder but no value to format
|
|
657
652
|
e.MISSING_VALUE="MISSING_VALUE",
|
|
658
653
|
// When value supplied is invalid
|
|
659
654
|
e.INVALID_VALUE="INVALID_VALUE",
|
|
660
655
|
// When we need specific Intl API but it's not available
|
|
661
|
-
e.MISSING_INTL_API="MISSING_INTL_API"}(
|
|
656
|
+
e.MISSING_INTL_API="MISSING_INTL_API"}(pn||(pn={}));var gn,mn=/** @class */function(e){function t(t,n,r){var o=e.call(this,t)||this;return o.code=n,o.originalMessage=r,o}return pe(t,e),t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),bn=/** @class */function(e){function t(t,n,r,o){return e.call(this,'Invalid values for "'.concat(t,'": "').concat(n,'". Options are "').concat(Object.keys(r).join('", "'),'"'),pn.INVALID_VALUE,o)||this}return pe(t,e),t}(mn),yn=/** @class */function(e){function t(t,n,r){return e.call(this,'Value for "'.concat(t,'" must be of type ').concat(n),pn.INVALID_VALUE,r)||this}return pe(t,e),t}(mn),vn=/** @class */function(e){function t(t,n){return e.call(this,'The intl string context variable "'.concat(t,'" was not provided to the string "').concat(n,'"'),pn.MISSING_VALUE,n)||this}return pe(t,e),t}(mn);function En(e){return"function"==typeof e}
|
|
662
657
|
// TODO(skeleton): add skeleton support
|
|
663
|
-
function
|
|
658
|
+
function wn(e,t,n,r,o,i,
|
|
664
659
|
// For debugging
|
|
665
660
|
s){
|
|
666
661
|
// Hot path for straight simple msg translations
|
|
667
|
-
if(1===e.length&&
|
|
662
|
+
if(1===e.length&&ot(e[0]))return[{type:gn.literal,value:e[0].value}];for(var a=[],l=0,c=e;l<c.length;l++){var u=c[l];
|
|
668
663
|
// Exit early for string parts.
|
|
669
|
-
if(
|
|
664
|
+
if(ot(u))a.push({type:gn.literal,value:u.value});else
|
|
670
665
|
// TODO: should this part be literal type?
|
|
671
666
|
// Replace `#` in plural rules with the actual numeric value.
|
|
672
|
-
if(
|
|
667
|
+
if(ht(u))"number"==typeof i&&a.push({type:gn.literal,value:n.getNumberFormat(t).format(i)});else{var h=u.value;
|
|
673
668
|
// Enforce that all required values are provided by the caller.
|
|
674
|
-
if(!o||!(h in o))throw new
|
|
669
|
+
if(!o||!(h in o))throw new vn(h,s);var p=o[h];if(it(u))p&&"string"!=typeof p&&"number"!=typeof p||(p="string"==typeof p||"number"==typeof p?String(p):""),a.push({type:"string"==typeof p?gn.literal:gn.object,value:p});else
|
|
675
670
|
// Recursively format plural and select parts' option — which can be a
|
|
676
671
|
// nested pattern structure. The choosing of the option to use is
|
|
677
672
|
// abstracted-by and delegated-to the part helper object.
|
|
678
|
-
if(
|
|
673
|
+
if(at(u)){var f="string"==typeof u.style?r.date[u.style]:dt(u.style)?u.style.parsedOptions:void 0;a.push({type:gn.literal,value:n.getDateTimeFormat(t,f).format(p)})}else if(lt(u)){f="string"==typeof u.style?r.time[u.style]:dt(u.style)?u.style.parsedOptions:r.time.medium;a.push({type:gn.literal,value:n.getDateTimeFormat(t,f).format(p)})}else if(st(u)){(f="string"==typeof u.style?r.number[u.style]:ft(u.style)?u.style.parsedOptions:void 0)&&f.scale&&(p*=f.scale||1),a.push({type:gn.literal,value:n.getNumberFormat(t,f).format(p)})}else{if(pt(u)){var d=u.children,g=u.value,m=o[g];if(!En(m))throw new yn(g,"function",s);var b=m(wn(d,t,n,r,o,i).map((function(e){return e.value})));Array.isArray(b)||(b=[b]),a.push.apply(a,b.map((function(e){return{type:"string"==typeof e?gn.literal:gn.object,value:e}})))}if(ct(u)){if(!(y=u.options[p]||u.options.other))throw new bn(u.value,p,Object.keys(u.options),s);a.push.apply(a,wn(y.value,t,n,r,o))}else if(ut(u)){var y;if(!(y=u.options["=".concat(p)])){if(!Intl.PluralRules)throw new mn('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n',pn.MISSING_INTL_API,s);var v=n.getPluralRules(t,{type:u.pluralType}).select(p-(u.offset||0));y=u.options[v]||u.options.other}if(!y)throw new bn(u.value,p,Object.keys(u.options),s);a.push.apply(a,wn(y.value,t,n,r,o,p-(u.offset||0)))}else;}}}return function(e){return e.length<2?e:e.reduce((function(e,t){var n=e[e.length-1];return n&&n.type===gn.literal&&t.type===gn.literal?n.value+=t.value:e.push(t),e}),[])}(a)}
|
|
679
674
|
/*
|
|
680
675
|
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
|
|
681
676
|
Copyrights licensed under the New BSD License.
|
|
682
677
|
See the accompanying LICENSE file for terms.
|
|
683
678
|
*/
|
|
684
679
|
// -- MessageFormat --------------------------------------------------------
|
|
685
|
-
function
|
|
680
|
+
function Tn(e,t){return t?Object.keys(e).reduce((function(n,r){var o,i;return n[r]=(o=e[r],(i=t[r])?ye(ye(ye({},o||{}),i||{}),Object.keys(o).reduce((function(e,t){return e[t]=ye(ye({},o[t]),i[t]||{}),e}),{})):o),n}),ye({},e)):e}function Bn(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,n){e[t]=n}}}}}!function(e){e[e.literal=0]="literal",e[e.object=1]="object"}(gn||(gn={}));var Cn=/** @class */function(){function e(t,n,r,o){var i,s=this;if(void 0===n&&(n=e.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(e){var t=s.formatToParts(e);
|
|
686
681
|
// Hot path for straight simple msg translations
|
|
687
|
-
if(1===t.length)return t[0].value;var n=t.reduce((function(e,t){return e.length&&t.type===
|
|
682
|
+
if(1===t.length)return t[0].value;var n=t.reduce((function(e,t){return e.length&&t.type===gn.literal&&"string"==typeof e[e.length-1]?e[e.length-1]+=t.value:e.push(t.value),e}),[]);return n.length<=1?n[0]||"":n},this.formatToParts=function(e){return wn(s.ast,s.locales,s.formatters,s.formats,e,void 0,s.message)},this.resolvedOptions=function(){return{locale:s.resolvedLocale.toString()}},this.getAst=function(){return s.ast},
|
|
688
683
|
// Defined first because it's used to build the format pattern.
|
|
689
684
|
this.locales=n,this.resolvedLocale=e.resolveLocale(n),"string"==typeof t){if(this.message=t,!e.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");
|
|
690
685
|
// Parse string messages into an AST.
|
|
691
686
|
this.ast=e.__parse(t,{ignoreTag:null==o?void 0:o.ignoreTag,locale:this.resolvedLocale})}else this.ast=t;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");
|
|
692
687
|
// Creates a new object with the specified `formats` merged with the default
|
|
693
688
|
// formats.
|
|
694
|
-
this.formats=
|
|
689
|
+
this.formats=Tn(e.formats,r),this.formatters=o&&o.formatters||(void 0===(i=this.formatterCache)&&(i={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:on((function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new((e=Intl.NumberFormat).bind.apply(e,Ee([void 0],t,!1)))}),{cache:Bn(i.number),strategy:dn.variadic}),getDateTimeFormat:on((function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new((e=Intl.DateTimeFormat).bind.apply(e,Ee([void 0],t,!1)))}),{cache:Bn(i.dateTime),strategy:dn.variadic}),getPluralRules:on((function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new((e=Intl.PluralRules).bind.apply(e,Ee([void 0],t,!1)))}),{cache:Bn(i.pluralRules),strategy:dn.variadic})})}return Object.defineProperty(e,"defaultLocale",{get:function(){return e.memoizedDefaultLocale||(e.memoizedDefaultLocale=(new Intl.NumberFormat).resolvedOptions().locale),e.memoizedDefaultLocale},enumerable:!1,configurable:!0}),e.memoizedDefaultLocale=null,e.resolveLocale=function(e){var t=Intl.NumberFormat.supportedLocalesOf(e);return t.length>0?new Intl.Locale(t[0]):new Intl.Locale("string"==typeof e?e:e[0])},e.__parse=rn,
|
|
695
690
|
// Default format options used as the prototype of the `formats` provided to the
|
|
696
691
|
// constructor. These are used when constructing the internal Intl.NumberFormat
|
|
697
692
|
// and Intl.DateTimeFormat instances.
|
|
698
|
-
e.formats={number:{integer:{maximumFractionDigits:0},currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},e}(),
|
|
693
|
+
e.formats={number:{integer:{maximumFractionDigits:0},currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},e}(),Sn=Cn;
|
|
699
694
|
/*
|
|
700
695
|
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
|
|
701
696
|
Copyrights licensed under the New BSD License.
|
|
702
697
|
See the accompanying LICENSE file for terms.
|
|
703
|
-
*/const
|
|
698
|
+
*/const An={},_n=(e,t,n)=>n?(t in An||(An[t]={}),e in An[t]||(An[t][e]=n),n):n,Ln=(e,t)=>{if(null==t)return;if(t in An&&e in An[t])return An[t][e];const n=Wn(t);for(let r=0;r<n.length;r++){const o=In(n[r],e);if(o)return _n(e,t,o)}};let Hn;const xn=Ve({});function Rn(e){return e in Hn}function In(e,t){if(!Rn(e))return null;const n=function(e){return Hn[e]||null}(e);return function(e,t){if(null==t)return;if(t in e)return e[t];const n=t.split(".");let r=e;for(let e=0;e<n.length;e++)if("object"==typeof r){if(e>0){const t=n.slice(e,n.length).join(".");if(t in r){r=r[t];break}}r=r[n[e]]}else r=void 0;return r}(n,t)}function $n(e,...t){delete An[e],xn.update((n=>(n[e]=rt.all([n[e]||{},...t]),n)))}We([xn],(([e])=>Object.keys(e))),xn.subscribe((e=>Hn=e));const Pn={};function Mn(e){return Pn[e]}function On(e){return null!=e&&Wn(e).some((e=>{var t;return null===(t=Mn(e))||void 0===t?void 0:t.size}))}const Nn={};function Dn(e){if(!On(e))return e in Nn?Nn[e]:Promise.resolve();const t=function(e){return Wn(e).map((e=>{const t=Mn(e);return[e,t?[...t]:[]]})).filter((([,e])=>e.length>0))}(e);return Nn[e]=Promise.all(t.map((([e,t])=>function(e,t){const n=Promise.all(t.map((t=>(function(e,t){Pn[e].delete(t),0===Pn[e].size&&delete Pn[e]}(e,t),t().then((e=>e.default||e))))));return n.then((t=>$n(e,...t)))}(e,t)))).then((()=>{if(On(e))return Dn(e);delete Nn[e]})),Nn[e]}const kn={fallbackLocale:null,loadingDelay:200,formats:{number:{scientific:{notation:"scientific"},engineering:{notation:"engineering"},compactLong:{notation:"compact",compactDisplay:"long"},compactShort:{notation:"compact",compactDisplay:"short"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},warnOnMissingMessages:!0,handleMissingMessage:void 0,ignoreTag:!0};function Un(){return kn}const Gn=Ve(!1);let Fn;const jn=Ve(null);function Vn(e){return e.split("-").map(((e,t,n)=>n.slice(0,t+1).join("-"))).reverse()}function Wn(e,t=Un().fallbackLocale){const n=Vn(e);return t?[...new Set([...n,...Vn(t)])]:n}function Kn(){return null!=Fn?Fn:void 0}jn.subscribe((e=>{Fn=null!=e?e:void 0,"undefined"!=typeof window&&null!=e&&document.documentElement.setAttribute("lang",e)}));const Zn={...jn,set:e=>{if(e&&function(e){if(null==e)return;const t=Wn(e);for(let e=0;e<t.length;e++){const n=t[e];if(Rn(n))return n}}(e)&&On(e)){const{loadingDelay:t}=Un();let n;return"undefined"!=typeof window&&null!=Kn()&&t?n=window.setTimeout((()=>Gn.set(!0)),t):Gn.set(!0),Dn(e).then((()=>{jn.set(e)})).finally((()=>{clearTimeout(n),Gn.set(!1)}))}return jn.set(e)}},Xn=e=>{const t=Object.create(null);return n=>{const r=JSON.stringify(n);return r in t?t[r]:t[r]=e(n)}},zn=(e,t)=>{const{formats:n}=Un();if(e in n&&t in n[e])return n[e][t];throw new Error(`[svelte-i18n] Unknown "${t}" ${e} format.`)},Yn=Xn((({locale:e,format:t,...n})=>{if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return t&&(n=zn("number",t)),new Intl.NumberFormat(e,n)})),Jn=Xn((({locale:e,format:t,...n})=>{if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return t?n=zn("date",t):0===Object.keys(n).length&&(n=zn("date","short")),new Intl.DateTimeFormat(e,n)})),qn=Xn((({locale:e,format:t,...n})=>{if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return t?n=zn("time",t):0===Object.keys(n).length&&(n=zn("time","short")),new Intl.DateTimeFormat(e,n)})),Qn=Xn(((e,t=Kn())=>new Sn(e,t,Un().formats,{ignoreTag:Un().ignoreTag}))),er=(e,t={})=>{var n,r,o,i;let s=t;"object"==typeof e&&(s=e,e=s.id);const{values:a,locale:l=Kn(),default:c}=s;if(null==l)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let u=Ln(e,l);if(u){if("string"!=typeof u)return console.warn(`[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof u}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`),u}else u=null!==(i=null!==(o=null===(r=(n=Un()).handleMissingMessage)||void 0===r?void 0:r.call(n,{locale:l,id:e,defaultValue:c}))&&void 0!==o?o:c)&&void 0!==i?i:e;if(!a)return u;let h=u;try{h=Qn(u,l).format(a)}catch(t){t instanceof Error&&console.warn(`[svelte-i18n] Message "${e}" has syntax error:`,t.message)}return h},tr=(e,t)=>(({locale:e=Kn(),...t}={})=>qn({locale:e,...t}))(t).format(e),nr=(e,t)=>(({locale:e=Kn(),...t}={})=>Jn({locale:e,...t}))(t).format(e),rr=(e,t)=>(({locale:e=Kn(),...t}={})=>Yn({locale:e,...t}))(t).format(e),or=(e,t=Kn())=>Ln(e,t),ir=We([Zn,xn],(()=>er));We([Zn],(()=>tr)),We([Zn],(()=>nr)),We([Zn],(()=>rr)),We([Zn,xn],(()=>or));const sr=e=>{(({withLocale:e,translations:t})=>{Zn.subscribe((n=>{null==n&&(xn.set(t),Zn.set(e))}));// maybe we will need this to make sure that the i18n is set up only once
|
|
704
699
|
/*dictionary.set(translations);
|
|
705
|
-
locale.set(_locale);*/})({withLocale:"en",translations:{}}),Object.keys(e).forEach((t=>{var n,r;n=t,r=e[t]
|
|
706
|
-
/* ../casino-wagering-bonus/src/CasinoWageringBonus.svelte generated by Svelte v3.59.2
|
|
707
|
-
// (
|
|
708
|
-
function
|
|
709
|
-
// (
|
|
710
|
-
function
|
|
711
|
-
// (
|
|
712
|
-
function
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
// (
|
|
724
|
-
function
|
|
725
|
-
// (
|
|
726
|
-
function
|
|
727
|
-
// (
|
|
728
|
-
function
|
|
729
|
-
// (
|
|
730
|
-
function
|
|
731
|
-
// (
|
|
732
|
-
function
|
|
733
|
-
// (
|
|
734
|
-
function
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
// (
|
|
739
|
-
function
|
|
740
|
-
return e[
|
|
741
|
-
// (
|
|
742
|
-
function
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
700
|
+
locale.set(_locale);*/})({withLocale:"en",translations:{}}),Object.keys(e).forEach((t=>{var n,r;n=t,r=e[t],$n(n,r)}))},ar=", ",lr=["Info","InfoIcon","InfoText"],cr=e=>lr.map((t=>[t,ar,e.map((e=>e.key+t)).join(ar)].join(""))).join(ar)
|
|
701
|
+
/* ../casino-wagering-bonus/src/CasinoWageringBonus.svelte generated by Svelte v3.59.2 */;function ur(e,t,n){const r=e.slice();return r[31]=t[n],r[33]=n,r}function hr(e,t,n){const r=e.slice();return r[34]=t[n],r[36]=n,r}function pr(e,t,n){const r=e.slice();return r[37]=t[n],r}function fr(e,t,n){const r=e.slice();return r[40]=t[n],r}function dr(e,t,n){const r=e.slice();return r[43]=t[n],r}function gr(e,t,n){const r=e.slice();return r[43]=t[n],r}function mr(e,t,n){const r=e.slice();return r[48]=t[n],r}
|
|
702
|
+
// (147:0) {#if bonus}
|
|
703
|
+
function br(e){let n,r,o,i,s,a,l,c,u,m,v,E,w,T,C,S,A,L,H,x,R,I,$,P,M=/*bonus*/(e[0].name||/*bonus*/e[0].presentation?.name.content)+"",O=/*locale*/e[4]("rewards")+"",N=/*locale*/e[4]("includeBets")+"",D=[/*classWithPartMatchMobile*/e[12]("BonusInfoTitle")],k={};for(let e=0;e<D.length;e+=1)k=t(k,D[e]);let U=/*bonus*/e[0].status===fe.active&&yr(e),G=[/*classWithPartMatchMobile*/e[12]("BonusInfoWrapper")],F={};for(let e=0;e<G.length;e+=1)F=t(F,G[e]);let j=!/*bonus*/e[0].status&&vr(e),V=/*bonus*/e[0].status&&Er(e),W=[/*classWithPartMatchMobile*/e[12]("BonusInfo")],K={};for(let e=0;e<W.length;e+=1)K=t(K,W[e]);let X=[/*classWithPartMatchMobile*/e[12]("RewardsTopBarTitle")],z={};for(let e=0;e<X.length;e+=1)z=t(z,X[e]);let Y=/*bonus*/e[0].status&&Cr(e),J=[/*classWithPartMatchMobile*/e[12]("RewardsTopBar")],q={};for(let e=0;e<J.length;e+=1)q=t(q,J[e]);let Q=/*bonus*/e[0].status&&Sr(e),ee=!/*bonus*/e[0].status&&Rr(e),te=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevels")],ne={};for(let e=0;e<te.length;e+=1)ne=t(ne,te[e]);let re=[/*classWithPartMatchMobile*/e[12]("SupportsTitle")],oe={};for(let e=0;e<re.length;e+=1)oe=t(oe,re[e]);let ie=/*products*/e[11],se=[];for(let t=0;t<ie.length;t+=1)se[t]=Ur(ur(e,ie,t));let ae=/*products*/1===e[11].length&&Gr(),le=[/*classWithPartMatchMobile*/e[12]("SupportsList")],ce={};for(let e=0;e<le.length;e+=1)ce=t(ce,le[e]);let ue=[/*classWithPartMatchMobile*/e[12]("SupportsWrapper")],he={};for(let e=0;e<ue.length;e+=1)he=t(he,ue[e]);let pe=[/*classWithPartMatchMobile*/e[12]("BonusRewards")],de={};for(let e=0;e<pe.length;e+=1)de=t(de,pe[e]);let ge=[/*classWithPartMatchMobile*/e[12]("Root")],me={};for(let e=0;e<ge.length;e+=1)me=t(me,ge[e]);return{c(){n=g("section"),r=g("div"),o=g("section"),i=g("section"),s=b(M),a=y(),U&&U.c(),l=y(),j&&j.c(),c=y(),V&&V.c(),u=y(),m=g("div"),v=g("section"),E=g("div"),w=b(O),T=y(),Y&&Y.c(),C=y(),S=g("div"),Q&&Q.c(),A=y(),ee&&ee.c(),L=y(),H=g("div"),x=g("div"),R=b(N),I=y(),$=g("div");for(let e=0;e<se.length;e+=1)se[e].c();P=y(),ae&&ae.c(),B(i,k),B(o,F),B(r,K),B(E,z),B(v,q),B(S,ne),B(x,oe),B($,ce),B(H,he),B(m,de),B(n,me)},m(e,t){p(e,n,t),h(n,r),h(r,o),h(o,i),h(i,s),h(o,a),U&&U.m(o,null),h(r,l),j&&j.m(r,null),h(r,c),V&&V.m(r,null),h(n,u),h(n,m),h(m,v),h(v,E),h(E,w),h(v,T),Y&&Y.m(v,null),h(m,C),h(m,S),Q&&Q.m(S,null),h(S,A),ee&&ee.m(S,null),h(m,L),h(m,H),h(H,x),h(x,R),h(H,I),h(H,$);for(let e=0;e<se.length;e+=1)se[e]&&se[e].m($,null);h($,P),ae&&ae.m($,null)},p(e,t){if(/*bonus*/1&t[0]&&M!==(M=/*bonus*/(e[0].name||/*bonus*/e[0].presentation?.name.content)+"")&&_(s,M,k.contenteditable),B(i,k=Z(D,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusInfoTitle")])),/*bonus*/e[0].status===fe.active?U?U.p(e,t):(U=yr(e),U.c(),U.m(o,null)):U&&(U.d(1),U=null),B(o,F=Z(G,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusInfoWrapper")])),/*bonus*/e[0].status?j&&(j.d(1),j=null):j?j.p(e,t):(j=vr(e),j.c(),j.m(r,c)),/*bonus*/e[0].status?V?V.p(e,t):(V=Er(e),V.c(),V.m(r,null)):V&&(V.d(1),V=null),B(r,K=Z(W,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusInfo")])),/*locale*/16&t[0]&&O!==(O=/*locale*/e[4]("rewards")+"")&&_(w,O,z.contenteditable),B(E,z=Z(X,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("RewardsTopBarTitle")])),/*bonus*/e[0].status?Y?Y.p(e,t):(Y=Cr(e),Y.c(),Y.m(v,null)):Y&&(Y.d(1),Y=null),B(v,q=Z(J,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("RewardsTopBar")])),/*bonus*/e[0].status?Q?Q.p(e,t):(Q=Sr(e),Q.c(),Q.m(S,A)):Q&&(Q.d(1),Q=null),/*bonus*/e[0].status?ee&&(ee.d(1),ee=null):ee?ee.p(e,t):(ee=Rr(e),ee.c(),ee.m(S,null)),B(S,ne=Z(te,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevels")])),/*locale*/16&t[0]&&N!==(N=/*locale*/e[4]("includeBets")+"")&&_(R,N,oe.contenteditable),B(x,oe=Z(re,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("SupportsTitle")])),/*products*/2048&t[0]){let n;for(ie=/*products*/e[11],n=0;n<ie.length;n+=1){const r=ur(e,ie,n);se[n]?se[n].p(r,t):(se[n]=Ur(r),se[n].c(),se[n].m($,P))}for(;n<se.length;n+=1)se[n].d(1);se.length=ie.length}/*products*/1===e[11].length?ae||(ae=Gr(),ae.c(),ae.m($,null)):ae&&(ae.d(1),ae=null),B($,ce=Z(le,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("SupportsList")])),B(H,he=Z(ue,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("SupportsWrapper")])),B(m,de=Z(pe,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewards")])),B(n,me=Z(ge,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("Root")]))},d(e){e&&f(n),U&&U.d(),j&&j.d(),V&&V.d(),Y&&Y.d(),Q&&Q.d(),ee&&ee.d(),d(se,e),ae&&ae.d()}}}
|
|
704
|
+
// (155:8) {#if bonus.status === BonusStatus.active}
|
|
705
|
+
function yr(e){let n,r=[{infos:JSON.stringify(/*timeInfos*/e[8]),exportparts:cr(/*timeInfos*/e[8])}],o={};for(let e=0;e<r.length;e+=1)o=t(o,r[e]);return{c(){n=g("private-casino-wagering-bonus-info"),B(n,o)},m(e,t){p(e,n,t)},p(e,t){B(n,o=Z(r,[/*timeInfos*/256&t[0]&&{infos:JSON.stringify(/*timeInfos*/e[8]),exportparts:cr(/*timeInfos*/e[8])}]))},d(e){e&&f(n)}}}
|
|
706
|
+
// (164:6) {#if !bonus.status}
|
|
707
|
+
function vr(e){let n,r,o,i,s,a,l,c,u,d,m,v,T,C,S,L,H,x,R,I=/*bonus*/(e[0].description||"")+"",$=/*locale*/e[4]("startChallenge")+"",P=/*locale*/e[4]("terms")+"",M=[/*classWithPartMatchMobile*/e[12]("BonusInfoDescription")],O={};for(let e=0;e<M.length;e+=1)O=t(O,M[e]);let N=[{infos:JSON.stringify(/*statusClaimableInfos*/e[10]),exportparts:cr(/*statusClaimableInfos*/e[10])}],D={};for(let e=0;e<N.length;e+=1)D=t(D,N[e]);let k=[
|
|
708
|
+
/*classWithPartMatchMobile*/e[12]("StatusClaimableCommandButton"),{type:"button"},{disabled:v=!/*isButtonClickable*/e[6]}],U={};for(let e=0;e<k.length;e+=1)U=t(U,k[e]);let G=[/*classWithPartMatchMobile*/e[12]("StatusClaimableCommandTerms","terms")],F={};for(let e=0;e<G.length;e+=1)F=t(F,G[e]);let j=[/*classWithPartMatchMobile*/e[12]("StatusClaimableCommand")],V={};for(let e=0;e<j.length;e+=1)V=t(V,j[e]);let W=[/*classWithPartMatchMobile*/e[12]("StatusClaimable")],K={};for(let e=0;e<W.length;e+=1)K=t(K,W[e]);return{c(){n=g("div"),r=b(I),o=y(),i=g("hr"),s=y(),a=g("section"),l=g("private-casino-wagering-bonus-info"),c=y(),u=g("div"),d=g("button"),m=b($),T=y(),C=g("div"),S=g("a"),L=b(P),B(n,O),B(l,D),B(d,U),w(S,"href",H=/*bonus*/e[0].termsUrl),w(S,"target","__blank"),B(C,F),B(u,V),B(a,K)},m(t,f){p(t,n,f),h(n,r),p(t,o,f),p(t,i,f),p(t,s,f),p(t,a,f),h(a,l),h(a,c),h(a,u),h(u,d),h(d,m),d.autofocus&&d.focus(),h(u,T),h(u,C),h(C,S),h(S,L),x||(R=E(d,"click",/*eventStartChallenge*/e[13]),x=!0)},p(e,t){/*bonus*/1&t[0]&&I!==(I=/*bonus*/(e[0].description||"")+"")&&_(r,I,O.contenteditable),B(n,O=Z(M,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusInfoDescription")])),B(l,D=Z(N,[/*statusClaimableInfos*/1024&t[0]&&{infos:JSON.stringify(/*statusClaimableInfos*/e[10]),exportparts:cr(/*statusClaimableInfos*/e[10])}])),/*locale*/16&t[0]&&$!==($=/*locale*/e[4]("startChallenge")+"")&&_(m,$,U.contenteditable),B(d,U=Z(k,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("StatusClaimableCommandButton"),{type:"button"},/*isButtonClickable*/64&t[0]&&v!==(v=!/*isButtonClickable*/e[6])&&{disabled:v}])),/*locale*/16&t[0]&&P!==(P=/*locale*/e[4]("terms")+"")&&A(L,P),/*bonus*/1&t[0]&&H!==(H=/*bonus*/e[0].termsUrl)&&w(S,"href",H),B(C,F=Z(G,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("StatusClaimableCommandTerms","terms")])),B(u,V=Z(j,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("StatusClaimableCommand")])),B(a,K=Z(W,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("StatusClaimable")]))},d(e){e&&f(n),e&&f(o),e&&f(i),e&&f(s),e&&f(a),x=!1,R()}}}
|
|
709
|
+
// (199:6) {#if bonus.status}
|
|
710
|
+
function Er(e){let n,r,o,i,s,a,l,c,u,m,v,E,w,T,C,A,L,H,x,R=/*locale*/e[4]("level")+"",I=/*levelsCurrent*/e[2].textWithLength+"",$=/*locale*/e[4]("termsTip",{tcUrl:/*bonus*/e[0]?.url})+"",P=!/*isMobileView*/e[5]&&wr(),M=[/*classWithPartMatchMobile*/e[12]("LevelStatus")],O={};for(let e=0;e<M.length;e+=1)O=t(O,M[e]);let N=[/*classWithPartMatchMobile*/e[12]("LevelStatusWrapper")],D={};for(let e=0;e<N.length;e+=1)D=t(D,N[e]);let k=[Oe(/*bonus*/e[0],/*levels*/e[1])],U=[];for(let t=0;t<1;t+=1)U[t]=Br(mr(e,k,t));let G=[/*classWithPartMatchMobile*/e[12]("BonusType")],F={};for(let e=0;e<G.length;e+=1)F=t(F,G[e]);let j=[/*classWithPartMatchMobile*/e[12]("BonusTerms")],V={};for(let e=0;e<j.length;e+=1)V=t(V,j[e]);let W=[/*classWithPartMatchMobile*/e[12]("BonusTypeWrapper")],K={};for(let e=0;e<W.length;e+=1)K=t(K,W[e]);let X=[/*classWithPartMatchMobile*/e[12]("AfterClaimedWrapper")],z={};for(let e=0;e<X.length;e+=1)z=t(z,X[e]);return{c(){P&&P.c(),n=y(),r=g("section"),o=g("div"),i=g("casino-wagering-bonus-progress"),l=y(),c=g("div"),u=b(R),m=y(),v=b(I),E=y(),w=g("div"),T=g("div");for(let e=0;e<1;e+=1)U[e].c();C=y(),A=g("private-casino-wagering-bonus-info"),H=y(),x=g("div"),S(i,"percent",s=De(/*bonus*/e[0])),S(i,"status",a=/*bonus*/e[0]?.status),B(c,O),B(o,D),S(A,"infos",L=JSON.stringify(/*statusFinishedInfos*/e[9])),B(T,F),B(x,V),B(w,K),B(r,z)},m(e,t){P&&P.m(e,t),p(e,n,t),p(e,r,t),h(r,o),h(o,i),h(o,l),h(o,c),h(c,u),h(c,m),h(c,v),h(r,E),h(r,w),h(w,T);for(let e=0;e<1;e+=1)U[e]&&U[e].m(T,null);h(T,C),h(T,A),h(w,H),h(w,x),x.innerHTML=$},p(e,t){if(/*isMobileView*/e[5]?P&&(P.d(1),P=null):P||(P=wr(),P.c(),P.m(n.parentNode,n)),/*bonus*/1&t[0]&&s!==(s=De(/*bonus*/e[0]))&&S(i,"percent",s),/*bonus*/1&t[0]&&a!==(a=/*bonus*/e[0]?.status)&&S(i,"status",a),/*locale*/16&t[0]&&R!==(R=/*locale*/e[4]("level")+"")&&_(u,R,O.contenteditable),/*levelsCurrent*/4&t[0]&&I!==(I=/*levelsCurrent*/e[2].textWithLength+"")&&_(v,I,O.contenteditable),B(c,O=Z(M,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("LevelStatus")])),B(o,D=Z(N,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("LevelStatusWrapper")])),/*classWithPartMatchMobile, locale, bonus, levels*/4115&t[0]){let n;for(k=[Oe(/*bonus*/e[0],/*levels*/e[1])],n=0;n<1;n+=1){const r=mr(e,k,n);U[n]?U[n].p(r,t):(U[n]=Br(r),U[n].c(),U[n].m(T,C))}for(;n<1;n+=1)U[n].d(1)}/*statusFinishedInfos*/512&t[0]&&L!==(L=JSON.stringify(/*statusFinishedInfos*/e[9]))&&S(A,"infos",L),B(T,F=Z(G,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusType")])),/*locale, bonus*/17&t[0]&&$!==($=/*locale*/e[4]("termsTip",{tcUrl:/*bonus*/e[0]?.url})+"")&&(x.innerHTML=$),B(x,V=Z(j,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusTerms")])),B(w,K=Z(W,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusTypeWrapper")])),B(r,z=Z(X,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("AfterClaimedWrapper")]))},d(e){P&&P.d(e),e&&f(n),e&&f(r),d(U,e)}}}
|
|
711
|
+
// (201:8) {#if !isMobileView}
|
|
712
|
+
function wr(e){let t;return{c(){t=g("hr")},m(e,n){p(e,t,n)},d(e){e&&f(t)}}}
|
|
713
|
+
// (234:14) {#if bonus.status === BonusStatus.active}
|
|
714
|
+
function Tr(e){let n,r,o,i,s,a=/*locale*/e[4](`${/*bonus*/e[0].wageringType}.remaining`/*bonusInfo*/,e[48])+"",l=/*locale*/e[4](`${/*bonus*/e[0].wageringType}.wagered`,{.../*bonusInfo*/e[48],wagered:Ne(/*bonus*/e[0])})+"",c=[/*classWithPartMatchMobile*/e[12]("BonusTypeRemaining")],u={};for(let e=0;e<c.length;e+=1)u=t(u,c[e]);let d=[/*classWithPartMatchMobile*/e[12]("BonusTypeGot")],m={};for(let e=0;e<d.length;e+=1)m=t(m,d[e]);return{c(){n=g("div"),r=b(a),o=y(),i=g("div"),s=b(l),B(n,u),B(i,m)},m(e,t){p(e,n,t),h(n,r),p(e,o,t),p(e,i,t),h(i,s)},p(e,t){/*locale, bonus, levels*/19&t[0]&&a!==(a=/*locale*/e[4](`${/*bonus*/e[0].wageringType}.remaining`/*bonusInfo*/,e[48])+"")&&_(r,a,u.contenteditable),B(n,u=Z(c,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusTypeRemaining")])),/*locale, bonus, levels*/19&t[0]&&l!==(l=/*locale*/e[4](`${/*bonus*/e[0].wageringType}.wagered`,{.../*bonusInfo*/e[48],wagered:Ne(/*bonus*/e[0])})+"")&&_(s,l,m.contenteditable),B(i,m=Z(d,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusTypeGot")]))},d(e){e&&f(n),e&&f(o),e&&f(i)}}}
|
|
715
|
+
// (222:12) {#each [getBonusInfoData(bonus, levels)] as bonusInfo}
|
|
716
|
+
function Br(e){let n,r,o,i,s=He(/*bonus*/e[0].status,{active:a,other:/*func_1*/e[24]})+"";function a(){/*func*/
|
|
717
|
+
return e[23](/*bonusInfo*/e[48])}let l=[/*classWithPartMatchMobile*/e[12]("BonusTypeTarget")],c={};for(let e=0;e<l.length;e+=1)c=t(c,l[e]);let u=/*bonus*/e[0].status===fe.active&&Tr(e);return{c(){n=g("div"),r=b(s),o=y(),u&&u.c(),i=v(),B(n,c)},m(e,t){p(e,n,t),h(n,r),p(e,o,t),u&&u.m(e,t),p(e,i,t)},p(t,o){e=t,/*bonus, levels, locale*/19&o[0]&&s!==(s=He(/*bonus*/e[0].status,{active:a,other:/*func_1*/e[24]})+"")&&_(r,s,c.contenteditable),B(n,c=Z(l,[/*classWithPartMatchMobile*/4096&o[0]&&/*classWithPartMatchMobile*/e[12]("BonusTypeTarget")])),/*bonus*/e[0].status===fe.active?u?u.p(e,o):(u=Tr(e),u.c(),u.m(i.parentNode,i)):u&&(u.d(1),u=null)},d(e){e&&f(n),e&&f(o),u&&u.d(e),e&&f(i)}}}
|
|
718
|
+
// (265:8) {#if bonus.status}
|
|
719
|
+
function Cr(e){let n,r,o,i,s,a=/*locale*/e[4]("allRewards")+"",l=[/*classWithPartMatchMobile*/e[12]("RewardsTopBarLinkToDetail")],c={};for(let e=0;e<l.length;e+=1)c=t(c,l[e]);return{c(){n=g("div"),r=g("a"),o=b(a),w(r,"href","javascript:void(0)"),B(n,c)},m(t,a){p(t,n,a),h(n,r),h(r,o),i||(s=E(r,"click",/*click_handler*/e[25]),i=!0)},p(e,t){/*locale*/16&t[0]&&a!==(a=/*locale*/e[4]("allRewards")+"")&&A(o,a),B(n,c=Z(l,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("RewardsTopBarLinkToDetail")]))},d(e){e&&f(n),i=!1,s()}}}
|
|
720
|
+
// (283:8) {#if bonus.status}
|
|
721
|
+
function Sr(e){let t,n=Me(/*bonus*/e[0],/*levels*/e[1],/*locale*/e[4]),r=[];for(let t=0;t<n.length;t+=1)r[t]=xr(fr(e,n,t));return{c(){for(let e=0;e<r.length;e+=1)r[e].c();t=v()},m(e,n){for(let t=0;t<r.length;t+=1)r[t]&&r[t].m(e,n);p(e,t,n)},p(e,o){if(/*classWithPartMatchMobile, bonus, levels, locale*/4115&o[0]){let i;for(n=Me(/*bonus*/e[0],/*levels*/e[1],/*locale*/e[4]),i=0;i<n.length;i+=1){const s=fr(e,n,i);r[i]?r[i].p(s,o):(r[i]=xr(s),r[i].c(),r[i].m(t.parentNode,t))}for(;i<r.length;i+=1)r[i].d(1);r.length=n.length}},d(e){d(r,e),e&&f(t)}}}
|
|
722
|
+
// (296:12) {:else}
|
|
723
|
+
function Ar(e){let n,r,o,i,s,a=/*locale*/e[4](/*reward*/e[40].key)+"",l=/*locale*/e[4]("level")+"",c=/*reward*/e[40].descriptions,u=[];for(let t=0;t<c.length;t+=1)u[t]=Lr(dr(e,c,t));let m=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItemPosition")],v={};for(let e=0;e<m.length;e+=1)v=t(v,m[e]);return{c(){n=g("div"),r=b(a),o=y(),i=b(l),s=b(":\n ");for(let e=0;e<u.length;e+=1)u[e].c();B(n,v)},m(e,t){p(e,n,t),h(n,r),h(n,o),h(n,i),h(n,s);for(let e=0;e<u.length;e+=1)u[e]&&u[e].m(n,null)},p(e,t){if(/*locale, bonus, levels*/19&t[0]&&a!==(a=/*locale*/e[4](/*reward*/e[40].key)+"")&&_(r,a,v.contenteditable),/*locale*/16&t[0]&&l!==(l=/*locale*/e[4]("level")+"")&&_(i,l,v.contenteditable),/*bonus, levels, locale*/19&t[0]){let r;for(c=/*reward*/e[40].descriptions,r=0;r<c.length;r+=1){const o=dr(e,c,r);u[r]?u[r].p(o,t):(u[r]=Lr(o),u[r].c(),u[r].m(n,null))}for(;r<u.length;r+=1)u[r].d(1);u.length=c.length}B(n,v=Z(m,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItemPosition")]))},d(e){e&&f(n),d(u,e)}}}
|
|
724
|
+
// (287:12) {#if reward.descriptions.length > 1}
|
|
725
|
+
function _r(e){let n,r,o,i,s,a,l,c=/*locale*/e[4](/*reward*/e[40].key)+"",u=/*locale*/e[4]("level")+"",m=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItemPosition")],v={};for(let e=0;e<m.length;e+=1)v=t(v,m[e]);let E=/*reward*/e[40].descriptions,w=[];for(let t=0;t<E.length;t+=1)w[t]=Hr(gr(e,E,t));return{c(){n=g("div"),r=b(c),o=y(),i=b(u),s=b(":"),a=y(),l=g("div");for(let e=0;e<w.length;e+=1)w[e].c();B(n,v)},m(e,t){p(e,n,t),h(n,r),h(n,o),h(n,i),h(n,s),p(e,a,t),p(e,l,t);for(let e=0;e<w.length;e+=1)w[e]&&w[e].m(l,null)},p(e,t){if(/*locale, bonus, levels*/19&t[0]&&c!==(c=/*locale*/e[4](/*reward*/e[40].key)+"")&&_(r,c,v.contenteditable),/*locale*/16&t[0]&&u!==(u=/*locale*/e[4]("level")+"")&&_(i,u,v.contenteditable),B(n,v=Z(m,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItemPosition")])),/*bonus, levels, locale*/19&t[0]){let n;for(E=/*reward*/e[40].descriptions,n=0;n<E.length;n+=1){const r=gr(e,E,n);w[n]?w[n].p(r,t):(w[n]=Hr(r),w[n].c(),w[n].m(l,null))}for(;n<w.length;n+=1)w[n].d(1);w.length=E.length}},d(e){e&&f(n),e&&f(a),e&&f(l),d(w,e)}}}
|
|
726
|
+
// (299:16) {#each reward.descriptions as description}
|
|
727
|
+
function Lr(e){let t,n=/*description*/e[43]+"";return{c(){t=b(n)},m(e,n){p(e,t,n)},p(e,r){/*bonus, levels, locale*/19&r[0]&&n!==(n=/*description*/e[43]+"")&&A(t,n)},d(e){e&&f(t)}}}
|
|
728
|
+
// (292:16) {#each reward.descriptions as description}
|
|
729
|
+
function Hr(e){let t,n,r=/*description*/e[43]+"";return{c(){t=g("p"),n=b(r)},m(e,r){p(e,t,r),h(t,n)},p(e,t){/*bonus, levels, locale*/19&t[0]&&r!==(r=/*description*/e[43]+"")&&A(n,r)},d(e){e&&f(t)}}}
|
|
730
|
+
// (284:10) {#each (getRewards(bonus, levels, locale)) as reward}
|
|
731
|
+
function xr(e){let n,r;function o(e,t){/*reward*/
|
|
732
|
+
return e[40].descriptions.length>1?_r:Ar}let i=o(e),s=i(e),a=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItem")],l={};for(let e=0;e<a.length;e+=1)l=t(l,a[e]);return{c(){n=g("div"),s.c(),r=y(),B(n,l)},m(e,t){p(e,n,t),s.m(n,null),h(n,r)},p(e,t){i===(i=o(e))&&s?s.p(e,t):(s.d(1),s=i(e),s&&(s.c(),s.m(n,r))),B(n,l=Z(a,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItem")]))},d(e){e&&f(n),s.d()}}}
|
|
733
|
+
// (309:8) {#if !bonus.status}
|
|
734
|
+
function Rr(e){let t,n,r,o=/*bonus*/e[0].levels,i=[];for(let t=0;t<o.length;t+=1)i[t]=Or(hr(e,o,t));let s=/*bonus*/1===e[0].levels.length&&Nr(e);function a(e,t){/*bonus*/
|
|
735
|
+
return e[0].levels.length>=3?kr:Dr}let l=a(e),c=l(e);return{c(){for(let e=0;e<i.length;e+=1)i[e].c();t=y(),s&&s.c(),n=y(),c.c(),r=v()},m(e,o){for(let t=0;t<i.length;t+=1)i[t]&&i[t].m(e,o);p(e,t,o),s&&s.m(e,o),p(e,n,o),c.m(e,o),p(e,r,o)},p(e,u){if(/*classWithPartMatchMobile, bonus, locale, isShowMore*/4241&u[0]){let n;for(o=/*bonus*/e[0].levels,n=0;n<o.length;n+=1){const r=hr(e,o,n);i[n]?i[n].p(r,u):(i[n]=Or(r),i[n].c(),i[n].m(t.parentNode,t))}for(;n<i.length;n+=1)i[n].d(1);i.length=o.length}/*bonus*/1===e[0].levels.length?s?s.p(e,u):(s=Nr(e),s.c(),s.m(n.parentNode,n)):s&&(s.d(1),s=null),l===(l=a(e))&&c?c.p(e,u):(c.d(1),c=l(e),c&&(c.c(),c.m(r.parentNode,r)))},d(e){d(i,e),e&&f(t),s&&s.d(e),e&&f(n),c.d(e),e&&f(r)}}}
|
|
736
|
+
// (312:12) {#if isShowMore ? true : index < 2}
|
|
737
|
+
function Ir(e){let n,r,o,i,s;function a(e,t){/*level*/
|
|
738
|
+
return e[34].maxRepeats>0?Pr:$r}let l=a(e),c=l(e),u=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItemPosition")],m={};for(let e=0;e<u.length;e+=1)m=t(m,u[e]);let b=/*level*/e[34].bonuses,v=[];for(let t=0;t<b.length;t+=1)v[t]=Mr(pr(e,b,t));let E=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItem")],w={};for(let e=0;e<E.length;e+=1)w=t(w,E[e]);return{c(){n=g("div"),r=g("div"),c.c(),o=y(),i=g("div");for(let e=0;e<v.length;e+=1)v[e].c();s=y(),B(r,m),B(n,w)},m(e,t){p(e,n,t),h(n,r),c.m(r,null),h(n,o),h(n,i);for(let e=0;e<v.length;e+=1)v[e]&&v[e].m(i,null);h(n,s)},p(e,t){if(l===(l=a(e))&&c?c.p(e,t):(c.d(1),c=l(e),c&&(c.c(),c.m(r,null))),B(r,m=Z(u,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItemPosition")])),/*bonus, locale*/17&t[0]){let n;for(b=/*level*/e[34].bonuses,n=0;n<b.length;n+=1){const r=pr(e,b,n);v[n]?v[n].p(r,t):(v[n]=Mr(r),v[n].c(),v[n].m(i,null))}for(;n<v.length;n+=1)v[n].d(1);v.length=b.length}B(n,w=Z(E,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItem")]))},d(e){e&&f(n),c.d(),d(v,e)}}}
|
|
739
|
+
// (318:16) {:else}
|
|
740
|
+
function $r(e){let t,n,r=/*locale*/e[4]("eachLevel")+"";return{c(){t=b(r),n=b(":")},m(e,r){p(e,t,r),p(e,n,r)},p(e,n){/*locale*/16&n[0]&&r!==(r=/*locale*/e[4]("eachLevel")+"")&&A(t,r)},d(e){e&&f(t),e&&f(n)}}}
|
|
741
|
+
// (316:16) {#if level.maxRepeats > 0}
|
|
742
|
+
function Pr(e){let t,n,r=`${/*locale*/e[4]("level")} ${Fe(/*index*/e[36],/*level*/e[34],/*bonus*/e[0])}`;return{c(){t=b(r),n=b(":")},m(e,r){p(e,t,r),p(e,n,r)},p(e,n){/*locale, bonus*/17&n[0]&&r!==(r=`${/*locale*/e[4]("level")} ${Fe(/*index*/e[36],/*level*/e[34],/*bonus*/e[0])}`)&&A(t,r)},d(e){e&&f(t),e&&f(n)}}}
|
|
743
|
+
// (324:16) {#each level.bonuses as levelBonus}
|
|
744
|
+
function Mr(e){let t,n,r=Pe(/*level*/e[34],/*levelBonus*/e[37],/*locale*/e[4])+"";return{c(){t=g("p"),n=b(r)},m(e,r){p(e,t,r),h(t,n)},p(e,t){/*bonus, locale*/17&t[0]&&r!==(r=Pe(/*level*/e[34],/*levelBonus*/e[37],/*locale*/e[4])+"")&&A(n,r)},d(e){e&&f(t)}}}
|
|
745
|
+
// (310:10) {#each bonus.levels as level, index}
|
|
746
|
+
function Or(e){let t,n=/*isShowMore*/(!!e[7]||/*index*/e[36]<2)&&Ir(e);return{c(){n&&n.c(),t=v()},m(e,r){n&&n.m(e,r),p(e,t,r)},p(e,r){/*isShowMore*/e[7]||/*index*/e[36]<2?n?n.p(e,r):(n=Ir(e),n.c(),n.m(t.parentNode,t)):n&&(n.d(1),n=null)},d(e){n&&n.d(e),e&&f(t)}}}
|
|
747
|
+
// (334:10) {#if bonus.levels.length === 1}
|
|
748
|
+
function Nr(e){let n,r,o=[/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItem")],i={};for(let e=0;e<o.length;e+=1)i=t(i,o[e]);return{c(){n=g("div"),r=g("p"),r.textContent=" ",B(n,i)},m(e,t){p(e,n,t),h(n,r)},p(e,t){B(n,i=Z(o,[/*classWithPartMatchMobile*/4096&t[0]&&/*classWithPartMatchMobile*/e[12]("BonusRewardsLevelsItem")]))},d(e){e&&f(n)}}}
|
|
749
|
+
// (344:10) {:else}
|
|
750
|
+
function Dr(t){let n;return{c(){n=g("div"),n.textContent=" ",w(n,"class","ShowMore NoCursorTip")},m(e,t){p(e,n,t)},p:e,d(e){e&&f(n)}}}
|
|
751
|
+
// (340:10) {#if bonus.levels.length >= 3}
|
|
752
|
+
function kr(e){let t,n,r,o,i=(/*isShowMore*/e[7]?/*locale*/e[4]("collapse"):/*locale*/e[4]("showMore"))+"";return{c(){t=g("div"),n=b(i),w(t,"class","ShowMore")},m(i,s){p(i,t,s),h(t,n),r||(o=E(t,"click",/*click_handler_1*/e[26]),r=!0)},p(e,t){/*isShowMore, locale*/144&t[0]&&i!==(i=(/*isShowMore*/e[7]?/*locale*/e[4]("collapse"):/*locale*/e[4]("showMore"))+"")&&A(n,i)},d(e){e&&f(t),r=!1,o()}}}
|
|
753
|
+
// (356:10) {#each products as support, i}
|
|
754
|
+
function Ur(e){let t,n,r,o,i,s,a=/*support*/e[31]+"";function l(){/*click_handler_2*/
|
|
755
|
+
return e[27](/*support*/e[31])}return{c(){t=g("div"),n=g("a"),r=b(a),o=y(),w(n,"href","javascript:void(0)")},m(e,a){p(e,t,a),h(t,n),h(n,r),h(t,o),i||(s=E(n,"click",l),i=!0)},p(t,n){e=t,/*products*/2048&n[0]&&a!==(a=/*support*/e[31]+"")&&A(r,a)},d(e){e&&f(t),i=!1,s()}}}
|
|
756
|
+
// (371:10) {#if products.length === 1}
|
|
757
|
+
function Gr(e){let t;return{c(){t=g("div"),t.textContent=" "},m(e,n){p(e,t,n)},d(e){e&&f(t)}}}function Fr(t){let n,r,o;G(/*onwindowresize*/t[22]);let i=/*bonus*/t[0]&&br(t);return{c(){i&&i.c(),n=v(),this.c=e},m(e,s){i&&i.m(e,s),p(e,n,s),r||(o=E(window,"resize",/*onwindowresize*/t[22]),r=!0)},p(e,t){/*bonus*/e[0]?i?i.p(e,t):(i=br(e),i.c(),i.m(n.parentNode,n)):i&&(i.d(1),i=null)},i:e,o:e,d(e){i&&i.d(e),e&&f(n),r=!1,o()}}}function jr(e,t,n){let r,o,i,s,a,l,u,h;c(e,ir,(e=>n(21,h=e)));let p,f,d,{rawbonus:g=""}=t,{endpoint:m=""}=t,{currency:b="EUR"}=t,{lang:y=be.en}=t,{session:v=""}=t,E=[],w="",T=!0,B=3e4,C=!1;const S=()=>{try{n(0,p=Object.assign({},JSON.parse(g)))}catch(e){console.error(e)}p&&(n(1,E=(e=>{const t=[];return e.map((e=>{const{maxRepeats:n,completedTime:r}=e,o=ve(e,["maxRepeats","completedTime"]);if(n>0)for(let e=0;e<n;e++)t.push(Object.assign({},o));else t.push(Object.assign({},o))})),t})(p.levels)),A())},A=()=>{p&&(Ue(p.expiryDate,B,(()=>n(19,d="Expired")),(e=>n(19,d=e))),Ue(p.endTime||p.trigger.endTime,B,(()=>n(20,w="Ended")),(e=>n(20,w=e))))};let _;P((()=>{const e=setInterval((()=>{A()}),B);return()=>{clearInterval(e)}})),Ce({OnWageringBonusButtonStateChanged:e=>n(6,T=e.clickable)});return e.$$set=e=>{"rawbonus"in e&&n(14,g=e.rawbonus),"endpoint"in e&&n(15,m=e.endpoint),"currency"in e&&n(16,b=e.currency),"lang"in e&&n(17,y=e.lang),"session"in e&&n(18,v=e.session)},e.$$.update=()=>{var t;/*rawbonus*/16384&e.$$.dirty[0]&&g&&S(),/*lang*/131072&e.$$.dirty[0]&&y&&(t=y,Zn.set(t)),/*innerWidth*/8&e.$$.dirty[0]&&n(5,r=_<=648),/*isMobileView*/32&e.$$.dirty[0]&&n(12,o=(e,t="")=>re(`${e}${r?` ${e}Mobile`:""}`,t)),/*bonus, levels*/3&e.$$.dirty[0]&&n(2,f=(null==p?void 0:p.bonusWalletID)&&((e,t)=>{const n=ke(e,"∞",t.length);return xe(e.status,{completed:()=>({text:t.length,textWithLength:`${t.length}/${t.length}`}),current:()=>{if(!e.wageringProgress)return{current:"0",textWithLength:`0/${n}`};const{currentLevel:t}=e.wageringProgress;return{text:t,textWithLength:`${t}/${n}`}}})})(p,E)),/*bonus*/1&e.$$.dirty[0]&&n(11,i=p?p.status?p.products||[]:p.wallet?Object.keys(p.wallet).filter((e=>["sports","casino"].includes(e))):[]:[]),/*$_*/2097152&e.$$.dirty[0]&&n(4,u=(e,t={})=>h("wageringBonuses."+e,{values:t})),/*bonus, locale, levels, endTime*/1048595&e.$$.dirty[0]&&n(10,s=p&&!p.status?[{key:"Levels",svg:ue,text:ke(p,`${u("infinite")} ${u("levels")}`,`${E.length} ${E.length>1?u("levels"):u("level")}`)},{key:"Period",svg:ce,text:w}]:[]),/*bonus, levelsCurrent*/5&e.$$.dirty[0]&&n(9,a=(()=>{const e=[fe.completed,fe.released].includes(null==p?void 0:p.status);return p&&e?[{key:"Status",svg:ce,text:"Completed"},{key:"Levels",svg:ue,text:`Levels finished: ${f.textWithLength}`}]:[]})()),/*expiryTime*/524288&e.$$.dirty[0]&&n(8,l=[{key:"ExpiryTime",svg:"data:image/svg+xml,%3csvg width='26' height='25' viewBox='0 0 26 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_3490_603)'%3e%3cpath d='M12.502 0C5.60958 0 0.00195312 5.60762 0.00195312 12.5C0.00195312 19.3924 5.60958 25 12.502 25C19.3943 25 25.002 19.3924 25.002 12.5C25.002 5.60762 19.3943 0 12.502 0ZM12.502 23.4375C6.47091 23.4375 1.56446 18.531 1.56446 12.5C1.56446 6.46896 6.47091 1.56251 12.502 1.56251C18.533 1.56251 23.4394 6.46896 23.4394 12.5C23.4394 18.531 18.533 23.4375 12.502 23.4375Z' fill='black'/%3e%3cpath d='M13.2832 4.6875H11.7207V12.8235L16.6371 17.7398L17.7418 16.6351L13.2832 12.1765V4.6875Z' fill='black'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_3490_603'%3e%3crect width='25' height='25' fill='white' transform='translate(0.00195312)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e",text:d}]),/*expiryTime, bonus*/524289&e.$$.dirty[0]&&d&&p.status===fe.active&&["Expired","Ended"].includes(d)&&setTimeout((()=>Be({type:"OnWageringBonusExpired"})),5e3)},[p,E,f,_,u,r,T,C,l,a,s,i,o,async()=>{if(!v)return;Be({type:"OnWageringBonusJoinRequest",bonusID:p.bonusID}),Be({type:"OnWageringBonusButtonStateChanged",clickable:!1});(await Ie(new AbortController,m,v,p.code,b)).success&&Be({type:"OnWageringBonusClaimed"}),Be({type:"OnWageringBonusButtonStateChanged",clickable:!0})},g,m,b,y,v,d,w,h,function(){n(3,_=window.innerWidth)},e=>{const{maxContribution:t="undefined",minStake:n="undefined"}=e.levelInfo,r={...e,maxContribution:t,minStake:n};return u(`${p.wageringType}.target`,r)},()=>u("targetOther",{status:p.status}),()=>Be({type:"OnWageringBonusAllRewardsClick",bonusWalletID:p.id}),()=>n(7,C=!C),e=>Be({type:"OnWageringBonusSupportClicked",support:e})]}var Vr,Wr;
|
|
758
|
+
/* ../general-animation-loading/src/GeneralAnimationLoading.svelte generated by Svelte v3.59.2 */
|
|
759
|
+
function Kr(t){let n;return{c(){n=g("section"),n.innerHTML='<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>',this.c=e,w(n,"class","LoaderContainer"),w(n,"part","LoaderContainer")},m(e,t){p(e,n,t)},p:e,i:e,o:e,d(e){e&&f(n)}}}Vr="casino-wagering-bonus",Wr=class extends J{constructor(e){super();const t=document.createElement("style");t.textContent=':host{font-family:system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-family:"Roboto";font-style:normal}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}private-casino-wagering-bonus-info::part(ExpiryTimeInfo){margin:0}private-casino-wagering-bonus-info::part(ExpiryTimeInfoText){color:#DC0D1F}hr{margin:11.0175975516px 0;border-top:1px solid #00AEEF}.BonusTerms{font-size:11.0175975516px;line-height:12.8538638103px;max-width:180px}.BonusTermsMobile{font-size:3.0769230769vw;line-height:3.6051282051vw;max-width:unset}.ShowMore{cursor:pointer;color:#00AEEF;text-align:right}.ShowMore.NoCursorTip{cursor:unset}.Root{display:flex;flex-direction:row;justify-content:space-between;width:648px;border:1px solid #00AEEF;padding:17.1384850803px 0;font-size:14.6901300689px;line-height:17.1384850803px}.Root>div{width:100%}.RootMobile{font-size:4.1025641026vw;line-height:4.8076923077vw;font-weight:400;width:inherit;flex-direction:column;padding:3.5897435897vw 0.7692307692vw;border-radius:1.0256410256vw}.BonusInfo{padding:0 17.1384850803px}.BonusInfoMobile{padding:0 6px}.BonusInfoWrapper,.AfterClaimedWrapper,.RewardsTopBar,.StatusClaimable{display:flex;flex-direction:row;justify-content:space-between}.BonusTypeTarget{max-width:180px;font-weight:400;padding:6.1208875287px 0;font-weight:700}.BonusTypeTargetMobile{max-width:unset}.SupportsTitle{font-weight:700}.BonusInfoWrapperMobile{margin-bottom:3.0769230769vw}.BonusInfoMobile{padding-bottom:4.6153846154vw}.BonusRewards{padding:0 17.1384850803px;border-left:1px solid #00AEEF}.BonusRewardsMobile{border-left:none;border-top:1px solid #00AEEF;padding-top:4.6153846154vw}.BonusInfoTitle{font-weight:700;color:#59CA00}.BonusInfoDescription{margin-top:12.2417750574px}.StatusClaimableCommand{margin-left:18.3626625861px}.StatusClaimableCommandMobile{margin-left:0}.StatusClaimableCommandButton{background:#00AEEF;border:1px solid #00AEEF;color:#FFFFFF;cursor:pointer;transition:0.6s;transition-property:opacity;font-size:12.2417750574px;line-height:14.7697016067px;font-weight:400;padding:14.6901300689px}.StatusClaimableCommandButton:disabled{opacity:0.3}.StatusClaimableCommandButtonMobile{font-size:4.1025641026vw;line-height:4.8076923077vw;font-weight:700;padding:4.6153846154vw 5.8974358974vw}.StatusClaimableCommandTerms{font-size:11px;font-weight:400;margin-top:6.1208875287px;text-align:center}.StatusClaimableCommandTerms a{color:#000000}.StatusClaimableCommandTermsMobile{margin:2.0512820513vw 0;font-size:3.0769230769vw;line-height:3.6051282051vw}.LevelStatus{text-align:center;margin-top:6.1208875287px}.BonusTypeWrapper{margin-left:18.3626625861px}.BonusTypeRemaining{font-weight:400;padding:6.1208875287px 0;color:#00AEEF}.BonusTypeTargetMobile,.BonusTypeRemainingMobile{padding:2.0512820513vw 0}.BonusTypeGot{font-weight:400;padding:6.1208875287px 0;color:#7884A0}.BonusTypeGotMobile{padding:2.0512820513vw 0}.RewardsTopBarTitle{font-weight:700;color:#252631}.BonusRewardsLevels{margin-top:3.0604437643px}.BonusRewardsLevelsMobile{margin-top:3.0769230769vw}.BonusRewardsLevelsItem{display:flex;margin-bottom:3.0604437643px;padding:7.3450650344px 0}.BonusRewardsLevelsItemMobile{margin-bottom:1.2820512821vw;padding:0}.BonusRewardsLevelsItemPosition{margin-right:3.0604437643px}.SupportsWrapper{margin-top:21.4231063504px}.SupportsWrapper div{margin-top:9.181331293px}.SupportsWrapperMobile{margin-top:6.1538461538vw}.SupportsWrapperMobile div{margin-top:2.0512820513vw}',this.shadowRoot.appendChild(t),Y(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},jr,Fr,s,{rawbonus:14,endpoint:15,currency:16,lang:17,session:18},null,[-1,-1]),e&&(e.target&&p(e.target,this,e.anchor),e.props&&(this.$set(e.props),V()))}static get observedAttributes(){return["rawbonus","endpoint","currency","lang","session"]}get rawbonus(){return this.$$.ctx[14]}set rawbonus(e){this.$$set({rawbonus:e}),V()}get endpoint(){return this.$$.ctx[15]}set endpoint(e){this.$$set({endpoint:e}),V()}get currency(){return this.$$.ctx[16]}set currency(e){this.$$set({currency:e}),V()}get lang(){return this.$$.ctx[17]}set lang(e){this.$$set({lang:e}),V()}get session(){return this.$$.ctx[18]}set session(e){this.$$set({session:e}),V()}},!customElements.get(Vr)&&customElements.define(Vr,Wr);!customElements.get("general-animation-loading")&&customElements.define("general-animation-loading",class extends J{constructor(e){super();const t=document.createElement("style");t.textContent=".LoaderContainer{display:flex;justify-content:center}.lds-ellipsis{display:inline-block;position:relative;width:80px;height:80px}.lds-ellipsis div{position:absolute;top:33px;width:13px;height:13px;border-radius:50%;background:#d1d1d1;animation-timing-function:cubic-bezier(0, 1, 1, 0)}.lds-ellipsis div:nth-child(1){left:8px;animation:lds-ellipsis1 0.6s infinite}.lds-ellipsis div:nth-child(2){left:8px;animation:lds-ellipsis2 0.6s infinite}.lds-ellipsis div:nth-child(3){left:32px;animation:lds-ellipsis2 0.6s infinite}.lds-ellipsis div:nth-child(4){left:56px;animation:lds-ellipsis3 0.6s infinite}@keyframes lds-ellipsis1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes lds-ellipsis3{0%{transform:scale(1)}100%{transform:scale(0)}}@keyframes lds-ellipsis2{0%{transform:translate(0, 0)}100%{transform:translate(24px, 0)}}",this.shadowRoot.appendChild(t),Y(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},null,Kr,s,{},null),e&&e.target&&p(e.target,this,e.anchor)}});const Zr={en:{wageringBonuses:{wageringBonus:"Wagering Bonus",levels:"Levels",level:"Level",eachLevel:"Each Level",infinite:"Infinite",current:"Current",next:"Next",first:"First",last:"Last",previous:"Previous",startChallenge:"START CHALLENGE",terms:"Terms and Conditions",termsTip:'\n Learn more about the challenge rules and included games or events in\n <a target="__blank" href={tcUrl} >\n Terms and Conditions\n </a>\n section\n ',rewards:"Rewards",allRewards:"All Rewards",includeBets:"Include bets",showMore:"Show More",collapse:"Collapse",
|
|
760
|
+
// BonusStatusFilterType
|
|
761
|
+
claimable:"Claimable",active:"Active",completed:"Completed",
|
|
762
|
+
// BonusDetailStatus
|
|
763
|
+
locked:"Locked",inProgress:"InProgress",noBonuses:"No wagering bonuses found",status:"Status",
|
|
764
|
+
target:"Target",targetOther:"This bonus is {status}",money:{target:"Play for {currencySymbol}{currentLevelIncrement} in total",remaining:"Remaining: {currencySymbol}{gap}",wagered:"Wagered: {currencySymbol}{wagered}"},betCount:{target:"Place {currentLevelIncrement}/{maxContribution} bets of at least {minStake} each",remaining:"Bets Remaining: {gap} bets",wagered:"Bets Placed: {wagered} bets"},
|
|
765
|
+
reward:{cashBack:"Enroll to Cash Back",tournamentTicket:"Enroll to Tournament Ticket",oddsBoost:"Enroll to Odds Boost",freeRound:"{freespinNumber} Free Spins",
|
|
766
|
+
// mode
|
|
767
|
+
percentage:"{bonusAmount}% up to {currency}{capAmount}",fixed:"{currency}{bonusAmount}",
|
|
768
|
+
// text
|
|
769
|
+
standard:"Bonus Money",freeBet:"Free Bet"},forwardCasino:"See included casino games",forwardSports:"See included sports",forwardMyWageringBonuses:"See My Wagering Bonuses"}}};
|
|
770
|
+
/* src/CasinoWageringBonusesController.svelte generated by Svelte v3.59.2 */function Xr(e,t,n){const r=e.slice();return r[22]=t[n],r}function zr(e,t,n){const r=e.slice();return r[25]=t[n],r}
|
|
771
|
+
// (95:4) {#each Object.values(BonusStatusFilterType) as statusFilter}
|
|
772
|
+
function Yr(e){let n,r,o,i,s,a=/*locale*/e[9](/*statusFilter*/e[25])+"",l=[/*classWithPartMatchMobile*/e[10]("WageringTab")],c={};for(let e=0;e<l.length;e+=1)c=t(c,l[e]);function u(){/*click_handler*/
|
|
773
|
+
return e[16](/*statusFilter*/e[25])}return{c(){n=g("div"),r=b(a),o=y(),B(n,c),R(n,"active",/*filter*/e[0]===/*statusFilter*/e[25])},m(e,t){p(e,n,t),h(n,r),h(n,o),i||(s=E(n,"click",u),i=!0)},p(t,o){e=t,/*locale*/512&o&&a!==(a=/*locale*/e[9](/*statusFilter*/e[25])+"")&&_(r,a,c.contenteditable),B(n,c=Z(l,[/*classWithPartMatchMobile*/1024&o&&/*classWithPartMatchMobile*/e[10]("WageringTab")])),R(n,"active",/*filter*/e[0]===/*statusFilter*/e[25])},d(e){e&&f(n),i=!1,s()}}}
|
|
774
|
+
// (113:4) {:else}
|
|
775
|
+
function Jr(e){let n;function r(e,t){/*bonuses*/
|
|
776
|
+
return e[6].length>0?to:/*errorMessage*/e[8]?eo:Qr}let o=r(e),i=o(e),s=[/*classWithPartMatchMobile*/e[10]("Bonuses")],a={};for(let e=0;e<s.length;e+=1)a=t(a,s[e]);return{c(){n=g("div"),i.c(),B(n,a)},m(e,t){p(e,n,t),i.m(n,null)},p(e,t){o===(o=r(e))&&i?i.p(e,t):(i.d(1),i=o(e),i&&(i.c(),i.m(n,null))),B(n,a=Z(s,[/*classWithPartMatchMobile*/1024&t&&/*classWithPartMatchMobile*/e[10]("Bonuses")]))},d(e){e&&f(n),i.d()}}}
|
|
777
|
+
// (111:4) {#if isLoading}
|
|
778
|
+
function qr(t){let n;return{c(){n=g("general-animation-loading")},m(e,t){p(e,n,t)},p:e,d(e){e&&f(n)}}}
|
|
779
|
+
// (133:8) {:else}
|
|
780
|
+
function Qr(e){let t,n=/*locale*/e[9]("noBonuses")+"";return{c(){t=b(n)},m(e,n){p(e,t,n)},p(e,r){/*locale*/512&r&&n!==(n=/*locale*/e[9]("noBonuses")+"")&&A(t,n)},d(e){e&&f(t)}}}
|
|
781
|
+
// (131:8) {#if errorMessage}
|
|
782
|
+
function eo(e){let t,n,r;return{c(){t=g("div"),n=b("Error: "),r=b(/*errorMessage*/e[8]),w(t,"class","Error")},m(e,o){p(e,t,o),h(t,n),h(t,r)},p(e,t){/*errorMessage*/256&t&&A(r,/*errorMessage*/e[8])},d(e){e&&f(t)}}}
|
|
783
|
+
// (115:6) {#if bonuses.length > 0}
|
|
784
|
+
function to(e){let t,n=/*bonuses*/e[6],r=[];for(let t=0;t<n.length;t+=1)r[t]=no(Xr(e,n,t));return{c(){for(let e=0;e<r.length;e+=1)r[e].c();t=v()},m(e,n){for(let t=0;t<r.length;t+=1)r[t]&&r[t].m(e,n);p(e,t,n)},p(e,o){if(/*endpoint, session, lang, currency, JSON, bonuses, infoParts*/94&o){let i;for(n=/*bonuses*/e[6],i=0;i<n.length;i+=1){const s=Xr(e,n,i);r[i]?r[i].p(s,o):(r[i]=no(s),r[i].c(),r[i].m(t.parentNode,t))}for(;i<r.length;i+=1)r[i].d(1);r.length=n.length}},d(e){d(r,e),e&&f(t)}}}
|
|
785
|
+
// (116:8) {#each bonuses as item}
|
|
786
|
+
function no(e){let n,r=[{endpoint:/*endpoint*/e[1],session:/*session*/e[3],lang:/*lang*/e[2],currency:/*currency*/e[4],rawbonus:JSON.stringify(/*item*/e[22]),exportparts:cr([{key:"ExpiryTime"},{key:"Status"},{key:"Levels"}])}],o={};for(let e=0;e<r.length;e+=1)o=t(o,r[e]);return{c(){n=g("casino-wagering-bonus"),B(n,o)},m(e,t){p(e,n,t)},p(e,t){B(n,o=Z(r,[/*endpoint, session, lang, currency, bonuses*/94&t&&{endpoint:/*endpoint*/e[1],session:/*session*/e[3],lang:/*lang*/e[2],currency:/*currency*/e[4],rawbonus:JSON.stringify(/*item*/e[22]),exportparts:cr([{key:"ExpiryTime"},{key:"Status"},{key:"Levels"}])}]))},d(e){e&&f(n)}}}function ro(n){let r,o,i,s,a,l=Object.values(de),c=[];for(let e=0;e<l.length;e+=1)c[e]=Yr(zr(n,l,e));let u=[/*classWithPartMatchMobile*/n[10]("WageringTabs")],m={};for(let e=0;e<u.length;e+=1)m=t(m,u[e]);function b(e,t){/*isLoading*/
|
|
787
|
+
return e[7]?qr:Jr}let v=b(n),w=v(n),T=[/*classWithPartMatchMobile*/n[10]("Root")],C={};for(let e=0;e<T.length;e+=1)C=t(C,T[e]);return{c(){r=g("div"),o=g("section");for(let e=0;e<c.length;e+=1)c[e].c();i=y(),s=g("div"),w.c(),this.c=e,B(o,m),B(r,C),G((()=>/*div1_elementresize_handler*/n[17].call(r)))},m(e,t){p(e,r,t),h(r,o);for(let e=0;e<c.length;e+=1)c[e]&&c[e].m(o,null);h(r,i),h(r,s),w.m(s,null),a=function(e,t){"static"===getComputedStyle(e).position&&(e.style.position="relative");const n=g("iframe");n.setAttribute("style","display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;"),n.setAttribute("aria-hidden","true"),n.tabIndex=-1;const r=x();let o;return r?(n.src="data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}<\/script>",o=E(window,"message",(e=>{e.source===n.contentWindow&&t()}))):(n.src="about:blank",n.onload=()=>{o=E(n.contentWindow,"resize",t),
|
|
788
|
+
// make sure an initial resize event is fired _after_ the iframe is loaded (which is asynchronous)
|
|
789
|
+
// see https://github.com/sveltejs/svelte/issues/4233
|
|
790
|
+
t()}),h(e,n),()=>{(r||o&&n.contentWindow)&&o(),f(n)}}(r,/*div1_elementresize_handler*/n[17].bind(r))},p(e,[t]){if(/*classWithPartMatchMobile, filter, Object, BonusStatusFilterType, init, locale*/3585&t){let n;for(l=Object.values(de),n=0;n<l.length;n+=1){const r=zr(e,l,n);c[n]?c[n].p(r,t):(c[n]=Yr(r),c[n].c(),c[n].m(o,null))}for(;n<c.length;n+=1)c[n].d(1);c.length=l.length}B(o,m=Z(u,[/*classWithPartMatchMobile*/1024&t&&/*classWithPartMatchMobile*/e[10]("WageringTabs")])),v===(v=b(e))&&w?w.p(e,t):(w.d(1),w=v(e),w&&(w.c(),w.m(s,null))),B(r,C=Z(T,[/*classWithPartMatchMobile*/1024&t&&/*classWithPartMatchMobile*/e[10]("Root")]))},i:e,o:e,d(e){e&&f(r),d(c,e),w.d(),a()}}}function oo(e,t,n){let r,o,i,s;c(e,ir,(e=>n(15,s=e)));let{endpoint:a=""}=t,{lang:l=be.en}=t,{session:u=""}=t,{currency:h="EUR"}=t,{filter:p=de.claimable}=t,{limit:f=""}=t,d=!1;P((()=>(n(13,d=!0),()=>{n(13,d=!1)})));let g,m,b=[],y=!0,v="";sr(Zr);const E=(w={WageringProgressUpdate:e=>{n(6,b=b.map((t=>{let n=null==e?void 0:e.items[t.bonusWalletID];if(!n)return t;let{status:r,level:o,levelIncrement:i,gap:s}=n,a=Object.assign({},t);return a=Object.assign(Object.assign({},a),{wageringProgress:Object.assign(Object.assign({},a.wageringProgress),{currentLevel:o,currentLevelIncrement:i,gap:s})}),r&&(a=Object.assign(Object.assign({},a),{status:r}),setTimeout((()=>T()),500),r!==p)?null:a})).filter((e=>e)))}},e=>{let t=e.data;if(t)try{let e=JSON.parse(t);if(!e)return;Object.keys(w).map((t=>{if(e.messageType==t){const{messageType:n}=e,r=ve(e,["messageType"]);
|
|
752
791
|
// console.log(messageType, restData);
|
|
753
|
-
|
|
754
|
-
// if(status !== BonusStatus.claimable){
|
|
755
|
-
// bonuses = _bonuses.filter(bonus => bonus.status === status)
|
|
756
|
-
// }else{
|
|
757
|
-
// bonuses = _bonuses
|
|
758
|
-
// }
|
|
759
|
-
ye(u,d),a===ae.active&&(u=Te(r,i,h,d))):n(7,p=e.errorMessage)})(),n(6,f=!1))};be({OnWageringBonusClaimed:()=>m(),OnWageringBonusExpired:()=>m()}),R((()=>()=>ye(u,d)));return e.$$set=e=>{"endpoint"in e&&n(1,r=e.endpoint),"lang"in e&&n(2,o=e.lang),"session"in e&&n(3,i=e.session),"currency"in e&&n(4,s=e.currency),"status"in e&&n(0,a=e.status),"limit"in e&&n(9,l=e.limit)},e.$$.update=()=>{/*isMounted*/1024&e.$$.dirty&&c&&m(),/*endpoint*/2&e.$$.dirty&&r&&m(),/*lang*/4&e.$$.dirty&&o&&m(),/*session*/8&e.$$.dirty&&i&&m()},[a,r,o,i,s,h,f,p,m,l,c,e=>{a!==ae[e]&&(n(0,a=ae[e]),m())}]}Br="casino-wagering-bonus",Cr=class extends X{constructor(e){super();const t=document.createElement("style");t.textContent=':host{font-family:system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-size:24px;line-height:28px;font-style:normal}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}button{font-size:24px;line-height:28px}hr{margin:18px 0;border-top:1px solid #00AEEF}section.layout-horizental{display:flex;flex-direction:row}section.layout-horizental.space-between{justify-content:space-between}.title{font-weight:700}.terms{font-size:18px;line-height:21px}.icon{width:24px;height:24px;vertical-align:bottom}.Root{border:1px solid #00AEEF;max-width:1300px;padding:28px 0}.Root>div{padding:0 28px}.Root>div:nth-child(1){flex:55%}.Root>div:nth-child(2){flex:45%;border-left:1px solid #00AEEF}.BonusInfoTitle{color:#59CA00}.BonusInfoExpireDate{color:#DC0D1F}.BonusInfoDescription{margin-top:20px}.StatusClaimableInfoPeriod{margin-top:18px}.StatusClaimable>div:nth-child(1){flex:40%}.StatusClaimable>div:nth-child(2){flex:60%}.StatusClaimableCommand button{width:100%;background:#00AEEF;border:1px solid #00AEEF;color:#FFFFFF;cursor:pointer;font-weight:400;padding:30px;transition:0.6s}.StatusClaimableCommand button:disabled{opacity:0.3}.StatusClaimableCommandTerms{margin-top:10px;text-align:center}.StatusClaimableCommandTerms a{color:#000000}.LevelStatus{text-align:center;margin-top:10px}.BonusTypeWrapper{margin-left:30px}.BonusType>div{margin-bottom:20px}.BonusTypeRemaining{color:#00AEEF}.BonusTypeGot{color:#7884A0}.RewardsTopBarTitle{color:#252631;padding-bottom:12px}.BonusRewardsLevels>div{margin-top:5px;padding:12px 0}.BonusRewardsLevelsItem{display:flex}.BonusRewardsLevelsItemPosition{margin-right:5px}.SupportsWrapper{margin-top:35px}.SupportsWrapper div{margin-top:15px}',this.shadowRoot.appendChild(t),Z(this,{target:this.shadowRoot,props:H(this.attributes),customElement:!0},wr,vr,s,{rawbonus:12,endpoint:13,currency:14,lang:15,session:16,status:0},null,[-1,-1]),e&&(e.target&&f(e.target,this,e.anchor),e.props&&(this.$set(e.props),k()))}static get observedAttributes(){return["rawbonus","endpoint","currency","lang","session","status"]}get rawbonus(){return this.$$.ctx[12]}set rawbonus(e){this.$$set({rawbonus:e}),k()}get endpoint(){return this.$$.ctx[13]}set endpoint(e){this.$$set({endpoint:e}),k()}get currency(){return this.$$.ctx[14]}set currency(e){this.$$set({currency:e}),k()}get lang(){return this.$$.ctx[15]}set lang(e){this.$$set({lang:e}),k()}get session(){return this.$$.ctx[16]}set session(e){this.$$set({session:e}),k()}get status(){return this.$$.ctx[0]}set status(e){this.$$set({status:e}),k()}},!customElements.get(Br)&&customElements.define(Br,Cr);class $r extends X{constructor(e){super();const t=document.createElement("style");t.textContent="*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}casino-wagering-bonus::part(Root){margin-bottom:30px}.WageringTabs{margin:20px 0}.WageringTabs li{display:inline;margin:10px 10px 10px 0;padding:10px;border:1px #ccc solid;cursor:pointer}.WageringTabs li.active{border-color:aquamarine;font-weight:700}",this.shadowRoot.appendChild(t),Z(this,{target:this.shadowRoot,props:H(this.attributes),customElement:!0},Ir,Nr,s,{endpoint:1,lang:2,session:3,currency:4,status:0,limit:9},null),e&&(e.target&&f(e.target,this,e.anchor),e.props&&(this.$set(e.props),k()))}static get observedAttributes(){return["endpoint","lang","session","currency","status","limit"]}get endpoint(){return this.$$.ctx[1]}set endpoint(e){this.$$set({endpoint:e}),k()}get lang(){return this.$$.ctx[2]}set lang(e){this.$$set({lang:e}),k()}get session(){return this.$$.ctx[3]}set session(e){this.$$set({session:e}),k()}get currency(){return this.$$.ctx[4]}set currency(e){this.$$set({currency:e}),k()}get status(){return this.$$.ctx[0]}set status(e){this.$$set({status:e}),k()}get limit(){return this.$$.ctx[9]}set limit(e){this.$$set({limit:e}),k()}}
|
|
792
|
+
w[t](r)}}))}catch(e){console.error(e)}});var w;const T=async()=>{d&&p&&l&&u&&a&&(n(7,y=!0),await(async()=>{null==m||m.abort(),m=new AbortController;const e=await Re(m,a,u,{lang:l,status:"claimable"===p?"claimable":Ge(p),limit:f});e.success?(n(6,b=e.items||e.bonuses),Se(g,E),p===de.active&&(g=Le(a,u,b,E))):n(8,v=e.errorMessage)})(),n(7,y=!1))};let B;Ce({OnWageringBonusClaimed:()=>T(),OnWageringBonusExpired:()=>T()}),P((()=>()=>Se(g,E)));return e.$$set=e=>{"endpoint"in e&&n(1,a=e.endpoint),"lang"in e&&n(2,l=e.lang),"session"in e&&n(3,u=e.session),"currency"in e&&n(4,h=e.currency),"filter"in e&&n(0,p=e.filter),"limit"in e&&n(12,f=e.limit)},e.$$.update=()=>{/*isMounted*/8192&e.$$.dirty&&d&&T(),/*endpoint*/2&e.$$.dirty&&a&&T(),/*lang*/4&e.$$.dirty&&l&&T(),/*session*/8&e.$$.dirty&&u&&T(),/*innerWidth*/32&e.$$.dirty&&n(14,r=B<=648),/*isMobileView*/16384&e.$$.dirty&&n(10,o=e=>re(`${e}${r?` ${e}Mobile`:""}`)),/*$_*/32768&e.$$.dirty&&n(9,i=(e,t={})=>s("wageringBonuses."+e,{values:t}))},[p,a,l,u,h,B,b,y,v,i,o,T,f,d,r,s,e=>{p!==e&&(n(0,p=e),T())},function(){B=this.clientWidth,n(5,B)}]}class io extends J{constructor(e){super();const t=document.createElement("style");t.textContent="*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}casino-wagering-bonus::part(Root){margin-bottom:30px}.Bonuses{display:flex;flex-wrap:wrap;justify-content:left;margin-top:10px;column-gap:10px}.BonusesMobile>casino-wagering-bonus{width:100%}.WageringTabs{margin:20px 0;font-size:16px}.WageringTab{display:inline;padding:8px;cursor:pointer;color:#000000;border-bottom:1px solid #00AEEF}.WageringTab.active{color:#00AEEF;border-bottom-width:3px;padding-bottom:6px;font-weight:700}.WageringTabsMobile{display:flex;justify-content:space-around}.WageringTabMobile{width:100%;text-align:center}.Error{color:red}",this.shadowRoot.appendChild(t),Y(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},oo,ro,s,{endpoint:1,lang:2,session:3,currency:4,filter:0,limit:12},null),e&&(e.target&&p(e.target,this,e.anchor),e.props&&(this.$set(e.props),V()))}static get observedAttributes(){return["endpoint","lang","session","currency","filter","limit"]}get endpoint(){return this.$$.ctx[1]}set endpoint(e){this.$$set({endpoint:e}),V()}get lang(){return this.$$.ctx[2]}set lang(e){this.$$set({lang:e}),V()}get session(){return this.$$.ctx[3]}set session(e){this.$$set({session:e}),V()}get currency(){return this.$$.ctx[4]}set currency(e){this.$$set({currency:e}),V()}get filter(){return this.$$.ctx[0]}set filter(e){this.$$set({filter:e}),V()}get limit(){return this.$$.ctx[12]}set limit(e){this.$$set({limit:e}),V()}}
|
|
760
793
|
// @ts-ignore
|
|
761
|
-
return!customElements.get("casino-wagering-bonuses-controller")&&customElements.define("casino-wagering-bonuses-controller"
|
|
794
|
+
return!customElements.get("casino-wagering-bonuses-controller")&&customElements.define("casino-wagering-bonuses-controller",io),io}));
|
|
762
795
|
//# sourceMappingURL=casino-wagering-bonuses-controller.js.map
|