@dynamic-labs/flow 4.67.0 → 4.67.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/CHANGELOG.md +21 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/src/FallbackFlowConnector.cjs +24 -0
- package/src/FallbackFlowConnector.d.ts +8 -0
- package/src/FallbackFlowConnector.js +20 -0
- package/src/index.cjs +2 -0
- package/src/index.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.67.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.67.1...v4.67.2) (2026-03-13)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* add fallback connectors for all chains and fix wallet.chain mismatch for SUI wallets ([#10629](https://github.com/dynamic-labs/dynamic-auth/issues/10629)) ([dcdf5fc](https://github.com/dynamic-labs/dynamic-auth/commit/dcdf5fc5c424379cde2eecfd2d3b14fb6fe3819b))
|
|
8
|
+
|
|
9
|
+
### [4.67.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.67.0...v4.67.1) (2026-03-10)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add nonce manager and improve transaction handling ([#10612](https://github.com/dynamic-labs/dynamic-auth/issues/10612)) ([e373f12](https://github.com/dynamic-labs/dynamic-auth/commit/e373f1248beee2f12e7b4aec5a72d55b9555ad00))
|
|
15
|
+
* **sdk-react-core:** commonize step-up auth around useStepUpAuthentication ([#10586](https://github.com/dynamic-labs/dynamic-auth/issues/10586)) ([6e31e66](https://github.com/dynamic-labs/dynamic-auth/commit/6e31e6673d8861bc54677ea79da31872d7ad4c4e))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **sdk-react-core:** hide AA warning for EIP-7702 smart wallets, show for ERC-4337 ([#10614](https://github.com/dynamic-labs/dynamic-auth/issues/10614)) ([5c46d42](https://github.com/dynamic-labs/dynamic-auth/commit/5c46d4277472cb31ddde7809d27ef7920964d548))
|
|
21
|
+
* use 2-column grid layout for backup codes to prevent overflow in minimal theme ([#10607](https://github.com/dynamic-labs/dynamic-auth/issues/10607)) ([84adf87](https://github.com/dynamic-labs/dynamic-auth/commit/84adf872aae0a7fedf961b76f5004535e657b415))
|
|
22
|
+
|
|
2
23
|
## [4.67.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.66.0...v4.67.0) (2026-03-09)
|
|
3
24
|
|
|
4
25
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/flow",
|
|
3
|
-
"version": "4.67.
|
|
3
|
+
"version": "4.67.2",
|
|
4
4
|
"description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@onflow/fcl": "1.10.0",
|
|
22
|
-
"@dynamic-labs/assert-package-version": "4.67.
|
|
23
|
-
"@dynamic-labs/utils": "4.67.
|
|
24
|
-
"@dynamic-labs/wallet-book": "4.67.
|
|
25
|
-
"@dynamic-labs/wallet-connector-core": "4.67.
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.67.2",
|
|
23
|
+
"@dynamic-labs/utils": "4.67.2",
|
|
24
|
+
"@dynamic-labs/wallet-book": "4.67.2",
|
|
25
|
+
"@dynamic-labs/wallet-connector-core": "4.67.2"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {}
|
|
28
28
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
+
|
|
6
|
+
var FlowWalletConnector = require('./FlowWalletConnector.cjs');
|
|
7
|
+
|
|
8
|
+
class FallbackFlowConnector extends FlowWalletConnector.FlowWalletConnector {
|
|
9
|
+
constructor(props) {
|
|
10
|
+
super(Object.assign(Object.assign({}, props), { overrideKey: 'fallbackconnector' }));
|
|
11
|
+
this.name = 'Fallback Connector';
|
|
12
|
+
this.overrideKey = 'fallbackconnector';
|
|
13
|
+
this.isAvailable = false;
|
|
14
|
+
}
|
|
15
|
+
isInstalledOnBrowser() {
|
|
16
|
+
return false;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(FallbackFlowConnector, 'key', {
|
|
20
|
+
value: 'fallbackconnector',
|
|
21
|
+
writable: false,
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
exports.FallbackFlowConnector = FallbackFlowConnector;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
import { FlowWalletConnector } from './FlowWalletConnector.js';
|
|
3
|
+
|
|
4
|
+
class FallbackFlowConnector extends FlowWalletConnector {
|
|
5
|
+
constructor(props) {
|
|
6
|
+
super(Object.assign(Object.assign({}, props), { overrideKey: 'fallbackconnector' }));
|
|
7
|
+
this.name = 'Fallback Connector';
|
|
8
|
+
this.overrideKey = 'fallbackconnector';
|
|
9
|
+
this.isAvailable = false;
|
|
10
|
+
}
|
|
11
|
+
isInstalledOnBrowser() {
|
|
12
|
+
return false;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(FallbackFlowConnector, 'key', {
|
|
16
|
+
value: 'fallbackconnector',
|
|
17
|
+
writable: false,
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
export { FallbackFlowConnector };
|
package/src/index.cjs
CHANGED
|
@@ -8,6 +8,7 @@ var _package = require('../package.cjs');
|
|
|
8
8
|
var blocto = require('./blocto.cjs');
|
|
9
9
|
var dapper = require('./dapper.cjs');
|
|
10
10
|
var flowWallet = require('./flowWallet.cjs');
|
|
11
|
+
var FallbackFlowConnector = require('./FallbackFlowConnector.cjs');
|
|
11
12
|
var FlowWalletConnector = require('./FlowWalletConnector.cjs');
|
|
12
13
|
var FlowWallet = require('./wallet/FlowWallet.cjs');
|
|
13
14
|
var isFlowWallet = require('./wallet/isFlowWallet/isFlowWallet.cjs');
|
|
@@ -18,6 +19,7 @@ const FlowWalletConnectors = (props) => [
|
|
|
18
19
|
blocto,
|
|
19
20
|
dapper,
|
|
20
21
|
flowWallet,
|
|
22
|
+
FallbackFlowConnector.FallbackFlowConnector,
|
|
21
23
|
];
|
|
22
24
|
|
|
23
25
|
exports.FlowWalletConnector = FlowWalletConnector.FlowWalletConnector;
|
package/src/index.js
CHANGED
|
@@ -4,6 +4,7 @@ import { version } from '../package.js';
|
|
|
4
4
|
import Blocto from './blocto.js';
|
|
5
5
|
import Dapper from './dapper.js';
|
|
6
6
|
import FlowWallet from './flowWallet.js';
|
|
7
|
+
import { FallbackFlowConnector } from './FallbackFlowConnector.js';
|
|
7
8
|
export { FlowWalletConnector } from './FlowWalletConnector.js';
|
|
8
9
|
export { FlowWallet } from './wallet/FlowWallet.js';
|
|
9
10
|
export { isFlowWallet } from './wallet/isFlowWallet/isFlowWallet.js';
|
|
@@ -14,6 +15,7 @@ const FlowWalletConnectors = (props) => [
|
|
|
14
15
|
Blocto,
|
|
15
16
|
Dapper,
|
|
16
17
|
FlowWallet,
|
|
18
|
+
FallbackFlowConnector,
|
|
17
19
|
];
|
|
18
20
|
|
|
19
21
|
export { FlowWalletConnectors };
|