@kong-ui-public/i18n 0.6.2-pr.574.ab8cbf3.0 → 0.6.2-pr.616.754259.0

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/README.md CHANGED
@@ -12,6 +12,8 @@
12
12
  - [HTML safe formatting with `<i18n-t>`](#html-safe-formatting-with-i18n-t)
13
13
  - [Formatting numbers, dates and times](#formatting-numbers-dates-and-times)
14
14
  - [Additional service functions.](#additional-service-functions)
15
+ - [formatUnixTimeStamp](#formatunixtimestamp)
16
+ - [formatIsoDate](#formatisodate)
15
17
  - [te](#te)
16
18
  - [tm](#tm)
17
19
 
@@ -395,6 +397,42 @@ Every single method listed in [FormatJS](https://formatjs.io/docs/intl) is expos
395
397
 
396
398
  (as previously exposed by vue18n-n)
397
399
 
400
+ ### formatUnixTimeStamp
401
+
402
+ Formats a unix timestamp into a formatted date string
403
+
404
+ `code:`
405
+
406
+ ```ts
407
+ const { formatUnixTimeStamp } = useI18n()
408
+ console.log(formatUnixTimeStamp('1558006979'))
409
+ console.log()
410
+ ```
411
+
412
+ `result:`
413
+
414
+ ```json
415
+ May 16, 2019, 11:42 AM
416
+ ```
417
+
418
+ ### formatIsoDate
419
+
420
+ Format an ISO formatted date
421
+
422
+ `code:`
423
+
424
+ ```ts
425
+ const { formatIsoDate } = useI18n()
426
+ console.log(formatIsoDate('2019-05-16T11:42:59.000Z'))
427
+ console.log()
428
+ ```
429
+
430
+ `result:`
431
+
432
+ ```json
433
+ May 16, 2019, 11:42 AM
434
+ ```
435
+
398
436
  ### te
399
437
 
400
438
  check if translation message exists
package/dist/i18n.es.js CHANGED
@@ -49,10 +49,10 @@ var d;
49
49
  (function(e) {
50
50
  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";
51
51
  })(d || (d = {}));
52
- var w;
52
+ var D;
53
53
  (function(e) {
54
54
  e[e.number = 0] = "number", e[e.dateTime = 1] = "dateTime";
55
- })(w || (w = {}));
55
+ })(D || (D = {}));
56
56
  function ae(e) {
57
57
  return e.type === d.literal;
58
58
  }
@@ -81,10 +81,10 @@ function Se(e) {
81
81
  return e.type === d.tag;
82
82
  }
83
83
  function Ie(e) {
84
- return !!(e && typeof e == "object" && e.type === w.number);
84
+ return !!(e && typeof e == "object" && e.type === D.number);
85
85
  }
86
86
  function J(e) {
87
- return !!(e && typeof e == "object" && e.type === w.dateTime);
87
+ return !!(e && typeof e == "object" && e.type === D.dateTime);
88
88
  }
89
89
  var He = /[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/, qe = /(?:[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;
90
90
  function Je(e) {
@@ -1744,7 +1744,7 @@ function nt(e) {
1744
1744
  return i[0];
1745
1745
  }
1746
1746
  var Z, it = new RegExp("^".concat(He.source, "*")), at = new RegExp("".concat(He.source, "*$"));
1747
- function v(e, t) {
1747
+ function b(e, t) {
1748
1748
  return { start: e, end: t };
1749
1749
  }
1750
1750
  var ot = !!String.prototype.startsWith, st = !!String.fromCodePoint, ut = !!Object.fromEntries, ht = !!String.prototype.codePointAt, lt = !!String.prototype.trimStart, ft = !!String.prototype.trimEnd, ct = !!Number.isSafeInteger, mt = ct ? Number.isSafeInteger : function(e) {
@@ -1872,12 +1872,12 @@ var bt = (
1872
1872
  var s = this.clonePosition();
1873
1873
  this.bump(), i.push({
1874
1874
  type: d.pound,
1875
- location: v(s, this.clonePosition())
1875
+ location: b(s, this.clonePosition())
1876
1876
  });
1877
1877
  } else if (a === 60 && !this.ignoreTag && this.peek() === 47) {
1878
1878
  if (r)
1879
1879
  break;
1880
- return this.error(g.UNMATCHED_CLOSING_TAG, v(this.clonePosition(), this.clonePosition()));
1880
+ return this.error(g.UNMATCHED_CLOSING_TAG, b(this.clonePosition(), this.clonePosition()));
1881
1881
  } else if (a === 60 && !this.ignoreTag && K(this.peek() || 0)) {
1882
1882
  var o = this.parseTag(t, n);
1883
1883
  if (o.err)
@@ -1901,7 +1901,7 @@ var bt = (
1901
1901
  val: {
1902
1902
  type: d.literal,
1903
1903
  value: "<".concat(i, "/>"),
1904
- location: v(r, this.clonePosition())
1904
+ location: b(r, this.clonePosition())
1905
1905
  },
1906
1906
  err: null
1907
1907
  };
@@ -1912,21 +1912,21 @@ var bt = (
1912
1912
  var o = a.val, s = this.clonePosition();
1913
1913
  if (this.bumpIf("</")) {
1914
1914
  if (this.isEOF() || !K(this.char()))
1915
- return this.error(g.INVALID_TAG, v(s, this.clonePosition()));
1915
+ return this.error(g.INVALID_TAG, b(s, this.clonePosition()));
1916
1916
  var h = this.clonePosition(), l = this.parseTagName();
1917
- return i !== l ? this.error(g.UNMATCHED_CLOSING_TAG, v(h, this.clonePosition())) : (this.bumpSpace(), this.bumpIf(">") ? {
1917
+ return i !== l ? this.error(g.UNMATCHED_CLOSING_TAG, b(h, this.clonePosition())) : (this.bumpSpace(), this.bumpIf(">") ? {
1918
1918
  val: {
1919
1919
  type: d.tag,
1920
1920
  value: i,
1921
1921
  children: o,
1922
- location: v(r, this.clonePosition())
1922
+ location: b(r, this.clonePosition())
1923
1923
  },
1924
1924
  err: null
1925
- } : this.error(g.INVALID_TAG, v(s, this.clonePosition())));
1925
+ } : this.error(g.INVALID_TAG, b(s, this.clonePosition())));
1926
1926
  } else
1927
- return this.error(g.UNCLOSED_TAG, v(r, this.clonePosition()));
1927
+ return this.error(g.UNCLOSED_TAG, b(r, this.clonePosition()));
1928
1928
  } else
1929
- return this.error(g.INVALID_TAG, v(r, this.clonePosition()));
1929
+ return this.error(g.INVALID_TAG, b(r, this.clonePosition()));
1930
1930
  }, e.prototype.parseTagName = function() {
1931
1931
  var t = this.offset();
1932
1932
  for (this.bump(); !this.isEOF() && dt(this.char()); )
@@ -1951,7 +1951,7 @@ var bt = (
1951
1951
  }
1952
1952
  break;
1953
1953
  }
1954
- var h = v(r, this.clonePosition());
1954
+ var h = b(r, this.clonePosition());
1955
1955
  return {
1956
1956
  val: { type: d.literal, value: i, location: h },
1957
1957
  err: null
@@ -2001,14 +2001,14 @@ var bt = (
2001
2001
  }, e.prototype.parseArgument = function(t, n) {
2002
2002
  var r = this.clonePosition();
2003
2003
  if (this.bump(), this.bumpSpace(), this.isEOF())
2004
- return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, v(r, this.clonePosition()));
2004
+ return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, b(r, this.clonePosition()));
2005
2005
  if (this.char() === 125)
2006
- return this.bump(), this.error(g.EMPTY_ARGUMENT, v(r, this.clonePosition()));
2006
+ return this.bump(), this.error(g.EMPTY_ARGUMENT, b(r, this.clonePosition()));
2007
2007
  var i = this.parseIdentifierIfPossible().value;
2008
2008
  if (!i)
2009
- return this.error(g.MALFORMED_ARGUMENT, v(r, this.clonePosition()));
2009
+ return this.error(g.MALFORMED_ARGUMENT, b(r, this.clonePosition()));
2010
2010
  if (this.bumpSpace(), this.isEOF())
2011
- return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, v(r, this.clonePosition()));
2011
+ return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, b(r, this.clonePosition()));
2012
2012
  switch (this.char()) {
2013
2013
  case 125:
2014
2014
  return this.bump(), {
@@ -2016,25 +2016,25 @@ var bt = (
2016
2016
  type: d.argument,
2017
2017
  // value does not include the opening and closing braces.
2018
2018
  value: i,
2019
- location: v(r, this.clonePosition())
2019
+ location: b(r, this.clonePosition())
2020
2020
  },
2021
2021
  err: null
2022
2022
  };
2023
2023
  case 44:
2024
- return this.bump(), this.bumpSpace(), this.isEOF() ? this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, v(r, this.clonePosition())) : this.parseArgumentOptions(t, n, i, r);
2024
+ return this.bump(), this.bumpSpace(), this.isEOF() ? this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, b(r, this.clonePosition())) : this.parseArgumentOptions(t, n, i, r);
2025
2025
  default:
2026
- return this.error(g.MALFORMED_ARGUMENT, v(r, this.clonePosition()));
2026
+ return this.error(g.MALFORMED_ARGUMENT, b(r, this.clonePosition()));
2027
2027
  }
2028
2028
  }, e.prototype.parseIdentifierIfPossible = function() {
2029
2029
  var t = this.clonePosition(), n = this.offset(), r = $(this.message, n), i = n + r.length;
2030
2030
  this.bumpTo(i);
2031
- var a = this.clonePosition(), o = v(t, a);
2031
+ var a = this.clonePosition(), o = b(t, a);
2032
2032
  return { value: r, location: o };
2033
2033
  }, e.prototype.parseArgumentOptions = function(t, n, r, i) {
2034
2034
  var a, o = this.clonePosition(), s = this.parseIdentifierIfPossible().value, h = this.clonePosition();
2035
2035
  switch (s) {
2036
2036
  case "":
2037
- return this.error(g.EXPECT_ARGUMENT_TYPE, v(o, h));
2037
+ return this.error(g.EXPECT_ARGUMENT_TYPE, b(o, h));
2038
2038
  case "number":
2039
2039
  case "date":
2040
2040
  case "time": {
@@ -2047,14 +2047,14 @@ var bt = (
2047
2047
  return f;
2048
2048
  var c = vt(f.val);
2049
2049
  if (c.length === 0)
2050
- return this.error(g.EXPECT_ARGUMENT_STYLE, v(this.clonePosition(), this.clonePosition()));
2051
- var p = v(u, this.clonePosition());
2050
+ return this.error(g.EXPECT_ARGUMENT_STYLE, b(this.clonePosition(), this.clonePosition()));
2051
+ var p = b(u, this.clonePosition());
2052
2052
  l = { style: c, styleLocation: p };
2053
2053
  }
2054
- var b = this.tryParseArgumentClose(i);
2055
- if (b.err)
2056
- return b;
2057
- var E = v(i, this.clonePosition());
2054
+ var v = this.tryParseArgumentClose(i);
2055
+ if (v.err)
2056
+ return v;
2057
+ var E = b(i, this.clonePosition());
2058
2058
  if (l && he(l == null ? void 0 : l.style, "::", 0)) {
2059
2059
  var y = gt(l.style.slice(2));
2060
2060
  if (s === "number") {
@@ -2069,7 +2069,7 @@ var bt = (
2069
2069
  var x = y;
2070
2070
  this.locale && (x = rt(y, this.locale));
2071
2071
  var c = {
2072
- type: w.dateTime,
2072
+ type: D.dateTime,
2073
2073
  pattern: x,
2074
2074
  location: l.styleLocation,
2075
2075
  parsedOptions: this.shouldParseSkeletons ? Je(x) : {}
@@ -2095,25 +2095,25 @@ var bt = (
2095
2095
  case "select": {
2096
2096
  var T = this.clonePosition();
2097
2097
  if (this.bumpSpace(), !this.bumpIf(","))
2098
- return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS, v(T, m({}, T)));
2098
+ return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS, b(T, m({}, T)));
2099
2099
  this.bumpSpace();
2100
- var D = this.parseIdentifierIfPossible(), R = 0;
2101
- if (s !== "select" && D.value === "offset") {
2100
+ var w = this.parseIdentifierIfPossible(), R = 0;
2101
+ if (s !== "select" && w.value === "offset") {
2102
2102
  if (!this.bumpIf(":"))
2103
- return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, v(this.clonePosition(), this.clonePosition()));
2103
+ return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, b(this.clonePosition(), this.clonePosition()));
2104
2104
  this.bumpSpace();
2105
2105
  var f = this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);
2106
2106
  if (f.err)
2107
2107
  return f;
2108
- this.bumpSpace(), D = this.parseIdentifierIfPossible(), R = f.val;
2108
+ this.bumpSpace(), w = this.parseIdentifierIfPossible(), R = f.val;
2109
2109
  }
2110
- var U = this.tryParsePluralOrSelectOptions(t, s, n, D);
2110
+ var U = this.tryParsePluralOrSelectOptions(t, s, n, w);
2111
2111
  if (U.err)
2112
2112
  return U;
2113
- var b = this.tryParseArgumentClose(i);
2114
- if (b.err)
2115
- return b;
2116
- var ie = v(i, this.clonePosition());
2113
+ var v = this.tryParseArgumentClose(i);
2114
+ if (v.err)
2115
+ return v;
2116
+ var ie = b(i, this.clonePosition());
2117
2117
  return s === "select" ? {
2118
2118
  val: {
2119
2119
  type: d.select,
@@ -2135,10 +2135,10 @@ var bt = (
2135
2135
  };
2136
2136
  }
2137
2137
  default:
2138
- return this.error(g.INVALID_ARGUMENT_TYPE, v(o, h));
2138
+ return this.error(g.INVALID_ARGUMENT_TYPE, b(o, h));
2139
2139
  }
2140
2140
  }, e.prototype.tryParseArgumentClose = function(t) {
2141
- return this.isEOF() || this.char() !== 125 ? this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, v(t, this.clonePosition())) : (this.bump(), { val: !0, err: null });
2141
+ return this.isEOF() || this.char() !== 125 ? this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, b(t, this.clonePosition())) : (this.bump(), { val: !0, err: null });
2142
2142
  }, e.prototype.parseSimpleArgStyleIfPossible = function() {
2143
2143
  for (var t = 0, n = this.clonePosition(); !this.isEOF(); ) {
2144
2144
  var r = this.char();
@@ -2147,7 +2147,7 @@ var bt = (
2147
2147
  this.bump();
2148
2148
  var i = this.clonePosition();
2149
2149
  if (!this.bumpUntil("'"))
2150
- return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE, v(i, this.clonePosition()));
2150
+ return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE, b(i, this.clonePosition()));
2151
2151
  this.bump();
2152
2152
  break;
2153
2153
  }
@@ -2183,7 +2183,7 @@ var bt = (
2183
2183
  }
2184
2184
  return {
2185
2185
  val: {
2186
- type: w.number,
2186
+ type: D.number,
2187
2187
  tokens: r,
2188
2188
  location: n,
2189
2189
  parsedOptions: this.shouldParseSkeletons ? tt(r) : {}
@@ -2198,7 +2198,7 @@ var bt = (
2198
2198
  var c = this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR, g.INVALID_PLURAL_ARGUMENT_SELECTOR);
2199
2199
  if (c.err)
2200
2200
  return c;
2201
- u = v(f, this.clonePosition()), l = this.message.slice(f.offset, this.offset());
2201
+ u = b(f, this.clonePosition()), l = this.message.slice(f.offset, this.offset());
2202
2202
  } else
2203
2203
  break;
2204
2204
  }
@@ -2207,22 +2207,22 @@ var bt = (
2207
2207
  l === "other" && (o = !0), this.bumpSpace();
2208
2208
  var p = this.clonePosition();
2209
2209
  if (!this.bumpIf("{"))
2210
- return this.error(n === "select" ? g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT : g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, v(this.clonePosition(), this.clonePosition()));
2211
- var b = this.parseMessage(t + 1, n, r);
2212
- if (b.err)
2213
- return b;
2210
+ return this.error(n === "select" ? g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT : g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, b(this.clonePosition(), this.clonePosition()));
2211
+ var v = this.parseMessage(t + 1, n, r);
2212
+ if (v.err)
2213
+ return v;
2214
2214
  var E = this.tryParseArgumentClose(p);
2215
2215
  if (E.err)
2216
2216
  return E;
2217
2217
  s.push([
2218
2218
  l,
2219
2219
  {
2220
- value: b.val,
2221
- location: v(p, this.clonePosition())
2220
+ value: v.val,
2221
+ location: b(p, this.clonePosition())
2222
2222
  }
2223
2223
  ]), h.add(l), this.bumpSpace(), a = this.parseIdentifierIfPossible(), l = a.value, u = a.location;
2224
2224
  }
2225
- return s.length === 0 ? this.error(n === "select" ? g.EXPECT_SELECT_ARGUMENT_SELECTOR : g.EXPECT_PLURAL_ARGUMENT_SELECTOR, v(this.clonePosition(), this.clonePosition())) : this.requiresOtherClause && !o ? this.error(g.MISSING_OTHER_CLAUSE, v(this.clonePosition(), this.clonePosition())) : { val: s, err: null };
2225
+ return s.length === 0 ? this.error(n === "select" ? g.EXPECT_SELECT_ARGUMENT_SELECTOR : g.EXPECT_PLURAL_ARGUMENT_SELECTOR, b(this.clonePosition(), this.clonePosition())) : this.requiresOtherClause && !o ? this.error(g.MISSING_OTHER_CLAUSE, b(this.clonePosition(), this.clonePosition())) : { val: s, err: null };
2226
2226
  }, e.prototype.tryParseDecimalInteger = function(t, n) {
2227
2227
  var r = 1, i = this.clonePosition();
2228
2228
  this.bumpIf("+") || this.bumpIf("-") && (r = -1);
@@ -2233,7 +2233,7 @@ var bt = (
2233
2233
  else
2234
2234
  break;
2235
2235
  }
2236
- var h = v(i, this.clonePosition());
2236
+ var h = b(i, this.clonePosition());
2237
2237
  return a ? (o *= r, mt(o) ? { val: o, err: null } : this.error(n, h)) : this.error(t, h);
2238
2238
  }, e.prototype.offset = function() {
2239
2239
  return this.position.offset;
@@ -2499,10 +2499,10 @@ function k(e, t, n, r, i, a, o) {
2499
2499
  continue;
2500
2500
  }
2501
2501
  if (Se(u)) {
2502
- var b = u.children, E = u.value, y = i[E];
2502
+ var v = u.children, E = u.value, y = i[E];
2503
2503
  if (!Ot(y))
2504
2504
  throw new Bt(E, "function", o);
2505
- var x = k(b, t, n, r, i, a), I = y(x.map(function(R) {
2505
+ var x = k(v, t, n, r, i, a), I = y(x.map(function(R) {
2506
2506
  return R.value;
2507
2507
  }));
2508
2508
  Array.isArray(I) || (I = [I]), s.push.apply(s, I.map(function(R) {
@@ -2526,8 +2526,8 @@ function k(e, t, n, r, i, a, o) {
2526
2526
  throw new O(`Intl.PluralRules is not available in this environment.
2527
2527
  Try polyfilling it using "@formatjs/intl-pluralrules"
2528
2528
  `, _.MISSING_INTL_API, o);
2529
- var D = n.getPluralRules(t, { type: u.pluralType }).select(c - (u.offset || 0));
2530
- T = u.options[D] || u.options.other;
2529
+ var w = n.getPluralRules(t, { type: u.pluralType }).select(c - (u.offset || 0));
2530
+ T = u.options[w] || u.options.other;
2531
2531
  }
2532
2532
  if (!T)
2533
2533
  throw new ce(u.value, c, Object.keys(u.options), o);
@@ -2730,7 +2730,7 @@ var G = (
2730
2730
  }
2731
2731
  return t;
2732
2732
  }(G)
2733
- ), wt = (
2733
+ ), Dt = (
2734
2734
  /** @class */
2735
2735
  function(e) {
2736
2736
  A(t, e);
@@ -2774,7 +2774,7 @@ Description: `).concat(i == null ? void 0 : i.description, `
2774
2774
  }
2775
2775
  return t;
2776
2776
  }(H)
2777
- ), Dt = (
2777
+ ), wt = (
2778
2778
  /** @class */
2779
2779
  function(e) {
2780
2780
  A(t, e);
@@ -2926,9 +2926,9 @@ function ge(e, t) {
2926
2926
  var ve = function(e, t, n, r, i) {
2927
2927
  var a = e.locale, o = e.formats, s = e.messages, h = e.defaultLocale, l = e.defaultFormats, u = e.fallbackOnEmptyString, f = e.onError, c = e.timeZone, p = e.defaultRichTextElements;
2928
2928
  n === void 0 && (n = { id: "" });
2929
- var b = n.id, E = n.defaultMessage;
2930
- Vt(!!b, "[@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");
2931
- var y = String(b), x = (
2929
+ var v = n.id, E = n.defaultMessage;
2930
+ Vt(!!v, "[@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");
2931
+ var y = String(v), x = (
2932
2932
  // In case messages is Object.create(null)
2933
2933
  // e.g import('foo.json') from webpack)
2934
2934
  // See https://github.com/formatjs/formatjs/issues/1914
@@ -2941,7 +2941,7 @@ var ve = function(e, t, n, r, i) {
2941
2941
  if (r = m(m({}, p), r || {}), o = ge(o, c), l = ge(l, c), !x) {
2942
2942
  if (u === !1 && x === "")
2943
2943
  return x;
2944
- if ((!E || a && a.toLowerCase() !== h.toLowerCase()) && f(new Dt(n, a)), E)
2944
+ if ((!E || a && a.toLowerCase() !== h.toLowerCase()) && f(new wt(n, a)), E)
2945
2945
  try {
2946
2946
  var I = t.getMessageFormat(E, h, l, i);
2947
2947
  return I.format(r);
@@ -2964,7 +2964,7 @@ var ve = function(e, t, n, r, i) {
2964
2964
  f(new z('Error formatting the default message for: "'.concat(y, '", rendering message verbatim'), a, n, T));
2965
2965
  }
2966
2966
  return typeof x == "string" ? x : typeof E == "string" ? E : y;
2967
- }, we = [
2967
+ }, De = [
2968
2968
  "formatMatcher",
2969
2969
  "timeZone",
2970
2970
  "hour12",
@@ -2988,7 +2988,7 @@ var ve = function(e, t, n, r, i) {
2988
2988
  function X(e, t, n, r) {
2989
2989
  var i = e.locale, a = e.formats, o = e.onError, s = e.timeZone;
2990
2990
  r === void 0 && (r = {});
2991
- var h = r.format, l = m(m({}, s && { timeZone: s }), h && ne(a, t, h, o)), u = C(r, we, l);
2991
+ var h = r.format, l = m(m({}, s && { timeZone: s }), h && ne(a, t, h, o)), u = C(r, De, l);
2992
2992
  return t === "time" && !u.hour && !u.minute && !u.second && !u.timeStyle && !u.dateStyle && (u = m(m({}, u), { hour: "numeric", minute: "numeric" })), n(i, u);
2993
2993
  }
2994
2994
  function kt(e, t) {
@@ -3016,7 +3016,7 @@ function Xt(e, t) {
3016
3016
  function Zt(e, t) {
3017
3017
  for (var n = [], r = 2; r < arguments.length; r++)
3018
3018
  n[r - 2] = arguments[r];
3019
- var i = n[0], a = n[1], o = n[2], s = o === void 0 ? {} : o, h = e.timeZone, l = e.locale, u = e.onError, f = C(s, we, h ? { timeZone: h } : {});
3019
+ var i = n[0], a = n[1], o = n[2], s = o === void 0 ? {} : o, h = e.timeZone, l = e.locale, u = e.onError, f = C(s, De, h ? { timeZone: h } : {});
3020
3020
  try {
3021
3021
  return t(l, f).formatRange(i, a);
3022
3022
  } catch (c) {
@@ -3073,13 +3073,13 @@ function Yt(e) {
3073
3073
  }
3074
3074
  function $t(e, t, n, r) {
3075
3075
  r === void 0 && (r = {});
3076
- var i = De(e, t, n, r).reduce(function(a, o) {
3076
+ var i = we(e, t, n, r).reduce(function(a, o) {
3077
3077
  var s = o.value;
3078
3078
  return typeof s != "string" ? a.push(s) : typeof a[a.length - 1] == "string" ? a[a.length - 1] += s : a.push(s), a;
3079
3079
  }, []);
3080
3080
  return i.length === 1 ? i[0] : i.length === 0 ? "" : i;
3081
3081
  }
3082
- function De(e, t, n, r) {
3082
+ function we(e, t, n, r) {
3083
3083
  var i = e.locale, a = e.onError;
3084
3084
  r === void 0 && (r = {});
3085
3085
  var o = Intl.ListFormat;
@@ -3194,7 +3194,7 @@ For more details see https://formatjs.io/docs/getting-started/message-distributi
3194
3194
  }
3195
3195
  function hr(e, t) {
3196
3196
  var n = jt(t), r = m(m({}, Ut), e), i = r.locale, a = r.defaultLocale, o = r.onError;
3197
- return i ? !Intl.NumberFormat.supportedLocalesOf(i).length && o ? o(new me('Missing locale data for locale: "'.concat(i, '" in Intl.NumberFormat. Using default locale: "').concat(a, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : !Intl.DateTimeFormat.supportedLocalesOf(i).length && o && o(new me('Missing locale data for locale: "'.concat(i, '" in Intl.DateTimeFormat. Using default locale: "').concat(a, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : (o && o(new wt('"locale" was not configured, using "'.concat(a, '" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))), r.locale = r.defaultLocale || "en"), ur(r), m(m({}, r), {
3197
+ return i ? !Intl.NumberFormat.supportedLocalesOf(i).length && o ? o(new me('Missing locale data for locale: "'.concat(i, '" in Intl.NumberFormat. Using default locale: "').concat(a, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : !Intl.DateTimeFormat.supportedLocalesOf(i).length && o && o(new me('Missing locale data for locale: "'.concat(i, '" in Intl.DateTimeFormat. Using default locale: "').concat(a, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : (o && o(new Dt('"locale" was not configured, using "'.concat(a, '" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))), r.locale = r.defaultLocale || "en"), ur(r), m(m({}, r), {
3198
3198
  formatters: n,
3199
3199
  formatNumber: ar.bind(null, r, n.getNumberFormat),
3200
3200
  formatNumberToParts: or.bind(null, r, n.getNumberFormat),
@@ -3210,7 +3210,7 @@ function hr(e, t) {
3210
3210
  // @ts-expect-error TODO: will get to this later
3211
3211
  $t: ve.bind(null, r, n),
3212
3212
  formatList: $t.bind(null, r, n.getListFormat),
3213
- formatListToParts: De.bind(null, r, n.getListFormat),
3213
+ formatListToParts: we.bind(null, r, n.getListFormat),
3214
3214
  formatDisplayName: Jt.bind(null, r, n.getDisplayNames)
3215
3215
  });
3216
3216
  }
@@ -3228,8 +3228,8 @@ function F(e, t) {
3228
3228
  const n = t.delimiter || ".", r = t.maxDepth, i = t.transformKey || Ue, a = {};
3229
3229
  function o(s, h, l) {
3230
3230
  l = l || 1, Object.keys(s).forEach(function(u) {
3231
- const f = s[u], c = t.safe && Array.isArray(f), p = Object.prototype.toString.call(f), b = Ge(f), E = p === "[object Object]" || p === "[object Array]", y = h ? h + n + i(u) : i(u);
3232
- if (!c && !b && E && Object.keys(f).length && (!t.maxDepth || l < r))
3231
+ const f = s[u], c = t.safe && Array.isArray(f), p = Object.prototype.toString.call(f), v = Ge(f), E = p === "[object Object]" || p === "[object Array]", y = h ? h + n + i(u) : i(u);
3232
+ if (!c && !v && E && Object.keys(f).length && (!t.maxDepth || l < r))
3233
3233
  return o(f, y, l + 1);
3234
3234
  a[y] = f;
3235
3235
  });
@@ -3246,8 +3246,8 @@ function je(e, t) {
3246
3246
  return isNaN(f) || u.indexOf(".") !== -1 || t.object ? u : f;
3247
3247
  }
3248
3248
  function h(u, f, c) {
3249
- return Object.keys(c).reduce(function(p, b) {
3250
- return p[u + n + b] = c[b], p;
3249
+ return Object.keys(c).reduce(function(p, v) {
3250
+ return p[u + n + v] = c[v], p;
3251
3251
  }, f);
3252
3252
  }
3253
3253
  function l(u) {
@@ -3269,16 +3269,16 @@ function je(e, t) {
3269
3269
  );
3270
3270
  }, {}), Object.keys(e).forEach(function(u) {
3271
3271
  const f = u.split(n).map(i);
3272
- let c = s(f.shift()), p = s(f[0]), b = a;
3272
+ let c = s(f.shift()), p = s(f[0]), v = a;
3273
3273
  for (; p !== void 0; ) {
3274
3274
  if (c === "__proto__")
3275
3275
  return;
3276
- const E = Object.prototype.toString.call(b[c]), y = E === "[object Object]" || E === "[object Array]";
3277
- if (!r && !y && typeof b[c] < "u")
3276
+ const E = Object.prototype.toString.call(v[c]), y = E === "[object Object]" || E === "[object Array]";
3277
+ if (!r && !y && typeof v[c] < "u")
3278
3278
  return;
3279
- (r && !y || !r && b[c] == null) && (b[c] = typeof p == "number" && !t.object ? [] : {}), b = b[c], f.length > 0 && (c = s(f.shift()), p = s(f[0]));
3279
+ (r && !y || !r && v[c] == null) && (v[c] = typeof p == "number" && !t.object ? [] : {}), v = v[c], f.length > 0 && (c = s(f.shift()), p = s(f[0]));
3280
3280
  }
3281
- b[c] = je(e[u], t);
3281
+ v[c] = je(e[u], t);
3282
3282
  }), a;
3283
3283
  }
3284
3284
  const fr = Ce();
@@ -3294,14 +3294,35 @@ const pr = (e, t, n = !1) => {
3294
3294
  })
3295
3295
  },
3296
3296
  fr
3297
- ), { $t: i, ...a } = r, o = a, u = {
3298
- t: (f, c, p) => o.formatMessage({ id: f }, c, p),
3299
- te: (f) => !!o.messages[f],
3300
- tm: (f) => o.messages[f] || [],
3301
- ...o,
3297
+ ), i = (p) => {
3298
+ const v = "Invalid Date";
3299
+ if (!p)
3300
+ return v;
3301
+ try {
3302
+ const E = new Date(p * 1e3);
3303
+ return h.formatDate(E, {
3304
+ year: "numeric",
3305
+ month: "short",
3306
+ day: "numeric",
3307
+ hour: "numeric",
3308
+ minute: "numeric"
3309
+ });
3310
+ } catch {
3311
+ return v;
3312
+ }
3313
+ }, a = (p) => {
3314
+ const v = Date.parse(p) / 1e3;
3315
+ return i(v);
3316
+ }, { $t: o, ...s } = r, h = s, c = {
3317
+ formatUnixTimeStamp: i,
3318
+ formatIsoDate: a,
3319
+ t: (p, v, E) => h.formatMessage({ id: p }, v, E),
3320
+ te: (p) => !!h.messages[p],
3321
+ tm: (p) => h.messages[p] || [],
3322
+ ...h,
3302
3323
  source: t
3303
3324
  };
3304
- return (typeof n == "boolean" && n === !0 || typeof n != "boolean" && n.isGlobal === !0) && (Ve = u), u;
3325
+ return (typeof n == "boolean" && n === !0 || typeof n != "boolean" && n.isGlobal === !0) && (Ve = c), c;
3305
3326
  };
3306
3327
  function gr() {
3307
3328
  return Ve;
package/dist/i18n.umd.js CHANGED
@@ -1,17 +1,17 @@
1
- (function(N,D){typeof exports=="object"&&typeof module<"u"?D(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],D):(N=typeof globalThis<"u"?globalThis:N||self,D(N["kong-ui-public-i18n"]={},N.Vue))})(this,function(N,D){"use strict";var z=function(e,t){return z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(n[i]=r[i])},z(e,t)};function A(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 n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var m=function(){return m=Object.assign||function(t){for(var n,r=1,i=arguments.length;r<i;r++){n=arguments[r];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t},m.apply(this,arguments)};function We(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]]);return n}function O(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,a;r<i;r++)(a||!(r in t))&&(a||(a=Array.prototype.slice.call(t,0,r)),a[r]=t[r]);return e.concat(a||Array.prototype.slice.call(t))}var 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 d;(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"})(d||(d={}));var F;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(F||(F={}));function oe(e){return e.type===d.literal}function ze(e){return e.type===d.argument}function se(e){return e.type===d.number}function ue(e){return e.type===d.date}function he(e){return e.type===d.time}function le(e){return e.type===d.select}function fe(e){return e.type===d.plural}function qe(e){return e.type===d.pound}function ce(e){return e.type===d.tag}function me(e){return!!(e&&typeof e=="object"&&e.type===F.number)}function q(e){return!!(e&&typeof e=="object"&&e.type===F.dateTime)}var pe=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,Je=/(?:[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 Qe(e){var t={};return e.replace(Je,function(n){var r=n.length;switch(n[0]){case"G":t.era=r===4?"long":r===5?"narrow":"short";break;case"y":t.year=r===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"][r-1];break;case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":t.day=["numeric","2-digit"][r-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=r===4?"short":r===5?"narrow":"short";break;case"e":if(r<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][r-4];break;case"c":if(r<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][r-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"][r-1];break;case"H":t.hourCycle="h23",t.hour=["numeric","2-digit"][r-1];break;case"K":t.hourCycle="h11",t.hour=["numeric","2-digit"][r-1];break;case"k":t.hourCycle="h24",t.hour=["numeric","2-digit"][r-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"][r-1];break;case"s":t.second=["numeric","2-digit"][r-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");case"z":t.timeZoneName=r<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 Ye=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function $e(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(Ye).filter(function(c){return c.length>0}),n=[],r=0,i=t;r<i.length;r++){var a=i[r],o=a.split("/");if(o.length===0)throw new Error("Invalid number skeleton");for(var s=o[0],h=o.slice(1),l=0,u=h;l<u.length;l++){var f=u[l];if(f.length===0)throw new Error("Invalid number skeleton")}n.push({stem:s,options:h})}return n}function Ke(e){return e.replace(/^(.*?)-/,"")}var ge=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,ve=/^(@+)?(\+|#+)?[rs]?$/g,et=/(\*)(0+)|(#+)(0+)|(0+)/g,be=/^(0+)$/;function Ee(e){var t={};return e[e.length-1]==="r"?t.roundingPriority="morePrecision":e[e.length-1]==="s"&&(t.roundingPriority="lessPrecision"),e.replace(ve,function(n,r,i){return typeof i!="string"?(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length):i==="+"?t.minimumSignificantDigits=r.length:r[0]==="#"?t.maximumSignificantDigits=r.length:(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length+(typeof i=="string"?i.length:0)),""}),t}function de(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 tt(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 n=e.slice(0,2);if(n==="+!"?(t.signDisplay="always",e=e.slice(2)):n==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!be.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function ye(e){var t={},n=de(e);return n||t}function rt(e){for(var t={},n=0,r=e;n<r.length;n++){var i=r[n];switch(i.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=i.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=Ke(i.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=m(m(m({},t),{notation:"scientific"}),i.options.reduce(function(h,l){return m(m({},h),ye(l))},{}));continue;case"engineering":t=m(m(m({},t),{notation:"engineering"}),i.options.reduce(function(h,l){return m(m({},h),ye(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(i.options[0]);continue;case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(et,function(h,l,u,f,c,p){if(l)t.minimumIntegerDigits=u.length;else{if(f&&c)throw new Error("We currently do not support maximum integer digits");if(p)throw new Error("We currently do not support exact integer digits")}return""});continue}if(be.test(i.stem)){t.minimumIntegerDigits=i.stem.length;continue}if(ge.test(i.stem)){if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(ge,function(h,l,u,f,c,p){return u==="*"?t.minimumFractionDigits=l.length:f&&f[0]==="#"?t.maximumFractionDigits=f.length:c&&p?(t.minimumFractionDigits=c.length,t.maximumFractionDigits=c.length+p.length):(t.minimumFractionDigits=l.length,t.maximumFractionDigits=l.length),""});var a=i.options[0];a==="w"?t=m(m({},t),{trailingZeroDisplay:"stripIfInteger"}):a&&(t=m(m({},t),Ee(a)));continue}if(ve.test(i.stem)){t=m(m({},t),Ee(i.stem));continue}var o=de(i.stem);o&&(t=m(m({},t),o));var s=tt(i.stem);s&&(t=m(m({},t),s))}return t}var V={"001":["H","h"],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"],BJ:["H","hB"],BL:["H","hB"],BM:["h","hb","H","hB"],BN:["hb","hB","h","H"],BO:["H","hB","h","hb"],BQ:["H"],BR:["H","hB"],BS:["h","hb","H","hB"],BT:["h","H"],BW:["H","h","hb","hB"],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"],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","hB","h","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"],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"],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"],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","h","K"],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"],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"],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"],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","hB","h","hb"],PF:["H","h","hB"],PG:["h","H"],PH:["h","hB","hb","H"],PK:["h","hB","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"],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"],TL:["H","hB","hb","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"],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"],"af-ZA":["H","h","hB","hb"],"ar-001":["h","hB","hb","H"],"ca-ES":["H","h","hB"],"en-001":["h","hb","H","hB"],"es-BO":["H","h","hB","hb"],"es-BR":["H","h","hB","hb"],"es-EC":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"es-PE":["H","h","hB","hb"],"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 nt(e,t){for(var n="",r=0;r<e.length;r++){var i=e.charAt(r);if(i==="j"){for(var a=0;r+1<e.length&&e.charAt(r+1)===i;)a++,r++;var o=1+(a&1),s=a<2?1:3+(a>>1),h="a",l=it(t);for((l=="H"||l=="k")&&(s=0);s-- >0;)n+=h;for(;o-- >0;)n=l+n}else i==="J"?n+="H":n+=i}return n}function it(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 n=e.language,r;n!=="root"&&(r=e.maximize().region);var i=V[r||""]||V[n||""]||V["".concat(n,"-001")]||V["001"];return i[0]}var J,at=new RegExp("^".concat(pe.source,"*")),ot=new RegExp("".concat(pe.source,"*$"));function v(e,t){return{start:e,end:t}}var st=!!String.prototype.startsWith,ut=!!String.fromCodePoint,ht=!!Object.fromEntries,lt=!!String.prototype.codePointAt,ft=!!String.prototype.trimStart,ct=!!String.prototype.trimEnd,mt=!!Number.isSafeInteger,pt=mt?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Q=!0;try{var gt=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Q=((J=gt.exec("a"))===null||J===void 0?void 0:J[0])==="a"}catch{Q=!1}var xe=st?function(t,n,r){return t.startsWith(n,r)}:function(t,n,r){return t.slice(r,r+n.length)===n},Y=ut?String.fromCodePoint:function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];for(var r="",i=t.length,a=0,o;i>a;){if(o=t[a++],o>1114111)throw RangeError(o+" is not a valid code point");r+=o<65536?String.fromCharCode(o):String.fromCharCode(((o-=65536)>>10)+55296,o%1024+56320)}return r},Te=ht?Object.fromEntries:function(t){for(var n={},r=0,i=t;r<i.length;r++){var a=i[r],o=a[0],s=a[1];n[o]=s}return n},Se=lt?function(t,n){return t.codePointAt(n)}:function(t,n){var r=t.length;if(!(n<0||n>=r)){var i=t.charCodeAt(n),a;return i<55296||i>56319||n+1===r||(a=t.charCodeAt(n+1))<56320||a>57343?i:(i-55296<<10)+(a-56320)+65536}},vt=ft?function(t){return t.trimStart()}:function(t){return t.replace(at,"")},bt=ct?function(t){return t.trimEnd()}:function(t){return t.replace(ot,"")};function Ie(e,t){return new RegExp(e,t)}var $;if(Q){var He=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");$=function(t,n){var r;He.lastIndex=n;var i=He.exec(t);return(r=i[1])!==null&&r!==void 0?r:""}}else $=function(t,n){for(var r=[];;){var i=Se(t,n);if(i===void 0||Ae(i)||xt(i))break;r.push(i),n+=i>=65536?2:1}return Y.apply(void 0,r)};var Et=function(){function e(t,n){n===void 0&&(n={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!n.ignoreTag,this.locale=n.locale,this.requiresOtherClause=!!n.requiresOtherClause,this.shouldParseSkeletons=!!n.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,n,r){for(var i=[];!this.isEOF();){var a=this.char();if(a===123){var o=this.parseArgument(t,r);if(o.err)return o;i.push(o.val)}else{if(a===125&&t>0)break;if(a===35&&(n==="plural"||n==="selectordinal")){var s=this.clonePosition();this.bump(),i.push({type:d.pound,location:v(s,this.clonePosition())})}else if(a===60&&!this.ignoreTag&&this.peek()===47){if(r)break;return this.error(g.UNMATCHED_CLOSING_TAG,v(this.clonePosition(),this.clonePosition()))}else if(a===60&&!this.ignoreTag&&K(this.peek()||0)){var o=this.parseTag(t,n);if(o.err)return o;i.push(o.val)}else{var o=this.parseLiteral(t,n);if(o.err)return o;i.push(o.val)}}}return{val:i,err:null}},e.prototype.parseTag=function(t,n){var r=this.clonePosition();this.bump();var i=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:d.literal,value:"<".concat(i,"/>"),location:v(r,this.clonePosition())},err:null};if(this.bumpIf(">")){var a=this.parseMessage(t+1,n,!0);if(a.err)return a;var o=a.val,s=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!K(this.char()))return this.error(g.INVALID_TAG,v(s,this.clonePosition()));var h=this.clonePosition(),l=this.parseTagName();return i!==l?this.error(g.UNMATCHED_CLOSING_TAG,v(h,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:d.tag,value:i,children:o,location:v(r,this.clonePosition())},err:null}:this.error(g.INVALID_TAG,v(s,this.clonePosition())))}else return this.error(g.UNCLOSED_TAG,v(r,this.clonePosition()))}else return this.error(g.INVALID_TAG,v(r,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&yt(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,n){for(var r=this.clonePosition(),i="";;){var a=this.tryParseQuote(n);if(a){i+=a;continue}var o=this.tryParseUnquoted(t,n);if(o){i+=o;continue}var s=this.tryParseLeftAngleBracket();if(s){i+=s;continue}break}var h=v(r,this.clonePosition());return{val:{type:d.literal,value:i,location:h},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!dt(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 n=[this.char()];for(this.bump();!this.isEOF();){var r=this.char();if(r===39)if(this.peek()===39)n.push(39),this.bump();else{this.bump();break}else n.push(r);this.bump()}return Y.apply(void 0,n)},e.prototype.tryParseUnquoted=function(t,n){if(this.isEOF())return null;var r=this.char();return r===60||r===123||r===35&&(n==="plural"||n==="selectordinal")||r===125&&t>0?null:(this.bump(),Y(r))},e.prototype.parseArgument=function(t,n){var r=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(r,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(g.EMPTY_ARGUMENT,v(r,this.clonePosition()));var i=this.parseIdentifierIfPossible().value;if(!i)return this.error(g.MALFORMED_ARGUMENT,v(r,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(r,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:d.argument,value:i,location:v(r,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(r,this.clonePosition())):this.parseArgumentOptions(t,n,i,r);default:return this.error(g.MALFORMED_ARGUMENT,v(r,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),n=this.offset(),r=$(this.message,n),i=n+r.length;this.bumpTo(i);var a=this.clonePosition(),o=v(t,a);return{value:r,location:o}},e.prototype.parseArgumentOptions=function(t,n,r,i){var a,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,h=this.clonePosition();switch(s){case"":return this.error(g.EXPECT_ARGUMENT_TYPE,v(o,h));case"number":case"date":case"time":{this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var u=this.clonePosition(),f=this.parseSimpleArgStyleIfPossible();if(f.err)return f;var c=bt(f.val);if(c.length===0)return this.error(g.EXPECT_ARGUMENT_STYLE,v(this.clonePosition(),this.clonePosition()));var p=v(u,this.clonePosition());l={style:c,styleLocation:p}}var b=this.tryParseArgumentClose(i);if(b.err)return b;var E=v(i,this.clonePosition());if(l&&xe(l==null?void 0:l.style,"::",0)){var y=vt(l.style.slice(2));if(s==="number"){var f=this.parseNumberSkeletonFromString(y,l.styleLocation);return f.err?f:{val:{type:d.number,value:r,location:E,style:f.val},err:null}}else{if(y.length===0)return this.error(g.EXPECT_DATE_TIME_SKELETON,E);var x=y;this.locale&&(x=nt(y,this.locale));var c={type:F.dateTime,pattern:x,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?Qe(x):{}},H=s==="date"?d.date:d.time;return{val:{type:H,value:r,location:E,style:c},err:null}}}return{val:{type:s==="number"?d.number:s==="date"?d.date:d.time,value:r,location:E,style:(a=l==null?void 0:l.style)!==null&&a!==void 0?a:null},err:null}}case"plural":case"selectordinal":case"select":{var T=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS,v(T,m({},T)));this.bumpSpace();var j=this.parseIdentifierIfPossible(),w=0;if(s!=="select"&&j.value==="offset"){if(!this.bumpIf(":"))return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,v(this.clonePosition(),this.clonePosition()));this.bumpSpace();var f=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(f.err)return f;this.bumpSpace(),j=this.parseIdentifierIfPossible(),w=f.val}var W=this.tryParsePluralOrSelectOptions(t,s,n,j);if(W.err)return W;var b=this.tryParseArgumentClose(i);if(b.err)return b;var Ze=v(i,this.clonePosition());return s==="select"?{val:{type:d.select,value:r,options:Te(W.val),location:Ze},err:null}:{val:{type:d.plural,value:r,options:Te(W.val),offset:w,pluralType:s==="plural"?"cardinal":"ordinal",location:Ze},err:null}}default:return this.error(g.INVALID_ARGUMENT_TYPE,v(o,h))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,n=this.clonePosition();!this.isEOF();){var r=this.char();switch(r){case 39:{this.bump();var i=this.clonePosition();if(!this.bumpUntil("'"))return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,v(i,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(n.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(n.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,n){var r=[];try{r=$e(t)}catch{return this.error(g.INVALID_NUMBER_SKELETON,n)}return{val:{type:F.number,tokens:r,location:n,parsedOptions:this.shouldParseSkeletons?rt(r):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,n,r,i){for(var a,o=!1,s=[],h=new Set,l=i.value,u=i.location;;){if(l.length===0){var f=this.clonePosition();if(n!=="select"&&this.bumpIf("=")){var c=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR,g.INVALID_PLURAL_ARGUMENT_SELECTOR);if(c.err)return c;u=v(f,this.clonePosition()),l=this.message.slice(f.offset,this.offset())}else break}if(h.has(l))return this.error(n==="select"?g.DUPLICATE_SELECT_ARGUMENT_SELECTOR:g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,u);l==="other"&&(o=!0),this.bumpSpace();var p=this.clonePosition();if(!this.bumpIf("{"))return this.error(n==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,v(this.clonePosition(),this.clonePosition()));var b=this.parseMessage(t+1,n,r);if(b.err)return b;var E=this.tryParseArgumentClose(p);if(E.err)return E;s.push([l,{value:b.val,location:v(p,this.clonePosition())}]),h.add(l),this.bumpSpace(),a=this.parseIdentifierIfPossible(),l=a.value,u=a.location}return s.length===0?this.error(n==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR:g.EXPECT_PLURAL_ARGUMENT_SELECTOR,v(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(g.MISSING_OTHER_CLAUSE,v(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(t,n){var r=1,i=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(r=-1);for(var a=!1,o=0;!this.isEOF();){var s=this.char();if(s>=48&&s<=57)a=!0,o=o*10+(s-48),this.bump();else break}var h=v(i,this.clonePosition());return a?(o*=r,pt(o)?{val:o,err:null}:this.error(n,h)):this.error(t,h)},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 n=Se(this.message,t);if(n===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return n},e.prototype.error=function(t,n){return{val:null,err:{kind:t,message:this.message,location:n}}},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(xe(this.message,t,this.offset())){for(var n=0;n<t.length;n++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var n=this.offset(),r=this.message.indexOf(t,n);return r>=0?(this.bumpTo(r),!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 n=this.offset();if(n===t)break;if(n>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(),n=this.offset(),r=this.message.charCodeAt(n+(t>=65536?2:1));return r??null},e}();function K(e){return e>=97&&e<=122||e>=65&&e<=90}function dt(e){return K(e)||e===47}function yt(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 xt(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 ee(e){e.forEach(function(t){if(delete t.location,le(t)||fe(t))for(var n in t.options)delete t.options[n].location,ee(t.options[n].value);else se(t)&&me(t.style)||(ue(t)||he(t))&&q(t.style)?delete t.style.location:ce(t)&&ee(t.children)})}function Tt(e,t){t===void 0&&(t={}),t=m({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var n=new Et(e,t).parse();if(n.err){var r=SyntaxError(g[n.err.kind]);throw r.location=n.err.location,r.originalMessage=n.err.message,r}return t!=null&&t.captureLocation||ee(n.val),n.val}function B(e,t){var n=t&&t.cache?t.cache:Bt,r=t&&t.serializer?t.serializer:Nt,i=t&&t.strategy?t.strategy:It;return i(e,{cache:n,serializer:r})}function St(e){return e==null||typeof e=="number"||typeof e=="boolean"}function Ne(e,t,n,r){var i=St(r)?r:n(r),a=t.get(i);return typeof a>"u"&&(a=e.call(this,r),t.set(i,a)),a}function Be(e,t,n){var r=Array.prototype.slice.call(arguments,3),i=n(r),a=t.get(i);return typeof a>"u"&&(a=e.apply(this,r),t.set(i,a)),a}function te(e,t,n,r,i){return n.bind(t,e,r,i)}function It(e,t){var n=e.length===1?Ne:Be;return te(e,this,n,t.cache.create(),t.serializer)}function Ht(e,t){return te(e,this,Be,t.cache.create(),t.serializer)}function At(e,t){return te(e,this,Ne,t.cache.create(),t.serializer)}var Nt=function(){return JSON.stringify(arguments)};function re(){this.cache=Object.create(null)}re.prototype.get=function(e){return this.cache[e]},re.prototype.set=function(e,t){this.cache[e]=t};var Bt={create:function(){return new re}},_={variadic:Ht,monadic:At},P;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(P||(P={}));var R=function(e){A(t,e);function t(n,r,i){var a=e.call(this,n)||this;return a.code=r,a.originalMessage=i,a}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),_e=function(e){A(t,e);function t(n,r,i,a){return e.call(this,'Invalid values for "'.concat(n,'": "').concat(r,'". Options are "').concat(Object.keys(i).join('", "'),'"'),P.INVALID_VALUE,a)||this}return t}(R),_t=function(e){A(t,e);function t(n,r,i){return e.call(this,'Value for "'.concat(n,'" must be of type ').concat(r),P.INVALID_VALUE,i)||this}return t}(R),Pt=function(e){A(t,e);function t(n,r){return e.call(this,'The intl string context variable "'.concat(n,'" was not provided to the string "').concat(r,'"'),P.MISSING_VALUE,r)||this}return t}(R),S;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(S||(S={}));function Ot(e){return e.length<2?e:e.reduce(function(t,n){var r=t[t.length-1];return!r||r.type!==S.literal||n.type!==S.literal?t.push(n):r.value+=n.value,t},[])}function Rt(e){return typeof e=="function"}function k(e,t,n,r,i,a,o){if(e.length===1&&oe(e[0]))return[{type:S.literal,value:e[0].value}];for(var s=[],h=0,l=e;h<l.length;h++){var u=l[h];if(oe(u)){s.push({type:S.literal,value:u.value});continue}if(qe(u)){typeof a=="number"&&s.push({type:S.literal,value:n.getNumberFormat(t).format(a)});continue}var f=u.value;if(!(i&&f in i))throw new Pt(f,o);var c=i[f];if(ze(u)){(!c||typeof c=="string"||typeof c=="number")&&(c=typeof c=="string"||typeof c=="number"?String(c):""),s.push({type:typeof c=="string"?S.literal:S.object,value:c});continue}if(ue(u)){var p=typeof u.style=="string"?r.date[u.style]:q(u.style)?u.style.parsedOptions:void 0;s.push({type:S.literal,value:n.getDateTimeFormat(t,p).format(c)});continue}if(he(u)){var p=typeof u.style=="string"?r.time[u.style]:q(u.style)?u.style.parsedOptions:r.time.medium;s.push({type:S.literal,value:n.getDateTimeFormat(t,p).format(c)});continue}if(se(u)){var p=typeof u.style=="string"?r.number[u.style]:me(u.style)?u.style.parsedOptions:void 0;p&&p.scale&&(c=c*(p.scale||1)),s.push({type:S.literal,value:n.getNumberFormat(t,p).format(c)});continue}if(ce(u)){var b=u.children,E=u.value,y=i[E];if(!Rt(y))throw new _t(E,"function",o);var x=k(b,t,n,r,i,a),H=y(x.map(function(w){return w.value}));Array.isArray(H)||(H=[H]),s.push.apply(s,H.map(function(w){return{type:typeof w=="string"?S.literal:S.object,value:w}}))}if(le(u)){var T=u.options[c]||u.options.other;if(!T)throw new _e(u.value,c,Object.keys(u.options),o);s.push.apply(s,k(T.value,t,n,r,i));continue}if(fe(u)){var T=u.options["=".concat(c)];if(!T){if(!Intl.PluralRules)throw new R(`Intl.PluralRules is not available in this environment.
1
+ (function(N,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],w):(N=typeof globalThis<"u"?globalThis:N||self,w(N["kong-ui-public-i18n"]={},N.Vue))})(this,function(N,w){"use strict";var z=function(e,t){return z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(n[i]=r[i])},z(e,t)};function A(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 n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var m=function(){return m=Object.assign||function(t){for(var n,r=1,i=arguments.length;r<i;r++){n=arguments[r];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t},m.apply(this,arguments)};function We(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]]);return n}function O(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,a;r<i;r++)(a||!(r in t))&&(a||(a=Array.prototype.slice.call(t,0,r)),a[r]=t[r]);return e.concat(a||Array.prototype.slice.call(t))}var 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 d;(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"})(d||(d={}));var F;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(F||(F={}));function oe(e){return e.type===d.literal}function ze(e){return e.type===d.argument}function se(e){return e.type===d.number}function ue(e){return e.type===d.date}function he(e){return e.type===d.time}function le(e){return e.type===d.select}function fe(e){return e.type===d.plural}function qe(e){return e.type===d.pound}function ce(e){return e.type===d.tag}function me(e){return!!(e&&typeof e=="object"&&e.type===F.number)}function q(e){return!!(e&&typeof e=="object"&&e.type===F.dateTime)}var pe=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,Je=/(?:[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 Qe(e){var t={};return e.replace(Je,function(n){var r=n.length;switch(n[0]){case"G":t.era=r===4?"long":r===5?"narrow":"short";break;case"y":t.year=r===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"][r-1];break;case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":t.day=["numeric","2-digit"][r-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=r===4?"short":r===5?"narrow":"short";break;case"e":if(r<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][r-4];break;case"c":if(r<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][r-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"][r-1];break;case"H":t.hourCycle="h23",t.hour=["numeric","2-digit"][r-1];break;case"K":t.hourCycle="h11",t.hour=["numeric","2-digit"][r-1];break;case"k":t.hourCycle="h24",t.hour=["numeric","2-digit"][r-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"][r-1];break;case"s":t.second=["numeric","2-digit"][r-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");case"z":t.timeZoneName=r<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 Ye=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function $e(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(Ye).filter(function(c){return c.length>0}),n=[],r=0,i=t;r<i.length;r++){var a=i[r],o=a.split("/");if(o.length===0)throw new Error("Invalid number skeleton");for(var s=o[0],h=o.slice(1),l=0,u=h;l<u.length;l++){var f=u[l];if(f.length===0)throw new Error("Invalid number skeleton")}n.push({stem:s,options:h})}return n}function Ke(e){return e.replace(/^(.*?)-/,"")}var ge=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,ve=/^(@+)?(\+|#+)?[rs]?$/g,et=/(\*)(0+)|(#+)(0+)|(0+)/g,be=/^(0+)$/;function Ee(e){var t={};return e[e.length-1]==="r"?t.roundingPriority="morePrecision":e[e.length-1]==="s"&&(t.roundingPriority="lessPrecision"),e.replace(ve,function(n,r,i){return typeof i!="string"?(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length):i==="+"?t.minimumSignificantDigits=r.length:r[0]==="#"?t.maximumSignificantDigits=r.length:(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length+(typeof i=="string"?i.length:0)),""}),t}function de(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 tt(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 n=e.slice(0,2);if(n==="+!"?(t.signDisplay="always",e=e.slice(2)):n==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!be.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function ye(e){var t={},n=de(e);return n||t}function rt(e){for(var t={},n=0,r=e;n<r.length;n++){var i=r[n];switch(i.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=i.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=Ke(i.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=m(m(m({},t),{notation:"scientific"}),i.options.reduce(function(h,l){return m(m({},h),ye(l))},{}));continue;case"engineering":t=m(m(m({},t),{notation:"engineering"}),i.options.reduce(function(h,l){return m(m({},h),ye(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(i.options[0]);continue;case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(et,function(h,l,u,f,c,p){if(l)t.minimumIntegerDigits=u.length;else{if(f&&c)throw new Error("We currently do not support maximum integer digits");if(p)throw new Error("We currently do not support exact integer digits")}return""});continue}if(be.test(i.stem)){t.minimumIntegerDigits=i.stem.length;continue}if(ge.test(i.stem)){if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(ge,function(h,l,u,f,c,p){return u==="*"?t.minimumFractionDigits=l.length:f&&f[0]==="#"?t.maximumFractionDigits=f.length:c&&p?(t.minimumFractionDigits=c.length,t.maximumFractionDigits=c.length+p.length):(t.minimumFractionDigits=l.length,t.maximumFractionDigits=l.length),""});var a=i.options[0];a==="w"?t=m(m({},t),{trailingZeroDisplay:"stripIfInteger"}):a&&(t=m(m({},t),Ee(a)));continue}if(ve.test(i.stem)){t=m(m({},t),Ee(i.stem));continue}var o=de(i.stem);o&&(t=m(m({},t),o));var s=tt(i.stem);s&&(t=m(m({},t),s))}return t}var V={"001":["H","h"],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"],BJ:["H","hB"],BL:["H","hB"],BM:["h","hb","H","hB"],BN:["hb","hB","h","H"],BO:["H","hB","h","hb"],BQ:["H"],BR:["H","hB"],BS:["h","hb","H","hB"],BT:["h","H"],BW:["H","h","hb","hB"],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"],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","hB","h","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"],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"],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"],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","h","K"],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"],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"],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"],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","hB","h","hb"],PF:["H","h","hB"],PG:["h","H"],PH:["h","hB","hb","H"],PK:["h","hB","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"],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"],TL:["H","hB","hb","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"],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"],"af-ZA":["H","h","hB","hb"],"ar-001":["h","hB","hb","H"],"ca-ES":["H","h","hB"],"en-001":["h","hb","H","hB"],"es-BO":["H","h","hB","hb"],"es-BR":["H","h","hB","hb"],"es-EC":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"es-PE":["H","h","hB","hb"],"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 nt(e,t){for(var n="",r=0;r<e.length;r++){var i=e.charAt(r);if(i==="j"){for(var a=0;r+1<e.length&&e.charAt(r+1)===i;)a++,r++;var o=1+(a&1),s=a<2?1:3+(a>>1),h="a",l=it(t);for((l=="H"||l=="k")&&(s=0);s-- >0;)n+=h;for(;o-- >0;)n=l+n}else i==="J"?n+="H":n+=i}return n}function it(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 n=e.language,r;n!=="root"&&(r=e.maximize().region);var i=V[r||""]||V[n||""]||V["".concat(n,"-001")]||V["001"];return i[0]}var J,at=new RegExp("^".concat(pe.source,"*")),ot=new RegExp("".concat(pe.source,"*$"));function v(e,t){return{start:e,end:t}}var st=!!String.prototype.startsWith,ut=!!String.fromCodePoint,ht=!!Object.fromEntries,lt=!!String.prototype.codePointAt,ft=!!String.prototype.trimStart,ct=!!String.prototype.trimEnd,mt=!!Number.isSafeInteger,pt=mt?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Q=!0;try{var gt=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Q=((J=gt.exec("a"))===null||J===void 0?void 0:J[0])==="a"}catch{Q=!1}var xe=st?function(t,n,r){return t.startsWith(n,r)}:function(t,n,r){return t.slice(r,r+n.length)===n},Y=ut?String.fromCodePoint:function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];for(var r="",i=t.length,a=0,o;i>a;){if(o=t[a++],o>1114111)throw RangeError(o+" is not a valid code point");r+=o<65536?String.fromCharCode(o):String.fromCharCode(((o-=65536)>>10)+55296,o%1024+56320)}return r},Te=ht?Object.fromEntries:function(t){for(var n={},r=0,i=t;r<i.length;r++){var a=i[r],o=a[0],s=a[1];n[o]=s}return n},Se=lt?function(t,n){return t.codePointAt(n)}:function(t,n){var r=t.length;if(!(n<0||n>=r)){var i=t.charCodeAt(n),a;return i<55296||i>56319||n+1===r||(a=t.charCodeAt(n+1))<56320||a>57343?i:(i-55296<<10)+(a-56320)+65536}},vt=ft?function(t){return t.trimStart()}:function(t){return t.replace(at,"")},bt=ct?function(t){return t.trimEnd()}:function(t){return t.replace(ot,"")};function Ie(e,t){return new RegExp(e,t)}var $;if(Q){var He=Ie("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");$=function(t,n){var r;He.lastIndex=n;var i=He.exec(t);return(r=i[1])!==null&&r!==void 0?r:""}}else $=function(t,n){for(var r=[];;){var i=Se(t,n);if(i===void 0||Ae(i)||xt(i))break;r.push(i),n+=i>=65536?2:1}return Y.apply(void 0,r)};var Et=function(){function e(t,n){n===void 0&&(n={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!n.ignoreTag,this.locale=n.locale,this.requiresOtherClause=!!n.requiresOtherClause,this.shouldParseSkeletons=!!n.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,n,r){for(var i=[];!this.isEOF();){var a=this.char();if(a===123){var o=this.parseArgument(t,r);if(o.err)return o;i.push(o.val)}else{if(a===125&&t>0)break;if(a===35&&(n==="plural"||n==="selectordinal")){var s=this.clonePosition();this.bump(),i.push({type:d.pound,location:v(s,this.clonePosition())})}else if(a===60&&!this.ignoreTag&&this.peek()===47){if(r)break;return this.error(g.UNMATCHED_CLOSING_TAG,v(this.clonePosition(),this.clonePosition()))}else if(a===60&&!this.ignoreTag&&K(this.peek()||0)){var o=this.parseTag(t,n);if(o.err)return o;i.push(o.val)}else{var o=this.parseLiteral(t,n);if(o.err)return o;i.push(o.val)}}}return{val:i,err:null}},e.prototype.parseTag=function(t,n){var r=this.clonePosition();this.bump();var i=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:d.literal,value:"<".concat(i,"/>"),location:v(r,this.clonePosition())},err:null};if(this.bumpIf(">")){var a=this.parseMessage(t+1,n,!0);if(a.err)return a;var o=a.val,s=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!K(this.char()))return this.error(g.INVALID_TAG,v(s,this.clonePosition()));var h=this.clonePosition(),l=this.parseTagName();return i!==l?this.error(g.UNMATCHED_CLOSING_TAG,v(h,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:d.tag,value:i,children:o,location:v(r,this.clonePosition())},err:null}:this.error(g.INVALID_TAG,v(s,this.clonePosition())))}else return this.error(g.UNCLOSED_TAG,v(r,this.clonePosition()))}else return this.error(g.INVALID_TAG,v(r,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&yt(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,n){for(var r=this.clonePosition(),i="";;){var a=this.tryParseQuote(n);if(a){i+=a;continue}var o=this.tryParseUnquoted(t,n);if(o){i+=o;continue}var s=this.tryParseLeftAngleBracket();if(s){i+=s;continue}break}var h=v(r,this.clonePosition());return{val:{type:d.literal,value:i,location:h},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!dt(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 n=[this.char()];for(this.bump();!this.isEOF();){var r=this.char();if(r===39)if(this.peek()===39)n.push(39),this.bump();else{this.bump();break}else n.push(r);this.bump()}return Y.apply(void 0,n)},e.prototype.tryParseUnquoted=function(t,n){if(this.isEOF())return null;var r=this.char();return r===60||r===123||r===35&&(n==="plural"||n==="selectordinal")||r===125&&t>0?null:(this.bump(),Y(r))},e.prototype.parseArgument=function(t,n){var r=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(r,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(g.EMPTY_ARGUMENT,v(r,this.clonePosition()));var i=this.parseIdentifierIfPossible().value;if(!i)return this.error(g.MALFORMED_ARGUMENT,v(r,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(r,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:d.argument,value:i,location:v(r,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(r,this.clonePosition())):this.parseArgumentOptions(t,n,i,r);default:return this.error(g.MALFORMED_ARGUMENT,v(r,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),n=this.offset(),r=$(this.message,n),i=n+r.length;this.bumpTo(i);var a=this.clonePosition(),o=v(t,a);return{value:r,location:o}},e.prototype.parseArgumentOptions=function(t,n,r,i){var a,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,h=this.clonePosition();switch(s){case"":return this.error(g.EXPECT_ARGUMENT_TYPE,v(o,h));case"number":case"date":case"time":{this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var u=this.clonePosition(),f=this.parseSimpleArgStyleIfPossible();if(f.err)return f;var c=bt(f.val);if(c.length===0)return this.error(g.EXPECT_ARGUMENT_STYLE,v(this.clonePosition(),this.clonePosition()));var p=v(u,this.clonePosition());l={style:c,styleLocation:p}}var b=this.tryParseArgumentClose(i);if(b.err)return b;var E=v(i,this.clonePosition());if(l&&xe(l==null?void 0:l.style,"::",0)){var y=vt(l.style.slice(2));if(s==="number"){var f=this.parseNumberSkeletonFromString(y,l.styleLocation);return f.err?f:{val:{type:d.number,value:r,location:E,style:f.val},err:null}}else{if(y.length===0)return this.error(g.EXPECT_DATE_TIME_SKELETON,E);var x=y;this.locale&&(x=nt(y,this.locale));var c={type:F.dateTime,pattern:x,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?Qe(x):{}},H=s==="date"?d.date:d.time;return{val:{type:H,value:r,location:E,style:c},err:null}}}return{val:{type:s==="number"?d.number:s==="date"?d.date:d.time,value:r,location:E,style:(a=l==null?void 0:l.style)!==null&&a!==void 0?a:null},err:null}}case"plural":case"selectordinal":case"select":{var T=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS,v(T,m({},T)));this.bumpSpace();var j=this.parseIdentifierIfPossible(),D=0;if(s!=="select"&&j.value==="offset"){if(!this.bumpIf(":"))return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,v(this.clonePosition(),this.clonePosition()));this.bumpSpace();var f=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(f.err)return f;this.bumpSpace(),j=this.parseIdentifierIfPossible(),D=f.val}var W=this.tryParsePluralOrSelectOptions(t,s,n,j);if(W.err)return W;var b=this.tryParseArgumentClose(i);if(b.err)return b;var Ze=v(i,this.clonePosition());return s==="select"?{val:{type:d.select,value:r,options:Te(W.val),location:Ze},err:null}:{val:{type:d.plural,value:r,options:Te(W.val),offset:D,pluralType:s==="plural"?"cardinal":"ordinal",location:Ze},err:null}}default:return this.error(g.INVALID_ARGUMENT_TYPE,v(o,h))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,v(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,n=this.clonePosition();!this.isEOF();){var r=this.char();switch(r){case 39:{this.bump();var i=this.clonePosition();if(!this.bumpUntil("'"))return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,v(i,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(n.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(n.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,n){var r=[];try{r=$e(t)}catch{return this.error(g.INVALID_NUMBER_SKELETON,n)}return{val:{type:F.number,tokens:r,location:n,parsedOptions:this.shouldParseSkeletons?rt(r):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,n,r,i){for(var a,o=!1,s=[],h=new Set,l=i.value,u=i.location;;){if(l.length===0){var f=this.clonePosition();if(n!=="select"&&this.bumpIf("=")){var c=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR,g.INVALID_PLURAL_ARGUMENT_SELECTOR);if(c.err)return c;u=v(f,this.clonePosition()),l=this.message.slice(f.offset,this.offset())}else break}if(h.has(l))return this.error(n==="select"?g.DUPLICATE_SELECT_ARGUMENT_SELECTOR:g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,u);l==="other"&&(o=!0),this.bumpSpace();var p=this.clonePosition();if(!this.bumpIf("{"))return this.error(n==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,v(this.clonePosition(),this.clonePosition()));var b=this.parseMessage(t+1,n,r);if(b.err)return b;var E=this.tryParseArgumentClose(p);if(E.err)return E;s.push([l,{value:b.val,location:v(p,this.clonePosition())}]),h.add(l),this.bumpSpace(),a=this.parseIdentifierIfPossible(),l=a.value,u=a.location}return s.length===0?this.error(n==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR:g.EXPECT_PLURAL_ARGUMENT_SELECTOR,v(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(g.MISSING_OTHER_CLAUSE,v(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(t,n){var r=1,i=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(r=-1);for(var a=!1,o=0;!this.isEOF();){var s=this.char();if(s>=48&&s<=57)a=!0,o=o*10+(s-48),this.bump();else break}var h=v(i,this.clonePosition());return a?(o*=r,pt(o)?{val:o,err:null}:this.error(n,h)):this.error(t,h)},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 n=Se(this.message,t);if(n===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return n},e.prototype.error=function(t,n){return{val:null,err:{kind:t,message:this.message,location:n}}},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(xe(this.message,t,this.offset())){for(var n=0;n<t.length;n++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var n=this.offset(),r=this.message.indexOf(t,n);return r>=0?(this.bumpTo(r),!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 n=this.offset();if(n===t)break;if(n>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(),n=this.offset(),r=this.message.charCodeAt(n+(t>=65536?2:1));return r??null},e}();function K(e){return e>=97&&e<=122||e>=65&&e<=90}function dt(e){return K(e)||e===47}function yt(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 xt(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 ee(e){e.forEach(function(t){if(delete t.location,le(t)||fe(t))for(var n in t.options)delete t.options[n].location,ee(t.options[n].value);else se(t)&&me(t.style)||(ue(t)||he(t))&&q(t.style)?delete t.style.location:ce(t)&&ee(t.children)})}function Tt(e,t){t===void 0&&(t={}),t=m({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var n=new Et(e,t).parse();if(n.err){var r=SyntaxError(g[n.err.kind]);throw r.location=n.err.location,r.originalMessage=n.err.message,r}return t!=null&&t.captureLocation||ee(n.val),n.val}function B(e,t){var n=t&&t.cache?t.cache:Bt,r=t&&t.serializer?t.serializer:Nt,i=t&&t.strategy?t.strategy:It;return i(e,{cache:n,serializer:r})}function St(e){return e==null||typeof e=="number"||typeof e=="boolean"}function Ne(e,t,n,r){var i=St(r)?r:n(r),a=t.get(i);return typeof a>"u"&&(a=e.call(this,r),t.set(i,a)),a}function Be(e,t,n){var r=Array.prototype.slice.call(arguments,3),i=n(r),a=t.get(i);return typeof a>"u"&&(a=e.apply(this,r),t.set(i,a)),a}function te(e,t,n,r,i){return n.bind(t,e,r,i)}function It(e,t){var n=e.length===1?Ne:Be;return te(e,this,n,t.cache.create(),t.serializer)}function Ht(e,t){return te(e,this,Be,t.cache.create(),t.serializer)}function At(e,t){return te(e,this,Ne,t.cache.create(),t.serializer)}var Nt=function(){return JSON.stringify(arguments)};function re(){this.cache=Object.create(null)}re.prototype.get=function(e){return this.cache[e]},re.prototype.set=function(e,t){this.cache[e]=t};var Bt={create:function(){return new re}},_={variadic:Ht,monadic:At},P;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(P||(P={}));var R=function(e){A(t,e);function t(n,r,i){var a=e.call(this,n)||this;return a.code=r,a.originalMessage=i,a}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),_e=function(e){A(t,e);function t(n,r,i,a){return e.call(this,'Invalid values for "'.concat(n,'": "').concat(r,'". Options are "').concat(Object.keys(i).join('", "'),'"'),P.INVALID_VALUE,a)||this}return t}(R),_t=function(e){A(t,e);function t(n,r,i){return e.call(this,'Value for "'.concat(n,'" must be of type ').concat(r),P.INVALID_VALUE,i)||this}return t}(R),Pt=function(e){A(t,e);function t(n,r){return e.call(this,'The intl string context variable "'.concat(n,'" was not provided to the string "').concat(r,'"'),P.MISSING_VALUE,r)||this}return t}(R),S;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(S||(S={}));function Ot(e){return e.length<2?e:e.reduce(function(t,n){var r=t[t.length-1];return!r||r.type!==S.literal||n.type!==S.literal?t.push(n):r.value+=n.value,t},[])}function Rt(e){return typeof e=="function"}function k(e,t,n,r,i,a,o){if(e.length===1&&oe(e[0]))return[{type:S.literal,value:e[0].value}];for(var s=[],h=0,l=e;h<l.length;h++){var u=l[h];if(oe(u)){s.push({type:S.literal,value:u.value});continue}if(qe(u)){typeof a=="number"&&s.push({type:S.literal,value:n.getNumberFormat(t).format(a)});continue}var f=u.value;if(!(i&&f in i))throw new Pt(f,o);var c=i[f];if(ze(u)){(!c||typeof c=="string"||typeof c=="number")&&(c=typeof c=="string"||typeof c=="number"?String(c):""),s.push({type:typeof c=="string"?S.literal:S.object,value:c});continue}if(ue(u)){var p=typeof u.style=="string"?r.date[u.style]:q(u.style)?u.style.parsedOptions:void 0;s.push({type:S.literal,value:n.getDateTimeFormat(t,p).format(c)});continue}if(he(u)){var p=typeof u.style=="string"?r.time[u.style]:q(u.style)?u.style.parsedOptions:r.time.medium;s.push({type:S.literal,value:n.getDateTimeFormat(t,p).format(c)});continue}if(se(u)){var p=typeof u.style=="string"?r.number[u.style]:me(u.style)?u.style.parsedOptions:void 0;p&&p.scale&&(c=c*(p.scale||1)),s.push({type:S.literal,value:n.getNumberFormat(t,p).format(c)});continue}if(ce(u)){var b=u.children,E=u.value,y=i[E];if(!Rt(y))throw new _t(E,"function",o);var x=k(b,t,n,r,i,a),H=y(x.map(function(D){return D.value}));Array.isArray(H)||(H=[H]),s.push.apply(s,H.map(function(D){return{type:typeof D=="string"?S.literal:S.object,value:D}}))}if(le(u)){var T=u.options[c]||u.options.other;if(!T)throw new _e(u.value,c,Object.keys(u.options),o);s.push.apply(s,k(T.value,t,n,r,i));continue}if(fe(u)){var T=u.options["=".concat(c)];if(!T){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
  `,P.MISSING_INTL_API,o);var j=n.getPluralRules(t,{type:u.pluralType}).select(c-(u.offset||0));T=u.options[j]||u.options.other}if(!T)throw new _e(u.value,c,Object.keys(u.options),o);s.push.apply(s,k(T.value,t,n,r,i,c-(u.offset||0)));continue}}return Ot(s)}function Lt(e,t){return t?m(m(m({},e||{}),t||{}),Object.keys(e).reduce(function(n,r){return n[r]=m(m({},e[r]),t[r]||{}),n},{})):e}function Mt(e,t){return t?Object.keys(e).reduce(function(n,r){return n[r]=Lt(e[r],t[r]),n},m({},e)):e}function ne(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,n){e[t]=n}}}}}function Ct(e){return e===void 0&&(e={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:B(function(){for(var t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];return new((t=Intl.NumberFormat).bind.apply(t,O([void 0],n,!1)))},{cache:ne(e.number),strategy:_.variadic}),getDateTimeFormat:B(function(){for(var t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];return new((t=Intl.DateTimeFormat).bind.apply(t,O([void 0],n,!1)))},{cache:ne(e.dateTime),strategy:_.variadic}),getPluralRules:B(function(){for(var t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];return new((t=Intl.PluralRules).bind.apply(t,O([void 0],n,!1)))},{cache:ne(e.pluralRules),strategy:_.variadic})}}var Pe=function(){function e(t,n,r,i){n===void 0&&(n=e.defaultLocale);var a=this;if(this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(h){var l=a.formatToParts(h);if(l.length===1)return l[0].value;var u=l.reduce(function(f,c){return!f.length||c.type!==S.literal||typeof f[f.length-1]!="string"?f.push(c.value):f[f.length-1]+=c.value,f},[]);return u.length<=1?u[0]||"":u},this.formatToParts=function(h){return k(a.ast,a.locales,a.formatters,a.formats,h,void 0,a.message)},this.resolvedOptions=function(){var h;return{locale:((h=a.resolvedLocale)===null||h===void 0?void 0:h.toString())||Intl.NumberFormat.supportedLocalesOf(a.locales)[0]}},this.getAst=function(){return a.ast},this.locales=n,this.resolvedLocale=e.resolveLocale(n),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=i||{};o.formatters;var s=We(o,["formatters"]);this.ast=e.__parse(t,m(m({},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=Mt(e.formats,r),this.formatters=i&&i.formatters||Ct(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 n=Intl.NumberFormat.supportedLocalesOf(t);return n.length>0?new Intl.Locale(n[0]):new Intl.Locale(typeof t=="string"?t:t[0])}},e.__parse=Tt,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}(),L;(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"})(L||(L={}));var G=function(e){A(t,e);function t(n,r,i){var a=this,o=i?i instanceof Error?i:new Error(String(i)):void 0;return a=e.call(this,"[@formatjs/intl Error ".concat(n,"] ").concat(r,`
4
4
  `).concat(o?`
5
5
  `.concat(o.message,`
6
- `).concat(o.stack):""))||this,a.code=n,typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(a,t),a}return t}(Error),wt=function(e){A(t,e);function t(n,r){return e.call(this,L.UNSUPPORTED_FORMATTER,n,r)||this}return t}(G),Dt=function(e){A(t,e);function t(n,r){return e.call(this,L.INVALID_CONFIG,n,r)||this}return t}(G),Oe=function(e){A(t,e);function t(n,r){return e.call(this,L.MISSING_DATA,n,r)||this}return t}(G),I=function(e){A(t,e);function t(n,r,i){var a=e.call(this,L.FORMAT_ERROR,"".concat(n,`
6
+ `).concat(o.stack):""))||this,a.code=n,typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(a,t),a}return t}(Error),Dt=function(e){A(t,e);function t(n,r){return e.call(this,L.UNSUPPORTED_FORMATTER,n,r)||this}return t}(G),wt=function(e){A(t,e);function t(n,r){return e.call(this,L.INVALID_CONFIG,n,r)||this}return t}(G),Oe=function(e){A(t,e);function t(n,r){return e.call(this,L.MISSING_DATA,n,r)||this}return t}(G),I=function(e){A(t,e);function t(n,r,i){var a=e.call(this,L.FORMAT_ERROR,"".concat(n,`
7
7
  Locale: `).concat(r,`
8
8
  `),i)||this;return a.locale=r,a}return t}(G),ie=function(e){A(t,e);function t(n,r,i,a){var o=e.call(this,"".concat(n,`
9
9
  MessageID: `).concat(i==null?void 0:i.id,`
10
10
  Default Message: `).concat(i==null?void 0:i.defaultMessage,`
11
11
  Description: `).concat(i==null?void 0:i.description,`
12
- `),r,a)||this;return o.descriptor=i,o.locale=r,o}return t}(I),Ft=function(e){A(t,e);function t(n,r){var i=e.call(this,L.MISSING_TRANSLATION,'Missing message: "'.concat(n.id,'" for locale "').concat(r,'", using ').concat(n.defaultMessage?"default message (".concat(typeof n.defaultMessage=="string"?n.defaultMessage:n.defaultMessage.map(function(a){var o;return(o=a.value)!==null&&o!==void 0?o:JSON.stringify(a)}).join(),")"):"id"," as fallback."))||this;return i.descriptor=n,i}return t}(G);function M(e,t,n){return n===void 0&&(n={}),t.reduce(function(r,i){return i in e?r[i]=e[i]:i in n&&(r[i]=n[i]),r},{})}var Gt=function(e){process.env.NODE_ENV!=="production"&&console.error(e)},Ut=function(e){process.env.NODE_ENV!=="production"&&console.warn(e)},jt={formats:{},messages:{},timeZone:void 0,defaultLocale:"en",defaultFormats:{},fallbackOnEmptyString:!0,onError:Gt,onWarn:Ut};function Re(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function C(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,n){e[t]=n}}}}}function Vt(e){e===void 0&&(e=Re());var t=Intl.RelativeTimeFormat,n=Intl.ListFormat,r=Intl.DisplayNames,i=B(function(){for(var s,h=[],l=0;l<arguments.length;l++)h[l]=arguments[l];return new((s=Intl.DateTimeFormat).bind.apply(s,O([void 0],h,!1)))},{cache:C(e.dateTime),strategy:_.variadic}),a=B(function(){for(var s,h=[],l=0;l<arguments.length;l++)h[l]=arguments[l];return new((s=Intl.NumberFormat).bind.apply(s,O([void 0],h,!1)))},{cache:C(e.number),strategy:_.variadic}),o=B(function(){for(var s,h=[],l=0;l<arguments.length;l++)h[l]=arguments[l];return new((s=Intl.PluralRules).bind.apply(s,O([void 0],h,!1)))},{cache:C(e.pluralRules),strategy:_.variadic});return{getDateTimeFormat:i,getNumberFormat:a,getMessageFormat:B(function(s,h,l,u){return new Pe(s,h,l,m({formatters:{getNumberFormat:a,getDateTimeFormat:i,getPluralRules:o}},u||{}))},{cache:C(e.message),strategy:_.variadic}),getRelativeTimeFormat:B(function(){for(var s=[],h=0;h<arguments.length;h++)s[h]=arguments[h];return new(t.bind.apply(t,O([void 0],s,!1)))},{cache:C(e.relativeTime),strategy:_.variadic}),getPluralRules:o,getListFormat:B(function(){for(var s=[],h=0;h<arguments.length;h++)s[h]=arguments[h];return new(n.bind.apply(n,O([void 0],s,!1)))},{cache:C(e.list),strategy:_.variadic}),getDisplayNames:B(function(){for(var s=[],h=0;h<arguments.length;h++)s[h]=arguments[h];return new(r.bind.apply(r,O([void 0],s,!1)))},{cache:C(e.displayNames),strategy:_.variadic})}}function ae(e,t,n,r){var i=e&&e[t],a;if(i&&(a=i[n]),a)return a;r(new wt("No ".concat(t," format named: ").concat(n)))}function kt(e,t,n){if(n===void 0&&(n=Error),!e)throw new n(t)}function X(e,t){return Object.keys(e).reduce(function(n,r){return n[r]=m({timeZone:t},e[r]),n},{})}function Le(e,t){var n=Object.keys(m(m({},e),t));return n.reduce(function(r,i){return r[i]=m(m({},e[i]||{}),t[i]||{}),r},{})}function Me(e,t){if(!t)return e;var n=Pe.formats;return m(m(m({},n),e),{date:Le(X(n.date,t),X(e.date||{},t)),time:Le(X(n.time,t),X(e.time||{},t))})}var Ce=function(e,t,n,r,i){var a=e.locale,o=e.formats,s=e.messages,h=e.defaultLocale,l=e.defaultFormats,u=e.fallbackOnEmptyString,f=e.onError,c=e.timeZone,p=e.defaultRichTextElements;n===void 0&&(n={id:""});var b=n.id,E=n.defaultMessage;kt(!!b,"[@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 y=String(b),x=s&&Object.prototype.hasOwnProperty.call(s,y)&&s[y];if(Array.isArray(x)&&x.length===1&&x[0].type===d.literal)return x[0].value;if(!r&&x&&typeof x=="string"&&!p)return x.replace(/'\{(.*?)\}'/gi,"{$1}");if(r=m(m({},p),r||{}),o=Me(o,c),l=Me(l,c),!x){if(u===!1&&x==="")return x;if((!E||a&&a.toLowerCase()!==h.toLowerCase())&&f(new Ft(n,a)),E)try{var H=t.getMessageFormat(E,h,l,i);return H.format(r)}catch(T){return f(new ie('Error formatting default message for: "'.concat(y,'", rendering default message verbatim'),a,n,T)),typeof E=="string"?E:y}return y}try{var H=t.getMessageFormat(x,a,o,m({formatters:t},i||{}));return H.format(r)}catch(T){f(new ie('Error formatting message: "'.concat(y,'", using ').concat(E?"default message":"id"," as fallback."),a,n,T))}if(E)try{var H=t.getMessageFormat(E,h,l,i);return H.format(r)}catch(T){f(new ie('Error formatting the default message for: "'.concat(y,'", rendering message verbatim'),a,n,T))}return typeof x=="string"?x:typeof E=="string"?E:y},we=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function Z(e,t,n,r){var i=e.locale,a=e.formats,o=e.onError,s=e.timeZone;r===void 0&&(r={});var h=r.format,l=m(m({},s&&{timeZone:s}),h&&ae(a,t,h,o)),u=M(r,we,l);return t==="time"&&!u.hour&&!u.minute&&!u.second&&!u.timeStyle&&!u.dateStyle&&(u=m(m({},u),{hour:"numeric",minute:"numeric"})),n(i,u)}function Xt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"date",t,o).format(s)}catch(h){e.onError(new I("Error formatting date.",e.locale,h))}return String(s)}function Zt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"time",t,o).format(s)}catch(h){e.onError(new I("Error formatting time.",e.locale,h))}return String(s)}function Wt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=n[2],s=o===void 0?{}:o,h=e.timeZone,l=e.locale,u=e.onError,f=M(s,we,h?{timeZone:h}:{});try{return t(l,f).formatRange(i,a)}catch(c){u(new I("Error formatting date time range.",e.locale,c))}return String(i)}function zt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"date",t,o).formatToParts(s)}catch(h){e.onError(new I("Error formatting date.",e.locale,h))}return[]}function qt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"time",t,o).formatToParts(s)}catch(h){e.onError(new I("Error formatting time.",e.locale,h))}return[]}var Jt=["style","type","fallback","languageDisplay"];function Qt(e,t,n,r){var i=e.locale,a=e.onError,o=Intl.DisplayNames;o||a(new R(`Intl.DisplayNames is not available in this environment.
12
+ `),r,a)||this;return o.descriptor=i,o.locale=r,o}return t}(I),Ft=function(e){A(t,e);function t(n,r){var i=e.call(this,L.MISSING_TRANSLATION,'Missing message: "'.concat(n.id,'" for locale "').concat(r,'", using ').concat(n.defaultMessage?"default message (".concat(typeof n.defaultMessage=="string"?n.defaultMessage:n.defaultMessage.map(function(a){var o;return(o=a.value)!==null&&o!==void 0?o:JSON.stringify(a)}).join(),")"):"id"," as fallback."))||this;return i.descriptor=n,i}return t}(G);function M(e,t,n){return n===void 0&&(n={}),t.reduce(function(r,i){return i in e?r[i]=e[i]:i in n&&(r[i]=n[i]),r},{})}var Gt=function(e){process.env.NODE_ENV!=="production"&&console.error(e)},Ut=function(e){process.env.NODE_ENV!=="production"&&console.warn(e)},jt={formats:{},messages:{},timeZone:void 0,defaultLocale:"en",defaultFormats:{},fallbackOnEmptyString:!0,onError:Gt,onWarn:Ut};function Re(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function C(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,n){e[t]=n}}}}}function Vt(e){e===void 0&&(e=Re());var t=Intl.RelativeTimeFormat,n=Intl.ListFormat,r=Intl.DisplayNames,i=B(function(){for(var s,h=[],l=0;l<arguments.length;l++)h[l]=arguments[l];return new((s=Intl.DateTimeFormat).bind.apply(s,O([void 0],h,!1)))},{cache:C(e.dateTime),strategy:_.variadic}),a=B(function(){for(var s,h=[],l=0;l<arguments.length;l++)h[l]=arguments[l];return new((s=Intl.NumberFormat).bind.apply(s,O([void 0],h,!1)))},{cache:C(e.number),strategy:_.variadic}),o=B(function(){for(var s,h=[],l=0;l<arguments.length;l++)h[l]=arguments[l];return new((s=Intl.PluralRules).bind.apply(s,O([void 0],h,!1)))},{cache:C(e.pluralRules),strategy:_.variadic});return{getDateTimeFormat:i,getNumberFormat:a,getMessageFormat:B(function(s,h,l,u){return new Pe(s,h,l,m({formatters:{getNumberFormat:a,getDateTimeFormat:i,getPluralRules:o}},u||{}))},{cache:C(e.message),strategy:_.variadic}),getRelativeTimeFormat:B(function(){for(var s=[],h=0;h<arguments.length;h++)s[h]=arguments[h];return new(t.bind.apply(t,O([void 0],s,!1)))},{cache:C(e.relativeTime),strategy:_.variadic}),getPluralRules:o,getListFormat:B(function(){for(var s=[],h=0;h<arguments.length;h++)s[h]=arguments[h];return new(n.bind.apply(n,O([void 0],s,!1)))},{cache:C(e.list),strategy:_.variadic}),getDisplayNames:B(function(){for(var s=[],h=0;h<arguments.length;h++)s[h]=arguments[h];return new(r.bind.apply(r,O([void 0],s,!1)))},{cache:C(e.displayNames),strategy:_.variadic})}}function ae(e,t,n,r){var i=e&&e[t],a;if(i&&(a=i[n]),a)return a;r(new Dt("No ".concat(t," format named: ").concat(n)))}function kt(e,t,n){if(n===void 0&&(n=Error),!e)throw new n(t)}function X(e,t){return Object.keys(e).reduce(function(n,r){return n[r]=m({timeZone:t},e[r]),n},{})}function Le(e,t){var n=Object.keys(m(m({},e),t));return n.reduce(function(r,i){return r[i]=m(m({},e[i]||{}),t[i]||{}),r},{})}function Me(e,t){if(!t)return e;var n=Pe.formats;return m(m(m({},n),e),{date:Le(X(n.date,t),X(e.date||{},t)),time:Le(X(n.time,t),X(e.time||{},t))})}var Ce=function(e,t,n,r,i){var a=e.locale,o=e.formats,s=e.messages,h=e.defaultLocale,l=e.defaultFormats,u=e.fallbackOnEmptyString,f=e.onError,c=e.timeZone,p=e.defaultRichTextElements;n===void 0&&(n={id:""});var b=n.id,E=n.defaultMessage;kt(!!b,"[@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 y=String(b),x=s&&Object.prototype.hasOwnProperty.call(s,y)&&s[y];if(Array.isArray(x)&&x.length===1&&x[0].type===d.literal)return x[0].value;if(!r&&x&&typeof x=="string"&&!p)return x.replace(/'\{(.*?)\}'/gi,"{$1}");if(r=m(m({},p),r||{}),o=Me(o,c),l=Me(l,c),!x){if(u===!1&&x==="")return x;if((!E||a&&a.toLowerCase()!==h.toLowerCase())&&f(new Ft(n,a)),E)try{var H=t.getMessageFormat(E,h,l,i);return H.format(r)}catch(T){return f(new ie('Error formatting default message for: "'.concat(y,'", rendering default message verbatim'),a,n,T)),typeof E=="string"?E:y}return y}try{var H=t.getMessageFormat(x,a,o,m({formatters:t},i||{}));return H.format(r)}catch(T){f(new ie('Error formatting message: "'.concat(y,'", using ').concat(E?"default message":"id"," as fallback."),a,n,T))}if(E)try{var H=t.getMessageFormat(E,h,l,i);return H.format(r)}catch(T){f(new ie('Error formatting the default message for: "'.concat(y,'", rendering message verbatim'),a,n,T))}return typeof x=="string"?x:typeof E=="string"?E:y},De=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function Z(e,t,n,r){var i=e.locale,a=e.formats,o=e.onError,s=e.timeZone;r===void 0&&(r={});var h=r.format,l=m(m({},s&&{timeZone:s}),h&&ae(a,t,h,o)),u=M(r,De,l);return t==="time"&&!u.hour&&!u.minute&&!u.second&&!u.timeStyle&&!u.dateStyle&&(u=m(m({},u),{hour:"numeric",minute:"numeric"})),n(i,u)}function Xt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"date",t,o).format(s)}catch(h){e.onError(new I("Error formatting date.",e.locale,h))}return String(s)}function Zt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"time",t,o).format(s)}catch(h){e.onError(new I("Error formatting time.",e.locale,h))}return String(s)}function Wt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=n[2],s=o===void 0?{}:o,h=e.timeZone,l=e.locale,u=e.onError,f=M(s,De,h?{timeZone:h}:{});try{return t(l,f).formatRange(i,a)}catch(c){u(new I("Error formatting date time range.",e.locale,c))}return String(i)}function zt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"date",t,o).formatToParts(s)}catch(h){e.onError(new I("Error formatting date.",e.locale,h))}return[]}function qt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=n[0],a=n[1],o=a===void 0?{}:a,s=typeof i=="string"?new Date(i||0):i;try{return Z(e,"time",t,o).formatToParts(s)}catch(h){e.onError(new I("Error formatting time.",e.locale,h))}return[]}var Jt=["style","type","fallback","languageDisplay"];function Qt(e,t,n,r){var i=e.locale,a=e.onError,o=Intl.DisplayNames;o||a(new R(`Intl.DisplayNames is not available in this environment.
13
13
  Try polyfilling it using "@formatjs/intl-displaynames"
14
- `,P.MISSING_INTL_API));var s=M(r,Jt);try{return t(i,s).of(n)}catch(h){a(new I("Error formatting display name.",i,h))}}var Yt=["type","style"],De=Date.now();function $t(e){return"".concat(De,"_").concat(e,"_").concat(De)}function Kt(e,t,n,r){r===void 0&&(r={});var i=Fe(e,t,n,r).reduce(function(a,o){var s=o.value;return typeof s!="string"?a.push(s):typeof a[a.length-1]=="string"?a[a.length-1]+=s:a.push(s),a},[]);return i.length===1?i[0]:i.length===0?"":i}function Fe(e,t,n,r){var i=e.locale,a=e.onError;r===void 0&&(r={});var o=Intl.ListFormat;o||a(new R(`Intl.ListFormat is not available in this environment.
14
+ `,P.MISSING_INTL_API));var s=M(r,Jt);try{return t(i,s).of(n)}catch(h){a(new I("Error formatting display name.",i,h))}}var Yt=["type","style"],we=Date.now();function $t(e){return"".concat(we,"_").concat(e,"_").concat(we)}function Kt(e,t,n,r){r===void 0&&(r={});var i=Fe(e,t,n,r).reduce(function(a,o){var s=o.value;return typeof s!="string"?a.push(s):typeof a[a.length-1]=="string"?a[a.length-1]+=s:a.push(s),a},[]);return i.length===1?i[0]:i.length===0?"":i}function Fe(e,t,n,r){var i=e.locale,a=e.onError;r===void 0&&(r={});var o=Intl.ListFormat;o||a(new R(`Intl.ListFormat is not available in this environment.
15
15
  Try polyfilling it using "@formatjs/intl-listformat"
16
16
  `,P.MISSING_INTL_API));var s=M(r,Yt);try{var h={},l=n.map(function(u,f){if(typeof u=="object"){var c=$t(f);return h[c]=u,c}return String(u)});return t(i,s).formatToParts(l).map(function(u){return u.type==="literal"?u:m(m({},u),{value:h[u.value]||u.value})})}catch(u){a(new I("Error formatting list.",i,u))}return n}var er=["type"];function tr(e,t,n,r){var i=e.locale,a=e.onError;r===void 0&&(r={}),Intl.PluralRules||a(new R(`Intl.PluralRules is not available in this environment.
17
17
  Try polyfilling it using "@formatjs/intl-pluralrules"
@@ -19,4 +19,4 @@ Try polyfilling it using "@formatjs/intl-pluralrules"
19
19
  Try polyfilling it using "@formatjs/intl-relativetimeformat"
20
20
  `,P.MISSING_INTL_API));try{return nr(e,t,i).format(n,r)}catch(o){e.onError(new I("Error formatting relative time.",e.locale,o))}return String(n)}var ar=["style","currency","currencyDisplay","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","currencyDisplay","currencySign","notation","signDisplay","unit","unitDisplay","numberingSystem"];function Ge(e,t,n){var r=e.locale,i=e.formats,a=e.onError;n===void 0&&(n={});var o=n.format,s=o&&ae(i,"number",o,a)||{},h=M(n,ar,s);return t(r,h)}function or(e,t,n,r){r===void 0&&(r={});try{return Ge(e,t,r).format(n)}catch(i){e.onError(new I("Error formatting number.",e.locale,i))}return String(n)}function sr(e,t,n,r){r===void 0&&(r={});try{return Ge(e,t,r).formatToParts(n)}catch(i){e.onError(new I("Error formatting number.",e.locale,i))}return[]}function ur(e){var t=e?e[Object.keys(e)[0]]:void 0;return typeof t=="string"}function hr(e){e.onWarn&&e.defaultRichTextElements&&ur(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 lr(e,t){var n=Vt(t),r=m(m({},jt),e),i=r.locale,a=r.defaultLocale,o=r.onError;return i?!Intl.NumberFormat.supportedLocalesOf(i).length&&o?o(new Oe('Missing locale data for locale: "'.concat(i,'" in Intl.NumberFormat. Using default locale: "').concat(a,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(i).length&&o&&o(new Oe('Missing locale data for locale: "'.concat(i,'" in Intl.DateTimeFormat. Using default locale: "').concat(a,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(o&&o(new Dt('"locale" was not configured, using "'.concat(a,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),r.locale=r.defaultLocale||"en"),hr(r),m(m({},r),{formatters:n,formatNumber:or.bind(null,r,n.getNumberFormat),formatNumberToParts:sr.bind(null,r,n.getNumberFormat),formatRelativeTime:ir.bind(null,r,n.getRelativeTimeFormat),formatDate:Xt.bind(null,r,n.getDateTimeFormat),formatDateToParts:zt.bind(null,r,n.getDateTimeFormat),formatTime:Zt.bind(null,r,n.getDateTimeFormat),formatDateTimeRange:Wt.bind(null,r,n.getDateTimeFormat),formatTimeToParts:qt.bind(null,r,n.getDateTimeFormat),formatPlural:tr.bind(null,r,n.getPluralRules),formatMessage:Ce.bind(null,r,n),$t:Ce.bind(null,r,n),formatList:Kt.bind(null,r,n.getListFormat),formatListToParts:Fe.bind(null,r,n.getListFormat),formatDisplayName:Qt.bind(null,r,n.getDisplayNames)})}var fr=U;U.flatten=U,U.unflatten=Ve;function Ue(e){return e&&e.constructor&&typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)}function je(e){return e}function U(e,t){t=t||{};const n=t.delimiter||".",r=t.maxDepth,i=t.transformKey||je,a={};function o(s,h,l){l=l||1,Object.keys(s).forEach(function(u){const f=s[u],c=t.safe&&Array.isArray(f),p=Object.prototype.toString.call(f),b=Ue(f),E=p==="[object Object]"||p==="[object Array]",y=h?h+n+i(u):i(u);if(!c&&!b&&E&&Object.keys(f).length&&(!t.maxDepth||l<r))return o(f,y,l+1);a[y]=f})}return o(e),a}function Ve(e,t){t=t||{};const n=t.delimiter||".",r=t.overwrite||!1,i=t.transformKey||je,a={};if(Ue(e)||Object.prototype.toString.call(e)!=="[object Object]")return e;function s(u){const f=Number(u);return isNaN(f)||u.indexOf(".")!==-1||t.object?u:f}function h(u,f,c){return Object.keys(c).reduce(function(p,b){return p[u+n+b]=c[b],p},f)}function l(u){const f=Object.prototype.toString.call(u),c=f==="[object Array]",p=f==="[object Object]";if(u){if(c)return!u.length;if(p)return!Object.keys(u).length}else return!0}return e=Object.keys(e).reduce(function(u,f){const c=Object.prototype.toString.call(e[f]);return!(c==="[object Object]"||c==="[object Array]")||l(e[f])?(u[f]=e[f],u):h(f,u,U(e[f],t))},{}),Object.keys(e).forEach(function(u){const f=u.split(n).map(i);let c=s(f.shift()),p=s(f[0]),b=a;for(;p!==void 0;){if(c==="__proto__")return;const E=Object.prototype.toString.call(b[c]),y=E==="[object Object]"||E==="[object Array]";if(!r&&!y&&typeof b[c]<"u")return;(r&&!y||!r&&b[c]==null)&&(b[c]=typeof p=="number"&&!t.object?[]:{}),b=b[c],f.length>0&&(c=s(f.shift()),p=s(f[0]))}b[c]=Ve(e[u],t)}),a}const cr=Re();let ke;const mr=(e,t,n=!1)=>{const r=lr({...typeof n=="boolean"?null:n,locale:e,messages:fr.flatten(t,{safe:!0})},cr),{$t:i,...a}=r,o=a,u={t:(f,c,p)=>o.formatMessage({id:f},c,p),te:f=>!!o.messages[f],tm:f=>o.messages[f]||[],...o,source:t};return(typeof n=="boolean"&&n===!0||typeof n!="boolean"&&n.isGlobal===!0)&&(ke=u),u};function pr(){return ke}const Xe=(e=null)=>D.defineComponent({name:"I18nT",props:{i18n:{type:Object,default:null},keypath:{type:String,required:!0},tag:{type:String,default:"span"}},setup(t,{slots:n}){const r=i=>{if(!i)return[];const a=/(\{[^}]+\})/g;return i.split(a).filter(Boolean)};return()=>{const i=Object.keys(n).filter(s=>s!=="_"),a=(e||t.i18n).messages[t.keypath].toString();let o=r(a);return o=o.filter(s=>s!==""),o.forEach((s,h)=>{if(!s.startsWith("{")&&!s.endsWith("}"))return;const l=s.replace(/[\{\}]/g,"");l==="0"&&n.default?o[h]=n.default():i.includes(l)&&n[l]&&(o[h]=n[l]())}),D.h(t.tag,t,o)}}}),gr={install(e,t){const{i18n:n}=t;e.component("I18nT",Xe(n))}};N.Translation=gr,N.createI18n=mr,N.i18nTComponent=Xe,N.useI18n=pr,Object.defineProperty(N,Symbol.toStringTag,{value:"Module"})});
22
+ For more details see https://formatjs.io/docs/getting-started/message-distribution`)}function lr(e,t){var n=Vt(t),r=m(m({},jt),e),i=r.locale,a=r.defaultLocale,o=r.onError;return i?!Intl.NumberFormat.supportedLocalesOf(i).length&&o?o(new Oe('Missing locale data for locale: "'.concat(i,'" in Intl.NumberFormat. Using default locale: "').concat(a,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(i).length&&o&&o(new Oe('Missing locale data for locale: "'.concat(i,'" in Intl.DateTimeFormat. Using default locale: "').concat(a,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(o&&o(new wt('"locale" was not configured, using "'.concat(a,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),r.locale=r.defaultLocale||"en"),hr(r),m(m({},r),{formatters:n,formatNumber:or.bind(null,r,n.getNumberFormat),formatNumberToParts:sr.bind(null,r,n.getNumberFormat),formatRelativeTime:ir.bind(null,r,n.getRelativeTimeFormat),formatDate:Xt.bind(null,r,n.getDateTimeFormat),formatDateToParts:zt.bind(null,r,n.getDateTimeFormat),formatTime:Zt.bind(null,r,n.getDateTimeFormat),formatDateTimeRange:Wt.bind(null,r,n.getDateTimeFormat),formatTimeToParts:qt.bind(null,r,n.getDateTimeFormat),formatPlural:tr.bind(null,r,n.getPluralRules),formatMessage:Ce.bind(null,r,n),$t:Ce.bind(null,r,n),formatList:Kt.bind(null,r,n.getListFormat),formatListToParts:Fe.bind(null,r,n.getListFormat),formatDisplayName:Qt.bind(null,r,n.getDisplayNames)})}var fr=U;U.flatten=U,U.unflatten=Ve;function Ue(e){return e&&e.constructor&&typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)}function je(e){return e}function U(e,t){t=t||{};const n=t.delimiter||".",r=t.maxDepth,i=t.transformKey||je,a={};function o(s,h,l){l=l||1,Object.keys(s).forEach(function(u){const f=s[u],c=t.safe&&Array.isArray(f),p=Object.prototype.toString.call(f),b=Ue(f),E=p==="[object Object]"||p==="[object Array]",y=h?h+n+i(u):i(u);if(!c&&!b&&E&&Object.keys(f).length&&(!t.maxDepth||l<r))return o(f,y,l+1);a[y]=f})}return o(e),a}function Ve(e,t){t=t||{};const n=t.delimiter||".",r=t.overwrite||!1,i=t.transformKey||je,a={};if(Ue(e)||Object.prototype.toString.call(e)!=="[object Object]")return e;function s(u){const f=Number(u);return isNaN(f)||u.indexOf(".")!==-1||t.object?u:f}function h(u,f,c){return Object.keys(c).reduce(function(p,b){return p[u+n+b]=c[b],p},f)}function l(u){const f=Object.prototype.toString.call(u),c=f==="[object Array]",p=f==="[object Object]";if(u){if(c)return!u.length;if(p)return!Object.keys(u).length}else return!0}return e=Object.keys(e).reduce(function(u,f){const c=Object.prototype.toString.call(e[f]);return!(c==="[object Object]"||c==="[object Array]")||l(e[f])?(u[f]=e[f],u):h(f,u,U(e[f],t))},{}),Object.keys(e).forEach(function(u){const f=u.split(n).map(i);let c=s(f.shift()),p=s(f[0]),b=a;for(;p!==void 0;){if(c==="__proto__")return;const E=Object.prototype.toString.call(b[c]),y=E==="[object Object]"||E==="[object Array]";if(!r&&!y&&typeof b[c]<"u")return;(r&&!y||!r&&b[c]==null)&&(b[c]=typeof p=="number"&&!t.object?[]:{}),b=b[c],f.length>0&&(c=s(f.shift()),p=s(f[0]))}b[c]=Ve(e[u],t)}),a}const cr=Re();let ke;const mr=(e,t,n=!1)=>{const r=lr({...typeof n=="boolean"?null:n,locale:e,messages:fr.flatten(t,{safe:!0})},cr),i=p=>{const b="Invalid Date";if(!p)return b;try{const E=new Date(p*1e3);return h.formatDate(E,{year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric"})}catch{return b}},a=p=>{const b=Date.parse(p)/1e3;return i(b)},{$t:o,...s}=r,h=s,c={formatUnixTimeStamp:i,formatIsoDate:a,t:(p,b,E)=>h.formatMessage({id:p},b,E),te:p=>!!h.messages[p],tm:p=>h.messages[p]||[],...h,source:t};return(typeof n=="boolean"&&n===!0||typeof n!="boolean"&&n.isGlobal===!0)&&(ke=c),c};function pr(){return ke}const Xe=(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:n}){const r=i=>{if(!i)return[];const a=/(\{[^}]+\})/g;return i.split(a).filter(Boolean)};return()=>{const i=Object.keys(n).filter(s=>s!=="_"),a=(e||t.i18n).messages[t.keypath].toString();let o=r(a);return o=o.filter(s=>s!==""),o.forEach((s,h)=>{if(!s.startsWith("{")&&!s.endsWith("}"))return;const l=s.replace(/[\{\}]/g,"");l==="0"&&n.default?o[h]=n.default():i.includes(l)&&n[l]&&(o[h]=n[l]())}),w.h(t.tag,t,o)}}}),gr={install(e,t){const{i18n:n}=t;e.component("I18nT",Xe(n))}};N.Translation=gr,N.createI18n=mr,N.i18nTComponent=Xe,N.useI18n=pr,Object.defineProperty(N,Symbol.toStringTag,{value:"Module"})});
@@ -1 +1 @@
1
- {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAqB,gBAAgB,EAA+B,cAAc,EAAE,MAAM,SAAS,CAAA;AAS5H;;;;;;EAME;AACF,eAAO,MAAM,UAAU,sDACd,gBAAgB,oCAAmC,OAAO,GAAC,cAAc,+BA4CjF,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":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAqB,gBAAgB,EAA+B,cAAc,EAAE,MAAM,SAAS,CAAA;AAS5H;;;;;;EAME;AACF,eAAO,MAAM,UAAU,sDACd,gBAAgB,oCAAmC,OAAO,GAAC,cAAc,+BAmFjF,CAAA;AAGD,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,WAAW,CAAC,aAAa,CAAC,CAEvG"}
@@ -8,6 +8,8 @@ export type PathToDotNotation<MessageSource, V> = MessageSource extends V ? '' :
8
8
  [K in Extract<keyof MessageSource, string>]: Dot<K, PathToDotNotation<MessageSource[K], V>> | K;
9
9
  }[Extract<keyof MessageSource, string>];
10
10
  export type IntlShapeEx<MessageSource extends Record<string, any>> = Omit<IntlShape, '$t'> & {
11
+ formatUnixTimeStamp: (timestamp: number) => string;
12
+ formatIsoDate: (isoDate: string) => string;
11
13
  t: (translationKey: PathToDotNotation<MessageSource, string>, values?: Record<string, MessageFormatPrimitiveValue> | undefined, opts?: IntlMessageFormatOptions) => string;
12
14
  te: (translationKey: PathToDotNotation<MessageSource, string>) => boolean;
13
15
  tm: (translationKey: PathToDotNotation<MessageSource, string>) => Array<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAE3C,OAAO,KAAK,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,oBAAoB,CAAA;AAE7E,MAAM,MAAM,2BAA2B,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,SAAS,CAAA;AAEtF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AAEtC,KAAK,GAAG,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,SAAS,MAAM,IAAI,EAAE,SAAS,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAA;AAE7E,MAAM,MAAM,iBAAiB,CAAC,aAAa,EAAE,CAAC,IAAI,aAAa,SAAS,CAAC,GAAG,EAAE,GAAG;KAC9E,CAAC,IAAI,OAAO,CAAC,MAAM,aAAa,EAAE,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,iBAAiB,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC;CAChG,CAAC,OAAO,CAAC,MAAM,aAAa,EAAE,MAAM,CAAC,CAAC,CAAA;AAGvC,MAAM,MAAM,WAAW,CAAC,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG;IAC3F,CAAC,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC,aAAa,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,2BAA2B,CAAC,GAAG,SAAS,EAAE,IAAI,CAAC,EAAE,wBAAwB,KAAK,MAAM,CAAA;IAC1K,EAAE,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC,aAAa,EAAE,MAAM,CAAC,KAAK,OAAO,CAAA;IACzE,EAAE,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC,aAAa,EAAE,MAAM,CAAC,KAAK,KAAK,CAAC,MAAM,CAAC,CAAA;IAC/E,MAAM,EAAE,aAAa,CAAA;CACtB,CAAA;AAGD,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,QAAQ,CAAE;IAC9E,QAAQ,EAAE,OAAO,CAAA;CAClB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAE3C,OAAO,KAAK,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,oBAAoB,CAAA;AAE7E,MAAM,MAAM,2BAA2B,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,SAAS,CAAA;AAEtF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AAEtC,KAAK,GAAG,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,SAAS,MAAM,IAAI,EAAE,SAAS,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAA;AAE7E,MAAM,MAAM,iBAAiB,CAAC,aAAa,EAAE,CAAC,IAAI,aAAa,SAAS,CAAC,GAAG,EAAE,GAAG;KAC9E,CAAC,IAAI,OAAO,CAAC,MAAM,aAAa,EAAE,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,iBAAiB,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC;CAChG,CAAC,OAAO,CAAC,MAAM,aAAa,EAAE,MAAM,CAAC,CAAC,CAAA;AAGvC,MAAM,MAAM,WAAW,CAAC,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG;IAC3F,mBAAmB,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,MAAM,CAAA;IAClD,aAAa,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,MAAM,CAAA;IAC1C,CAAC,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC,aAAa,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,2BAA2B,CAAC,GAAG,SAAS,EAAE,IAAI,CAAC,EAAE,wBAAwB,KAAK,MAAM,CAAA;IAC1K,EAAE,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC,aAAa,EAAE,MAAM,CAAC,KAAK,OAAO,CAAA;IACzE,EAAE,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC,aAAa,EAAE,MAAM,CAAC,KAAK,KAAK,CAAC,MAAM,CAAC,CAAA;IAC/E,MAAM,EAAE,aAAa,CAAA;CACtB,CAAA;AAGD,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,QAAQ,CAAE;IAC9E,QAAQ,EAAE,OAAO,CAAA;CAClB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong-ui-public/i18n",
3
- "version": "0.6.2-pr.574.ab8cbf3.0",
3
+ "version": "0.6.2-pr.616.0754259.0",
4
4
  "type": "module",
5
5
  "main": "./dist/i18n.umd.js",
6
6
  "module": "./dist/i18n.es.js",