use-intl 3.24.0 → 3.25.1
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.
|
@@ -4,6 +4,8 @@ export type { default as Formats } from './Formats';
|
|
|
4
4
|
export type { default as IntlConfig } from './IntlConfig';
|
|
5
5
|
export type { default as DateTimeFormatOptions } from './DateTimeFormatOptions';
|
|
6
6
|
export type { default as NumberFormatOptions } from './NumberFormatOptions';
|
|
7
|
+
export type { default as RelativeTimeFormatOptions } from './RelativeTimeFormatOptions';
|
|
8
|
+
export type { default as Timezone } from './TimeZone';
|
|
7
9
|
export { default as IntlError, IntlErrorCode } from './IntlError';
|
|
8
10
|
export { default as createTranslator } from './createTranslator';
|
|
9
11
|
export { default as createFormatter } from './createFormatter';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function useTimeZone(): import("
|
|
1
|
+
export default function useTimeZone(): import("..").Timezone | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "use-intl",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.25.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"author": "Jan Amann <jan@amann.work>",
|
|
6
6
|
"description": "Internationalization (i18n) for React",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "e7baf7194fd179163bcdee405bb00e49657f09b6"
|
|
74
74
|
}
|