react-i18next 9.0.9 → 9.0.10

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 9.0.10
2
+
3
+ - typescript: Add TS definition for reportNS prop [699](https://github.com/i18next/react-i18next/pull/699)
4
+
1
5
  ### 9.0.9
2
6
 
3
7
  - typescript: fix: useTranslation hooks typing [698](https://github.com/i18next/react-i18next/pull/698)
package/README.md CHANGED
@@ -54,7 +54,7 @@ Head over to the **interactive playground** at [codesandbox](https://codesandbox
54
54
  - [Ultimate Localization of React (Mobx) App with i18next](https://itnext.io/ultimate-localization-of-react-mobx-app-with-i18next-efab77712149) via itnext.io by Viktor Shevchenko
55
55
  - [Internationalization for react done right Using the i18next i18n ecosystem](https://reactjsexample.com/internationalization-for-react-done-right-using-the-i18next-i18n-ecosystem/) via reactjsexample.com
56
56
  - [Using i18next to translate React.js application](https://codetain.co/2018/05/using-i18next-to-translate-reactjs-application/) via codetain.co by Kasia Dadek
57
- - [Building i18n with Gatsby](https://www.gatsbyjs.org/blog/2017-10-17-building-i18n-with-gatsby/) via gatsby.ort by Samuel Goudie
57
+ - [Building i18n with Gatsby](https://www.gatsbyjs.org/blog/2017-10-17-building-i18n-with-gatsby/) via gatsbyjs.org by Samuel Goudie
58
58
  - [Get your react.js application translated with style](https://medium.com/@jamuhl/get-your-react-js-application-translated-with-style-4ad090aefc2c) by Jan Mühlemann
59
59
  - [Translate your expo.io / react-native mobile application](https://medium.com/@jamuhl/translate-your-expo-io-react-native-mobile-application-aa220b2362d2) by Jan Mühlemann
60
60
  - you're welcome to share your story...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-i18next",
3
- "version": "9.0.9",
3
+ "version": "9.0.10",
4
4
  "description": "Internationalization for react done right. Using the i18next i18n ecosystem.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "types": "src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -89,6 +89,7 @@ export const NamespacesConsumer: React.ComponentClass<NamespacesConsumerProps>;
89
89
  export interface I18nextProviderProps {
90
90
  i18n: i18next.i18n;
91
91
  defaultNS?: string;
92
+ reportNS?: (ns: string) => void;
92
93
  initialI18nStore?: {};
93
94
  initialLanguage?: string;
94
95
  }