@formatjs/ecma402-abstract 3.0.4 → 3.0.6
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/package.json +2 -2
- package/types/date-time.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/ecma402-abstract",
|
|
3
3
|
"description": "A collection of implementation for ECMAScript abstract operations",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Long Ho <holevietlong@gmail.com",
|
|
7
7
|
"type": "module",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"decimal.js": "^10.4.3",
|
|
15
15
|
"tslib": "^2.8.0",
|
|
16
16
|
"@formatjs/fast-memoize": "3.0.1",
|
|
17
|
-
"@formatjs/intl-localematcher": "0.7.
|
|
17
|
+
"@formatjs/intl-localematcher": "0.7.3"
|
|
18
18
|
},
|
|
19
19
|
"bugs": "https://github.com/formatjs/formatjs/issues",
|
|
20
20
|
"gitHead": "a7842673d8ad205171ad7c8cb8bb2f318b427c0c",
|
package/types/date-time.d.ts
CHANGED
|
@@ -111,6 +111,11 @@ export interface DateTimeFormatLocaleInternalData {
|
|
|
111
111
|
medium: string;
|
|
112
112
|
short: string;
|
|
113
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
* Interval format fallback pattern from CLDR (e.g., "{0} – {1}" for English, "{0}~{1}" for Japanese)
|
|
116
|
+
* Used when no specific interval format is available for a given skeleton
|
|
117
|
+
*/
|
|
118
|
+
intervalFormatFallback: string;
|
|
114
119
|
formats: Record<string, Formats[]>;
|
|
115
120
|
nu: string[];
|
|
116
121
|
hc: string[];
|