@clerk/clerk-react 5.58.1 → 5.59.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/index.js CHANGED
@@ -1881,7 +1881,7 @@ if (typeof globalThis.__BUILD_DISABLE_RHC__ === "undefined") {
1881
1881
  }
1882
1882
  var SDK_METADATA = {
1883
1883
  name: "@clerk/clerk-react",
1884
- version: "5.58.1",
1884
+ version: "5.59.0",
1885
1885
  environment: process.env.NODE_ENV
1886
1886
  };
1887
1887
  var _status, _domain, _proxyUrl, _publishableKey, _eventBus, _stateProxy, _instance, _IsomorphicClerk_instances, waitForClerkJS_fn;
@@ -2858,6 +2858,17 @@ var _IsomorphicClerk = class _IsomorphicClerk {
2858
2858
  this.premountMethodCalls.set("authenticateWithOKXWallet", callback);
2859
2859
  }
2860
2860
  };
2861
+ this.authenticateWithSolana = async (params) => {
2862
+ const callback = () => {
2863
+ var _a;
2864
+ return (_a = this.clerkjs) == null ? void 0 : _a.authenticateWithSolana(params);
2865
+ };
2866
+ if (this.clerkjs && this.loaded) {
2867
+ return callback();
2868
+ } else {
2869
+ this.premountMethodCalls.set("authenticateWithSolana", callback);
2870
+ }
2871
+ };
2861
2872
  this.authenticateWithWeb3 = async (params) => {
2862
2873
  const callback = () => {
2863
2874
  var _a;