i18next 21.0.0 → 21.0.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 21.0.1
2
+
3
+ - fix typescript typo for skipOnVariables
4
+
1
5
  ### 21.0.0
2
6
 
3
7
  **This is a major breaking release:**
package/index.d.ts CHANGED
@@ -119,9 +119,9 @@ export interface InterpolationOptions {
119
119
 
120
120
  /**
121
121
  * If true, it will skip to interpolate the variables
122
- * @default false
122
+ * @default true
123
123
  */
124
- skipOnVariables?: true;
124
+ skipOnVariables?: boolean;
125
125
  }
126
126
 
127
127
  export interface ReactOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18next",
3
- "version": "21.0.0",
3
+ "version": "21.0.1",
4
4
  "description": "i18next internationalization framework",
5
5
  "main": "./dist/cjs/i18next.js",
6
6
  "module": "./dist/esm/i18next.js",