vsyswin-ui 0.2.90 → 0.2.92

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": "vsyswin-ui",
3
- "version": "0.2.90",
3
+ "version": "0.2.92",
4
4
  "main": "lib/vsyswin-ui.umd.min.js",
5
5
  "private": false,
6
6
  "description": "Vue2.x的应用组件库.",
@@ -3,6 +3,7 @@
3
3
  <div class="syswin-searchbar" v-clickoutside="handleClickOutside">
4
4
  <div class="syswin-searchbar-container">
5
5
  <el-input class="syswin-searchbar-container__input" v-model="keyword" :placeholder="placeholder" clearable size="small" @clear="handleClearInput">
6
+ <slot slot="prepend" name="prepend"></slot>
6
7
  <slot slot="suffix" name="suffix"></slot>
7
8
  </el-input>
8
9
  <el-button v-if="showFilter" type="text" size="small" class="syswin-searchbar-container__filter" @click="handleToggleFilterList">
@@ -111,6 +112,7 @@
111
112
  <el-select
112
113
  size="small"
113
114
  :multiple="!!item.multiple"
115
+ :filterable="item.filterable"
114
116
  collapse-tags
115
117
  clearable
116
118
  v-model="item.value"
@@ -224,6 +226,7 @@
224
226
  <el-select
225
227
  size="small"
226
228
  :multiple="!!item.multiple"
229
+ :filterable="item.filterable"
227
230
  collapse-tags
228
231
  clearable
229
232
  v-model="item.value"
@@ -324,6 +327,7 @@
324
327
  <el-select
325
328
  size="small"
326
329
  :multiple="!!item.multiple"
330
+ :filterable="item.filterable"
327
331
  collapse-tags
328
332
  clearable
329
333
  v-model="item.value"
@@ -533,3 +533,9 @@ $alien: left, center, right;
533
533
  box-shadow: none!important;
534
534
  }
535
535
  }
536
+
537
+ .no-border-input {
538
+ .el-input.is-active .el-input__inner, .el-input__inner:focus {
539
+ border-color: transparent !important;
540
+ }
541
+ }