meixioacomponent 0.2.92 → 0.2.95

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.
@@ -9603,7 +9603,7 @@
9603
9603
  .el-textarea__inner {
9604
9604
  display: block;
9605
9605
  resize: vertical;
9606
- padding: 5px 0px;
9606
+ padding: var(--padding-2) var(--padding-3);
9607
9607
  line-height: 1.5;
9608
9608
  border: 0px !important;
9609
9609
  -webkit-box-sizing: border-box;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.2.92",
3
+ "version": "0.2.95",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.umd.min.js",
@@ -26,7 +26,7 @@
26
26
  <div class="item-left" @click="showTableColum(item)">
27
27
  <el-checkbox
28
28
  v-model="item.show"
29
- :disabled="item.lock"
29
+ :disabled="item.lock?true:false"
30
30
  ></el-checkbox>
31
31
  <span class="item-text">{{ item.label }}</span>
32
32
  </div>
@@ -15,7 +15,7 @@
15
15
  :plain="true"
16
16
  :name="lockClass"
17
17
  class="lock-icons"
18
- :active="config.lock"
18
+ :active="config.lock ? true : false"
19
19
  v-if="!isAverageWidth"
20
20
  @iconClick="handleClick('lock')"
21
21
  ></base-icon>
@@ -9603,7 +9603,7 @@
9603
9603
  .el-textarea__inner {
9604
9604
  display: block;
9605
9605
  resize: vertical;
9606
- padding: 5px 0px;
9606
+ padding: var(--padding-2) var(--padding-3);
9607
9607
  line-height: 1.5;
9608
9608
  border: 0px !important;
9609
9609
  -webkit-box-sizing: border-box;