meixioacomponent 0.3.86 → 0.3.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17697,7 +17697,7 @@
17697
17697
  border-radius: 8px;
17698
17698
  -webkit-box-sizing: border-box;
17699
17699
  box-sizing: border-box;
17700
- border: 1px solid #dee0e3;
17700
+ border: 1px solid var(--color-border);
17701
17701
  position: fixed;
17702
17702
  background-color: var(--bg-white);
17703
17703
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
@@ -17729,7 +17729,7 @@
17729
17729
  .el-notification__title {
17730
17730
  font-weight: 700;
17731
17731
  font-size: 16px;
17732
- color: #1f2329;
17732
+ color: var(--font-color-d);
17733
17733
  margin: 0;
17734
17734
  }
17735
17735
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.3.86",
3
+ "version": "0.3.89",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.umd.min.js",
@@ -195,10 +195,15 @@ export default {
195
195
  })
196
196
  },
197
197
  closeDialog() {
198
- this.isShow = false
199
- this.$nextTick(() => {
200
- this.$destroy()
201
- })
198
+ const { isDestroy } = this.$props
199
+ if (isDestroy) {
200
+ this.isShow = false
201
+ this.$nextTick(() => {
202
+ this.$destroy()
203
+ })
204
+ } else {
205
+ this.centerDialogVisible = false
206
+ }
202
207
  },
203
208
  iconClick() {
204
209
  this.closeDialog()
@@ -128,7 +128,7 @@
128
128
  effect="dark"
129
129
  placement="top"
130
130
  :content="scope.row[`${item.key}`]"
131
- v-else-if="item.toolTip && scope.row[`${item.key}`].length > 8"
131
+ v-else-if="scope.row[`${item.key}`].length > 8"
132
132
  >
133
133
  <span
134
134
  class="cell-content-text"
@@ -226,7 +226,6 @@ import baseButtonHandle from '../base/baseButtonHandle/baseButtonHandle.vue' //
226
226
 
227
227
  //
228
228
  import componentConfig from '../../config/componentConfig'
229
- import { isatty } from 'tty'
230
229
  let canPush = true
231
230
  export default {
232
231
  name: 'baseProTable',
@@ -879,10 +878,9 @@ export default {
879
878
  background: inherit;
880
879
  .header-extend {
881
880
  display: flex;
881
+ align-items: center;
882
882
  flex-flow: row nowrap;
883
883
  justify-content: flex-start;
884
- align-items: center;
885
- margin-right: var(--margin-5);
886
884
  }
887
885
  }
888
886
  .table-suffix {
@@ -17697,7 +17697,7 @@
17697
17697
  border-radius: 8px;
17698
17698
  -webkit-box-sizing: border-box;
17699
17699
  box-sizing: border-box;
17700
- border: 1px solid #dee0e3;
17700
+ border: 1px solid var(--color-border);
17701
17701
  position: fixed;
17702
17702
  background-color: var(--bg-white);
17703
17703
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
@@ -17729,7 +17729,7 @@
17729
17729
  .el-notification__title {
17730
17730
  font-weight: 700;
17731
17731
  font-size: 16px;
17732
- color: #1f2329;
17732
+ color: var(--font-color-d);
17733
17733
  margin: 0;
17734
17734
  }
17735
17735