Skip to content

Commit

Permalink
1.0.0-rc.6 (#1001)
Browse files Browse the repository at this point in the history
* fix(calendar): enable reactive for props

* Revert "fix(calendar): enable reactive for props"

This reverts commit 2d71344.

* fix(cascader): optimize tnode using

* docs(checkbox): update

* docs(input): update

* docs(picker): update

* fix(calendar): enable reactive for props (#991)

* chore: support all version for site (#993)

* chore: support all version for site

* test: update snapshots

* fix(Tag): resolve closable invalid when disabled is true (#994)

* fix(Tag): resolve closable invalid when disabled is true

* test: update snapshots

* fix(upload): 修复部分浏览器环境报错 (#995)

* fix: 修复部分浏览器环境报错

* test: update snap

* fix: fix code

* fix(Swiper): resolved change event parameter error (#996)

* chore: publish v1.0.0-rc.6 (#1000)

* chore: publish v1.0.0-rc.6

* docs: update changelog

* test(ActionSheet): update snapshots (#1004)

* test(ActionSheet): update snapshots

* chore: update _common

---------

Co-authored-by: Y <[email protected]>
Co-authored-by: 龙风 <[email protected]>
  • Loading branch information
3 people authored Aug 2, 2023
1 parent 70ebea6 commit 0017ad3
Show file tree
Hide file tree
Showing 28 changed files with 1,306 additions and 1,304 deletions.
2,059 changes: 1,033 additions & 1,026 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tdesign-mobile-vue",
"purename": "tdesign",
"version": "1.0.0-rc.5",
"version": "1.0.0-rc.6",
"description": "tdesign-mobile-vue",
"author": "TDesign Group",
"homepage": "https://tdesign.tencent.com/mobile-vue/",
Expand Down
6 changes: 2 additions & 4 deletions site/web/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<script>
import siteConfig from '../docs.config';
import { sortDocs, filterVersions } from './utils';
import { sortDocs } from './utils';
import { defineComponent } from 'vue';
import packageJson from '../../package.json';
Expand Down Expand Up @@ -78,9 +78,7 @@ export default defineComponent({
.then((res) => res.json())
.then((res) => {
const options = [];
const versions = filterVersions(Object.keys(res.versions).filter((v) => !v.includes('alpha')));
versions.forEach((v) => {
Object.keys(res.versions).forEach((v) => {
const nums = v.split('.');
if (nums[0] === '0' && nums[1] < 7) return false;
Expand Down
Loading

0 comments on commit 0017ad3

Please sign in to comment.