Skip to content

Commit

Permalink
chore: 发布版本 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
juzi214032 authored May 21, 2020
2 parents 93ebd73 + 797063e commit a95d849
Show file tree
Hide file tree
Showing 83 changed files with 455 additions and 4,177 deletions.
10 changes: 10 additions & 0 deletions .convention-changelog-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
'use strict'

module.exports = {
gitRawCommitsOpts: {
// null => 所有 commit 上的 tag 计入 changelog
// true => 仅 merge commit 上的 tag 计入 changelog
// null => 仅非 merge commit 上的 tag 计入 changelog
merges: null
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ yarn-error.log
package-lock.json
examples/project.config.json
/.run
yarn.lock
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

⚡️ 文档网站: http://doc.mini.7yue.pro/
<br/>
🔥 教程地址: https://course.7yue.pro
🔥 教程地址: [https://talelin.com](https://talelin.com/#course)

</div>

Expand Down Expand Up @@ -151,9 +151,7 @@ npm install
同样打开根目录,打开`config/style/_theme.less`文件,看到文件中定义了一个变量 `@theme-color` ,如果有主题色修改的需求,更改它即可。
```less
// 主题色

@theme-color : #2c61b4; // 主题色

@theme-color: #2c61b4;
```

其他
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
'VuePress',
'package.json',
'README',
'util',
'.editorconfig',
'.gitignore',
'commitlint',
Expand Down
2 changes: 1 addition & 1 deletion dist/checkbox-group/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/collapse-item/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/combined-tabs/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions dist/combined-tabs/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<view class="l-tabs l-sub-placement-left l-tabs-vertical {{aminmated ? 'l-aminmated' :''}} {{scrollable ? 'l-tabs-scroll':''}}">
<template is="tab-header" wx:if="{{tabList[currentIndex].subTabs.length}}" data="{{tab:tabList[currentIndex].subTabs,placemanet,scrollable,transformY,transformX,activeKey:tabList[currentIndex].activeSubKey,hasLine,activeColor,inactiveColor,headerType:'subTab'}}"></template>
<view class="l-tabs-main">
<view wx:if="{{!swipeable}}" class="l-tabpanel-content">
<view wx:if="{{!swipeable}}" class="l-tabpanel-content l-content-class">
<view class="l-tabpanel {{item.key===activeKey?'l-tabpanel-active':'l-tabpanel-inactive'}}" wx:for="{{tabList}}" wx:key="key" style="{{placement=='left'||placement=='right' ? 'position:absolute;width:100%;height:100%;transform:translate(0,'+ 100 * index +'%) translateZ(0px);':''}}">
<view class="l-subpanel-content" wx:if="{{item.subTabs.length>0}}" style="{{'transform:translate(0,'+ -100 * item.subCurrentIndex +'%) translateZ(0px);'}}">
<view class="l-subpanel" wx:for="{{item.subTabs}}" wx:for-item="tab" wx:key="key">
Expand All @@ -14,17 +14,17 @@
<slot name="{{item.key}}" wx:else></slot>
</view>
</view>
<swiper wx:else class="l-tabpanel-content" bindchange="swiperChange" current="{{currentIndex}}">
<swiper wx:else class="l-tabpanel-content l-content-class" bindchange="swiperChange" current="{{currentIndex}}">
<swiper-item class="l-tabpanel {{item.key===activeKey?'l-tabpanel-active':''}}" wx:for="{{tabList}}" wx:key="key">
<view wx:if="{{item.subTabs.length>0}}">
<swiper class="" vertical bindchange="subSwiperChange" current="{{item.subCurrentIndex}}">
<swiper-item wx:for="{{item.subTabs}}" wx:for-item="tab" wx:key="key">
<slot name="{{tab.key}}"></slot>
</swiper-item>
</swiper>
</view>
<slot name="{{item.key}}" wx:else></slot>

</view>
<slot name="{{item.key}}" wx:else></slot>
</swiper-item>
</swiper>
</view>
Expand All @@ -41,4 +41,4 @@
</view>
</view>
</scroll-view>
</template>
</template>
1 change: 1 addition & 0 deletions dist/core/utils/data-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/core/utils/event-bus.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/core/utils/event-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/core/utils/node-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/core/utils/pixel-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a95d849

Please sign in to comment.