bri-components 1.3.79 → 1.3.80

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": "bri-components",
3
- "version": "1.3.79",
3
+ "version": "1.3.80",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -338,6 +338,7 @@
338
338
  this.$emit("on-focus", event);
339
339
  },
340
340
  blur () {
341
+ this.focused = false;
341
342
  if (this.transferValue !== this.currentValue) {
342
343
  this.currentValue = this.transferValue;
343
344
  this.$emit("input", this.transferValue);
@@ -227,28 +227,30 @@
227
227
  }
228
228
 
229
229
  /* 为了消除表格类型字段检验后,外层出现.ivu-form-item-error的class,对默认筛选的控件样式的影响 */
230
- .ivu-input,
231
- .ivu-input-number,
232
- .ivu-select-selection,
233
- .DshControlInput {
234
- border-color: #E5E5E6;
230
+ > div {
231
+ .ivu-input,
232
+ .ivu-input-number,
233
+ .ivu-select-selection,
234
+ .DshControlInput {
235
+ border-color: #E5E5E6;
235
236
 
236
- &-focused,
237
- &:focus {
237
+ &-focused,
238
+ &:focus {
239
+ border-color: #64c6d1;
240
+ box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
241
+ }
242
+ &:hover {
243
+ border-color: #64c6d1;
244
+ }
245
+ }
246
+ .ivu-select-visible .ivu-select-selection {
238
247
  border-color: #64c6d1;
239
248
  box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
240
249
  }
241
- &:hover {
242
- border-color: #64c6d1;
250
+ .ivu-input-icon,
251
+ .ivu-select-arrow {
252
+ color: #808695;
243
253
  }
244
254
  }
245
- .ivu-select-visible .ivu-select-selection {
246
- border-color: #64c6d1;
247
- box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
248
- }
249
- .ivu-input-icon,
250
- .ivu-select-arrow {
251
- color: #808695;
252
- }
253
255
  }
254
256
  </style>