inline-i18n-multi-next 0.10.0 → 0.12.0
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/dist/client.d.mts +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.js +28 -0
- package/dist/client.mjs +1 -1
- package/package.json +3 -3
package/dist/client.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { CustomFormatter, DetectLocaleOptions, DetectSource, Dictionaries, Dictionary, Locale, LocaleProvider, PluralRules, RichText, RichTextSegment, T, TranslationVars, Translations, clearDictionaries, clearFormatters, clearICUCache, createScope, detectLocale, en_de, en_es, en_fr, en_ja, en_zh, getDictionary, getLoadedLocales, getLocale, hasTranslation, isLoaded, it, it_de, it_es, it_fr, it_ja, it_zh, ja_es, ja_zh, loadAsync, loadDictionaries, loadDictionary, parseRichText, registerFormatter, restoreLocale, setLocale, t, useDetectedLocale, useLoadDictionaries, useLocale, useRichText, useScopedT, useT, zh_es } from 'inline-i18n-multi-react';
|
|
1
|
+
export { CustomFormatter, DetectLocaleOptions, DetectSource, Dictionaries, Dictionary, Locale, LocaleProvider, PluralRules, RichText, RichTextSegment, T, TranslationVars, Translations, clearDictionaries, clearFormatters, clearICUCache, clearLocaleListeners, clearMissingKeys, createScope, detectLocale, en_de, en_es, en_fr, en_ja, en_zh, getDictionary, getLoadedLocales, getLocale, getLocaleDisplayName, getMissingKeys, getTranslationKeys, hasTranslation, isLoaded, it, it_de, it_es, it_fr, it_ja, it_zh, ja_es, ja_zh, loadAsync, loadDictionaries, loadDictionary, onLocaleChange, parseRichText, registerFormatter, restoreLocale, setLocale, t, trackMissingKeys, useDetectedLocale, useLoadDictionaries, useLocale, useRichText, useScopedT, useT, zh_es } from 'inline-i18n-multi-react';
|
package/dist/client.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { CustomFormatter, DetectLocaleOptions, DetectSource, Dictionaries, Dictionary, Locale, LocaleProvider, PluralRules, RichText, RichTextSegment, T, TranslationVars, Translations, clearDictionaries, clearFormatters, clearICUCache, createScope, detectLocale, en_de, en_es, en_fr, en_ja, en_zh, getDictionary, getLoadedLocales, getLocale, hasTranslation, isLoaded, it, it_de, it_es, it_fr, it_ja, it_zh, ja_es, ja_zh, loadAsync, loadDictionaries, loadDictionary, parseRichText, registerFormatter, restoreLocale, setLocale, t, useDetectedLocale, useLoadDictionaries, useLocale, useRichText, useScopedT, useT, zh_es } from 'inline-i18n-multi-react';
|
|
1
|
+
export { CustomFormatter, DetectLocaleOptions, DetectSource, Dictionaries, Dictionary, Locale, LocaleProvider, PluralRules, RichText, RichTextSegment, T, TranslationVars, Translations, clearDictionaries, clearFormatters, clearICUCache, clearLocaleListeners, clearMissingKeys, createScope, detectLocale, en_de, en_es, en_fr, en_ja, en_zh, getDictionary, getLoadedLocales, getLocale, getLocaleDisplayName, getMissingKeys, getTranslationKeys, hasTranslation, isLoaded, it, it_de, it_es, it_fr, it_ja, it_zh, ja_es, ja_zh, loadAsync, loadDictionaries, loadDictionary, onLocaleChange, parseRichText, registerFormatter, restoreLocale, setLocale, t, trackMissingKeys, useDetectedLocale, useLoadDictionaries, useLocale, useRichText, useScopedT, useT, zh_es } from 'inline-i18n-multi-react';
|
package/dist/client.js
CHANGED
|
@@ -28,6 +28,14 @@ Object.defineProperty(exports, "clearICUCache", {
|
|
|
28
28
|
enumerable: true,
|
|
29
29
|
get: function () { return inlineI18nMultiReact.clearICUCache; }
|
|
30
30
|
});
|
|
31
|
+
Object.defineProperty(exports, "clearLocaleListeners", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return inlineI18nMultiReact.clearLocaleListeners; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "clearMissingKeys", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return inlineI18nMultiReact.clearMissingKeys; }
|
|
38
|
+
});
|
|
31
39
|
Object.defineProperty(exports, "createScope", {
|
|
32
40
|
enumerable: true,
|
|
33
41
|
get: function () { return inlineI18nMultiReact.createScope; }
|
|
@@ -68,6 +76,18 @@ Object.defineProperty(exports, "getLocale", {
|
|
|
68
76
|
enumerable: true,
|
|
69
77
|
get: function () { return inlineI18nMultiReact.getLocale; }
|
|
70
78
|
});
|
|
79
|
+
Object.defineProperty(exports, "getLocaleDisplayName", {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
get: function () { return inlineI18nMultiReact.getLocaleDisplayName; }
|
|
82
|
+
});
|
|
83
|
+
Object.defineProperty(exports, "getMissingKeys", {
|
|
84
|
+
enumerable: true,
|
|
85
|
+
get: function () { return inlineI18nMultiReact.getMissingKeys; }
|
|
86
|
+
});
|
|
87
|
+
Object.defineProperty(exports, "getTranslationKeys", {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () { return inlineI18nMultiReact.getTranslationKeys; }
|
|
90
|
+
});
|
|
71
91
|
Object.defineProperty(exports, "hasTranslation", {
|
|
72
92
|
enumerable: true,
|
|
73
93
|
get: function () { return inlineI18nMultiReact.hasTranslation; }
|
|
@@ -120,6 +140,10 @@ Object.defineProperty(exports, "loadDictionary", {
|
|
|
120
140
|
enumerable: true,
|
|
121
141
|
get: function () { return inlineI18nMultiReact.loadDictionary; }
|
|
122
142
|
});
|
|
143
|
+
Object.defineProperty(exports, "onLocaleChange", {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function () { return inlineI18nMultiReact.onLocaleChange; }
|
|
146
|
+
});
|
|
123
147
|
Object.defineProperty(exports, "parseRichText", {
|
|
124
148
|
enumerable: true,
|
|
125
149
|
get: function () { return inlineI18nMultiReact.parseRichText; }
|
|
@@ -140,6 +164,10 @@ Object.defineProperty(exports, "t", {
|
|
|
140
164
|
enumerable: true,
|
|
141
165
|
get: function () { return inlineI18nMultiReact.t; }
|
|
142
166
|
});
|
|
167
|
+
Object.defineProperty(exports, "trackMissingKeys", {
|
|
168
|
+
enumerable: true,
|
|
169
|
+
get: function () { return inlineI18nMultiReact.trackMissingKeys; }
|
|
170
|
+
});
|
|
143
171
|
Object.defineProperty(exports, "useDetectedLocale", {
|
|
144
172
|
enumerable: true,
|
|
145
173
|
get: function () { return inlineI18nMultiReact.useDetectedLocale; }
|
package/dist/client.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { LocaleProvider, RichText, T, clearDictionaries, clearFormatters, clearICUCache, createScope, detectLocale, en_de, en_es, en_fr, en_ja, en_zh, getDictionary, getLoadedLocales, getLocale, hasTranslation, isLoaded, it, it_de, it_es, it_fr, it_ja, it_zh, ja_es, ja_zh, loadAsync, loadDictionaries, loadDictionary, parseRichText, registerFormatter, restoreLocale, setLocale, t, useDetectedLocale, useLoadDictionaries, useLocale, useRichText, useScopedT, useT, zh_es } from 'inline-i18n-multi-react';
|
|
1
|
+
export { LocaleProvider, RichText, T, clearDictionaries, clearFormatters, clearICUCache, clearLocaleListeners, clearMissingKeys, createScope, detectLocale, en_de, en_es, en_fr, en_ja, en_zh, getDictionary, getLoadedLocales, getLocale, getLocaleDisplayName, getMissingKeys, getTranslationKeys, hasTranslation, isLoaded, it, it_de, it_es, it_fr, it_ja, it_zh, ja_es, ja_zh, loadAsync, loadDictionaries, loadDictionary, onLocaleChange, parseRichText, registerFormatter, restoreLocale, setLocale, t, trackMissingKeys, useDetectedLocale, useLoadDictionaries, useLocale, useRichText, useScopedT, useT, zh_es } from 'inline-i18n-multi-react';
|
|
2
2
|
//# sourceMappingURL=client.mjs.map
|
|
3
3
|
//# sourceMappingURL=client.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inline-i18n-multi-next",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Next.js integration for inline-i18n-multi",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"react": "^18.0.0 || ^19.0.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"inline-i18n-multi": "0.
|
|
55
|
-
"inline-i18n-multi-react": "0.
|
|
54
|
+
"inline-i18n-multi": "0.12.0",
|
|
55
|
+
"inline-i18n-multi-react": "0.12.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/react": "^19.0.2",
|