Skip to content

Commit

Permalink
Merge branch 'main' into chore/csp-dogfooding
Browse files Browse the repository at this point in the history
  • Loading branch information
bkrem authored Jul 8, 2024
2 parents 0de5329 + c802bad commit e387491
Show file tree
Hide file tree
Showing 347 changed files with 10,862 additions and 1,665 deletions.
28 changes: 21 additions & 7 deletions .github/pull_request_template.md
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
36 changes: 36 additions & 0 deletions apps/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @apps/demo

## 5.0.6

### Patch Changes

- fix: Social Login illegal invocation issue. Wagmi tests

- Updated dependencies []:
- @web3modal/wagmi@5.0.6

## 5.0.5

### Patch Changes

- feat: universal link internal flag. Add kotlin assetlinks. Fix email truncation'

- Updated dependencies []:
- @web3modal/wagmi@5.0.5

## 5.0.4

### Patch Changes

- fix: wcPromise incompatibility issues

- Updated dependencies []:
- @web3modal/wagmi@5.0.4

## 5.0.3

### Patch Changes

- fix: ethers5 coinbase issues. Turbo build issues. Upate cb connector.

- Updated dependencies []:
- @web3modal/wagmi@5.0.3

## 5.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/demo",
"version": "5.0.2",
"version": "5.0.6",
"private": true,
"scripts": {
"dev:demo": "next dev",
Expand All @@ -11,7 +11,7 @@
"dependencies": {
"@radix-ui/react-switch": "1.0.3",
"@tanstack/react-query": "5.24.8",
"@web3modal/wagmi": "5.0.2",
"@web3modal/wagmi": "5.0.6",
"clsx": "2.1.0",
"framer-motion": "11.0.8",
"next": "14.2.3",
Expand Down
40 changes: 40 additions & 0 deletions apps/gallery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# @apps/gallery

## 5.0.6

### Patch Changes

- fix: Social Login illegal invocation issue. Wagmi tests

- Updated dependencies []:
- @web3modal/common@5.0.6
- @web3modal/ui@5.0.6

## 5.0.5

### Patch Changes

- feat: universal link internal flag. Add kotlin assetlinks. Fix email truncation'

- Updated dependencies []:
- @web3modal/common@5.0.5
- @web3modal/ui@5.0.5

## 5.0.4

### Patch Changes

- fix: wcPromise incompatibility issues

- Updated dependencies []:
- @web3modal/common@5.0.4
- @web3modal/ui@5.0.4

## 5.0.3

### Patch Changes

- fix: ethers5 coinbase issues. Turbo build issues. Upate cb connector.

- Updated dependencies []:
- @web3modal/common@5.0.3
- @web3modal/ui@5.0.3

## 5.0.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions apps/gallery/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/gallery",
"version": "5.0.2",
"version": "5.0.6",
"private": true,
"main": "index.js",
"scripts": {
Expand All @@ -9,8 +9,8 @@
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@web3modal/common": "5.0.2",
"@web3modal/ui": "5.0.2",
"@web3modal/common": "5.0.6",
"@web3modal/ui": "5.0.6",
"lit": "3.1.0",
"storybook": "7.6.7"
},
Expand Down
16 changes: 16 additions & 0 deletions apps/gallery/stories/components/wui-text.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,19 @@ export const Default: Component = {
</wui-text>
`
}

export const LineClamp: Component = {
render: args => html`
<div style="max-width:300px">
<wui-text
variant=${args.variant}
color=${args.color}
align=${ifDefined(args.align)}
lineClamp="1"
>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
been the industry's standard dummy text ever since the 1500s.
</wui-text>
</div>
`
}
28 changes: 28 additions & 0 deletions apps/gallery/stories/composites/wui-list-address.stories.ts
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>`
}

This file was deleted.

48 changes: 48 additions & 0 deletions apps/laboratory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# @apps/laboratory

## 5.0.6

### Patch Changes

- fix: Social Login illegal invocation issue. Wagmi tests

- Updated dependencies []:
- @web3modal/ethers@5.0.6
- @web3modal/siwe@5.0.6
- @web3modal/solana@5.0.6
- @web3modal/wagmi@5.0.6

## 5.0.5

### Patch Changes

- feat: universal link internal flag. Add kotlin assetlinks. Fix email truncation'

- Updated dependencies []:
- @web3modal/ethers@5.0.5
- @web3modal/siwe@5.0.5
- @web3modal/solana@5.0.5
- @web3modal/wagmi@5.0.5

## 5.0.4

### Patch Changes

- fix: wcPromise incompatibility issues

- Updated dependencies []:
- @web3modal/ethers@5.0.4
- @web3modal/siwe@5.0.4
- @web3modal/solana@5.0.4
- @web3modal/wagmi@5.0.4

## 5.0.3

### Patch Changes

- fix: ethers5 coinbase issues. Turbo build issues. Upate cb connector.

- Updated dependencies []:
- @web3modal/ethers@5.0.3
- @web3modal/siwe@5.0.3
- @web3modal/solana@5.0.3
- @web3modal/wagmi@5.0.3

## 5.0.2

### Patch Changes
Expand Down
4 changes: 4 additions & 0 deletions apps/laboratory/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ const nextConfig = {
{
source: '/.well-known/apple-app-site-association',
headers: [{ key: 'content-type', value: 'application/json' }]
},
{
source: '/.well-known/assetlinks.json',
headers: [{ key: 'content-type', value: 'application/json' }]
}
]
}
Expand Down
21 changes: 13 additions & 8 deletions apps/laboratory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/laboratory",
"version": "5.0.2",
"version": "5.0.6",
"private": true,
"scripts": {
"dev:laboratory": "next dev",
Expand All @@ -10,6 +10,7 @@
"playwright:start": "npm run start:laboratory",
"playwright:install": "playwright install --with-deps",
"playwright:test": "playwright test",
"playwright:test:basic": "playwright test --grep 'basic-tests.spec.ts'",
"playwright:test:wallet": "playwright test --grep 'connect-qr.spec.ts|wallet.spec.ts'",
"playwright:test:email": "playwright test --grep 'email.spec.ts'",
"playwright:test:social": "playwright test --grep 'social.spec.ts'",
Expand All @@ -19,6 +20,7 @@
"playwright:test:sa": "playwright test --grep smart-account.spec.ts",
"playwright:test:canary": "playwright test --retries=0 --grep canary.spec.ts --project='Desktop Chrome/wagmi'",
"playwright:debug": "npm run playwright:test -- --debug",
"playwright:debug:basic": "npm run playwright:test:basic -- --debug",
"playwright:debug:wallet": "npm run playwright:test:wallet -- --debug",
"playwright:debug:email": "npm run playwright:test:email -- --debug",
"playwright:debug:social": "npm run playwright:test:social -- --debug",
Expand All @@ -35,22 +37,25 @@
"@emotion/styled": "11.11.0",
"@sentry/browser": "7.92.0",
"@sentry/react": "7.92.0",
"@solana/wallet-adapter-backpack": "0.1.14",
"@solana/wallet-adapter-wallets": "0.19.32",
"@solana/web3.js": "1.91.7",
"@tanstack/react-query": "5.24.8",
"@web3modal/ethers": "5.0.2",
"@web3modal/siwe": "5.0.2",
"@web3modal/solana": "5.0.2",
"@web3modal/wagmi": "5.0.2",
"@wagmi/connectors": "5.0.8",
"@walletconnect/utils": "2.13.1",
"@web3modal/ethers": "5.0.6",
"@web3modal/siwe": "5.0.6",
"@web3modal/solana": "5.0.6",
"@web3modal/wagmi": "5.0.6",
"ethers": "6.13.0",
"framer-motion": "10.17.9",
"next": "14.2.3",
"next-auth": "4.24.5",
"react-icons": "4.12.0",
"@walletconnect/utils": "2.13.1",
"rpc-websockets": "7.11.0",
"valtio": "1.11.2",
"viem": "2.10.3",
"wagmi": "2.9.10",
"@wagmi/connectors": "5.0.8"
"wagmi": "2.9.10"
},
"devDependencies": {
"@aws-sdk/client-cloudwatch": "3.509.0",
Expand Down
Loading

0 comments on commit e387491

Please sign in to comment.