Skip to content

Commit

Permalink
buid: release 0.2.6 (#62)
Browse files Browse the repository at this point in the history
* docs: Update CONTRIBUTING.md

* docs: Add test result table

* feat: add `action` prop to WalletKitButton & WalletKitButton.Custom to support the case of adding network.

* Add `action` prop to WalletKitButton & WalletKitButton.Custom to support the case of adding network. (#56)

* docs: Add test result table to PULL_REQUEST_TEMPLATE

* fix: fixed multiple wallet conflicts resulting in undetectable issues

* chore: Add changeset log

* feat: add `action` prop to WalletKitButton & WalletKitButton.Custom to support the case of adding network.

* chore: update versions (alpha) (#57)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* fix: fix theme configuration naming error issue

* docs: Add changeset docs

* build: release

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Dec 13, 2023
1 parent f386410 commit 2fe18ba
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .changeset/afraid-crabs-pump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@totejs/walletkit': patch
---

Fixed theme configuration naming error issue
2 changes: 1 addition & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"mode": "pre",
"mode": "exit",
"tag": "alpha",
"initialVersions": {
"example-nextjs": "0.0.1",
Expand Down
1 change: 1 addition & 0 deletions packages/walletkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# @totejs/walletkit

=======
## 0.2.6-alpha.3

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export const clsNoWalletButton = style({
borderRadius: cssVar('noWalletButton', 'radii'),
background: cssVar('noWalletButtonBackground'),
borderColor: cssVar('noWalletButtonBorder'),
color: cssVar('noWalletButtonBackgroundText'),
color: cssVar('noWalletButtonText'),
'@media': hover({
background: cssVar('noWalletButtonBackgroundHover'),
color: cssVar('noWalletButtonBackgroundTextHover'),
color: cssVar('noWalletButtonTextHover'),
borderColor: cssVar('noWalletButtonBorderHover'),
}),
});
8 changes: 4 additions & 4 deletions packages/walletkit/src/themes/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export const base = {
qrCodeDot: 'var(--wk-colors-text)',
qrCodeBorder: 'var(--wk-colors-border)',

noWalletButtonBackgroundText: 'var(--wk-colors-text)',
noWalletButtonBackgroundTextHover: 'var(--wk-colors-text)',
noWalletButtonText: 'var(--wk-colors-text)',
noWalletButtonTextHover: 'var(--wk-colors-text)',
noWalletButtonBackground: 'transparent',
noWalletButtonBackgroundHover: 'var(--wk-colors-border)',
noWalletButtonBorder: 'var(--wk-colors-border)',
Expand Down Expand Up @@ -136,8 +136,8 @@ export const base = {
qrCodeDot: 'var(--wk-colors-text)',
qrCodeBorder: 'var(--wk-colors-border)',

noWalletButtonBackgroundText: 'var(--wk-colors-text)',
noWalletButtonBackgroundTextHover: 'var(--wk-colors-text)',
noWalletButtonText: 'var(--wk-colors-text)',
noWalletButtonTextHover: 'var(--wk-colors-text)',
noWalletButtonBackground: 'transparent',
noWalletButtonBackgroundHover: 'var(--wk-colors-border)',
noWalletButtonBorder: 'var(--wk-colors-border)',
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ const customTheme = {
qrCodeDot: 'var(--wk-colors-text)',
qrCodeBorder: 'var(--wk-colors-border)',

noWalletButtonBackgroundText: 'var(--wk-colors-text)',
noWalletButtonBackgroundTextHover: 'var(--wk-colors-text)',
noWalletButtonText: 'var(--wk-colors-text)',
noWalletButtonTextHover: 'var(--wk-colors-text)',
noWalletButtonBackground: 'transparent',
noWalletButtonBackgroundHover: 'var(--wk-colors-border)',
noWalletButtonBorder: 'var(--wk-colors-border)',
Expand Down

0 comments on commit 2fe18ba

Please sign in to comment.