vsyswin-ui 0.2.90 → 0.2.91

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.91",
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">
@@ -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
+ }