From 2ae0e05255ee78bb83924e3bcda6902d9b8faa84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Thu, 11 Apr 2024 12:08:27 +0800 Subject: [PATCH 01/12] ci: typos --- .github/workflows/pr-spelling.template.yml | 13 +++++++++++++ .github/workflows/typos-config.toml | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/pr-spelling.template.yml create mode 100644 .github/workflows/typos-config.toml diff --git a/.github/workflows/pr-spelling.template.yml b/.github/workflows/pr-spelling.template.yml new file mode 100644 index 0000000000..47f3069ebe --- /dev/null +++ b/.github/workflows/pr-spelling.template.yml @@ -0,0 +1,13 @@ +name: pr-spell-check +on: [pull_request] + +jobs: + run: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Check spelling + uses: crate-ci/typos@master + with: + config: .github/workflows/typos-config.toml \ No newline at end of file diff --git a/.github/workflows/typos-config.toml b/.github/workflows/typos-config.toml new file mode 100644 index 0000000000..d4627b46ca --- /dev/null +++ b/.github/workflows/typos-config.toml @@ -0,0 +1,12 @@ +[default.extend-words] +actived = "actived" +formated = "formated" +formate = "formate" +Colum = "Colum" +ba = "ba" +ded = "ded" +thead = "thead" +ans = "ans" + +[files] +extend-exclude = ["CHANGELOG.md"] From 9147e8cf79241c956c28db82c3ff8309e4e7e194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Thu, 11 Apr 2024 12:34:17 +0800 Subject: [PATCH 02/12] ci(typos): Output Directory Structure --- .github/workflows/pr-spelling.template.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-spelling.template.yml b/.github/workflows/pr-spelling.template.yml index 47f3069ebe..e340ee8971 100644 --- a/.github/workflows/pr-spelling.template.yml +++ b/.github/workflows/pr-spelling.template.yml @@ -7,6 +7,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Output Directory Structure + run: tree . > tree-output.txt - name: Check spelling uses: crate-ci/typos@master with: From a5ff7dbe093a35a9af7d43e1831eb93249e8942d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Thu, 11 Apr 2024 14:10:20 +0800 Subject: [PATCH 03/12] ci: output file list --- .github/workflows/pr-spelling.template.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-spelling.template.yml b/.github/workflows/pr-spelling.template.yml index e340ee8971..5817a26f62 100644 --- a/.github/workflows/pr-spelling.template.yml +++ b/.github/workflows/pr-spelling.template.yml @@ -7,8 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Output Directory Structure - run: tree . > tree-output.txt + - name: Output File List + run: | + find . -type f -o -type d > file-list-output.txt + cat file-list-output.txt - name: Check spelling uses: crate-ci/typos@master with: From 17fe527fd22289a4679e17809b9309084b043d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 11:30:59 +0800 Subject: [PATCH 04/12] ci(typos): enable check filename --- .github/workflows/pr-spelling.template.yml | 4 ---- .github/workflows/typos-config.toml | 14 ++++---------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/pr-spelling.template.yml b/.github/workflows/pr-spelling.template.yml index 5817a26f62..47f3069ebe 100644 --- a/.github/workflows/pr-spelling.template.yml +++ b/.github/workflows/pr-spelling.template.yml @@ -7,10 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Output File List - run: | - find . -type f -o -type d > file-list-output.txt - cat file-list-output.txt - name: Check spelling uses: crate-ci/typos@master with: diff --git a/.github/workflows/typos-config.toml b/.github/workflows/typos-config.toml index d4627b46ca..038bfb06b9 100644 --- a/.github/workflows/typos-config.toml +++ b/.github/workflows/typos-config.toml @@ -1,12 +1,6 @@ +[default] +check-filename = true + [default.extend-words] actived = "actived" -formated = "formated" -formate = "formate" -Colum = "Colum" -ba = "ba" -ded = "ded" -thead = "thead" -ans = "ans" - -[files] -extend-exclude = ["CHANGELOG.md"] +colum = "colum" From 67893d9bc9682a6d2fc6a4eb297a23d9f9948d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 11:48:33 +0800 Subject: [PATCH 05/12] chore: fix typo --- docs/web/api/tag-input.en-US.md | 2 +- docs/web/api/tag-input.md | 2 +- js/global-config/locale/ar_KW.ts | 2 +- js/global-config/locale/en_US.ts | 4 ++-- js/global-config/locale/zh_TW.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/web/api/tag-input.en-US.md b/docs/web/api/tag-input.en-US.md index 91d122582d..19d12b31ab 100644 --- a/docs/web/api/tag-input.en-US.md +++ b/docs/web/api/tag-input.en-US.md @@ -37,7 +37,7 @@ Provide large, medium (default), small three different size of the label input b ### Tag Input Box for Customizable Tags -- `tag` is used to define the content of a single tag- `valueDispaly` is used to completely customize the full tag content +- `tag` is used to define the content of a single tag- `valueDisplay` is used to completely customize the full tag content {{ custom-tag }} diff --git a/docs/web/api/tag-input.md b/docs/web/api/tag-input.md index c929d630d9..c5bbafb8c4 100644 --- a/docs/web/api/tag-input.md +++ b/docs/web/api/tag-input.md @@ -39,7 +39,7 @@ spline: data ### 可自定义标签的标签输入框 - `tag` 用于定义单个标签的内容 -- `valueDispaly` 用于完全自定义全量标签内容 +- `valueDisplay` 用于完全自定义全量标签内容 {{ custom-tag }} diff --git a/js/global-config/locale/ar_KW.ts b/js/global-config/locale/ar_KW.ts index 1599eaa7fc..45141eede5 100644 --- a/js/global-config/locale/ar_KW.ts +++ b/js/global-config/locale/ar_KW.ts @@ -225,7 +225,7 @@ export default { }, typography: { expand: 'توسيع', - collpase: 'طي', + collapse: 'طي', copied: 'النسخ اكتمل' } } as const; diff --git a/js/global-config/locale/en_US.ts b/js/global-config/locale/en_US.ts index d06ce8f82f..af3d9b89f9 100644 --- a/js/global-config/locale/en_US.ts +++ b/js/global-config/locale/en_US.ts @@ -23,14 +23,14 @@ export default { showWeekend: 'Show Week', today: 'Today', thisMonth: 'This Month', - week: 'Monday,Tuesday,Wedsday,Thuresday,Friday,Staturday,Sunday', + week: 'Monday,Tuesday,Wedsday,Thuresday,Friday,Saturday,Sunday', cellMonth: 'January,February,March,April,May,June,July,August,September,October,November,December', }, transfer: { title: '{checked} / {total}', empty: 'Empty Data', - placeholder: 'enter keyworkd to search', + placeholder: 'enter keyword to search', }, timePicker: { dayjsLocale: 'en', diff --git a/js/global-config/locale/zh_TW.ts b/js/global-config/locale/zh_TW.ts index c88f835ba8..15b416e9b1 100644 --- a/js/global-config/locale/zh_TW.ts +++ b/js/global-config/locale/zh_TW.ts @@ -118,7 +118,7 @@ export default { weekAbbreviation: '週', yearAriaLabel: '年', monthAriaLabel: '月', - comfirm: '確認', + confirm: '確認', selectTime: '選擇時間', selectDate: '選擇日期', nextYear: '下一年', From 1243ab9a322c855111b11d1cf75164ca89aa0f44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 12:01:18 +0800 Subject: [PATCH 06/12] chore: add extend words --- .github/workflows/typos-config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/typos-config.toml b/.github/workflows/typos-config.toml index 038bfb06b9..92ce55b29c 100644 --- a/.github/workflows/typos-config.toml +++ b/.github/workflows/typos-config.toml @@ -4,3 +4,6 @@ check-filename = true [default.extend-words] actived = "actived" colum = "colum" +#./js/global-config/locale/it_IT.ts +successivo="successivo" +Vai="Vai" \ No newline at end of file From 58decac6d8623458038cb79fbd866a8a4be6cdbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 12:10:01 +0800 Subject: [PATCH 07/12] chore: fix typo --- style/web/components/dialog/_index.less | 2 +- style/web/components/upload/_docs.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/style/web/components/dialog/_index.less b/style/web/components/dialog/_index.less index d7eb519325..8836ce491e 100644 --- a/style/web/components/dialog/_index.less +++ b/style/web/components/dialog/_index.less @@ -221,7 +221,7 @@ } } - &.@{prefix}-is-visable { + &.@{prefix}-is-visible { visibility: visible; } diff --git a/style/web/components/upload/_docs.less b/style/web/components/upload/_docs.less index 68e8acaac1..e1f763a45a 100644 --- a/style/web/components/upload/_docs.less +++ b/style/web/components/upload/_docs.less @@ -44,7 +44,7 @@ overflow-y: auto; &--empty, - &--draging { + &--dragging { display: flex; align-items: center; justify-content: center; From 08acc48ff7a99c6136550402143a939a638a1f68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 14:42:43 +0800 Subject: [PATCH 08/12] chore: fix typo --- style/web/components/calendar/_index.less | 6 +++--- style/web/components/calendar/_var.less | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/style/web/components/calendar/_index.less b/style/web/components/calendar/_index.less index badbd66a69..8ceb719e63 100644 --- a/style/web/components/calendar/_index.less +++ b/style/web/components/calendar/_index.less @@ -107,7 +107,7 @@ &--card { width: @calendar-card-width; border-radius: @border-radius-medium; - padding: @calendar-card-pannel-padding; + padding: @calendar-card-panel-padding; .@{prefix}-calendar__control { padding: @calendar-card-calendar-control-padding; @@ -129,12 +129,12 @@ &.@{prefix}-calendar__panel--month { height: @calendar-card-calendar-panel-height-month; - margin-top: @calendar-card-pannel-margin-top; + margin-top: @calendar-card-panel-margin-top; } &.@{prefix}-calendar__panel--year { height: @calendar-card-calendar-panel-height-year; - margin-top: @calendar-card-pannel-margin-top; + margin-top: @calendar-card-panel-margin-top; .@{prefix}-calendar__table { &-body { &-cell { diff --git a/style/web/components/calendar/_var.less b/style/web/components/calendar/_var.less index 10a1852ca5..8db9ac54b4 100644 --- a/style/web/components/calendar/_var.less +++ b/style/web/components/calendar/_var.less @@ -52,16 +52,16 @@ @calendar-table-margin-right: @comp-margin-s; @calendar-footer-padding: @comp-paddingTB-xxl @comp-paddingLR-xxl; @calendar-table-cell-padding: 0; -@calendar-card-pannel-padding: @comp-paddingTB-m @comp-paddingLR-m; +@calendar-card-panel-padding: @comp-paddingTB-m @comp-paddingLR-m; @calendar-card-calendar-control-padding: 0; -@calendar-card-pannel-margin-top: @comp-margin-m; +@calendar-card-panel-margin-top: @comp-margin-m; @calendar-card-footer-padding: 0 @comp-paddingLR-m; @calendar-control-section-cell-margin-right: @comp-margin-s; @calendar-body-line-height: @text-line-height-base; @calendar-header-row-padding: 0px; @calendar-card-body-cell-display-padding: calc(@comp-paddingTB-xxs / 2); @calendar-control-margin-bottom: @comp-margin-xxxl; -@calerdar-panel-card-padding: @comp-paddingTB-m @comp-paddingLR-m; +@calendar-panel-card-padding: @comp-paddingTB-m @comp-paddingLR-m; @calendar-card-control-margin-bottom: @comp-margin-m; // 尺寸 From ff62d093c41e9179b72226d7e57770ed2f33356e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 14:57:40 +0800 Subject: [PATCH 09/12] fix(step-item): fix typo --- style/mobile/components/step-item/v2/_index.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/mobile/components/step-item/v2/_index.less b/style/mobile/components/step-item/v2/_index.less index eef8904ee3..a9b786026b 100644 --- a/style/mobile/components/step-item/v2/_index.less +++ b/style/mobile/components/step-item/v2/_index.less @@ -72,7 +72,7 @@ font-size: @font-size-base; position: relative; - &--finsh, + &--finish, &--process { color: @brand-color; } From 71b24ccb1056bd5ac19c6a15bc70bf4c31e277ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Fri, 12 Apr 2024 16:19:59 +0800 Subject: [PATCH 10/12] feat(typos): add extend-ignore-re --- .github/workflows/typos-config.toml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/typos-config.toml b/.github/workflows/typos-config.toml index 92ce55b29c..7e69ebf0d1 100644 --- a/.github/workflows/typos-config.toml +++ b/.github/workflows/typos-config.toml @@ -1,9 +1,14 @@ -[default] -check-filename = true +default.check-filename = true + +default.extend-ignore-re = [ + "@slider-hander-.*", + "@message-verticle-.*", + "@back-top-backgroud-.*", + "@switch-background-color-disbaled", + "Vai a", + "(\\w+\\s)?(S|s)uccessivo" +] [default.extend-words] actived = "actived" -colum = "colum" -#./js/global-config/locale/it_IT.ts -successivo="successivo" -Vai="Vai" \ No newline at end of file +colum = "colum" \ No newline at end of file From 94b6b18afeb5c423ac681ac1beb084e29fab41cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Mon, 15 Apr 2024 09:53:02 +0800 Subject: [PATCH 11/12] chore: fix typo --- .github/workflows/typos-config.toml | 4 ---- style/mobile/components/back-top/_index.less | 8 ++++---- style/mobile/components/back-top/_var.less | 4 ++-- style/mobile/components/message/v2/_index.less | 2 +- style/mobile/components/message/v2/_var.less | 2 +- style/mobile/components/slider/_index.less | 16 ++++++++-------- style/mobile/components/slider/_var.less | 4 ++-- style/mobile/components/switch/_index.less | 2 +- style/mobile/components/switch/_var.less | 2 +- 9 files changed, 20 insertions(+), 24 deletions(-) diff --git a/.github/workflows/typos-config.toml b/.github/workflows/typos-config.toml index 7e69ebf0d1..60a051e349 100644 --- a/.github/workflows/typos-config.toml +++ b/.github/workflows/typos-config.toml @@ -1,10 +1,6 @@ default.check-filename = true default.extend-ignore-re = [ - "@slider-hander-.*", - "@message-verticle-.*", - "@back-top-backgroud-.*", - "@switch-background-color-disbaled", "Vai a", "(\\w+\\s)?(S|s)uccessivo" ] diff --git a/style/mobile/components/back-top/_index.less b/style/mobile/components/back-top/_index.less index b5dd7079c3..55db1a7a8c 100644 --- a/style/mobile/components/back-top/_index.less +++ b/style/mobile/components/back-top/_index.less @@ -16,7 +16,7 @@ &--round { border-radius: @radius-circle; - background-color: @back-top-backgroud-color-white; + background-color: @back-top-background-color-white; color: @back-top-text-color-black; border: 1px solid; border-color: @back-top-border-color; @@ -26,7 +26,7 @@ &--half-round { width: @back-top-half-width; height: @back-top-half-height; - background-color: @back-top-backgroud-color-white; + background-color: @back-top-background-color-white; color: @back-top-text-color-black; border: 1px solid; border-color: @back-top-border-color; @@ -41,7 +41,7 @@ } &--round-dark { - background-color: @back-top-backgroud-color-black; + background-color: @back-top-background-color-black; color: @back-top-text-color-white; border-radius: @radius-circle; flex-direction: column; @@ -53,7 +53,7 @@ flex-direction: row; justify-content: space-evenly; border-radius: 40px 0 0 40px; - background-color: @back-top-backgroud-color-black; + background-color: @back-top-background-color-black; color: @back-top-text-color-white; .@{prefix}-back-top__text { diff --git a/style/mobile/components/back-top/_var.less b/style/mobile/components/back-top/_var.less index 2265ab1ef5..f7e48f9bed 100644 --- a/style/mobile/components/back-top/_var.less +++ b/style/mobile/components/back-top/_var.less @@ -16,8 +16,8 @@ @back-top-text-color-white: @bg-color-container; // 背景颜色 -@back-top-backgroud-color-black: @gray-color-14; -@back-top-backgroud-color-white: @bg-color-container; +@back-top-background-color-black: @gray-color-14; +@back-top-background-color-white: @bg-color-container; // 边框颜色 @back-top-border-color: @component-border; diff --git a/style/mobile/components/message/v2/_index.less b/style/mobile/components/message/v2/_index.less index 11406586c7..274dd64c24 100644 --- a/style/mobile/components/message/v2/_index.less +++ b/style/mobile/components/message/v2/_index.less @@ -12,7 +12,7 @@ min-height: @message-height; align-items: center; z-index: @message-z-index; - padding: @message-verticle-padding @message-horizontal-padding; + padding: @message-vertical-padding @message-horizontal-padding; box-sizing: border-box; border-radius: @message-border-radius; line-height: 1em; diff --git a/style/mobile/components/message/v2/_var.less b/style/mobile/components/message/v2/_var.less index 3bc0fa76bd..efcaedf557 100644 --- a/style/mobile/components/message/v2/_var.less +++ b/style/mobile/components/message/v2/_var.less @@ -1,5 +1,5 @@ @message-height: 48px; -@message-verticle-padding: 12px; +@message-vertical-padding: 12px; @message-horizontal-padding: 16px; @message-z-index: 15000; diff --git a/style/mobile/components/slider/_index.less b/style/mobile/components/slider/_index.less index 1a8a16167a..cca1199dcd 100644 --- a/style/mobile/components/slider/_index.less +++ b/style/mobile/components/slider/_index.less @@ -6,7 +6,7 @@ .@{slider} { position: relative; - height: @slider-hander-height + 6px; + height: @slider-handle-height + 6px; &--with-marks { margin-top: 24px; @@ -34,9 +34,9 @@ &__handle { position: absolute; top: 50%; - width: @slider-hander-width; - height: @slider-hander-height; - margin-top: (-@slider-hander-height / 2); + width: @slider-handle-width; + height: @slider-handle-height; + margin-top: (-@slider-handle-height / 2); background-color: #fff; border: solid 2px @brand-color; border-radius: 50%; @@ -52,11 +52,11 @@ &__mark { position: absolute; - top: -@slider-hander-height - 4px; + top: -@slider-handle-height - 4px; left: 0; width: 100%; font-size: @slider-font-size-base; - height: @slider-hander-height + 4px; + height: @slider-handle-height + 4px; &-text { position: absolute; @@ -118,7 +118,7 @@ &.@{prefix}-is { &-mark { - padding-top: @slider-hander-height + 4px; + padding-top: @slider-handle-height + 4px; } &-disabled { @@ -150,6 +150,6 @@ .@{prefix}-is-mark-slider { .@{prefix}-cell--label { - padding-top: @slider-hander-height + 4px; + padding-top: @slider-handle-height + 4px; } } diff --git a/style/mobile/components/slider/_var.less b/style/mobile/components/slider/_var.less index 8078987717..10ed26d278 100644 --- a/style/mobile/components/slider/_var.less +++ b/style/mobile/components/slider/_var.less @@ -1,8 +1,8 @@ @slider-track-bg-color: @brand-color; @slider-bar-bg-color: @component-stroke; @slider-bar-height:2px; -@slider-hander-height: 20px; -@slider-hander-width: 20px; +@slider-handle-height: 20px; +@slider-handle-width: 20px; @slider-font-size-base:@font-size-base; @slider-value-color: @text-color-primary; @slider-value-font-size: @font-size-l; diff --git a/style/mobile/components/switch/_index.less b/style/mobile/components/switch/_index.less index 0873891d8b..79fea11afc 100644 --- a/style/mobile/components/switch/_index.less +++ b/style/mobile/components/switch/_index.less @@ -69,7 +69,7 @@ .@{prefix}-switch__node { cursor: not-allowed; - background-color: @switch-background-color-disbaled; + background-color: @switch-background-color-disabledd; &::after { cursor: not-allowed; diff --git a/style/mobile/components/switch/_var.less b/style/mobile/components/switch/_var.less index 7e34340fdc..2e061eaa89 100644 --- a/style/mobile/components/switch/_var.less +++ b/style/mobile/components/switch/_var.less @@ -3,7 +3,7 @@ @switch-height: 24px; @switch-border-radius: 15px; @switch-background-color: @gray-color-5; -@switch-background-color-disbaled: @gray-color-2; +@switch-background-color-disabledd: @gray-color-2; @switch-node-font-size: @font-size-s; @switch-node-width: 20px; From 3ee0fb47bdea2c03bbf56be100d39ed540407d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Mon, 15 Apr 2024 09:55:43 +0800 Subject: [PATCH 12/12] chore: fix typo --- style/mobile/components/switch/_index.less | 2 +- style/mobile/components/switch/_var.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/style/mobile/components/switch/_index.less b/style/mobile/components/switch/_index.less index 79fea11afc..1efebd4a68 100644 --- a/style/mobile/components/switch/_index.less +++ b/style/mobile/components/switch/_index.less @@ -69,7 +69,7 @@ .@{prefix}-switch__node { cursor: not-allowed; - background-color: @switch-background-color-disabledd; + background-color: @switch-background-color-disabled; &::after { cursor: not-allowed; diff --git a/style/mobile/components/switch/_var.less b/style/mobile/components/switch/_var.less index 2e061eaa89..af6b863749 100644 --- a/style/mobile/components/switch/_var.less +++ b/style/mobile/components/switch/_var.less @@ -3,7 +3,7 @@ @switch-height: 24px; @switch-border-radius: 15px; @switch-background-color: @gray-color-5; -@switch-background-color-disabledd: @gray-color-2; +@switch-background-color-disabled: @gray-color-2; @switch-node-font-size: @font-size-s; @switch-node-width: 20px;