@digitaldefiance/i18n-lib 1.3.3 → 1.3.5
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/README.md +8 -0
- package/dist/plugin-i18n-engine.d.ts +0 -4
- package/dist/plugin-i18n-engine.js +0 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2274,6 +2274,14 @@ For issues, questions, or contributions:
|
|
|
2274
2274
|
|
|
2275
2275
|
## ChangeLog
|
|
2276
2276
|
|
|
2277
|
+
### Version 1.3.5
|
|
2278
|
+
|
|
2279
|
+
- CommonJS
|
|
2280
|
+
|
|
2281
|
+
### Version 1.3.4
|
|
2282
|
+
|
|
2283
|
+
- Deprecate clearAllInstances
|
|
2284
|
+
|
|
2277
2285
|
### Version 1.3.3
|
|
2278
2286
|
|
|
2279
2287
|
- Make LanguageRegistry static
|
|
@@ -129,10 +129,6 @@ export declare class PluginI18nEngine<TLanguages extends string> {
|
|
|
129
129
|
* Clear all component registrations for this instance (useful for testing)
|
|
130
130
|
*/
|
|
131
131
|
clearAllComponents(): void;
|
|
132
|
-
/**
|
|
133
|
-
* Clear all named instances (useful for testing)
|
|
134
|
-
*/
|
|
135
|
-
static clearAllInstances(): void;
|
|
136
132
|
/**
|
|
137
133
|
* Remove a specific named instance
|
|
138
134
|
*/
|
|
@@ -315,13 +315,6 @@ class PluginI18nEngine {
|
|
|
315
315
|
clearAllComponents() {
|
|
316
316
|
this.componentRegistry.clearAllComponents();
|
|
317
317
|
}
|
|
318
|
-
/**
|
|
319
|
-
* Clear all named instances (useful for testing)
|
|
320
|
-
*/
|
|
321
|
-
static clearAllInstances() {
|
|
322
|
-
PluginI18nEngine._instances.clear();
|
|
323
|
-
PluginI18nEngine._defaultKey = null;
|
|
324
|
-
}
|
|
325
318
|
/**
|
|
326
319
|
* Remove a specific named instance
|
|
327
320
|
*/
|