@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
|
@@ -429,7 +429,7 @@ var BrowserStorageCache = createBrowserStorageCache();
|
|
|
429
429
|
var clerk;
|
|
430
430
|
noRhc.Clerk.sdkMetadata = {
|
|
431
431
|
name: "@clerk/chrome-extension",
|
|
432
|
-
version: "2.8.2-canary.
|
|
432
|
+
version: "2.8.2-canary.v20251115211334"
|
|
433
433
|
};
|
|
434
434
|
async function createClerkClient({
|
|
435
435
|
__experimental_syncHostListener = false,
|
package/dist/cjs/index.js
CHANGED
|
@@ -3737,8 +3737,8 @@ var APIKeys = withClerk(
|
|
|
3737
3737
|
ClerkHostRenderer,
|
|
3738
3738
|
{
|
|
3739
3739
|
component,
|
|
3740
|
-
mount: clerk2.
|
|
3741
|
-
unmount: clerk2.
|
|
3740
|
+
mount: clerk2.mountAPIKeys,
|
|
3741
|
+
unmount: clerk2.unmountAPIKeys,
|
|
3742
3742
|
updateProps: clerk2.__unstable__updateProps,
|
|
3743
3743
|
props,
|
|
3744
3744
|
rootProps: rendererRootProps
|
|
@@ -4317,7 +4317,7 @@ if (typeof globalThis.__BUILD_DISABLE_RHC__ === "undefined") {
|
|
|
4317
4317
|
}
|
|
4318
4318
|
var SDK_METADATA = {
|
|
4319
4319
|
name: "@clerk/clerk-react",
|
|
4320
|
-
version: "5.
|
|
4320
|
+
version: "5.56.0-canary.v20251115211334",
|
|
4321
4321
|
environment: process.env.NODE_ENV
|
|
4322
4322
|
};
|
|
4323
4323
|
var _status;
|
|
@@ -4356,7 +4356,7 @@ var _IsomorphicClerk = class _IsomorphicClerk2 {
|
|
|
4356
4356
|
this.premountMethodCalls = /* @__PURE__ */ new Map();
|
|
4357
4357
|
this.premountWaitlistNodes = /* @__PURE__ */ new Map();
|
|
4358
4358
|
this.premountPricingTableNodes = /* @__PURE__ */ new Map();
|
|
4359
|
-
this.
|
|
4359
|
+
this.premountAPIKeysNodes = /* @__PURE__ */ new Map();
|
|
4360
4360
|
this.premountOAuthConsentNodes = /* @__PURE__ */ new Map();
|
|
4361
4361
|
this.premountTaskChooseOrganizationNodes = /* @__PURE__ */ new Map();
|
|
4362
4362
|
this.premountAddListenerCalls = /* @__PURE__ */ new Map();
|
|
@@ -4625,8 +4625,8 @@ var _IsomorphicClerk = class _IsomorphicClerk2 {
|
|
|
4625
4625
|
this.premountPricingTableNodes.forEach((props, node) => {
|
|
4626
4626
|
clerkjs.mountPricingTable(node, props);
|
|
4627
4627
|
});
|
|
4628
|
-
this.
|
|
4629
|
-
clerkjs.
|
|
4628
|
+
this.premountAPIKeysNodes.forEach((props, node) => {
|
|
4629
|
+
clerkjs.mountAPIKeys(node, props);
|
|
4630
4630
|
});
|
|
4631
4631
|
this.premountOAuthConsentNodes.forEach((props, node) => {
|
|
4632
4632
|
clerkjs.__internal_mountOAuthConsent(node, props);
|
|
@@ -4976,18 +4976,18 @@ var _IsomorphicClerk = class _IsomorphicClerk2 {
|
|
|
4976
4976
|
this.premountPricingTableNodes.delete(node);
|
|
4977
4977
|
}
|
|
4978
4978
|
};
|
|
4979
|
-
this.
|
|
4979
|
+
this.mountAPIKeys = (node, props) => {
|
|
4980
4980
|
if (this.clerkjs && this.loaded) {
|
|
4981
|
-
this.clerkjs.
|
|
4981
|
+
this.clerkjs.mountAPIKeys(node, props);
|
|
4982
4982
|
} else {
|
|
4983
|
-
this.
|
|
4983
|
+
this.premountAPIKeysNodes.set(node, props);
|
|
4984
4984
|
}
|
|
4985
4985
|
};
|
|
4986
|
-
this.
|
|
4986
|
+
this.unmountAPIKeys = (node) => {
|
|
4987
4987
|
if (this.clerkjs && this.loaded) {
|
|
4988
|
-
this.clerkjs.
|
|
4988
|
+
this.clerkjs.unmountAPIKeys(node);
|
|
4989
4989
|
} else {
|
|
4990
|
-
this.
|
|
4990
|
+
this.premountAPIKeysNodes.delete(node);
|
|
4991
4991
|
}
|
|
4992
4992
|
};
|
|
4993
4993
|
this.__internal_mountOAuthConsent = (node, props) => {
|
|
@@ -5861,7 +5861,7 @@ var BrowserStorageCache = createBrowserStorageCache();
|
|
|
5861
5861
|
var clerk;
|
|
5862
5862
|
noRhc.Clerk.sdkMetadata = {
|
|
5863
5863
|
name: "@clerk/chrome-extension",
|
|
5864
|
-
version: "2.8.2-canary.
|
|
5864
|
+
version: "2.8.2-canary.v20251115211334"
|
|
5865
5865
|
};
|
|
5866
5866
|
async function createClerkClient({
|
|
5867
5867
|
__experimental_syncHostListener = false,
|