@kong-ui-public/i18n 2.2.9-pr.1775.ff62e9772.0 → 2.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/i18n.es.js CHANGED
@@ -397,13 +397,13 @@ function at(e) {
397
397
  case "integer-width":
398
398
  if (a.options.length > 1)
399
399
  throw new RangeError("integer-width stems only accept a single optional option");
400
- a.options[0].replace(rt, function(u, l, h, m, c, E) {
400
+ a.options[0].replace(rt, function(u, l, h, m, c, b) {
401
401
  if (l)
402
402
  t.minimumIntegerDigits = h.length;
403
403
  else {
404
404
  if (m && c)
405
405
  throw new Error("We currently do not support maximum integer digits");
406
- if (E)
406
+ if (b)
407
407
  throw new Error("We currently do not support exact integer digits");
408
408
  }
409
409
  return "";
@@ -417,8 +417,8 @@ function at(e) {
417
417
  if (ie.test(a.stem)) {
418
418
  if (a.options.length > 1)
419
419
  throw new RangeError("Fraction-precision stems only accept a single optional option");
420
- a.stem.replace(ie, function(u, l, h, m, c, E) {
421
- return h === "*" ? t.minimumFractionDigits = l.length : m && m[0] === "#" ? t.maximumFractionDigits = m.length : c && E ? (t.minimumFractionDigits = c.length, t.maximumFractionDigits = c.length + E.length) : (t.minimumFractionDigits = l.length, t.maximumFractionDigits = l.length), "";
420
+ a.stem.replace(ie, function(u, l, h, m, c, b) {
421
+ return h === "*" ? t.minimumFractionDigits = l.length : m && m[0] === "#" ? t.maximumFractionDigits = m.length : c && b ? (t.minimumFractionDigits = c.length, t.maximumFractionDigits = c.length + b.length) : (t.minimumFractionDigits = l.length, t.maximumFractionDigits = l.length), "";
422
422
  });
423
423
  var i = a.options[0];
424
424
  i === "w" ? t = f(f({}, t), { trailingZeroDisplay: "stripIfInteger" }) : i && (t = f(f({}, t), oe(i)));
@@ -2192,8 +2192,8 @@ var yt = (
2192
2192
  var c = bt(m.val);
2193
2193
  if (c.length === 0)
2194
2194
  return this.error(g.EXPECT_ARGUMENT_STYLE, v(this.clonePosition(), this.clonePosition()));
2195
- var E = v(h, this.clonePosition());
2196
- l = { style: c, styleLocation: E };
2195
+ var b = v(h, this.clonePosition());
2196
+ l = { style: c, styleLocation: b };
2197
2197
  }
2198
2198
  var x = this.tryParseArgumentClose(a);
2199
2199
  if (x.err)
@@ -2210,13 +2210,13 @@ var yt = (
2210
2210
  } else {
2211
2211
  if (p.length === 0)
2212
2212
  return this.error(g.EXPECT_DATE_TIME_SKELETON, d);
2213
- var b = p;
2214
- this.locale && (b = it(p, this.locale));
2213
+ var E = p;
2214
+ this.locale && (E = it(p, this.locale));
2215
2215
  var c = {
2216
2216
  type: D.dateTime,
2217
- pattern: b,
2217
+ pattern: E,
2218
2218
  location: l.styleLocation,
2219
- parsedOptions: this.shouldParseSkeletons ? $e(b) : {}
2219
+ parsedOptions: this.shouldParseSkeletons ? $e(E) : {}
2220
2220
  }, T = s === "date" ? y.date : y.time;
2221
2221
  return {
2222
2222
  val: { type: T, value: n, location: d, style: c },
@@ -2349,20 +2349,20 @@ var yt = (
2349
2349
  if (u.has(l))
2350
2350
  return this.error(r === "select" ? g.DUPLICATE_SELECT_ARGUMENT_SELECTOR : g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, h);
2351
2351
  l === "other" && (o = !0), this.bumpSpace();
2352
- var E = this.clonePosition();
2352
+ var b = this.clonePosition();
2353
2353
  if (!this.bumpIf("{"))
2354
2354
  return this.error(r === "select" ? g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT : g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, v(this.clonePosition(), this.clonePosition()));
2355
2355
  var x = this.parseMessage(t + 1, r, n);
2356
2356
  if (x.err)
2357
2357
  return x;
2358
- var d = this.tryParseArgumentClose(E);
2358
+ var d = this.tryParseArgumentClose(b);
2359
2359
  if (d.err)
2360
2360
  return d;
2361
2361
  s.push([
2362
2362
  l,
2363
2363
  {
2364
2364
  value: x.val,
2365
- location: v(E, this.clonePosition())
2365
+ location: v(b, this.clonePosition())
2366
2366
  }
2367
2367
  ]), u.add(l), this.bumpSpace(), i = this.parseIdentifierIfPossible(), l = i.value, h = i.location;
2368
2368
  }
@@ -2568,26 +2568,26 @@ function k(e, t, r, n, a, i, o) {
2568
2568
  continue;
2569
2569
  }
2570
2570
  if (xe(h)) {
2571
- var E = typeof h.style == "string" ? n.date[h.style] : J(h.style) ? h.style.parsedOptions : void 0;
2571
+ var b = typeof h.style == "string" ? n.date[h.style] : J(h.style) ? h.style.parsedOptions : void 0;
2572
2572
  s.push({
2573
2573
  type: H.literal,
2574
- value: r.getDateTimeFormat(t, E).format(c)
2574
+ value: r.getDateTimeFormat(t, b).format(c)
2575
2575
  });
2576
2576
  continue;
2577
2577
  }
2578
2578
  if (Te(h)) {
2579
- var E = typeof h.style == "string" ? n.time[h.style] : J(h.style) ? h.style.parsedOptions : n.time.medium;
2579
+ var b = typeof h.style == "string" ? n.time[h.style] : J(h.style) ? h.style.parsedOptions : n.time.medium;
2580
2580
  s.push({
2581
2581
  type: H.literal,
2582
- value: r.getDateTimeFormat(t, E).format(c)
2582
+ value: r.getDateTimeFormat(t, b).format(c)
2583
2583
  });
2584
2584
  continue;
2585
2585
  }
2586
2586
  if (ye(h)) {
2587
- var E = typeof h.style == "string" ? n.number[h.style] : Ne(h.style) ? h.style.parsedOptions : void 0;
2588
- E && E.scale && (c = c * (E.scale || 1)), s.push({
2587
+ var b = typeof h.style == "string" ? n.number[h.style] : Ne(h.style) ? h.style.parsedOptions : void 0;
2588
+ b && b.scale && (c = c * (b.scale || 1)), s.push({
2589
2589
  type: H.literal,
2590
- value: r.getNumberFormat(t, E).format(c)
2590
+ value: r.getNumberFormat(t, b).format(c)
2591
2591
  });
2592
2592
  continue;
2593
2593
  }
@@ -2595,7 +2595,7 @@ function k(e, t, r, n, a, i, o) {
2595
2595
  var x = h.children, d = h.value, p = a[d];
2596
2596
  if (!Bt(p))
2597
2597
  throw new It(d, "function", o);
2598
- var b = k(x, t, r, n, a, i), T = p(b.map(function(R) {
2598
+ var E = k(x, t, r, n, a, i), T = p(E.map(function(R) {
2599
2599
  return R.value;
2600
2600
  }));
2601
2601
  Array.isArray(T) || (T = [T]), s.push.apply(s, T.map(function(R) {
@@ -3052,23 +3052,23 @@ function ge(e, t) {
3052
3052
  return f(f(f({}, r), e), { date: ce(V(r.date, t), V(e.date || {}, t)), time: ce(V(r.time, t), V(e.time || {}, t)) });
3053
3053
  }
3054
3054
  var pe = function(e, t, r, n, a) {
3055
- var i = e.locale, o = e.formats, s = e.messages, u = e.defaultLocale, l = e.defaultFormats, h = e.fallbackOnEmptyString, m = e.onError, c = e.timeZone, E = e.defaultRichTextElements;
3055
+ var i = e.locale, o = e.formats, s = e.messages, u = e.defaultLocale, l = e.defaultFormats, h = e.fallbackOnEmptyString, m = e.onError, c = e.timeZone, b = e.defaultRichTextElements;
3056
3056
  r === void 0 && (r = { id: "" });
3057
3057
  var x = r.id, d = r.defaultMessage;
3058
3058
  Gt(!!x, "[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");
3059
- var p = String(x), b = (
3059
+ var p = String(x), E = (
3060
3060
  // In case messages is Object.create(null)
3061
3061
  // e.g import('foo.json') from webpack)
3062
3062
  // See https://github.com/formatjs/formatjs/issues/1914
3063
3063
  s && Object.prototype.hasOwnProperty.call(s, p) && s[p]
3064
3064
  );
3065
- if (Array.isArray(b) && b.length === 1 && b[0].type === y.literal)
3066
- return b[0].value;
3067
- if (!n && b && typeof b == "string" && !E)
3068
- return b.replace(/'\{(.*?)\}'/gi, "{$1}");
3069
- if (n = f(f({}, E), n || {}), o = ge(o, c), l = ge(l, c), !b) {
3070
- if (h === !1 && b === "")
3071
- return b;
3065
+ if (Array.isArray(E) && E.length === 1 && E[0].type === y.literal)
3066
+ return E[0].value;
3067
+ if (!n && E && typeof E == "string" && !b)
3068
+ return E.replace(/'\{(.*?)\}'/gi, "{$1}");
3069
+ if (n = f(f({}, b), n || {}), o = ge(o, c), l = ge(l, c), !E) {
3070
+ if (h === !1 && E === "")
3071
+ return E;
3072
3072
  if ((!d || i && i.toLowerCase() !== u.toLowerCase()) && m(new Mt(r, i)), d)
3073
3073
  try {
3074
3074
  var T = t.getMessageFormat(d, u, l, a);
@@ -3079,7 +3079,7 @@ var pe = function(e, t, r, n, a) {
3079
3079
  return p;
3080
3080
  }
3081
3081
  try {
3082
- var T = t.getMessageFormat(b, i, o, f({ formatters: t }, a || {}));
3082
+ var T = t.getMessageFormat(E, i, o, f({ formatters: t }, a || {}));
3083
3083
  return T.format(n);
3084
3084
  } catch (S) {
3085
3085
  m(new Z('Error formatting message: "'.concat(p, '", using ').concat(d ? "default message" : "id", " as fallback."), i, r, S));
@@ -3091,7 +3091,7 @@ var pe = function(e, t, r, n, a) {
3091
3091
  } catch (S) {
3092
3092
  m(new Z('Error formatting the default message for: "'.concat(p, '", rendering message verbatim'), i, r, S));
3093
3093
  }
3094
- return typeof b == "string" ? b : typeof d == "string" ? d : p;
3094
+ return typeof E == "string" ? E : typeof d == "string" ? d : p;
3095
3095
  }, De = [
3096
3096
  "formatMatcher",
3097
3097
  "timeZone",
@@ -3357,7 +3357,7 @@ function hr(e, t) {
3357
3357
  const r = t.delimiter || ".", n = t.maxDepth, a = t.transformKey || ur, i = {};
3358
3358
  function o(s, u, l) {
3359
3359
  l = l || 1, Object.keys(s).forEach(function(h) {
3360
- const m = s[h], c = t.safe && Array.isArray(m), E = Object.prototype.toString.call(m), x = sr(m), d = E === "[object Object]" || E === "[object Array]", p = u ? u + r + a(h) : a(h);
3360
+ const m = s[h], c = t.safe && Array.isArray(m), b = Object.prototype.toString.call(m), x = sr(m), d = b === "[object Object]" || b === "[object Array]", p = u ? u + r + a(h) : a(h);
3361
3361
  if (!c && !x && d && Object.keys(m).length && (!t.maxDepth || l < n))
3362
3362
  return o(m, p, l + 1);
3363
3363
  i[p] = m;
@@ -3393,26 +3393,22 @@ const de = {
3393
3393
  },
3394
3394
  lr
3395
3395
  ), { $t: i, ...o } = a, s = o, u = (p) => p.toString().length === 13 ? Math.floor(p / 1e3) : p, l = (p) => {
3396
- const b = "Invalid Date";
3396
+ const E = "Invalid Date";
3397
3397
  if (!p)
3398
- return "-";
3398
+ return E;
3399
3399
  try {
3400
3400
  const T = new Date(u(p) * 1e3);
3401
3401
  return s.formatDate(T, de);
3402
3402
  } catch {
3403
- return b;
3403
+ return E;
3404
3404
  }
3405
3405
  }, x = {
3406
3406
  formatUnixTimeStamp: l,
3407
3407
  formatIsoDate: (p) => {
3408
- const b = Date.parse(p) / 1e3;
3409
- return l(b);
3408
+ const E = Date.parse(p) / 1e3;
3409
+ return l(E);
3410
3410
  },
3411
- t: (p, b, T) => s.formatMessage(
3412
- { id: p },
3413
- b,
3414
- T
3415
- ),
3411
+ t: (p, E, T) => s.formatMessage({ id: p }, E, T),
3416
3412
  te: (p) => !!s.messages[p],
3417
3413
  tm: (p) => s.messages[p] || [],
3418
3414
  ...s,
package/dist/i18n.umd.js CHANGED
@@ -1,4 +1,4 @@
1
- (function(P,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],w):(P=typeof globalThis<"u"?globalThis:P||self,w(P["kong-ui-public-i18n"]={},P.Vue))})(this,function(P,w){"use strict";var Z=function(e,t){return Z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(r[a]=n[a])},Z(e,t)};function _(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");Z(e,t);function r(){this.constructor=e}e.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}var f=function(){return f=Object.assign||function(t){for(var r,n=1,a=arguments.length;n<a;n++){r=arguments[n];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(t[i]=r[i])}return t},f.apply(this,arguments)};function je(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r}function A(e,t,r){if(r||arguments.length===2)for(var n=0,a=t.length,i;n<a;n++)(i||!(n in t))&&(i||(i=Array.prototype.slice.call(t,0,n)),i[n]=t[n]);return e.concat(i||Array.prototype.slice.call(t))}typeof SuppressedError=="function"&&SuppressedError;function H(e,t){var r=t&&t.cache?t.cache:Je,n=t&&t.serializer?t.serializer:qe,a=t&&t.strategy?t.strategy:We;return a(e,{cache:r,serializer:n})}function Xe(e){return e==null||typeof e=="number"||typeof e=="boolean"}function ie(e,t,r,n){var a=Xe(n)?n:r(n),i=t.get(a);return typeof i>"u"&&(i=e.call(this,n),t.set(a,i)),i}function oe(e,t,r){var n=Array.prototype.slice.call(arguments,3),a=r(n),i=t.get(a);return typeof i>"u"&&(i=e.apply(this,n),t.set(a,i)),i}function z(e,t,r,n,a){return r.bind(t,e,n,a)}function We(e,t){var r=e.length===1?ie:oe;return z(e,this,r,t.cache.create(),t.serializer)}function Ze(e,t){return z(e,this,oe,t.cache.create(),t.serializer)}function ze(e,t){return z(e,this,ie,t.cache.create(),t.serializer)}var qe=function(){return JSON.stringify(arguments)};function q(){this.cache=Object.create(null)}q.prototype.get=function(e){return this.cache[e]},q.prototype.set=function(e,t){this.cache[e]=t};var Je={create:function(){return new q}},I={variadic:Ze,monadic:ze},g;(function(e){e[e.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",e[e.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",e[e.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",e[e.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",e[e.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",e[e.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",e[e.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",e[e.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",e[e.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",e[e.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",e[e.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",e[e.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",e[e.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",e[e.INVALID_TAG=23]="INVALID_TAG",e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"})(g||(g={}));var E;(function(e){e[e.literal=0]="literal",e[e.argument=1]="argument",e[e.number=2]="number",e[e.date=3]="date",e[e.time=4]="time",e[e.select=5]="select",e[e.plural=6]="plural",e[e.pound=7]="pound",e[e.tag=8]="tag"})(E||(E={}));var F;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(F||(F={}));function se(e){return e.type===E.literal}function Qe(e){return e.type===E.argument}function ue(e){return e.type===E.number}function he(e){return e.type===E.date}function le(e){return e.type===E.time}function fe(e){return e.type===E.select}function me(e){return e.type===E.plural}function Ye(e){return e.type===E.pound}function ce(e){return e.type===E.tag}function ge(e){return!!(e&&typeof e=="object"&&e.type===F.number)}function J(e){return!!(e&&typeof e=="object"&&e.type===F.dateTime)}var pe=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,$e=/(?:[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;function Ke(e){var t={};return e.replace($e,function(r){var n=r.length;switch(r[0]){case"G":t.era=n===4?"long":n===5?"narrow":"short";break;case"y":t.year=n===2?"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");case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");case"M":case"L":t.month=["numeric","2-digit","short","long","narrow"][n-1];break;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");case"E":t.weekday=n===4?"long":n===5?"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;case"a":t.hour12=!0;break;case"b":case"B":throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");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");case"m":t.minute=["numeric","2-digit"][n-1];break;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");case"z":t.timeZoneName=n<4?"short":"long";break;case"Z":case"O":case"v":case"V":case"X":case"x":throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""}),t}var et=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function tt(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(et).filter(function(c){return c.length>0}),r=[],n=0,a=t;n<a.length;n++){var i=a[n],o=i.split("/");if(o.length===0)throw new Error("Invalid number skeleton");for(var s=o[0],u=o.slice(1),l=0,h=u;l<h.length;l++){var m=h[l];if(m.length===0)throw new Error("Invalid number skeleton")}r.push({stem:s,options:u})}return r}function rt(e){return e.replace(/^(.*?)-/,"")}var ve=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,de=/^(@+)?(\+|#+)?[rs]?$/g,nt=/(\*)(0+)|(#+)(0+)|(0+)/g,Ee=/^(0+)$/;function be(e){var t={};return e[e.length-1]==="r"?t.roundingPriority="morePrecision":e[e.length-1]==="s"&&(t.roundingPriority="lessPrecision"),e.replace(de,function(r,n,a){return typeof a!="string"?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):a==="+"?t.minimumSignificantDigits=n.length:n[0]==="#"?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+(typeof a=="string"?a.length:0)),""}),t}function ye(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 at(e){var t;if(e[0]==="E"&&e[1]==="E"?(t={notation:"engineering"},e=e.slice(2)):e[0]==="E"&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if(r==="+!"?(t.signDisplay="always",e=e.slice(2)):r==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!Ee.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function xe(e){var t={},r=ye(e);return r||t}function it(e){for(var t={},r=0,n=e;r<n.length;r++){var a=n[r];switch(a.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=a.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=rt(a.options[0]);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=f(f(f({},t),{notation:"scientific"}),a.options.reduce(function(u,l){return f(f({},u),xe(l))},{}));continue;case"engineering":t=f(f(f({},t),{notation:"engineering"}),a.options.reduce(function(u,l){return f(f({},u),xe(l))},{}));continue;case"notation-simple":t.notation="standard";continue;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(a.options[0]);continue;case"rounding-mode-floor":t.roundingMode="floor";continue;case"rounding-mode-ceiling":t.roundingMode="ceil";continue;case"rounding-mode-down":t.roundingMode="trunc";continue;case"rounding-mode-up":t.roundingMode="expand";continue;case"rounding-mode-half-even":t.roundingMode="halfEven";continue;case"rounding-mode-half-down":t.roundingMode="halfTrunc";continue;case"rounding-mode-half-up":t.roundingMode="halfExpand";continue;case"integer-width":if(a.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");a.options[0].replace(nt,function(u,l,h,m,c,b){if(l)t.minimumIntegerDigits=h.length;else{if(m&&c)throw new Error("We currently do not support maximum integer digits");if(b)throw new Error("We currently do not support exact integer digits")}return""});continue}if(Ee.test(a.stem)){t.minimumIntegerDigits=a.stem.length;continue}if(ve.test(a.stem)){if(a.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");a.stem.replace(ve,function(u,l,h,m,c,b){return h==="*"?t.minimumFractionDigits=l.length:m&&m[0]==="#"?t.maximumFractionDigits=m.length:c&&b?(t.minimumFractionDigits=c.length,t.maximumFractionDigits=c.length+b.length):(t.minimumFractionDigits=l.length,t.maximumFractionDigits=l.length),""});var i=a.options[0];i==="w"?t=f(f({},t),{trailingZeroDisplay:"stripIfInteger"}):i&&(t=f(f({},t),be(i)));continue}if(de.test(a.stem)){t=f(f({},t),be(a.stem));continue}var o=ye(a.stem);o&&(t=f(f({},t),o));var s=at(a.stem);s&&(t=f(f({},t),s))}return t}var V={"001":["H","h"],419:["h","H","hB","hb"],AC:["H","h","hb","hB"],AD:["H","hB"],AE:["h","hB","hb","H"],AF:["H","hb","hB","h"],AG:["h","hb","H","hB"],AI:["H","h","hb","hB"],AL:["h","H","hB"],AM:["H","hB"],AO:["H","hB"],AR:["h","H","hB","hb"],AS:["h","H"],AT:["H","hB"],AU:["h","hb","H","hB"],AW:["H","hB"],AX:["H"],AZ:["H","hB","h"],BA:["H","hB","h"],BB:["h","hb","H","hB"],BD:["h","hB","H"],BE:["H","hB"],BF:["H","hB"],BG:["H","hB","h"],BH:["h","hB","hb","H"],BI:["H","h"],BJ:["H","hB"],BL:["H","hB"],BM:["h","hb","H","hB"],BN:["hb","hB","h","H"],BO:["h","H","hB","hb"],BQ:["H"],BR:["H","hB"],BS:["h","hb","H","hB"],BT:["h","H"],BW:["H","h","hb","hB"],BY:["H","h"],BZ:["H","h","hb","hB"],CA:["h","hb","H","hB"],CC:["H","h","hb","hB"],CD:["hB","H"],CF:["H","h","hB"],CG:["H","hB"],CH:["H","hB","h"],CI:["H","hB"],CK:["H","h","hb","hB"],CL:["h","H","hB","hb"],CM:["H","h","hB"],CN:["H","hB","hb","h"],CO:["h","H","hB","hb"],CP:["H"],CR:["h","H","hB","hb"],CU:["h","H","hB","hb"],CV:["H","hB"],CW:["H","hB"],CX:["H","h","hb","hB"],CY:["h","H","hb","hB"],CZ:["H"],DE:["H","hB"],DG:["H","h","hb","hB"],DJ:["h","H"],DK:["H"],DM:["h","hb","H","hB"],DO:["h","H","hB","hb"],DZ:["h","hB","hb","H"],EA:["H","h","hB","hb"],EC:["h","H","hB","hb"],EE:["H","hB"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],ER:["h","H"],ES:["H","hB","h","hb"],ET:["hB","hb","h","H"],FI:["H"],FJ:["h","hb","H","hB"],FK:["H","h","hb","hB"],FM:["h","hb","H","hB"],FO:["H","h"],FR:["H","hB"],GA:["H","hB"],GB:["H","h","hb","hB"],GD:["h","hb","H","hB"],GE:["H","hB","h"],GF:["H","hB"],GG:["H","h","hb","hB"],GH:["h","H"],GI:["H","h","hb","hB"],GL:["H","h"],GM:["h","hb","H","hB"],GN:["H","hB"],GP:["H","hB"],GQ:["H","hB","h","hb"],GR:["h","H","hb","hB"],GT:["h","H","hB","hb"],GU:["h","hb","H","hB"],GW:["H","hB"],GY:["h","hb","H","hB"],HK:["h","hB","hb","H"],HN:["h","H","hB","hb"],HR:["H","hB"],HU:["H","h"],IC:["H","h","hB","hb"],ID:["H"],IE:["H","h","hb","hB"],IL:["H","hB"],IM:["H","h","hb","hB"],IN:["h","H"],IO:["H","h","hb","hB"],IQ:["h","hB","hb","H"],IR:["hB","H"],IS:["H"],IT:["H","hB"],JE:["H","h","hb","hB"],JM:["h","hb","H","hB"],JO:["h","hB","hb","H"],JP:["H","K","h"],KE:["hB","hb","H","h"],KG:["H","h","hB","hb"],KH:["hB","h","H","hb"],KI:["h","hb","H","hB"],KM:["H","h","hB","hb"],KN:["h","hb","H","hB"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],KW:["h","hB","hb","H"],KY:["h","hb","H","hB"],KZ:["H","hB"],LA:["H","hb","hB","h"],LB:["h","hB","hb","H"],LC:["h","hb","H","hB"],LI:["H","hB","h"],LK:["H","h","hB","hb"],LR:["h","hb","H","hB"],LS:["h","H"],LT:["H","h","hb","hB"],LU:["H","h","hB"],LV:["H","hB","hb","h"],LY:["h","hB","hb","H"],MA:["H","h","hB","hb"],MC:["H","hB"],MD:["H","hB"],ME:["H","hB","h"],MF:["H","hB"],MG:["H","h"],MH:["h","hb","H","hB"],MK:["H","h","hb","hB"],ML:["H"],MM:["hB","hb","H","h"],MN:["H","h","hb","hB"],MO:["h","hB","hb","H"],MP:["h","hb","H","hB"],MQ:["H","hB"],MR:["h","hB","hb","H"],MS:["H","h","hb","hB"],MT:["H","h"],MU:["H","h"],MV:["H","h"],MW:["h","hb","H","hB"],MX:["h","H","hB","hb"],MY:["hb","hB","h","H"],MZ:["H","hB"],NA:["h","H","hB","hb"],NC:["H","hB"],NE:["H"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NI:["h","H","hB","hb"],NL:["H","hB"],NO:["H","h"],NP:["H","h","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],NZ:["h","hb","H","hB"],OM:["h","hB","hb","H"],PA:["h","H","hB","hb"],PE:["h","H","hB","hb"],PF:["H","h","hB"],PG:["h","H"],PH:["h","hB","hb","H"],PK:["h","hB","H"],PL:["H","h"],PM:["H","hB"],PN:["H","h","hb","hB"],PR:["h","H","hB","hb"],PS:["h","hB","hb","H"],PT:["H","hB"],PW:["h","H"],PY:["h","H","hB","hb"],QA:["h","hB","hb","H"],RE:["H","hB"],RO:["H","hB"],RS:["H","hB","h"],RU:["H"],RW:["H","h"],SA:["h","hB","hb","H"],SB:["h","hb","H","hB"],SC:["H","h","hB"],SD:["h","hB","hb","H"],SE:["H"],SG:["h","hb","H","hB"],SH:["H","h","hb","hB"],SI:["H","hB"],SJ:["H"],SK:["H"],SL:["h","hb","H","hB"],SM:["H","h","hB"],SN:["H","h","hB"],SO:["h","H"],SR:["H","hB"],SS:["h","hb","H","hB"],ST:["H","hB"],SV:["h","H","hB","hb"],SX:["H","h","hb","hB"],SY:["h","hB","hb","H"],SZ:["h","hb","H","hB"],TA:["H","h","hb","hB"],TC:["h","hb","H","hB"],TD:["h","H","hB"],TF:["H","h","hB"],TG:["H","hB"],TH:["H","h"],TJ:["H","h"],TL:["H","hB","hb","h"],TM:["H","h"],TN:["h","hB","hb","H"],TO:["h","H"],TR:["H","hB"],TT:["h","hb","H","hB"],TW:["hB","hb","h","H"],TZ:["hB","hb","H","h"],UA:["H","hB","h"],UG:["hB","hb","H","h"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],UY:["h","H","hB","hb"],UZ:["H","hB","h"],VA:["H","h","hB"],VC:["h","hb","H","hB"],VE:["h","H","hB","hb"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],VN:["H","h"],VU:["h","H"],WF:["H","hB"],WS:["h","H"],XK:["H","hB","h"],YE:["h","hB","hb","H"],YT:["H","hB"],ZA:["H","h","hb","hB"],ZM:["h","hb","H","hB"],ZW:["H","h"],"af-ZA":["H","h","hB","hb"],"ar-001":["h","hB","hb","H"],"ca-ES":["H","h","hB"],"en-001":["h","hb","H","hB"],"en-HK":["h","hb","H","hB"],"en-IL":["H","h","hb","hB"],"en-MY":["h","hb","H","hB"],"es-BR":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"gu-IN":["hB","hb","h","H"],"hi-IN":["hB","h","H"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],"ta-IN":["hB","h","hb","H"],"te-IN":["hB","h","H"],"zu-ZA":["H","hB","hb","h"]};function ot(e,t){for(var r="",n=0;n<e.length;n++){var a=e.charAt(n);if(a==="j"){for(var i=0;n+1<e.length&&e.charAt(n+1)===a;)i++,n++;var o=1+(i&1),s=i<2?1:3+(i>>1),u="a",l=st(t);for((l=="H"||l=="k")&&(s=0);s-- >0;)r+=u;for(;o-- >0;)r=l+r}else a==="J"?r+="H":r+=a}return r}function st(e){var t=e.hourCycle;if(t===void 0&&e.hourCycles&&e.hourCycles.length&&(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")}var r=e.language,n;r!=="root"&&(n=e.maximize().region);var a=V[n||""]||V[r||""]||V["".concat(r,"-001")]||V["001"];return a[0]}var Q,ut=new RegExp("^".concat(pe.source,"*")),ht=new RegExp("".concat(pe.source,"*$"));function p(e,t){return{start:e,end:t}}var lt=!!String.prototype.startsWith&&"_a".startsWith("a",1),ft=!!String.fromCodePoint,mt=!!Object.fromEntries,ct=!!String.prototype.codePointAt,gt=!!String.prototype.trimStart,pt=!!String.prototype.trimEnd,vt=!!Number.isSafeInteger,dt=vt?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Y=!0;try{var Et=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Y=((Q=Et.exec("a"))===null||Q===void 0?void 0:Q[0])==="a"}catch{Y=!1}var Te=lt?function(t,r,n){return t.startsWith(r,n)}:function(t,r,n){return t.slice(n,n+r.length)===r},$=ft?String.fromCodePoint:function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var n="",a=t.length,i=0,o;a>i;){if(o=t[i++],o>1114111)throw RangeError(o+" is not a valid code point");n+=o<65536?String.fromCharCode(o):String.fromCharCode(((o-=65536)>>10)+55296,o%1024+56320)}return n},Se=mt?Object.fromEntries:function(t){for(var r={},n=0,a=t;n<a.length;n++){var i=a[n],o=i[0],s=i[1];r[o]=s}return r},He=ct?function(t,r){return t.codePointAt(r)}:function(t,r){var n=t.length;if(!(r<0||r>=n)){var a=t.charCodeAt(r),i;return a<55296||a>56319||r+1===n||(i=t.charCodeAt(r+1))<56320||i>57343?a:(a-55296<<10)+(i-56320)+65536}},bt=gt?function(t){return t.trimStart()}:function(t){return t.replace(ut,"")},yt=pt?function(t){return t.trimEnd()}:function(t){return t.replace(ht,"")};function Ie(e,t){return new RegExp(e,t)}var K;if(Y){var Ne=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");K=function(t,r){var n;Ne.lastIndex=r;var a=Ne.exec(t);return(n=a[1])!==null&&n!==void 0?n:""}}else K=function(t,r){for(var n=[];;){var a=He(t,r);if(a===void 0||Ae(a)||Ht(a))break;n.push(a),r+=a>=65536?2:1}return $.apply(void 0,n)};var xt=function(){function e(t,r){r===void 0&&(r={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!r.ignoreTag,this.locale=r.locale,this.requiresOtherClause=!!r.requiresOtherClause,this.shouldParseSkeletons=!!r.shouldParseSkeletons}return e.prototype.parse=function(){if(this.offset()!==0)throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(t,r,n){for(var a=[];!this.isEOF();){var i=this.char();if(i===123){var o=this.parseArgument(t,n);if(o.err)return o;a.push(o.val)}else{if(i===125&&t>0)break;if(i===35&&(r==="plural"||r==="selectordinal")){var s=this.clonePosition();this.bump(),a.push({type:E.pound,location:p(s,this.clonePosition())})}else if(i===60&&!this.ignoreTag&&this.peek()===47){if(n)break;return this.error(g.UNMATCHED_CLOSING_TAG,p(this.clonePosition(),this.clonePosition()))}else if(i===60&&!this.ignoreTag&&ee(this.peek()||0)){var o=this.parseTag(t,r);if(o.err)return o;a.push(o.val)}else{var o=this.parseLiteral(t,r);if(o.err)return o;a.push(o.val)}}}return{val:a,err:null}},e.prototype.parseTag=function(t,r){var n=this.clonePosition();this.bump();var a=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:E.literal,value:"<".concat(a,"/>"),location:p(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(t+1,r,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!ee(this.char()))return this.error(g.INVALID_TAG,p(s,this.clonePosition()));var u=this.clonePosition(),l=this.parseTagName();return a!==l?this.error(g.UNMATCHED_CLOSING_TAG,p(u,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:E.tag,value:a,children:o,location:p(n,this.clonePosition())},err:null}:this.error(g.INVALID_TAG,p(s,this.clonePosition())))}else return this.error(g.UNCLOSED_TAG,p(n,this.clonePosition()))}else return this.error(g.INVALID_TAG,p(n,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&St(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,r){for(var n=this.clonePosition(),a="";;){var i=this.tryParseQuote(r);if(i){a+=i;continue}var o=this.tryParseUnquoted(t,r);if(o){a+=o;continue}var s=this.tryParseLeftAngleBracket();if(s){a+=s;continue}break}var u=p(n,this.clonePosition());return{val:{type:E.literal,value:a,location:u},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!Tt(this.peek()||0))?(this.bump(),"<"):null},e.prototype.tryParseQuote=function(t){if(this.isEOF()||this.char()!==39)return null;switch(this.peek()){case 39:return this.bump(),this.bump(),"'";case 123:case 60:case 62:case 125:break;case 35:if(t==="plural"||t==="selectordinal")break;return null;default:return null}this.bump();var r=[this.char()];for(this.bump();!this.isEOF();){var n=this.char();if(n===39)if(this.peek()===39)r.push(39),this.bump();else{this.bump();break}else r.push(n);this.bump()}return $.apply(void 0,r)},e.prototype.tryParseUnquoted=function(t,r){if(this.isEOF())return null;var n=this.char();return n===60||n===123||n===35&&(r==="plural"||r==="selectordinal")||n===125&&t>0?null:(this.bump(),$(n))},e.prototype.parseArgument=function(t,r){var n=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(g.EMPTY_ARGUMENT,p(n,this.clonePosition()));var a=this.parseIdentifierIfPossible().value;if(!a)return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:E.argument,value:a,location:p(n,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition())):this.parseArgumentOptions(t,r,a,n);default:return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),r=this.offset(),n=K(this.message,r),a=r+n.length;this.bumpTo(a);var i=this.clonePosition(),o=p(t,i);return{value:n,location:o}},e.prototype.parseArgumentOptions=function(t,r,n,a){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,u=this.clonePosition();switch(s){case"":return this.error(g.EXPECT_ARGUMENT_TYPE,p(o,u));case"number":case"date":case"time":{this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var h=this.clonePosition(),m=this.parseSimpleArgStyleIfPossible();if(m.err)return m;var c=yt(m.val);if(c.length===0)return this.error(g.EXPECT_ARGUMENT_STYLE,p(this.clonePosition(),this.clonePosition()));var b=p(h,this.clonePosition());l={style:c,styleLocation:b}}var x=this.tryParseArgumentClose(a);if(x.err)return x;var d=p(a,this.clonePosition());if(l&&Te(l==null?void 0:l.style,"::",0)){var v=bt(l.style.slice(2));if(s==="number"){var m=this.parseNumberSkeletonFromString(v,l.styleLocation);return m.err?m:{val:{type:E.number,value:n,location:d,style:m.val},err:null}}else{if(v.length===0)return this.error(g.EXPECT_DATE_TIME_SKELETON,d);var y=v;this.locale&&(y=ot(v,this.locale));var c={type:F.dateTime,pattern:y,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?Ke(y):{}},T=s==="date"?E.date:E.time;return{val:{type:T,value:n,location:d,style:c},err:null}}}return{val:{type:s==="number"?E.number:s==="date"?E.date:E.time,value:n,location:d,style:(i=l==null?void 0:l.style)!==null&&i!==void 0?i:null},err:null}}case"plural":case"selectordinal":case"select":{var S=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS,p(S,f({},S)));this.bumpSpace();var U=this.parseIdentifierIfPossible(),D=0;if(s!=="select"&&U.value==="offset"){if(!this.bumpIf(":"))return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,p(this.clonePosition(),this.clonePosition()));this.bumpSpace();var m=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(m.err)return m;this.bumpSpace(),U=this.parseIdentifierIfPossible(),D=m.val}var W=this.tryParsePluralOrSelectOptions(t,s,r,U);if(W.err)return W;var x=this.tryParseArgumentClose(a);if(x.err)return x;var ke=p(a,this.clonePosition());return s==="select"?{val:{type:E.select,value:n,options:Se(W.val),location:ke},err:null}:{val:{type:E.plural,value:n,options:Se(W.val),offset:D,pluralType:s==="plural"?"cardinal":"ordinal",location:ke},err:null}}default:return this.error(g.INVALID_ARGUMENT_TYPE,p(o,u))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,r=this.clonePosition();!this.isEOF();){var n=this.char();switch(n){case 39:{this.bump();var a=this.clonePosition();if(!this.bumpUntil("'"))return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,p(a,this.clonePosition()));this.bump();break}case 123:{t+=1,this.bump();break}case 125:{if(t>0)t-=1;else return{val:this.message.slice(r.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(r.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,r){var n=[];try{n=tt(t)}catch{return this.error(g.INVALID_NUMBER_SKELETON,r)}return{val:{type:F.number,tokens:n,location:r,parsedOptions:this.shouldParseSkeletons?it(n):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,r,n,a){for(var i,o=!1,s=[],u=new Set,l=a.value,h=a.location;;){if(l.length===0){var m=this.clonePosition();if(r!=="select"&&this.bumpIf("=")){var c=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR,g.INVALID_PLURAL_ARGUMENT_SELECTOR);if(c.err)return c;h=p(m,this.clonePosition()),l=this.message.slice(m.offset,this.offset())}else break}if(u.has(l))return this.error(r==="select"?g.DUPLICATE_SELECT_ARGUMENT_SELECTOR:g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,h);l==="other"&&(o=!0),this.bumpSpace();var b=this.clonePosition();if(!this.bumpIf("{"))return this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,p(this.clonePosition(),this.clonePosition()));var x=this.parseMessage(t+1,r,n);if(x.err)return x;var d=this.tryParseArgumentClose(b);if(d.err)return d;s.push([l,{value:x.val,location:p(b,this.clonePosition())}]),u.add(l),this.bumpSpace(),i=this.parseIdentifierIfPossible(),l=i.value,h=i.location}return s.length===0?this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR:g.EXPECT_PLURAL_ARGUMENT_SELECTOR,p(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(g.MISSING_OTHER_CLAUSE,p(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(t,r){var n=1,a=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-1);for(var i=!1,o=0;!this.isEOF();){var s=this.char();if(s>=48&&s<=57)i=!0,o=o*10+(s-48),this.bump();else break}var u=p(a,this.clonePosition());return i?(o*=n,dt(o)?{val:o,err:null}:this.error(r,u)):this.error(t,u)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){return{offset:this.position.offset,line:this.position.line,column:this.position.column}},e.prototype.char=function(){var t=this.position.offset;if(t>=this.message.length)throw Error("out of bound");var r=He(this.message,t);if(r===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return r},e.prototype.error=function(t,r){return{val:null,err:{kind:t,message:this.message,location:r}}},e.prototype.bump=function(){if(!this.isEOF()){var t=this.char();t===10?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,this.position.offset+=t<65536?1:2)}},e.prototype.bumpIf=function(t){if(Te(this.message,t,this.offset())){for(var r=0;r<t.length;r++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var r=this.offset(),n=this.message.indexOf(t,r);return n>=0?(this.bumpTo(n),!0):(this.bumpTo(this.message.length),!1)},e.prototype.bumpTo=function(t){if(this.offset()>t)throw Error("targetOffset ".concat(t," must be greater than or equal to the current offset ").concat(this.offset()));for(t=Math.min(t,this.message.length);;){var r=this.offset();if(r===t)break;if(r>t)throw Error("targetOffset ".concat(t," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},e.prototype.bumpSpace=function(){for(;!this.isEOF()&&Ae(this.char());)this.bump()},e.prototype.peek=function(){if(this.isEOF())return null;var t=this.char(),r=this.offset(),n=this.message.charCodeAt(r+(t>=65536?2:1));return n??null},e}();function ee(e){return e>=97&&e<=122||e>=65&&e<=90}function Tt(e){return ee(e)||e===47}function St(e){return e===45||e===46||e>=48&&e<=57||e===95||e>=97&&e<=122||e>=65&&e<=90||e==183||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}function Ae(e){return e>=9&&e<=13||e===32||e===133||e>=8206&&e<=8207||e===8232||e===8233}function Ht(e){return e>=33&&e<=35||e===36||e>=37&&e<=39||e===40||e===41||e===42||e===43||e===44||e===45||e>=46&&e<=47||e>=58&&e<=59||e>=60&&e<=62||e>=63&&e<=64||e===91||e===92||e===93||e===94||e===96||e===123||e===124||e===125||e===126||e===161||e>=162&&e<=165||e===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>=8208&&e<=8213||e>=8214&&e<=8215||e===8216||e===8217||e===8218||e>=8219&&e<=8220||e===8221||e===8222||e===8223||e>=8224&&e<=8231||e>=8240&&e<=8248||e===8249||e===8250||e>=8251&&e<=8254||e>=8257&&e<=8259||e===8260||e===8261||e===8262||e>=8263&&e<=8273||e===8274||e===8275||e>=8277&&e<=8286||e>=8592&&e<=8596||e>=8597&&e<=8601||e>=8602&&e<=8603||e>=8604&&e<=8607||e===8608||e>=8609&&e<=8610||e===8611||e>=8612&&e<=8613||e===8614||e>=8615&&e<=8621||e===8622||e>=8623&&e<=8653||e>=8654&&e<=8655||e>=8656&&e<=8657||e===8658||e===8659||e===8660||e>=8661&&e<=8691||e>=8692&&e<=8959||e>=8960&&e<=8967||e===8968||e===8969||e===8970||e===8971||e>=8972&&e<=8991||e>=8992&&e<=8993||e>=8994&&e<=9e3||e===9001||e===9002||e>=9003&&e<=9083||e===9084||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||e===9655||e>=9656&&e<=9664||e===9665||e>=9666&&e<=9719||e>=9720&&e<=9727||e>=9728&&e<=9838||e===9839||e>=9840&&e<=10087||e===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>=10132&&e<=10175||e>=10176&&e<=10180||e===10181||e===10182||e>=10183&&e<=10213||e===10214||e===10215||e===10216||e===10217||e===10218||e===10219||e===10220||e===10221||e===10222||e===10223||e>=10224&&e<=10239||e>=10240&&e<=10495||e>=10496&&e<=10626||e===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>=10649&&e<=10711||e===10712||e===10713||e===10714||e===10715||e>=10716&&e<=10747||e===10748||e===10749||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||e===11158||e>=11159&&e<=11263||e>=11776&&e<=11777||e===11778||e===11779||e===11780||e===11781||e>=11782&&e<=11784||e===11785||e===11786||e===11787||e===11788||e===11789||e>=11790&&e<=11798||e===11799||e>=11800&&e<=11801||e===11802||e===11803||e===11804||e===11805||e>=11806&&e<=11807||e===11808||e===11809||e===11810||e===11811||e===11812||e===11813||e===11814||e===11815||e===11816||e===11817||e>=11818&&e<=11822||e===11823||e>=11824&&e<=11833||e>=11834&&e<=11835||e>=11836&&e<=11839||e===11840||e===11841||e===11842||e>=11843&&e<=11855||e>=11856&&e<=11857||e===11858||e>=11859&&e<=11903||e>=12289&&e<=12291||e===12296||e===12297||e===12298||e===12299||e===12300||e===12301||e===12302||e===12303||e===12304||e===12305||e>=12306&&e<=12307||e===12308||e===12309||e===12310||e===12311||e===12312||e===12313||e===12314||e===12315||e===12316||e===12317||e>=12318&&e<=12319||e===12320||e===12336||e===64830||e===64831||e>=65093&&e<=65094}function te(e){e.forEach(function(t){if(delete t.location,fe(t)||me(t))for(var r in t.options)delete t.options[r].location,te(t.options[r].value);else ue(t)&&ge(t.style)||(he(t)||le(t))&&J(t.style)?delete t.style.location:ce(t)&&te(t.children)})}function It(e,t){t===void 0&&(t={}),t=f({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var r=new xt(e,t).parse();if(r.err){var n=SyntaxError(g[r.err.kind]);throw n.location=r.err.location,n.originalMessage=r.err.message,n}return t!=null&&t.captureLocation||te(r.val),r.val}var L;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(L||(L={}));var R=function(e){_(t,e);function t(r,n,a){var i=e.call(this,r)||this;return i.code=n,i.originalMessage=a,i}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),Be=function(e){_(t,e);function t(r,n,a,i){return e.call(this,'Invalid values for "'.concat(r,'": "').concat(n,'". Options are "').concat(Object.keys(a).join('", "'),'"'),L.INVALID_VALUE,i)||this}return t}(R),Nt=function(e){_(t,e);function t(r,n,a){return e.call(this,'Value for "'.concat(r,'" must be of type ').concat(n),L.INVALID_VALUE,a)||this}return t}(R),At=function(e){_(t,e);function t(r,n){return e.call(this,'The intl string context variable "'.concat(r,'" was not provided to the string "').concat(n,'"'),L.MISSING_VALUE,n)||this}return t}(R),N;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(N||(N={}));function Bt(e){return e.length<2?e:e.reduce(function(t,r){var n=t[t.length-1];return!n||n.type!==N.literal||r.type!==N.literal?t.push(r):n.value+=r.value,t},[])}function _t(e){return typeof e=="function"}function k(e,t,r,n,a,i,o){if(e.length===1&&se(e[0]))return[{type:N.literal,value:e[0].value}];for(var s=[],u=0,l=e;u<l.length;u++){var h=l[u];if(se(h)){s.push({type:N.literal,value:h.value});continue}if(Ye(h)){typeof i=="number"&&s.push({type:N.literal,value:r.getNumberFormat(t).format(i)});continue}var m=h.value;if(!(a&&m in a))throw new At(m,o);var c=a[m];if(Qe(h)){(!c||typeof c=="string"||typeof c=="number")&&(c=typeof c=="string"||typeof c=="number"?String(c):""),s.push({type:typeof c=="string"?N.literal:N.object,value:c});continue}if(he(h)){var b=typeof h.style=="string"?n.date[h.style]:J(h.style)?h.style.parsedOptions:void 0;s.push({type:N.literal,value:r.getDateTimeFormat(t,b).format(c)});continue}if(le(h)){var b=typeof h.style=="string"?n.time[h.style]:J(h.style)?h.style.parsedOptions:n.time.medium;s.push({type:N.literal,value:r.getDateTimeFormat(t,b).format(c)});continue}if(ue(h)){var b=typeof h.style=="string"?n.number[h.style]:ge(h.style)?h.style.parsedOptions:void 0;b&&b.scale&&(c=c*(b.scale||1)),s.push({type:N.literal,value:r.getNumberFormat(t,b).format(c)});continue}if(ce(h)){var x=h.children,d=h.value,v=a[d];if(!_t(v))throw new Nt(d,"function",o);var y=k(x,t,r,n,a,i),T=v(y.map(function(D){return D.value}));Array.isArray(T)||(T=[T]),s.push.apply(s,T.map(function(D){return{type:typeof D=="string"?N.literal:N.object,value:D}}))}if(fe(h)){var S=h.options[c]||h.options.other;if(!S)throw new Be(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a));continue}if(me(h)){var S=h.options["=".concat(c)];if(!S){if(!Intl.PluralRules)throw new R(`Intl.PluralRules is not available in this environment.
1
+ (function(P,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],w):(P=typeof globalThis<"u"?globalThis:P||self,w(P["kong-ui-public-i18n"]={},P.Vue))})(this,function(P,w){"use strict";var Z=function(e,t){return Z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(r[a]=n[a])},Z(e,t)};function _(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");Z(e,t);function r(){this.constructor=e}e.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}var f=function(){return f=Object.assign||function(t){for(var r,n=1,a=arguments.length;n<a;n++){r=arguments[n];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(t[i]=r[i])}return t},f.apply(this,arguments)};function je(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r}function A(e,t,r){if(r||arguments.length===2)for(var n=0,a=t.length,i;n<a;n++)(i||!(n in t))&&(i||(i=Array.prototype.slice.call(t,0,n)),i[n]=t[n]);return e.concat(i||Array.prototype.slice.call(t))}typeof SuppressedError=="function"&&SuppressedError;function H(e,t){var r=t&&t.cache?t.cache:Je,n=t&&t.serializer?t.serializer:qe,a=t&&t.strategy?t.strategy:We;return a(e,{cache:r,serializer:n})}function Xe(e){return e==null||typeof e=="number"||typeof e=="boolean"}function ie(e,t,r,n){var a=Xe(n)?n:r(n),i=t.get(a);return typeof i>"u"&&(i=e.call(this,n),t.set(a,i)),i}function oe(e,t,r){var n=Array.prototype.slice.call(arguments,3),a=r(n),i=t.get(a);return typeof i>"u"&&(i=e.apply(this,n),t.set(a,i)),i}function z(e,t,r,n,a){return r.bind(t,e,n,a)}function We(e,t){var r=e.length===1?ie:oe;return z(e,this,r,t.cache.create(),t.serializer)}function Ze(e,t){return z(e,this,oe,t.cache.create(),t.serializer)}function ze(e,t){return z(e,this,ie,t.cache.create(),t.serializer)}var qe=function(){return JSON.stringify(arguments)};function q(){this.cache=Object.create(null)}q.prototype.get=function(e){return this.cache[e]},q.prototype.set=function(e,t){this.cache[e]=t};var Je={create:function(){return new q}},I={variadic:Ze,monadic:ze},g;(function(e){e[e.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",e[e.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",e[e.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",e[e.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",e[e.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",e[e.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",e[e.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",e[e.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",e[e.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",e[e.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",e[e.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",e[e.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",e[e.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",e[e.INVALID_TAG=23]="INVALID_TAG",e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"})(g||(g={}));var b;(function(e){e[e.literal=0]="literal",e[e.argument=1]="argument",e[e.number=2]="number",e[e.date=3]="date",e[e.time=4]="time",e[e.select=5]="select",e[e.plural=6]="plural",e[e.pound=7]="pound",e[e.tag=8]="tag"})(b||(b={}));var F;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(F||(F={}));function se(e){return e.type===b.literal}function Qe(e){return e.type===b.argument}function ue(e){return e.type===b.number}function he(e){return e.type===b.date}function le(e){return e.type===b.time}function fe(e){return e.type===b.select}function me(e){return e.type===b.plural}function Ye(e){return e.type===b.pound}function ce(e){return e.type===b.tag}function ge(e){return!!(e&&typeof e=="object"&&e.type===F.number)}function J(e){return!!(e&&typeof e=="object"&&e.type===F.dateTime)}var pe=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,$e=/(?:[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;function Ke(e){var t={};return e.replace($e,function(r){var n=r.length;switch(r[0]){case"G":t.era=n===4?"long":n===5?"narrow":"short";break;case"y":t.year=n===2?"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");case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");case"M":case"L":t.month=["numeric","2-digit","short","long","narrow"][n-1];break;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");case"E":t.weekday=n===4?"long":n===5?"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;case"a":t.hour12=!0;break;case"b":case"B":throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");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");case"m":t.minute=["numeric","2-digit"][n-1];break;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");case"z":t.timeZoneName=n<4?"short":"long";break;case"Z":case"O":case"v":case"V":case"X":case"x":throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""}),t}var et=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function tt(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(et).filter(function(c){return c.length>0}),r=[],n=0,a=t;n<a.length;n++){var i=a[n],o=i.split("/");if(o.length===0)throw new Error("Invalid number skeleton");for(var s=o[0],u=o.slice(1),l=0,h=u;l<h.length;l++){var m=h[l];if(m.length===0)throw new Error("Invalid number skeleton")}r.push({stem:s,options:u})}return r}function rt(e){return e.replace(/^(.*?)-/,"")}var ve=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,de=/^(@+)?(\+|#+)?[rs]?$/g,nt=/(\*)(0+)|(#+)(0+)|(0+)/g,Ee=/^(0+)$/;function be(e){var t={};return e[e.length-1]==="r"?t.roundingPriority="morePrecision":e[e.length-1]==="s"&&(t.roundingPriority="lessPrecision"),e.replace(de,function(r,n,a){return typeof a!="string"?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):a==="+"?t.minimumSignificantDigits=n.length:n[0]==="#"?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+(typeof a=="string"?a.length:0)),""}),t}function ye(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 at(e){var t;if(e[0]==="E"&&e[1]==="E"?(t={notation:"engineering"},e=e.slice(2)):e[0]==="E"&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if(r==="+!"?(t.signDisplay="always",e=e.slice(2)):r==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!Ee.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function xe(e){var t={},r=ye(e);return r||t}function it(e){for(var t={},r=0,n=e;r<n.length;r++){var a=n[r];switch(a.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=a.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=rt(a.options[0]);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=f(f(f({},t),{notation:"scientific"}),a.options.reduce(function(u,l){return f(f({},u),xe(l))},{}));continue;case"engineering":t=f(f(f({},t),{notation:"engineering"}),a.options.reduce(function(u,l){return f(f({},u),xe(l))},{}));continue;case"notation-simple":t.notation="standard";continue;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(a.options[0]);continue;case"rounding-mode-floor":t.roundingMode="floor";continue;case"rounding-mode-ceiling":t.roundingMode="ceil";continue;case"rounding-mode-down":t.roundingMode="trunc";continue;case"rounding-mode-up":t.roundingMode="expand";continue;case"rounding-mode-half-even":t.roundingMode="halfEven";continue;case"rounding-mode-half-down":t.roundingMode="halfTrunc";continue;case"rounding-mode-half-up":t.roundingMode="halfExpand";continue;case"integer-width":if(a.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");a.options[0].replace(nt,function(u,l,h,m,c,y){if(l)t.minimumIntegerDigits=h.length;else{if(m&&c)throw new Error("We currently do not support maximum integer digits");if(y)throw new Error("We currently do not support exact integer digits")}return""});continue}if(Ee.test(a.stem)){t.minimumIntegerDigits=a.stem.length;continue}if(ve.test(a.stem)){if(a.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");a.stem.replace(ve,function(u,l,h,m,c,y){return h==="*"?t.minimumFractionDigits=l.length:m&&m[0]==="#"?t.maximumFractionDigits=m.length:c&&y?(t.minimumFractionDigits=c.length,t.maximumFractionDigits=c.length+y.length):(t.minimumFractionDigits=l.length,t.maximumFractionDigits=l.length),""});var i=a.options[0];i==="w"?t=f(f({},t),{trailingZeroDisplay:"stripIfInteger"}):i&&(t=f(f({},t),be(i)));continue}if(de.test(a.stem)){t=f(f({},t),be(a.stem));continue}var o=ye(a.stem);o&&(t=f(f({},t),o));var s=at(a.stem);s&&(t=f(f({},t),s))}return t}var V={"001":["H","h"],419:["h","H","hB","hb"],AC:["H","h","hb","hB"],AD:["H","hB"],AE:["h","hB","hb","H"],AF:["H","hb","hB","h"],AG:["h","hb","H","hB"],AI:["H","h","hb","hB"],AL:["h","H","hB"],AM:["H","hB"],AO:["H","hB"],AR:["h","H","hB","hb"],AS:["h","H"],AT:["H","hB"],AU:["h","hb","H","hB"],AW:["H","hB"],AX:["H"],AZ:["H","hB","h"],BA:["H","hB","h"],BB:["h","hb","H","hB"],BD:["h","hB","H"],BE:["H","hB"],BF:["H","hB"],BG:["H","hB","h"],BH:["h","hB","hb","H"],BI:["H","h"],BJ:["H","hB"],BL:["H","hB"],BM:["h","hb","H","hB"],BN:["hb","hB","h","H"],BO:["h","H","hB","hb"],BQ:["H"],BR:["H","hB"],BS:["h","hb","H","hB"],BT:["h","H"],BW:["H","h","hb","hB"],BY:["H","h"],BZ:["H","h","hb","hB"],CA:["h","hb","H","hB"],CC:["H","h","hb","hB"],CD:["hB","H"],CF:["H","h","hB"],CG:["H","hB"],CH:["H","hB","h"],CI:["H","hB"],CK:["H","h","hb","hB"],CL:["h","H","hB","hb"],CM:["H","h","hB"],CN:["H","hB","hb","h"],CO:["h","H","hB","hb"],CP:["H"],CR:["h","H","hB","hb"],CU:["h","H","hB","hb"],CV:["H","hB"],CW:["H","hB"],CX:["H","h","hb","hB"],CY:["h","H","hb","hB"],CZ:["H"],DE:["H","hB"],DG:["H","h","hb","hB"],DJ:["h","H"],DK:["H"],DM:["h","hb","H","hB"],DO:["h","H","hB","hb"],DZ:["h","hB","hb","H"],EA:["H","h","hB","hb"],EC:["h","H","hB","hb"],EE:["H","hB"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],ER:["h","H"],ES:["H","hB","h","hb"],ET:["hB","hb","h","H"],FI:["H"],FJ:["h","hb","H","hB"],FK:["H","h","hb","hB"],FM:["h","hb","H","hB"],FO:["H","h"],FR:["H","hB"],GA:["H","hB"],GB:["H","h","hb","hB"],GD:["h","hb","H","hB"],GE:["H","hB","h"],GF:["H","hB"],GG:["H","h","hb","hB"],GH:["h","H"],GI:["H","h","hb","hB"],GL:["H","h"],GM:["h","hb","H","hB"],GN:["H","hB"],GP:["H","hB"],GQ:["H","hB","h","hb"],GR:["h","H","hb","hB"],GT:["h","H","hB","hb"],GU:["h","hb","H","hB"],GW:["H","hB"],GY:["h","hb","H","hB"],HK:["h","hB","hb","H"],HN:["h","H","hB","hb"],HR:["H","hB"],HU:["H","h"],IC:["H","h","hB","hb"],ID:["H"],IE:["H","h","hb","hB"],IL:["H","hB"],IM:["H","h","hb","hB"],IN:["h","H"],IO:["H","h","hb","hB"],IQ:["h","hB","hb","H"],IR:["hB","H"],IS:["H"],IT:["H","hB"],JE:["H","h","hb","hB"],JM:["h","hb","H","hB"],JO:["h","hB","hb","H"],JP:["H","K","h"],KE:["hB","hb","H","h"],KG:["H","h","hB","hb"],KH:["hB","h","H","hb"],KI:["h","hb","H","hB"],KM:["H","h","hB","hb"],KN:["h","hb","H","hB"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],KW:["h","hB","hb","H"],KY:["h","hb","H","hB"],KZ:["H","hB"],LA:["H","hb","hB","h"],LB:["h","hB","hb","H"],LC:["h","hb","H","hB"],LI:["H","hB","h"],LK:["H","h","hB","hb"],LR:["h","hb","H","hB"],LS:["h","H"],LT:["H","h","hb","hB"],LU:["H","h","hB"],LV:["H","hB","hb","h"],LY:["h","hB","hb","H"],MA:["H","h","hB","hb"],MC:["H","hB"],MD:["H","hB"],ME:["H","hB","h"],MF:["H","hB"],MG:["H","h"],MH:["h","hb","H","hB"],MK:["H","h","hb","hB"],ML:["H"],MM:["hB","hb","H","h"],MN:["H","h","hb","hB"],MO:["h","hB","hb","H"],MP:["h","hb","H","hB"],MQ:["H","hB"],MR:["h","hB","hb","H"],MS:["H","h","hb","hB"],MT:["H","h"],MU:["H","h"],MV:["H","h"],MW:["h","hb","H","hB"],MX:["h","H","hB","hb"],MY:["hb","hB","h","H"],MZ:["H","hB"],NA:["h","H","hB","hb"],NC:["H","hB"],NE:["H"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NI:["h","H","hB","hb"],NL:["H","hB"],NO:["H","h"],NP:["H","h","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],NZ:["h","hb","H","hB"],OM:["h","hB","hb","H"],PA:["h","H","hB","hb"],PE:["h","H","hB","hb"],PF:["H","h","hB"],PG:["h","H"],PH:["h","hB","hb","H"],PK:["h","hB","H"],PL:["H","h"],PM:["H","hB"],PN:["H","h","hb","hB"],PR:["h","H","hB","hb"],PS:["h","hB","hb","H"],PT:["H","hB"],PW:["h","H"],PY:["h","H","hB","hb"],QA:["h","hB","hb","H"],RE:["H","hB"],RO:["H","hB"],RS:["H","hB","h"],RU:["H"],RW:["H","h"],SA:["h","hB","hb","H"],SB:["h","hb","H","hB"],SC:["H","h","hB"],SD:["h","hB","hb","H"],SE:["H"],SG:["h","hb","H","hB"],SH:["H","h","hb","hB"],SI:["H","hB"],SJ:["H"],SK:["H"],SL:["h","hb","H","hB"],SM:["H","h","hB"],SN:["H","h","hB"],SO:["h","H"],SR:["H","hB"],SS:["h","hb","H","hB"],ST:["H","hB"],SV:["h","H","hB","hb"],SX:["H","h","hb","hB"],SY:["h","hB","hb","H"],SZ:["h","hb","H","hB"],TA:["H","h","hb","hB"],TC:["h","hb","H","hB"],TD:["h","H","hB"],TF:["H","h","hB"],TG:["H","hB"],TH:["H","h"],TJ:["H","h"],TL:["H","hB","hb","h"],TM:["H","h"],TN:["h","hB","hb","H"],TO:["h","H"],TR:["H","hB"],TT:["h","hb","H","hB"],TW:["hB","hb","h","H"],TZ:["hB","hb","H","h"],UA:["H","hB","h"],UG:["hB","hb","H","h"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],UY:["h","H","hB","hb"],UZ:["H","hB","h"],VA:["H","h","hB"],VC:["h","hb","H","hB"],VE:["h","H","hB","hb"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],VN:["H","h"],VU:["h","H"],WF:["H","hB"],WS:["h","H"],XK:["H","hB","h"],YE:["h","hB","hb","H"],YT:["H","hB"],ZA:["H","h","hb","hB"],ZM:["h","hb","H","hB"],ZW:["H","h"],"af-ZA":["H","h","hB","hb"],"ar-001":["h","hB","hb","H"],"ca-ES":["H","h","hB"],"en-001":["h","hb","H","hB"],"en-HK":["h","hb","H","hB"],"en-IL":["H","h","hb","hB"],"en-MY":["h","hb","H","hB"],"es-BR":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"gu-IN":["hB","hb","h","H"],"hi-IN":["hB","h","H"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],"ta-IN":["hB","h","hb","H"],"te-IN":["hB","h","H"],"zu-ZA":["H","hB","hb","h"]};function ot(e,t){for(var r="",n=0;n<e.length;n++){var a=e.charAt(n);if(a==="j"){for(var i=0;n+1<e.length&&e.charAt(n+1)===a;)i++,n++;var o=1+(i&1),s=i<2?1:3+(i>>1),u="a",l=st(t);for((l=="H"||l=="k")&&(s=0);s-- >0;)r+=u;for(;o-- >0;)r=l+r}else a==="J"?r+="H":r+=a}return r}function st(e){var t=e.hourCycle;if(t===void 0&&e.hourCycles&&e.hourCycles.length&&(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")}var r=e.language,n;r!=="root"&&(n=e.maximize().region);var a=V[n||""]||V[r||""]||V["".concat(r,"-001")]||V["001"];return a[0]}var Q,ut=new RegExp("^".concat(pe.source,"*")),ht=new RegExp("".concat(pe.source,"*$"));function p(e,t){return{start:e,end:t}}var lt=!!String.prototype.startsWith&&"_a".startsWith("a",1),ft=!!String.fromCodePoint,mt=!!Object.fromEntries,ct=!!String.prototype.codePointAt,gt=!!String.prototype.trimStart,pt=!!String.prototype.trimEnd,vt=!!Number.isSafeInteger,dt=vt?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Y=!0;try{var Et=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Y=((Q=Et.exec("a"))===null||Q===void 0?void 0:Q[0])==="a"}catch{Y=!1}var Te=lt?function(t,r,n){return t.startsWith(r,n)}:function(t,r,n){return t.slice(n,n+r.length)===r},$=ft?String.fromCodePoint:function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var n="",a=t.length,i=0,o;a>i;){if(o=t[i++],o>1114111)throw RangeError(o+" is not a valid code point");n+=o<65536?String.fromCharCode(o):String.fromCharCode(((o-=65536)>>10)+55296,o%1024+56320)}return n},Se=mt?Object.fromEntries:function(t){for(var r={},n=0,a=t;n<a.length;n++){var i=a[n],o=i[0],s=i[1];r[o]=s}return r},He=ct?function(t,r){return t.codePointAt(r)}:function(t,r){var n=t.length;if(!(r<0||r>=n)){var a=t.charCodeAt(r),i;return a<55296||a>56319||r+1===n||(i=t.charCodeAt(r+1))<56320||i>57343?a:(a-55296<<10)+(i-56320)+65536}},bt=gt?function(t){return t.trimStart()}:function(t){return t.replace(ut,"")},yt=pt?function(t){return t.trimEnd()}:function(t){return t.replace(ht,"")};function Ie(e,t){return new RegExp(e,t)}var K;if(Y){var Ne=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");K=function(t,r){var n;Ne.lastIndex=r;var a=Ne.exec(t);return(n=a[1])!==null&&n!==void 0?n:""}}else K=function(t,r){for(var n=[];;){var a=He(t,r);if(a===void 0||Ae(a)||Ht(a))break;n.push(a),r+=a>=65536?2:1}return $.apply(void 0,n)};var xt=function(){function e(t,r){r===void 0&&(r={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!r.ignoreTag,this.locale=r.locale,this.requiresOtherClause=!!r.requiresOtherClause,this.shouldParseSkeletons=!!r.shouldParseSkeletons}return e.prototype.parse=function(){if(this.offset()!==0)throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(t,r,n){for(var a=[];!this.isEOF();){var i=this.char();if(i===123){var o=this.parseArgument(t,n);if(o.err)return o;a.push(o.val)}else{if(i===125&&t>0)break;if(i===35&&(r==="plural"||r==="selectordinal")){var s=this.clonePosition();this.bump(),a.push({type:b.pound,location:p(s,this.clonePosition())})}else if(i===60&&!this.ignoreTag&&this.peek()===47){if(n)break;return this.error(g.UNMATCHED_CLOSING_TAG,p(this.clonePosition(),this.clonePosition()))}else if(i===60&&!this.ignoreTag&&ee(this.peek()||0)){var o=this.parseTag(t,r);if(o.err)return o;a.push(o.val)}else{var o=this.parseLiteral(t,r);if(o.err)return o;a.push(o.val)}}}return{val:a,err:null}},e.prototype.parseTag=function(t,r){var n=this.clonePosition();this.bump();var a=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:b.literal,value:"<".concat(a,"/>"),location:p(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(t+1,r,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!ee(this.char()))return this.error(g.INVALID_TAG,p(s,this.clonePosition()));var u=this.clonePosition(),l=this.parseTagName();return a!==l?this.error(g.UNMATCHED_CLOSING_TAG,p(u,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:b.tag,value:a,children:o,location:p(n,this.clonePosition())},err:null}:this.error(g.INVALID_TAG,p(s,this.clonePosition())))}else return this.error(g.UNCLOSED_TAG,p(n,this.clonePosition()))}else return this.error(g.INVALID_TAG,p(n,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&St(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,r){for(var n=this.clonePosition(),a="";;){var i=this.tryParseQuote(r);if(i){a+=i;continue}var o=this.tryParseUnquoted(t,r);if(o){a+=o;continue}var s=this.tryParseLeftAngleBracket();if(s){a+=s;continue}break}var u=p(n,this.clonePosition());return{val:{type:b.literal,value:a,location:u},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!Tt(this.peek()||0))?(this.bump(),"<"):null},e.prototype.tryParseQuote=function(t){if(this.isEOF()||this.char()!==39)return null;switch(this.peek()){case 39:return this.bump(),this.bump(),"'";case 123:case 60:case 62:case 125:break;case 35:if(t==="plural"||t==="selectordinal")break;return null;default:return null}this.bump();var r=[this.char()];for(this.bump();!this.isEOF();){var n=this.char();if(n===39)if(this.peek()===39)r.push(39),this.bump();else{this.bump();break}else r.push(n);this.bump()}return $.apply(void 0,r)},e.prototype.tryParseUnquoted=function(t,r){if(this.isEOF())return null;var n=this.char();return n===60||n===123||n===35&&(r==="plural"||r==="selectordinal")||n===125&&t>0?null:(this.bump(),$(n))},e.prototype.parseArgument=function(t,r){var n=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(g.EMPTY_ARGUMENT,p(n,this.clonePosition()));var a=this.parseIdentifierIfPossible().value;if(!a)return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:b.argument,value:a,location:p(n,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition())):this.parseArgumentOptions(t,r,a,n);default:return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),r=this.offset(),n=K(this.message,r),a=r+n.length;this.bumpTo(a);var i=this.clonePosition(),o=p(t,i);return{value:n,location:o}},e.prototype.parseArgumentOptions=function(t,r,n,a){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,u=this.clonePosition();switch(s){case"":return this.error(g.EXPECT_ARGUMENT_TYPE,p(o,u));case"number":case"date":case"time":{this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var h=this.clonePosition(),m=this.parseSimpleArgStyleIfPossible();if(m.err)return m;var c=yt(m.val);if(c.length===0)return this.error(g.EXPECT_ARGUMENT_STYLE,p(this.clonePosition(),this.clonePosition()));var y=p(h,this.clonePosition());l={style:c,styleLocation:y}}var x=this.tryParseArgumentClose(a);if(x.err)return x;var d=p(a,this.clonePosition());if(l&&Te(l==null?void 0:l.style,"::",0)){var v=bt(l.style.slice(2));if(s==="number"){var m=this.parseNumberSkeletonFromString(v,l.styleLocation);return m.err?m:{val:{type:b.number,value:n,location:d,style:m.val},err:null}}else{if(v.length===0)return this.error(g.EXPECT_DATE_TIME_SKELETON,d);var E=v;this.locale&&(E=ot(v,this.locale));var c={type:F.dateTime,pattern:E,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?Ke(E):{}},T=s==="date"?b.date:b.time;return{val:{type:T,value:n,location:d,style:c},err:null}}}return{val:{type:s==="number"?b.number:s==="date"?b.date:b.time,value:n,location:d,style:(i=l==null?void 0:l.style)!==null&&i!==void 0?i:null},err:null}}case"plural":case"selectordinal":case"select":{var S=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS,p(S,f({},S)));this.bumpSpace();var U=this.parseIdentifierIfPossible(),D=0;if(s!=="select"&&U.value==="offset"){if(!this.bumpIf(":"))return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,p(this.clonePosition(),this.clonePosition()));this.bumpSpace();var m=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(m.err)return m;this.bumpSpace(),U=this.parseIdentifierIfPossible(),D=m.val}var W=this.tryParsePluralOrSelectOptions(t,s,r,U);if(W.err)return W;var x=this.tryParseArgumentClose(a);if(x.err)return x;var ke=p(a,this.clonePosition());return s==="select"?{val:{type:b.select,value:n,options:Se(W.val),location:ke},err:null}:{val:{type:b.plural,value:n,options:Se(W.val),offset:D,pluralType:s==="plural"?"cardinal":"ordinal",location:ke},err:null}}default:return this.error(g.INVALID_ARGUMENT_TYPE,p(o,u))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,r=this.clonePosition();!this.isEOF();){var n=this.char();switch(n){case 39:{this.bump();var a=this.clonePosition();if(!this.bumpUntil("'"))return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,p(a,this.clonePosition()));this.bump();break}case 123:{t+=1,this.bump();break}case 125:{if(t>0)t-=1;else return{val:this.message.slice(r.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(r.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,r){var n=[];try{n=tt(t)}catch{return this.error(g.INVALID_NUMBER_SKELETON,r)}return{val:{type:F.number,tokens:n,location:r,parsedOptions:this.shouldParseSkeletons?it(n):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,r,n,a){for(var i,o=!1,s=[],u=new Set,l=a.value,h=a.location;;){if(l.length===0){var m=this.clonePosition();if(r!=="select"&&this.bumpIf("=")){var c=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR,g.INVALID_PLURAL_ARGUMENT_SELECTOR);if(c.err)return c;h=p(m,this.clonePosition()),l=this.message.slice(m.offset,this.offset())}else break}if(u.has(l))return this.error(r==="select"?g.DUPLICATE_SELECT_ARGUMENT_SELECTOR:g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,h);l==="other"&&(o=!0),this.bumpSpace();var y=this.clonePosition();if(!this.bumpIf("{"))return this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,p(this.clonePosition(),this.clonePosition()));var x=this.parseMessage(t+1,r,n);if(x.err)return x;var d=this.tryParseArgumentClose(y);if(d.err)return d;s.push([l,{value:x.val,location:p(y,this.clonePosition())}]),u.add(l),this.bumpSpace(),i=this.parseIdentifierIfPossible(),l=i.value,h=i.location}return s.length===0?this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR:g.EXPECT_PLURAL_ARGUMENT_SELECTOR,p(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(g.MISSING_OTHER_CLAUSE,p(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(t,r){var n=1,a=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-1);for(var i=!1,o=0;!this.isEOF();){var s=this.char();if(s>=48&&s<=57)i=!0,o=o*10+(s-48),this.bump();else break}var u=p(a,this.clonePosition());return i?(o*=n,dt(o)?{val:o,err:null}:this.error(r,u)):this.error(t,u)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){return{offset:this.position.offset,line:this.position.line,column:this.position.column}},e.prototype.char=function(){var t=this.position.offset;if(t>=this.message.length)throw Error("out of bound");var r=He(this.message,t);if(r===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return r},e.prototype.error=function(t,r){return{val:null,err:{kind:t,message:this.message,location:r}}},e.prototype.bump=function(){if(!this.isEOF()){var t=this.char();t===10?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,this.position.offset+=t<65536?1:2)}},e.prototype.bumpIf=function(t){if(Te(this.message,t,this.offset())){for(var r=0;r<t.length;r++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var r=this.offset(),n=this.message.indexOf(t,r);return n>=0?(this.bumpTo(n),!0):(this.bumpTo(this.message.length),!1)},e.prototype.bumpTo=function(t){if(this.offset()>t)throw Error("targetOffset ".concat(t," must be greater than or equal to the current offset ").concat(this.offset()));for(t=Math.min(t,this.message.length);;){var r=this.offset();if(r===t)break;if(r>t)throw Error("targetOffset ".concat(t," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},e.prototype.bumpSpace=function(){for(;!this.isEOF()&&Ae(this.char());)this.bump()},e.prototype.peek=function(){if(this.isEOF())return null;var t=this.char(),r=this.offset(),n=this.message.charCodeAt(r+(t>=65536?2:1));return n??null},e}();function ee(e){return e>=97&&e<=122||e>=65&&e<=90}function Tt(e){return ee(e)||e===47}function St(e){return e===45||e===46||e>=48&&e<=57||e===95||e>=97&&e<=122||e>=65&&e<=90||e==183||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}function Ae(e){return e>=9&&e<=13||e===32||e===133||e>=8206&&e<=8207||e===8232||e===8233}function Ht(e){return e>=33&&e<=35||e===36||e>=37&&e<=39||e===40||e===41||e===42||e===43||e===44||e===45||e>=46&&e<=47||e>=58&&e<=59||e>=60&&e<=62||e>=63&&e<=64||e===91||e===92||e===93||e===94||e===96||e===123||e===124||e===125||e===126||e===161||e>=162&&e<=165||e===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>=8208&&e<=8213||e>=8214&&e<=8215||e===8216||e===8217||e===8218||e>=8219&&e<=8220||e===8221||e===8222||e===8223||e>=8224&&e<=8231||e>=8240&&e<=8248||e===8249||e===8250||e>=8251&&e<=8254||e>=8257&&e<=8259||e===8260||e===8261||e===8262||e>=8263&&e<=8273||e===8274||e===8275||e>=8277&&e<=8286||e>=8592&&e<=8596||e>=8597&&e<=8601||e>=8602&&e<=8603||e>=8604&&e<=8607||e===8608||e>=8609&&e<=8610||e===8611||e>=8612&&e<=8613||e===8614||e>=8615&&e<=8621||e===8622||e>=8623&&e<=8653||e>=8654&&e<=8655||e>=8656&&e<=8657||e===8658||e===8659||e===8660||e>=8661&&e<=8691||e>=8692&&e<=8959||e>=8960&&e<=8967||e===8968||e===8969||e===8970||e===8971||e>=8972&&e<=8991||e>=8992&&e<=8993||e>=8994&&e<=9e3||e===9001||e===9002||e>=9003&&e<=9083||e===9084||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||e===9655||e>=9656&&e<=9664||e===9665||e>=9666&&e<=9719||e>=9720&&e<=9727||e>=9728&&e<=9838||e===9839||e>=9840&&e<=10087||e===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>=10132&&e<=10175||e>=10176&&e<=10180||e===10181||e===10182||e>=10183&&e<=10213||e===10214||e===10215||e===10216||e===10217||e===10218||e===10219||e===10220||e===10221||e===10222||e===10223||e>=10224&&e<=10239||e>=10240&&e<=10495||e>=10496&&e<=10626||e===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>=10649&&e<=10711||e===10712||e===10713||e===10714||e===10715||e>=10716&&e<=10747||e===10748||e===10749||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||e===11158||e>=11159&&e<=11263||e>=11776&&e<=11777||e===11778||e===11779||e===11780||e===11781||e>=11782&&e<=11784||e===11785||e===11786||e===11787||e===11788||e===11789||e>=11790&&e<=11798||e===11799||e>=11800&&e<=11801||e===11802||e===11803||e===11804||e===11805||e>=11806&&e<=11807||e===11808||e===11809||e===11810||e===11811||e===11812||e===11813||e===11814||e===11815||e===11816||e===11817||e>=11818&&e<=11822||e===11823||e>=11824&&e<=11833||e>=11834&&e<=11835||e>=11836&&e<=11839||e===11840||e===11841||e===11842||e>=11843&&e<=11855||e>=11856&&e<=11857||e===11858||e>=11859&&e<=11903||e>=12289&&e<=12291||e===12296||e===12297||e===12298||e===12299||e===12300||e===12301||e===12302||e===12303||e===12304||e===12305||e>=12306&&e<=12307||e===12308||e===12309||e===12310||e===12311||e===12312||e===12313||e===12314||e===12315||e===12316||e===12317||e>=12318&&e<=12319||e===12320||e===12336||e===64830||e===64831||e>=65093&&e<=65094}function te(e){e.forEach(function(t){if(delete t.location,fe(t)||me(t))for(var r in t.options)delete t.options[r].location,te(t.options[r].value);else ue(t)&&ge(t.style)||(he(t)||le(t))&&J(t.style)?delete t.style.location:ce(t)&&te(t.children)})}function It(e,t){t===void 0&&(t={}),t=f({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var r=new xt(e,t).parse();if(r.err){var n=SyntaxError(g[r.err.kind]);throw n.location=r.err.location,n.originalMessage=r.err.message,n}return t!=null&&t.captureLocation||te(r.val),r.val}var L;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(L||(L={}));var R=function(e){_(t,e);function t(r,n,a){var i=e.call(this,r)||this;return i.code=n,i.originalMessage=a,i}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),Be=function(e){_(t,e);function t(r,n,a,i){return e.call(this,'Invalid values for "'.concat(r,'": "').concat(n,'". Options are "').concat(Object.keys(a).join('", "'),'"'),L.INVALID_VALUE,i)||this}return t}(R),Nt=function(e){_(t,e);function t(r,n,a){return e.call(this,'Value for "'.concat(r,'" must be of type ').concat(n),L.INVALID_VALUE,a)||this}return t}(R),At=function(e){_(t,e);function t(r,n){return e.call(this,'The intl string context variable "'.concat(r,'" was not provided to the string "').concat(n,'"'),L.MISSING_VALUE,n)||this}return t}(R),N;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(N||(N={}));function Bt(e){return e.length<2?e:e.reduce(function(t,r){var n=t[t.length-1];return!n||n.type!==N.literal||r.type!==N.literal?t.push(r):n.value+=r.value,t},[])}function _t(e){return typeof e=="function"}function k(e,t,r,n,a,i,o){if(e.length===1&&se(e[0]))return[{type:N.literal,value:e[0].value}];for(var s=[],u=0,l=e;u<l.length;u++){var h=l[u];if(se(h)){s.push({type:N.literal,value:h.value});continue}if(Ye(h)){typeof i=="number"&&s.push({type:N.literal,value:r.getNumberFormat(t).format(i)});continue}var m=h.value;if(!(a&&m in a))throw new At(m,o);var c=a[m];if(Qe(h)){(!c||typeof c=="string"||typeof c=="number")&&(c=typeof c=="string"||typeof c=="number"?String(c):""),s.push({type:typeof c=="string"?N.literal:N.object,value:c});continue}if(he(h)){var y=typeof h.style=="string"?n.date[h.style]:J(h.style)?h.style.parsedOptions:void 0;s.push({type:N.literal,value:r.getDateTimeFormat(t,y).format(c)});continue}if(le(h)){var y=typeof h.style=="string"?n.time[h.style]:J(h.style)?h.style.parsedOptions:n.time.medium;s.push({type:N.literal,value:r.getDateTimeFormat(t,y).format(c)});continue}if(ue(h)){var y=typeof h.style=="string"?n.number[h.style]:ge(h.style)?h.style.parsedOptions:void 0;y&&y.scale&&(c=c*(y.scale||1)),s.push({type:N.literal,value:r.getNumberFormat(t,y).format(c)});continue}if(ce(h)){var x=h.children,d=h.value,v=a[d];if(!_t(v))throw new Nt(d,"function",o);var E=k(x,t,r,n,a,i),T=v(E.map(function(D){return D.value}));Array.isArray(T)||(T=[T]),s.push.apply(s,T.map(function(D){return{type:typeof D=="string"?N.literal:N.object,value:D}}))}if(fe(h)){var S=h.options[c]||h.options.other;if(!S)throw new Be(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a));continue}if(me(h)){var S=h.options["=".concat(c)];if(!S){if(!Intl.PluralRules)throw new R(`Intl.PluralRules is not available in this environment.
2
2
  Try polyfilling it using "@formatjs/intl-pluralrules"
3
3
  `,L.MISSING_INTL_API,o);var U=r.getPluralRules(t,{type:h.pluralType}).select(c-(h.offset||0));S=h.options[U]||h.options.other}if(!S)throw new Be(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a,c-(h.offset||0)));continue}}return Bt(s)}function Pt(e,t){return t?f(f(f({},e||{}),t||{}),Object.keys(e).reduce(function(r,n){return r[n]=f(f({},e[n]),t[n]||{}),r},{})):e}function Lt(e,t){return t?Object.keys(e).reduce(function(r,n){return r[n]=Pt(e[n],t[n]),r},f({},e)):e}function re(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Rt(e){return e===void 0&&(e={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.NumberFormat).bind.apply(t,A([void 0],r,!1)))},{cache:re(e.number),strategy:I.variadic}),getDateTimeFormat:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.DateTimeFormat).bind.apply(t,A([void 0],r,!1)))},{cache:re(e.dateTime),strategy:I.variadic}),getPluralRules:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.PluralRules).bind.apply(t,A([void 0],r,!1)))},{cache:re(e.pluralRules),strategy:I.variadic})}}var _e=function(){function e(t,r,n,a){r===void 0&&(r=e.defaultLocale);var i=this;if(this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(u){var l=i.formatToParts(u);if(l.length===1)return l[0].value;var h=l.reduce(function(m,c){return!m.length||c.type!==N.literal||typeof m[m.length-1]!="string"?m.push(c.value):m[m.length-1]+=c.value,m},[]);return h.length<=1?h[0]||"":h},this.formatToParts=function(u){return k(i.ast,i.locales,i.formatters,i.formats,u,void 0,i.message)},this.resolvedOptions=function(){var u;return{locale:((u=i.resolvedLocale)===null||u===void 0?void 0:u.toString())||Intl.NumberFormat.supportedLocalesOf(i.locales)[0]}},this.getAst=function(){return i.ast},this.locales=r,this.resolvedLocale=e.resolveLocale(r),typeof t=="string"){if(this.message=t,!e.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");var o=a||{};o.formatters;var s=je(o,["formatters"]);this.ast=e.__parse(t,f(f({},s),{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.");this.formats=Lt(e.formats,n),this.formatters=a&&a.formatters||Rt(this.formatterCache)}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(t){if(!(typeof Intl.Locale>"u")){var r=Intl.NumberFormat.supportedLocalesOf(t);return r.length>0?new Intl.Locale(r[0]):new Intl.Locale(typeof t=="string"?t:t[0])}},e.__parse=It,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}(),O;(function(e){e.FORMAT_ERROR="FORMAT_ERROR",e.UNSUPPORTED_FORMATTER="UNSUPPORTED_FORMATTER",e.INVALID_CONFIG="INVALID_CONFIG",e.MISSING_DATA="MISSING_DATA",e.MISSING_TRANSLATION="MISSING_TRANSLATION"})(O||(O={}));var G=function(e){_(t,e);function t(r,n,a){var i=this,o=a?a instanceof Error?a:new Error(String(a)):void 0;return i=e.call(this,"[@formatjs/intl Error ".concat(r,"] ").concat(n,`
4
4
  `).concat(o?`
@@ -9,7 +9,7 @@ Locale: `).concat(n,`
9
9
  MessageID: `).concat(a==null?void 0:a.id,`
10
10
  Default Message: `).concat(a==null?void 0:a.defaultMessage,`
11
11
  Description: `).concat(a==null?void 0:a.description,`
12
- `),n,i)||this;return o.descriptor=a,o.locale=n,o}return t}(B),Ct=function(e){_(t,e);function t(r,n){var a=e.call(this,O.MISSING_TRANSLATION,'Missing message: "'.concat(r.id,'" for locale "').concat(n,'", using ').concat(r.defaultMessage?"default message (".concat(typeof r.defaultMessage=="string"?r.defaultMessage:r.defaultMessage.map(function(i){var o;return(o=i.value)!==null&&o!==void 0?o:JSON.stringify(i)}).join(),")"):"id"," as fallback."))||this;return a.descriptor=r,a}return t}(G);function M(e,t,r){return r===void 0&&(r={}),t.reduce(function(n,a){return a in e?n[a]=e[a]:a in r&&(n[a]=r[a]),n},{})}var Dt=function(e){process.env.NODE_ENV!=="production"&&console.error(e)},wt=function(e){process.env.NODE_ENV!=="production"&&console.warn(e)},Ft={formats:{},messages:{},timeZone:void 0,defaultLocale:"en",defaultFormats:{},fallbackOnEmptyString:!0,onError:Dt,onWarn:wt};function Le(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function C(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Gt(e){e===void 0&&(e=Le());var t=Intl.RelativeTimeFormat,r=Intl.ListFormat,n=Intl.DisplayNames,a=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.DateTimeFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.dateTime),strategy:I.variadic}),i=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.NumberFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.number),strategy:I.variadic}),o=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.PluralRules).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.pluralRules),strategy:I.variadic});return{getDateTimeFormat:a,getNumberFormat:i,getMessageFormat:H(function(s,u,l,h){return new _e(s,u,l,f({formatters:{getNumberFormat:i,getDateTimeFormat:a,getPluralRules:o}},h||{}))},{cache:C(e.message),strategy:I.variadic}),getRelativeTimeFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(t.bind.apply(t,A([void 0],s,!1)))},{cache:C(e.relativeTime),strategy:I.variadic}),getPluralRules:o,getListFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(r.bind.apply(r,A([void 0],s,!1)))},{cache:C(e.list),strategy:I.variadic}),getDisplayNames:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(n.bind.apply(n,A([void 0],s,!1)))},{cache:C(e.displayNames),strategy:I.variadic})}}function ae(e,t,r,n){var a=e&&e[t],i;if(a&&(i=a[r]),i)return i;n(new Ot("No ".concat(t," format named: ").concat(r)))}function Ut(e,t,r){if(r===void 0&&(r=Error),!e)throw new r(t)}H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.NumberFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.DateTimeFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.PluralRules).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.Locale).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.ListFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic});function j(e,t){return Object.keys(e).reduce(function(r,n){return r[n]=f({timeZone:t},e[n]),r},{})}function Re(e,t){var r=Object.keys(f(f({},e),t));return r.reduce(function(n,a){return n[a]=f(f({},e[a]||{}),t[a]||{}),n},{})}function Oe(e,t){if(!t)return e;var r=_e.formats;return f(f(f({},r),e),{date:Re(j(r.date,t),j(e.date||{},t)),time:Re(j(r.time,t),j(e.time||{},t))})}var Me=function(e,t,r,n,a){var i=e.locale,o=e.formats,s=e.messages,u=e.defaultLocale,l=e.defaultFormats,h=e.fallbackOnEmptyString,m=e.onError,c=e.timeZone,b=e.defaultRichTextElements;r===void 0&&(r={id:""});var x=r.id,d=r.defaultMessage;Ut(!!x,"[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");var v=String(x),y=s&&Object.prototype.hasOwnProperty.call(s,v)&&s[v];if(Array.isArray(y)&&y.length===1&&y[0].type===E.literal)return y[0].value;if(!n&&y&&typeof y=="string"&&!b)return y.replace(/'\{(.*?)\}'/gi,"{$1}");if(n=f(f({},b),n||{}),o=Oe(o,c),l=Oe(l,c),!y){if(h===!1&&y==="")return y;if((!d||i&&i.toLowerCase()!==u.toLowerCase())&&m(new Ct(r,i)),d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){return m(new ne('Error formatting default message for: "'.concat(v,'", rendering default message verbatim'),i,r,S)),typeof d=="string"?d:v}return v}try{var T=t.getMessageFormat(y,i,o,f({formatters:t},a||{}));return T.format(n)}catch(S){m(new ne('Error formatting message: "'.concat(v,'", using ').concat(d?"default message":"id"," as fallback."),i,r,S))}if(d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){m(new ne('Error formatting the default message for: "'.concat(v,'", rendering message verbatim'),i,r,S))}return typeof y=="string"?y:typeof d=="string"?d:v},Ce=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function X(e,t,r,n){var a=e.locale,i=e.formats,o=e.onError,s=e.timeZone;n===void 0&&(n={});var u=n.format,l=f(f({},s&&{timeZone:s}),u&&ae(i,t,u,o)),h=M(n,Ce,l);return t==="time"&&!h.hour&&!h.minute&&!h.second&&!h.timeStyle&&!h.dateStyle&&(h=f(f({},h),{hour:"numeric",minute:"numeric"})),r(a,h)}function Vt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).format(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return String(s)}function kt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).format(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return String(s)}function jt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=r[2],s=o===void 0?{}:o,u=e.timeZone,l=e.locale,h=e.onError,m=M(s,Ce,u?{timeZone:u}:{});try{return t(l,m).formatRange(a,i)}catch(c){h(new B("Error formatting date time range.",e.locale,c))}return String(a)}function Xt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return[]}function Wt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return[]}var Zt=["style","type","fallback","languageDisplay"];function zt(e,t,r,n){var a=e.locale,i=e.onError,o=Intl.DisplayNames;o||i(new R(`Intl.DisplayNames is not available in this environment.
12
+ `),n,i)||this;return o.descriptor=a,o.locale=n,o}return t}(B),Ct=function(e){_(t,e);function t(r,n){var a=e.call(this,O.MISSING_TRANSLATION,'Missing message: "'.concat(r.id,'" for locale "').concat(n,'", using ').concat(r.defaultMessage?"default message (".concat(typeof r.defaultMessage=="string"?r.defaultMessage:r.defaultMessage.map(function(i){var o;return(o=i.value)!==null&&o!==void 0?o:JSON.stringify(i)}).join(),")"):"id"," as fallback."))||this;return a.descriptor=r,a}return t}(G);function M(e,t,r){return r===void 0&&(r={}),t.reduce(function(n,a){return a in e?n[a]=e[a]:a in r&&(n[a]=r[a]),n},{})}var Dt=function(e){process.env.NODE_ENV!=="production"&&console.error(e)},wt=function(e){process.env.NODE_ENV!=="production"&&console.warn(e)},Ft={formats:{},messages:{},timeZone:void 0,defaultLocale:"en",defaultFormats:{},fallbackOnEmptyString:!0,onError:Dt,onWarn:wt};function Le(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function C(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Gt(e){e===void 0&&(e=Le());var t=Intl.RelativeTimeFormat,r=Intl.ListFormat,n=Intl.DisplayNames,a=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.DateTimeFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.dateTime),strategy:I.variadic}),i=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.NumberFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.number),strategy:I.variadic}),o=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.PluralRules).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.pluralRules),strategy:I.variadic});return{getDateTimeFormat:a,getNumberFormat:i,getMessageFormat:H(function(s,u,l,h){return new _e(s,u,l,f({formatters:{getNumberFormat:i,getDateTimeFormat:a,getPluralRules:o}},h||{}))},{cache:C(e.message),strategy:I.variadic}),getRelativeTimeFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(t.bind.apply(t,A([void 0],s,!1)))},{cache:C(e.relativeTime),strategy:I.variadic}),getPluralRules:o,getListFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(r.bind.apply(r,A([void 0],s,!1)))},{cache:C(e.list),strategy:I.variadic}),getDisplayNames:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(n.bind.apply(n,A([void 0],s,!1)))},{cache:C(e.displayNames),strategy:I.variadic})}}function ae(e,t,r,n){var a=e&&e[t],i;if(a&&(i=a[r]),i)return i;n(new Ot("No ".concat(t," format named: ").concat(r)))}function Ut(e,t,r){if(r===void 0&&(r=Error),!e)throw new r(t)}H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.NumberFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.DateTimeFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.PluralRules).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.Locale).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.ListFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic});function j(e,t){return Object.keys(e).reduce(function(r,n){return r[n]=f({timeZone:t},e[n]),r},{})}function Re(e,t){var r=Object.keys(f(f({},e),t));return r.reduce(function(n,a){return n[a]=f(f({},e[a]||{}),t[a]||{}),n},{})}function Oe(e,t){if(!t)return e;var r=_e.formats;return f(f(f({},r),e),{date:Re(j(r.date,t),j(e.date||{},t)),time:Re(j(r.time,t),j(e.time||{},t))})}var Me=function(e,t,r,n,a){var i=e.locale,o=e.formats,s=e.messages,u=e.defaultLocale,l=e.defaultFormats,h=e.fallbackOnEmptyString,m=e.onError,c=e.timeZone,y=e.defaultRichTextElements;r===void 0&&(r={id:""});var x=r.id,d=r.defaultMessage;Ut(!!x,"[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");var v=String(x),E=s&&Object.prototype.hasOwnProperty.call(s,v)&&s[v];if(Array.isArray(E)&&E.length===1&&E[0].type===b.literal)return E[0].value;if(!n&&E&&typeof E=="string"&&!y)return E.replace(/'\{(.*?)\}'/gi,"{$1}");if(n=f(f({},y),n||{}),o=Oe(o,c),l=Oe(l,c),!E){if(h===!1&&E==="")return E;if((!d||i&&i.toLowerCase()!==u.toLowerCase())&&m(new Ct(r,i)),d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){return m(new ne('Error formatting default message for: "'.concat(v,'", rendering default message verbatim'),i,r,S)),typeof d=="string"?d:v}return v}try{var T=t.getMessageFormat(E,i,o,f({formatters:t},a||{}));return T.format(n)}catch(S){m(new ne('Error formatting message: "'.concat(v,'", using ').concat(d?"default message":"id"," as fallback."),i,r,S))}if(d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){m(new ne('Error formatting the default message for: "'.concat(v,'", rendering message verbatim'),i,r,S))}return typeof E=="string"?E:typeof d=="string"?d:v},Ce=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function X(e,t,r,n){var a=e.locale,i=e.formats,o=e.onError,s=e.timeZone;n===void 0&&(n={});var u=n.format,l=f(f({},s&&{timeZone:s}),u&&ae(i,t,u,o)),h=M(n,Ce,l);return t==="time"&&!h.hour&&!h.minute&&!h.second&&!h.timeStyle&&!h.dateStyle&&(h=f(f({},h),{hour:"numeric",minute:"numeric"})),r(a,h)}function Vt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).format(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return String(s)}function kt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).format(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return String(s)}function jt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=r[2],s=o===void 0?{}:o,u=e.timeZone,l=e.locale,h=e.onError,m=M(s,Ce,u?{timeZone:u}:{});try{return t(l,m).formatRange(a,i)}catch(c){h(new B("Error formatting date time range.",e.locale,c))}return String(a)}function Xt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return[]}function Wt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return[]}var Zt=["style","type","fallback","languageDisplay"];function zt(e,t,r,n){var a=e.locale,i=e.onError,o=Intl.DisplayNames;o||i(new R(`Intl.DisplayNames is not available in this environment.
13
13
  Try polyfilling it using "@formatjs/intl-displaynames"
14
14
  `,L.MISSING_INTL_API));var s=M(n,Zt);try{return t(a,s).of(r)}catch(u){i(new B("Error formatting display name.",a,u))}}var qt=["type","style"],De=Date.now();function Jt(e){return"".concat(De,"_").concat(e,"_").concat(De)}function Qt(e,t,r,n){n===void 0&&(n={});var a=we(e,t,r,n).reduce(function(i,o){var s=o.value;return typeof s!="string"?i.push(s):typeof i[i.length-1]=="string"?i[i.length-1]+=s:i.push(s),i},[]);return a.length===1?a[0]:a.length===0?"":a}function we(e,t,r,n){var a=e.locale,i=e.onError;n===void 0&&(n={});var o=Intl.ListFormat;o||i(new R(`Intl.ListFormat is not available in this environment.
15
15
  Try polyfilling it using "@formatjs/intl-listformat"
@@ -19,4 +19,4 @@ Try polyfilling it using "@formatjs/intl-pluralrules"
19
19
  Try polyfilling it using "@formatjs/intl-relativetimeformat"
20
20
  `,L.MISSING_INTL_API));try{return er(e,t,a).format(r,n)}catch(o){e.onError(new B("Error formatting relative time.",e.locale,o))}return String(r)}var rr=["style","currency","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","currencyDisplay","currencySign","notation","signDisplay","unit","unitDisplay","numberingSystem","trailingZeroDisplay","roundingPriority","roundingIncrement","roundingMode"];function Fe(e,t,r){var n=e.locale,a=e.formats,i=e.onError;r===void 0&&(r={});var o=r.format,s=o&&ae(a,"number",o,i)||{},u=M(r,rr,s);return t(n,u)}function nr(e,t,r,n){n===void 0&&(n={});try{return Fe(e,t,n).format(r)}catch(a){e.onError(new B("Error formatting number.",e.locale,a))}return String(r)}function ar(e,t,r,n){n===void 0&&(n={});try{return Fe(e,t,n).formatToParts(r)}catch(a){e.onError(new B("Error formatting number.",e.locale,a))}return[]}function ir(e){var t=e?e[Object.keys(e)[0]]:void 0;return typeof t=="string"}function or(e){e.onWarn&&e.defaultRichTextElements&&ir(e.messages||{})&&e.onWarn(`[@formatjs/intl] "defaultRichTextElements" was specified but "message" was not pre-compiled.
21
21
  Please consider using "@formatjs/cli" to pre-compile your messages for performance.
22
- For more details see https://formatjs.io/docs/getting-started/message-distribution`)}function sr(e,t){var r=Gt(t),n=f(f({},Ft),e),a=n.locale,i=n.defaultLocale,o=n.onError;return a?!Intl.NumberFormat.supportedLocalesOf(a).length&&o?o(new Pe('Missing locale data for locale: "'.concat(a,'" in Intl.NumberFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(a).length&&o&&o(new Pe('Missing locale data for locale: "'.concat(a,'" in Intl.DateTimeFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(o&&o(new Mt('"locale" was not configured, using "'.concat(i,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),n.locale=n.defaultLocale||"en"),or(n),f(f({},n),{formatters:r,formatNumber:nr.bind(null,n,r.getNumberFormat),formatNumberToParts:ar.bind(null,n,r.getNumberFormat),formatRelativeTime:tr.bind(null,n,r.getRelativeTimeFormat),formatDate:Vt.bind(null,n,r.getDateTimeFormat),formatDateToParts:Xt.bind(null,n,r.getDateTimeFormat),formatTime:kt.bind(null,n,r.getDateTimeFormat),formatDateTimeRange:jt.bind(null,n,r.getDateTimeFormat),formatTimeToParts:Wt.bind(null,n,r.getDateTimeFormat),formatPlural:$t.bind(null,n,r.getPluralRules),formatMessage:Me.bind(null,n,r),$t:Me.bind(null,n,r),formatList:Qt.bind(null,n,r.getListFormat),formatListToParts:we.bind(null,n,r.getListFormat),formatDisplayName:zt.bind(null,n,r.getDisplayNames)})}function ur(e){return e&&e.constructor&&typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)}function hr(e){return e}function lr(e,t){t=t||{};const r=t.delimiter||".",n=t.maxDepth,a=t.transformKey||hr,i={};function o(s,u,l){l=l||1,Object.keys(s).forEach(function(h){const m=s[h],c=t.safe&&Array.isArray(m),b=Object.prototype.toString.call(m),x=ur(m),d=b==="[object Object]"||b==="[object Array]",v=u?u+r+a(h):a(h);if(!c&&!x&&d&&Object.keys(m).length&&(!t.maxDepth||l<n))return o(m,v,l+1);i[v]=m})}return o(e),i}const fr=Le();let Ge;const Ue={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric"},mr=(e,t,r=!1)=>{var d;const n=typeof r=="boolean",a=sr({...n?null:r,locale:e,messages:lr(t,{safe:!0}),formats:{...n?null:r.formats,date:{...n?null:(d=r.formats)==null?void 0:d.date,datetime:Ue}}},fr),{$t:i,...o}=a,s=o,u=v=>v.toString().length===13?Math.floor(v/1e3):v,l=v=>{const y="Invalid Date";if(!v)return"-";try{const T=new Date(u(v)*1e3);return s.formatDate(T,Ue)}catch{return y}},x={formatUnixTimeStamp:l,formatIsoDate:v=>{const y=Date.parse(v)/1e3;return l(y)},t:(v,y,T)=>s.formatMessage({id:v},y,T),te:v=>!!s.messages[v],tm:v=>s.messages[v]||[],...s,source:t};return(typeof r=="boolean"&&r===!0||typeof r!="boolean"&&r.isGlobal===!0)&&(Ge=x),x};function cr(){return Ge}const Ve=(e=null)=>w.defineComponent({name:"I18nT",props:{i18n:{type:Object,default:null},keypath:{type:String,required:!0},tag:{type:String,default:"span"}},setup(t,{slots:r}){const n=a=>{if(!a)return[];const i=/(\{[^}]+\})/g;return a.split(i).filter(Boolean)};return()=>{var s;const a=Object.keys(r).filter(u=>u!=="_"),i=((s=(e||t.i18n).messages[t.keypath])==null?void 0:s.toString())||"";let o=n(i);return o=o.filter(u=>u!==""),o.forEach((u,l)=>{if(!u.startsWith("{")&&!u.endsWith("}"))return;const h=u.replace(/[\{\}]/g,"");h==="0"&&r.default?o[l]=r.default():a.includes(h)&&r[h]&&(o[l]=r[h]())}),w.h(t.tag,t,o)}}}),gr={install(e,t){const{i18n:r}=t;e.component("I18nT",Ve(r))}};P.Translation=gr,P.createI18n=mr,P.i18nTComponent=Ve,P.useI18n=cr,Object.defineProperty(P,Symbol.toStringTag,{value:"Module"})});
22
+ For more details see https://formatjs.io/docs/getting-started/message-distribution`)}function sr(e,t){var r=Gt(t),n=f(f({},Ft),e),a=n.locale,i=n.defaultLocale,o=n.onError;return a?!Intl.NumberFormat.supportedLocalesOf(a).length&&o?o(new Pe('Missing locale data for locale: "'.concat(a,'" in Intl.NumberFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(a).length&&o&&o(new Pe('Missing locale data for locale: "'.concat(a,'" in Intl.DateTimeFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(o&&o(new Mt('"locale" was not configured, using "'.concat(i,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),n.locale=n.defaultLocale||"en"),or(n),f(f({},n),{formatters:r,formatNumber:nr.bind(null,n,r.getNumberFormat),formatNumberToParts:ar.bind(null,n,r.getNumberFormat),formatRelativeTime:tr.bind(null,n,r.getRelativeTimeFormat),formatDate:Vt.bind(null,n,r.getDateTimeFormat),formatDateToParts:Xt.bind(null,n,r.getDateTimeFormat),formatTime:kt.bind(null,n,r.getDateTimeFormat),formatDateTimeRange:jt.bind(null,n,r.getDateTimeFormat),formatTimeToParts:Wt.bind(null,n,r.getDateTimeFormat),formatPlural:$t.bind(null,n,r.getPluralRules),formatMessage:Me.bind(null,n,r),$t:Me.bind(null,n,r),formatList:Qt.bind(null,n,r.getListFormat),formatListToParts:we.bind(null,n,r.getListFormat),formatDisplayName:zt.bind(null,n,r.getDisplayNames)})}function ur(e){return e&&e.constructor&&typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)}function hr(e){return e}function lr(e,t){t=t||{};const r=t.delimiter||".",n=t.maxDepth,a=t.transformKey||hr,i={};function o(s,u,l){l=l||1,Object.keys(s).forEach(function(h){const m=s[h],c=t.safe&&Array.isArray(m),y=Object.prototype.toString.call(m),x=ur(m),d=y==="[object Object]"||y==="[object Array]",v=u?u+r+a(h):a(h);if(!c&&!x&&d&&Object.keys(m).length&&(!t.maxDepth||l<n))return o(m,v,l+1);i[v]=m})}return o(e),i}const fr=Le();let Ge;const Ue={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric"},mr=(e,t,r=!1)=>{var d;const n=typeof r=="boolean",a=sr({...n?null:r,locale:e,messages:lr(t,{safe:!0}),formats:{...n?null:r.formats,date:{...n?null:(d=r.formats)==null?void 0:d.date,datetime:Ue}}},fr),{$t:i,...o}=a,s=o,u=v=>v.toString().length===13?Math.floor(v/1e3):v,l=v=>{const E="Invalid Date";if(!v)return E;try{const T=new Date(u(v)*1e3);return s.formatDate(T,Ue)}catch{return E}},x={formatUnixTimeStamp:l,formatIsoDate:v=>{const E=Date.parse(v)/1e3;return l(E)},t:(v,E,T)=>s.formatMessage({id:v},E,T),te:v=>!!s.messages[v],tm:v=>s.messages[v]||[],...s,source:t};return(typeof r=="boolean"&&r===!0||typeof r!="boolean"&&r.isGlobal===!0)&&(Ge=x),x};function cr(){return Ge}const Ve=(e=null)=>w.defineComponent({name:"I18nT",props:{i18n:{type:Object,default:null},keypath:{type:String,required:!0},tag:{type:String,default:"span"}},setup(t,{slots:r}){const n=a=>{if(!a)return[];const i=/(\{[^}]+\})/g;return a.split(i).filter(Boolean)};return()=>{var s;const a=Object.keys(r).filter(u=>u!=="_"),i=((s=(e||t.i18n).messages[t.keypath])==null?void 0:s.toString())||"";let o=n(i);return o=o.filter(u=>u!==""),o.forEach((u,l)=>{if(!u.startsWith("{")&&!u.endsWith("}"))return;const h=u.replace(/[\{\}]/g,"");h==="0"&&r.default?o[l]=r.default():a.includes(h)&&r[h]&&(o[l]=r[h]())}),w.h(t.tag,t,o)}}}),gr={install(e,t){const{i18n:r}=t;e.component("I18nT",Ve(r))}};P.Translation=gr,P.createI18n=mr,P.i18nTComponent=Ve,P.useI18n=cr,Object.defineProperty(P,Symbol.toStringTag,{value:"Module"})});
@@ -1 +1 @@
1
- {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAqB,gBAAgB,EAA+B,cAAc,EAAE,MAAM,SAAS,CAAA;AAe5H;;;;;;EAME;AACF,eAAO,MAAM,UAAU,GAAI,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,UAC3D,gBAAgB,YAAY,aAAa,WAAU,OAAO,GAAG,cAAc,KAAW,WAAW,CAAC,aAAa,CAiHvH,CAAA;AAGD,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,WAAW,CAAC,aAAa,CAAC,CAEvG"}
1
+ {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAqB,gBAAgB,EAA+B,cAAc,EAAE,MAAM,SAAS,CAAA;AAe5H;;;;;;EAME;AACF,eAAO,MAAM,UAAU,GAAI,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,UAC3D,gBAAgB,YAAY,aAAa,WAAU,OAAO,GAAG,cAAc,KAAW,WAAW,CAAC,aAAa,CAkGvH,CAAA;AAGD,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,WAAW,CAAC,aAAa,CAAC,CAEvG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong-ui-public/i18n",
3
- "version": "2.2.9-pr.1775.ff62e9772.0",
3
+ "version": "2.2.9",
4
4
  "type": "module",
5
5
  "main": "./dist/i18n.umd.js",
6
6
  "module": "./dist/i18n.es.js",