Skip to content

Commit

Permalink
release [2.0.1]
Browse files Browse the repository at this point in the history
  • Loading branch information
myronliu347 committed Apr 1, 2017
1 parent 6009862 commit 6098d90
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 14 deletions.
4 changes: 2 additions & 2 deletions dist/muse-ui.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/muse-ui.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions less/theme-vars.less
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@
@switchTextColor: @textColor;
@switchTextDisabledColor: @disabledColor;

@tabsBackgroundColor: @primaryColor;
@tabsLineColor: @accentColor;
@tabsTextColor: fade(@alternateTextColor, 70%);
@tabsSelectedTextColor: @alternateTextColor;

@tableBackgroundColor: @alternateTextColor;
@tableBorderColor: @borderColor;
@tableTextColor: @textColor;
Expand All @@ -174,11 +179,6 @@
@tableRowStripeBackgroundColor: fade(lighten(@primaryColor, 50%), 40%);
@tableTheadTextColor: @secondaryTextColor;

@tabsBackgroundColor: @primaryColor;
@tabsLineColor: @accentColor;
@tabsTextColor: fade(@alternateTextColor, 70%);
@tabsSelectedTextColor: @alternateTextColor;

@textFieldTextColor: @secondaryTextColor;
@textFieldInputColor: @textColor;
@textFieldHintColor: @disabledColor;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "muse-ui",
"version": "2.0.0",
"version": "2.0.1",
"description": "material design ui for vue2",
"author": "myronliu347 <[email protected]>",
"main": "dist/muse-ui.js",
Expand Down
6 changes: 4 additions & 2 deletions src-docs/views/components/appbar/exampleIcon.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<mu-appbar title="Title">
<mu-icon-button icon='menu' slot="left"/>
<mu-icon-button icon='expand_more' slot="right"/>
<mu-icon-button icon="menu" slot="left"/>
<mu-flat-button label="expand_more" slot="right"/>
<mu-flat-button href="333" label="expand_more" slot="right"/>
<mu-icon-button icon="expand_more" slot="right"/>
</mu-appbar>
</template>
11 changes: 11 additions & 0 deletions src-docs/views/more/CHANELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 2.0.1

### Bugs

* 修复在app-bar中为flat-button增加href属性后按钮会发生错位 [#397](https://github.com/museui/muse-ui/issues/397)
* 修复Dialog组件里面使用SelectField后的bug [#390](https://github.com/museui/muse-ui/issues/390)
* 修复Dialog 组件无法点击Overlay层关闭 [#386](https://github.com/museui/muse-ui/issues/386)
* 修复日期控件当前月份无法返回到上个月 [#385](https://github.com/museui/muse-ui/issues/385)
* 修复Safari浏览器中,Bottom Navigation组件显示异常 [#384](https://github.com/museui/muse-ui/issues/384)
* 修复 drawer 的show, hide事件触发依赖docked属性 [#381](#https://github.com/museui/muse-ui/issues/381)

## 2.0.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion src/drawer/drawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default {
bindTransition () {
this.handleTransition = (e) => {
if (e.propertyName !== 'transform') return
if (!this.docked) this.$emit(this.open ? 'show' : 'hide')
this.$emit(this.open ? 'show' : 'hide')
}
transitionEvents.forEach((eventName) => {
this.$el.addEventListener(eventName, this.handleTransition)
Expand Down

0 comments on commit 6098d90

Please sign in to comment.