Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .changeset/funny-windows-rest.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/lovely-pets-join.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/sunny-pens-cross.md

This file was deleted.

52 changes: 0 additions & 52 deletions .changeset/wet-parks-slide.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { Meta } from '@storybook/web-components'

import { html } from 'lit'

import type { TransactionImage } from '@reown/appkit-common'
import '@reown/appkit-ui/wui-transaction-visual'
import type { WuiTransactionVisual } from '@reown/appkit-ui/wui-transaction-visual'

Expand All @@ -21,10 +22,6 @@ export default {
{
type: 'NFT',
url: walletImagesOptions[0]?.src
},
{
type: 'NFT',
url: walletImagesOptions[1]?.src
}
]
},
Expand Down Expand Up @@ -74,3 +71,109 @@ export const Default: Component = {
></wui-transaction-visual>
</gallery-container>`
}

export const MultipleTransactions: Component = {
render: args =>
html` <gallery-container width="336">
<wui-transaction-visual
.type=${args.type}
.status=${args.status}
.direction=${args.direction}
.onlyDirectionIcon=${args.onlyDirectionIcon}
.images=${[
{
type: 'NFT' as const,
url: walletImagesOptions[0]?.src
},
{
type: 'NFT' as const,
url: walletImagesOptions[1]?.src
}
] as TransactionImage[]}
></wui-transaction-visual>
</gallery-container>`
}

export const FirstImageBroken: Component = {
render: args =>
html` <gallery-container width="336">
<wui-transaction-visual
.type=${args.type}
.status=${args.status}
.direction=${args.direction}
.onlyDirectionIcon=${args.onlyDirectionIcon}
.images=${[
{
type: 'NFT' as const,
url: 'https://lab.reown.com/invalid-image-url.png'
},
{
type: 'NFT' as const,
url: walletImagesOptions[1]?.src
}
] as TransactionImage[]}
></wui-transaction-visual>
</gallery-container>`
}

export const SecondImageBroken: Component = {
render: args =>
html` <gallery-container width="336">
<wui-transaction-visual
.type=${args.type}
.status=${args.status}
.direction=${args.direction}
.onlyDirectionIcon=${args.onlyDirectionIcon}
.images=${[
{
type: 'NFT' as const,
url: walletImagesOptions[0]?.src
},
{
type: 'NFT' as const,
url: 'https://lab.reown.com/invalid-image-url.png'
}
] as TransactionImage[]}
></wui-transaction-visual>
</gallery-container>`
}

export const BothImagesBroken: Component = {
render: args =>
html` <gallery-container width="336">
<wui-transaction-visual
.type=${args.type}
.status=${args.status}
.direction=${args.direction}
.onlyDirectionIcon=${args.onlyDirectionIcon}
.images=${[
{
type: 'NFT' as const,
url: 'https://lab.reown.com/invalid-image-url.png'
},
{
type: 'NFT' as const,
url: 'https://lab.reown.com/invalid-image-url2.png'
}
] as TransactionImage[]}
></wui-transaction-visual>
</gallery-container>`
}

export const SingleImageBroken: Component = {
render: args =>
html` <gallery-container width="336">
<wui-transaction-visual
.type=${args.type}
.status=${args.status}
.direction=${args.direction}
.onlyDirectionIcon=${args.onlyDirectionIcon}
.images=${[
{
type: 'NFT' as const,
url: 'https://lab.reown.com/invalid-image-url.png'
}
] as TransactionImage[]}
></wui-transaction-visual>
</gallery-container>`
}
8 changes: 8 additions & 0 deletions apps/pay-test-exchange/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# pay-test-exchange

## 0.1.19

### Patch Changes

- [#5378](https://github.com/reown-com/appkit/pull/5378) [`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where profile wallets tabs were shown in the wrong order

- [#5364](https://github.com/reown-com/appkit/pull/5364) [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

## 0.1.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/pay-test-exchange/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pay-test-exchange",
"version": "0.1.18",
"version": "0.1.19",
"private": true,
"scripts": {
"dev": "next dev --turbopack --port 4001",
Expand Down
15 changes: 15 additions & 0 deletions packages/adapters/bitcoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @reown/appkit-adapter-bitcoin

## 1.8.15

### Patch Changes

- [#5378](https://github.com/reown-com/appkit/pull/5378) [`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where profile wallets tabs were shown in the wrong order

- [#5364](https://github.com/reown-com/appkit/pull/5364) [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

- Updated dependencies [[`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf), [`ecf1794`](https://github.com/reown-com/appkit/commit/ecf1794d555806e376ab2253b48ab2b185e85a10), [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34), [`e330f62`](https://github.com/reown-com/appkit/commit/e330f62532f95683ed69bdb0f4fef77f3039df30)]:
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]

## 1.8.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/bitcoin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-bitcoin",
"version": "1.8.14",
"version": "1.8.15",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/exports/index.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/adapters/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @reown/appkit-adapter-ethers

## 1.8.15

### Patch Changes

- [#5378](https://github.com/reown-com/appkit/pull/5378) [`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where profile wallets tabs were shown in the wrong order

- [#5336](https://github.com/reown-com/appkit/pull/5336) [`ecf1794`](https://github.com/reown-com/appkit/commit/ecf1794d555806e376ab2253b48ab2b185e85a10) Thanks [@tomiir](https://github.com/tomiir)! - Defers Coinbase SDK in ethers adapters to connection step

- [#5364](https://github.com/reown-com/appkit/pull/5364) [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

- Updated dependencies [[`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf), [`ecf1794`](https://github.com/reown-com/appkit/commit/ecf1794d555806e376ab2253b48ab2b185e85a10), [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34), [`e330f62`](https://github.com/reown-com/appkit/commit/e330f62532f95683ed69bdb0f4fef77f3039df30)]:
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]

## 1.8.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ethers",
"version": "1.8.14",
"version": "1.8.15",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/src/index.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/adapters/ethers5/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @reown/appkit-adapter-ethers5

## 1.8.15

### Patch Changes

- [#5378](https://github.com/reown-com/appkit/pull/5378) [`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where profile wallets tabs were shown in the wrong order

- [#5336](https://github.com/reown-com/appkit/pull/5336) [`ecf1794`](https://github.com/reown-com/appkit/commit/ecf1794d555806e376ab2253b48ab2b185e85a10) Thanks [@tomiir](https://github.com/tomiir)! - Defers Coinbase SDK in ethers adapters to connection step

- [#5364](https://github.com/reown-com/appkit/pull/5364) [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

- Updated dependencies [[`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf), [`ecf1794`](https://github.com/reown-com/appkit/commit/ecf1794d555806e376ab2253b48ab2b185e85a10), [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34), [`e330f62`](https://github.com/reown-com/appkit/commit/e330f62532f95683ed69bdb0f4fef77f3039df30)]:
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]

## 1.8.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ethers5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ethers5",
"version": "1.8.14",
"version": "1.8.15",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/src/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/adapters/solana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @reown/appkit-adapter-solana

## 1.8.15

### Patch Changes

- [#5378](https://github.com/reown-com/appkit/pull/5378) [`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where profile wallets tabs were shown in the wrong order

- [#5364](https://github.com/reown-com/appkit/pull/5364) [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

- Updated dependencies [[`2867bfd`](https://github.com/reown-com/appkit/commit/2867bfd3f06394e559b918d46dc379dd498d1abf), [`ecf1794`](https://github.com/reown-com/appkit/commit/ecf1794d555806e376ab2253b48ab2b185e85a10), [`d186212`](https://github.com/reown-com/appkit/commit/d1862126d3b7da93b52b99a4d709656311926c34), [`e330f62`](https://github.com/reown-com/appkit/commit/e330f62532f95683ed69bdb0f4fef77f3039df30)]:
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]
- @reown/[email protected]

## 1.8.14

### Patch Changes
Expand Down
Loading