-
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.
fix(danger): remove localhost occurences
- Loading branch information
Showing
101 changed files
with
3,489 additions
and
2,106 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 |
---|---|---|
|
@@ -9,3 +9,4 @@ lerna-debug.log | |
.env | ||
.turbo | ||
playwright-report/ | ||
screenshots/ |
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
26 changes: 26 additions & 0 deletions
26
apps/gallery/stories/composites/wui-list-accordion.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,26 @@ | ||
import type { Meta } from '@storybook/web-components' | ||
import '@web3modal/ui/src/composites/wui-list-accordion' | ||
import type { WuiListAccordion } from '@web3modal/ui/src/composites/wui-list-accordion' | ||
import { html } from 'lit' | ||
import '../../components/gallery-container' | ||
import { signTypedData } from '../../utils/PresetUtils' | ||
|
||
type Component = Meta<WuiListAccordion> | ||
|
||
export default { | ||
title: 'Composites/wui-list-accordion', | ||
args: { | ||
textTitle: 'Message', | ||
overflowedContent: JSON.stringify(signTypedData, null, 2) | ||
} | ||
} as Component | ||
|
||
export const Default: Component = { | ||
render: args => | ||
html` <gallery-container width="336"> | ||
<wui-list-accordion | ||
textTitle=${args.textTitle} | ||
overflowedContent=${args.overflowedContent} | ||
></wui-list-accordion> | ||
</gallery-container>` | ||
} |
28 changes: 28 additions & 0 deletions
28
apps/gallery/stories/composites/wui-list-content.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-content' | ||
import type { WuiListContent } from '@web3modal/ui/src/composites/wui-list-content' | ||
import { html } from 'lit' | ||
import '../../components/gallery-container' | ||
import { networkImageSrc } from '../../utils/PresetUtils' | ||
|
||
type Component = Meta<WuiListContent> | ||
|
||
export default { | ||
title: 'Composites/wui-list-content', | ||
args: { | ||
imageSrc: networkImageSrc, | ||
textTitle: 'Network', | ||
textValue: '' | ||
} | ||
} as Component | ||
|
||
export const Default: Component = { | ||
render: args => | ||
html` <gallery-container width="336"> | ||
<wui-list-content | ||
.imageSrc=${args.imageSrc} | ||
textTitle=${args.textTitle} | ||
.textValue=${args.textValue} | ||
></wui-list-content> | ||
</gallery-container>` | ||
} |
30 changes: 30 additions & 0 deletions
30
apps/gallery/stories/composites/wui-list-wallet-transaction.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,30 @@ | ||
import type { Meta } from '@storybook/web-components' | ||
import '@web3modal/ui/src/composites/wui-list-wallet-transaction' | ||
import type { WuiListWalletTransaction } from '@web3modal/ui/src/composites/wui-list-wallet-transaction' | ||
import { html } from 'lit' | ||
import '../../components/gallery-container' | ||
import { networkImageSrc } from '../../utils/PresetUtils' | ||
|
||
type Component = Meta<WuiListWalletTransaction> | ||
|
||
export default { | ||
title: 'Composites/wui-list-wallet-transaction', | ||
args: { | ||
amount: '0.003', | ||
networkCurreny: 'ETH', | ||
networkImageUrl: networkImageSrc, | ||
receiverAddress: '0x3c8...7fab' | ||
} | ||
} as Component | ||
|
||
export const Default: Component = { | ||
render: args => | ||
html` <gallery-container width="336"> | ||
<wui-list-wallet-transaction | ||
amount=${args.amount} | ||
networkCurreny=${args.networkCurreny} | ||
networkImageUrl=${args.networkImageUrl} | ||
receiverAddress=${args.receiverAddress} | ||
></wui-list-wallet-transaction> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Obtain a project ID from https://cloud.walletconnect.com | ||
NEXT_PUBLIC_PROJECT_ID="" | ||
NEXTAUTH_SECRET="" | ||
NEXTAUTH_URL="http://localhost:3000" | ||
NEXTAUTH_URL="" |
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.