@clerk/clerk-react 5.53.5 → 5.53.6-canary.v20251104180404

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/index.js CHANGED
@@ -1851,7 +1851,7 @@ if (typeof globalThis.__BUILD_DISABLE_RHC__ === "undefined") {
1851
1851
  }
1852
1852
  var SDK_METADATA = {
1853
1853
  name: "@clerk/clerk-react",
1854
- version: "5.53.5",
1854
+ version: "5.53.6-canary.v20251104180404",
1855
1855
  environment: process.env.NODE_ENV
1856
1856
  };
1857
1857
  var _status, _domain, _proxyUrl, _publishableKey, _eventBus, _stateProxy, _instance, _IsomorphicClerk_instances, waitForClerkJS_fn;
@@ -2086,7 +2086,7 @@ var _IsomorphicClerk = class _IsomorphicClerk {
2086
2086
  }
2087
2087
  };
2088
2088
  this.hydrateClerkJS = (clerkjs) => {
2089
- var _a;
2089
+ var _a, _b;
2090
2090
  if (!clerkjs) {
2091
2091
  throw new Error("Failed to hydrate latest Clerk JS");
2092
2092
  }
@@ -2098,6 +2098,9 @@ var _IsomorphicClerk = class _IsomorphicClerk {
2098
2098
  (_a = __privateGet(this, _eventBus).internal.retrieveListeners("status")) == null ? void 0 : _a.forEach((listener) => {
2099
2099
  this.on("status", listener, { notify: true });
2100
2100
  });
2101
+ (_b = __privateGet(this, _eventBus).internal.retrieveListeners("queryClientStatus")) == null ? void 0 : _b.forEach((listener) => {
2102
+ this.on("queryClientStatus", listener, { notify: true });
2103
+ });
2101
2104
  if (this.preopenSignIn !== null) {
2102
2105
  clerkjs.openSignIn(this.preopenSignIn);
2103
2106
  }
@@ -2942,6 +2945,10 @@ var _IsomorphicClerk = class _IsomorphicClerk {
2942
2945
  var _a;
2943
2946
  return ((_a = this.clerkjs) == null ? void 0 : _a.isStandardBrowser) || this.options.standardBrowser || false;
2944
2947
  }
2948
+ get __internal_queryClient() {
2949
+ var _a;
2950
+ return (_a = this.clerkjs) == null ? void 0 : _a.__internal_queryClient;
2951
+ }
2945
2952
  get isSatellite() {
2946
2953
  if (typeof window !== "undefined" && window.location) {
2947
2954
  return (0, import_utils10.handleValueOrFn)(this.options.isSatellite, new URL(window.location.href), false);