@clerk/chrome-extension 2.8.2-canary.v20251114223431 → 2.8.2-canary.v20251115211334
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/cjs/background/index.js +1 -1
- package/dist/cjs/index.js +13 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/react/index.js +13 -13
- package/dist/cjs/react/index.js.map +1 -1
- package/dist/esm/background/index.js +1 -1
- package/dist/esm/{chunk-MEETICIM.js → chunk-A3SWP7ED.js} +3 -3
- package/dist/esm/{chunk-MEETICIM.js.map → chunk-A3SWP7ED.js.map} +1 -1
- package/dist/esm/{chunk-XUVOC2C7.js → chunk-KX3ZKDAK.js} +16 -16
- package/dist/esm/{chunk-XUVOC2C7.js.map → chunk-KX3ZKDAK.js.map} +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/react/index.js +2 -2
- package/dist/types/internal/utils/errors.d.ts +1 -1
- package/package.json +4 -4
package/dist/cjs/react/index.js
CHANGED
|
@@ -2097,8 +2097,8 @@ withClerk(
|
|
|
2097
2097
|
ClerkHostRenderer,
|
|
2098
2098
|
{
|
|
2099
2099
|
component,
|
|
2100
|
-
mount: clerk2.
|
|
2101
|
-
unmount: clerk2.
|
|
2100
|
+
mount: clerk2.mountAPIKeys,
|
|
2101
|
+
unmount: clerk2.unmountAPIKeys,
|
|
2102
2102
|
updateProps: clerk2.__unstable__updateProps,
|
|
2103
2103
|
props,
|
|
2104
2104
|
rootProps: rendererRootProps
|
|
@@ -2677,7 +2677,7 @@ if (typeof globalThis.__BUILD_DISABLE_RHC__ === "undefined") {
|
|
|
2677
2677
|
}
|
|
2678
2678
|
var SDK_METADATA = {
|
|
2679
2679
|
name: "@clerk/clerk-react",
|
|
2680
|
-
version: "5.
|
|
2680
|
+
version: "5.56.0-canary.v20251115211334",
|
|
2681
2681
|
environment: process.env.NODE_ENV
|
|
2682
2682
|
};
|
|
2683
2683
|
var _status;
|
|
@@ -2716,7 +2716,7 @@ var _IsomorphicClerk = class _IsomorphicClerk2 {
|
|
|
2716
2716
|
this.premountMethodCalls = /* @__PURE__ */ new Map();
|
|
2717
2717
|
this.premountWaitlistNodes = /* @__PURE__ */ new Map();
|
|
2718
2718
|
this.premountPricingTableNodes = /* @__PURE__ */ new Map();
|
|
2719
|
-
this.
|
|
2719
|
+
this.premountAPIKeysNodes = /* @__PURE__ */ new Map();
|
|
2720
2720
|
this.premountOAuthConsentNodes = /* @__PURE__ */ new Map();
|
|
2721
2721
|
this.premountTaskChooseOrganizationNodes = /* @__PURE__ */ new Map();
|
|
2722
2722
|
this.premountAddListenerCalls = /* @__PURE__ */ new Map();
|
|
@@ -2985,8 +2985,8 @@ var _IsomorphicClerk = class _IsomorphicClerk2 {
|
|
|
2985
2985
|
this.premountPricingTableNodes.forEach((props, node) => {
|
|
2986
2986
|
clerkjs.mountPricingTable(node, props);
|
|
2987
2987
|
});
|
|
2988
|
-
this.
|
|
2989
|
-
clerkjs.
|
|
2988
|
+
this.premountAPIKeysNodes.forEach((props, node) => {
|
|
2989
|
+
clerkjs.mountAPIKeys(node, props);
|
|
2990
2990
|
});
|
|
2991
2991
|
this.premountOAuthConsentNodes.forEach((props, node) => {
|
|
2992
2992
|
clerkjs.__internal_mountOAuthConsent(node, props);
|
|
@@ -3336,18 +3336,18 @@ var _IsomorphicClerk = class _IsomorphicClerk2 {
|
|
|
3336
3336
|
this.premountPricingTableNodes.delete(node);
|
|
3337
3337
|
}
|
|
3338
3338
|
};
|
|
3339
|
-
this.
|
|
3339
|
+
this.mountAPIKeys = (node, props) => {
|
|
3340
3340
|
if (this.clerkjs && this.loaded) {
|
|
3341
|
-
this.clerkjs.
|
|
3341
|
+
this.clerkjs.mountAPIKeys(node, props);
|
|
3342
3342
|
} else {
|
|
3343
|
-
this.
|
|
3343
|
+
this.premountAPIKeysNodes.set(node, props);
|
|
3344
3344
|
}
|
|
3345
3345
|
};
|
|
3346
|
-
this.
|
|
3346
|
+
this.unmountAPIKeys = (node) => {
|
|
3347
3347
|
if (this.clerkjs && this.loaded) {
|
|
3348
|
-
this.clerkjs.
|
|
3348
|
+
this.clerkjs.unmountAPIKeys(node);
|
|
3349
3349
|
} else {
|
|
3350
|
-
this.
|
|
3350
|
+
this.premountAPIKeysNodes.delete(node);
|
|
3351
3351
|
}
|
|
3352
3352
|
};
|
|
3353
3353
|
this.__internal_mountOAuthConsent = (node, props) => {
|
|
@@ -4221,7 +4221,7 @@ var BrowserStorageCache = createBrowserStorageCache();
|
|
|
4221
4221
|
var clerk;
|
|
4222
4222
|
noRhc.Clerk.sdkMetadata = {
|
|
4223
4223
|
name: "@clerk/chrome-extension",
|
|
4224
|
-
version: "2.8.2-canary.
|
|
4224
|
+
version: "2.8.2-canary.v20251115211334"
|
|
4225
4225
|
};
|
|
4226
4226
|
async function createClerkClient({
|
|
4227
4227
|
__experimental_syncHostListener = false,
|