@kong-ui-public/i18n 2.4.5 → 2.4.6-pr.2856.f0aa93e2a.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/dist/i18n.es.js CHANGED
@@ -134,9 +134,11 @@ function Ye(e) {
134
134
  return e.replace(Qe, function(r) {
135
135
  var n = r.length;
136
136
  switch (r[0]) {
137
+ // Era
137
138
  case "G":
138
139
  t.era = n === 4 ? "long" : n === 5 ? "narrow" : "short";
139
140
  break;
141
+ // Year
140
142
  case "y":
141
143
  t.year = n === 2 ? "2-digit" : "numeric";
142
144
  break;
@@ -145,13 +147,16 @@ function Ye(e) {
145
147
  case "U":
146
148
  case "r":
147
149
  throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");
150
+ // Quarter
148
151
  case "q":
149
152
  case "Q":
150
153
  throw new RangeError("`q/Q` (quarter) patterns are not supported");
154
+ // Month
151
155
  case "M":
152
156
  case "L":
153
157
  t.month = ["numeric", "2-digit", "short", "long", "narrow"][n - 1];
154
158
  break;
159
+ // Week
155
160
  case "w":
156
161
  case "W":
157
162
  throw new RangeError("`w/W` (week) patterns are not supported");
@@ -162,6 +167,7 @@ function Ye(e) {
162
167
  case "F":
163
168
  case "g":
164
169
  throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");
170
+ // Weekday
165
171
  case "E":
166
172
  t.weekday = n === 4 ? "long" : n === 5 ? "narrow" : "short";
167
173
  break;
@@ -175,12 +181,15 @@ function Ye(e) {
175
181
  throw new RangeError("`c..ccc` (weekday) patterns are not supported");
176
182
  t.weekday = ["short", "long", "narrow", "short"][n - 4];
177
183
  break;
184
+ // Period
178
185
  case "a":
179
186
  t.hour12 = !0;
180
187
  break;
181
188
  case "b":
189
+ // am, pm, noon, midnight
182
190
  case "B":
183
191
  throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");
192
+ // Hour
184
193
  case "h":
185
194
  t.hourCycle = "h12", t.hour = ["numeric", "2-digit"][n - 1];
186
195
  break;
@@ -197,23 +206,31 @@ function Ye(e) {
197
206
  case "J":
198
207
  case "C":
199
208
  throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");
209
+ // Minute
200
210
  case "m":
201
211
  t.minute = ["numeric", "2-digit"][n - 1];
202
212
  break;
213
+ // Second
203
214
  case "s":
204
215
  t.second = ["numeric", "2-digit"][n - 1];
205
216
  break;
206
217
  case "S":
207
218
  case "A":
208
219
  throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");
220
+ // Zone
209
221
  case "z":
210
222
  t.timeZoneName = n < 4 ? "short" : "long";
211
223
  break;
212
224
  case "Z":
225
+ // 1..3, 4, 5: The ISO8601 varios formats
213
226
  case "O":
227
+ // 1, 4: milliseconds in day short, long
214
228
  case "v":
229
+ // 1, 4: generic non-location format
215
230
  case "V":
231
+ // 1, 2, 3, 4: time zone ID or city
216
232
  case "X":
233
+ // 1, 2, 3, 4: The ISO8601 varios formats
217
234
  case "x":
218
235
  throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead");
219
236
  }
@@ -354,6 +371,7 @@ function nt(e) {
354
371
  case "notation-simple":
355
372
  t.notation = "standard";
356
373
  continue;
374
+ // https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h
357
375
  case "unit-width-narrow":
358
376
  t.currencyDisplay = "narrowSymbol", t.unitDisplay = "narrow";
359
377
  continue;
@@ -390,6 +408,7 @@ function nt(e) {
390
408
  case "rounding-mode-half-up":
391
409
  t.roundingMode = "halfExpand";
392
410
  continue;
411
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
393
412
  case "integer-width":
394
413
  if (a.options.length > 1)
395
414
  throw new RangeError("integer-width stems only accept a single optional option");
@@ -1989,7 +2008,7 @@ if (q) {
1989
2008
  };
1990
2009
  var bt = (
1991
2010
  /** @class */
1992
- function() {
2011
+ (function() {
1993
2012
  function e(t, r) {
1994
2013
  r === void 0 && (r = {}), this.message = t, this.position = { offset: 0, line: 1, column: 1 }, this.ignoreTag = !!r.ignoreTag, this.locale = r.locale, this.requiresOtherClause = !!r.requiresOtherClause, this.shouldParseSkeletons = !!r.shouldParseSkeletons;
1995
2014
  }
@@ -2105,6 +2124,7 @@ var bt = (
2105
2124
  switch (this.peek()) {
2106
2125
  case 39:
2107
2126
  return this.bump(), this.bump(), "'";
2127
+ // '{', '<', '>', '}'
2108
2128
  case 123:
2109
2129
  case 60:
2110
2130
  case 62:
@@ -2150,6 +2170,7 @@ var bt = (
2150
2170
  if (this.bumpSpace(), this.isEOF())
2151
2171
  return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, v(n, this.clonePosition()));
2152
2172
  switch (this.char()) {
2173
+ // Simple argument: `{name}`
2153
2174
  case 125:
2154
2175
  return this.bump(), {
2155
2176
  val: {
@@ -2160,6 +2181,7 @@ var bt = (
2160
2181
  },
2161
2182
  err: null
2162
2183
  };
2184
+ // Argument with options: `{name, format, ...}`
2163
2185
  case 44:
2164
2186
  return this.bump(), this.bumpSpace(), this.isEOF() ? this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE, v(n, this.clonePosition())) : this.parseArgumentOptions(t, r, a, n);
2165
2187
  default:
@@ -2438,7 +2460,7 @@ var bt = (
2438
2460
  var t = this.char(), r = this.offset(), n = this.message.charCodeAt(r + (t >= 65536 ? 2 : 1));
2439
2461
  return n ?? null;
2440
2462
  }, e;
2441
- }()
2463
+ })()
2442
2464
  );
2443
2465
  function $(e) {
2444
2466
  return e >= 97 && e <= 122 || e >= 65 && e <= 90;
@@ -2478,7 +2500,7 @@ var P;
2478
2500
  })(P || (P = {}));
2479
2501
  var L = (
2480
2502
  /** @class */
2481
- function(e) {
2503
+ (function(e) {
2482
2504
  _(t, e);
2483
2505
  function t(r, n, a) {
2484
2506
  var i = e.call(this, r) || this;
@@ -2487,34 +2509,34 @@ var L = (
2487
2509
  return t.prototype.toString = function() {
2488
2510
  return "[formatjs Error: ".concat(this.code, "] ").concat(this.message);
2489
2511
  }, t;
2490
- }(Error)
2512
+ })(Error)
2491
2513
  ), le = (
2492
2514
  /** @class */
2493
- function(e) {
2515
+ (function(e) {
2494
2516
  _(t, e);
2495
2517
  function t(r, n, a, i) {
2496
2518
  return e.call(this, 'Invalid values for "'.concat(r, '": "').concat(n, '". Options are "').concat(Object.keys(a).join('", "'), '"'), P.INVALID_VALUE, i) || this;
2497
2519
  }
2498
2520
  return t;
2499
- }(L)
2521
+ })(L)
2500
2522
  ), Ht = (
2501
2523
  /** @class */
2502
- function(e) {
2524
+ (function(e) {
2503
2525
  _(t, e);
2504
2526
  function t(r, n, a) {
2505
2527
  return e.call(this, 'Value for "'.concat(r, '" must be of type ').concat(n), P.INVALID_VALUE, a) || this;
2506
2528
  }
2507
2529
  return t;
2508
- }(L)
2530
+ })(L)
2509
2531
  ), It = (
2510
2532
  /** @class */
2511
- function(e) {
2533
+ (function(e) {
2512
2534
  _(t, e);
2513
2535
  function t(r, n) {
2514
2536
  return e.call(this, 'The intl string context variable "'.concat(r, '" was not provided to the string "').concat(n, '"'), P.MISSING_VALUE, n) || this;
2515
2537
  }
2516
2538
  return t;
2517
- }(L)
2539
+ })(L)
2518
2540
  ), H;
2519
2541
  (function(e) {
2520
2542
  e[e.literal = 0] = "literal", e[e.object = 1] = "object";
@@ -2684,7 +2706,7 @@ function Pt(e) {
2684
2706
  }
2685
2707
  var Oe = (
2686
2708
  /** @class */
2687
- function() {
2709
+ (function() {
2688
2710
  function e(t, r, n, a) {
2689
2711
  r === void 0 && (r = e.defaultLocale);
2690
2712
  var i = this;
@@ -2792,14 +2814,14 @@ var Oe = (
2792
2814
  }
2793
2815
  }
2794
2816
  }, e;
2795
- }()
2817
+ })()
2796
2818
  ), M;
2797
2819
  (function(e) {
2798
2820
  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";
2799
2821
  })(M || (M = {}));
2800
2822
  var F = (
2801
2823
  /** @class */
2802
- function(e) {
2824
+ (function(e) {
2803
2825
  _(t, e);
2804
2826
  function t(r, n, a) {
2805
2827
  var i = this, o = a ? a instanceof Error ? a : new Error(String(a)) : void 0;
@@ -2809,37 +2831,37 @@ var F = (
2809
2831
  `).concat(o.stack) : "")) || this, i.code = r, typeof Error.captureStackTrace == "function" && Error.captureStackTrace(i, t), i;
2810
2832
  }
2811
2833
  return t;
2812
- }(Error)
2834
+ })(Error)
2813
2835
  ), Lt = (
2814
2836
  /** @class */
2815
- function(e) {
2837
+ (function(e) {
2816
2838
  _(t, e);
2817
2839
  function t(r, n) {
2818
2840
  return e.call(this, M.UNSUPPORTED_FORMATTER, r, n) || this;
2819
2841
  }
2820
2842
  return t;
2821
- }(F)
2843
+ })(F)
2822
2844
  ), Rt = (
2823
2845
  /** @class */
2824
- function(e) {
2846
+ (function(e) {
2825
2847
  _(t, e);
2826
2848
  function t(r, n) {
2827
2849
  return e.call(this, M.INVALID_CONFIG, r, n) || this;
2828
2850
  }
2829
2851
  return t;
2830
- }(F)
2852
+ })(F)
2831
2853
  ), fe = (
2832
2854
  /** @class */
2833
- function(e) {
2855
+ (function(e) {
2834
2856
  _(t, e);
2835
2857
  function t(r, n) {
2836
2858
  return e.call(this, M.MISSING_DATA, r, n) || this;
2837
2859
  }
2838
2860
  return t;
2839
- }(F)
2861
+ })(F)
2840
2862
  ), B = (
2841
2863
  /** @class */
2842
- function(e) {
2864
+ (function(e) {
2843
2865
  _(t, e);
2844
2866
  function t(r, n, a) {
2845
2867
  var i = e.call(this, M.FORMAT_ERROR, "".concat(r, `
@@ -2848,10 +2870,10 @@ Locale: `).concat(n, `
2848
2870
  return i.locale = n, i;
2849
2871
  }
2850
2872
  return t;
2851
- }(F)
2873
+ })(F)
2852
2874
  ), Z = (
2853
2875
  /** @class */
2854
- function(e) {
2876
+ (function(e) {
2855
2877
  _(t, e);
2856
2878
  function t(r, n, a, i) {
2857
2879
  var o = e.call(this, "".concat(r, `
@@ -2862,10 +2884,10 @@ Description: `).concat(a == null ? void 0 : a.description, `
2862
2884
  return o.descriptor = a, o.locale = n, o;
2863
2885
  }
2864
2886
  return t;
2865
- }(B)
2887
+ })(B)
2866
2888
  ), Ot = (
2867
2889
  /** @class */
2868
- function(e) {
2890
+ (function(e) {
2869
2891
  _(t, e);
2870
2892
  function t(r, n) {
2871
2893
  var a = e.call(this, M.MISSING_TRANSLATION, 'Missing message: "'.concat(r.id, '" for locale "').concat(n, '", using ').concat(r.defaultMessage ? "default message (".concat(typeof r.defaultMessage == "string" ? r.defaultMessage : r.defaultMessage.map(function(i) {
@@ -2875,7 +2897,7 @@ Description: `).concat(a == null ? void 0 : a.description, `
2875
2897
  return a.descriptor = r, a;
2876
2898
  }
2877
2899
  return t;
2878
- }(F)
2900
+ })(F)
2879
2901
  );
2880
2902
  function C(e, t, r) {
2881
2903
  return r === void 0 && (r = {}), t.reduce(function(n, a) {
package/dist/i18n.umd.js CHANGED
@@ -1,15 +1,15 @@
1
- (function(P,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],w):(P=typeof globalThis<"u"?globalThis:P||self,w(P["kong-ui-public-i18n"]={},P.Vue))})(this,function(P,w){"use strict";var Z=function(e,t){return Z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(r[a]=n[a])},Z(e,t)};function _(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");Z(e,t);function r(){this.constructor=e}e.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}var f=function(){return f=Object.assign||function(t){for(var r,n=1,a=arguments.length;n<a;n++){r=arguments[n];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(t[i]=r[i])}return t},f.apply(this,arguments)};function ke(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r}function A(e,t,r){if(r||arguments.length===2)for(var n=0,a=t.length,i;n<a;n++)(i||!(n in t))&&(i||(i=Array.prototype.slice.call(t,0,n)),i[n]=t[n]);return e.concat(i||Array.prototype.slice.call(t))}typeof SuppressedError=="function"&&SuppressedError;function H(e,t){var r=t&&t.cache?t.cache:qe,n=t&&t.serializer?t.serializer:ze,a=t&&t.strategy?t.strategy:We;return a(e,{cache:r,serializer:n})}function je(e){return e==null||typeof e=="number"||typeof e=="boolean"}function Xe(e,t,r,n){var a=je(n)?n:r(n),i=t.get(a);return typeof i>"u"&&(i=e.call(this,n),t.set(a,i)),i}function ae(e,t,r){var n=Array.prototype.slice.call(arguments,3),a=r(n),i=t.get(a);return typeof i>"u"&&(i=e.apply(this,n),t.set(a,i)),i}function ie(e,t,r,n,a){return r.bind(t,e,n,a)}function We(e,t){var r=e.length===1?Xe:ae;return ie(e,this,r,t.cache.create(),t.serializer)}function Ze(e,t){return ie(e,this,ae,t.cache.create(),t.serializer)}var ze=function(){return JSON.stringify(arguments)};function z(){this.cache=Object.create(null)}z.prototype.get=function(e){return this.cache[e]},z.prototype.set=function(e,t){this.cache[e]=t};var qe={create:function(){return new z}},I={variadic:Ze},g;(function(e){e[e.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",e[e.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",e[e.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",e[e.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",e[e.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",e[e.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",e[e.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",e[e.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",e[e.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",e[e.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",e[e.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",e[e.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",e[e.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",e[e.INVALID_TAG=23]="INVALID_TAG",e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"})(g||(g={}));var b;(function(e){e[e.literal=0]="literal",e[e.argument=1]="argument",e[e.number=2]="number",e[e.date=3]="date",e[e.time=4]="time",e[e.select=5]="select",e[e.plural=6]="plural",e[e.pound=7]="pound",e[e.tag=8]="tag"})(b||(b={}));var F;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(F||(F={}));function oe(e){return e.type===b.literal}function Je(e){return e.type===b.argument}function se(e){return e.type===b.number}function ue(e){return e.type===b.date}function he(e){return e.type===b.time}function le(e){return e.type===b.select}function fe(e){return e.type===b.plural}function Qe(e){return e.type===b.pound}function me(e){return e.type===b.tag}function ce(e){return!!(e&&typeof e=="object"&&e.type===F.number)}function q(e){return!!(e&&typeof e=="object"&&e.type===F.dateTime)}var ge=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,Ye=/(?:[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 $e(e){var t={};return e.replace(Ye,function(r){var n=r.length;switch(r[0]){case"G":t.era=n===4?"long":n===5?"narrow":"short";break;case"y":t.year=n===2?"2-digit":"numeric";break;case"Y":case"u":case"U":case"r":throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");case"M":case"L":t.month=["numeric","2-digit","short","long","narrow"][n-1];break;case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":t.day=["numeric","2-digit"][n-1];break;case"D":case"F":case"g":throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");case"E":t.weekday=n===4?"long":n===5?"narrow":"short";break;case"e":if(n<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"c":if(n<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"a":t.hour12=!0;break;case"b":case"B":throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");case"h":t.hourCycle="h12",t.hour=["numeric","2-digit"][n-1];break;case"H":t.hourCycle="h23",t.hour=["numeric","2-digit"][n-1];break;case"K":t.hourCycle="h11",t.hour=["numeric","2-digit"][n-1];break;case"k":t.hourCycle="h24",t.hour=["numeric","2-digit"][n-1];break;case"j":case"J":case"C":throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");case"m":t.minute=["numeric","2-digit"][n-1];break;case"s":t.second=["numeric","2-digit"][n-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");case"z":t.timeZoneName=n<4?"short":"long";break;case"Z":case"O":case"v":case"V":case"X":case"x":throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""}),t}var Ke=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function et(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(Ke).filter(function(c){return c.length>0}),r=[],n=0,a=t;n<a.length;n++){var i=a[n],o=i.split("/");if(o.length===0)throw new Error("Invalid number skeleton");for(var s=o[0],u=o.slice(1),l=0,h=u;l<h.length;l++){var m=h[l];if(m.length===0)throw new Error("Invalid number skeleton")}r.push({stem:s,options:u})}return r}function tt(e){return e.replace(/^(.*?)-/,"")}var pe=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,ve=/^(@+)?(\+|#+)?[rs]?$/g,rt=/(\*)(0+)|(#+)(0+)|(0+)/g,de=/^(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(r,n,a){return typeof a!="string"?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):a==="+"?t.minimumSignificantDigits=n.length:n[0]==="#"?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+(typeof a=="string"?a.length:0)),""}),t}function be(e){switch(e){case"sign-auto":return{signDisplay:"auto"};case"sign-accounting":case"()":return{currencySign:"accounting"};case"sign-always":case"+!":return{signDisplay:"always"};case"sign-accounting-always":case"()!":return{signDisplay:"always",currencySign:"accounting"};case"sign-except-zero":case"+?":return{signDisplay:"exceptZero"};case"sign-accounting-except-zero":case"()?":return{signDisplay:"exceptZero",currencySign:"accounting"};case"sign-never":case"+_":return{signDisplay:"never"}}}function nt(e){var t;if(e[0]==="E"&&e[1]==="E"?(t={notation:"engineering"},e=e.slice(2)):e[0]==="E"&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if(r==="+!"?(t.signDisplay="always",e=e.slice(2)):r==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!de.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function ye(e){var t={},r=be(e);return r||t}function at(e){for(var t={},r=0,n=e;r<n.length;r++){var a=n[r];switch(a.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=a.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=tt(a.options[0]);continue;case"compact-short":case"K":t.notation="compact",t.compactDisplay="short";continue;case"compact-long":case"KK":t.notation="compact",t.compactDisplay="long";continue;case"scientific":t=f(f(f({},t),{notation:"scientific"}),a.options.reduce(function(u,l){return f(f({},u),ye(l))},{}));continue;case"engineering":t=f(f(f({},t),{notation:"engineering"}),a.options.reduce(function(u,l){return f(f({},u),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(a.options[0]);continue;case"rounding-mode-floor":t.roundingMode="floor";continue;case"rounding-mode-ceiling":t.roundingMode="ceil";continue;case"rounding-mode-down":t.roundingMode="trunc";continue;case"rounding-mode-up":t.roundingMode="expand";continue;case"rounding-mode-half-even":t.roundingMode="halfEven";continue;case"rounding-mode-half-down":t.roundingMode="halfTrunc";continue;case"rounding-mode-half-up":t.roundingMode="halfExpand";continue;case"integer-width":if(a.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");a.options[0].replace(rt,function(u,l,h,m,c,y){if(l)t.minimumIntegerDigits=h.length;else{if(m&&c)throw new Error("We currently do not support maximum integer digits");if(y)throw new Error("We currently do not support exact integer digits")}return""});continue}if(de.test(a.stem)){t.minimumIntegerDigits=a.stem.length;continue}if(pe.test(a.stem)){if(a.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");a.stem.replace(pe,function(u,l,h,m,c,y){return h==="*"?t.minimumFractionDigits=l.length:m&&m[0]==="#"?t.maximumFractionDigits=m.length:c&&y?(t.minimumFractionDigits=c.length,t.maximumFractionDigits=c.length+y.length):(t.minimumFractionDigits=l.length,t.maximumFractionDigits=l.length),""});var i=a.options[0];i==="w"?t=f(f({},t),{trailingZeroDisplay:"stripIfInteger"}):i&&(t=f(f({},t),Ee(i)));continue}if(ve.test(a.stem)){t=f(f({},t),Ee(a.stem));continue}var o=be(a.stem);o&&(t=f(f({},t),o));var s=nt(a.stem);s&&(t=f(f({},t),s))}return t}var V={"001":["H","h"],419:["h","H","hB","hb"],AC:["H","h","hb","hB"],AD:["H","hB"],AE:["h","hB","hb","H"],AF:["H","hb","hB","h"],AG:["h","hb","H","hB"],AI:["H","h","hb","hB"],AL:["h","H","hB"],AM:["H","hB"],AO:["H","hB"],AR:["h","H","hB","hb"],AS:["h","H"],AT:["H","hB"],AU:["h","hb","H","hB"],AW:["H","hB"],AX:["H"],AZ:["H","hB","h"],BA:["H","hB","h"],BB:["h","hb","H","hB"],BD:["h","hB","H"],BE:["H","hB"],BF:["H","hB"],BG:["H","hB","h"],BH:["h","hB","hb","H"],BI:["H","h"],BJ:["H","hB"],BL:["H","hB"],BM:["h","hb","H","hB"],BN:["hb","hB","h","H"],BO:["h","H","hB","hb"],BQ:["H"],BR:["H","hB"],BS:["h","hb","H","hB"],BT:["h","H"],BW:["H","h","hb","hB"],BY:["H","h"],BZ:["H","h","hb","hB"],CA:["h","hb","H","hB"],CC:["H","h","hb","hB"],CD:["hB","H"],CF:["H","h","hB"],CG:["H","hB"],CH:["H","hB","h"],CI:["H","hB"],CK:["H","h","hb","hB"],CL:["h","H","hB","hb"],CM:["H","h","hB"],CN:["H","hB","hb","h"],CO:["h","H","hB","hb"],CP:["H"],CR:["h","H","hB","hb"],CU:["h","H","hB","hb"],CV:["H","hB"],CW:["H","hB"],CX:["H","h","hb","hB"],CY:["h","H","hb","hB"],CZ:["H"],DE:["H","hB"],DG:["H","h","hb","hB"],DJ:["h","H"],DK:["H"],DM:["h","hb","H","hB"],DO:["h","H","hB","hb"],DZ:["h","hB","hb","H"],EA:["H","h","hB","hb"],EC:["h","H","hB","hb"],EE:["H","hB"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],ER:["h","H"],ES:["H","hB","h","hb"],ET:["hB","hb","h","H"],FI:["H"],FJ:["h","hb","H","hB"],FK:["H","h","hb","hB"],FM:["h","hb","H","hB"],FO:["H","h"],FR:["H","hB"],GA:["H","hB"],GB:["H","h","hb","hB"],GD:["h","hb","H","hB"],GE:["H","hB","h"],GF:["H","hB"],GG:["H","h","hb","hB"],GH:["h","H"],GI:["H","h","hb","hB"],GL:["H","h"],GM:["h","hb","H","hB"],GN:["H","hB"],GP:["H","hB"],GQ:["H","hB","h","hb"],GR:["h","H","hb","hB"],GT:["h","H","hB","hb"],GU:["h","hb","H","hB"],GW:["H","hB"],GY:["h","hb","H","hB"],HK:["h","hB","hb","H"],HN:["h","H","hB","hb"],HR:["H","hB"],HU:["H","h"],IC:["H","h","hB","hb"],ID:["H"],IE:["H","h","hb","hB"],IL:["H","hB"],IM:["H","h","hb","hB"],IN:["h","H"],IO:["H","h","hb","hB"],IQ:["h","hB","hb","H"],IR:["hB","H"],IS:["H"],IT:["H","hB"],JE:["H","h","hb","hB"],JM:["h","hb","H","hB"],JO:["h","hB","hb","H"],JP:["H","K","h"],KE:["hB","hb","H","h"],KG:["H","h","hB","hb"],KH:["hB","h","H","hb"],KI:["h","hb","H","hB"],KM:["H","h","hB","hb"],KN:["h","hb","H","hB"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],KW:["h","hB","hb","H"],KY:["h","hb","H","hB"],KZ:["H","hB"],LA:["H","hb","hB","h"],LB:["h","hB","hb","H"],LC:["h","hb","H","hB"],LI:["H","hB","h"],LK:["H","h","hB","hb"],LR:["h","hb","H","hB"],LS:["h","H"],LT:["H","h","hb","hB"],LU:["H","h","hB"],LV:["H","hB","hb","h"],LY:["h","hB","hb","H"],MA:["H","h","hB","hb"],MC:["H","hB"],MD:["H","hB"],ME:["H","hB","h"],MF:["H","hB"],MG:["H","h"],MH:["h","hb","H","hB"],MK:["H","h","hb","hB"],ML:["H"],MM:["hB","hb","H","h"],MN:["H","h","hb","hB"],MO:["h","hB","hb","H"],MP:["h","hb","H","hB"],MQ:["H","hB"],MR:["h","hB","hb","H"],MS:["H","h","hb","hB"],MT:["H","h"],MU:["H","h"],MV:["H","h"],MW:["h","hb","H","hB"],MX:["h","H","hB","hb"],MY:["hb","hB","h","H"],MZ:["H","hB"],NA:["h","H","hB","hb"],NC:["H","hB"],NE:["H"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NI:["h","H","hB","hb"],NL:["H","hB"],NO:["H","h"],NP:["H","h","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],NZ:["h","hb","H","hB"],OM:["h","hB","hb","H"],PA:["h","H","hB","hb"],PE:["h","H","hB","hb"],PF:["H","h","hB"],PG:["h","H"],PH:["h","hB","hb","H"],PK:["h","hB","H"],PL:["H","h"],PM:["H","hB"],PN:["H","h","hb","hB"],PR:["h","H","hB","hb"],PS:["h","hB","hb","H"],PT:["H","hB"],PW:["h","H"],PY:["h","H","hB","hb"],QA:["h","hB","hb","H"],RE:["H","hB"],RO:["H","hB"],RS:["H","hB","h"],RU:["H"],RW:["H","h"],SA:["h","hB","hb","H"],SB:["h","hb","H","hB"],SC:["H","h","hB"],SD:["h","hB","hb","H"],SE:["H"],SG:["h","hb","H","hB"],SH:["H","h","hb","hB"],SI:["H","hB"],SJ:["H"],SK:["H"],SL:["h","hb","H","hB"],SM:["H","h","hB"],SN:["H","h","hB"],SO:["h","H"],SR:["H","hB"],SS:["h","hb","H","hB"],ST:["H","hB"],SV:["h","H","hB","hb"],SX:["H","h","hb","hB"],SY:["h","hB","hb","H"],SZ:["h","hb","H","hB"],TA:["H","h","hb","hB"],TC:["h","hb","H","hB"],TD:["h","H","hB"],TF:["H","h","hB"],TG:["H","hB"],TH:["H","h"],TJ:["H","h"],TL:["H","hB","hb","h"],TM:["H","h"],TN:["h","hB","hb","H"],TO:["h","H"],TR:["H","hB"],TT:["h","hb","H","hB"],TW:["hB","hb","h","H"],TZ:["hB","hb","H","h"],UA:["H","hB","h"],UG:["hB","hb","H","h"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],UY:["h","H","hB","hb"],UZ:["H","hB","h"],VA:["H","h","hB"],VC:["h","hb","H","hB"],VE:["h","H","hB","hb"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],VN:["H","h"],VU:["h","H"],WF:["H","hB"],WS:["h","H"],XK:["H","hB","h"],YE:["h","hB","hb","H"],YT:["H","hB"],ZA:["H","h","hb","hB"],ZM:["h","hb","H","hB"],ZW:["H","h"],"af-ZA":["H","h","hB","hb"],"ar-001":["h","hB","hb","H"],"ca-ES":["H","h","hB"],"en-001":["h","hb","H","hB"],"en-HK":["h","hb","H","hB"],"en-IL":["H","h","hb","hB"],"en-MY":["h","hb","H","hB"],"es-BR":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"gu-IN":["hB","hb","h","H"],"hi-IN":["hB","h","H"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],"ta-IN":["hB","h","hb","H"],"te-IN":["hB","h","H"],"zu-ZA":["H","hB","hb","h"]};function it(e,t){for(var r="",n=0;n<e.length;n++){var a=e.charAt(n);if(a==="j"){for(var i=0;n+1<e.length&&e.charAt(n+1)===a;)i++,n++;var o=1+(i&1),s=i<2?1:3+(i>>1),u="a",l=ot(t);for((l=="H"||l=="k")&&(s=0);s-- >0;)r+=u;for(;o-- >0;)r=l+r}else a==="J"?r+="H":r+=a}return r}function ot(e){var t=e.hourCycle;if(t===void 0&&e.hourCycles&&e.hourCycles.length&&(t=e.hourCycles[0]),t)switch(t){case"h24":return"k";case"h23":return"H";case"h12":return"h";case"h11":return"K";default:throw new Error("Invalid hourCycle")}var r=e.language,n;r!=="root"&&(n=e.maximize().region);var a=V[n||""]||V[r||""]||V["".concat(r,"-001")]||V["001"];return a[0]}var J,st=new RegExp("^".concat(ge.source,"*")),ut=new RegExp("".concat(ge.source,"*$"));function p(e,t){return{start:e,end:t}}var ht=!!String.prototype.startsWith&&"_a".startsWith("a",1),lt=!!String.fromCodePoint,ft=!!Object.fromEntries,mt=!!String.prototype.codePointAt,ct=!!String.prototype.trimStart,gt=!!String.prototype.trimEnd,pt=!!Number.isSafeInteger,vt=pt?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Q=!0;try{var dt=He("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Q=((J=dt.exec("a"))===null||J===void 0?void 0:J[0])==="a"}catch{Q=!1}var xe=ht?function(t,r,n){return t.startsWith(r,n)}:function(t,r,n){return t.slice(n,n+r.length)===r},Y=lt?String.fromCodePoint:function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var n="",a=t.length,i=0,o;a>i;){if(o=t[i++],o>1114111)throw RangeError(o+" is not a valid code point");n+=o<65536?String.fromCharCode(o):String.fromCharCode(((o-=65536)>>10)+55296,o%1024+56320)}return n},Te=ft?Object.fromEntries:function(t){for(var r={},n=0,a=t;n<a.length;n++){var i=a[n],o=i[0],s=i[1];r[o]=s}return r},Se=mt?function(t,r){return t.codePointAt(r)}:function(t,r){var n=t.length;if(!(r<0||r>=n)){var a=t.charCodeAt(r),i;return a<55296||a>56319||r+1===n||(i=t.charCodeAt(r+1))<56320||i>57343?a:(a-55296<<10)+(i-56320)+65536}},Et=ct?function(t){return t.trimStart()}:function(t){return t.replace(st,"")},bt=gt?function(t){return t.trimEnd()}:function(t){return t.replace(ut,"")};function He(e,t){return new RegExp(e,t)}var $;if(Q){var Ie=He("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");$=function(t,r){var n;Ie.lastIndex=r;var a=Ie.exec(t);return(n=a[1])!==null&&n!==void 0?n:""}}else $=function(t,r){for(var n=[];;){var a=Se(t,r);if(a===void 0||Ne(a)||St(a))break;n.push(a),r+=a>=65536?2:1}return Y.apply(void 0,n)};var yt=function(){function e(t,r){r===void 0&&(r={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!r.ignoreTag,this.locale=r.locale,this.requiresOtherClause=!!r.requiresOtherClause,this.shouldParseSkeletons=!!r.shouldParseSkeletons}return e.prototype.parse=function(){if(this.offset()!==0)throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(t,r,n){for(var a=[];!this.isEOF();){var i=this.char();if(i===123){var o=this.parseArgument(t,n);if(o.err)return o;a.push(o.val)}else{if(i===125&&t>0)break;if(i===35&&(r==="plural"||r==="selectordinal")){var s=this.clonePosition();this.bump(),a.push({type:b.pound,location:p(s,this.clonePosition())})}else if(i===60&&!this.ignoreTag&&this.peek()===47){if(n)break;return this.error(g.UNMATCHED_CLOSING_TAG,p(this.clonePosition(),this.clonePosition()))}else if(i===60&&!this.ignoreTag&&K(this.peek()||0)){var o=this.parseTag(t,r);if(o.err)return o;a.push(o.val)}else{var o=this.parseLiteral(t,r);if(o.err)return o;a.push(o.val)}}}return{val:a,err:null}},e.prototype.parseTag=function(t,r){var n=this.clonePosition();this.bump();var a=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:b.literal,value:"<".concat(a,"/>"),location:p(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(t+1,r,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!K(this.char()))return this.error(g.INVALID_TAG,p(s,this.clonePosition()));var u=this.clonePosition(),l=this.parseTagName();return a!==l?this.error(g.UNMATCHED_CLOSING_TAG,p(u,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:b.tag,value:a,children:o,location:p(n,this.clonePosition())},err:null}:this.error(g.INVALID_TAG,p(s,this.clonePosition())))}else return this.error(g.UNCLOSED_TAG,p(n,this.clonePosition()))}else return this.error(g.INVALID_TAG,p(n,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&Tt(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,r){for(var n=this.clonePosition(),a="";;){var i=this.tryParseQuote(r);if(i){a+=i;continue}var o=this.tryParseUnquoted(t,r);if(o){a+=o;continue}var s=this.tryParseLeftAngleBracket();if(s){a+=s;continue}break}var u=p(n,this.clonePosition());return{val:{type:b.literal,value:a,location:u},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!xt(this.peek()||0))?(this.bump(),"<"):null},e.prototype.tryParseQuote=function(t){if(this.isEOF()||this.char()!==39)return null;switch(this.peek()){case 39:return this.bump(),this.bump(),"'";case 123:case 60:case 62:case 125:break;case 35:if(t==="plural"||t==="selectordinal")break;return null;default:return null}this.bump();var r=[this.char()];for(this.bump();!this.isEOF();){var n=this.char();if(n===39)if(this.peek()===39)r.push(39),this.bump();else{this.bump();break}else r.push(n);this.bump()}return Y.apply(void 0,r)},e.prototype.tryParseUnquoted=function(t,r){if(this.isEOF())return null;var n=this.char();return n===60||n===123||n===35&&(r==="plural"||r==="selectordinal")||n===125&&t>0?null:(this.bump(),Y(n))},e.prototype.parseArgument=function(t,r){var n=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(g.EMPTY_ARGUMENT,p(n,this.clonePosition()));var a=this.parseIdentifierIfPossible().value;if(!a)return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:b.argument,value:a,location:p(n,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition())):this.parseArgumentOptions(t,r,a,n);default:return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),r=this.offset(),n=$(this.message,r),a=r+n.length;this.bumpTo(a);var i=this.clonePosition(),o=p(t,i);return{value:n,location:o}},e.prototype.parseArgumentOptions=function(t,r,n,a){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,u=this.clonePosition();switch(s){case"":return this.error(g.EXPECT_ARGUMENT_TYPE,p(o,u));case"number":case"date":case"time":{this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var h=this.clonePosition(),m=this.parseSimpleArgStyleIfPossible();if(m.err)return m;var c=bt(m.val);if(c.length===0)return this.error(g.EXPECT_ARGUMENT_STYLE,p(this.clonePosition(),this.clonePosition()));var y=p(h,this.clonePosition());l={style:c,styleLocation:y}}var x=this.tryParseArgumentClose(a);if(x.err)return x;var d=p(a,this.clonePosition());if(l&&xe(l==null?void 0:l.style,"::",0)){var v=Et(l.style.slice(2));if(s==="number"){var m=this.parseNumberSkeletonFromString(v,l.styleLocation);return m.err?m:{val:{type:b.number,value:n,location:d,style:m.val},err:null}}else{if(v.length===0)return this.error(g.EXPECT_DATE_TIME_SKELETON,d);var E=v;this.locale&&(E=it(v,this.locale));var c={type:F.dateTime,pattern:E,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?$e(E):{}},T=s==="date"?b.date:b.time;return{val:{type:T,value:n,location:d,style:c},err:null}}}return{val:{type:s==="number"?b.number:s==="date"?b.date:b.time,value:n,location:d,style:(i=l==null?void 0:l.style)!==null&&i!==void 0?i:null},err:null}}case"plural":case"selectordinal":case"select":{var S=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS,p(S,f({},S)));this.bumpSpace();var U=this.parseIdentifierIfPossible(),D=0;if(s!=="select"&&U.value==="offset"){if(!this.bumpIf(":"))return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,p(this.clonePosition(),this.clonePosition()));this.bumpSpace();var m=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(m.err)return m;this.bumpSpace(),U=this.parseIdentifierIfPossible(),D=m.val}var W=this.tryParsePluralOrSelectOptions(t,s,r,U);if(W.err)return W;var x=this.tryParseArgumentClose(a);if(x.err)return x;var Ve=p(a,this.clonePosition());return s==="select"?{val:{type:b.select,value:n,options:Te(W.val),location:Ve},err:null}:{val:{type:b.plural,value:n,options:Te(W.val),offset:D,pluralType:s==="plural"?"cardinal":"ordinal",location:Ve},err:null}}default:return this.error(g.INVALID_ARGUMENT_TYPE,p(o,u))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,r=this.clonePosition();!this.isEOF();){var n=this.char();switch(n){case 39:{this.bump();var a=this.clonePosition();if(!this.bumpUntil("'"))return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,p(a,this.clonePosition()));this.bump();break}case 123:{t+=1,this.bump();break}case 125:{if(t>0)t-=1;else return{val:this.message.slice(r.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(r.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,r){var n=[];try{n=et(t)}catch{return this.error(g.INVALID_NUMBER_SKELETON,r)}return{val:{type:F.number,tokens:n,location:r,parsedOptions:this.shouldParseSkeletons?at(n):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,r,n,a){for(var i,o=!1,s=[],u=new Set,l=a.value,h=a.location;;){if(l.length===0){var m=this.clonePosition();if(r!=="select"&&this.bumpIf("=")){var c=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR,g.INVALID_PLURAL_ARGUMENT_SELECTOR);if(c.err)return c;h=p(m,this.clonePosition()),l=this.message.slice(m.offset,this.offset())}else break}if(u.has(l))return this.error(r==="select"?g.DUPLICATE_SELECT_ARGUMENT_SELECTOR:g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,h);l==="other"&&(o=!0),this.bumpSpace();var y=this.clonePosition();if(!this.bumpIf("{"))return this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,p(this.clonePosition(),this.clonePosition()));var x=this.parseMessage(t+1,r,n);if(x.err)return x;var d=this.tryParseArgumentClose(y);if(d.err)return d;s.push([l,{value:x.val,location:p(y,this.clonePosition())}]),u.add(l),this.bumpSpace(),i=this.parseIdentifierIfPossible(),l=i.value,h=i.location}return s.length===0?this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR:g.EXPECT_PLURAL_ARGUMENT_SELECTOR,p(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(g.MISSING_OTHER_CLAUSE,p(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(t,r){var n=1,a=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-1);for(var i=!1,o=0;!this.isEOF();){var s=this.char();if(s>=48&&s<=57)i=!0,o=o*10+(s-48),this.bump();else break}var u=p(a,this.clonePosition());return i?(o*=n,vt(o)?{val:o,err:null}:this.error(r,u)):this.error(t,u)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){return{offset:this.position.offset,line:this.position.line,column:this.position.column}},e.prototype.char=function(){var t=this.position.offset;if(t>=this.message.length)throw Error("out of bound");var r=Se(this.message,t);if(r===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return r},e.prototype.error=function(t,r){return{val:null,err:{kind:t,message:this.message,location:r}}},e.prototype.bump=function(){if(!this.isEOF()){var t=this.char();t===10?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,this.position.offset+=t<65536?1:2)}},e.prototype.bumpIf=function(t){if(xe(this.message,t,this.offset())){for(var r=0;r<t.length;r++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var r=this.offset(),n=this.message.indexOf(t,r);return n>=0?(this.bumpTo(n),!0):(this.bumpTo(this.message.length),!1)},e.prototype.bumpTo=function(t){if(this.offset()>t)throw Error("targetOffset ".concat(t," must be greater than or equal to the current offset ").concat(this.offset()));for(t=Math.min(t,this.message.length);;){var r=this.offset();if(r===t)break;if(r>t)throw Error("targetOffset ".concat(t," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},e.prototype.bumpSpace=function(){for(;!this.isEOF()&&Ne(this.char());)this.bump()},e.prototype.peek=function(){if(this.isEOF())return null;var t=this.char(),r=this.offset(),n=this.message.charCodeAt(r+(t>=65536?2:1));return n??null},e}();function K(e){return e>=97&&e<=122||e>=65&&e<=90}function xt(e){return K(e)||e===47}function Tt(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 Ne(e){return e>=9&&e<=13||e===32||e===133||e>=8206&&e<=8207||e===8232||e===8233}function St(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 r in t.options)delete t.options[r].location,ee(t.options[r].value);else se(t)&&ce(t.style)||(ue(t)||he(t))&&q(t.style)?delete t.style.location:me(t)&&ee(t.children)})}function Ht(e,t){t===void 0&&(t={}),t=f({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var r=new yt(e,t).parse();if(r.err){var n=SyntaxError(g[r.err.kind]);throw n.location=r.err.location,n.originalMessage=r.err.message,n}return t!=null&&t.captureLocation||ee(r.val),r.val}var L;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(L||(L={}));var R=function(e){_(t,e);function t(r,n,a){var i=e.call(this,r)||this;return i.code=n,i.originalMessage=a,i}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),Ae=function(e){_(t,e);function t(r,n,a,i){return e.call(this,'Invalid values for "'.concat(r,'": "').concat(n,'". Options are "').concat(Object.keys(a).join('", "'),'"'),L.INVALID_VALUE,i)||this}return t}(R),It=function(e){_(t,e);function t(r,n,a){return e.call(this,'Value for "'.concat(r,'" must be of type ').concat(n),L.INVALID_VALUE,a)||this}return t}(R),Nt=function(e){_(t,e);function t(r,n){return e.call(this,'The intl string context variable "'.concat(r,'" was not provided to the string "').concat(n,'"'),L.MISSING_VALUE,n)||this}return t}(R),N;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(N||(N={}));function At(e){return e.length<2?e:e.reduce(function(t,r){var n=t[t.length-1];return!n||n.type!==N.literal||r.type!==N.literal?t.push(r):n.value+=r.value,t},[])}function Bt(e){return typeof e=="function"}function k(e,t,r,n,a,i,o){if(e.length===1&&oe(e[0]))return[{type:N.literal,value:e[0].value}];for(var s=[],u=0,l=e;u<l.length;u++){var h=l[u];if(oe(h)){s.push({type:N.literal,value:h.value});continue}if(Qe(h)){typeof i=="number"&&s.push({type:N.literal,value:r.getNumberFormat(t).format(i)});continue}var m=h.value;if(!(a&&m in a))throw new Nt(m,o);var c=a[m];if(Je(h)){(!c||typeof c=="string"||typeof c=="number")&&(c=typeof c=="string"||typeof c=="number"?String(c):""),s.push({type:typeof c=="string"?N.literal:N.object,value:c});continue}if(ue(h)){var y=typeof h.style=="string"?n.date[h.style]:q(h.style)?h.style.parsedOptions:void 0;s.push({type:N.literal,value:r.getDateTimeFormat(t,y).format(c)});continue}if(he(h)){var y=typeof h.style=="string"?n.time[h.style]:q(h.style)?h.style.parsedOptions:n.time.medium;s.push({type:N.literal,value:r.getDateTimeFormat(t,y).format(c)});continue}if(se(h)){var y=typeof h.style=="string"?n.number[h.style]:ce(h.style)?h.style.parsedOptions:void 0;y&&y.scale&&(c=c*(y.scale||1)),s.push({type:N.literal,value:r.getNumberFormat(t,y).format(c)});continue}if(me(h)){var x=h.children,d=h.value,v=a[d];if(!Bt(v))throw new It(d,"function",o);var E=k(x,t,r,n,a,i),T=v(E.map(function(D){return D.value}));Array.isArray(T)||(T=[T]),s.push.apply(s,T.map(function(D){return{type:typeof D=="string"?N.literal:N.object,value:D}}))}if(le(h)){var S=h.options[c]||h.options.other;if(!S)throw new Ae(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a));continue}if(fe(h)){var S=h.options["=".concat(c)];if(!S){if(!Intl.PluralRules)throw new R(`Intl.PluralRules is not available in this environment.
1
+ (function(P,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],w):(P=typeof globalThis<"u"?globalThis:P||self,w(P["kong-ui-public-i18n"]={},P.Vue))})(this,(function(P,w){"use strict";var Z=function(e,t){return Z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(r[a]=n[a])},Z(e,t)};function _(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");Z(e,t);function r(){this.constructor=e}e.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}var f=function(){return f=Object.assign||function(t){for(var r,n=1,a=arguments.length;n<a;n++){r=arguments[n];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(t[i]=r[i])}return t},f.apply(this,arguments)};function ke(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r}function A(e,t,r){if(r||arguments.length===2)for(var n=0,a=t.length,i;n<a;n++)(i||!(n in t))&&(i||(i=Array.prototype.slice.call(t,0,n)),i[n]=t[n]);return e.concat(i||Array.prototype.slice.call(t))}typeof SuppressedError=="function"&&SuppressedError;function H(e,t){var r=t&&t.cache?t.cache:qe,n=t&&t.serializer?t.serializer:ze,a=t&&t.strategy?t.strategy:We;return a(e,{cache:r,serializer:n})}function je(e){return e==null||typeof e=="number"||typeof e=="boolean"}function Xe(e,t,r,n){var a=je(n)?n:r(n),i=t.get(a);return typeof i>"u"&&(i=e.call(this,n),t.set(a,i)),i}function ae(e,t,r){var n=Array.prototype.slice.call(arguments,3),a=r(n),i=t.get(a);return typeof i>"u"&&(i=e.apply(this,n),t.set(a,i)),i}function ie(e,t,r,n,a){return r.bind(t,e,n,a)}function We(e,t){var r=e.length===1?Xe:ae;return ie(e,this,r,t.cache.create(),t.serializer)}function Ze(e,t){return ie(e,this,ae,t.cache.create(),t.serializer)}var ze=function(){return JSON.stringify(arguments)};function z(){this.cache=Object.create(null)}z.prototype.get=function(e){return this.cache[e]},z.prototype.set=function(e,t){this.cache[e]=t};var qe={create:function(){return new z}},I={variadic:Ze},g;(function(e){e[e.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",e[e.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",e[e.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",e[e.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",e[e.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",e[e.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",e[e.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",e[e.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",e[e.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",e[e.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",e[e.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",e[e.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",e[e.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",e[e.INVALID_TAG=23]="INVALID_TAG",e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"})(g||(g={}));var b;(function(e){e[e.literal=0]="literal",e[e.argument=1]="argument",e[e.number=2]="number",e[e.date=3]="date",e[e.time=4]="time",e[e.select=5]="select",e[e.plural=6]="plural",e[e.pound=7]="pound",e[e.tag=8]="tag"})(b||(b={}));var F;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(F||(F={}));function oe(e){return e.type===b.literal}function Je(e){return e.type===b.argument}function se(e){return e.type===b.number}function ue(e){return e.type===b.date}function he(e){return e.type===b.time}function le(e){return e.type===b.select}function fe(e){return e.type===b.plural}function Qe(e){return e.type===b.pound}function me(e){return e.type===b.tag}function ce(e){return!!(e&&typeof e=="object"&&e.type===F.number)}function q(e){return!!(e&&typeof e=="object"&&e.type===F.dateTime)}var ge=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,Ye=/(?:[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 $e(e){var t={};return e.replace(Ye,function(r){var n=r.length;switch(r[0]){case"G":t.era=n===4?"long":n===5?"narrow":"short";break;case"y":t.year=n===2?"2-digit":"numeric";break;case"Y":case"u":case"U":case"r":throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");case"M":case"L":t.month=["numeric","2-digit","short","long","narrow"][n-1];break;case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":t.day=["numeric","2-digit"][n-1];break;case"D":case"F":case"g":throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");case"E":t.weekday=n===4?"long":n===5?"narrow":"short";break;case"e":if(n<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"c":if(n<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"a":t.hour12=!0;break;case"b":case"B":throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");case"h":t.hourCycle="h12",t.hour=["numeric","2-digit"][n-1];break;case"H":t.hourCycle="h23",t.hour=["numeric","2-digit"][n-1];break;case"K":t.hourCycle="h11",t.hour=["numeric","2-digit"][n-1];break;case"k":t.hourCycle="h24",t.hour=["numeric","2-digit"][n-1];break;case"j":case"J":case"C":throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");case"m":t.minute=["numeric","2-digit"][n-1];break;case"s":t.second=["numeric","2-digit"][n-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");case"z":t.timeZoneName=n<4?"short":"long";break;case"Z":case"O":case"v":case"V":case"X":case"x":throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""}),t}var Ke=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function et(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(Ke).filter(function(c){return c.length>0}),r=[],n=0,a=t;n<a.length;n++){var i=a[n],o=i.split("/");if(o.length===0)throw new Error("Invalid number skeleton");for(var s=o[0],u=o.slice(1),l=0,h=u;l<h.length;l++){var m=h[l];if(m.length===0)throw new Error("Invalid number skeleton")}r.push({stem:s,options:u})}return r}function tt(e){return e.replace(/^(.*?)-/,"")}var pe=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,ve=/^(@+)?(\+|#+)?[rs]?$/g,rt=/(\*)(0+)|(#+)(0+)|(0+)/g,de=/^(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(r,n,a){return typeof a!="string"?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):a==="+"?t.minimumSignificantDigits=n.length:n[0]==="#"?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+(typeof a=="string"?a.length:0)),""}),t}function be(e){switch(e){case"sign-auto":return{signDisplay:"auto"};case"sign-accounting":case"()":return{currencySign:"accounting"};case"sign-always":case"+!":return{signDisplay:"always"};case"sign-accounting-always":case"()!":return{signDisplay:"always",currencySign:"accounting"};case"sign-except-zero":case"+?":return{signDisplay:"exceptZero"};case"sign-accounting-except-zero":case"()?":return{signDisplay:"exceptZero",currencySign:"accounting"};case"sign-never":case"+_":return{signDisplay:"never"}}}function nt(e){var t;if(e[0]==="E"&&e[1]==="E"?(t={notation:"engineering"},e=e.slice(2)):e[0]==="E"&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if(r==="+!"?(t.signDisplay="always",e=e.slice(2)):r==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!de.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function ye(e){var t={},r=be(e);return r||t}function at(e){for(var t={},r=0,n=e;r<n.length;r++){var a=n[r];switch(a.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=a.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=tt(a.options[0]);continue;case"compact-short":case"K":t.notation="compact",t.compactDisplay="short";continue;case"compact-long":case"KK":t.notation="compact",t.compactDisplay="long";continue;case"scientific":t=f(f(f({},t),{notation:"scientific"}),a.options.reduce(function(u,l){return f(f({},u),ye(l))},{}));continue;case"engineering":t=f(f(f({},t),{notation:"engineering"}),a.options.reduce(function(u,l){return f(f({},u),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(a.options[0]);continue;case"rounding-mode-floor":t.roundingMode="floor";continue;case"rounding-mode-ceiling":t.roundingMode="ceil";continue;case"rounding-mode-down":t.roundingMode="trunc";continue;case"rounding-mode-up":t.roundingMode="expand";continue;case"rounding-mode-half-even":t.roundingMode="halfEven";continue;case"rounding-mode-half-down":t.roundingMode="halfTrunc";continue;case"rounding-mode-half-up":t.roundingMode="halfExpand";continue;case"integer-width":if(a.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");a.options[0].replace(rt,function(u,l,h,m,c,y){if(l)t.minimumIntegerDigits=h.length;else{if(m&&c)throw new Error("We currently do not support maximum integer digits");if(y)throw new Error("We currently do not support exact integer digits")}return""});continue}if(de.test(a.stem)){t.minimumIntegerDigits=a.stem.length;continue}if(pe.test(a.stem)){if(a.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");a.stem.replace(pe,function(u,l,h,m,c,y){return h==="*"?t.minimumFractionDigits=l.length:m&&m[0]==="#"?t.maximumFractionDigits=m.length:c&&y?(t.minimumFractionDigits=c.length,t.maximumFractionDigits=c.length+y.length):(t.minimumFractionDigits=l.length,t.maximumFractionDigits=l.length),""});var i=a.options[0];i==="w"?t=f(f({},t),{trailingZeroDisplay:"stripIfInteger"}):i&&(t=f(f({},t),Ee(i)));continue}if(ve.test(a.stem)){t=f(f({},t),Ee(a.stem));continue}var o=be(a.stem);o&&(t=f(f({},t),o));var s=nt(a.stem);s&&(t=f(f({},t),s))}return t}var V={"001":["H","h"],419:["h","H","hB","hb"],AC:["H","h","hb","hB"],AD:["H","hB"],AE:["h","hB","hb","H"],AF:["H","hb","hB","h"],AG:["h","hb","H","hB"],AI:["H","h","hb","hB"],AL:["h","H","hB"],AM:["H","hB"],AO:["H","hB"],AR:["h","H","hB","hb"],AS:["h","H"],AT:["H","hB"],AU:["h","hb","H","hB"],AW:["H","hB"],AX:["H"],AZ:["H","hB","h"],BA:["H","hB","h"],BB:["h","hb","H","hB"],BD:["h","hB","H"],BE:["H","hB"],BF:["H","hB"],BG:["H","hB","h"],BH:["h","hB","hb","H"],BI:["H","h"],BJ:["H","hB"],BL:["H","hB"],BM:["h","hb","H","hB"],BN:["hb","hB","h","H"],BO:["h","H","hB","hb"],BQ:["H"],BR:["H","hB"],BS:["h","hb","H","hB"],BT:["h","H"],BW:["H","h","hb","hB"],BY:["H","h"],BZ:["H","h","hb","hB"],CA:["h","hb","H","hB"],CC:["H","h","hb","hB"],CD:["hB","H"],CF:["H","h","hB"],CG:["H","hB"],CH:["H","hB","h"],CI:["H","hB"],CK:["H","h","hb","hB"],CL:["h","H","hB","hb"],CM:["H","h","hB"],CN:["H","hB","hb","h"],CO:["h","H","hB","hb"],CP:["H"],CR:["h","H","hB","hb"],CU:["h","H","hB","hb"],CV:["H","hB"],CW:["H","hB"],CX:["H","h","hb","hB"],CY:["h","H","hb","hB"],CZ:["H"],DE:["H","hB"],DG:["H","h","hb","hB"],DJ:["h","H"],DK:["H"],DM:["h","hb","H","hB"],DO:["h","H","hB","hb"],DZ:["h","hB","hb","H"],EA:["H","h","hB","hb"],EC:["h","H","hB","hb"],EE:["H","hB"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],ER:["h","H"],ES:["H","hB","h","hb"],ET:["hB","hb","h","H"],FI:["H"],FJ:["h","hb","H","hB"],FK:["H","h","hb","hB"],FM:["h","hb","H","hB"],FO:["H","h"],FR:["H","hB"],GA:["H","hB"],GB:["H","h","hb","hB"],GD:["h","hb","H","hB"],GE:["H","hB","h"],GF:["H","hB"],GG:["H","h","hb","hB"],GH:["h","H"],GI:["H","h","hb","hB"],GL:["H","h"],GM:["h","hb","H","hB"],GN:["H","hB"],GP:["H","hB"],GQ:["H","hB","h","hb"],GR:["h","H","hb","hB"],GT:["h","H","hB","hb"],GU:["h","hb","H","hB"],GW:["H","hB"],GY:["h","hb","H","hB"],HK:["h","hB","hb","H"],HN:["h","H","hB","hb"],HR:["H","hB"],HU:["H","h"],IC:["H","h","hB","hb"],ID:["H"],IE:["H","h","hb","hB"],IL:["H","hB"],IM:["H","h","hb","hB"],IN:["h","H"],IO:["H","h","hb","hB"],IQ:["h","hB","hb","H"],IR:["hB","H"],IS:["H"],IT:["H","hB"],JE:["H","h","hb","hB"],JM:["h","hb","H","hB"],JO:["h","hB","hb","H"],JP:["H","K","h"],KE:["hB","hb","H","h"],KG:["H","h","hB","hb"],KH:["hB","h","H","hb"],KI:["h","hb","H","hB"],KM:["H","h","hB","hb"],KN:["h","hb","H","hB"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],KW:["h","hB","hb","H"],KY:["h","hb","H","hB"],KZ:["H","hB"],LA:["H","hb","hB","h"],LB:["h","hB","hb","H"],LC:["h","hb","H","hB"],LI:["H","hB","h"],LK:["H","h","hB","hb"],LR:["h","hb","H","hB"],LS:["h","H"],LT:["H","h","hb","hB"],LU:["H","h","hB"],LV:["H","hB","hb","h"],LY:["h","hB","hb","H"],MA:["H","h","hB","hb"],MC:["H","hB"],MD:["H","hB"],ME:["H","hB","h"],MF:["H","hB"],MG:["H","h"],MH:["h","hb","H","hB"],MK:["H","h","hb","hB"],ML:["H"],MM:["hB","hb","H","h"],MN:["H","h","hb","hB"],MO:["h","hB","hb","H"],MP:["h","hb","H","hB"],MQ:["H","hB"],MR:["h","hB","hb","H"],MS:["H","h","hb","hB"],MT:["H","h"],MU:["H","h"],MV:["H","h"],MW:["h","hb","H","hB"],MX:["h","H","hB","hb"],MY:["hb","hB","h","H"],MZ:["H","hB"],NA:["h","H","hB","hb"],NC:["H","hB"],NE:["H"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NI:["h","H","hB","hb"],NL:["H","hB"],NO:["H","h"],NP:["H","h","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],NZ:["h","hb","H","hB"],OM:["h","hB","hb","H"],PA:["h","H","hB","hb"],PE:["h","H","hB","hb"],PF:["H","h","hB"],PG:["h","H"],PH:["h","hB","hb","H"],PK:["h","hB","H"],PL:["H","h"],PM:["H","hB"],PN:["H","h","hb","hB"],PR:["h","H","hB","hb"],PS:["h","hB","hb","H"],PT:["H","hB"],PW:["h","H"],PY:["h","H","hB","hb"],QA:["h","hB","hb","H"],RE:["H","hB"],RO:["H","hB"],RS:["H","hB","h"],RU:["H"],RW:["H","h"],SA:["h","hB","hb","H"],SB:["h","hb","H","hB"],SC:["H","h","hB"],SD:["h","hB","hb","H"],SE:["H"],SG:["h","hb","H","hB"],SH:["H","h","hb","hB"],SI:["H","hB"],SJ:["H"],SK:["H"],SL:["h","hb","H","hB"],SM:["H","h","hB"],SN:["H","h","hB"],SO:["h","H"],SR:["H","hB"],SS:["h","hb","H","hB"],ST:["H","hB"],SV:["h","H","hB","hb"],SX:["H","h","hb","hB"],SY:["h","hB","hb","H"],SZ:["h","hb","H","hB"],TA:["H","h","hb","hB"],TC:["h","hb","H","hB"],TD:["h","H","hB"],TF:["H","h","hB"],TG:["H","hB"],TH:["H","h"],TJ:["H","h"],TL:["H","hB","hb","h"],TM:["H","h"],TN:["h","hB","hb","H"],TO:["h","H"],TR:["H","hB"],TT:["h","hb","H","hB"],TW:["hB","hb","h","H"],TZ:["hB","hb","H","h"],UA:["H","hB","h"],UG:["hB","hb","H","h"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],UY:["h","H","hB","hb"],UZ:["H","hB","h"],VA:["H","h","hB"],VC:["h","hb","H","hB"],VE:["h","H","hB","hb"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],VN:["H","h"],VU:["h","H"],WF:["H","hB"],WS:["h","H"],XK:["H","hB","h"],YE:["h","hB","hb","H"],YT:["H","hB"],ZA:["H","h","hb","hB"],ZM:["h","hb","H","hB"],ZW:["H","h"],"af-ZA":["H","h","hB","hb"],"ar-001":["h","hB","hb","H"],"ca-ES":["H","h","hB"],"en-001":["h","hb","H","hB"],"en-HK":["h","hb","H","hB"],"en-IL":["H","h","hb","hB"],"en-MY":["h","hb","H","hB"],"es-BR":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"gu-IN":["hB","hb","h","H"],"hi-IN":["hB","h","H"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],"ta-IN":["hB","h","hb","H"],"te-IN":["hB","h","H"],"zu-ZA":["H","hB","hb","h"]};function it(e,t){for(var r="",n=0;n<e.length;n++){var a=e.charAt(n);if(a==="j"){for(var i=0;n+1<e.length&&e.charAt(n+1)===a;)i++,n++;var o=1+(i&1),s=i<2?1:3+(i>>1),u="a",l=ot(t);for((l=="H"||l=="k")&&(s=0);s-- >0;)r+=u;for(;o-- >0;)r=l+r}else a==="J"?r+="H":r+=a}return r}function ot(e){var t=e.hourCycle;if(t===void 0&&e.hourCycles&&e.hourCycles.length&&(t=e.hourCycles[0]),t)switch(t){case"h24":return"k";case"h23":return"H";case"h12":return"h";case"h11":return"K";default:throw new Error("Invalid hourCycle")}var r=e.language,n;r!=="root"&&(n=e.maximize().region);var a=V[n||""]||V[r||""]||V["".concat(r,"-001")]||V["001"];return a[0]}var J,st=new RegExp("^".concat(ge.source,"*")),ut=new RegExp("".concat(ge.source,"*$"));function p(e,t){return{start:e,end:t}}var ht=!!String.prototype.startsWith&&"_a".startsWith("a",1),lt=!!String.fromCodePoint,ft=!!Object.fromEntries,mt=!!String.prototype.codePointAt,ct=!!String.prototype.trimStart,gt=!!String.prototype.trimEnd,pt=!!Number.isSafeInteger,vt=pt?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},Q=!0;try{var dt=He("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");Q=((J=dt.exec("a"))===null||J===void 0?void 0:J[0])==="a"}catch{Q=!1}var xe=ht?function(t,r,n){return t.startsWith(r,n)}:function(t,r,n){return t.slice(n,n+r.length)===r},Y=lt?String.fromCodePoint:function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var n="",a=t.length,i=0,o;a>i;){if(o=t[i++],o>1114111)throw RangeError(o+" is not a valid code point");n+=o<65536?String.fromCharCode(o):String.fromCharCode(((o-=65536)>>10)+55296,o%1024+56320)}return n},Te=ft?Object.fromEntries:function(t){for(var r={},n=0,a=t;n<a.length;n++){var i=a[n],o=i[0],s=i[1];r[o]=s}return r},Se=mt?function(t,r){return t.codePointAt(r)}:function(t,r){var n=t.length;if(!(r<0||r>=n)){var a=t.charCodeAt(r),i;return a<55296||a>56319||r+1===n||(i=t.charCodeAt(r+1))<56320||i>57343?a:(a-55296<<10)+(i-56320)+65536}},Et=ct?function(t){return t.trimStart()}:function(t){return t.replace(st,"")},bt=gt?function(t){return t.trimEnd()}:function(t){return t.replace(ut,"")};function He(e,t){return new RegExp(e,t)}var $;if(Q){var Ie=He("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");$=function(t,r){var n;Ie.lastIndex=r;var a=Ie.exec(t);return(n=a[1])!==null&&n!==void 0?n:""}}else $=function(t,r){for(var n=[];;){var a=Se(t,r);if(a===void 0||Ne(a)||St(a))break;n.push(a),r+=a>=65536?2:1}return Y.apply(void 0,n)};var yt=(function(){function e(t,r){r===void 0&&(r={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!r.ignoreTag,this.locale=r.locale,this.requiresOtherClause=!!r.requiresOtherClause,this.shouldParseSkeletons=!!r.shouldParseSkeletons}return e.prototype.parse=function(){if(this.offset()!==0)throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(t,r,n){for(var a=[];!this.isEOF();){var i=this.char();if(i===123){var o=this.parseArgument(t,n);if(o.err)return o;a.push(o.val)}else{if(i===125&&t>0)break;if(i===35&&(r==="plural"||r==="selectordinal")){var s=this.clonePosition();this.bump(),a.push({type:b.pound,location:p(s,this.clonePosition())})}else if(i===60&&!this.ignoreTag&&this.peek()===47){if(n)break;return this.error(g.UNMATCHED_CLOSING_TAG,p(this.clonePosition(),this.clonePosition()))}else if(i===60&&!this.ignoreTag&&K(this.peek()||0)){var o=this.parseTag(t,r);if(o.err)return o;a.push(o.val)}else{var o=this.parseLiteral(t,r);if(o.err)return o;a.push(o.val)}}}return{val:a,err:null}},e.prototype.parseTag=function(t,r){var n=this.clonePosition();this.bump();var a=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:b.literal,value:"<".concat(a,"/>"),location:p(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(t+1,r,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!K(this.char()))return this.error(g.INVALID_TAG,p(s,this.clonePosition()));var u=this.clonePosition(),l=this.parseTagName();return a!==l?this.error(g.UNMATCHED_CLOSING_TAG,p(u,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:b.tag,value:a,children:o,location:p(n,this.clonePosition())},err:null}:this.error(g.INVALID_TAG,p(s,this.clonePosition())))}else return this.error(g.UNCLOSED_TAG,p(n,this.clonePosition()))}else return this.error(g.INVALID_TAG,p(n,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&Tt(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,r){for(var n=this.clonePosition(),a="";;){var i=this.tryParseQuote(r);if(i){a+=i;continue}var o=this.tryParseUnquoted(t,r);if(o){a+=o;continue}var s=this.tryParseLeftAngleBracket();if(s){a+=s;continue}break}var u=p(n,this.clonePosition());return{val:{type:b.literal,value:a,location:u},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!xt(this.peek()||0))?(this.bump(),"<"):null},e.prototype.tryParseQuote=function(t){if(this.isEOF()||this.char()!==39)return null;switch(this.peek()){case 39:return this.bump(),this.bump(),"'";case 123:case 60:case 62:case 125:break;case 35:if(t==="plural"||t==="selectordinal")break;return null;default:return null}this.bump();var r=[this.char()];for(this.bump();!this.isEOF();){var n=this.char();if(n===39)if(this.peek()===39)r.push(39),this.bump();else{this.bump();break}else r.push(n);this.bump()}return Y.apply(void 0,r)},e.prototype.tryParseUnquoted=function(t,r){if(this.isEOF())return null;var n=this.char();return n===60||n===123||n===35&&(r==="plural"||r==="selectordinal")||n===125&&t>0?null:(this.bump(),Y(n))},e.prototype.parseArgument=function(t,r){var n=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(g.EMPTY_ARGUMENT,p(n,this.clonePosition()));var a=this.parseIdentifierIfPossible().value;if(!a)return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:b.argument,value:a,location:p(n,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(n,this.clonePosition())):this.parseArgumentOptions(t,r,a,n);default:return this.error(g.MALFORMED_ARGUMENT,p(n,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),r=this.offset(),n=$(this.message,r),a=r+n.length;this.bumpTo(a);var i=this.clonePosition(),o=p(t,i);return{value:n,location:o}},e.prototype.parseArgumentOptions=function(t,r,n,a){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,u=this.clonePosition();switch(s){case"":return this.error(g.EXPECT_ARGUMENT_TYPE,p(o,u));case"number":case"date":case"time":{this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var h=this.clonePosition(),m=this.parseSimpleArgStyleIfPossible();if(m.err)return m;var c=bt(m.val);if(c.length===0)return this.error(g.EXPECT_ARGUMENT_STYLE,p(this.clonePosition(),this.clonePosition()));var y=p(h,this.clonePosition());l={style:c,styleLocation:y}}var x=this.tryParseArgumentClose(a);if(x.err)return x;var d=p(a,this.clonePosition());if(l&&xe(l==null?void 0:l.style,"::",0)){var v=Et(l.style.slice(2));if(s==="number"){var m=this.parseNumberSkeletonFromString(v,l.styleLocation);return m.err?m:{val:{type:b.number,value:n,location:d,style:m.val},err:null}}else{if(v.length===0)return this.error(g.EXPECT_DATE_TIME_SKELETON,d);var E=v;this.locale&&(E=it(v,this.locale));var c={type:F.dateTime,pattern:E,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?$e(E):{}},T=s==="date"?b.date:b.time;return{val:{type:T,value:n,location:d,style:c},err:null}}}return{val:{type:s==="number"?b.number:s==="date"?b.date:b.time,value:n,location:d,style:(i=l==null?void 0:l.style)!==null&&i!==void 0?i:null},err:null}}case"plural":case"selectordinal":case"select":{var S=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(g.EXPECT_SELECT_ARGUMENT_OPTIONS,p(S,f({},S)));this.bumpSpace();var U=this.parseIdentifierIfPossible(),D=0;if(s!=="select"&&U.value==="offset"){if(!this.bumpIf(":"))return this.error(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,p(this.clonePosition(),this.clonePosition()));this.bumpSpace();var m=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,g.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(m.err)return m;this.bumpSpace(),U=this.parseIdentifierIfPossible(),D=m.val}var W=this.tryParsePluralOrSelectOptions(t,s,r,U);if(W.err)return W;var x=this.tryParseArgumentClose(a);if(x.err)return x;var Ve=p(a,this.clonePosition());return s==="select"?{val:{type:b.select,value:n,options:Te(W.val),location:Ve},err:null}:{val:{type:b.plural,value:n,options:Te(W.val),offset:D,pluralType:s==="plural"?"cardinal":"ordinal",location:Ve},err:null}}default:return this.error(g.INVALID_ARGUMENT_TYPE,p(o,u))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(g.EXPECT_ARGUMENT_CLOSING_BRACE,p(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,r=this.clonePosition();!this.isEOF();){var n=this.char();switch(n){case 39:{this.bump();var a=this.clonePosition();if(!this.bumpUntil("'"))return this.error(g.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,p(a,this.clonePosition()));this.bump();break}case 123:{t+=1,this.bump();break}case 125:{if(t>0)t-=1;else return{val:this.message.slice(r.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(r.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,r){var n=[];try{n=et(t)}catch{return this.error(g.INVALID_NUMBER_SKELETON,r)}return{val:{type:F.number,tokens:n,location:r,parsedOptions:this.shouldParseSkeletons?at(n):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,r,n,a){for(var i,o=!1,s=[],u=new Set,l=a.value,h=a.location;;){if(l.length===0){var m=this.clonePosition();if(r!=="select"&&this.bumpIf("=")){var c=this.tryParseDecimalInteger(g.EXPECT_PLURAL_ARGUMENT_SELECTOR,g.INVALID_PLURAL_ARGUMENT_SELECTOR);if(c.err)return c;h=p(m,this.clonePosition()),l=this.message.slice(m.offset,this.offset())}else break}if(u.has(l))return this.error(r==="select"?g.DUPLICATE_SELECT_ARGUMENT_SELECTOR:g.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,h);l==="other"&&(o=!0),this.bumpSpace();var y=this.clonePosition();if(!this.bumpIf("{"))return this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:g.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,p(this.clonePosition(),this.clonePosition()));var x=this.parseMessage(t+1,r,n);if(x.err)return x;var d=this.tryParseArgumentClose(y);if(d.err)return d;s.push([l,{value:x.val,location:p(y,this.clonePosition())}]),u.add(l),this.bumpSpace(),i=this.parseIdentifierIfPossible(),l=i.value,h=i.location}return s.length===0?this.error(r==="select"?g.EXPECT_SELECT_ARGUMENT_SELECTOR:g.EXPECT_PLURAL_ARGUMENT_SELECTOR,p(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(g.MISSING_OTHER_CLAUSE,p(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(t,r){var n=1,a=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-1);for(var i=!1,o=0;!this.isEOF();){var s=this.char();if(s>=48&&s<=57)i=!0,o=o*10+(s-48),this.bump();else break}var u=p(a,this.clonePosition());return i?(o*=n,vt(o)?{val:o,err:null}:this.error(r,u)):this.error(t,u)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){return{offset:this.position.offset,line:this.position.line,column:this.position.column}},e.prototype.char=function(){var t=this.position.offset;if(t>=this.message.length)throw Error("out of bound");var r=Se(this.message,t);if(r===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return r},e.prototype.error=function(t,r){return{val:null,err:{kind:t,message:this.message,location:r}}},e.prototype.bump=function(){if(!this.isEOF()){var t=this.char();t===10?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,this.position.offset+=t<65536?1:2)}},e.prototype.bumpIf=function(t){if(xe(this.message,t,this.offset())){for(var r=0;r<t.length;r++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var r=this.offset(),n=this.message.indexOf(t,r);return n>=0?(this.bumpTo(n),!0):(this.bumpTo(this.message.length),!1)},e.prototype.bumpTo=function(t){if(this.offset()>t)throw Error("targetOffset ".concat(t," must be greater than or equal to the current offset ").concat(this.offset()));for(t=Math.min(t,this.message.length);;){var r=this.offset();if(r===t)break;if(r>t)throw Error("targetOffset ".concat(t," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},e.prototype.bumpSpace=function(){for(;!this.isEOF()&&Ne(this.char());)this.bump()},e.prototype.peek=function(){if(this.isEOF())return null;var t=this.char(),r=this.offset(),n=this.message.charCodeAt(r+(t>=65536?2:1));return n??null},e})();function K(e){return e>=97&&e<=122||e>=65&&e<=90}function xt(e){return K(e)||e===47}function Tt(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 Ne(e){return e>=9&&e<=13||e===32||e===133||e>=8206&&e<=8207||e===8232||e===8233}function St(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 r in t.options)delete t.options[r].location,ee(t.options[r].value);else se(t)&&ce(t.style)||(ue(t)||he(t))&&q(t.style)?delete t.style.location:me(t)&&ee(t.children)})}function Ht(e,t){t===void 0&&(t={}),t=f({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var r=new yt(e,t).parse();if(r.err){var n=SyntaxError(g[r.err.kind]);throw n.location=r.err.location,n.originalMessage=r.err.message,n}return t!=null&&t.captureLocation||ee(r.val),r.val}var L;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(L||(L={}));var R=(function(e){_(t,e);function t(r,n,a){var i=e.call(this,r)||this;return i.code=n,i.originalMessage=a,i}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t})(Error),Ae=(function(e){_(t,e);function t(r,n,a,i){return e.call(this,'Invalid values for "'.concat(r,'": "').concat(n,'". Options are "').concat(Object.keys(a).join('", "'),'"'),L.INVALID_VALUE,i)||this}return t})(R),It=(function(e){_(t,e);function t(r,n,a){return e.call(this,'Value for "'.concat(r,'" must be of type ').concat(n),L.INVALID_VALUE,a)||this}return t})(R),Nt=(function(e){_(t,e);function t(r,n){return e.call(this,'The intl string context variable "'.concat(r,'" was not provided to the string "').concat(n,'"'),L.MISSING_VALUE,n)||this}return t})(R),N;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(N||(N={}));function At(e){return e.length<2?e:e.reduce(function(t,r){var n=t[t.length-1];return!n||n.type!==N.literal||r.type!==N.literal?t.push(r):n.value+=r.value,t},[])}function Bt(e){return typeof e=="function"}function k(e,t,r,n,a,i,o){if(e.length===1&&oe(e[0]))return[{type:N.literal,value:e[0].value}];for(var s=[],u=0,l=e;u<l.length;u++){var h=l[u];if(oe(h)){s.push({type:N.literal,value:h.value});continue}if(Qe(h)){typeof i=="number"&&s.push({type:N.literal,value:r.getNumberFormat(t).format(i)});continue}var m=h.value;if(!(a&&m in a))throw new Nt(m,o);var c=a[m];if(Je(h)){(!c||typeof c=="string"||typeof c=="number")&&(c=typeof c=="string"||typeof c=="number"?String(c):""),s.push({type:typeof c=="string"?N.literal:N.object,value:c});continue}if(ue(h)){var y=typeof h.style=="string"?n.date[h.style]:q(h.style)?h.style.parsedOptions:void 0;s.push({type:N.literal,value:r.getDateTimeFormat(t,y).format(c)});continue}if(he(h)){var y=typeof h.style=="string"?n.time[h.style]:q(h.style)?h.style.parsedOptions:n.time.medium;s.push({type:N.literal,value:r.getDateTimeFormat(t,y).format(c)});continue}if(se(h)){var y=typeof h.style=="string"?n.number[h.style]:ce(h.style)?h.style.parsedOptions:void 0;y&&y.scale&&(c=c*(y.scale||1)),s.push({type:N.literal,value:r.getNumberFormat(t,y).format(c)});continue}if(me(h)){var x=h.children,d=h.value,v=a[d];if(!Bt(v))throw new It(d,"function",o);var E=k(x,t,r,n,a,i),T=v(E.map(function(D){return D.value}));Array.isArray(T)||(T=[T]),s.push.apply(s,T.map(function(D){return{type:typeof D=="string"?N.literal:N.object,value:D}}))}if(le(h)){var S=h.options[c]||h.options.other;if(!S)throw new Ae(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a));continue}if(fe(h)){var S=h.options["=".concat(c)];if(!S){if(!Intl.PluralRules)throw new R(`Intl.PluralRules is not available in this environment.
2
2
  Try polyfilling it using "@formatjs/intl-pluralrules"
3
- `,L.MISSING_INTL_API,o);var U=r.getPluralRules(t,{type:h.pluralType}).select(c-(h.offset||0));S=h.options[U]||h.options.other}if(!S)throw new Ae(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a,c-(h.offset||0)));continue}}return At(s)}function _t(e,t){return t?f(f(f({},e||{}),t||{}),Object.keys(e).reduce(function(r,n){return r[n]=f(f({},e[n]),t[n]||{}),r},{})):e}function Pt(e,t){return t?Object.keys(e).reduce(function(r,n){return r[n]=_t(e[n],t[n]),r},f({},e)):e}function te(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Lt(e){return e===void 0&&(e={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.NumberFormat).bind.apply(t,A([void 0],r,!1)))},{cache:te(e.number),strategy:I.variadic}),getDateTimeFormat:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.DateTimeFormat).bind.apply(t,A([void 0],r,!1)))},{cache:te(e.dateTime),strategy:I.variadic}),getPluralRules:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.PluralRules).bind.apply(t,A([void 0],r,!1)))},{cache:te(e.pluralRules),strategy:I.variadic})}}var Be=function(){function e(t,r,n,a){r===void 0&&(r=e.defaultLocale);var i=this;if(this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(u){var l=i.formatToParts(u);if(l.length===1)return l[0].value;var h=l.reduce(function(m,c){return!m.length||c.type!==N.literal||typeof m[m.length-1]!="string"?m.push(c.value):m[m.length-1]+=c.value,m},[]);return h.length<=1?h[0]||"":h},this.formatToParts=function(u){return k(i.ast,i.locales,i.formatters,i.formats,u,void 0,i.message)},this.resolvedOptions=function(){var u;return{locale:((u=i.resolvedLocale)===null||u===void 0?void 0:u.toString())||Intl.NumberFormat.supportedLocalesOf(i.locales)[0]}},this.getAst=function(){return i.ast},this.locales=r,this.resolvedLocale=e.resolveLocale(r),typeof t=="string"){if(this.message=t,!e.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");var o=a||{};o.formatters;var s=ke(o,["formatters"]);this.ast=e.__parse(t,f(f({},s),{locale:this.resolvedLocale}))}else this.ast=t;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");this.formats=Pt(e.formats,n),this.formatters=a&&a.formatters||Lt(this.formatterCache)}return Object.defineProperty(e,"defaultLocale",{get:function(){return e.memoizedDefaultLocale||(e.memoizedDefaultLocale=new Intl.NumberFormat().resolvedOptions().locale),e.memoizedDefaultLocale},enumerable:!1,configurable:!0}),e.memoizedDefaultLocale=null,e.resolveLocale=function(t){if(!(typeof Intl.Locale>"u")){var r=Intl.NumberFormat.supportedLocalesOf(t);return r.length>0?new Intl.Locale(r[0]):new Intl.Locale(typeof t=="string"?t:t[0])}},e.__parse=Ht,e.formats={number:{integer:{maximumFractionDigits:0},currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},e}(),O;(function(e){e.FORMAT_ERROR="FORMAT_ERROR",e.UNSUPPORTED_FORMATTER="UNSUPPORTED_FORMATTER",e.INVALID_CONFIG="INVALID_CONFIG",e.MISSING_DATA="MISSING_DATA",e.MISSING_TRANSLATION="MISSING_TRANSLATION"})(O||(O={}));var G=function(e){_(t,e);function t(r,n,a){var i=this,o=a?a instanceof Error?a:new Error(String(a)):void 0;return i=e.call(this,"[@formatjs/intl Error ".concat(r,"] ").concat(n,`
3
+ `,L.MISSING_INTL_API,o);var U=r.getPluralRules(t,{type:h.pluralType}).select(c-(h.offset||0));S=h.options[U]||h.options.other}if(!S)throw new Ae(h.value,c,Object.keys(h.options),o);s.push.apply(s,k(S.value,t,r,n,a,c-(h.offset||0)));continue}}return At(s)}function _t(e,t){return t?f(f(f({},e||{}),t||{}),Object.keys(e).reduce(function(r,n){return r[n]=f(f({},e[n]),t[n]||{}),r},{})):e}function Pt(e,t){return t?Object.keys(e).reduce(function(r,n){return r[n]=_t(e[n],t[n]),r},f({},e)):e}function te(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Lt(e){return e===void 0&&(e={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.NumberFormat).bind.apply(t,A([void 0],r,!1)))},{cache:te(e.number),strategy:I.variadic}),getDateTimeFormat:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.DateTimeFormat).bind.apply(t,A([void 0],r,!1)))},{cache:te(e.dateTime),strategy:I.variadic}),getPluralRules:H(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.PluralRules).bind.apply(t,A([void 0],r,!1)))},{cache:te(e.pluralRules),strategy:I.variadic})}}var Be=(function(){function e(t,r,n,a){r===void 0&&(r=e.defaultLocale);var i=this;if(this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(u){var l=i.formatToParts(u);if(l.length===1)return l[0].value;var h=l.reduce(function(m,c){return!m.length||c.type!==N.literal||typeof m[m.length-1]!="string"?m.push(c.value):m[m.length-1]+=c.value,m},[]);return h.length<=1?h[0]||"":h},this.formatToParts=function(u){return k(i.ast,i.locales,i.formatters,i.formats,u,void 0,i.message)},this.resolvedOptions=function(){var u;return{locale:((u=i.resolvedLocale)===null||u===void 0?void 0:u.toString())||Intl.NumberFormat.supportedLocalesOf(i.locales)[0]}},this.getAst=function(){return i.ast},this.locales=r,this.resolvedLocale=e.resolveLocale(r),typeof t=="string"){if(this.message=t,!e.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");var o=a||{};o.formatters;var s=ke(o,["formatters"]);this.ast=e.__parse(t,f(f({},s),{locale:this.resolvedLocale}))}else this.ast=t;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");this.formats=Pt(e.formats,n),this.formatters=a&&a.formatters||Lt(this.formatterCache)}return Object.defineProperty(e,"defaultLocale",{get:function(){return e.memoizedDefaultLocale||(e.memoizedDefaultLocale=new Intl.NumberFormat().resolvedOptions().locale),e.memoizedDefaultLocale},enumerable:!1,configurable:!0}),e.memoizedDefaultLocale=null,e.resolveLocale=function(t){if(!(typeof Intl.Locale>"u")){var r=Intl.NumberFormat.supportedLocalesOf(t);return r.length>0?new Intl.Locale(r[0]):new Intl.Locale(typeof t=="string"?t:t[0])}},e.__parse=Ht,e.formats={number:{integer:{maximumFractionDigits:0},currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},e})(),O;(function(e){e.FORMAT_ERROR="FORMAT_ERROR",e.UNSUPPORTED_FORMATTER="UNSUPPORTED_FORMATTER",e.INVALID_CONFIG="INVALID_CONFIG",e.MISSING_DATA="MISSING_DATA",e.MISSING_TRANSLATION="MISSING_TRANSLATION"})(O||(O={}));var G=(function(e){_(t,e);function t(r,n,a){var i=this,o=a?a instanceof Error?a:new Error(String(a)):void 0;return i=e.call(this,"[@formatjs/intl Error ".concat(r,"] ").concat(n,`
4
4
  `).concat(o?`
5
5
  `.concat(o.message,`
6
- `).concat(o.stack):""))||this,i.code=r,typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(i,t),i}return t}(Error),Rt=function(e){_(t,e);function t(r,n){return e.call(this,O.UNSUPPORTED_FORMATTER,r,n)||this}return t}(G),Ot=function(e){_(t,e);function t(r,n){return e.call(this,O.INVALID_CONFIG,r,n)||this}return t}(G),_e=function(e){_(t,e);function t(r,n){return e.call(this,O.MISSING_DATA,r,n)||this}return t}(G),B=function(e){_(t,e);function t(r,n,a){var i=e.call(this,O.FORMAT_ERROR,"".concat(r,`
6
+ `).concat(o.stack):""))||this,i.code=r,typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(i,t),i}return t})(Error),Rt=(function(e){_(t,e);function t(r,n){return e.call(this,O.UNSUPPORTED_FORMATTER,r,n)||this}return t})(G),Ot=(function(e){_(t,e);function t(r,n){return e.call(this,O.INVALID_CONFIG,r,n)||this}return t})(G),_e=(function(e){_(t,e);function t(r,n){return e.call(this,O.MISSING_DATA,r,n)||this}return t})(G),B=(function(e){_(t,e);function t(r,n,a){var i=e.call(this,O.FORMAT_ERROR,"".concat(r,`
7
7
  Locale: `).concat(n,`
8
- `),a)||this;return i.locale=n,i}return t}(G),re=function(e){_(t,e);function t(r,n,a,i){var o=e.call(this,"".concat(r,`
8
+ `),a)||this;return i.locale=n,i}return t})(G),re=(function(e){_(t,e);function t(r,n,a,i){var o=e.call(this,"".concat(r,`
9
9
  MessageID: `).concat(a==null?void 0:a.id,`
10
10
  Default Message: `).concat(a==null?void 0:a.defaultMessage,`
11
11
  Description: `).concat(a==null?void 0:a.description,`
12
- `),n,i)||this;return o.descriptor=a,o.locale=n,o}return t}(B),Mt=function(e){_(t,e);function t(r,n){var a=e.call(this,O.MISSING_TRANSLATION,'Missing message: "'.concat(r.id,'" for locale "').concat(n,'", using ').concat(r.defaultMessage?"default message (".concat(typeof r.defaultMessage=="string"?r.defaultMessage:r.defaultMessage.map(function(i){var o;return(o=i.value)!==null&&o!==void 0?o:JSON.stringify(i)}).join(),")"):"id"," as fallback."))||this;return a.descriptor=r,a}return t}(G);function M(e,t,r){return r===void 0&&(r={}),t.reduce(function(n,a){return a in e?n[a]=e[a]:a in r&&(n[a]=r[a]),n},{})}var Ct=function(e){process.env.NODE_ENV!=="production"&&console.error(e)},Dt=function(e){process.env.NODE_ENV!=="production"&&console.warn(e)},wt={formats:{},messages:{},timeZone:void 0,defaultLocale:"en",defaultFormats:{},fallbackOnEmptyString:!0,onError:Ct,onWarn:Dt};function Pe(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function C(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Ft(e){e===void 0&&(e=Pe());var t=Intl.RelativeTimeFormat,r=Intl.ListFormat,n=Intl.DisplayNames,a=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.DateTimeFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.dateTime),strategy:I.variadic}),i=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.NumberFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.number),strategy:I.variadic}),o=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.PluralRules).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.pluralRules),strategy:I.variadic});return{getDateTimeFormat:a,getNumberFormat:i,getMessageFormat:H(function(s,u,l,h){return new Be(s,u,l,f({formatters:{getNumberFormat:i,getDateTimeFormat:a,getPluralRules:o}},h||{}))},{cache:C(e.message),strategy:I.variadic}),getRelativeTimeFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(t.bind.apply(t,A([void 0],s,!1)))},{cache:C(e.relativeTime),strategy:I.variadic}),getPluralRules:o,getListFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(r.bind.apply(r,A([void 0],s,!1)))},{cache:C(e.list),strategy:I.variadic}),getDisplayNames:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(n.bind.apply(n,A([void 0],s,!1)))},{cache:C(e.displayNames),strategy:I.variadic})}}function ne(e,t,r,n){var a=e&&e[t],i;if(a&&(i=a[r]),i)return i;n(new Rt("No ".concat(t," format named: ").concat(r)))}function Gt(e,t,r){if(r===void 0&&(r=Error),!e)throw new r(t)}H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.NumberFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.DateTimeFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.PluralRules).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.Locale).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.ListFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic});function j(e,t){return Object.keys(e).reduce(function(r,n){return r[n]=f({timeZone:t},e[n]),r},{})}function Le(e,t){var r=Object.keys(f(f({},e),t));return r.reduce(function(n,a){return n[a]=f(f({},e[a]||{}),t[a]||{}),n},{})}function Re(e,t){if(!t)return e;var r=Be.formats;return f(f(f({},r),e),{date:Le(j(r.date,t),j(e.date||{},t)),time:Le(j(r.time,t),j(e.time||{},t))})}var Oe=function(e,t,r,n,a){var i=e.locale,o=e.formats,s=e.messages,u=e.defaultLocale,l=e.defaultFormats,h=e.fallbackOnEmptyString,m=e.onError,c=e.timeZone,y=e.defaultRichTextElements;r===void 0&&(r={id:""});var x=r.id,d=r.defaultMessage;Gt(!!x,"[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");var v=String(x),E=s&&Object.prototype.hasOwnProperty.call(s,v)&&s[v];if(Array.isArray(E)&&E.length===1&&E[0].type===b.literal)return E[0].value;if(!n&&E&&typeof E=="string"&&!y)return E.replace(/'\{(.*?)\}'/gi,"{$1}");if(n=f(f({},y),n||{}),o=Re(o,c),l=Re(l,c),!E){if(h===!1&&E==="")return E;if((!d||i&&i.toLowerCase()!==u.toLowerCase())&&m(new Mt(r,i)),d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){return m(new re('Error formatting default message for: "'.concat(v,'", rendering default message verbatim'),i,r,S)),typeof d=="string"?d:v}return v}try{var T=t.getMessageFormat(E,i,o,f({formatters:t},a||{}));return T.format(n)}catch(S){m(new re('Error formatting message: "'.concat(v,'", using ').concat(d?"default message":"id"," as fallback."),i,r,S))}if(d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){m(new re('Error formatting the default message for: "'.concat(v,'", rendering message verbatim'),i,r,S))}return typeof E=="string"?E:typeof d=="string"?d:v},Me=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function X(e,t,r,n){var a=e.locale,i=e.formats,o=e.onError,s=e.timeZone;n===void 0&&(n={});var u=n.format,l=f(f({},s&&{timeZone:s}),u&&ne(i,t,u,o)),h=M(n,Me,l);return t==="time"&&!h.hour&&!h.minute&&!h.second&&!h.timeStyle&&!h.dateStyle&&(h=f(f({},h),{hour:"numeric",minute:"numeric"})),r(a,h)}function Ut(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).format(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return String(s)}function Vt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).format(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return String(s)}function kt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=r[2],s=o===void 0?{}:o,u=e.timeZone,l=e.locale,h=e.onError,m=M(s,Me,u?{timeZone:u}:{});try{return t(l,m).formatRange(a,i)}catch(c){h(new B("Error formatting date time range.",e.locale,c))}return String(a)}function jt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return[]}function Xt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return[]}var Wt=["style","type","fallback","languageDisplay"];function Zt(e,t,r,n){var a=e.locale,i=e.onError,o=Intl.DisplayNames;o||i(new R(`Intl.DisplayNames is not available in this environment.
12
+ `),n,i)||this;return o.descriptor=a,o.locale=n,o}return t})(B),Mt=(function(e){_(t,e);function t(r,n){var a=e.call(this,O.MISSING_TRANSLATION,'Missing message: "'.concat(r.id,'" for locale "').concat(n,'", using ').concat(r.defaultMessage?"default message (".concat(typeof r.defaultMessage=="string"?r.defaultMessage:r.defaultMessage.map(function(i){var o;return(o=i.value)!==null&&o!==void 0?o:JSON.stringify(i)}).join(),")"):"id"," as fallback."))||this;return a.descriptor=r,a}return t})(G);function M(e,t,r){return r===void 0&&(r={}),t.reduce(function(n,a){return a in e?n[a]=e[a]:a in r&&(n[a]=r[a]),n},{})}var Ct=function(e){process.env.NODE_ENV!=="production"&&console.error(e)},Dt=function(e){process.env.NODE_ENV!=="production"&&console.warn(e)},wt={formats:{},messages:{},timeZone:void 0,defaultLocale:"en",defaultFormats:{},fallbackOnEmptyString:!0,onError:Ct,onWarn:Dt};function Pe(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function C(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Ft(e){e===void 0&&(e=Pe());var t=Intl.RelativeTimeFormat,r=Intl.ListFormat,n=Intl.DisplayNames,a=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.DateTimeFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.dateTime),strategy:I.variadic}),i=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.NumberFormat).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.number),strategy:I.variadic}),o=H(function(){for(var s,u=[],l=0;l<arguments.length;l++)u[l]=arguments[l];return new((s=Intl.PluralRules).bind.apply(s,A([void 0],u,!1)))},{cache:C(e.pluralRules),strategy:I.variadic});return{getDateTimeFormat:a,getNumberFormat:i,getMessageFormat:H(function(s,u,l,h){return new Be(s,u,l,f({formatters:{getNumberFormat:i,getDateTimeFormat:a,getPluralRules:o}},h||{}))},{cache:C(e.message),strategy:I.variadic}),getRelativeTimeFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(t.bind.apply(t,A([void 0],s,!1)))},{cache:C(e.relativeTime),strategy:I.variadic}),getPluralRules:o,getListFormat:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(r.bind.apply(r,A([void 0],s,!1)))},{cache:C(e.list),strategy:I.variadic}),getDisplayNames:H(function(){for(var s=[],u=0;u<arguments.length;u++)s[u]=arguments[u];return new(n.bind.apply(n,A([void 0],s,!1)))},{cache:C(e.displayNames),strategy:I.variadic})}}function ne(e,t,r,n){var a=e&&e[t],i;if(a&&(i=a[r]),i)return i;n(new Rt("No ".concat(t," format named: ").concat(r)))}function Gt(e,t,r){if(r===void 0&&(r=Error),!e)throw new r(t)}H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.NumberFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.DateTimeFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.PluralRules).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.Locale).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic}),H(function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.ListFormat).bind.apply(e,A([void 0],t,!1)))},{strategy:I.variadic});function j(e,t){return Object.keys(e).reduce(function(r,n){return r[n]=f({timeZone:t},e[n]),r},{})}function Le(e,t){var r=Object.keys(f(f({},e),t));return r.reduce(function(n,a){return n[a]=f(f({},e[a]||{}),t[a]||{}),n},{})}function Re(e,t){if(!t)return e;var r=Be.formats;return f(f(f({},r),e),{date:Le(j(r.date,t),j(e.date||{},t)),time:Le(j(r.time,t),j(e.time||{},t))})}var Oe=function(e,t,r,n,a){var i=e.locale,o=e.formats,s=e.messages,u=e.defaultLocale,l=e.defaultFormats,h=e.fallbackOnEmptyString,m=e.onError,c=e.timeZone,y=e.defaultRichTextElements;r===void 0&&(r={id:""});var x=r.id,d=r.defaultMessage;Gt(!!x,"[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");var v=String(x),E=s&&Object.prototype.hasOwnProperty.call(s,v)&&s[v];if(Array.isArray(E)&&E.length===1&&E[0].type===b.literal)return E[0].value;if(!n&&E&&typeof E=="string"&&!y)return E.replace(/'\{(.*?)\}'/gi,"{$1}");if(n=f(f({},y),n||{}),o=Re(o,c),l=Re(l,c),!E){if(h===!1&&E==="")return E;if((!d||i&&i.toLowerCase()!==u.toLowerCase())&&m(new Mt(r,i)),d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){return m(new re('Error formatting default message for: "'.concat(v,'", rendering default message verbatim'),i,r,S)),typeof d=="string"?d:v}return v}try{var T=t.getMessageFormat(E,i,o,f({formatters:t},a||{}));return T.format(n)}catch(S){m(new re('Error formatting message: "'.concat(v,'", using ').concat(d?"default message":"id"," as fallback."),i,r,S))}if(d)try{var T=t.getMessageFormat(d,u,l,a);return T.format(n)}catch(S){m(new re('Error formatting the default message for: "'.concat(v,'", rendering message verbatim'),i,r,S))}return typeof E=="string"?E:typeof d=="string"?d:v},Me=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function X(e,t,r,n){var a=e.locale,i=e.formats,o=e.onError,s=e.timeZone;n===void 0&&(n={});var u=n.format,l=f(f({},s&&{timeZone:s}),u&&ne(i,t,u,o)),h=M(n,Me,l);return t==="time"&&!h.hour&&!h.minute&&!h.second&&!h.timeStyle&&!h.dateStyle&&(h=f(f({},h),{hour:"numeric",minute:"numeric"})),r(a,h)}function Ut(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).format(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return String(s)}function Vt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).format(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return String(s)}function kt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=r[2],s=o===void 0?{}:o,u=e.timeZone,l=e.locale,h=e.onError,m=M(s,Me,u?{timeZone:u}:{});try{return t(l,m).formatRange(a,i)}catch(c){h(new B("Error formatting date time range.",e.locale,c))}return String(a)}function jt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"date",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting date.",e.locale,u))}return[]}function Xt(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var a=r[0],i=r[1],o=i===void 0?{}:i,s=typeof a=="string"?new Date(a||0):a;try{return X(e,"time",t,o).formatToParts(s)}catch(u){e.onError(new B("Error formatting time.",e.locale,u))}return[]}var Wt=["style","type","fallback","languageDisplay"];function Zt(e,t,r,n){var a=e.locale,i=e.onError,o=Intl.DisplayNames;o||i(new R(`Intl.DisplayNames is not available in this environment.
13
13
  Try polyfilling it using "@formatjs/intl-displaynames"
14
14
  `,L.MISSING_INTL_API));var s=M(n,Wt);try{return t(a,s).of(r)}catch(u){i(new B("Error formatting display name.",a,u))}}var zt=["type","style"],Ce=Date.now();function qt(e){return"".concat(Ce,"_").concat(e,"_").concat(Ce)}function Jt(e,t,r,n){n===void 0&&(n={});var a=De(e,t,r,n).reduce(function(i,o){var s=o.value;return typeof s!="string"?i.push(s):typeof i[i.length-1]=="string"?i[i.length-1]+=s:i.push(s),i},[]);return a.length===1?a[0]:a.length===0?"":a}function De(e,t,r,n){var a=e.locale,i=e.onError;n===void 0&&(n={});var o=Intl.ListFormat;o||i(new R(`Intl.ListFormat is not available in this environment.
15
15
  Try polyfilling it using "@formatjs/intl-listformat"
@@ -19,4 +19,4 @@ Try polyfilling it using "@formatjs/intl-pluralrules"
19
19
  Try polyfilling it using "@formatjs/intl-relativetimeformat"
20
20
  `,L.MISSING_INTL_API));try{return Kt(e,t,a).format(r,n)}catch(o){e.onError(new B("Error formatting relative time.",e.locale,o))}return String(r)}var tr=["style","currency","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","currencyDisplay","currencySign","notation","signDisplay","unit","unitDisplay","numberingSystem","trailingZeroDisplay","roundingPriority","roundingIncrement","roundingMode"];function we(e,t,r){var n=e.locale,a=e.formats,i=e.onError;r===void 0&&(r={});var o=r.format,s=o&&ne(a,"number",o,i)||{},u=M(r,tr,s);return t(n,u)}function rr(e,t,r,n){n===void 0&&(n={});try{return we(e,t,n).format(r)}catch(a){e.onError(new B("Error formatting number.",e.locale,a))}return String(r)}function nr(e,t,r,n){n===void 0&&(n={});try{return we(e,t,n).formatToParts(r)}catch(a){e.onError(new B("Error formatting number.",e.locale,a))}return[]}function ar(e){var t=e?e[Object.keys(e)[0]]:void 0;return typeof t=="string"}function ir(e){e.onWarn&&e.defaultRichTextElements&&ar(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 or(e,t){var r=Ft(t),n=f(f({},wt),e),a=n.locale,i=n.defaultLocale,o=n.onError;return a?!Intl.NumberFormat.supportedLocalesOf(a).length&&o?o(new _e('Missing locale data for locale: "'.concat(a,'" in Intl.NumberFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(a).length&&o&&o(new _e('Missing locale data for locale: "'.concat(a,'" in Intl.DateTimeFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(o&&o(new Ot('"locale" was not configured, using "'.concat(i,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),n.locale=n.defaultLocale||"en"),ir(n),f(f({},n),{formatters:r,formatNumber:rr.bind(null,n,r.getNumberFormat),formatNumberToParts:nr.bind(null,n,r.getNumberFormat),formatRelativeTime:er.bind(null,n,r.getRelativeTimeFormat),formatDate:Ut.bind(null,n,r.getDateTimeFormat),formatDateToParts:jt.bind(null,n,r.getDateTimeFormat),formatTime:Vt.bind(null,n,r.getDateTimeFormat),formatDateTimeRange:kt.bind(null,n,r.getDateTimeFormat),formatTimeToParts:Xt.bind(null,n,r.getDateTimeFormat),formatPlural:Yt.bind(null,n,r.getPluralRules),formatMessage:Oe.bind(null,n,r),$t:Oe.bind(null,n,r),formatList:Jt.bind(null,n,r.getListFormat),formatListToParts:De.bind(null,n,r.getListFormat),formatDisplayName:Zt.bind(null,n,r.getDisplayNames)})}function sr(e){return e&&e.constructor&&typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)}function ur(e){return e}function hr(e,t){t=t||{};const r=t.delimiter||".",n=t.maxDepth,a=t.transformKey||ur,i={};function o(s,u,l){l=l||1,Object.keys(s).forEach(function(h){const m=s[h],c=t.safe&&Array.isArray(m),y=Object.prototype.toString.call(m),x=sr(m),d=y==="[object Object]"||y==="[object Array]",v=u?u+r+a(h):a(h);if(!c&&!x&&d&&Object.keys(m).length&&(!t.maxDepth||l<n))return o(m,v,l+1);i[v]=m})}return o(e),i}const lr=Pe();let Fe;const Ge={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric"},fr=(e,t,r=!1)=>{var d;const n=typeof r=="boolean",a=or({...n?null:r,locale:e,messages:hr(t,{safe:!0}),formats:{...n?null:r.formats,date:{...n?null:(d=r.formats)==null?void 0:d.date,datetime:Ge}}},lr),{$t:i,...o}=a,s=o,u=v=>v.toString().length===13?Math.floor(v/1e3):v,l=v=>{const E="Invalid Date";if(!v)return E;try{const T=new Date(u(Math.round(v))*1e3);return s.formatDate(T,Ge)}catch{return E}},x={formatUnixTimeStamp:l,formatIsoDate:v=>{const E=Date.parse(v)/1e3,T=Math.floor(E);return l(T)},t:(v,E,T)=>s.formatMessage({id:v},E,T),te:v=>!!s.messages[v],tm:v=>s.messages[v]||[],...s,source:t};return(typeof r=="boolean"&&r===!0||typeof r!="boolean"&&r.isGlobal===!0)&&(Fe=x),x};function mr(){return Fe}const Ue=(e=null)=>w.defineComponent({name:"I18nT",props:{i18n:{type:Object,default:null},keypath:{type:String,required:!0},tag:{type:String,default:"span"}},setup(t,{slots:r}){const n=a=>{if(!a)return[];const i=/(\{[^}]+\})/g;return a.split(i).filter(Boolean)};return()=>{var s;const a=Object.keys(r).filter(u=>u!=="_"),i=((s=(e||t.i18n).messages[t.keypath])==null?void 0:s.toString())||"";let o=n(i);return o=o.filter(u=>u!==""),o.forEach((u,l)=>{if(!u.startsWith("{")&&!u.endsWith("}"))return;const h=u.replace(/[\{\}]/g,"");h==="0"&&r.default?o[l]=r.default():a.includes(h)&&r[h]&&(o[l]=r[h]())}),w.h(t.tag,t,o)}}}),cr={install(e,t){const{i18n:r}=t;e.component("I18nT",Ue(r))}};P.Translation=cr,P.createI18n=fr,P.i18nTComponent=Ue,P.useI18n=mr,Object.defineProperty(P,Symbol.toStringTag,{value:"Module"})});
22
+ For more details see https://formatjs.io/docs/getting-started/message-distribution`)}function or(e,t){var r=Ft(t),n=f(f({},wt),e),a=n.locale,i=n.defaultLocale,o=n.onError;return a?!Intl.NumberFormat.supportedLocalesOf(a).length&&o?o(new _e('Missing locale data for locale: "'.concat(a,'" in Intl.NumberFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(a).length&&o&&o(new _e('Missing locale data for locale: "'.concat(a,'" in Intl.DateTimeFormat. Using default locale: "').concat(i,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(o&&o(new Ot('"locale" was not configured, using "'.concat(i,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),n.locale=n.defaultLocale||"en"),ir(n),f(f({},n),{formatters:r,formatNumber:rr.bind(null,n,r.getNumberFormat),formatNumberToParts:nr.bind(null,n,r.getNumberFormat),formatRelativeTime:er.bind(null,n,r.getRelativeTimeFormat),formatDate:Ut.bind(null,n,r.getDateTimeFormat),formatDateToParts:jt.bind(null,n,r.getDateTimeFormat),formatTime:Vt.bind(null,n,r.getDateTimeFormat),formatDateTimeRange:kt.bind(null,n,r.getDateTimeFormat),formatTimeToParts:Xt.bind(null,n,r.getDateTimeFormat),formatPlural:Yt.bind(null,n,r.getPluralRules),formatMessage:Oe.bind(null,n,r),$t:Oe.bind(null,n,r),formatList:Jt.bind(null,n,r.getListFormat),formatListToParts:De.bind(null,n,r.getListFormat),formatDisplayName:Zt.bind(null,n,r.getDisplayNames)})}function sr(e){return e&&e.constructor&&typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)}function ur(e){return e}function hr(e,t){t=t||{};const r=t.delimiter||".",n=t.maxDepth,a=t.transformKey||ur,i={};function o(s,u,l){l=l||1,Object.keys(s).forEach(function(h){const m=s[h],c=t.safe&&Array.isArray(m),y=Object.prototype.toString.call(m),x=sr(m),d=y==="[object Object]"||y==="[object Array]",v=u?u+r+a(h):a(h);if(!c&&!x&&d&&Object.keys(m).length&&(!t.maxDepth||l<n))return o(m,v,l+1);i[v]=m})}return o(e),i}const lr=Pe();let Fe;const Ge={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric"},fr=(e,t,r=!1)=>{var d;const n=typeof r=="boolean",a=or({...n?null:r,locale:e,messages:hr(t,{safe:!0}),formats:{...n?null:r.formats,date:{...n?null:(d=r.formats)==null?void 0:d.date,datetime:Ge}}},lr),{$t:i,...o}=a,s=o,u=v=>v.toString().length===13?Math.floor(v/1e3):v,l=v=>{const E="Invalid Date";if(!v)return E;try{const T=new Date(u(Math.round(v))*1e3);return s.formatDate(T,Ge)}catch{return E}},x={formatUnixTimeStamp:l,formatIsoDate:v=>{const E=Date.parse(v)/1e3,T=Math.floor(E);return l(T)},t:(v,E,T)=>s.formatMessage({id:v},E,T),te:v=>!!s.messages[v],tm:v=>s.messages[v]||[],...s,source:t};return(typeof r=="boolean"&&r===!0||typeof r!="boolean"&&r.isGlobal===!0)&&(Fe=x),x};function mr(){return Fe}const Ue=(e=null)=>w.defineComponent({name:"I18nT",props:{i18n:{type:Object,default:null},keypath:{type:String,required:!0},tag:{type:String,default:"span"}},setup(t,{slots:r}){const n=a=>{if(!a)return[];const i=/(\{[^}]+\})/g;return a.split(i).filter(Boolean)};return()=>{var s;const a=Object.keys(r).filter(u=>u!=="_"),i=((s=(e||t.i18n).messages[t.keypath])==null?void 0:s.toString())||"";let o=n(i);return o=o.filter(u=>u!==""),o.forEach((u,l)=>{if(!u.startsWith("{")&&!u.endsWith("}"))return;const h=u.replace(/[\{\}]/g,"");h==="0"&&r.default?o[l]=r.default():a.includes(h)&&r[h]&&(o[l]=r[h]())}),w.h(t.tag,t,o)}}}),cr={install(e,t){const{i18n:r}=t;e.component("I18nT",Ue(r))}};P.Translation=cr,P.createI18n=fr,P.i18nTComponent=Ue,P.useI18n=mr,Object.defineProperty(P,Symbol.toStringTag,{value:"Module"})}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong-ui-public/i18n",
3
- "version": "2.4.5",
3
+ "version": "2.4.6-pr.2856.f0aa93e2a.0",
4
4
  "type": "module",
5
5
  "main": "./dist/i18n.umd.js",
6
6
  "module": "./dist/i18n.es.js",
@@ -10,9 +10,9 @@
10
10
  ],
11
11
  "exports": {
12
12
  ".": {
13
+ "types": "./dist/types/index.d.ts",
13
14
  "import": "./dist/i18n.es.js",
14
- "require": "./dist/i18n.umd.js",
15
- "types": "./dist/types/index.d.ts"
15
+ "require": "./dist/i18n.umd.js"
16
16
  },
17
17
  "./package.json": "./package.json",
18
18
  "./dist/*": "./dist/*"