@procore/globalization-toolkit 3.1.0 → 3.2.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/.depcheckrc CHANGED
@@ -2,4 +2,5 @@ ignores:
2
2
  - "@types/jest"
3
3
  - "@types/node"
4
4
  - ts-node
5
- - ts-jest
5
+ - ts-jest
6
+ - "@commitlint/config-conventional"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @procore/globalization-toolkit
2
2
 
3
+ ## 3.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2434255: locale override mappings added
8
+ - 8bb8e1e: added locale fallback list method
9
+
3
10
  ## 3.1.0
4
11
 
5
12
  ### Minor Changes
package/README.md CHANGED
@@ -6,10 +6,10 @@ i18n formatting library
6
6
  [![CircleCI](https://circleci.com/gh/procore/globalization-toolkit/tree/main.svg?style=shield&circle-token=2f3787c62ef88e345956761b9d6e243f043a08a7)](https://circleci.com/gh/procore/globalization-toolkit/tree/main)
7
7
  [![NPM](https://img.shields.io/badge/NPM-%40procore%2Fglobalization--toolkit-blue)](https://www.npmjs.com/package/@procore/globalization-toolkit)
8
8
 
9
- Before implementing the Globalization Toolkit (GTK), please review the [Globalization Toolkit Adoption Diagram](https://lucid.app/lucidchart/47c65380-9d87-409a-a15e-77c668e4c474/edit?invitationId=inv_abb5b5f8-3d6f-499f-920d-6dc6b7c9734c&page=0_0#) to determine the best implementation strategy for you. Continue reading for instructions on direct usage of the GTK.
9
+ Before implementing the Globalization Toolkit (GTK), please review the [Globalization Toolkit Adoption Diagram](https://lucid.app/lucidchart/47c65380-9d87-409a-a15e-77c668e4c474/edit?invitationId=inv_abb5b5f8-3d6f-499f-920d-6dc6b7c9734c&page=0_0#) to determine the best implementation strategy for you. Continue reading for instructions on direct usage of the GTK.
10
10
 
11
11
  ## [Engineering Documentation](https://procore.github.io/globalization-toolkit/)
12
- The engineering documentation contains technical documentation for the GTK repo. It details classes, types, interfaces, and features. Continue reading for install and usage instructions.
12
+ The engineering documentation contains technical documentation for the GTK repo. It details classes, types, interfaces, and features. Continue reading for install and usage instructions.
13
13
  Further reading on the GTK:
14
14
  - [GTK Adoption Training Presentation](https://docs.google.com/presentation/d/1FtB2DR5qroKgGcxxWsu5Ac9QHA01I7WM75FUeB67izE/edit?usp=sharing)
15
15
  - [GTK SDR](https://github.com/procore/system-design-records/blob/main/lifecycle/2-pilot/internationalization/0002-globalization-toolkit.md)
@@ -25,17 +25,28 @@ YARN
25
25
  $ yarn add @procore/globalization-toolkit
26
26
  ```
27
27
  ## Usage
28
- The GTK has 3 available classes: `NumberFormatter`, `DateTimeFormatter`, `CurrencyFormatter`. The structure of the GTK Library allows for instantiation of a formatting class with defined options. The instantiated class gives access to related functions. In addition, the GTK makes the class functions available as stand-alone functions. Below are examples of GTK usage with class formatter and with stand-alone functions.
28
+ The GTK has 3 available classes: `NumberFormatter`, `DateTimeFormatter`, `CurrencyFormatter`. The structure of the GTK Library allows for instantiation of a formatting class with defined options. The instantiated class gives access to related functions. In addition, the GTK makes the class functions available as stand-alone functions. Below are examples of GTK usage with class formatter and with stand-alone functions.
29
+
30
+ ### Sanitizing Locales
31
+ The GTK supports industry standard locale codes, which means some locales used in the Procore app will not work with the GTK or may not work as expected. For example, the GTK does NOT support [Procore Custom Locales](https://procoretech.atlassian.net/wiki/spaces/PLATFORM/pages/1039111578/Levels+of+Support+for+Locales+Product+Coverage#Custom-Locales). When implementing the GTK, please sanitize the locale to follow industry standard of `<language>-<region>` like `en-US`.
32
+
33
+ Suggested sanitizations:
34
+ | User Locale | Locale Passed to GTK | Reason |
35
+ |-|-|-|
36
+ | `en-international` | `en-GB` | Custom locales are not supported |
37
+ | `en-owner` | `en-US` | Custom locales are not supported |
38
+ | `en-owner-beta` | `en-US` | Custom locales are not supported |
39
+ | `en-specialty-contractor` | `en-US` | Custom locales are not supported |
40
+ | `en` | `en-US` | `en` will work as expected, but prefer `<language>-<region>` format |
41
+ | `es` | `es-419` | `es` is used for Latin America in the monolith but will format numbers like `es-ES` in the GTK if the region is not specified |
29
42
 
30
- ### A Note on Locales
31
- The GTK supports industry standard locale codes. The GTK does NOT support [Procore Custom Locales](https://procoretech.atlassian.net/wiki/spaces/PLATFORM/pages/1039111578/Levels+of+Support+for+Locales+Product+Coverage#Custom-Locales). When implementing the GTK, please sanitize the locale to follow industry standard of 'region-language' like 'en-US'.
32
43
 
33
44
  ### NumberFormatter Class
34
- The GTK `NumberFormatter` class has the ability to format numbers for a given locale. The [NumberFormatter](https://procore.github.io/globalization-toolkit/classes/NumberFormatter) class is instantiated with [NumberOptions](https://procore.github.io/globalization-toolkit/interfaces/NumberOptions.html) and has 4 available functions:
35
- - `formatNumber(value: number)`,
36
- - `formatNumberToParts(value: number)`,
37
- - `parseNumber(value: string)`, and
38
- - `getNumberSeparators(locale: string)`.
45
+ The GTK `NumberFormatter` class has the ability to format numbers for a given locale. The [NumberFormatter](https://procore.github.io/globalization-toolkit/classes/NumberFormatter) class is instantiated with [NumberOptions](https://procore.github.io/globalization-toolkit/interfaces/NumberOptions.html) and has 4 available functions:
46
+ - `formatNumber(value: number)`,
47
+ - `formatNumberToParts(value: number)`,
48
+ - `parseNumber(value: string)`, and
49
+ - `getNumberSeparators(locale: string)`.
39
50
 
40
51
  The [NumberOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html) are summarized below:
41
52
  - `locale`: string
@@ -43,7 +54,7 @@ The [NumberOptions](https://procore.github.io/globalization-toolkit/interfaces/C
43
54
  - `minimumFractionDigits?`: number
44
55
  - `percent?`: 'standard', 'decimal'
45
56
 
46
- Below code blocks display usage of the NumberFormatter class and available functions.
57
+ Below code blocks display usage of the NumberFormatter class and available functions.
47
58
  #### [formatNumber()](https://procore.github.io/globalization-toolkit/classes/NumberFormatter.html#formatNumber) & [formatNumberToParts()](https://procore.github.io/globalization-toolkit/classes/NumberFormatter.html#formatNumberToParts)
48
59
  ```ts
49
60
  import { NumberFormatter } from '@procore/globalization-toolkit';
@@ -111,14 +122,14 @@ const numberOptions = { locale: "en-US", minimumFractionDigits: 3 };
111
122
  console.log(formatNumber(value, numberOptions)) // expected output: '1,234.000'
112
123
  ```
113
124
  ### CurrencyFormatter class
114
- The GTK CurrencyFormatter class has the ability to format a number with given options. The [CurrencyFormatter](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html) class is instantiated with [CurrencyOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html).
115
- The CurrencyFormatter has 5 available functions:
116
- - `formatCurrency(value: number)`,
125
+ The GTK CurrencyFormatter class has the ability to format a number with given options. The [CurrencyFormatter](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html) class is instantiated with [CurrencyOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html).
126
+ The CurrencyFormatter has 5 available functions:
127
+ - `formatCurrency(value: number)`,
117
128
  - `formatCurrencyToParts(value: number)`
118
- - `parseCurrency(value: string)`
129
+ - `parseCurrency(value: string)`
119
130
  - `getCurrencySeparators()`
120
131
  - `getSupportedCurrencies()`
121
-
132
+
122
133
  The [CurrencyOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html) are summarized below:
123
134
  - `currencyIsoCode`: string ([acceptable ISO codes](https://github.com/formatjs/formatjs/blob/main/packages/intl-enumerator/src/currencies.generated.ts))
124
135
  - `locale`: string
@@ -127,14 +138,14 @@ The [CurrencyOptions](https://procore.github.io/globalization-toolkit/interfaces
127
138
  - `maximumFractionDigits?`: number
128
139
  - `minimumFractionDigits?`: number
129
140
 
130
- Below code blocks display usage of the CurrencyFormatter class and available functions.
141
+ Below code blocks display usage of the CurrencyFormatter class and available functions.
131
142
 
132
143
  [formatCurrency(value: number)](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html#formatCurrency)
133
144
  ```ts
134
145
  const value = 1234;
135
146
  const currencyOptions = { locale: "en-US", currencyIsoCode: "USD" };
136
147
  const formatter = new CurrencyFormatter(currencyOptions);
137
-
148
+
138
149
  console.log(formatter.formatCurrency(value)) // expected outcome: '$1,234.00'
139
150
  ```
140
151
  Usage with currencyDisplay option
@@ -222,7 +233,7 @@ console.log(formatter.getSupportedCurrencies())
222
233
  * "ALL",
223
234
  * ...
224
235
  * ...
225
- * "ZWL"
236
+ * "ZWL"
226
237
  * ]
227
238
  */
228
239
  ```
@@ -246,12 +257,12 @@ console.log(getCurrencySeparators(currencyOptions)) // expected output: { decima
246
257
  ```
247
258
 
248
259
  ### DateTimeFormatter
249
- The GTK DateTimeFormatter class has the ability to format date and time for the correct timezone. The [DateTimeFormatter](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html) class is instantiated with [DateTimeOptions](https://procore.github.io/globalization-toolkit/types/DateTimeOptions.html).
250
- The DateTimeFormatter has 3 available functions:
251
- - `formatDateTime(value: Date)`,
260
+ The GTK DateTimeFormatter class has the ability to format date and time for the correct timezone. The [DateTimeFormatter](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html) class is instantiated with [DateTimeOptions](https://procore.github.io/globalization-toolkit/types/DateTimeOptions.html).
261
+ The DateTimeFormatter has 3 available functions:
262
+ - `formatDateTime(value: Date)`,
252
263
  - `formatDateTimeToParts(value: Date)`, and
253
- - `getStartDayOfTheWeek()`
254
-
264
+ - `getStartDayOfTheWeek()`
265
+
255
266
  The DateTimeOptions can be used in two ways, but the two options cannot be combined. This follows the pattern of Intl.DateTimeFormat.
256
267
  1. Style Options:
257
268
  - timeStyle: 'short', 'medium', 'long', 'full'
@@ -265,8 +276,8 @@ The DateTimeOptions can be used in two ways, but the two options cannot be combi
265
276
  - minute: 'numeric', '2-digit'
266
277
  - second: 'numeric', '2-digit'
267
278
 
268
- Below code blocks display usage of the DateTimeFormatter class and available functions.
269
- [formatDateTime(value: Date)](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#formatDateTime)
279
+ Below code blocks display usage of the DateTimeFormatter class and available functions.
280
+ [formatDateTime(value: Date)](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#formatDateTime)
270
281
  SIMPLE OPTIONS
271
282
  ```ts
272
283
  import { DateTimeFormatter } from '@procore/globalization-toolkit';
@@ -315,7 +326,7 @@ const dateTimeOptions = {
315
326
  const formatter = new DateTimeFormatter(dateTimeOptions);
316
327
 
317
328
  console.log(formatter.formatDateTime(value))
318
- /** expected output:
329
+ /** expected output:
319
330
  * [ { type: "weekday", value: "Saturday", },
320
331
  * { type: "literal", value: ", ", },
321
332
  * { type: "day", value: "5", },
@@ -330,8 +341,8 @@ console.log(formatter.formatDateTime(value))
330
341
  **/
331
342
  ```
332
343
  [formatDateTimeToLocalISOString(value: Date)]
333
- This function returns a local ISO 8601 string.
334
- This method was designed only for internal purposes.
344
+ This function returns a local ISO 8601 string.
345
+ This method was designed only for internal purposes.
335
346
  Must not be used to display dates in the Procore UI.
336
347
 
337
348
  ```ts
@@ -347,7 +358,7 @@ const formatter = new DateTimeFormatter(dateTimeOptions);
347
358
  console.log(formatter.formatDateTimeToLocalISOString(value))
348
359
  // expected output: "1955-11-05";
349
360
  ```
350
- [getStartDayOfTheWeek()](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#getStartDayOfTheWeek)
361
+ [getStartDayOfTheWeek()](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#getStartDayOfTheWeek)
351
362
  This function returns an index value representing the start day of the week on the locale's calendar { Sunday: 0, Monday: 1 ...etc }
352
363
 
353
364
  ```ts
@@ -370,6 +381,60 @@ const value = new Date(Date.UTC(1955, 10, 5, 6, 0, 16, 738));
370
381
  const dateTimeOptions = { locale: "en-US", timeZone: "UTC" };
371
382
 
372
383
  console.log(formatDateTime(value, dateTimeOptions)) // expected output: 11/5/1955
384
+ ```
385
+ ### GetOverrideLocale Function
386
+ The getOverrideLocale function returns a mapped locale based on predefined settings.
387
+ If the environment locale isn't directly supported, it provides a fallback from the predefined mappings.
388
+
389
+ Note: This override locale is meant for translation and should not be used directly with GTK formatting functions. For formatting, refer to the [Sanitizing Locales](#sanitizing-locales) section.
390
+
391
+ #### Usage
392
+ Here is an example of how to use the getOverrideLocale function:
393
+
394
+ ```ts
395
+ import { getOverrideLocale } from '@procore/globalization-toolkit';
396
+
397
+ // Example 1: Known supported locale
398
+ const locale1 = getOverrideLocale('ja-JP');
399
+ console.log(locale1); // Output: ja-JP
400
+
401
+ // Example 2: Fallback locale
402
+ const locale2 = getOverrideLocale('en-AE');
403
+ console.log(locale2); // Output: en-GB
404
+
405
+ // Example 3: Unknown locale
406
+ const locale3 = getOverrideLocale('unknown');
407
+ console.log(locale3); // Output: en
408
+
409
+ ```
410
+
411
+ ### `getFallbackLocaleList` Function
412
+ The `getFallbackLocaleList` function returns a list of locales which should have translation files loaded in the client, including fallbacks when available in addition to the English source.
413
+ If the environment locale is not supported directly, it overrides the locale according to predefined mappings.
414
+
415
+ ***Important***
416
+ This method should be only used by clients that don't support custom locales.
417
+
418
+ The example below shows usage of the standalone function: `getFallbackLocaleList()`.
419
+ ```ts
420
+ import { getFallbackLocaleList } from '@procore/globalization-toolkit';
421
+
422
+ // Example 1: Known supported locale
423
+ const locale1 = getFallbackLocaleList('ja-JP');
424
+ console.log(locale1); // Output: ['ja-JP', 'en']
425
+
426
+ // Example 2: Known supported locale with fallback available
427
+ const locale2 = getOverrideLocale('es-ES');
428
+ console.log(locale2); // Output: ['es-ES', 'es', 'en']
429
+
430
+ // Example 3: Unsupported locale
431
+ const locale3 = getOverrideLocale('en-AE');
432
+ console.log(locale3); // Output: ['en-GB', 'en']
433
+
434
+ // Example 4: Unknown/Custom locale (eg. en-owner)
435
+ const locale4 = getOverrideLocale('unknown');
436
+ console.log(locale4); // Output: ['en']
437
+
373
438
  ```
374
439
  ## Polyfills
375
440
  The GTK implementation relies heavily on [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl) functionality. This is generally well-supported by browsers, but depending on the browser versions you intend to support and GTK features you plan to use, it may require polyfills. In particular, consumers have seen issues with Safari versions <14.1. If you intend to support older browser versions, we recommend using the [Format.JS polyfills](https://formatjs.io/docs/polyfills), of which `NumberFormat`, `PluralRules`, `Locale`, `GetCanonicalLocales`, and `supportedValuesOf` are the ones relevant to GTK. Please reach out if you have questions.
@@ -410,7 +475,7 @@ $ npm run test -- -u
410
475
 
411
476
  To check formatting run `npm run lint:check` and `npm run format:check`.
412
477
 
413
- To check dependencies run
478
+ To check dependencies run
414
479
 
415
480
  ```sh
416
481
  $ npm run depcheck
@@ -419,7 +484,7 @@ $ npm run depcheck
419
484
  # Documentation
420
485
 
421
486
  We auto-generate documentation on what the Globalization Toolkit offers by utilizing [`Typedoc`](https://typedoc.org/example/).
422
- Once you generate the updated documentation, you can navigate it locally by opening 'docs/index.html'.
487
+ Once you generate the updated documentation, you can navigate it locally by opening 'docs/index.html'.
423
488
 
424
489
  To generate updated documentation run:
425
490
 
@@ -458,4 +523,4 @@ Procore - building the software that builds the world.
458
523
  Learn more about the #1 most widely used construction management software at [procore.com](https://www.procore.com/)
459
524
 
460
525
 
461
- [changesets]: https://github.com/changesets/changesets/
526
+ [changesets]: https://github.com/changesets/changesets/
@@ -0,0 +1,3 @@
1
+ import { Locale } from "./GetOverrideLocale.types";
2
+ export declare function getOverrideLocale(envLocale: string): Locale;
3
+ export declare function getFallbackLocaleList(envLocale: string): Locale[];
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getFallbackLocaleList = exports.getOverrideLocale = void 0;
4
+ const SUPPORTED_LOCALES = [
5
+ "de-DE",
6
+ "en-AU",
7
+ "en-CA",
8
+ "en-GB",
9
+ "en",
10
+ "es-ES",
11
+ "es",
12
+ "fr-CA",
13
+ "fr-FR",
14
+ "is-IS",
15
+ "ja-JP",
16
+ "pseudo",
17
+ "pt-BR",
18
+ "th-TH",
19
+ "zh-SG",
20
+ ];
21
+ const OVERWRITE_LOCALE_MAP = {
22
+ "en-AE": "en-GB",
23
+ "en-SG": "en-GB",
24
+ "es-419": "es",
25
+ };
26
+ function getOverrideLocale(envLocale) {
27
+ if (SUPPORTED_LOCALES.includes(envLocale)) {
28
+ return envLocale;
29
+ }
30
+ if (OVERWRITE_LOCALE_MAP[envLocale]) {
31
+ return OVERWRITE_LOCALE_MAP[envLocale];
32
+ }
33
+ return "en";
34
+ }
35
+ exports.getOverrideLocale = getOverrideLocale;
36
+ const FALLBACK_LOCALE_MAP = {
37
+ "es-ES": "es",
38
+ "fr-FR": "fr-CA",
39
+ };
40
+ function getFallbackLocaleList(envLocale) {
41
+ const validLocale = getOverrideLocale(envLocale);
42
+ if (validLocale === "en") {
43
+ return ["en"];
44
+ }
45
+ if (FALLBACK_LOCALE_MAP[validLocale]) {
46
+ return [validLocale, FALLBACK_LOCALE_MAP[validLocale], "en"];
47
+ }
48
+ return [validLocale, "en"];
49
+ }
50
+ exports.getFallbackLocaleList = getFallbackLocaleList;
51
+ //# sourceMappingURL=GetOverrideLocale.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetOverrideLocale.js","sourceRoot":"","sources":["../../src/getOverrideLocale/GetOverrideLocale.ts"],"names":[],"mappings":";;;AAGA,MAAM,iBAAiB,GAAa;IAClC,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,IAAI;IACJ,OAAO;IACP,IAAI;IACJ,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,QAAQ;IACR,OAAO;IACP,OAAO;IACP,OAAO;CACR,CAAC;AAMF,MAAM,oBAAoB,GAA2B;IACnD,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;CACN,CAAC;AAOX,SAAgB,iBAAiB,CAAC,SAAiB;IACjD,IAAI,iBAAiB,CAAC,QAAQ,CAAC,SAAmB,CAAC,EAAE;QACnD,OAAO,SAAmB,CAAC;KAC5B;IACD,IAAI,oBAAoB,CAAC,SAAS,CAAC,EAAE;QACnC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;KACxC;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AATD,8CASC;AAKD,MAAM,mBAAmB,GAA2B;IAClD,OAAO,EAAE,IAAI;IACb,OAAO,EAAE,OAAO;CACjB,CAAC;AAOF,SAAgB,qBAAqB,CAAC,SAAiB;IAErD,MAAM,WAAW,GAAG,iBAAiB,CAAC,SAAS,CAAC,CAAC;IAEjD,IAAI,WAAW,KAAK,IAAI,EAAE;QACxB,OAAO,CAAC,IAAI,CAAC,CAAC;KACf;IACD,IAAI,mBAAmB,CAAC,WAAW,CAAC,EAAE;QACpC,OAAO,CAAC,WAAW,EAAE,mBAAmB,CAAC,WAAW,CAAC,EAAE,IAAI,CAAC,CAAC;KAC9D;IAED,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;AAC7B,CAAC;AAZD,sDAYC"}
@@ -0,0 +1 @@
1
+ export type Locale = "de-DE" | "en-AE" | "en-AU" | "en-CA" | "en-GB" | "en-SG" | "en" | "es-ES" | "es" | "fr-CA" | "fr-FR" | "is-IS" | "ja-JP" | "pt-BR" | "th-TH" | "zh-SG" | "pseudo";
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=GetOverrideLocale.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetOverrideLocale.types.js","sourceRoot":"","sources":["../../src/getOverrideLocale/GetOverrideLocale.types.ts"],"names":[],"mappings":""}
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export { NumberFormatter, formatNumber, formatNumberToParts, parseNumber, getNumberSeparators, } from "./numbers/NumberFormatter";
2
2
  export { CurrencyFormatter, formatCurrency, formatCurrencyToParts, parseCurrency, getCurrencySeparators, getSupportedCurrencies, } from "./numbers/CurrencyFormatter";
3
3
  export { DateTimeFormatter, formatDateTime, formatDateTimeToLocalISOString, formatDateTimeToParts, getStartDayOfTheWeek, getDatePartsWithPlaceholders, getDatePlaceholder, } from "./dateTimes/DateTimeFormatter";
4
+ export { getOverrideLocale, getFallbackLocaleList, } from "./getOverrideLocale/GetOverrideLocale";
4
5
  export type { Percent, NumberOptions, NumberFormatPart, Separators, } from "./numbers/Number.types";
5
6
  export type { CurrencyDisplay, CurrencySign, CurrencyOptions, } from "./numbers/Currency.types";
6
7
  export type { DateTimeStyle, NumericTwoDigit, DateStyle, TimeStyle, TimeZoneName, Weekday, Year, Month, Day, Hour, Minute, Second, DateLabelOptions, DateTimeOptionsBasic, DateTimeOptionsStyle, DateTimeOptionsComponentsAll, DateTimeOptionsComponentsWeekdayYearMonthDay, DateTimeOptionsComponentsYearMonthDay, DateTimeOptionsComponentsYearMonth, DateTimeOptionsComponentsMonthDay, DateTimeOptionsComponentsHourMinuteSecond, DateTimeOptionsComponentsHourMinute, DateTimeOptions, DateTimeFormatPart, } from "./dateTimes/DateTime.types";
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  });
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.getDatePlaceholder = exports.getDatePartsWithPlaceholders = exports.getStartDayOfTheWeek = exports.formatDateTimeToParts = exports.formatDateTimeToLocalISOString = exports.formatDateTime = exports.DateTimeFormatter = exports.getSupportedCurrencies = exports.getCurrencySeparators = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = exports.getNumberSeparators = exports.parseNumber = exports.formatNumberToParts = exports.formatNumber = exports.NumberFormatter = void 0;
12
+ exports.getFallbackLocaleList = exports.getOverrideLocale = exports.getDatePlaceholder = exports.getDatePartsWithPlaceholders = exports.getStartDayOfTheWeek = exports.formatDateTimeToParts = exports.formatDateTimeToLocalISOString = exports.formatDateTime = exports.DateTimeFormatter = exports.getSupportedCurrencies = exports.getCurrencySeparators = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = exports.getNumberSeparators = exports.parseNumber = exports.formatNumberToParts = exports.formatNumber = exports.NumberFormatter = void 0;
13
13
  var NumberFormatter_1 = require("./numbers/NumberFormatter");
14
14
  Object.defineProperty(exports, "NumberFormatter", { enumerable: true, get: function () { return NumberFormatter_1.NumberFormatter; } });
15
15
  Object.defineProperty(exports, "formatNumber", { enumerable: true, get: function () { return NumberFormatter_1.formatNumber; } });
@@ -31,6 +31,9 @@ Object.defineProperty(exports, "formatDateTimeToParts", { enumerable: true, get:
31
31
  Object.defineProperty(exports, "getStartDayOfTheWeek", { enumerable: true, get: function () { return DateTimeFormatter_1.getStartDayOfTheWeek; } });
32
32
  Object.defineProperty(exports, "getDatePartsWithPlaceholders", { enumerable: true, get: function () { return DateTimeFormatter_1.getDatePartsWithPlaceholders; } });
33
33
  Object.defineProperty(exports, "getDatePlaceholder", { enumerable: true, get: function () { return DateTimeFormatter_1.getDatePlaceholder; } });
34
+ var GetOverrideLocale_1 = require("./getOverrideLocale/GetOverrideLocale");
35
+ Object.defineProperty(exports, "getOverrideLocale", { enumerable: true, get: function () { return GetOverrideLocale_1.getOverrideLocale; } });
36
+ Object.defineProperty(exports, "getFallbackLocaleList", { enumerable: true, get: function () { return GetOverrideLocale_1.getFallbackLocaleList; } });
34
37
  exports.r2gSmokeTest = () => __awaiter(void 0, void 0, void 0, function* () {
35
38
  return Promise.resolve(true);
36
39
  });
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAMmC;AALjC,kHAAA,eAAe,OAAA;AACf,+GAAA,YAAY,OAAA;AACZ,sHAAA,mBAAmB,OAAA;AACnB,8GAAA,WAAW,OAAA;AACX,sHAAA,mBAAmB,OAAA;AAErB,iEAOqC;AANnC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,0HAAA,qBAAqB,OAAA;AACrB,kHAAA,aAAa,OAAA;AACb,0HAAA,qBAAqB,OAAA;AACrB,2HAAA,sBAAsB,OAAA;AAExB,mEAQuC;AAPrC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,mIAAA,8BAA8B,OAAA;AAC9B,0HAAA,qBAAqB,OAAA;AACrB,yHAAA,oBAAoB,OAAA;AACpB,iIAAA,4BAA4B,OAAA;AAC5B,uHAAA,kBAAkB,OAAA;AAwCpB,OAAO,CAAC,YAAY,GAAG,GAA2B,EAAE;IAClD,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AAC/B,CAAC,CAAA,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAMmC;AALjC,kHAAA,eAAe,OAAA;AACf,+GAAA,YAAY,OAAA;AACZ,sHAAA,mBAAmB,OAAA;AACnB,8GAAA,WAAW,OAAA;AACX,sHAAA,mBAAmB,OAAA;AAErB,iEAOqC;AANnC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,0HAAA,qBAAqB,OAAA;AACrB,kHAAA,aAAa,OAAA;AACb,0HAAA,qBAAqB,OAAA;AACrB,2HAAA,sBAAsB,OAAA;AAExB,mEAQuC;AAPrC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,mIAAA,8BAA8B,OAAA;AAC9B,0HAAA,qBAAqB,OAAA;AACrB,yHAAA,oBAAoB,OAAA;AACpB,iIAAA,4BAA4B,OAAA;AAC5B,uHAAA,kBAAkB,OAAA;AAEpB,2EAG+C;AAF7C,sHAAA,iBAAiB,OAAA;AACjB,0HAAA,qBAAqB,OAAA;AAwCvB,OAAO,CAAC,YAAY,GAAG,GAA2B,EAAE;IAClD,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AAC/B,CAAC,CAAA,CAAC"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/Formatter.types.ts","../src/FormatterUtils.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/Number.types.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/numbers/SupportedCurrencies.ts","../src/numbers/CurrencyUtils.ts","../src/numbers/CurrencyFormatter.ts","../node_modules/weekstart/index.d.ts","../src/dateTimes/DateTime.types.ts","../src/dateTimes/DateTimeUtils.ts","../src/dateTimes/DateTimeFormatter.ts","../src/index.ts","../src/test/TestBuilder.ts","../src/numbers/NumberFormatter.test.constants.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"9b59c27b4ef90cbb4a98cbc3d444d85725658f904490ccc45e385304d1a6690e","signature":"d8e6d454aa83a6973a99566dc12fc3995cdd554e08995ac8b8b7eaf081cbf615"},{"version":"343549fdf2f9d7e32b3101bbade018e3294629f52b3a3a4c708eb5b60d6002ba","signature":"801178d578771b25d7e4d204a68eb723ee5c1612fe28610b9b9f2cd589f5de31"},"2bcd9f3ac3b0ac799fcc507c899e1ef8b1ddd5b8914098ff93208139b3089930",{"version":"74888ee11b1ca4684607fe7cbabb38bff0b4e5734afad5e11493ad612f37e1da","signature":"aa15aad042596c35de7f81d53322d5093c33e13f647519717b97d8071a7b806a"},{"version":"0f1dd3d579222e573e10fad631dfc2dcb838a8df4146542fa0c79fe9c234d83c","signature":"f4818db57a5012eff53662a3fc2d0ef646f3f49bc8f5a587007a16d0ab518fcb"},{"version":"79f18663736f5a6d27639cc895d6b8e4084ff58548fa638935938c33d4970ea4","signature":"e363d733ac364e08132b17fbb9f4bd04cf142a1fb6ee2ae78ed2fdf6a65b7603"},{"version":"c065683dcfeed2135593f14c51e12dcf910156fb7bc6b9dc1839a5cc21160e56","signature":"297292152d0603ecbda48142e2cdd8dd70bcd471cbb1e447afa76c68bf57a5f7"},{"version":"78f50ad73cf79ce627e1456c768ce46c3dd6ef36fc527cd13a0322d8b9486fcd","signature":"633d5e4f3603c3d2acb72fce4866c0ab79987cd32b55dfd0919f07b88e2db31f"},{"version":"12412733f4e0ff441ad23c88f4191da6426736216951b6a9a8ba3f6aa1d09d07","signature":"0797cb460c903afc67bf76091dcffea48d8964963d4f0703882c4a83b1e1a137"},{"version":"a42aefb96132d6b0f654a5067f26c140f3be389a4994f5c240f04a6babedb331","signature":"1359d06b8007e756a74e95379aa560e08ff0f6fbfcc824476ee02ef6ecbb6ba6"},"296ce8ff193943f93f6ed81a911c5afc354041d4a3b208d0434525af1f3d765b",{"version":"d1d7f39a5a68fff46c6f3e07a943e26318942c8dffce28aebd30d8bb66fe3592","signature":"1108cf34db5b31aebb41e954643f964c98ea2a333edb0bd8dd80f013d922795b"},{"version":"09c122d959fd4ee7f3088e9376fe23c85784808fecbba7ee12336b8fbba3674a","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"262badc3c3748d43a827d20c03515709e38eb6ec6746e8de4a05cdb639b19d01","signature":"430a2c3db0a78906a65abbfe4c21ae61a9e3ed344766f3a860a8bb4308da5895"},{"version":"008c9ed55c916462c5196ee49757b657f93fc5f4db98f95abb41258e27c1d058","signature":"79c8de615a5ccd090b8306fa8be855bcc3020943dd86c258f9ef7979cea46882"},{"version":"e4afd5c81b7f1d948659a36f76980904861388eb1210305cdd970578e15d65e2","signature":"639c571052bd81c7d716aa580043a6323bf61995c87fabacf8c9ae484f5230b9"},{"version":"0d9ccedba592fd7b72e801bb474aafdbba6944633825aa24ce1f2360b04ea7b7","signature":"080290c451b61bfa03dd7b32088838aaf612b3f4831aefcb299b30905ff21973"},"66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"root":[65,66,[68,74],[76,81]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[128],[128,138],[128,140,143],[82,128],[85,128],[86,91,119,128],[87,98,99,106,116,127,128],[87,88,98,106,128],[89,128],[90,91,99,107,128],[91,116,124,128],[92,94,98,106,128],[93,128],[94,95,128],[98,128],[96,98,128],[98,99,100,116,127,128],[98,99,100,113,116,119,128],[128,132],[94,98,101,106,116,127,128],[98,99,101,102,106,116,124,127,128],[101,103,116,124,127,128],[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134],[98,104,128],[105,127,128],[94,98,106,116,128],[107,128],[108,128],[85,109,128],[110,126,128,132],[111,128],[112,128],[98,113,114,128],[113,115,128,130],[86,98,116,117,118,119,128],[86,116,118,128],[116,117,128],[119,128],[120,128],[116,128],[98,122,123,128],[122,123,128],[91,106,116,124,128],[125,128],[106,126,128],[86,101,112,127,128],[91,128],[116,128,129],[128,130],[128,131],[86,91,98,100,109,116,127,128,130,132],[116,128,133],[128,136,142],[128,140],[128,137,141],[128,139],[65,128],[65,75,76,77,128],[66,76,128],[65,68,70,71,74,76,78,128],[68,128],[66,68,69,71,73,128],[66,69,71,72,128],[68,80,128],[65,66,68,69,128],[66,67,68,128],[65],[65,76],[76],[65,68,70,71,74,76,78],[68],[68,71],[71],[80],[65,68]],"referencedMap":[[136,1],[139,2],[138,1],[67,1],[144,3],[82,4],[83,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,12],[93,13],[94,14],[95,14],[97,15],[96,16],[98,15],[99,17],[100,18],[84,19],[134,1],[101,20],[102,21],[103,22],[135,23],[104,24],[105,25],[106,26],[107,27],[108,28],[109,29],[110,30],[111,31],[112,32],[113,33],[114,33],[115,34],[116,35],[118,36],[117,37],[119,38],[120,39],[121,40],[122,41],[123,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[131,50],[132,51],[133,52],[137,1],[143,53],[141,54],[142,55],[140,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[75,1],[65,1],[66,57],[76,57],[78,58],[77,59],[79,60],[71,61],[74,62],[73,63],[68,57],[81,64],[70,65],[69,66],[72,1],[80,57]],"exportedModulesMap":[[136,1],[139,2],[138,1],[67,1],[144,3],[82,4],[83,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,12],[93,13],[94,14],[95,14],[97,15],[96,16],[98,15],[99,17],[100,18],[84,19],[134,1],[101,20],[102,21],[103,22],[135,23],[104,24],[105,25],[106,26],[107,27],[108,28],[109,29],[110,30],[111,31],[112,32],[113,33],[114,33],[115,34],[116,35],[118,36],[117,37],[119,38],[120,39],[121,40],[122,41],[123,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[131,50],[132,51],[133,52],[137,1],[143,53],[141,54],[142,55],[140,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[75,1],[66,67],[76,67],[78,68],[77,69],[79,70],[71,71],[74,72],[73,73],[68,67],[81,74],[70,75],[69,71],[80,67]],"semanticDiagnosticsPerFile":[136,139,138,67,144,82,83,85,86,87,88,89,90,91,92,93,94,95,97,96,98,99,100,84,134,101,102,103,135,104,105,106,107,108,109,110,111,112,113,114,115,116,118,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,137,143,141,142,140,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,75,65,66,76,78,77,79,71,74,73,68,81,70,69,72,80]},"version":"5.2.2"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/Formatter.types.ts","../src/FormatterUtils.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/Number.types.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/numbers/SupportedCurrencies.ts","../src/numbers/CurrencyUtils.ts","../src/numbers/CurrencyFormatter.ts","../node_modules/weekstart/index.d.ts","../src/dateTimes/DateTime.types.ts","../src/dateTimes/DateTimeUtils.ts","../src/dateTimes/DateTimeFormatter.ts","../src/getOverrideLocale/GetOverrideLocale.types.ts","../src/getOverrideLocale/GetOverrideLocale.ts","../src/index.ts","../src/test/TestBuilder.ts","../src/numbers/NumberFormatter.test.constants.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"9b59c27b4ef90cbb4a98cbc3d444d85725658f904490ccc45e385304d1a6690e","signature":"d8e6d454aa83a6973a99566dc12fc3995cdd554e08995ac8b8b7eaf081cbf615"},{"version":"343549fdf2f9d7e32b3101bbade018e3294629f52b3a3a4c708eb5b60d6002ba","signature":"801178d578771b25d7e4d204a68eb723ee5c1612fe28610b9b9f2cd589f5de31"},"ef50b93a202c92c16ba0aa66ac03ded00a213eea4c2fa30adbc191a944f76f12",{"version":"74888ee11b1ca4684607fe7cbabb38bff0b4e5734afad5e11493ad612f37e1da","signature":"aa15aad042596c35de7f81d53322d5093c33e13f647519717b97d8071a7b806a"},{"version":"6f599e09bd5c8bb699f199692583ef409f8e98498bb940f3d60f0169d204cf12","signature":"f4818db57a5012eff53662a3fc2d0ef646f3f49bc8f5a587007a16d0ab518fcb"},{"version":"8a0ea08e9c5301bd70c271858f144126215deb9e0e0071664058b2e0aa83f2c6","signature":"e363d733ac364e08132b17fbb9f4bd04cf142a1fb6ee2ae78ed2fdf6a65b7603"},{"version":"c065683dcfeed2135593f14c51e12dcf910156fb7bc6b9dc1839a5cc21160e56","signature":"297292152d0603ecbda48142e2cdd8dd70bcd471cbb1e447afa76c68bf57a5f7"},{"version":"78f50ad73cf79ce627e1456c768ce46c3dd6ef36fc527cd13a0322d8b9486fcd","signature":"633d5e4f3603c3d2acb72fce4866c0ab79987cd32b55dfd0919f07b88e2db31f"},{"version":"082b0b646f06aca19d58073538a5603829411751f0bf0733a2f2962631f79cb0","signature":"0797cb460c903afc67bf76091dcffea48d8964963d4f0703882c4a83b1e1a137"},{"version":"bf71558eae87c1e3ce202c96caab54d27d7290dfbf57e1fad060d6c99c9eb443","signature":"1359d06b8007e756a74e95379aa560e08ff0f6fbfcc824476ee02ef6ecbb6ba6"},"296ce8ff193943f93f6ed81a911c5afc354041d4a3b208d0434525af1f3d765b",{"version":"d1d7f39a5a68fff46c6f3e07a943e26318942c8dffce28aebd30d8bb66fe3592","signature":"1108cf34db5b31aebb41e954643f964c98ea2a333edb0bd8dd80f013d922795b"},{"version":"e5d29677c5dd7990fe27991d7dcf86ef254e8efafffbbe3e96c5bc0c382e59dd","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"73c71405fc56891f9d08ea2aa9529f8daef961655b0dc0464a29ea5d344a2ca3","signature":"430a2c3db0a78906a65abbfe4c21ae61a9e3ed344766f3a860a8bb4308da5895"},{"version":"a4921f0fef3b21366437e24ef80d843ff41ff953a3f4566eef517417b4853bb6","signature":"cf86d2ed97e5853632ba5ba70229f0a437401737f1159aad35d3bc1ab7ad6e65"},{"version":"3877beccf6eb942e82ac8868a0bae8ddfb485ce14f28a57af2d8748a26a040fe","signature":"4f06877f36d992a7d1c25c240807bd3b8344d87523c0651fd8ffe282a4d83401"},{"version":"35c1dd23221b9887257a27341fb61c0cfd68d35c8a16d3c102b9d2a262ef2155","signature":"11d28c303e86b1be95516903cdf43924d5547d2c28b72a865c68d05d38e53c7e"},{"version":"1f656f6be446c549fa0dfae6db91afadbf7ce3b580f4f00e7849e084a0ab4ad4","signature":"639c571052bd81c7d716aa580043a6323bf61995c87fabacf8c9ae484f5230b9"},{"version":"0d9ccedba592fd7b72e801bb474aafdbba6944633825aa24ce1f2360b04ea7b7","signature":"080290c451b61bfa03dd7b32088838aaf612b3f4831aefcb299b30905ff21973"},"66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"root":[65,66,[68,74],[76,83]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[130],[130,140],[130,142,145],[84,130],[87,130],[88,93,121,130],[89,100,101,108,118,129,130],[89,90,100,108,130],[91,130],[92,93,101,109,130],[93,118,126,130],[94,96,100,108,130],[95,130],[96,97,130],[100,130],[98,100,130],[100,101,102,118,129,130],[100,101,102,115,118,121,130],[130,134],[96,100,103,108,118,129,130],[100,101,103,104,108,118,126,129,130],[103,105,118,126,129,130],[84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136],[100,106,130],[107,129,130],[96,100,108,118,130],[109,130],[110,130],[87,111,130],[112,128,130,134],[113,130],[114,130],[100,115,116,130],[115,117,130,132],[88,100,118,119,120,121,130],[88,118,120,130],[118,119,130],[121,130],[122,130],[118,130],[100,124,125,130],[124,125,130],[93,108,118,126,130],[127,130],[108,128,130],[88,103,114,129,130],[93,130],[118,130,131],[130,132],[130,133],[88,93,100,102,111,118,129,130,132,134],[118,130,135],[130,138,144],[130,142],[130,139,143],[130,141],[65,130],[65,75,76,77,130],[66,76,130],[79,130],[65,68,70,71,74,76,78,80,130],[68,130],[66,68,69,71,73,130],[66,69,71,72,130],[68,82,130],[65,66,68,69,130],[66,67,68,130],[65],[65,76],[76],[79],[65,68,70,71,74,76,78,80],[68],[68,71],[71],[82],[65,68]],"referencedMap":[[138,1],[141,2],[140,1],[67,1],[146,3],[84,4],[85,4],[87,5],[88,6],[89,7],[90,8],[91,9],[92,10],[93,11],[94,12],[95,13],[96,14],[97,14],[99,15],[98,16],[100,15],[101,17],[102,18],[86,19],[136,1],[103,20],[104,21],[105,22],[137,23],[106,24],[107,25],[108,26],[109,27],[110,28],[111,29],[112,30],[113,31],[114,32],[115,33],[116,33],[117,34],[118,35],[120,36],[119,37],[121,38],[122,39],[123,40],[124,41],[125,42],[126,43],[127,44],[128,45],[129,46],[130,47],[131,48],[132,49],[133,50],[134,51],[135,52],[139,1],[145,53],[143,54],[144,55],[142,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[75,1],[65,1],[66,57],[76,57],[78,58],[77,59],[80,60],[79,1],[81,61],[71,62],[74,63],[73,64],[68,57],[83,65],[70,66],[69,67],[72,1],[82,57]],"exportedModulesMap":[[138,1],[141,2],[140,1],[67,1],[146,3],[84,4],[85,4],[87,5],[88,6],[89,7],[90,8],[91,9],[92,10],[93,11],[94,12],[95,13],[96,14],[97,14],[99,15],[98,16],[100,15],[101,17],[102,18],[86,19],[136,1],[103,20],[104,21],[105,22],[137,23],[106,24],[107,25],[108,26],[109,27],[110,28],[111,29],[112,30],[113,31],[114,32],[115,33],[116,33],[117,34],[118,35],[120,36],[119,37],[121,38],[122,39],[123,40],[124,41],[125,42],[126,43],[127,44],[128,45],[129,46],[130,47],[131,48],[132,49],[133,50],[134,51],[135,52],[139,1],[145,53],[143,54],[144,55],[142,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[75,1],[66,68],[76,68],[78,69],[77,70],[80,71],[81,72],[71,73],[74,74],[73,75],[68,68],[83,76],[70,77],[69,73],[82,68]],"semanticDiagnosticsPerFile":[138,141,140,67,146,84,85,87,88,89,90,91,92,93,94,95,96,97,99,98,100,101,102,86,136,103,104,105,137,106,107,108,109,110,111,112,113,114,115,116,117,118,120,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,139,145,143,144,142,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,75,65,66,76,78,77,80,79,81,71,74,73,68,83,70,69,72,82]},"version":"5.2.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@procore/globalization-toolkit",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -14,14 +14,16 @@
14
14
  "lint": "eslint \"src/**/*.ts\" --fix",
15
15
  "lint:check": "eslint \"src/**/*.ts\"",
16
16
  "test": "jest --coverage",
17
- "prepare": "husky install",
18
- "typedoc": "typedoc src/index.ts"
17
+ "prepare": "husky",
18
+ "typedoc": "typedoc src/index.ts",
19
+ "commitlint": "commitlint --edit"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",
22
23
  "url": "git+https://github.com/procore/globalization-toolkit.git"
23
24
  },
24
25
  "publishConfig": {
26
+ "access": "public",
25
27
  "registry": "https://registry.npmjs.org/",
26
28
  "tag": "latest"
27
29
  },
@@ -31,6 +33,8 @@
31
33
  "license": "SEE LICENSE IN LICENSE",
32
34
  "devDependencies": {
33
35
  "@changesets/cli": "^2.27.1",
36
+ "@commitlint/cli": "^19.2.2",
37
+ "@commitlint/config-conventional": "^19.2.2",
34
38
  "@jest/types": "^28.1.3",
35
39
  "@types/big.js": "^6.1.6",
36
40
  "@types/jest": "^28.1.7",
@@ -40,17 +44,17 @@
40
44
  "eslint": "^8.27.0",
41
45
  "eslint-config-prettier": "^9.1.0",
42
46
  "eslint-plugin-import": "^2.26.0",
43
- "eslint-plugin-prettier": "^4.2.1",
44
- "husky": "^8.0.2",
47
+ "eslint-plugin-prettier": "^5.1.3",
48
+ "husky": "^9.0.11",
45
49
  "jest": "^28.1.3",
46
- "prettier": "^2.7.1",
50
+ "prettier": "^3.2.5",
47
51
  "ts-jest": "^28.0.8",
48
52
  "ts-node": "^10.9.1",
49
- "typedoc": "^0.25.4",
53
+ "typedoc": "^0.26.3",
50
54
  "typescript": "^5.2.2"
51
55
  },
52
56
  "dependencies": {
53
57
  "big.js": "^6.2.1",
54
58
  "weekstart": "^2.0.0"
55
59
  }
56
- }
60
+ }
@@ -13,7 +13,7 @@ sonar.projectKey=globalization-toolkit
13
13
  sonar.sources=./src
14
14
  # Optionally, can exclude certain files from those included in the line above.
15
15
  # i.e., Everything under your sonar.sources directory will be included in analysis except the files with paths that match your exclusion pattern.
16
- # sonar.exclusions=**/*.test.js, **/*.test.ts, **/*.spec.ts
16
+ sonar.exclusions=**/*.test.js, **/*.test.ts, **/*.spec.ts
17
17
 
18
18
  # Comma-separated paths to directories containing test source files
19
19
  # sonar.tests=./src
@@ -10,5 +10,6 @@
10
10
  "**/__mocks__/*",
11
11
  "**/__tests__/*",
12
12
  "jest.config.ts",
13
+ "commitlint.config.js",
13
14
  ]
14
- }
15
+ }