gt-react 9.2.12-alpha.1 → 9.2.12-alpha.2

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.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