Skip to content

Commit

Permalink
2019年3月29日
Browse files Browse the repository at this point in the history
- 修复`ui-table`头部排序按钮无法显示的问题
  • Loading branch information
EarlyH committed Mar 29, 2019
2 parents 26121d0 + 176e30b commit 885d0e5
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 19 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 0.12.14

`2019年3月29日`

#### 修复

- 修复`ui-table`头部排序按钮无法显示的问题

## 0.12.13

`2019年3月28日`
Expand Down
24 changes: 15 additions & 9 deletions dist/morning-ui.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/morning-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/guide/logs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "morning-ui",
"version": "0.12.13",
"version": "0.12.14",
"description": "modern efficient user interface, using human-friendly HTML",
"main": "dist/morning-ui.js",
"style": "dist/morning-ui.css",
Expand Down
18 changes: 18 additions & 0 deletions src/docs/pages/guide/logs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@

### 更新记录

### 0.12.14 <ui-badge class="circle ver-canary" size="s" color="light-theme">Canary</ui-badge>

<ui-textcolor color="light-blue">
<ui-small>
发布于2019年3月29日,
Archive :
<a href="https://github.com/Morning-UI/morning-ui/releases/tag/0.12.14" target="_blank">Package</a>
<a href="https://cdn.jsdelivr.net/npm/morning-ui@0.12.14/dist/" target="_blank">jsdelivr(CDN)</a>
<a href="https://unpkg.com/morning-ui@0.12.14/dist/" target="_blank">unpkg(CDN)</a>
</ui-small>
</ui-textcolor>

#### 修复

- 修复`ui-table`头部排序按钮无法显示的问题

---

### 0.12.13 <ui-badge class="circle ver-canary" size="s" color="light-theme">Canary</ui-badge>

<ui-textcolor color="light-blue">
Expand Down
4 changes: 2 additions & 2 deletions src/docs/pages/index/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<section class="s1 versioninfo">
<p>全新Morning UI : </p>
<a href="/guide/install.html">
<ui-label color="silver" size="xs">0.12.13</ui-label>
<ui-label color="silver" size="xs">0.12.14</ui-label>
</a>
<p>发布于2019年3月28日</p>
<p>发布于2019年3月29日</p>
</section>
<section class="s1 silver">
<div class="w1k center">
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/table/normal-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
v-if="colSetMap[key] && colSetMap[key].name"
v-show="!colSetMap[key] || !colSetMap[key].hide"
:key="key"
v-html="colSetMap[key].name"
>
<span v-html="colSetMap[key].name"></span>
<span class="th-sort" v-if="colSetMap[key].sort">
<i class="mo-icon mo-icon-sort no" @click="sortCol(key)" v-if="!data.sort[key] || (data.sort[key].type !== 'asc' && data.sort[key].type !== 'desc')"></i>
<i class="mo-icon mo-icon-arrow-up asc" @click="sortCol(key)" v-if="data.sort[key] && data.sort[key].type === 'asc'"></i>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/table/title-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
v-if="colSetMap[key] && colSetMap[key].name"
v-show="!colSetMap[key] || !colSetMap[key].hide"
:key="key"
v-html="colSetMap[key].name"
>
<span v-html="colSetMap[key].name"></span>
<span class="th-sort" v-if="colSetMap[key].sort">
<i class="mo-icon mo-icon-sort no" @click="sortCol(key)" v-if="!data.sort[key] || (data.sort[key].type !== 'asc' && data.sort[key].type !== 'desc')"></i>
<i class="mo-icon mo-icon-arrow-up asc" @click="sortCol(key)" v-if="data.sort[key] && data.sort[key].type === 'asc'"></i>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ let morning = {
white : 'wh'
},
isMorning : true,
version : '0.12.13',
version : '0.12.14',
map : {}
};

Expand Down

0 comments on commit 885d0e5

Please sign in to comment.