mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 17:44:35 +08:00
Merge branch 'master' into next-merge-master
This commit is contained in:
commit
b63bdc47e5
2
.github/workflows/compressed-size.yml
vendored
2
.github/workflows/compressed-size.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
|||||||
CI_JOB_NUMBER: 1
|
CI_JOB_NUMBER: 1
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: preactjs/compressed-size-action@v2
|
- uses: preactjs/compressed-size-action@v2
|
||||||
with:
|
with:
|
||||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
6
.github/workflows/issue-open-check.yml
vendored
6
.github/workflows/issue-open-check.yml
vendored
@ -8,14 +8,14 @@ jobs:
|
|||||||
issue-open-check:
|
issue-open-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions-cool/check-user-permission@v1
|
- uses: actions-cool/check-user-permission@v2
|
||||||
id: checkUser
|
id: checkUser
|
||||||
with:
|
with:
|
||||||
require: 'write'
|
require: 'write'
|
||||||
check-bot: true
|
check-bot: true
|
||||||
|
|
||||||
- name: check invalid
|
- name: check invalid
|
||||||
if: (contains(github.event.issue.body, 'ant-design-issue-helper') == false) && (steps.checkUser.outputs.result == 'false')
|
if: (contains(github.event.issue.body, 'ant-design-issue-helper') == false) && (steps.checkUser.outputs.require-result == 'false')
|
||||||
uses: actions-cool/issues-helper@v3
|
uses: actions-cool/issues-helper@v3
|
||||||
with:
|
with:
|
||||||
actions: 'create-comment,add-labels,close-issue'
|
actions: 'create-comment,add-labels,close-issue'
|
||||||
@ -83,6 +83,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
DING_TALK_TOKEN: ${{ secrets.DINGDING_BOT_TOKEN }}
|
DING_TALK_TOKEN: ${{ secrets.DINGDING_BOT_TOKEN }}
|
||||||
notify_title: '🔥 @${{ github.event.issue.user.login }} 创建了 issue:${{ github.event.issue.title }}'
|
notify_title: '🔥 @${{ github.event.issue.user.login }} 创建了 issue:${{ github.event.issue.title }}'
|
||||||
notify_body: '### 🔥 @${{ github.event.issue.user.login }} 创建了 issue:[${{ github.event.issue.title }}](${{ github.event.issue.html_url }}) <hr /> ${{ github.event.issue.body }}'
|
notify_body: '### 🔥 @${{ github.event.issue.user.login }} 创建了 issue:[${{ github.event.issue.title }}](${{ github.event.issue.html_url }}) <hr /> '
|
||||||
notify_footer: '> 💬 欢迎前往 GitHub 进行讨论,社区可能需要你的帮助。'
|
notify_footer: '> 💬 欢迎前往 GitHub 进行讨论,社区可能需要你的帮助。'
|
||||||
at_all: false # whether to ding everybody
|
at_all: false # whether to ding everybody
|
||||||
|
@ -9,7 +9,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: analysis
|
- name: analysis
|
||||||
uses: actions-cool/issues-similarity-analysis@v1.0.0
|
uses: actions-cool/issues-similarity-analysis@v1.1.0
|
||||||
with:
|
with:
|
||||||
filter-threshold: 0.5
|
filter-threshold: 0.5
|
||||||
title-excludes: ''
|
title-excludes: ''
|
||||||
|
16
.github/workflows/preview-build.yml
vendored
16
.github/workflows/preview-build.yml
vendored
@ -13,10 +13,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: cache package-lock.json
|
- name: cache package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
@ -32,7 +32,7 @@ jobs:
|
|||||||
cp package-lock.json package-temp-dir
|
cp package-lock.json package-temp-dir
|
||||||
- name: cache node_modules
|
- name: cache node_modules
|
||||||
id: node_modules_cache_id
|
id: node_modules_cache_id
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -47,16 +47,16 @@ jobs:
|
|||||||
needs: setup
|
needs: setup
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -68,7 +68,7 @@ jobs:
|
|||||||
SITE_ENV: development
|
SITE_ENV: development
|
||||||
|
|
||||||
- name: upload site artifact
|
- name: upload site artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: site
|
name: site
|
||||||
path: _site/
|
path: _site/
|
||||||
@ -81,7 +81,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload PR number
|
- name: Upload PR number
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: pr
|
name: pr
|
||||||
path: ./pr-id.txt
|
path: ./pr-id.txt
|
||||||
|
2
.github/workflows/rebase.yml
vendored
2
.github/workflows/rebase.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
|||||||
if: github.event.issue.pull_request != '' && (contains(github.event.comment.body, '/rebase') || contains(github.event.comment.body, '\rebase'))
|
if: github.event.issue.pull_request != '' && (contains(github.event.comment.body, '/rebase') || contains(github.event.comment.body, '\rebase'))
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Automatic Rebase
|
- name: Automatic Rebase
|
||||||
|
12
.github/workflows/site-deploy.yml
vendored
12
.github/workflows/site-deploy.yml
vendored
@ -10,10 +10,10 @@ jobs:
|
|||||||
if: github.event.ref_type == 'tag' && (contains(github.event.ref, '-') == false)
|
if: github.event.ref_type == 'tag' && (contains(github.event.ref, '-') == false)
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: cache package-lock.json
|
- name: cache package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
@ -29,7 +29,7 @@ jobs:
|
|||||||
cp package-lock.json package-temp-dir
|
cp package-lock.json package-temp-dir
|
||||||
- name: cache node_modules
|
- name: cache node_modules
|
||||||
id: node_modules_cache_id
|
id: node_modules_cache_id
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -43,16 +43,16 @@ jobs:
|
|||||||
needs: setup
|
needs: setup
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
108
.github/workflows/test.yml
vendored
108
.github/workflows/test.yml
vendored
@ -9,10 +9,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: cache package-lock.json
|
- name: cache package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
@ -28,7 +28,7 @@ jobs:
|
|||||||
cp package-lock.json package-temp-dir
|
cp package-lock.json package-temp-dir
|
||||||
- name: cache node_modules
|
- name: cache node_modules
|
||||||
id: node_modules_cache_id
|
id: node_modules_cache_id
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -41,28 +41,28 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
|
||||||
- name: cache lib
|
- name: cache lib
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: lib
|
path: lib
|
||||||
key: lib-${{ github.sha }}
|
key: lib-${{ github.sha }}
|
||||||
|
|
||||||
- name: cache es
|
- name: cache es
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: es
|
path: es
|
||||||
key: es-${{ github.sha }}
|
key: es-${{ github.sha }}
|
||||||
@ -78,16 +78,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -100,16 +100,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -122,16 +122,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -145,16 +145,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -171,16 +171,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -194,22 +194,22 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
|
||||||
- name: restore cache from lib
|
- name: restore cache from lib
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: lib
|
path: lib
|
||||||
key: lib-${{ github.sha }}
|
key: lib-${{ github.sha }}
|
||||||
@ -225,22 +225,22 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
|
||||||
- name: restore cache from es
|
- name: restore cache from es
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: es
|
path: es
|
||||||
key: es-${{ github.sha }}
|
key: es-${{ github.sha }}
|
||||||
@ -256,16 +256,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -296,16 +296,16 @@ jobs:
|
|||||||
REACT: 16
|
REACT: 16
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -324,16 +324,16 @@ jobs:
|
|||||||
REACT: 16
|
REACT: 16
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -352,22 +352,22 @@ jobs:
|
|||||||
REACT: 16
|
REACT: 16
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
|
||||||
- name: restore cache from lib
|
- name: restore cache from lib
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: lib
|
path: lib
|
||||||
key: lib-${{ github.sha }}
|
key: lib-${{ github.sha }}
|
||||||
@ -388,22 +388,22 @@ jobs:
|
|||||||
REACT: 16
|
REACT: 16
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
|
||||||
- name: restore cache from es
|
- name: restore cache from es
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: es
|
path: es
|
||||||
key: es-${{ github.sha }}
|
key: es-${{ github.sha }}
|
||||||
@ -424,16 +424,16 @@ jobs:
|
|||||||
REACT: 16
|
REACT: 16
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -460,16 +460,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: restore cache from package-lock.json
|
- name: restore cache from package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
|
|
||||||
- name: restore cache from node_modules
|
- name: restore cache from node_modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
|
12
.github/workflows/ui.yml
vendored
12
.github/workflows/ui.yml
vendored
@ -12,10 +12,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: cache package-lock.json
|
- name: cache package-lock.json
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: package-temp-dir
|
path: package-temp-dir
|
||||||
key: lock-${{ github.sha }}
|
key: lock-${{ github.sha }}
|
||||||
@ -31,7 +31,7 @@ jobs:
|
|||||||
cp package-lock.json package-temp-dir
|
cp package-lock.json package-temp-dir
|
||||||
- name: cache node_modules
|
- name: cache node_modules
|
||||||
id: node_modules_cache_id
|
id: node_modules_cache_id
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
|
||||||
@ -44,7 +44,7 @@ jobs:
|
|||||||
run: npm run test-image
|
run: npm run test-image
|
||||||
|
|
||||||
- name: upload snapshots artifact
|
- name: upload snapshots artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: snapshots
|
name: snapshots
|
||||||
path: imageSnapshots/
|
path: imageSnapshots/
|
||||||
@ -60,7 +60,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload commit
|
- name: Upload commit
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: commit
|
name: commit
|
||||||
path: ./commit.txt
|
path: ./commit.txt
|
||||||
@ -75,7 +75,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload branch
|
- name: Upload branch
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: branch
|
name: branch
|
||||||
path: ./branch.txt
|
path: ./branch.txt
|
||||||
|
2
.github/workflows/verify-package-version.yml
vendored
2
.github/workflows/verify-package-version.yml
vendored
@ -9,7 +9,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: contains(github.event.pull_request.title, 'changelog') || contains(github.event.pull_request.title, 'release')
|
if: contains(github.event.pull_request.title, 'changelog') || contains(github.event.pull_request.title, 'release')
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: verify-version
|
- name: verify-version
|
||||||
uses: actions-cool/verify-package-version@v1
|
uses: actions-cool/verify-package-version@v1
|
||||||
with:
|
with:
|
||||||
|
@ -15,6 +15,21 @@ timeline: true
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 4.19.3
|
||||||
|
|
||||||
|
`2022-03-21`
|
||||||
|
|
||||||
|
- 🐞 Fix TextArea `clearIcon` color. [#34610](https://github.com/ant-design/ant-design/pull/34610)
|
||||||
|
- 🐞 Fix: apply scale transform to disabled star. [#34547](https://github.com/ant-design/ant-design/pull/34547) [@Unuuuuu](https://github.com/Unuuuuu)
|
||||||
|
- 🐞 Fix Tooltip arrow color with preset. [#34548](https://github.com/ant-design/ant-design/pull/34548)
|
||||||
|
- 🐞 Fixed number abnormal position display in Badge RTL mode. [#34545](https://github.com/ant-design/ant-design/pull/34545)
|
||||||
|
- 💄 Fix numeric Row and Col class styles when using prefixCls. [#34494](https://github.com/ant-design/ant-design/pull/34494) [@mic-web](https://github.com/mic-web)
|
||||||
|
- 🐞 Fix Editable Textarea height jump in Firefox and Editable Typography.Title confirm icon position. [#34518](https://github.com/ant-design/ant-design/pull/34518)
|
||||||
|
- 💄 Fix missing `status` style in RangePicker. [#34509](https://github.com/ant-design/ant-design/pull/34509)
|
||||||
|
- 🛎 Add warning for Input getting blurred when dynamically add `hasFeedback`. [#34475](https://github.com/ant-design/ant-design/pull/34475)
|
||||||
|
- 🐞 Fix missing classname in input when Input has `prefix` or `suffix`. [#34474](https://github.com/ant-design/ant-design/pull/34474)
|
||||||
|
- 🌐 Updated it_LT locale for `typeTemplate`. [#34567](https://github.com/ant-design/ant-design/pull/34567) [@Anizcus](https://gitit_LTit_LThub.com/Anizcus)
|
||||||
|
|
||||||
## 4.19.2
|
## 4.19.2
|
||||||
|
|
||||||
`2022-03-13`
|
`2022-03-13`
|
||||||
|
@ -15,6 +15,21 @@ timeline: true
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 4.19.3
|
||||||
|
|
||||||
|
`2022-03-21`
|
||||||
|
|
||||||
|
- 🐞 修复 TextArea `clearIcon` 的颜色问题。[#34610](https://github.com/ant-design/ant-design/pull/34610)
|
||||||
|
- 🐞 修复 Rate 下 disabled 时依然有 hover 效果的问题。[#34547](https://github.com/ant-design/ant-design/pull/34547) [@Unuuuuu](https://github.com/Unuuuuu)
|
||||||
|
- 🐞 修复 Tooltip 使用预设颜色时 arrow 颜色错误的问题。[#34548](https://github.com/ant-design/ant-design/pull/34548)
|
||||||
|
- 🐞 修复 Badge 数字 RTL 模式下异常位置显示。[#34545](https://github.com/ant-design/ant-design/pull/34545)
|
||||||
|
- 💄 修复使用 `prefixCls` 时的数字 Row 和 Col 类样式问题。[#34494](https://github.com/ant-design/ant-design/pull/34494) [@mic-web](https://github.com/mic-web)
|
||||||
|
- 🐞 修复 Typography `editable` 切换时在 Firefox 下高度跳动 和 Typography.Title `editable` 确定图标错位的问题。[#34518](https://github.com/ant-design/ant-design/pull/34518)
|
||||||
|
- 💄 修复 RangePicker `status` 相关样式丢失的问题。[#34509](https://github.com/ant-design/ant-design/pull/34509)
|
||||||
|
- 🛎 为动态改变 Form.Item 的 `hasFeedback` 时 Input 焦点丢失添加警告。[#34475](https://github.com/ant-design/ant-design/pull/34475)
|
||||||
|
- 🐞 修复 Input 有 `prefix` 或者 `suffix` 时 input 缺少某些 className 的问题。[#34474](https://github.com/ant-design/ant-design/pull/34474)
|
||||||
|
- 🌐 更新 it_LT 的 locale。[#34567](https://github.com/ant-desin/ant-design/pull/34567) [@Anizcus](https://github.com/Anizcus)
|
||||||
|
|
||||||
## 4.19.2
|
## 4.19.2
|
||||||
|
|
||||||
`2022-03-13`
|
`2022-03-13`
|
||||||
|
161
README-ja_JP.md
Normal file
161
README-ja_JP.md
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
<p align="center">
|
||||||
|
<a href="https://ant.design">
|
||||||
|
<img width="200" src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h1 align="center">Ant Design</h1>
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
エンタープライズクラスの UI 設計言語と React UI ライブラリです。
|
||||||
|
|
||||||
|
[![CI status][github-action-image]][github-action-url] [![codecov][codecov-image]][codecov-url] [![NPM version][npm-image]][npm-url] [![NPM downloads][download-image]][download-url]
|
||||||
|
|
||||||
|
[![Renovate status][renovate-image]][renovate-dashboard-url] [![Total alerts][lgtm-image]][lgtm-url] [![][bundlesize-js-image]][unpkg-js-url] [![][bundlesize-css-image]][unpkg-css-url]
|
||||||
|
|
||||||
|
[![Follow Twitter][twitter-image]][twitter-url] [![FOSSA Status][fossa-image]][fossa-url] [![Discussions][discussions-image]][discussions-url] [![][issues-helper-image]][issues-helper-url] [![Issues need help][help-wanted-image]][help-wanted-url]
|
||||||
|
|
||||||
|
[npm-image]: http://img.shields.io/npm/v/antd.svg?style=flat-square
|
||||||
|
[npm-url]: http://npmjs.org/package/antd
|
||||||
|
[github-action-image]: https://github.com/ant-design/ant-design/workflows/%E2%9C%85%20test/badge.svg
|
||||||
|
[github-action-url]: https://github.com/ant-design/ant-design/actions?query=workflow%3A%22%E2%9C%85+test%22
|
||||||
|
[codecov-image]: https://img.shields.io/codecov/c/github/ant-design/ant-design/master.svg?style=flat-square
|
||||||
|
[codecov-url]: https://codecov.io/gh/ant-design/ant-design/branch/master
|
||||||
|
[download-image]: https://img.shields.io/npm/dm/antd.svg?style=flat-square
|
||||||
|
[download-url]: https://npmjs.org/package/antd
|
||||||
|
[lgtm-image]: https://flat.badgen.net/lgtm/alerts/g/ant-design/ant-design
|
||||||
|
[lgtm-url]: https://lgtm.com/projects/g/ant-design/ant-design/alerts/
|
||||||
|
[fossa-image]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fant-design%2Fant-design.svg?type=shield
|
||||||
|
[fossa-url]: https://app.fossa.io/projects/git%2Bgithub.com%2Fant-design%2Fant-design?ref=badge_shield
|
||||||
|
[help-wanted-image]: https://flat.badgen.net/github/label-issues/ant-design/ant-design/help%20wanted/open
|
||||||
|
[help-wanted-url]: https://github.com/ant-design/ant-design/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22
|
||||||
|
[twitter-image]: https://img.shields.io/twitter/follow/AntDesignUI.svg?label=Ant%20Design&style=social
|
||||||
|
[twitter-url]: https://twitter.com/AntDesignUI
|
||||||
|
[discussions-image]: https://img.shields.io/badge/discussions-on%20github-blue?style=flat-square
|
||||||
|
[discussions-url]: https://github.com/ant-design/ant-design/discussions
|
||||||
|
[bundlesize-js-image]: https://img.badgesize.io/https:/unpkg.com/antd/dist/antd.min.js?label=antd.min.js&compression=gzip&style=flat-square
|
||||||
|
[bundlesize-css-image]: https://img.badgesize.io/https:/unpkg.com/antd/dist/antd.min.css?label=antd.min.css&compression=gzip&style=flat-square
|
||||||
|
[unpkg-js-url]: https://unpkg.com/browse/antd/dist/antd.min.js
|
||||||
|
[unpkg-css-url]: https://unpkg.com/browse/antd/dist/antd.min.css
|
||||||
|
[issues-helper-image]: https://img.shields.io/badge/using-issues--helper-orange?style=flat-square
|
||||||
|
[issues-helper-url]: https://github.com/actions-cool/issues-helper
|
||||||
|
[renovate-image]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?style=flat-square
|
||||||
|
[renovate-dashboard-url]: https://github.com/ant-design/ant-design/issues/32498
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
[](https://ant.design)
|
||||||
|
|
||||||
|
[English](./README.md) | [Português](./README-pt_BR.md) | [简体中文](./README-zh_CN.md) | [Українською](./README-uk_UA.md) | [Spanish](./README-sp_MX.md) | 日本語
|
||||||
|
|
||||||
|
## ✨ 機能
|
||||||
|
|
||||||
|
- 🌈 ウェブアプリケーション用に設計されたエンタープライズクラスの UI。
|
||||||
|
- 📦 高品質な React コンポーネントのセットが箱から出されます。
|
||||||
|
- 🛡 TypeScript で書かれており、予測可能な静的型がある。
|
||||||
|
- ⚙️ デザインリソースと開発ツールの全体的なパッケージ。
|
||||||
|
- 🌍 数十の言語に対応した国際化サポート。
|
||||||
|
- 🎨 強力なテーマのカスタマイズを細部にわたって実現。
|
||||||
|
|
||||||
|
## 🖥 環境対応
|
||||||
|
|
||||||
|
- モダンブラウザ、Internet Explorer 11 (with [polyfills](https://stackoverflow.com/questions/57020976/polyfills-in-2019-for-ie11))
|
||||||
|
- サーバーサイド レンダリング
|
||||||
|
- [Electron](https://www.electronjs.org/)
|
||||||
|
|
||||||
|
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png" alt="Electron" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Electron |
|
||||||
|
| --- | --- | --- | --- | --- |
|
||||||
|
| IE11, Edge | 直近の 2 バージョン | 直近の 2 バージョン | 直近の 2 バージョン | 直近の 2 バージョン |
|
||||||
|
|
||||||
|
## 📦 インストール
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install antd
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn add antd
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🔨 使い方
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import { Button, DatePicker } from 'antd';
|
||||||
|
|
||||||
|
const App = () => (
|
||||||
|
<>
|
||||||
|
<Button type="primary">PRESS ME</Button>
|
||||||
|
<DatePicker placeholder="select date" />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
そして、手動でスタイルをインポートする:
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
|
||||||
|
```
|
||||||
|
|
||||||
|
### TypeScript
|
||||||
|
|
||||||
|
`antd` は TypeScript で書かれており、完全な定義がなされています。まずは [TypeScript で使う](https://ant.design/docs/react/use-in-typescript)をチェックしてください。
|
||||||
|
|
||||||
|
## 🌍 国際化対応
|
||||||
|
|
||||||
|
数十の言語が `antd` でサポートされています。[i18n](https://ant.design/docs/react/i18n) を参照してください。
|
||||||
|
|
||||||
|
## 🔗 リンク
|
||||||
|
|
||||||
|
- [ホームページ](https://ant.design/)
|
||||||
|
- [コンポーネントの概要](https://ant.design/components/overview)
|
||||||
|
- [Ant Design Pro](http://pro.ant.design/)
|
||||||
|
- [変更ログ](CHANGELOG.en-US.md)
|
||||||
|
- [rc-components](http://react-component.github.io/)
|
||||||
|
- [Mobile UI](http://mobile.ant.design)
|
||||||
|
- [Ant Design Pro コンポーネント](https://procomponents.ant.design)
|
||||||
|
- [Ant Design チャート](https://charts.ant.design)
|
||||||
|
- [Ant Design アイコン](https://github.com/ant-design/ant-design-icons)
|
||||||
|
- [Ant Design カラー](https://github.com/ant-design/ant-design-colors)
|
||||||
|
- [ランディングページ](https://landing.ant.design)
|
||||||
|
- [動作](https://motion.ant.design)
|
||||||
|
- [足場マーケット](http://scaffold.ant.design)
|
||||||
|
- [開発者向けインストラクション](https://github.com/ant-design/ant-design/wiki/Development)
|
||||||
|
- [バージョン管理リリースノート](https://github.com/ant-design/ant-design/wiki/%E8%BD%AE%E5%80%BC%E8%A7%84%E5%88%99%E5%92%8C%E7%89%88%E6%9C%AC%E5%8F%91%E5%B8%83%E6%B5%81%E7%A8%8B)
|
||||||
|
- [FAQ](https://ant.design/docs/react/faq)
|
||||||
|
- バグレポート用の [CodeSandbox テンプレート](https://u.ant.design/codesandbox-repro)
|
||||||
|
- [テーマのカスタマイズ](https://ant.design/docs/react/customize-theme)
|
||||||
|
- [コラボレーターへの応募方法](https://github.com/ant-design/ant-design/wiki/Collaborators#how-to-apply-for-being-a-collaborator)
|
||||||
|
|
||||||
|
## ⌨️ 開発
|
||||||
|
|
||||||
|
GitHub の無料オンライン開発環境である Gitpod を利用する。
|
||||||
|
|
||||||
|
[](https://gitpod.io/#https://github.com/ant-design/ant-design)
|
||||||
|
|
||||||
|
またはローカルにクローンする:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git clone git@github.com:ant-design/ant-design.git
|
||||||
|
$ cd ant-design
|
||||||
|
$ npm install
|
||||||
|
$ npm start
|
||||||
|
```
|
||||||
|
|
||||||
|
ブラウザを起動し、http://127.0.0.1:8001 にアクセスして[開発セクション](https://github.com/ant-design/ant-design/wiki/Development)の続きをもっと見る.
|
||||||
|
|
||||||
|
## 🤝 貢献 [](http://makeapullrequest.com)
|
||||||
|
|
||||||
|
[貢献ガイド](https://ant.design/docs/react/contributing)を読んで、よりよい antd を一緒の作り上げましょう。
|
||||||
|
|
||||||
|
すべての貢献に感謝します。まずは [CONTRIBUTING.md](https://github.com/ant-design/ant-design/blob/master/.github/CONTRIBUTING.md) をお読みください. どんなアイデアも [Pull Request](https://github.com/ant-design/ant-design/pulls) や [GitHub issues](https://github.com/ant-design/ant-design/issues) で応募することができます. コードの改良をしたい方は、[開発手順](https://github.com/ant-design/ant-design/wiki/Development) を確認してください。あとは楽しみましょう! :)
|
||||||
|
|
||||||
|
コラボレーターの方は、[コラボレーター テンプレート](https://github.com/ant-design/ant-design/compare?expand=1&template=collaborator.md)を使い、Pull Request を作成するための[プルリクエストの原則](https://github.com/ant-design/ant-design/wiki/PR-principle)に従ってください。
|
||||||
|
|
||||||
|
[](https://issuehunt.io/repos/34526884)
|
||||||
|
|
||||||
|
## ❤️ スポンサーと後援者 [](https://opencollective.com/ant-design#support) [](https://opencollective.com/ant-design#support)
|
||||||
|
|
||||||
|
[](https://opencollective.com/ant-design#support)
|
||||||
|
|
||||||
|
[](https://opencollective.com/ant-design#support)
|
@ -49,7 +49,7 @@ Uma solução empresarial de design e biblioteca UI para React.
|
|||||||
|
|
||||||
[](https://ant.design)
|
[](https://ant.design)
|
||||||
|
|
||||||
[English](./README.md) | Português | [简体中文](./README-zh_CN.md) | [Українською](./README-uk_UA.md) | [Spanish](./README-sp_MX.md)
|
[English](./README.md) | Português | [简体中文](./README-zh_CN.md) | [Українською](./README-uk_UA.md) | [Spanish](./README-sp_MX.md) | [日本語](./README-ja_JP.md)
|
||||||
|
|
||||||
## ✨ Funcionalidades
|
## ✨ Funcionalidades
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ Un lenguaje de diseño de interfaz de usuario de clase empresarial y una bibliot
|
|||||||
|
|
||||||
[](https://ant.design)
|
[](https://ant.design)
|
||||||
|
|
||||||
[English](./README.md) | [Português](./README-pt_BR.md) | [简体中文](./README-zh_CN.md) | [Українською](./README-uk_UA.md) | Spanish
|
[English](./README.md) | [Português](./README-pt_BR.md) | [简体中文](./README-zh_CN.md) | [Українською](./README-uk_UA.md) | Spanish | [日本語](./README-ja_JP.md)
|
||||||
|
|
||||||
## ✨ Características
|
## ✨ Características
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
[](https://ant.design)
|
[](https://ant.design)
|
||||||
|
|
||||||
[English](./README.md) | [Português](./README-pt_BR.md) | [简体中文](./README-zh_CN.md) | Українською | [Spanish](./README-sp_MX.md)
|
[English](./README.md) | [Português](./README-pt_BR.md) | [简体中文](./README-zh_CN.md) | Українською | [Spanish](./README-sp_MX.md) | [日本語](./README-ja_JP.md)
|
||||||
|
|
||||||
## ✨ Особливості
|
## ✨ Особливості
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
[](https://ant.design/index-cn)
|
[](https://ant.design/index-cn)
|
||||||
|
|
||||||
[English](./README.md) | [Português](./README-pt_BR.md) | 简体中文 | [Українською](./README-uk_UA.md) | [Spanish](./README-sp_MX.md)
|
[English](./README.md) | [Português](./README-pt_BR.md) | 简体中文 | [Українською](./README-uk_UA.md) | [Spanish](./README-sp_MX.md) | [日本語](./README-ja_JP.md)
|
||||||
|
|
||||||
## ✨ 特性
|
## ✨ 特性
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ export interface AffixProps {
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface InternalAffixProps extends AffixProps {
|
interface InternalAffixProps extends AffixProps {
|
||||||
affixPrefixCls: string;
|
affixPrefixCls: string;
|
||||||
rootClassName: string;
|
rootClassName: string;
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,21 @@
|
|||||||
@media screen and (max-width: @screen-md) {
|
@media screen and (max-width: @screen-md) {
|
||||||
.@{backtop-prefix-cls} {
|
.@{backtop-prefix-cls} {
|
||||||
right: 60px;
|
right: 60px;
|
||||||
|
|
||||||
|
&-rtl {
|
||||||
|
right: auto;
|
||||||
|
left: 60px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: @screen-xs) {
|
@media screen and (max-width: @screen-xs) {
|
||||||
.@{backtop-prefix-cls} {
|
.@{backtop-prefix-cls} {
|
||||||
right: 20px;
|
right: 20px;
|
||||||
|
|
||||||
|
&-rtl {
|
||||||
|
right: auto;
|
||||||
|
left: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,19 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-zoom-appear,
|
||||||
|
&-zoom-enter {
|
||||||
|
.@{badge-prefix-cls}-rtl & {
|
||||||
|
animation-name: antZoomBadgeInRtl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-zoom-leave {
|
||||||
|
.@{badge-prefix-cls}-rtl & {
|
||||||
|
animation-name: antZoomBadgeOutRtl;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.@{ribbon-prefix-cls}-rtl {
|
.@{ribbon-prefix-cls}-rtl {
|
||||||
@ -65,3 +78,25 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes antZoomBadgeInRtl {
|
||||||
|
0% {
|
||||||
|
transform: scale(0) translate(-50%, -50%);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: scale(1) translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes antZoomBadgeOutRtl {
|
||||||
|
0% {
|
||||||
|
transform: scale(1) translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: scale(0) translate(-50%, -50%);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -403,4 +403,20 @@ describe('Calendar', () => {
|
|||||||
);
|
);
|
||||||
expect(wrapper.find('.bamboo').first().text()).toEqual('Light');
|
expect(wrapper.find('.bamboo').first().text()).toEqual('Light');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('when fullscreen is false, the element returned by dateFullCellRender should be interactive', () => {
|
||||||
|
const onClick = jest.fn();
|
||||||
|
const wrapper = mount(
|
||||||
|
<Calendar
|
||||||
|
fullscreen={false}
|
||||||
|
dateFullCellRender={() => (
|
||||||
|
<div className="bamboo" onClick={onClick}>
|
||||||
|
Light
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
/>,
|
||||||
|
);
|
||||||
|
wrapper.find('.bamboo').first().simulate('click');
|
||||||
|
expect(onClick).toBeCalled();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -70,6 +70,10 @@
|
|||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.@{calendar-picker-prefix-cls}-cell::before {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ========================== Full ==========================
|
// ========================== Full ==========================
|
||||||
|
@ -22,20 +22,20 @@ A Drawer is a panel that is typically overlaid on top of a page and slides in fr
|
|||||||
| --- | --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- |
|
||||||
| autoFocus | Whether Drawer should get focused after open | boolean | true | 4.17.0 |
|
| autoFocus | Whether Drawer should get focused after open | boolean | true | 4.17.0 |
|
||||||
| afterVisibleChange | Callback after the animation ends when switching drawers | function(visible) | - | |
|
| afterVisibleChange | Callback after the animation ends when switching drawers | function(visible) | - | |
|
||||||
| bodyStyle | Style of the drawer content part | object | - | |
|
| bodyStyle | Style of the drawer content part | CSSProperties | - | |
|
||||||
| className | The class name of the container of the Drawer dialog | string | - | |
|
| className | The class name of the container of the Drawer dialog | string | - | |
|
||||||
| closable | Whether a close (x) button is visible on top left of the Drawer dialog or not | boolean | true | |
|
| closable | Whether a close (x) button is visible on top left of the Drawer dialog or not | boolean | true | |
|
||||||
| closeIcon | Custom close icon | ReactNode | <CloseOutlined /> | |
|
| closeIcon | Custom close icon | ReactNode | <CloseOutlined /> | |
|
||||||
| contentWrapperStyle | Style of the drawer wrapper of content part | CSSProperties | - | |
|
| contentWrapperStyle | Style of the drawer wrapper of content part | CSSProperties | - | |
|
||||||
| destroyOnClose | Whether to unmount child components on closing drawer or not | boolean | false | |
|
| destroyOnClose | Whether to unmount child components on closing drawer or not | boolean | false | |
|
||||||
| drawerStyle | Style of the popup layer element | object | - | |
|
| drawerStyle | Style of the popup layer element | CSSProperties | - | |
|
||||||
| extra | Extra actions area at corner | ReactNode | - | 4.17.0 |
|
| extra | Extra actions area at corner | ReactNode | - | 4.17.0 |
|
||||||
| footer | The footer for Drawer | ReactNode | - | |
|
| footer | The footer for Drawer | ReactNode | - | |
|
||||||
| footerStyle | Style of the drawer footer part | CSSProperties | - | |
|
| footerStyle | Style of the drawer footer part | CSSProperties | - | |
|
||||||
| forceRender | Prerender Drawer component forcely | boolean | false | |
|
| forceRender | Prerender Drawer component forcely | boolean | false | |
|
||||||
| getContainer | Return the mounted node for Drawer | HTMLElement \| () => HTMLElement \| Selectors \| false | body | |
|
| getContainer | Return the mounted node for Drawer | HTMLElement \| () => HTMLElement \| Selectors \| false | body | |
|
||||||
| headerStyle | Style of the drawer header part | object | - | |
|
| headerStyle | Style of the drawer header part | CSSProperties | - | |
|
||||||
| height | Placement is `top` or `bottom`, height of the Drawer dialog | string \| number | 256 | |
|
| height | Placement is `top` or `bottom`, height of the Drawer dialog | string \| number | 378 | |
|
||||||
| keyboard | Whether support press esc to close | boolean | true | |
|
| keyboard | Whether support press esc to close | boolean | true | |
|
||||||
| mask | Whether to show mask or not | boolean | true | |
|
| mask | Whether to show mask or not | boolean | true | |
|
||||||
| maskClosable | Clicking on the mask (area outside the Drawer) to close the Drawer or not | boolean | true | |
|
| maskClosable | Clicking on the mask (area outside the Drawer) to close the Drawer or not | boolean | true | |
|
||||||
|
@ -34,7 +34,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/7z8NJQhFb/Drawer.svg
|
|||||||
| forceRender | 预渲染 Drawer 内元素 | boolean | false | |
|
| forceRender | 预渲染 Drawer 内元素 | boolean | false | |
|
||||||
| getContainer | 指定 Drawer 挂载的 HTML 节点, false 为挂载在当前 dom | HTMLElement \| () => HTMLElement \| Selectors \| false | body | |
|
| getContainer | 指定 Drawer 挂载的 HTML 节点, false 为挂载在当前 dom | HTMLElement \| () => HTMLElement \| Selectors \| false | body | |
|
||||||
| headerStyle | 用于设置 Drawer 头部的样式 | CSSProperties | - | |
|
| headerStyle | 用于设置 Drawer 头部的样式 | CSSProperties | - | |
|
||||||
| height | 高度, 在 `placement` 为 `top` 或 `bottom` 时使用 | string \| number | 256 | |
|
| height | 高度, 在 `placement` 为 `top` 或 `bottom` 时使用 | string \| number | 378 | |
|
||||||
| keyboard | 是否支持键盘 esc 关闭 | boolean | true | |
|
| keyboard | 是否支持键盘 esc 关闭 | boolean | true | |
|
||||||
| mask | 是否展示遮罩 | boolean | true | |
|
| mask | 是否展示遮罩 | boolean | true | |
|
||||||
| maskClosable | 点击蒙层是否允许关闭 | boolean | true | |
|
| maskClosable | 点击蒙层是否允许关闭 | boolean | true | |
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
@input-prefix-cls: ~'@{ant-prefix}-input';
|
@input-prefix-cls: ~'@{ant-prefix}-input';
|
||||||
|
|
||||||
// ========================= Input =========================
|
// ========================= Input =========================
|
||||||
|
.@{iconfont-css-prefix}.@{ant-prefix}-input-clear-icon,
|
||||||
.@{ant-prefix}-input-clear-icon {
|
.@{ant-prefix}-input-clear-icon {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: @disabled-color;
|
color: @disabled-color;
|
||||||
|
@ -6,7 +6,7 @@ import Menu from '../../menu';
|
|||||||
import mountTest from '../../../tests/shared/mountTest';
|
import mountTest from '../../../tests/shared/mountTest';
|
||||||
import rtlTest from '../../../tests/shared/rtlTest';
|
import rtlTest from '../../../tests/shared/rtlTest';
|
||||||
|
|
||||||
const { Sider, Content } = Layout;
|
const { Sider, Content, Footer, Header } = Layout;
|
||||||
|
|
||||||
describe('Layout', () => {
|
describe('Layout', () => {
|
||||||
mountTest(Layout);
|
mountTest(Layout);
|
||||||
@ -285,15 +285,19 @@ describe('Sider', () => {
|
|||||||
expect(wrapper.find('.ant-layout-sider-zero-width-trigger').find('.my-trigger').length).toBe(1);
|
expect(wrapper.find('.ant-layout-sider-zero-width-trigger').find('.my-trigger').length).toBe(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should get aside element from ref', () => {
|
['Layout', 'Header', 'Footer', 'Sider'].forEach(tag => {
|
||||||
const ref = React.createRef();
|
const ComponentMap = { Layout, Header, Footer, Sider };
|
||||||
const onSelect = jest.fn();
|
it(`should get ${tag} element from ref`, () => {
|
||||||
|
const ref = React.createRef();
|
||||||
|
const onSelect = jest.fn();
|
||||||
|
const Component = ComponentMap[tag];
|
||||||
|
|
||||||
mount(
|
mount(
|
||||||
<Sider onSelect={onSelect} ref={ref}>
|
<Component onSelect={onSelect} ref={ref}>
|
||||||
Sider
|
{tag}
|
||||||
</Sider>,
|
</Component>,
|
||||||
);
|
);
|
||||||
expect(ref.current instanceof HTMLElement).toBe(true);
|
expect(ref.current instanceof HTMLElement).toBe(true);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
import InternalLayout, { BasicProps, Content, Footer, Header } from './layout';
|
import InternalLayout, { Content, Footer, Header } from './layout';
|
||||||
import Sider from './Sider';
|
import Sider from './Sider';
|
||||||
|
|
||||||
export { BasicProps as LayoutProps } from './layout';
|
export { BasicProps as LayoutProps } from './layout';
|
||||||
export { SiderProps } from './Sider';
|
export { SiderProps } from './Sider';
|
||||||
|
|
||||||
interface LayoutType extends React.FC<BasicProps> {
|
type InternalLayoutType = typeof InternalLayout;
|
||||||
|
|
||||||
|
interface LayoutType extends InternalLayoutType {
|
||||||
Header: typeof Header;
|
Header: typeof Header;
|
||||||
Footer: typeof Footer;
|
Footer: typeof Footer;
|
||||||
Content: typeof Content;
|
Content: typeof Content;
|
||||||
|
@ -31,25 +31,25 @@ interface BasicPropsWithTagName extends BasicProps {
|
|||||||
|
|
||||||
function generator({ suffixCls, tagName, displayName }: GeneratorProps) {
|
function generator({ suffixCls, tagName, displayName }: GeneratorProps) {
|
||||||
return (BasicComponent: any) => {
|
return (BasicComponent: any) => {
|
||||||
const Adapter: React.FC<BasicProps> = props => {
|
const Adapter = React.forwardRef<HTMLElement, BasicProps>((props, ref) => {
|
||||||
const { getPrefixCls } = React.useContext(ConfigContext);
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
||||||
const { prefixCls: customizePrefixCls } = props;
|
const { prefixCls: customizePrefixCls } = props;
|
||||||
const prefixCls = getPrefixCls(suffixCls, customizePrefixCls);
|
const prefixCls = getPrefixCls(suffixCls, customizePrefixCls);
|
||||||
|
|
||||||
return <BasicComponent prefixCls={prefixCls} tagName={tagName} {...props} />;
|
return <BasicComponent ref={ref} prefixCls={prefixCls} tagName={tagName} {...props} />;
|
||||||
};
|
});
|
||||||
Adapter.displayName = displayName;
|
Adapter.displayName = displayName;
|
||||||
return Adapter;
|
return Adapter;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const Basic = (props: BasicPropsWithTagName) => {
|
const Basic = React.forwardRef<HTMLElement, BasicPropsWithTagName>((props, ref) => {
|
||||||
const { prefixCls, className, children, tagName, ...others } = props;
|
const { prefixCls, className, children, tagName, ...others } = props;
|
||||||
const classString = classNames(prefixCls, className);
|
const classString = classNames(prefixCls, className);
|
||||||
return React.createElement(tagName, { className: classString, ...others }, children);
|
return React.createElement(tagName, { className: classString, ...others, ref }, children);
|
||||||
};
|
});
|
||||||
|
|
||||||
const BasicLayout: React.FC<BasicPropsWithTagName> = props => {
|
const BasicLayout = React.forwardRef<HTMLElement, BasicPropsWithTagName>((props, ref) => {
|
||||||
const { direction } = React.useContext(ConfigContext);
|
const { direction } = React.useContext(ConfigContext);
|
||||||
|
|
||||||
const [siders, setSiders] = React.useState<string[]>([]);
|
const [siders, setSiders] = React.useState<string[]>([]);
|
||||||
@ -80,12 +80,12 @@ const BasicLayout: React.FC<BasicPropsWithTagName> = props => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<LayoutContext.Provider value={contextValue}>
|
<LayoutContext.Provider value={contextValue}>
|
||||||
<Tag className={classString} {...others}>
|
<Tag ref={ref} className={classString} {...others}>
|
||||||
{children}
|
{children}
|
||||||
</Tag>
|
</Tag>
|
||||||
</LayoutContext.Provider>
|
</LayoutContext.Provider>
|
||||||
);
|
);
|
||||||
};
|
});
|
||||||
|
|
||||||
const Layout = generator({
|
const Layout = generator({
|
||||||
suffixCls: 'layout',
|
suffixCls: 'layout',
|
||||||
|
@ -246411,25 +246411,25 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
2ª
|
Seg
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
3ª
|
Ter
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
4ª
|
Qua
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
5ª
|
Qui
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
6ª
|
Sex
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Sá
|
Sáb
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Do
|
Dom
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -248467,25 +248467,25 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
2ª
|
Seg
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
3ª
|
Ter
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
4ª
|
Qua
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
5ª
|
Qui
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
6ª
|
Sex
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Sá
|
Sáb
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Do
|
Dom
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -249003,25 +249003,25 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
2ª
|
Seg
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
3ª
|
Ter
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
4ª
|
Qua
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
5ª
|
Qui
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
6ª
|
Sex
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Sá
|
Sáb
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Do
|
Dom
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -250042,9 +250042,9 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
|||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="ant-select-selection-item"
|
class="ant-select-selection-item"
|
||||||
title="set"
|
title="Set"
|
||||||
>
|
>
|
||||||
set
|
Set
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
@ -250134,25 +250134,25 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
2ª
|
Seg
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
3ª
|
Ter
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
4ª
|
Qua
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
5ª
|
Qui
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
6ª
|
Sex
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Sá
|
Sáb
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Do
|
Dom
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -12,7 +12,7 @@ import {
|
|||||||
attachTypeApi,
|
attachTypeApi,
|
||||||
ThenableArgument,
|
ThenableArgument,
|
||||||
getKeyThenIncreaseKey,
|
getKeyThenIncreaseKey,
|
||||||
NoticeType,
|
typeList,
|
||||||
} from '..';
|
} from '..';
|
||||||
|
|
||||||
export default function createUseMessage(
|
export default function createUseMessage(
|
||||||
@ -78,9 +78,7 @@ export default function createUseMessage(
|
|||||||
|
|
||||||
hookApiRef.current.open = notify;
|
hookApiRef.current.open = notify;
|
||||||
|
|
||||||
(['success', 'info', 'warning', 'error', 'loading'] as NoticeType[]).forEach(type =>
|
typeList.forEach(type => attachTypeApi(hookApiRef.current, type));
|
||||||
attachTypeApi(hookApiRef.current, type),
|
|
||||||
);
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
hookApiRef.current,
|
hookApiRef.current,
|
||||||
|
@ -13,8 +13,6 @@ import InfoCircleFilled from '@ant-design/icons/InfoCircleFilled';
|
|||||||
import createUseMessage from './hooks/useMessage';
|
import createUseMessage from './hooks/useMessage';
|
||||||
import ConfigProvider, { globalConfig } from '../config-provider';
|
import ConfigProvider, { globalConfig } from '../config-provider';
|
||||||
|
|
||||||
export type NoticeType = 'info' | 'success' | 'error' | 'warning' | 'loading';
|
|
||||||
|
|
||||||
let messageInstance: RCNotificationInstance | null;
|
let messageInstance: RCNotificationInstance | null;
|
||||||
let defaultDuration = 3;
|
let defaultDuration = 3;
|
||||||
let defaultTop: number;
|
let defaultTop: number;
|
||||||
@ -128,6 +126,11 @@ const typeToIcon = {
|
|||||||
warning: ExclamationCircleFilled,
|
warning: ExclamationCircleFilled,
|
||||||
loading: LoadingOutlined,
|
loading: LoadingOutlined,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type NoticeType = keyof typeof typeToIcon;
|
||||||
|
|
||||||
|
export const typeList = Object.keys(typeToIcon) as NoticeType[];
|
||||||
|
|
||||||
export interface ArgsProps {
|
export interface ArgsProps {
|
||||||
content: React.ReactNode;
|
content: React.ReactNode;
|
||||||
duration?: number;
|
duration?: number;
|
||||||
@ -247,9 +250,7 @@ export function attachTypeApi(originalApi: MessageApi, type: NoticeType) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
(['success', 'info', 'warning', 'error', 'loading'] as NoticeType[]).forEach(type =>
|
typeList.forEach(type => attachTypeApi(api, type));
|
||||||
attachTypeApi(api, type),
|
|
||||||
);
|
|
||||||
|
|
||||||
api.warn = api.warning;
|
api.warn = api.warning;
|
||||||
api.useMessage = createUseMessage(getRCNotificationInstance, getRCNoticeProps);
|
api.useMessage = createUseMessage(getRCNotificationInstance, getRCNoticeProps);
|
||||||
|
@ -894,14 +894,46 @@ exports[`renders ./components/space/demo/split.md extend context correctly 1`] =
|
|||||||
exports[`renders ./components/space/demo/vertical.md extend context correctly 1`] = `
|
exports[`renders ./components/space/demo/vertical.md extend context correctly 1`] = `
|
||||||
<div
|
<div
|
||||||
class="ant-space ant-space-vertical"
|
class="ant-space ant-space-vertical"
|
||||||
|
style="display:flex"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-space-item"
|
class="ant-space-item"
|
||||||
style="margin-bottom:8px"
|
style="margin-bottom:16px"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card ant-card-bordered"
|
class="ant-card ant-card-bordered ant-card-small"
|
||||||
style="width:300px"
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card-head"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card-head-wrapper"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card-head-title"
|
||||||
|
>
|
||||||
|
Card
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-card-body"
|
||||||
|
>
|
||||||
|
<p>
|
||||||
|
Card content
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Card content
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-space-item"
|
||||||
|
style="margin-bottom:16px"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card ant-card-bordered ant-card-small"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card-head"
|
class="ant-card-head"
|
||||||
@ -932,8 +964,7 @@ exports[`renders ./components/space/demo/vertical.md extend context correctly 1`
|
|||||||
class="ant-space-item"
|
class="ant-space-item"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card ant-card-bordered"
|
class="ant-card ant-card-bordered ant-card-small"
|
||||||
style="width:300px"
|
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card-head"
|
class="ant-card-head"
|
||||||
|
@ -645,14 +645,46 @@ exports[`renders ./components/space/demo/split.md correctly 1`] = `
|
|||||||
exports[`renders ./components/space/demo/vertical.md correctly 1`] = `
|
exports[`renders ./components/space/demo/vertical.md correctly 1`] = `
|
||||||
<div
|
<div
|
||||||
class="ant-space ant-space-vertical"
|
class="ant-space ant-space-vertical"
|
||||||
|
style="display:flex"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-space-item"
|
class="ant-space-item"
|
||||||
style="margin-bottom:8px"
|
style="margin-bottom:16px"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card ant-card-bordered"
|
class="ant-card ant-card-bordered ant-card-small"
|
||||||
style="width:300px"
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card-head"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card-head-wrapper"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card-head-title"
|
||||||
|
>
|
||||||
|
Card
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-card-body"
|
||||||
|
>
|
||||||
|
<p>
|
||||||
|
Card content
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Card content
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-space-item"
|
||||||
|
style="margin-bottom:16px"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-card ant-card-bordered ant-card-small"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card-head"
|
class="ant-card-head"
|
||||||
@ -683,8 +715,7 @@ exports[`renders ./components/space/demo/vertical.md correctly 1`] = `
|
|||||||
class="ant-space-item"
|
class="ant-space-item"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card ant-card-bordered"
|
class="ant-card ant-card-bordered ant-card-small"
|
||||||
style="width:300px"
|
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="ant-card-head"
|
class="ant-card-head"
|
||||||
|
@ -9,25 +9,25 @@ title:
|
|||||||
|
|
||||||
相邻组件垂直间距。
|
相邻组件垂直间距。
|
||||||
|
|
||||||
可以设置 `width: 100%` 独占一行。
|
|
||||||
|
|
||||||
## en-US
|
## en-US
|
||||||
|
|
||||||
Crowded components vertical spacing.
|
Crowded components vertical spacing.
|
||||||
|
|
||||||
Can set `width: 100%` to fill a row.
|
|
||||||
|
|
||||||
```jsx
|
```jsx
|
||||||
import { Space, Card } from 'antd';
|
import { Space, Card } from 'antd';
|
||||||
|
|
||||||
function SpaceVertical() {
|
function SpaceVertical() {
|
||||||
return (
|
return (
|
||||||
<Space direction="vertical">
|
<Space direction="vertical" size="middle" style={{ display: 'flex' }}>
|
||||||
<Card title="Card" style={{ width: 300 }}>
|
<Card title="Card" size="small">
|
||||||
<p>Card content</p>
|
<p>Card content</p>
|
||||||
<p>Card content</p>
|
<p>Card content</p>
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Card" style={{ width: 300 }}>
|
<Card title="Card" size="small">
|
||||||
|
<p>Card content</p>
|
||||||
|
<p>Card content</p>
|
||||||
|
</Card>
|
||||||
|
<Card title="Card" size="small">
|
||||||
<p>Card content</p>
|
<p>Card content</p>
|
||||||
<p>Card content</p>
|
<p>Card content</p>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -2599,6 +2599,311 @@ Array [
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`renders ./components/steps/demo/progress-dot-small.md extend context correctly 1`] = `
|
||||||
|
Array [
|
||||||
|
<div
|
||||||
|
class="ant-steps ant-steps-horizontal ant-steps-small ant-steps-label-vertical ant-steps-dot"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-finish"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Finished
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-process ant-steps-item-active"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
In Progress
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Waiting
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>,
|
||||||
|
<div
|
||||||
|
class="ant-divider ant-divider-horizontal"
|
||||||
|
role="separator"
|
||||||
|
/>,
|
||||||
|
<div
|
||||||
|
class="ant-steps ant-steps-vertical ant-steps-small ant-steps-dot"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-finish"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Finished
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description. This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-process ant-steps-item-active"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Finished
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description. This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
In Progress
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description. This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Waiting
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Waiting
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>,
|
||||||
|
]
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`renders ./components/steps/demo/simple.md extend context correctly 1`] = `
|
exports[`renders ./components/steps/demo/simple.md extend context correctly 1`] = `
|
||||||
<div
|
<div
|
||||||
class="ant-steps ant-steps-horizontal ant-steps-label-horizontal"
|
class="ant-steps ant-steps-horizontal ant-steps-label-horizontal"
|
||||||
|
@ -2479,6 +2479,311 @@ Array [
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`renders ./components/steps/demo/progress-dot-small.md correctly 1`] = `
|
||||||
|
Array [
|
||||||
|
<div
|
||||||
|
class="ant-steps ant-steps-horizontal ant-steps-small ant-steps-label-vertical ant-steps-dot"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-finish"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Finished
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-process ant-steps-item-active"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
In Progress
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Waiting
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>,
|
||||||
|
<div
|
||||||
|
class="ant-divider ant-divider-horizontal"
|
||||||
|
role="separator"
|
||||||
|
/>,
|
||||||
|
<div
|
||||||
|
class="ant-steps ant-steps-vertical ant-steps-small ant-steps-dot"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-finish"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Finished
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description. This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-process ant-steps-item-active"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Finished
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description. This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
In Progress
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description. This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Waiting
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item ant-steps-item-wait"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-tail"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="ant-steps-icon-dot"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-title"
|
||||||
|
>
|
||||||
|
Waiting
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="ant-steps-item-description"
|
||||||
|
>
|
||||||
|
This is a description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>,
|
||||||
|
]
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`renders ./components/steps/demo/simple.md correctly 1`] = `
|
exports[`renders ./components/steps/demo/simple.md correctly 1`] = `
|
||||||
<div
|
<div
|
||||||
class="ant-steps ant-steps-horizontal ant-steps-label-horizontal"
|
class="ant-steps ant-steps-horizontal ant-steps-label-horizontal"
|
||||||
|
40
components/steps/demo/progress-dot-small.md
Normal file
40
components/steps/demo/progress-dot-small.md
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
---
|
||||||
|
order: 9
|
||||||
|
title:
|
||||||
|
zh-CN: 迷你版点状步骤条
|
||||||
|
en-US: Dot Style Size Small
|
||||||
|
debug: true
|
||||||
|
---
|
||||||
|
|
||||||
|
## zh-CN
|
||||||
|
|
||||||
|
包含步骤点的进度条。
|
||||||
|
|
||||||
|
## en-US
|
||||||
|
|
||||||
|
Steps with progress dot style.
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import { Steps, Divider } from 'antd';
|
||||||
|
|
||||||
|
const { Step } = Steps;
|
||||||
|
|
||||||
|
ReactDOM.render(
|
||||||
|
<>
|
||||||
|
<Steps progressDot current={1} size="small">
|
||||||
|
<Step title="Finished" description="This is a description." />
|
||||||
|
<Step title="In Progress" description="This is a description." />
|
||||||
|
<Step title="Waiting" description="This is a description." />
|
||||||
|
</Steps>
|
||||||
|
<Divider />
|
||||||
|
<Steps progressDot current={1} direction="vertical" size="small">
|
||||||
|
<Step title="Finished" description="This is a description. This is a description." />
|
||||||
|
<Step title="Finished" description="This is a description. This is a description." />
|
||||||
|
<Step title="In Progress" description="This is a description. This is a description." />
|
||||||
|
<Step title="Waiting" description="This is a description." />
|
||||||
|
<Step title="Waiting" description="This is a description." />
|
||||||
|
</Steps>
|
||||||
|
</>,
|
||||||
|
mountNode,
|
||||||
|
);
|
||||||
|
```
|
@ -76,6 +76,7 @@
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/ant-design/ant-design/issues/18354
|
// https://github.com/ant-design/ant-design/issues/18354
|
||||||
.@{steps-prefix-cls}-item > .@{steps-prefix-cls}-item-container > .@{steps-prefix-cls}-item-tail {
|
.@{steps-prefix-cls}-item > .@{steps-prefix-cls}-item-container > .@{steps-prefix-cls}-item-tail {
|
||||||
top: 6.5px;
|
top: 6.5px;
|
||||||
@ -83,6 +84,19 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 22px 0 4px;
|
padding: 22px 0 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.@{steps-prefix-cls}-small {
|
||||||
|
.@{steps-prefix-cls}-item-icon {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.@{steps-prefix-cls}-item
|
||||||
|
> .@{steps-prefix-cls}-item-container
|
||||||
|
> .@{steps-prefix-cls}-item-tail {
|
||||||
|
top: 3.5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.@{steps-prefix-cls}-item:first-child .@{steps-prefix-cls}-icon-dot {
|
.@{steps-prefix-cls}-item:first-child .@{steps-prefix-cls}-icon-dot {
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
@ -113,7 +113,7 @@ export interface ColumnType<RecordType> extends RcColumnType<RecordType> {
|
|||||||
defaultFilteredValue?: FilterValue | null;
|
defaultFilteredValue?: FilterValue | null;
|
||||||
filterIcon?: React.ReactNode | ((filtered: boolean) => React.ReactNode);
|
filterIcon?: React.ReactNode | ((filtered: boolean) => React.ReactNode);
|
||||||
filterMode?: 'menu' | 'tree';
|
filterMode?: 'menu' | 'tree';
|
||||||
filterSearch?: boolean;
|
filterSearch?: FilterSearchType;
|
||||||
onFilter?: (value: string | number | boolean, record: RecordType) => boolean;
|
onFilter?: (value: string | number | boolean, record: RecordType) => boolean;
|
||||||
filterDropdownVisible?: boolean;
|
filterDropdownVisible?: boolean;
|
||||||
onFilterDropdownVisibleChange?: (visible: boolean) => void;
|
onFilterDropdownVisibleChange?: (visible: boolean) => void;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "antd",
|
"name": "antd",
|
||||||
"version": "4.19.2",
|
"version": "4.19.3",
|
||||||
"description": "An enterprise-class UI design language and React components implementation",
|
"description": "An enterprise-class UI design language and React components implementation",
|
||||||
"title": "Ant Design",
|
"title": "Ant Design",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -44,7 +44,7 @@ async function checkCommit({ files }) {
|
|||||||
|
|
||||||
async function checkRemote() {
|
async function checkRemote() {
|
||||||
const { remote } = await git.fetch('origin', 'master');
|
const { remote } = await git.fetch('origin', 'master');
|
||||||
if (remote.indexOf('ant-design/ant-design') === -1) {
|
if (remote?.indexOf('ant-design/ant-design') === -1) {
|
||||||
console.log(
|
console.log(
|
||||||
chalk.yellow('😓 Your remote origin is not ant-design/ant-design, did you fork it?'),
|
chalk.yellow('😓 Your remote origin is not ant-design/ant-design, did you fork it?'),
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user