Skip to content

Commit

Permalink
build v3.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
smallweis committed Jul 30, 2024
1 parent fb43159 commit e64beda
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
10 changes: 5 additions & 5 deletions lib/avue.js

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

4 changes: 2 additions & 2 deletions lib/avue.min.js

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,6 +1,6 @@
{
"name": "@smallwei/avue",
"version": "3.4.7",
"version": "3.4.8",
"description": "A Magic Configurable Web Framework",
"main": "lib/avue.min.js",
"unpkg": "lib/avue.min.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/components/icon/index.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<span class="avue-icon"
<span v-if="text" class="avue-icon"
:class="{'avue-icon--small':small}">
<svg v-if="text.includes('#')"
aria-hidden="true">
Expand Down
2 changes: 1 addition & 1 deletion packages/core/directive/contextmenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default (() => {
e.preventDefault();
let divLeft = e.clientX,
divTop = e.clientY
dialogDom.style.display = 'block'
let client_width = document.documentElement.clientWidth;
let client_height = document.documentElement.clientHeight;
let dialogDom_width = dialogDom.offsetWidth;
Expand All @@ -29,7 +30,6 @@ export default (() => {
}

function showDialog() {
dialogDom.style.display = 'block'
dialogDom.style.position = 'fixed'
dialogDom.style.zIndex = 1024
dialogDom.style.top = divTop + 'px'
Expand Down
4 changes: 3 additions & 1 deletion packages/element-ui/crud/dialog/dialog-column.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ export default create({
this.$nextTick(() => this.rowDrop())
},
handleChange (prop) {
if (['hide', 'filters'].includes(prop)) {
if (prop === 'hide') {
this.crud.doLayout()
} else if (prop === 'filters') {
this.crud.refreshTable()
}
},
rowDrop () {
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '3.4.7'
export const version = '3.4.8'

0 comments on commit e64beda

Please sign in to comment.