-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2966 from thematters/develop
Release: v4.12.0
- Loading branch information
Showing
11 changed files
with
174 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "matters-web", | ||
"version": "4.11.0", | ||
"version": "4.12.0", | ||
"description": "codebase of Matters' website", | ||
"sideEffects": false, | ||
"author": "Matters <[email protected]>", | ||
"engines": { | ||
"node": ">=16.14" | ||
"node": ">=16.14 <17.0" | ||
}, | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
import { Empty, IconPrice64, Translate } from '~/components' | ||
|
||
export const EmptyTransactionCurrency = () => ( | ||
<Empty | ||
icon={<IconPrice64 size="xxl" />} | ||
description={ | ||
<Translate | ||
zh_hant="還沒有此幣種記錄" | ||
zh_hans="还没有此币种记录" | ||
en="No this currency history." | ||
/> | ||
} | ||
/> | ||
) |
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,14 @@ | ||
import { Empty, IconCircle24, Translate } from '~/components' | ||
|
||
export const EmptyTransactionSubscription = () => ( | ||
<Empty | ||
icon={<IconCircle24 size="xxl" />} | ||
description={ | ||
<Translate | ||
zh_hant="還沒有訂閱記錄" | ||
zh_hans="还没有订阅记录" | ||
en="No subscription history." | ||
/> | ||
} | ||
/> | ||
) |
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,14 @@ | ||
import { Empty, IconDonate24, Translate } from '~/components' | ||
|
||
export const EmptyTransactionSupport = () => ( | ||
<Empty | ||
icon={<IconDonate24 size="xxl" />} | ||
description={ | ||
<Translate | ||
zh_hant="還沒有支持記錄" | ||
zh_hans="还没有支持记录" | ||
en="No support history." | ||
/> | ||
} | ||
/> | ||
) |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { ReactComponent as Icon } from '@/public/static/icons/64px/price.svg' | ||
|
||
import { withIcon } from './withIcon' | ||
|
||
export const IconPrice64 = withIcon(Icon) |
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.