-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: walletconnect certified #3206
Merged
Merged
Changes from 19 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
da7dc93
feat: wc certified
magiziz bedc336
fix: merge conflicts
magiziz d9a35b9
chore: cleanup
magiziz c19795a
chore: finalize API integration and add tracking
magiziz f1f997d
chore: change styles for wallet list item and skeleton loaders
magiziz cfa0ff2
Merge branch 'main' into feat/wc-certified
magiziz fb55691
chore: cleanup tests
magiziz 792a1e0
chore: make storage type optional
magiziz ae4fff6
chore: change version
magiziz 7ba9817
chore: tweak params
magiziz e87acfd
chore: revert edit package version
magiziz a8c09bc
chore: tweak styles
magiziz 3b5f724
chore: add e2e tests
magiziz 5629018
chore: add unit test to SnackController.test
magiziz 11dbf79
refactor: snackbar
magiziz d7c7f3a
fix: remove backgroundColor when calling showSvg
magiziz f1dd591
Merge branch 'main' into feat/wc-certified
magiziz b7727fe
fix: danger rules
magiziz cb210ee
Merge branch 'main' into feat/wc-certified
magiziz 9974261
chore: optimize svg and update package version
magiziz a875ff5
chore: update changeset
magiziz 23e6394
chore: update e2e test
magiziz 259cd42
chore: update changeset
magiziz 395fa80
chore: update e2e test
magiziz 34382d3
chore: update event
magiziz c26b45e
chore: update SnackController.test
magiziz faf3c98
fix: merge conflict
magiziz 16ef78d
revert: edit walletconnect svg icon
magiziz 3d7558f
chore: run tests
magiziz 311a800
chore: run tests
magiziz 7b33ff6
chore: update e2e test
magiziz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
'@reown/appkit-scaffold-ui': patch | ||
'@apps/laboratory': patch | ||
'@reown/appkit-core': patch | ||
'@apps/gallery': patch | ||
'@reown/appkit-ui': patch | ||
'@apps/demo': patch | ||
'@reown/appkit-adapter-ethers': patch | ||
'@reown/appkit-adapter-ethers5': patch | ||
'@reown/appkit-adapter-polkadot': patch | ||
'@reown/appkit-adapter-solana': patch | ||
'@reown/appkit-adapter-wagmi': patch | ||
'@reown/appkit': patch | ||
'@reown/appkit-utils': patch | ||
'@reown/appkit-cdn': patch | ||
'@reown/appkit-common': patch | ||
'@reown/appkit-experimental': patch | ||
'@reown/appkit-polyfills': patch | ||
'@reown/appkit-siwe': patch | ||
'@reown/appkit-siwx': patch | ||
'@reown/appkit-wallet': patch | ||
--- | ||
|
||
Added certified filtering feature to all wallets view. |
27 changes: 27 additions & 0 deletions
27
apps/gallery/stories/composites/wui-certified-switch.stories.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,27 @@ | ||
import type { Meta } from '@storybook/web-components' | ||
import '@reown/appkit-ui/src/composites/wui-certified-switch' | ||
import type { WuiCertifiedSwitch } from '@reown/appkit-ui/src/composites/wui-certified-switch' | ||
import { html } from 'lit' | ||
import '../../components/gallery-container' | ||
|
||
type Component = Meta<WuiCertifiedSwitch> | ||
|
||
export default { | ||
title: 'Composites/wui-certified-switch', | ||
args: { | ||
checked: false | ||
}, | ||
argTypes: { | ||
checked: { | ||
control: { type: 'boolean' } | ||
} | ||
} | ||
} as Component | ||
|
||
export const Default: Component = { | ||
render: args => html` | ||
<gallery-container width="88" height="44"> | ||
<wui-certified-switch ?checked=${args.checked}></wui-certified-switch> | ||
</gallery-container> | ||
` | ||
} |
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,27 @@ | ||
import type { Meta } from '@storybook/web-components' | ||
import '@reown/appkit-ui/src/composites/wui-switch' | ||
import type { WuiSwitch } from '@reown/appkit-ui/src/composites/wui-switch' | ||
import { html } from 'lit' | ||
import '../../components/gallery-container' | ||
|
||
type Component = Meta<WuiSwitch> | ||
|
||
export default { | ||
title: 'Composites/wui-switch', | ||
args: { | ||
checked: false | ||
}, | ||
argTypes: { | ||
checked: { | ||
control: { type: 'boolean' } | ||
} | ||
} | ||
} as Component | ||
|
||
export const Default: Component = { | ||
render: args => html` | ||
<gallery-container width="32" height="32"> | ||
<wui-switch ?checked=${args.checked}></wui-switch> | ||
</gallery-container> | ||
` | ||
} |
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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd use the full wallet name to prevent matching unwanted things in the future