-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:WalletConnect/web3modal into renova…
…te/viem-2.x
- Loading branch information
Showing
415 changed files
with
20,294 additions
and
12,180 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 |
---|---|---|
@@ -1,13 +1,27 @@ | ||
# Breaking Changes | ||
# Description | ||
|
||
N/A | ||
Please include a brief summary of the change. | ||
|
||
# Changes | ||
## Type of change | ||
|
||
- feat: | ||
- fix: | ||
- chore: | ||
- [ ] Chore (non-breaking change that addresses non-functional tasks, maintenance, or code quality improvements) | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
|
||
# Associated Issues | ||
|
||
closes #... | ||
For Linear issues: Closes APKT-xxx | ||
For GH issues: closes #... | ||
|
||
# Showcase (Optional) | ||
|
||
If there is a UI change include the screenshots with before and after state. | ||
If new feature is being introduced, include the link to demo recording. | ||
|
||
# Checklist | ||
|
||
- [ ] Code in this PR is covered by automated tests (Unit tests, E2E tests) | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have reviewed my own code | ||
- [ ] I have filled out all required sections |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
workflow_dispatch: | ||
push: | ||
branches: | ||
- V4 | ||
- main | ||
|
||
concurrency: ${{ github.workflow }} | ||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Release | |
on: | ||
push: | ||
branches: | ||
- V4 | ||
- V5 | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
|
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 |
---|---|---|
|
@@ -14,3 +14,4 @@ coverage | |
test-results | ||
.vscode/* | ||
apps/laboratory/playwright/.auth/user.json | ||
tsconfig.tsbuildinfo |
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
28 changes: 28 additions & 0 deletions
28
apps/gallery/stories/composites/wui-list-address.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,28 @@ | ||
import type { Meta } from '@storybook/web-components' | ||
import '@web3modal/ui/src/composites/wui-list-token' | ||
import type { WuiListAccount } from '@web3modal/ui/src/composites/wui-list-account' | ||
import { html } from 'lit' | ||
import '../../components/gallery-container' | ||
import { networkImageSrc } from '../../utils/PresetUtils' | ||
|
||
type Component = Meta<WuiListAccount> | ||
|
||
export default { | ||
title: 'Composites/wui-list-account', | ||
args: { | ||
address: 'Ethereum', | ||
addressDescription: 'some ens', | ||
logo: networkImageSrc | ||
} | ||
} as Component | ||
|
||
export const Default: Component = { | ||
render: args => | ||
html` <gallery-container width="336"> | ||
<wui-list-account | ||
address=${args.address} | ||
addressDescription=${args.addressDescription} | ||
logo=${args.logo} | ||
></wui-list-account> | ||
</gallery-container>` | ||
} |
35 changes: 0 additions & 35 deletions
35
apps/gallery/stories/composites/wui-onramp-activity-item.stories.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.