gt-react 9.2.12-alpha.1 → 9.2.12-alpha.3
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.cjs.min.cjs +21 -3
- package/dist/client.d.ts +2 -1
- package/dist/client.esm.min.mjs +21 -3
- package/dist/index.cjs.min.cjs +21 -3
- package/dist/index.esm.min.mjs +21 -3
- package/dist/internal.cjs.min.cjs +19 -1
- package/dist/internal.esm.min.mjs +19 -1
- package/dist/provider/GTProvider.d.ts +2 -1
- package/dist/provider/GTProvider.d.ts.map +1 -1
- package/package.json +1 -2
package/dist/client.d.ts
CHANGED
@@ -466,7 +466,7 @@ declare function LocaleSelector({ locales: _locales, ...props }: {
|
|
466
466
|
*
|
467
467
|
* @returns {JSX.Element} The provider component for General Translation context.
|
468
468
|
*/
|
469
|
-
declare function GTProvider({ children, projectId: _projectId, devApiKey: _devApiKey, dictionary: _dictionary, locales, defaultLocale, locale: _locale, cacheUrl, runtimeUrl, renderSettings, loadDictionary, loadTranslations, fallback, _versionId, ...metadata }: {
|
469
|
+
declare function GTProvider({ children, projectId: _projectId, devApiKey: _devApiKey, dictionary: _dictionary, locales, defaultLocale, locale: _locale, cacheUrl, runtimeUrl, renderSettings, loadDictionary, loadTranslations, fallback, ssr, _versionId, ...metadata }: {
|
470
470
|
children?: React__default.ReactNode;
|
471
471
|
projectId?: string;
|
472
472
|
devApiKey?: string;
|
@@ -483,6 +483,7 @@ declare function GTProvider({ children, projectId: _projectId, devApiKey: _devAp
|
|
483
483
|
loadDictionary?: CustomLoader;
|
484
484
|
loadTranslations?: CustomLoader;
|
485
485
|
_versionId?: string;
|
486
|
+
ssr?: boolean;
|
486
487
|
[key: string]: any;
|
487
488
|
}): React__default.JSX.Element;
|
488
489
|
|