@everymatrix/cashier-receipt-page 1.27.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.
@@ -0,0 +1,596 @@
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){return e()}function n(){return Object.create(null)}function r(e){e.forEach(t)}function i(e){return"function"==typeof e}function o(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}let s;function a(e,t){return s||(s=document.createElement("a")),s.href=t,e===s.href}function l(t,...n){if(null==t)return e;const r=t.subscribe(...n);return r.unsubscribe?()=>r.unsubscribe():r}const c="undefined"!=typeof window?window:"undefined"!=typeof globalThis?globalThis:global;function h(e,t){e.appendChild(t)}function u(e,t,n){e.insertBefore(t,n||null)}function p(e){e.parentNode&&e.parentNode.removeChild(e)}function f(e){return document.createElement(e)}function m(e){return document.createTextNode(e)}function d(){return m(" ")}function g(e,t,n,r){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n,r)}function b(e,t,n){null==n?e.removeAttribute(t):e.getAttribute(t)!==n&&e.setAttribute(t,n)}function y(e,t){t=""+t,e.data!==t&&(e.data=t)}function E(e){const t={};for(const n of e)t[n.name]=n.value;return t}let v;function T(e){v=e}const H=[],B=[];let _=[];const C=[],A=Promise.resolve();let w=!1;function L(e){_.push(e)}
2
+ // flush() calls callbacks in this order:
3
+ // 1. All beforeUpdate callbacks, in order: parents before children
4
+ // 2. All bind:this callbacks, in reverse order: children before parents.
5
+ // 3. All afterUpdate callbacks, in order: parents before children. EXCEPT
6
+ // for afterUpdates called during the initial onMount, which are called in
7
+ // reverse order: children before parents.
8
+ // Since callbacks might update component values, which could trigger another
9
+ // call to flush(), the following steps guard against this:
10
+ // 1. During beforeUpdate, any updated components will be added to the
11
+ // dirty_components array and will cause a reentrant call to flush(). Because
12
+ // the flush index is kept outside the function, the reentrant call will pick
13
+ // up where the earlier call left off and go through all dirty components. The
14
+ // current_component value is saved and restored so that the reentrant call will
15
+ // not interfere with the "parent" flush() call.
16
+ // 2. bind:this callbacks cannot trigger new flush() calls.
17
+ // 3. During afterUpdate, any updated components will NOT have their afterUpdate
18
+ // callback called a second time; the seen_callbacks set, outside the flush()
19
+ // function, guarantees this behavior.
20
+ const P=new Set;let S=0;// Do *not* move this inside the flush() function
21
+ function I(){
22
+ // Do not reenter flush while dirty components are updated, as this can
23
+ // result in an infinite loop. Instead, let the inner flush handle it.
24
+ // Reentrancy is ok afterwards for bindings etc.
25
+ if(0!==S)return;const e=v;do{
26
+ // first, call beforeUpdate functions
27
+ // and update components
28
+ try{for(;S<H.length;){const e=H[S];S++,T(e),N(e.$$)}}catch(e){
29
+ // reset dirty state to not end up in a deadlocked state and then rethrow
30
+ throw H.length=0,S=0,e}for(T(null),H.length=0,S=0;B.length;)B.pop()();
31
+ // then, once components are updated, call
32
+ // afterUpdate functions. This may cause
33
+ // subsequent updates...
34
+ for(let e=0;e<_.length;e+=1){const t=_[e];P.has(t)||(
35
+ // ...so guard against infinite loops
36
+ P.add(t),t())}_.length=0}while(H.length);for(;C.length;)C.pop()();w=!1,P.clear(),T(e)}function N(e){if(null!==e.fragment){e.update(),r(e.before_update);const t=e.dirty;e.dirty=[-1],e.fragment&&e.fragment.p(e.ctx,t),e.after_update.forEach(L)}}
37
+ /**
38
+ * Useful for example to execute remaining `afterUpdate` callbacks before executing `destroy`.
39
+ */const R=new Set;function O(e,t){const n=e.$$;null!==n.fragment&&(!function(e){const t=[],n=[];_.forEach((r=>-1===e.indexOf(r)?t.push(r):n.push(r))),n.forEach((e=>e())),_=t}(n.after_update),r(n.on_destroy),n.fragment&&n.fragment.d(t),
40
+ // TODO null out other refs, including component.$$ (but need to
41
+ // preserve final state?)
42
+ n.on_destroy=n.fragment=null,n.ctx=[])}function M(e,t){-1===e.$$.dirty[0]&&(H.push(e),w||(w=!0,A.then(I)),e.$$.dirty.fill(0)),e.$$.dirty[t/31|0]|=1<<t%31}function x(o,s,a,l,c,h,u,f=[-1]){const m=v;T(o);const d=o.$$={fragment:null,ctx:[],
43
+ // state
44
+ props:h,update:e,not_equal:c,bound:n(),
45
+ // lifecycle
46
+ on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(s.context||(m?m.$$.context:[])),
47
+ // everything else
48
+ callbacks:n(),dirty:f,skip_bound:!1,root:s.target||m.$$.root};u&&u(d.root);let g=!1;if(d.ctx=a?a(o,s.props||{},((e,t,...n)=>{const r=n.length?n[0]:t;return d.ctx&&c(d.ctx[e],d.ctx[e]=r)&&(!d.skip_bound&&d.bound[e]&&d.bound[e](r),g&&M(o,e)),t})):[],d.update(),g=!0,r(d.before_update),
49
+ // `false` as a special case of no DOM component
50
+ d.fragment=!!l&&l(d.ctx),s.target){if(s.hydrate){const e=function(e){return Array.from(e.childNodes)}(s.target);
51
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
52
+ d.fragment&&d.fragment.l(e),e.forEach(p)}else
53
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
54
+ d.fragment&&d.fragment.c();s.intro&&((b=o.$$.fragment)&&b.i&&(R.delete(b),b.i(y))),function(e,n,o,s){const{fragment:a,after_update:l}=e.$$;a&&a.m(n,o),s||
55
+ // onMount happens before the initial afterUpdate
56
+ L((()=>{const n=e.$$.on_mount.map(t).filter(i);
57
+ // if the component was destroyed immediately
58
+ // it will update the `$$.on_destroy` reference to `null`.
59
+ // the destructured on_destroy may still reference to the old array
60
+ e.$$.on_destroy?e.$$.on_destroy.push(...n):
61
+ // Edge case - component was destroyed immediately,
62
+ // most likely as a result of a binding initialising
63
+ r(n),e.$$.on_mount=[]})),l.forEach(L)}(o,s.target,s.anchor,s.customElement),I()}var b,y;T(m)}let U;"function"==typeof HTMLElement&&(U=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:e}=this.$$;this.$$.on_disconnect=e.map(t).filter(i);
64
+ // @ts-ignore todo: improve typings
65
+ for(const e in this.$$.slotted)
66
+ // @ts-ignore todo: improve typings
67
+ this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,n){this[e]=n}disconnectedCallback(){r(this.$$.on_disconnect)}$destroy(){O(this,1),this.$destroy=e}$on(t,n){
68
+ // TODO should this delegate to addEventListener?
69
+ 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)}});const D=[];
70
+ /**
71
+ * Creates a `Readable` store that allows reading by subscription.
72
+ * @param value initial value
73
+ * @param {StartStopNotifier} [start]
74
+ */
75
+ /**
76
+ * Create a `Writable` store that allows both updating and reading by subscription.
77
+ * @param {*=}value initial value
78
+ * @param {StartStopNotifier=} start
79
+ */
80
+ function G(t,n=e){let r;const i=new Set;function s(e){if(o(t,e)&&(t=e,r)){// store is ready
81
+ const e=!D.length;for(const e of i)e[1](),D.push(e,t);if(e){for(let e=0;e<D.length;e+=2)D[e][0](D[e+1]);D.length=0}}}return{set:s,update:function(e){s(e(t))},subscribe:function(o,a=e){const l=[o,a];return i.add(l),1===i.size&&(r=n(s)||e),o(t),()=>{i.delete(l),0===i.size&&r&&(r(),r=null)}}}}function $(t,n,o){const s=!Array.isArray(t),a=s?[t]:t,c=n.length<2;return h=t=>{let o=!1;const h=[];let u=0,p=e;const f=()=>{if(u)return;p();const r=n(s?h[0]:h,t);c?t(r):p=i(r)?r:e},m=a.map(((e,t)=>l(e,(e=>{h[t]=e,u&=~(1<<t),o&&f()}),(()=>{u|=1<<t}))));return o=!0,f(),function(){r(m),p(),
82
+ // We need to set this to false because callbacks can still happen despite having unsubscribed:
83
+ // Callbacks might already be placed in the queue which doesn't know it should no longer
84
+ // invoke this derived store.
85
+ o=!1}},{subscribe:G(o,h).subscribe};var h}var k=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===F}(e)}
86
+ // see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
87
+ (e)};var F="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function j(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Y((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function V(e,t,n){return e.concat(t).map((function(e){return j(e,n)}))}function X(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 K(e,t){try{return t in e}catch(e){return!1}}
88
+ // Protects from prototype poisoning and unexpected merging up the prototype chain.
89
+ function z(e,t,n){var r={};return n.isMergeableObject(e)&&X(e).forEach((function(t){r[t]=j(e[t],n)})),X(t).forEach((function(i){(function(e,t){return K(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t));// and also unsafe if they're nonenumerable.
90
+ })(e,i)||(K(e,i)&&n.isMergeableObject(t[i])?r[i]=function(e,t){if(!t.customMerge)return Y;var n=t.customMerge(e);return"function"==typeof n?n:Y}(i,n)(e[i],t[i],n):r[i]=j(t[i],n))})),r}function Y(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||V,n.isMergeableObject=n.isMergeableObject||k,
91
+ // cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()
92
+ // implementations can use it. The caller may not replace it.
93
+ n.cloneUnlessOtherwiseSpecified=j;var r=Array.isArray(t);return r===Array.isArray(e)?r?n.arrayMerge(e,t,n):z(e,t,n):j(t,n)}Y.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return Y(e,n,t)}),{})};var Z=Y,W=function(e,t){return W=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])},W(e,t)};function Q(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}W(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var q,J,ee,te=function(){return te=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},te.apply(this,arguments)};function ne(e,t,n){if(n||2===arguments.length)for(var r,i=0,o=t.length;i<o;i++)!r&&i in t||(r||(r=Array.prototype.slice.call(t,0,i)),r[i]=t[i]);return e.concat(r||Array.prototype.slice.call(t))}
94
+ /**
95
+ * Type Guards
96
+ */
97
+ function re(e){return e.type===J.literal}function ie(e){return e.type===J.argument}function oe(e){return e.type===J.number}function se(e){return e.type===J.date}function ae(e){return e.type===J.time}function le(e){return e.type===J.select}function ce(e){return e.type===J.plural}function he(e){return e.type===J.pound}function ue(e){return e.type===J.tag}function pe(e){return!(!e||"object"!=typeof e||e.type!==ee.number)}function fe(e){return!(!e||"object"!=typeof e||e.type!==ee.dateTime)}
98
+ // @generated from regex-gen.ts
99
+ "function"==typeof SuppressedError&&SuppressedError,function(e){
100
+ /** Argument is unclosed (e.g. `{0`) */
101
+ e[e.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",
102
+ /** Argument is empty (e.g. `{}`). */
103
+ e[e.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",
104
+ /** Argument is malformed (e.g. `{foo!}``) */
105
+ e[e.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",
106
+ /** Expect an argument type (e.g. `{foo,}`) */
107
+ e[e.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",
108
+ /** Unsupported argument type (e.g. `{foo,foo}`) */
109
+ e[e.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",
110
+ /** Expect an argument style (e.g. `{foo, number, }`) */
111
+ e[e.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",
112
+ /** The number skeleton is invalid. */
113
+ e[e.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",
114
+ /** The date time skeleton is invalid. */
115
+ e[e.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",
116
+ /** Exepct a number skeleton following the `::` (e.g. `{foo, number, ::}`) */
117
+ e[e.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",
118
+ /** Exepct a date time skeleton following the `::` (e.g. `{foo, date, ::}`) */
119
+ e[e.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",
120
+ /** Unmatched apostrophes in the argument style (e.g. `{foo, number, 'test`) */
121
+ e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",
122
+ /** Missing select argument options (e.g. `{foo, select}`) */
123
+ e[e.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",
124
+ /** Expecting an offset value in `plural` or `selectordinal` argument (e.g `{foo, plural, offset}`) */
125
+ e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",
126
+ /** Offset value in `plural` or `selectordinal` is invalid (e.g. `{foo, plural, offset: x}`) */
127
+ e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",
128
+ /** Expecting a selector in `select` argument (e.g `{foo, select}`) */
129
+ e[e.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",
130
+ /** Expecting a selector in `plural` or `selectordinal` argument (e.g `{foo, plural}`) */
131
+ e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",
132
+ /** Expecting a message fragment after the `select` selector (e.g. `{foo, select, apple}`) */
133
+ e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",
134
+ /**
135
+ * Expecting a message fragment after the `plural` or `selectordinal` selector
136
+ * (e.g. `{foo, plural, one}`)
137
+ */
138
+ e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",
139
+ /** Selector in `plural` or `selectordinal` is malformed (e.g. `{foo, plural, =x {#}}`) */
140
+ e[e.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",
141
+ /**
142
+ * Duplicate selectors in `plural` or `selectordinal` argument.
143
+ * (e.g. {foo, plural, one {#} one {#}})
144
+ */
145
+ e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",
146
+ /** Duplicate selectors in `select` argument.
147
+ * (e.g. {foo, select, apple {apple} apple {apple}})
148
+ */
149
+ e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",
150
+ /** Plural or select argument option must have `other` clause. */
151
+ e[e.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",
152
+ /** The tag is malformed. (e.g. `<bold!>foo</bold!>) */
153
+ e[e.INVALID_TAG=23]="INVALID_TAG",
154
+ /** The tag name is invalid. (e.g. `<123>foo</123>`) */
155
+ e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",
156
+ /** The closing tag does not match the opening tag. (e.g. `<bold>foo</italic>`) */
157
+ e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",
158
+ /** The opening tag has unmatched closing tag. (e.g. `<bold>foo`) */
159
+ e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"}(q||(q={})),function(e){
160
+ /**
161
+ * Raw text
162
+ */
163
+ e[e.literal=0]="literal",
164
+ /**
165
+ * Variable w/o any format, e.g `var` in `this is a {var}`
166
+ */
167
+ e[e.argument=1]="argument",
168
+ /**
169
+ * Variable w/ number format
170
+ */
171
+ e[e.number=2]="number",
172
+ /**
173
+ * Variable w/ date format
174
+ */
175
+ e[e.date=3]="date",
176
+ /**
177
+ * Variable w/ time format
178
+ */
179
+ e[e.time=4]="time",
180
+ /**
181
+ * Variable w/ select format
182
+ */
183
+ e[e.select=5]="select",
184
+ /**
185
+ * Variable w/ plural format
186
+ */
187
+ e[e.plural=6]="plural",
188
+ /**
189
+ * Only possible within plural argument.
190
+ * This is the `#` symbol that will be substituted with the count.
191
+ */
192
+ e[e.pound=7]="pound",
193
+ /**
194
+ * XML-like tag
195
+ */
196
+ e[e.tag=8]="tag"}(J||(J={})),function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"}(ee||(ee={}));var me=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,de=/(?:[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;
197
+ /**
198
+ * https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
199
+ * Credit: https://github.com/caridy/intl-datetimeformat-pattern/blob/master/index.js
200
+ * with some tweaks
201
+ */
202
+ /**
203
+ * Parse Date time skeleton into Intl.DateTimeFormatOptions
204
+ * Ref: https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
205
+ * @public
206
+ * @param skeleton skeleton string
207
+ */
208
+ function ge(e){var t={};return e.replace(de,(function(e){var n=e.length;switch(e[0]){
209
+ // Era
210
+ case"G":t.era=4===n?"long":5===n?"narrow":"short";break;
211
+ // Year
212
+ case"y":t.year=2===n?"2-digit":"numeric";break;case"Y":case"u":case"U":case"r":throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");
213
+ // Quarter
214
+ case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");
215
+ // Month
216
+ case"M":case"L":t.month=["numeric","2-digit","short","long","narrow"][n-1];break;
217
+ // Week
218
+ case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":t.day=["numeric","2-digit"][n-1];break;case"D":case"F":case"g":throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");
219
+ // Weekday
220
+ case"E":t.weekday=4===n?"short":5===n?"narrow":"short";break;case"e":if(n<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"c":if(n<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;
221
+ // Period
222
+ case"a":// AM, PM
223
+ t.hour12=!0;break;case"b":// am, pm, noon, midnight
224
+ case"B":// flexible day periods
225
+ throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");
226
+ // Hour
227
+ case"h":t.hourCycle="h12",t.hour=["numeric","2-digit"][n-1];break;case"H":t.hourCycle="h23",t.hour=["numeric","2-digit"][n-1];break;case"K":t.hourCycle="h11",t.hour=["numeric","2-digit"][n-1];break;case"k":t.hourCycle="h24",t.hour=["numeric","2-digit"][n-1];break;case"j":case"J":case"C":throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");
228
+ // Minute
229
+ case"m":t.minute=["numeric","2-digit"][n-1];break;
230
+ // Second
231
+ case"s":t.second=["numeric","2-digit"][n-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");
232
+ // Zone
233
+ case"z":// 1..3, 4: specific non-location format
234
+ t.timeZoneName=n<4?"short":"long";break;case"Z":// 1..3, 4, 5: The ISO8601 varios formats
235
+ case"O":// 1, 4: miliseconds in day short, long
236
+ case"v":// 1, 4: generic non-location format
237
+ case"V":// 1, 2, 3, 4: time zone ID or city
238
+ case"X":// 1, 2, 3, 4: The ISO8601 varios formats
239
+ case"x":// 1, 2, 3, 4: The ISO8601 varios formats
240
+ throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""})),t}
241
+ // @generated from regex-gen.ts
242
+ var be=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;var ye=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,Ee=/^(@+)?(\+|#+)?[rs]?$/g,ve=/(\*)(0+)|(#+)(0+)|(0+)/g,Te=/^(0+)$/;function He(e){var t={};return"r"===e[e.length-1]?t.roundingPriority="morePrecision":"s"===e[e.length-1]&&(t.roundingPriority="lessPrecision"),e.replace(Ee,(function(e,n,r){
243
+ // @@@ case
244
+ 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 Be(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 _e(e){
245
+ // Engineering
246
+ 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)),!Te.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function Ce(e){var t=Be(e);return t||{}}
247
+ /**
248
+ * https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options
249
+ */function Ae(e){for(var t={},n=0,r=e;n<r.length;n++){var i=r[n];switch(i.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=i.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=i.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=te(te(te({},t),{notation:"scientific"}),i.options.reduce((function(e,t){return te(te({},e),Ce(t))}),{}));continue;case"engineering":t=te(te(te({},t),{notation:"engineering"}),i.options.reduce((function(e,t){return te(te({},e),Ce(t))}),{}));continue;case"notation-simple":t.notation="standard";continue;
250
+ // https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h
251
+ 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(i.options[0]);continue;
252
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
253
+ case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(ve,(function(e,n,r,i,o,s){if(n)t.minimumIntegerDigits=r.length;else{if(i&&o)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}
254
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
255
+ if(Te.test(i.stem))t.minimumIntegerDigits=i.stem.length;else if(ye.test(i.stem)){
256
+ // Precision
257
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#fraction-precision
258
+ // precision-integer case
259
+ if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(ye,(function(e,n,r,i,o,s){
260
+ // .000* case (before ICU67 it was .000+)
261
+ return"*"===r?t.minimumFractionDigits=n.length:i&&"#"===i[0]?t.maximumFractionDigits=i.length:o&&s?(t.minimumFractionDigits=o.length,t.maximumFractionDigits=o.length+s.length):(t.minimumFractionDigits=n.length,t.maximumFractionDigits=n.length),""}));var o=i.options[0];
262
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#trailing-zero-display
263
+ "w"===o?t=te(te({},t),{trailingZeroDisplay:"stripIfInteger"}):o&&(t=te(te({},t),He(o)))}
264
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision
265
+ else if(Ee.test(i.stem))t=te(te({},t),He(i.stem));else{var s=Be(i.stem);s&&(t=te(te({},t),s));var a=_e(i.stem);a&&(t=te(te({},t),a))}}return t}
266
+ // @generated from time-data-gen.ts
267
+ // prettier-ignore
268
+ var we,Le={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"]};
269
+ /**
270
+ * Returns the best matching date time pattern if a date time skeleton
271
+ * pattern is provided with a locale. Follows the Unicode specification:
272
+ * https://www.unicode.org/reports/tr35/tr35-dates.html#table-mapping-requested-time-skeletons-to-patterns
273
+ * @param skeleton date time skeleton pattern that possibly includes j, J or C
274
+ * @param locale
275
+ */
276
+ /**
277
+ * Maps the [hour cycle type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/hourCycle)
278
+ * of the given `locale` to the corresponding time pattern.
279
+ * @param locale
280
+ */
281
+ function Pe(e){var t=e.hourCycle;if(void 0===t&&
282
+ // @ts-ignore hourCycle(s) is not identified yet
283
+ e.hourCycles&&
284
+ // @ts-ignore
285
+ e.hourCycles.length&&(
286
+ // @ts-ignore
287
+ 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")}
288
+ // TODO: Once hourCycle is fully supported remove the following with data generation
289
+ var n,r=e.language;return"root"!==r&&(n=e.maximize().region),(Le[n||""]||Le[r||""]||Le["".concat(r,"-001")]||Le["001"])[0]}var Se=new RegExp("^".concat(me.source,"*")),Ie=new RegExp("".concat(me.source,"*$"));function Ne(e,t){return{start:e,end:t}}
290
+ // #region Ponyfills
291
+ // Consolidate these variables up top for easier toggling during debugging
292
+ var Re=!!String.prototype.startsWith,Oe=!!String.fromCodePoint,Me=!!Object.fromEntries,xe=!!String.prototype.codePointAt,Ue=!!String.prototype.trimStart,De=!!String.prototype.trimEnd,Ge=!!Number.isSafeInteger?Number.isSafeInteger:function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},$e=!0;try{
293
+ /**
294
+ * legacy Edge or Xbox One browser
295
+ * Unicode flag support: supported
296
+ * Pattern_Syntax support: not supported
297
+ * See https://github.com/formatjs/formatjs/issues/2822
298
+ */
299
+ $e="a"===(null===(we=Ye("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu").exec("a"))||void 0===we?void 0:we[0])}catch(e){$e=!1}var ke,Fe=Re?// Native
300
+ function(e,t,n){return e.startsWith(t,n)}:// For IE11
301
+ function(e,t,n){return e.slice(n,n+t.length)===t},je=Oe?String.fromCodePoint:// IE11
302
+ function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n,r="",i=e.length,o=0;i>o;){if((n=e[o++])>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},Ve=
303
+ // native
304
+ Me?Object.fromEntries:// Ponyfill
305
+ function(e){for(var t={},n=0,r=e;n<r.length;n++){var i=r[n],o=i[0],s=i[1];t[o]=s}return t},Xe=xe?// Native
306
+ function(e,t){return e.codePointAt(t)}:// IE 11
307
+ function(e,t){var n=e.length;if(!(t<0||t>=n)){var r,i=e.charCodeAt(t);return i<55296||i>56319||t+1===n||(r=e.charCodeAt(t+1))<56320||r>57343?i:r-56320+(i-55296<<10)+65536}},Ke=Ue?// Native
308
+ function(e){return e.trimStart()}:// Ponyfill
309
+ function(e){return e.replace(Se,"")},ze=De?// Native
310
+ function(e){return e.trimEnd()}:// Ponyfill
311
+ function(e){return e.replace(Ie,"")};
312
+ // Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.
313
+ function Ye(e,t){return new RegExp(e,t)}
314
+ // #endregion
315
+ if($e){
316
+ // Native
317
+ var Ze=Ye("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");ke=function(e,t){var n;return Ze.lastIndex=t,null!==(n=Ze.exec(e)[1])&&void 0!==n?n:""}}else
318
+ // IE11
319
+ ke=function(e,t){for(var n=[];;){var r=Xe(e,t);if(void 0===r||qe(r)||Je(r))break;n.push(r),t+=r>=65536?2:1}return je.apply(void 0,n)};var We=/** @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 i=this.char();if(123/* `{` */===i){if((o=this.parseArgument(e,n)).err)return o;r.push(o.val)}else{if(125/* `}` */===i&&e>0)break;if(35/* `#` */!==i||"plural"!==t&&"selectordinal"!==t){if(60/* `<` */===i&&!this.ignoreTag&&47===this.peek()){if(n)break;return this.error(q.UNMATCHED_CLOSING_TAG,Ne(this.clonePosition(),this.clonePosition()))}if(60/* `<` */===i&&!this.ignoreTag&&Qe(this.peek()||0)){if((o=this.parseTag(e,t)).err)return o;r.push(o.val)}else{var o;if((o=this.parseLiteral(e,t)).err)return o;r.push(o.val)}}else{var s=this.clonePosition();this.bump(),r.push({type:J.pound,location:Ne(s,this.clonePosition())})}}}return{val:r,err:null}},
320
+ /**
321
+ * A tag name must start with an ASCII lower/upper case letter. The grammar is based on the
322
+ * [custom element name][] except that a dash is NOT always mandatory and uppercase letters
323
+ * are accepted:
324
+ *
325
+ * ```
326
+ * tag ::= "<" tagName (whitespace)* "/>" | "<" tagName (whitespace)* ">" message "</" tagName (whitespace)* ">"
327
+ * tagName ::= [a-z] (PENChar)*
328
+ * PENChar ::=
329
+ * "-" | "." | [0-9] | "_" | [a-z] | [A-Z] | #xB7 | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x37D] |
330
+ * [#x37F-#x1FFF] | [#x200C-#x200D] | [#x203F-#x2040] | [#x2070-#x218F] | [#x2C00-#x2FEF] |
331
+ * [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
332
+ * ```
333
+ *
334
+ * [custom element name]: https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name
335
+ * NOTE: We're a bit more lax here since HTML technically does not allow uppercase HTML element but we do
336
+ * since other tag-based engines like React allow it
337
+ */
338
+ e.prototype.parseTag=function(e,t){var n=this.clonePosition();this.bump();// `<`
339
+ var r=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))
340
+ // Self closing tag
341
+ return{val:{type:J.literal,value:"<".concat(r,"/>"),location:Ne(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(e+1,t,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();
342
+ // Expecting a close tag
343
+ if(this.bumpIf("</")){if(this.isEOF()||!Qe(this.char()))return this.error(q.INVALID_TAG,Ne(s,this.clonePosition()));var a=this.clonePosition();return r!==this.parseTagName()?this.error(q.UNMATCHED_CLOSING_TAG,Ne(a,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:J.tag,value:r,children:o,location:Ne(n,this.clonePosition())},err:null}:this.error(q.INVALID_TAG,Ne(s,this.clonePosition())))}return this.error(q.UNCLOSED_TAG,Ne(n,this.clonePosition()))}return this.error(q.INVALID_TAG,Ne(n,this.clonePosition()))},
344
+ /**
345
+ * This method assumes that the caller has peeked ahead for the first tag character.
346
+ */
347
+ e.prototype.parseTagName=function(){var e,t=this.offset();// the first tag name character
348
+ for(this.bump();!this.isEOF()&&(45/* '-' */===(e=this.char())||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);)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(e,t){for(var n=this.clonePosition(),r="";;){var i=this.tryParseQuote(t);if(i)r+=i;else{var o=this.tryParseUnquoted(e,t);if(o)r+=o;else{var s=this.tryParseLeftAngleBracket();if(!s)break;r+=s}}}var a=Ne(n,this.clonePosition());return{val:{type:J.literal,value:r,location:a},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return this.isEOF()||60/* `<` */!==this.char()||!this.ignoreTag&&(Qe(e=this.peek()||0)||47===e)?null:(this.bump(),"<");var e;
349
+ /** See `parseTag` function docs. */},
350
+ /**
351
+ * Starting with ICU 4.8, an ASCII apostrophe only starts quoted text if it immediately precedes
352
+ * a character that requires quoting (that is, "only where needed"), and works the same in
353
+ * nested messages as on the top level of the pattern. The new behavior is otherwise compatible.
354
+ */
355
+ e.prototype.tryParseQuote=function(e){if(this.isEOF()||39/* `'` */!==this.char())return null;
356
+ // Parse escaped char following the apostrophe, or early return if there is no escaped char.
357
+ // Check if is valid escaped character
358
+ switch(this.peek()){case 39/* `'` */:
359
+ // double quote, should return as a single quote.
360
+ return this.bump(),this.bump(),"'";
361
+ // '{', '<', '>', '}'
362
+ case 123:case 60:case 62:case 125:break;case 35:// '#'
363
+ if("plural"===e||"selectordinal"===e)break;return null;default:return null}this.bump();// apostrophe
364
+ var t=[this.char()];// escaped char
365
+ // read chars until the optional closing apostrophe is found
366
+ for(this.bump();!this.isEOF();){var n=this.char();if(39/* `'` */===n){if(39/* `'` */!==this.peek()){
367
+ // Optional closing apostrophe.
368
+ this.bump();break}t.push(39),
369
+ // Bump one more time because we need to skip 2 characters.
370
+ this.bump()}else t.push(n);this.bump()}return je.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(),je(n))},e.prototype.parseArgument=function(e,t){var n=this.clonePosition();if(this.bump(),// `{`
371
+ this.bumpSpace(),this.isEOF())return this.error(q.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(n,this.clonePosition()));if(125/* `}` */===this.char())return this.bump(),this.error(q.EMPTY_ARGUMENT,Ne(n,this.clonePosition()));
372
+ // argument name
373
+ var r=this.parseIdentifierIfPossible().value;if(!r)return this.error(q.MALFORMED_ARGUMENT,Ne(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(q.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(n,this.clonePosition()));switch(this.char()){
374
+ // Simple argument: `{name}`
375
+ case 125/* `}` */:// `}`
376
+ return this.bump(),{val:{type:J.argument,
377
+ // value does not include the opening and closing braces.
378
+ value:r,location:Ne(n,this.clonePosition())},err:null};
379
+ // Argument with options: `{name, format, ...}`
380
+ case 44/* `,` */:return this.bump(),// `,`
381
+ this.bumpSpace(),this.isEOF()?this.error(q.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(n,this.clonePosition())):this.parseArgumentOptions(e,t,r,n);default:return this.error(q.MALFORMED_ARGUMENT,Ne(n,this.clonePosition()))}},
382
+ /**
383
+ * Advance the parser until the end of the identifier, if it is currently on
384
+ * an identifier character. Return an empty string otherwise.
385
+ */
386
+ e.prototype.parseIdentifierIfPossible=function(){var e=this.clonePosition(),t=this.offset(),n=ke(this.message,t),r=t+n.length;return this.bumpTo(r),{value:n,location:Ne(e,this.clonePosition())}},e.prototype.parseArgumentOptions=function(e,t,n,r){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,a=this.clonePosition();
387
+ // Parse this range:
388
+ // {name, type, style}
389
+ // ^---^
390
+ switch(s){case"":
391
+ // Expecting a style string number, date, time, plural, selectordinal, or select.
392
+ return this.error(q.EXPECT_ARGUMENT_TYPE,Ne(o,a));case"number":case"date":case"time":
393
+ // Parse this range:
394
+ // {name, number, style}
395
+ // ^-------^
396
+ this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var c=this.clonePosition();if((b=this.parseSimpleArgStyleIfPossible()).err)return b;if(0===(f=ze(b.val)).length)return this.error(q.EXPECT_ARGUMENT_STYLE,Ne(this.clonePosition(),this.clonePosition()));l={style:f,styleLocation:Ne(c,this.clonePosition())}}if((y=this.tryParseArgumentClose(r)).err)return y;var h=Ne(r,this.clonePosition());
397
+ // Extract style or skeleton
398
+ if(l&&Fe(null==l?void 0:l.style,"::",0)){
399
+ // Skeleton starts with `::`.
400
+ var u=Ke(l.style.slice(2));if("number"===s)return(b=this.parseNumberSkeletonFromString(u,l.styleLocation)).err?b:{val:{type:J.number,value:n,location:h,style:b.val},err:null};if(0===u.length)return this.error(q.EXPECT_DATE_TIME_SKELETON,h);var p=u;
401
+ // Get "best match" pattern only if locale is passed, if not, let it
402
+ // pass as-is where `parseDateTimeSkeleton()` will throw an error
403
+ // for unsupported patterns.
404
+ this.locale&&(p=function(e,t){for(var n="",r=0;r<e.length;r++){var i=e.charAt(r);if("j"===i){for(var o=0;r+1<e.length&&e.charAt(r+1)===i;)o++,r++;var s=1+(1&o),a=o<2?1:3+(o>>1),l=Pe(t);for("H"!=l&&"k"!=l||(a=0);a-- >0;)n+="a";for(;s-- >0;)n=l+n}else n+="J"===i?"H":i}return n}(u,this.locale));var f={type:ee.dateTime,pattern:p,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?ge(p):{}};return{val:{type:"date"===s?J.date:J.time,value:n,location:h,style:f},err:null}}
405
+ // Regular style or no style.
406
+ return{val:{type:"number"===s?J.number:"date"===s?J.date:J.time,value:n,location:h,style:null!==(i=null==l?void 0:l.style)&&void 0!==i?i:null},err:null};case"plural":case"selectordinal":case"select":
407
+ // Parse this range:
408
+ // {name, plural, options}
409
+ // ^---------^
410
+ var m=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(q.EXPECT_SELECT_ARGUMENT_OPTIONS,Ne(m,te({},m)));this.bumpSpace();
411
+ // Parse offset:
412
+ // {name, plural, offset:1, options}
413
+ // ^-----^
414
+ // or the first option:
415
+ // {name, plural, one {...} other {...}}
416
+ // ^--^
417
+ var d=this.parseIdentifierIfPossible(),g=0;if("select"!==s&&"offset"===d.value){if(!this.bumpIf(":"))return this.error(q.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,Ne(this.clonePosition(),this.clonePosition()));var b;if(this.bumpSpace(),(b=this.tryParseDecimalInteger(q.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,q.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE)).err)return b;
418
+ // Parse another identifier for option parsing
419
+ this.bumpSpace(),d=this.parseIdentifierIfPossible(),g=b.val}var y,E=this.tryParsePluralOrSelectOptions(e,s,t,d);if(E.err)return E;if((y=this.tryParseArgumentClose(r)).err)return y;var v=Ne(r,this.clonePosition());return"select"===s?{val:{type:J.select,value:n,options:Ve(E.val),location:v},err:null}:{val:{type:J.plural,value:n,options:Ve(E.val),offset:g,pluralType:"plural"===s?"cardinal":"ordinal",location:v},err:null};default:return this.error(q.INVALID_ARGUMENT_TYPE,Ne(o,a))}},e.prototype.tryParseArgumentClose=function(e){
420
+ // Parse: {value, number, ::currency/GBP }
421
+ return this.isEOF()||125/* `}` */!==this.char()?this.error(q.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(e,this.clonePosition())):(this.bump(),{val:!0,err:null})},
422
+ /**
423
+ * See: https://github.com/unicode-org/icu/blob/af7ed1f6d2298013dc303628438ec4abe1f16479/icu4c/source/common/messagepattern.cpp#L659
424
+ */
425
+ e.prototype.parseSimpleArgStyleIfPossible=function(){for(var e=0,t=this.clonePosition();!this.isEOF();){switch(this.char()){case 39/* `'` */:
426
+ // Treat apostrophe as quoting but include it in the style part.
427
+ // Find the end of the quoted literal text.
428
+ this.bump();var n=this.clonePosition();if(!this.bumpUntil("'"))return this.error(q.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,Ne(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");
429
+ // Parse the skeleton
430
+ for(var t=[],n=0,r=e.split(be).filter((function(e){return e.length>0}));n<r.length;n++){var i=r[n].split("/");if(0===i.length)throw new Error("Invalid number skeleton");for(var o=i[0],s=i.slice(1),a=0,l=s;a<l.length;a++)if(0===l[a].length)throw new Error("Invalid number skeleton");t.push({stem:o,options:s})}return t}(e)}catch(e){return this.error(q.INVALID_NUMBER_SKELETON,t)}return{val:{type:ee.number,tokens:n,location:t,parsedOptions:this.shouldParseSkeletons?Ae(n):{}},err:null}},
431
+ /**
432
+ * @param nesting_level The current nesting level of messages.
433
+ * This can be positive when parsing message fragment in select or plural argument options.
434
+ * @param parent_arg_type The parent argument's type.
435
+ * @param parsed_first_identifier If provided, this is the first identifier-like selector of
436
+ * the argument. It is a by-product of a previous parsing attempt.
437
+ * @param expecting_close_tag If true, this message is directly or indirectly nested inside
438
+ * between a pair of opening and closing tags. The nested message will not parse beyond
439
+ * the closing tag boundary.
440
+ */
441
+ e.prototype.tryParsePluralOrSelectOptions=function(e,t,n,r){
442
+ // Parse:
443
+ // one {one apple}
444
+ // ^--^
445
+ for(var i,o=!1,s=[],a=new Set,l=r.value,c=r.location;;){if(0===l.length){var h=this.clonePosition();if("select"===t||!this.bumpIf("="))break;
446
+ // Try parse `={number}` selector
447
+ var u=this.tryParseDecimalInteger(q.EXPECT_PLURAL_ARGUMENT_SELECTOR,q.INVALID_PLURAL_ARGUMENT_SELECTOR);if(u.err)return u;c=Ne(h,this.clonePosition()),l=this.message.slice(h.offset,this.offset())}
448
+ // Duplicate selector clauses
449
+ if(a.has(l))return this.error("select"===t?q.DUPLICATE_SELECT_ARGUMENT_SELECTOR:q.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,c);"other"===l&&(o=!0),
450
+ // Parse:
451
+ // one {one apple}
452
+ // ^----------^
453
+ this.bumpSpace();var p=this.clonePosition();if(!this.bumpIf("{"))return this.error("select"===t?q.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:q.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,Ne(this.clonePosition(),this.clonePosition()));var f=this.parseMessage(e+1,t,n);if(f.err)return f;var m=this.tryParseArgumentClose(p);if(m.err)return m;s.push([l,{value:f.val,location:Ne(p,this.clonePosition())}]),
454
+ // Keep track of the existing selectors
455
+ a.add(l),
456
+ // Prep next selector clause.
457
+ this.bumpSpace(),l=(i=this.parseIdentifierIfPossible()).value,c=i.location}return 0===s.length?this.error("select"===t?q.EXPECT_SELECT_ARGUMENT_SELECTOR:q.EXPECT_PLURAL_ARGUMENT_SELECTOR,Ne(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(q.MISSING_OTHER_CLAUSE,Ne(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 i=!1,o=0;!this.isEOF();){var s=this.char();if(!(s>=48/* `0` */&&s<=57/* `9` */))break;i=!0,o=10*o+(s-48),this.bump()}var a=Ne(r,this.clonePosition());return i?Ge(o*=n)?{val:o,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(){
458
+ // This is much faster than `Object.assign` or spread.
459
+ return{offset:this.position.offset,line:this.position.line,column:this.position.column}},
460
+ /**
461
+ * Return the code point at the current position of the parser.
462
+ * Throws if the index is out of bound.
463
+ */
464
+ e.prototype.char=function(){var e=this.position.offset;if(e>=this.message.length)throw Error("out of bound");var t=Xe(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}}},
465
+ /** Bump the parser to the next UTF-16 code unit. */
466
+ 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,
467
+ // 0 ~ 0x10000 -> unicode BMP, otherwise skip the surrogate pair.
468
+ this.position.offset+=e<65536?1:2)}},
469
+ /**
470
+ * If the substring starting at the current position of the parser has
471
+ * the given prefix, then bump the parser to the character immediately
472
+ * following the prefix and return true. Otherwise, don't bump the parser
473
+ * and return false.
474
+ */
475
+ e.prototype.bumpIf=function(e){if(Fe(this.message,e,this.offset())){for(var t=0;t<e.length;t++)this.bump();return!0}return!1},
476
+ /**
477
+ * Bump the parser until the pattern character is found and return `true`.
478
+ * Otherwise bump to the end of the file and return `false`.
479
+ */
480
+ e.prototype.bumpUntil=function(e){var t=this.offset(),n=this.message.indexOf(e,t);return n>=0?(this.bumpTo(n),!0):(this.bumpTo(this.message.length),!1)},
481
+ /**
482
+ * Bump the parser to the target offset.
483
+ * If target offset is beyond the end of the input, bump the parser to the end of the input.
484
+ */
485
+ 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}},
486
+ /** advance the parser through all whitespace to the next non-whitespace code unit. */
487
+ e.prototype.bumpSpace=function(){for(;!this.isEOF()&&qe(this.char());)this.bump()},
488
+ /**
489
+ * Peek at the *next* Unicode codepoint in the input without advancing the parser.
490
+ * If the input has been exhausted, then this returns null.
491
+ */
492
+ e.prototype.peek=function(){if(this.isEOF())return null;var e=this.char(),t=this.offset(),n=this.message.charCodeAt(t+(e>=65536?2:1));return null!=n?n:null},e}();
493
+ /**
494
+ * This check if codepoint is alphabet (lower & uppercase)
495
+ * @param codepoint
496
+ * @returns
497
+ */function Qe(e){return e>=97&&e<=122||e>=65&&e<=90}
498
+ /**
499
+ * Code point equivalent of regex `\p{White_Space}`.
500
+ * From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
501
+ */
502
+ function qe(e){return e>=9&&e<=13||32===e||133===e||e>=8206&&e<=8207||8232===e||8233===e}
503
+ /**
504
+ * Code point equivalent of regex `\p{Pattern_Syntax}`.
505
+ * See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
506
+ */function Je(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 et(e){e.forEach((function(e){if(delete e.location,le(e)||ce(e))for(var t in e.options)delete e.options[t].location,et(e.options[t].value);else oe(e)&&pe(e.style)||(se(e)||ae(e))&&fe(e.style)?delete e.style.location:ue(e)&&et(e.children)}))}function tt(e,t){void 0===t&&(t={}),t=te({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var n=new We(e,t).parse();if(n.err){var r=SyntaxError(q[n.err.kind]);
507
+ // @ts-expect-error Assign to error object
508
+ throw r.location=n.err.location,
509
+ // @ts-expect-error Assign to error object
510
+ r.originalMessage=n.err.message,r}return(null==t?void 0:t.captureLocation)||et(n.val),n.val}
511
+
512
+ // Main
513
+
514
+ function nt(e,t){var n=t&&t.cache?t.cache:ht,r=t&&t.serializer?t.serializer:at;return(t&&t.strategy?t.strategy:st)(e,{cache:n,serializer:r})}
515
+
516
+ // Strategy
517
+
518
+ function rt(e,t,n,r){var i,o=null==(i=r)||"number"==typeof i||"boolean"==typeof i?r:n(r),s=t.get(o);return void 0===s&&(s=e.call(this,r),t.set(o,s)),s}function it(e,t,n){var r=Array.prototype.slice.call(arguments,3),i=n(r),o=t.get(i);return void 0===o&&(o=e.apply(this,r),t.set(i,o)),o}function ot(e,t,n,r,i){return n.bind(t,e,r,i)}function st(e,t){return ot(e,this,1===e.length?rt:it,t.cache.create(),t.serializer)}
519
+ // Serializer
520
+ var at=function(){return JSON.stringify(arguments)};
521
+
522
+ // Cache
523
+
524
+ function lt(){this.cache=Object.create(null)}lt.prototype.get=function(e){return this.cache[e]},lt.prototype.set=function(e,t){this.cache[e]=t};var ct,ht={create:function(){
525
+ // @ts-ignore
526
+ return new lt}},ut={variadic:function(e,t){return ot(e,this,it,t.cache.create(),t.serializer)},monadic:function(e,t){return ot(e,this,rt,t.cache.create(),t.serializer)}};!function(e){
527
+ // When we have a placeholder but no value to format
528
+ e.MISSING_VALUE="MISSING_VALUE",
529
+ // When value supplied is invalid
530
+ e.INVALID_VALUE="INVALID_VALUE",
531
+ // When we need specific Intl API but it's not available
532
+ e.MISSING_INTL_API="MISSING_INTL_API"}(ct||(ct={}));var pt,ft=/** @class */function(e){function t(t,n,r){var i=e.call(this,t)||this;return i.code=n,i.originalMessage=r,i}return Q(t,e),t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),mt=/** @class */function(e){function t(t,n,r,i){return e.call(this,'Invalid values for "'.concat(t,'": "').concat(n,'". Options are "').concat(Object.keys(r).join('", "'),'"'),ct.INVALID_VALUE,i)||this}return Q(t,e),t}(ft),dt=/** @class */function(e){function t(t,n,r){return e.call(this,'Value for "'.concat(t,'" must be of type ').concat(n),ct.INVALID_VALUE,r)||this}return Q(t,e),t}(ft),gt=/** @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,'"'),ct.MISSING_VALUE,n)||this}return Q(t,e),t}(ft);function bt(e){return"function"==typeof e}
533
+ // TODO(skeleton): add skeleton support
534
+ function yt(e,t,n,r,i,o,
535
+ // For debugging
536
+ s){
537
+ // Hot path for straight simple msg translations
538
+ if(1===e.length&&re(e[0]))return[{type:pt.literal,value:e[0].value}];for(var a=[],l=0,c=e;l<c.length;l++){var h=c[l];
539
+ // Exit early for string parts.
540
+ if(re(h))a.push({type:pt.literal,value:h.value});else
541
+ // TODO: should this part be literal type?
542
+ // Replace `#` in plural rules with the actual numeric value.
543
+ if(he(h))"number"==typeof o&&a.push({type:pt.literal,value:n.getNumberFormat(t).format(o)});else{var u=h.value;
544
+ // Enforce that all required values are provided by the caller.
545
+ if(!i||!(u in i))throw new gt(u,s);var p=i[u];if(ie(h))p&&"string"!=typeof p&&"number"!=typeof p||(p="string"==typeof p||"number"==typeof p?String(p):""),a.push({type:"string"==typeof p?pt.literal:pt.object,value:p});else
546
+ // Recursively format plural and select parts' option — which can be a
547
+ // nested pattern structure. The choosing of the option to use is
548
+ // abstracted-by and delegated-to the part helper object.
549
+ if(se(h)){var f="string"==typeof h.style?r.date[h.style]:fe(h.style)?h.style.parsedOptions:void 0;a.push({type:pt.literal,value:n.getDateTimeFormat(t,f).format(p)})}else if(ae(h)){f="string"==typeof h.style?r.time[h.style]:fe(h.style)?h.style.parsedOptions:r.time.medium;a.push({type:pt.literal,value:n.getDateTimeFormat(t,f).format(p)})}else if(oe(h)){(f="string"==typeof h.style?r.number[h.style]:pe(h.style)?h.style.parsedOptions:void 0)&&f.scale&&(p*=f.scale||1),a.push({type:pt.literal,value:n.getNumberFormat(t,f).format(p)})}else{if(ue(h)){var m=h.children,d=h.value,g=i[d];if(!bt(g))throw new dt(d,"function",s);var b=g(yt(m,t,n,r,i,o).map((function(e){return e.value})));Array.isArray(b)||(b=[b]),a.push.apply(a,b.map((function(e){return{type:"string"==typeof e?pt.literal:pt.object,value:e}})))}if(le(h)){if(!(y=h.options[p]||h.options.other))throw new mt(h.value,p,Object.keys(h.options),s);a.push.apply(a,yt(y.value,t,n,r,i))}else if(ce(h)){var y;if(!(y=h.options["=".concat(p)])){if(!Intl.PluralRules)throw new ft('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n',ct.MISSING_INTL_API,s);var E=n.getPluralRules(t,{type:h.pluralType}).select(p-(h.offset||0));y=h.options[E]||h.options.other}if(!y)throw new mt(h.value,p,Object.keys(h.options),s);a.push.apply(a,yt(y.value,t,n,r,i,p-(h.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===pt.literal&&t.type===pt.literal?n.value+=t.value:e.push(t),e}),[])}(a)}
550
+ /*
551
+ Copyright (c) 2014, Yahoo! Inc. All rights reserved.
552
+ Copyrights licensed under the New BSD License.
553
+ See the accompanying LICENSE file for terms.
554
+ */
555
+ // -- MessageFormat --------------------------------------------------------
556
+ function Et(e,t){return t?Object.keys(e).reduce((function(n,r){var i,o;return n[r]=(i=e[r],(o=t[r])?te(te(te({},i||{}),o||{}),Object.keys(i).reduce((function(e,t){return e[t]=te(te({},i[t]),o[t]||{}),e}),{})):i),n}),te({},e)):e}function vt(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"}(pt||(pt={}));var Tt=/** @class */function(){function e(t,n,r,i){var o,s=this;if(void 0===n&&(n=e.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(e){var t=s.formatToParts(e);
557
+ // Hot path for straight simple msg translations
558
+ if(1===t.length)return t[0].value;var n=t.reduce((function(e,t){return e.length&&t.type===pt.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 yt(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},
559
+ // Defined first because it's used to build the format pattern.
560
+ 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`");
561
+ // Parse string messages into an AST.
562
+ this.ast=e.__parse(t,{ignoreTag:null==i?void 0:i.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.");
563
+ // Creates a new object with the specified `formats` merged with the default
564
+ // formats.
565
+ this.formats=Et(e.formats,r),this.formatters=i&&i.formatters||(void 0===(o=this.formatterCache)&&(o={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:nt((function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new((e=Intl.NumberFormat).bind.apply(e,ne([void 0],t,!1)))}),{cache:vt(o.number),strategy:ut.variadic}),getDateTimeFormat:nt((function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new((e=Intl.DateTimeFormat).bind.apply(e,ne([void 0],t,!1)))}),{cache:vt(o.dateTime),strategy:ut.variadic}),getPluralRules:nt((function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new((e=Intl.PluralRules).bind.apply(e,ne([void 0],t,!1)))}),{cache:vt(o.pluralRules),strategy:ut.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=tt,
566
+ // Default format options used as the prototype of the `formats` provided to the
567
+ // constructor. These are used when constructing the internal Intl.NumberFormat
568
+ // and Intl.DateTimeFormat instances.
569
+ 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}();const Ht={},Bt=(e,t,n)=>n?(t in Ht||(Ht[t]={}),e in Ht[t]||(Ht[t][e]=n),n):n,_t=(e,t)=>{if(null==t)return;if(t in Ht&&e in Ht[t])return Ht[t][e];const n=Zt(t);for(let r=0;r<n.length;r++){const i=Lt(n[r],e);if(i)return Bt(e,t,i)}};let Ct;const At=G({});function wt(e){return e in Ct}function Lt(e,t){if(!wt(e))return null;const n=function(e){return Ct[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 Pt(e,...t){delete Ht[e],At.update((n=>(n[e]=Z.all([n[e]||{},...t]),n)))}$([At],(([e])=>Object.keys(e))),At.subscribe((e=>Ct=e));const St={};function It(e){return St[e]}function Nt(e){return null!=e&&Zt(e).some((e=>{var t;return null==(t=It(e))?void 0:t.size}))}function Rt(e,t){const n=Promise.all(t.map((t=>(function(e,t){St[e].delete(t),0===St[e].size&&delete St[e]}(e,t),t().then((e=>e.default||e))))));return n.then((t=>Pt(e,...t)))}const Ot={};function Mt(e){if(!Nt(e))return e in Ot?Ot[e]:Promise.resolve();const t=function(e){return Zt(e).map((e=>{const t=It(e);return[e,t?[...t]:[]]})).filter((([,e])=>e.length>0))}(e);return Ot[e]=Promise.all(t.map((([e,t])=>Rt(e,t)))).then((()=>{if(Nt(e))return Mt(e);delete Ot[e]})),Ot[e]}const xt={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 Ut(){return xt}const Dt=G(!1);var Gt=Object.defineProperty,$t=Object.defineProperties,kt=Object.getOwnPropertyDescriptors,Ft=Object.getOwnPropertySymbols,jt=Object.prototype.hasOwnProperty,Vt=Object.prototype.propertyIsEnumerable,Xt=(e,t,n)=>t in e?Gt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;let Kt;const zt=G(null);function Yt(e){return e.split("-").map(((e,t,n)=>n.slice(0,t+1).join("-"))).reverse()}function Zt(e,t=Ut().fallbackLocale){const n=Yt(e);return t?[...new Set([...n,...Yt(t)])]:n}function Wt(){return null!=Kt?Kt:void 0}zt.subscribe((e=>{Kt=null!=e?e:void 0,"undefined"!=typeof window&&null!=e&&document.documentElement.setAttribute("lang",e)}));const Qt=(qt=((e,t)=>{for(var n in t||(t={}))jt.call(t,n)&&Xt(e,n,t[n]);if(Ft)for(var n of Ft(t))Vt.call(t,n)&&Xt(e,n,t[n]);return e})({},zt),$t(qt,kt({set:e=>{if(e&&function(e){if(null==e)return;const t=Zt(e);for(let e=0;e<t.length;e++){const n=t[e];if(wt(n))return n}}(e)&&Nt(e)){const{loadingDelay:t}=Ut();let n;return"undefined"!=typeof window&&null!=Wt()&&t?n=window.setTimeout((()=>Dt.set(!0)),t):Dt.set(!0),Mt(e).then((()=>{zt.set(e)})).finally((()=>{clearTimeout(n),Dt.set(!1)}))}return zt.set(e)}})));var qt;const Jt=e=>{const t=Object.create(null);return n=>{const r=JSON.stringify(n);return r in t?t[r]:t[r]=e(n)}};var en=Object.defineProperty,tn=Object.getOwnPropertySymbols,nn=Object.prototype.hasOwnProperty,rn=Object.prototype.propertyIsEnumerable,on=(e,t,n)=>t in e?en(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,sn=(e,t)=>{for(var n in t||(t={}))nn.call(t,n)&&on(e,n,t[n]);if(tn)for(var n of tn(t))rn.call(t,n)&&on(e,n,t[n]);return e},an=(e,t)=>{var n={};for(var r in e)nn.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&tn)for(var r of tn(e))t.indexOf(r)<0&&rn.call(e,r)&&(n[r]=e[r]);return n};const ln=(e,t)=>{const{formats:n}=Ut();if(e in n&&t in n[e])return n[e][t];throw new Error(`[svelte-i18n] Unknown "${t}" ${e} format.`)},cn=Jt((e=>{var t=e,{locale:n,format:r}=t,i=an(t,["locale","format"]);if(null==n)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return r&&(i=ln("number",r)),new Intl.NumberFormat(n,i)})),hn=Jt((e=>{var t=e,{locale:n,format:r}=t,i=an(t,["locale","format"]);if(null==n)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return r?i=ln("date",r):0===Object.keys(i).length&&(i=ln("date","short")),new Intl.DateTimeFormat(n,i)})),un=Jt((e=>{var t=e,{locale:n,format:r}=t,i=an(t,["locale","format"]);if(null==n)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return r?i=ln("time",r):0===Object.keys(i).length&&(i=ln("time","short")),new Intl.DateTimeFormat(n,i)})),pn=Jt((
570
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
571
+ (e,t=Wt())=>new Tt(e,t,Ut().formats,{ignoreTag:Ut().ignoreTag}))),fn=(e,t={})=>{var n,r,i,o;let s=t;"object"==typeof e&&(s=e,e=s.id);const{values:a,locale:l=Wt(),default:c}=s;if(null==l)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let h=_t(e,l);if(h){if("string"!=typeof h)return console.warn(`[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof h}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`),h}else h=null!=(o=null!=(i=null==(r=(n=Ut()).handleMissingMessage)?void 0:r.call(n,{locale:l,id:e,defaultValue:c}))?i:c)?o:e;if(!a)return h;let u=h;try{u=pn(h,l).format(a)}catch(t){t instanceof Error&&console.warn(`[svelte-i18n] Message "${e}" has syntax error:`,t.message)}return u},mn=(e,t)=>((e={})=>{var t=e,{locale:n=Wt()}=t,r=an(t,["locale"]);return un(sn({locale:n},r))})(t).format(e),dn=(e,t)=>((e={})=>{var t=e,{locale:n=Wt()}=t,r=an(t,["locale"]);return hn(sn({locale:n},r))})(t).format(e),gn=(e,t)=>((e={})=>{var t=e,{locale:n=Wt()}=t,r=an(t,["locale"]);return cn(sn({locale:n},r))})(t).format(e),bn=(e,t=Wt())=>_t(e,t),yn=$([Qt,At],(()=>fn));function En(e,t){Pt(e,t)}$([Qt],(()=>mn)),$([Qt],(()=>dn)),$([Qt],(()=>gn)),$([Qt,At],(()=>bn));const vn={en:{deposit:{success:{title:"{amount} {currency}",subTitle:"Deposited in your account",text:"Your deposit is successful"},pending:{title:"{amount} {currency}",subTitle:"Transaction is in progress",text:"Thank you. Your deposit is being processed."},reject:{title:"Deposit Rejected",subTitle:" ",text:"{errorText}"},fail:{title:"Error",subTitle:" ",text:"{errorText}"},cancel:{title:"You have cancelled the transaction",subTitle:" ",text:"{errorText}"}},withdrawal:{success:{title:"{amount} {currency}",subTitle:"Withdrawn from your account",text:"Your withdrawal is successful"},pending:{title:"{amount} {currency}",subTitle:"Withdrawn from your account",text:"Thank you. Your withdrawal is being processed."},reject:{title:"Withdrawal Rejected",subTitle:" ",text:"{errorText}"},fail:{title:"Error",subTitle:" ",text:"{errorText}"},cancel:{title:"You have cancelled the transaction",subTitle:" ",text:"{errorText}"}},reference:"Reference ID: {code}",close:"BACK TO MERCHANT"}},Tn={Success:"/txn-success.png",Voided:"/txn-success.png",Rejected:"/txn-failed.png",Failed:"/txn-failed.png",Canceled:"/txn-failed.png",PendingNotification:"/txn-pending.png","Pending Approval III":"/txn-pending.png","Pending Confirmation":"/txn-pending.png","Pending Approval I":"/txn-pending.png","Pending Offline Notification":"/txn-pending.png","Pending Approval II":"/txn-pending.png"},Hn={Deposit:"deposit",Withdraw:"withdrawal"},Bn={Success:"success",Voided:"success",PendingNotification:"pending","Pending Approval III":"pending","Pending Confirmation":"pending","Pending Approval I":"pending","Pending Offline Notification":"pending","Pending Approval II":"pending",Rejected:"reject",Failed:"fail",Canceled:"cancel"},{document:_n}=c;function Cn(e,t,n){const r=e.slice();return r[32]=t[n],r[34]=n,r}
572
+ // (168:5) {#if txnInfo}
573
+ function An(e){let t,n,i,o,s,l,c,E,v,T,H,B,_,C,A,w,L,P,S,I,N,R,O,M,x,U=/*$_*/e[9]("close")+"",D=/*txnInfo*/e[2].referenceId&&wn(e),G=/*receiptFields*/e[3].length&&Ln(e);return{c(){t=f("div"),n=f("span"),n.innerHTML='<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.33279 0.00663425C7.89688 0.105453 6.49895 0.511564 5.2336 1.19749C3.96825 1.88341 2.86499 2.83313 1.9985 3.9824C0.985792 5.31809 0.356137 6.84155 0.0769857 8.63039C-0.0256619 9.28509 -0.0256619 10.7147 0.0769857 11.3694C0.505101 14.1158 1.83326 16.3704 3.9851 18.0027C5.31451 19.0117 6.84672 19.6451 8.63053 19.923C9.28522 20.0257 10.7148 20.0257 11.3695 19.923C13.803 19.5437 15.8709 18.4471 17.4232 16.7121C18.8001 15.1736 19.595 13.4737 19.923 11.3694C20.0257 10.7147 20.0257 9.28509 19.923 8.63039C19.6451 6.84655 19.0117 5.31433 18.0028 3.9849C17.1973 2.91304 16.1846 2.01398 15.0249 1.34112C13.8652 0.668249 12.5821 0.235297 11.2518 0.0679732C10.614 0.00852964 9.97311 -0.0119547 9.33279 0.00663425ZM11.3019 1.33481C14.7956 1.87685 17.641 4.45559 18.4885 7.848C18.69 8.65292 18.7288 9.00343 18.7288 9.99988C18.7288 10.6946 18.715 10.97 18.6675 11.2855C18.4018 13.0557 17.6016 14.7024 16.374 16.0052C15.1464 17.308 13.5501 18.2045 11.7988 18.5748C10.686 18.8127 9.31401 18.8127 8.20117 18.5748C4.93272 17.8788 2.33398 15.3927 1.52156 12.1868C1.31126 11.3556 1.2712 11.0101 1.2712 9.99988C1.2712 8.98966 1.31126 8.64416 1.52156 7.81295C1.91376 6.29839 2.70396 4.91631 3.81023 3.81003C4.9165 2.70374 6.29856 1.91353 7.81311 1.52133C8.0885 1.45123 8.49409 1.36986 8.7144 1.34107L9.21512 1.27347C9.46673 1.23967 10.9689 1.28349 11.3019 1.33481ZM9.5481 5.25925C8.67685 5.35439 7.88821 5.8138 7.33116 6.54987C7.12462 6.82277 7.042 7.06437 7.09332 7.25339C7.17594 7.56009 7.55398 7.71781 7.87945 7.58262C7.94079 7.55633 8.16236 7.36355 8.37016 7.15325C8.79201 6.72763 8.99981 6.59995 9.41541 6.51232C10.5533 6.27197 11.541 6.85532 11.596 7.79918C11.6086 8.02326 11.5998 8.08084 11.5259 8.24107C11.3632 8.59659 11.0177 8.88826 10.5095 9.09982C10.1439 9.24341 9.76155 9.33975 9.3716 9.38649L9.1275 9.40902L9.13876 10.5306L9.14878 11.6523L9.23265 11.8025C9.42542 12.1517 9.96745 12.2118 10.2378 11.9152C10.3793 11.7587 10.4056 11.6247 10.4256 10.9638L10.4431 10.3416L10.6635 10.2815C12.1518 9.88095 13.1433 8.66669 12.973 7.44993C12.8579 6.62248 12.3709 5.96027 11.586 5.56845C11.0778 5.31433 10.2278 5.18539 9.5481 5.25925ZM9.37285 13.0568C9.06365 13.2108 8.90092 13.4799 8.89967 13.8404C8.89717 14.6003 9.77342 15.0071 10.3405 14.5089C10.4789 14.3866 10.576 14.2244 10.6186 14.0447C10.6612 13.8649 10.6471 13.6764 10.5783 13.505C10.3755 13.0493 9.81098 12.839 9.37285 13.0568Z" fill="#111111"></path></svg>',i=d(),o=f("span"),o.innerHTML='<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13" fill="none"><path d="M12.7711 0.229435C13.0582 0.517619 13.0755 0.973729 12.8215 1.28141L12.7711 1.33721L7.60685 6.50068L12.7711 11.6641C12.9128 11.8066 12.9944 11.998 12.999 12.1988C13.0035 12.3997 12.9308 12.5946 12.7957 12.7433C12.6606 12.892 12.4735 12.9832 12.2731 12.9979C12.0728 13.0126 11.8744 12.9497 11.7191 12.8223L11.6633 12.7719L6.49958 7.60791L1.3359 12.7719C1.19349 12.9136 1.00207 12.9952 0.801203 12.9998C0.60034 13.0044 0.405398 12.9316 0.256676 12.7965C0.107955 12.6614 0.0168256 12.4744 0.00212786 12.274C-0.0125699 12.0736 0.0502877 11.8753 0.177706 11.7199L0.228086 11.6641L5.3923 6.50068L0.228086 1.33721C0.0863637 1.1948 0.00478102 1.00338 0.000203544 0.802529C-0.00437393 0.601674 0.0684038 0.40674 0.203491 0.258024C0.338579 0.109308 0.525647 0.0181829 0.726024 0.00348576C0.9264 -0.0112114 1.12476 0.0516437 1.28011 0.179057L1.3359 0.229435L6.49958 5.39345L11.6633 0.229435C11.736 0.156695 11.8223 0.0989949 11.9174 0.0596283C12.0124 0.0202617 12.1143 0 12.2172 0C12.32 0 12.4219 0.0202617 12.5169 0.0596283C12.612 0.0989949 12.6983 0.156695 12.7711 0.229435Z" fill="#111111"></path></svg>',s=d(),l=f("div"),c=f("img"),v=d(),T=f("div"),H=f("h2"),B=m(/*title*/e[5]),_=d(),C=f("div"),A=m(/*subTitle*/e[4]),w=d(),L=f("div"),P=m(/*text*/e[6]),S=d(),D&&D.c(),I=d(),G&&G.c(),N=d(),R=f("button"),O=m(U),b(t,"class","HeaderButtonContainer"),a(c.src,E=/*statusImageUrl*/e[7])||b(c,"src",E),b(c,"class","StatusLogo"),b(H,"class","Title"),b(C,"class","SubTitle"),b(T,"class","TitleWrapper"),b(l,"class","ReceiptWrapper"),b(L,"class","Text"),b(R,"class","PrimaryButton")},m(r,a){u(r,t,a),h(t,n),h(t,i),h(t,o),u(r,s,a),u(r,l,a),h(l,c),h(l,v),h(l,T),h(T,H),h(H,B),h(T,_),h(T,C),h(C,A),u(r,w,a),u(r,L,a),h(L,P),u(r,S,a),D&&D.m(r,a),u(r,I,a),G&&G.m(r,a),u(r,N,a),u(r,R,a),h(R,O),M||(x=[g(n,"click",/*liveChat*/e[11]),g(o,"click",/*closeReceipt*/e[10]),g(R,"click",/*closeReceipt*/e[10])],M=!0)},p(e,t){/*statusImageUrl*/128&t[0]&&!a(c.src,E=/*statusImageUrl*/e[7])&&b(c,"src",E),/*title*/32&t[0]&&y(B,/*title*/e[5]),/*subTitle*/16&t[0]&&y(A,/*subTitle*/e[4]),/*text*/64&t[0]&&y(P,/*text*/e[6]),/*txnInfo*/e[2].referenceId?D?D.p(e,t):(D=wn(e),D.c(),D.m(I.parentNode,I)):D&&(D.d(1),D=null),/*receiptFields*/e[3].length?G?G.p(e,t):(G=Ln(e),G.c(),G.m(N.parentNode,N)):G&&(G.d(1),G=null),/*$_*/512&t[0]&&U!==(U=/*$_*/e[9]("close")+"")&&y(O,U)},d(e){e&&p(t),e&&p(s),e&&p(l),e&&p(w),e&&p(L),e&&p(S),D&&D.d(e),e&&p(I),G&&G.d(e),e&&p(N),e&&p(R),M=!1,r(x)}}}
574
+ // (189:7) {#if txnInfo.referenceId}
575
+ function wn(e){let t,n,r=/*$_*/e[9]("reference",{values:{code:/*txnInfo*/e[2].referenceId}})+"";return{c(){t=f("div"),n=m(r),b(t,"class","Reference")},m(e,r){u(e,t,r),h(t,n)},p(e,t){/*$_, txnInfo*/516&t[0]&&r!==(r=/*$_*/e[9]("reference",{values:{code:/*txnInfo*/e[2].referenceId}})+"")&&y(n,r)},d(e){e&&p(t)}}}
576
+ // (192:7) {#if receiptFields.length}
577
+ function Ln(e){let t,n=/*receiptFields*/e[3],r=[];for(let t=0;t<n.length;t+=1)r[t]=On(Cn(e,n,t));return{c(){for(let e=0;e<r.length;e+=1)r[e].c();t=m("")},m(e,n){for(let t=0;t<r.length;t+=1)r[t]&&r[t].m(e,n);u(e,t,n)},p(e,i){if(/*openUrlInNewTab, receiptFields, qrCodeContainer, FieldTypes*/4362&i[0]){let o;for(n=/*receiptFields*/e[3],o=0;o<n.length;o+=1){const s=Cn(e,n,o);r[o]?r[o].p(s,i):(r[o]=On(s),r[o].c(),r[o].m(t.parentNode,t))}for(;o<r.length;o+=1)r[o].d(1);r.length=n.length}},d(e){!function(e,t){for(let n=0;n<e.length;n+=1)e[n]&&e[n].d(t)}(r,e),e&&p(t)}}}
578
+ // (209:17) {:else}
579
+ function Pn(e){let t,n,r=/*field*/e[32].defaultValue+"";return{c(){t=f("span"),n=m(r),b(t,"class","Label")},m(e,r){u(e,t,r),h(t,n)},p(e,t){/*receiptFields*/8&t[0]&&r!==(r=/*field*/e[32].defaultValue+"")&&y(n,r)},d(e){e&&p(t)}}}
580
+ // (203:58)
581
+ function Sn(e){let t,n,r,i,o,s,a=/*field*/e[32].description+"",l=/*field*/e[32].Name+"";return{c(){t=f("span"),n=m(a),r=d(),i=f("a"),o=m(l),b(i,"href",s=/*field*/e[32].defaultValue),b(i,"target","_blank"),b(i,"rel","noopener noreferrer")},m(e,s){u(e,t,s),h(t,n),h(t,r),h(t,i),h(i,o)},p(e,t){/*receiptFields*/8&t[0]&&a!==(a=/*field*/e[32].description+"")&&y(n,a),/*receiptFields*/8&t[0]&&l!==(l=/*field*/e[32].Name+"")&&y(o,l),/*receiptFields*/8&t[0]&&s!==(s=/*field*/e[32].defaultValue)&&b(i,"href",s)},d(e){e&&p(t)}}}
582
+ // (201:59)
583
+ function In(e){let t,n,r;return{c(){t=f("img"),a(t.src,n=/*field*/e[32].defaultValue)||b(t,"src",n),b(t,"title",r=/*field*/e[32].description),b(t,"alt","")},m(e,n){u(e,t,n)},p(e,i){/*receiptFields*/8&i[0]&&!a(t.src,n=/*field*/e[32].defaultValue)&&b(t,"src",n),/*receiptFields*/8&i[0]&&r!==(r=/*field*/e[32].description)&&b(t,"title",r)},d(e){e&&p(t)}}}
584
+ // (199:58)
585
+ function Nn(e){let t,n=/*field*/e[32].defaultValue+"";return{c(){t=f("span")},m(e,r){u(e,t,r),t.innerHTML=n},p(e,r){/*receiptFields*/8&r[0]&&n!==(n=/*field*/e[32].defaultValue+"")&&(t.innerHTML=n)},d(e){e&&p(t)}}}
586
+ // (195:17) {#if field.type === FieldTypes.QRCode}
587
+ function Rn(e){let t,n,r,i,o,s=/*field*/e[32].defaultValue+"";function a(){/*click_handler*/
588
+ return e[22](/*field*/e[32])}return{c(){t=f("div"),n=f("div"),r=m(s),b(t,"class","QRCode")},m(s,l){u(s,t,l),h(t,n),h(n,r),
589
+ /*div0_binding*/e[21](n),i||(o=g(t,"click",a),i=!0)},p(t,n){e=t,/*receiptFields*/8&n[0]&&s!==(s=/*field*/e[32].defaultValue+"")&&y(r,s)},d(n){n&&p(t)
590
+ /*div0_binding*/,e[21](null),i=!1,o()}}}
591
+ // (193:10) {#each receiptFields as field, index}
592
+ function On(e){let t,n;function r(e,t){/*field*/
593
+ return e[32].type===/*FieldTypes*/e[1].QRCode?Rn:/*field*/e[32].type===/*FieldTypes*/e[1].Html?Nn:/*field*/e[32].type===/*FieldTypes*/e[1].Image?In:/*field*/e[32].type===/*FieldTypes*/e[1].Link?Sn:Pn}let i=r(e),o=i(e);return{c(){t=f("div"),o.c(),n=d(),b(t,"class","ReceiptField")},m(e,r){u(e,t,r),o.m(t,null),h(t,n)},p(e,s){i===(i=r(e))&&o?o.p(e,s):(o.d(1),o=i(e),o&&(o.c(),o.m(t,n)))},d(e){e&&p(t),o.d()}}}function Mn(t){let n,r,i,o,s,l=/*txnInfo*/t[2]&&An(t);return{c(){n=f("script"),i=d(),o=f("div"),s=f("div"),l&&l.c(),this.c=e,a(n.src,r=xn)||b(n,"src",r),b(s,"class","CashierReceiptPage"),b(o,"class","CashierReceiptPageWidget")},m(e,r){h(_n.head,n),u(e,i,r),u(e,o,r),h(o,s),l&&l.m(s,null)
594
+ /*div1_binding*/,t[23](o)},p(e,t){/*txnInfo*/e[2]?l?l.p(e,t):(l=An(e),l.c(),l.m(s,null)):l&&(l.d(1),l=null)},i:e,o:e,d(e){p(n),e&&p(i),e&&p(o),l&&l.d()
595
+ /*div1_binding*/,t[23](null)}}}let xn="https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js";function Un(e,t,n){let r;var i,o;i=yn,o=e=>n(9,r=e),e.$$.on_destroy.push(l(i,o));let{endpoint:s}=t,{session:a}=t,{lang:c="en"}=t,{translationurl:h}=t,{assetsurl:u}=t,{customerid:p}=t,{clientstyling:f=""}=t,{clientstylingurl:m=""}=t;var d;let g;!function(e){e.Unknown="Unknown",e.Text="Text",e.Boolean="Boolean",e.Number="Number",e.Money="Money",e.DateTime="DateTime",e.Lookup="Lookup",e.IpAddress="IpAddress",e.Date="Date",e.Time="Time",e.LookupCollection="LookupCollection",e.Hidden="Hidden",e.Label="Label",e.Password="Password",e.Link="Link",e.Image="Image",e.Html="Html",e.QRCode="QR"}(d||(d={}));let b,y,E,v,T,H=[],_=[];const C=()=>{var e;e=c,Qt.set(e)};Object.keys(vn).forEach((e=>{En(e,vn[e])}));const A=()=>{const e=new URL(`${s}/v1/player/${p}/payment/GetPaymentInfo`),t=new Headers;t.append("accept","application/json"),t.append("Content-Type","application/json");const i={method:"POST",headers:t,body:JSON.stringify({XPaymentSessionToken:a})};fetch(e,i).then((e=>e.json())).then((e=>{var t,i,o,s,a,l;n(2,g={type:e.Transaction.Type,referenceId:e.Transaction.Code,status:null===(t=e.Transaction.Status)||void 0===t?void 0:t.Status,message:null===(i=e.Transaction.Status)||void 0===i?void 0:i.Message,amount:null===(o=e.Transaction.Amounts[0])||void 0===o?void 0:o.Amount,currency:null===(s=e.Transaction.Amounts[0])||void 0===s?void 0:s.Currency}),n(3,H=e.ReceiptInfo&&e.ReceiptInfo.ReceiptFields?e.ReceiptInfo.ReceiptFields.map((e=>({type:e.Type,name:e.Name,description:e.Description,defaultValue:e.DefaultValue,useCopyButton:e.UseCopyButton,usePrintButton:e.UsePrintButton}))):[]),n(5,y=r((a=g.status,l=g.type,`${Hn[l]}.${Bn[a]}.title`),{values:{amount:g.amount,currency:g.currency}})),n(4,b=r(((e,t)=>`${Hn[t]}.${Bn[e]}.subTitle`)(g.status,g.type))),n(6,E=r(((e,t)=>`${Hn[t]}.${Bn[e]}.text`)(g.status,g.type),{values:{errorText:g.message}})),n(7,v=((e,t)=>`${e+Tn[t]}`)(u,g.status))}))},w=e=>{e&&window.postMessage({type:"NavigateTo",path:e,target:"_blank",externalLink:!1},window.location.href)};return e.$$set=e=>{"endpoint"in e&&n(13,s=e.endpoint),"session"in e&&n(14,a=e.session),"lang"in e&&n(15,c=e.lang),"translationurl"in e&&n(16,h=e.translationurl),"assetsurl"in e&&n(17,u=e.assetsurl),"customerid"in e&&n(18,p=e.customerid),"clientstyling"in e&&n(19,f=e.clientstyling),"clientstylingurl"in e&&n(20,m=e.clientstylingurl)},e.$$.update=()=>{/*endpoint, session, customerid*/286720&e.$$.dirty[0]&&s&&a&&p&&A(),/*lang*/32768&e.$$.dirty[0]&&c&&C(),/*lang, translationurl*/98304&e.$$.dirty[0]&&c&&h&&(()=>{if(h)fetch(h).then((e=>e.json())).then((e=>{Object.keys(e).forEach((t=>{En(t,e[t])}))})).catch((e=>{}))})(),/*clientstyling, customStylingContainer*/524289&e.$$.dirty[0]&&f&&T&&(()=>{let e=document.createElement("style");e.innerHTML=f,T.appendChild(e)})(),/*clientstylingurl, customStylingContainer*/1048577&e.$$.dirty[0]&&m&&T&&(()=>{let e=new URL(m),t=document.createElement("style");fetch(e.href).then((e=>e.text())).then((e=>{t.innerHTML=e,setTimeout((()=>{T.appendChild(t)}),1),setTimeout((()=>{}),500)}))})()},[T,d,g,H,b,y,E,v,_,r,()=>{dispatchEvent(new CustomEvent("closeCashierReceiptPage",{bubbles:!0,cancelable:!0,composed:!0}))},()=>{dispatchEvent(new CustomEvent("liveChatReceiptPage",{bubbles:!0,cancelable:!0,composed:!0}))},w,s,a,c,h,u,p,f,m,function(e){B[e?"unshift":"push"]((()=>{_[_.length]=e,n(8,_)}))},e=>{w(e.description)},function(e){B[e?"unshift":"push"]((()=>{T=e,n(0,T)}))}]}class Dn extends U{constructor(e){super();const t=document.createElement("style");t.textContent=".CashierReceiptPageWidget{height:100%}.CashierReceiptPage{border-radius:var(--emw--border-radius-large, 6px);background:var(--emw--color-background, #fff);padding:0 0 10px 0;margin:0 auto;max-width:530px;position:relative;word-wrap:break-word}.ReceiptWrapper{width:100%;height:200px;border-bottom:1px solid rgba(0, 0, 0, 0.1);background:linear-gradient(180deg, #e8e9eb, hsla(0, 0%, 75.7%, 0));display:flex;align-items:flex-end;flex-direction:row-reverse;position:relative}.TitleWrapper{display:flex;position:absolute;left:var(--emw--spacing-small, 12px);bottom:11px;flex-direction:column;justify-content:flex-end;flex-shrink:0}.Title{color:var(--emw--color-gray-300, #111);font-size:var(--emw--font-size-x-large, 26px);font-weight:var(--emw--font-weight-semibold, 500);margin-bottom:0;line-height:var(--emw--font-size-x-large, 26px)}.SubTitle{font-weight:var(--emw--font-weight-normal, 400);font-size:var(--emw--font-size-small, 14px);color:var(--emw--color-gray-150, #666);margin-top:var(--emw--spacing-small, 12px)}.Text{padding:var(--emw--spacing-small, 12px);font-size:var(--emw--font-size-small, 14px);color:var(--header-text-color, #111)}.Reference{color:var(--header-sub-text-color, #666);font-size:var(--emw--font-size-x-small, 12px);font-weight:var(--emw--font-weight-normal, 400);margin:0 var(--emw--spacing-small, 12px) 0}.PrimaryButton{color:var(--emw--color-white, #FFF);border:none;background:var(--emw--color-primary, #7EC51E);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:5px;border-radius:var(--emw--border-radius-medium, 5px);height:36px;font-size:var(--emw--font-size-x-small, 12px);margin:var(--emw--spacing-large, 20px) var(--emw--spacing-small, 12px);width:calc(100% - var(--emw--spacing-small, 12px) * 2)}.PrimaryButton:hover{background:var(--emw--color-hover, #71B11B)}.PrimaryButton:active{background:var(--emw--color-active, #5C950F)}.HeaderButtonContainer{position:absolute;z-index:1;right:0;display:flex;align-items:center;gap:var(--emw--spacing-small, 12px);padding:var(--emw--spacing-small, 12px)}.HeaderButtonContainer>span{cursor:pointer}.ReceiptField{font-weight:var(--emw--font-weight-normal, 400);font-size:var(--emw--font-size-small, 14px);line-height:var(--emw--font-size-medium, 16px);color:var(--emw--color-gray-150, #666);margin:var(--emw--spacing-small, 12px)}",this.shadowRoot.appendChild(t),x(this,{target:this.shadowRoot,props:E(this.attributes),customElement:!0},Un,Mn,o,{endpoint:13,session:14,lang:15,translationurl:16,assetsurl:17,customerid:18,clientstyling:19,clientstylingurl:20},null,[-1,-1]),e&&(e.target&&u(e.target,this,e.anchor),e.props&&(this.$set(e.props),I()))}static get observedAttributes(){return["endpoint","session","lang","translationurl","assetsurl","customerid","clientstyling","clientstylingurl"]}get endpoint(){return this.$$.ctx[13]}set endpoint(e){this.$$set({endpoint:e}),I()}get session(){return this.$$.ctx[14]}set session(e){this.$$set({session:e}),I()}get lang(){return this.$$.ctx[15]}set lang(e){this.$$set({lang:e}),I()}get translationurl(){return this.$$.ctx[16]}set translationurl(e){this.$$set({translationurl:e}),I()}get assetsurl(){return this.$$.ctx[17]}set assetsurl(e){this.$$set({assetsurl:e}),I()}get customerid(){return this.$$.ctx[18]}set customerid(e){this.$$set({customerid:e}),I()}get clientstyling(){return this.$$.ctx[19]}set clientstyling(e){this.$$set({clientstyling:e}),I()}get clientstylingurl(){return this.$$.ctx[20]}set clientstylingurl(e){this.$$set({clientstylingurl:e}),I()}}return!customElements.get("cashier-receipt-page")&&customElements.define("cashier-receipt-page",Dn),Dn}));
596
+ //# sourceMappingURL=cashier-receipt-page.js.map