-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
70 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@totejs/walletkit': patch | ||
--- | ||
|
||
Remove default `initialChainId` to support the case only connecting a wallet and not switching a | ||
network. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
packages/walletkit/src/base/components/Transition/modalSlide.css.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { keyframes, style } from '@vanilla-extract/css'; | ||
|
||
const modalSlideInFrames = keyframes({ | ||
'0%': { | ||
transform: 'translateY(40%)', | ||
}, | ||
'100%': { | ||
transform: 'translateY(0%)', | ||
}, | ||
}); | ||
|
||
const modalSlideOutFrames = keyframes({ | ||
'0%': { | ||
transform: 'translateY(0%)', | ||
}, | ||
'100%': { | ||
transform: 'translateY(40%)', | ||
}, | ||
}); | ||
|
||
export const clsModalSlideIn = style({ | ||
animation: `${modalSlideInFrames} 0.2s forwards ease-out`, | ||
transformOrigin: 'bottom center', | ||
}); | ||
|
||
export const clsModalSlideOut = style({ | ||
animation: `${modalSlideOutFrames} 0.2s forwards ease-out`, | ||
transformOrigin: 'bottom center', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
packages/walletkit/src/defaultConfig/getDefaultProviderOptions.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.