@formatjs/intl-locale
Advanced tools
Comparing version 4.2.6 to 4.2.7
@@ -31,3 +31,3 @@ export interface IntlLocaleOptions { | ||
get collation(): string | undefined; | ||
get caseFirst(): "upper" | "lower" | "false" | undefined; | ||
get caseFirst(): 'upper' | 'lower' | 'false' | undefined; | ||
get numeric(): boolean | undefined; | ||
@@ -48,3 +48,3 @@ get numberingSystem(): string | undefined; | ||
get firstDayOfWeek(): string | undefined; | ||
get hourCycle(): "h11" | "h12" | "h23" | "h24" | undefined; | ||
get hourCycle(): 'h11' | 'h12' | 'h23' | 'h24' | undefined; | ||
/** | ||
@@ -79,3 +79,5 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars | ||
*/ | ||
getTextInfo(): any; | ||
getTextInfo(): { | ||
direction: string; | ||
}; | ||
/** | ||
@@ -85,6 +87,21 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo | ||
*/ | ||
getWeekInfo(): any; | ||
static relevantExtensionKeys: readonly ["ca", "co", "hc", "kf", "kn", "nu", "fw"]; | ||
getWeekInfo(): { | ||
firstDay: string; | ||
weekend: { | ||
start: string; | ||
end: string; | ||
}; | ||
minimalDays: number; | ||
}; | ||
static relevantExtensionKeys: readonly [ | ||
'ca', | ||
'co', | ||
'hc', | ||
'kf', | ||
'kn', | ||
'nu', | ||
'fw' | ||
]; | ||
static readonly polyfilled = true; | ||
} | ||
export default Locale; |
@@ -31,3 +31,3 @@ export interface IntlLocaleOptions { | ||
get collation(): string | undefined; | ||
get caseFirst(): "upper" | "lower" | "false" | undefined; | ||
get caseFirst(): 'upper' | 'lower' | 'false' | undefined; | ||
get numeric(): boolean | undefined; | ||
@@ -48,3 +48,3 @@ get numberingSystem(): string | undefined; | ||
get firstDayOfWeek(): string | undefined; | ||
get hourCycle(): "h11" | "h12" | "h23" | "h24" | undefined; | ||
get hourCycle(): 'h11' | 'h12' | 'h23' | 'h24' | undefined; | ||
/** | ||
@@ -79,3 +79,5 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars | ||
*/ | ||
getTextInfo(): any; | ||
getTextInfo(): { | ||
direction: string; | ||
}; | ||
/** | ||
@@ -85,6 +87,21 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo | ||
*/ | ||
getWeekInfo(): any; | ||
static relevantExtensionKeys: readonly ["ca", "co", "hc", "kf", "kn", "nu", "fw"]; | ||
getWeekInfo(): { | ||
firstDay: string; | ||
weekend: { | ||
start: string; | ||
end: string; | ||
}; | ||
minimalDays: number; | ||
}; | ||
static relevantExtensionKeys: readonly [ | ||
'ca', | ||
'co', | ||
'hc', | ||
'kf', | ||
'kn', | ||
'nu', | ||
'fw' | ||
]; | ||
static readonly polyfilled = true; | ||
} | ||
export default Locale; |
{ | ||
"name": "@formatjs/intl-locale", | ||
"version": "4.2.6", | ||
"version": "4.2.7", | ||
"description": "Intl.Locale polyfill", | ||
@@ -28,6 +28,6 @@ "keywords": [ | ||
"tslib": "2", | ||
"@formatjs/ecma402-abstract": "2.2.5", | ||
"@formatjs/intl-enumerator": "1.8.5", | ||
"@formatjs/intl-getcanonicallocales": "2.5.3" | ||
"@formatjs/ecma402-abstract": "2.3.0", | ||
"@formatjs/intl-enumerator": "1.8.6", | ||
"@formatjs/intl-getcanonicallocales": "2.5.4" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
1417298
54290
+ Added@formatjs/ecma402-abstract@2.3.0(transitive)
+ Added@formatjs/fast-memoize@2.2.5(transitive)
+ Added@formatjs/intl-enumerator@1.8.6(transitive)
+ Added@formatjs/intl-getcanonicallocales@2.5.4(transitive)
+ Added@formatjs/intl-localematcher@0.5.9(transitive)
+ Addeddecimal.js@10.5.0(transitive)
- Removed@formatjs/ecma402-abstract@2.2.5(transitive)
- Removed@formatjs/fast-memoize@2.2.4(transitive)
- Removed@formatjs/intl-enumerator@1.8.5(transitive)
- Removed@formatjs/intl-getcanonicallocales@2.5.3(transitive)
- Removed@formatjs/intl-localematcher@0.5.8(transitive)