zydx-plus 1.33.422 → 1.33.423

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zydx-plus",
3
- "version": "1.33.422",
3
+ "version": "1.33.423",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -90,7 +90,7 @@ export default defineComponent({
90
90
  let style = {color:this.active_state[idx] ? this.activeColor:disabled?'#717171': '#000000'}
91
91
  let btn = h(
92
92
  <button
93
- class={this.active_state[idx] ? 'z-button z-active theme-text' : 'z-button'}
93
+ class={this.active_state[idx] ? 'z-button z-active theme-text' : disabled ? 'z-button disabled' : 'z-button'}
94
94
  data-id={data_id}
95
95
  onClick={() => { onClick(); ignore ? () => null : trackClick(idx) }
96
96
  }
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="list-tree">
3
3
  <div class="list-cont" v-if="list.length > 0">
4
- <div class="list-li"
4
+ <div :class="{'list-li':true, 'theme-text': active === index}"
5
5
  :style="{'border-bottom': (link)? '1px solid #ccc': '0', 'color': (active === index)? activeColor : '#333'}"
6
6
  @click="listTap(item,index)" v-for="(item,index) in list" :key="index">
7
7
  <div class="list-title">
@@ -11,7 +11,7 @@
11
11
  (angleBrackets) ? '》' : ''
12
12
  }}</span> -->
13
13
  <span :style="{'font-size': column[0].fontSize + 'px', 'font-weight': column[0].fontWeight}" v-html="(index + 1) + '.' + (angleBrackets ? '《' : '') + item[column[0].label] + (angleBrackets ? '》' : '')"></span>
14
- <button v-if="delShow" @click="del(item)">{{ delText }}</button>
14
+ <button v-if="delShow" @click="del(item)" v-html="delText"></button>
15
15
  </div>
16
16
  <div class="list-cont" v-if="open">
17
17
  <div class="list-li-cont">
@@ -117,7 +117,8 @@ export default {
117
117
  white-space: nowrap;
118
118
  text-overflow: ellipsis;
119
119
  height: 30px;
120
- font-size: 16px;
120
+ font-size: 14px;
121
+ font-weight: bold;
121
122
  }
122
123
 
123
124
  .list-title > button {
package/src/index.js CHANGED
@@ -83,7 +83,7 @@ function install(app) {
83
83
  }
84
84
 
85
85
  export default {
86
- version: '1.33.422',
86
+ version: '1.33.423',
87
87
  install,
88
88
  Calendar,
89
89
  Message,