iov-design 2.15.23 → 2.15.24

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.
@@ -497,13 +497,13 @@ var stopPropagation = function stopPropagation(e) {
497
497
  );
498
498
  },
499
499
  renderCheckIcon: function renderCheckIcon(h) {
500
- return h('i', { 'class': 'el-icon-check el-cascader-node__prefix' });
500
+ return h('i', { 'class': 'el-cascader-node__prefix' });
501
501
  },
502
502
  renderLoadingIcon: function renderLoadingIcon(h) {
503
503
  return h('i', { 'class': 'el-icon-loading el-cascader-node__postfix' });
504
504
  },
505
505
  renderExpandIcon: function renderExpandIcon(h) {
506
- return h('i', { 'class': 'el-icon-arrow-right el-cascader-node__postfix' });
506
+ return h('i', { 'class': 'iov-icon-right el-cascader-node__postfix' });
507
507
  },
508
508
  renderContent: function renderContent(h) {
509
509
  var panel = this.panel,
package/lib/cascader.js CHANGED
@@ -266,11 +266,24 @@ var render = function() {
266
266
  }
267
267
  },
268
268
  [
269
+ _vm.$slots.prefixLabel
270
+ ? _c(
271
+ "template",
272
+ { slot: "prefixLabel" },
273
+ [_vm._t("prefixLabel")],
274
+ 2
275
+ )
276
+ : _vm._e(),
277
+ _vm.$slots.prefix
278
+ ? _c("template", { slot: "prefix" }, [_vm._t("prefix")], 2)
279
+ : _vm._e(),
269
280
  _c("template", { slot: "suffix" }, [
270
281
  _vm.clearBtnVisible
271
282
  ? _c("i", {
272
283
  key: "clear",
273
- staticClass: "el-input__icon el-icon-circle-close",
284
+ staticClass:
285
+ "el-input__icon iov-icon-close-mini el-input__clear",
286
+ staticStyle: { "padding-right": "0" },
274
287
  on: {
275
288
  click: function($event) {
276
289
  $event.stopPropagation()
@@ -282,7 +295,7 @@ var render = function() {
282
295
  key: "arrow-down",
283
296
  class: [
284
297
  "el-input__icon",
285
- "el-icon-arrow-down",
298
+ "iov-icon-arrow-up",
286
299
  _vm.dropDownVisible && "is-reverse"
287
300
  ],
288
301
  on: {
@@ -306,6 +319,7 @@ var render = function() {
306
319
  "el-tag",
307
320
  {
308
321
  key: tag.key,
322
+ class: { "is-disabled": !tag.closable && tag.key !== -1 },
309
323
  attrs: {
310
324
  type: "info",
311
325
  size: _vm.tagSize,
@@ -474,12 +488,7 @@ var render = function() {
474
488
  }
475
489
  }
476
490
  },
477
- [
478
- _c("span", [_vm._v(_vm._s(item.text))]),
479
- item.checked
480
- ? _c("i", { staticClass: "el-icon-check" })
481
- : _vm._e()
482
- ]
491
+ [_c("span", [_vm._v(_vm._s(item.text))])]
483
492
  )
484
493
  })
485
494
  : _vm._t("empty", [
@@ -681,6 +690,13 @@ var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce_);
681
690
  //
682
691
  //
683
692
  //
693
+ //
694
+ //
695
+ //
696
+ //
697
+ //
698
+ //
699
+ //
684
700
 
685
701
 
686
702
 
@@ -1135,7 +1151,7 @@ var InputSizeMap = {
1135
1151
  if (collapseTags) {
1136
1152
  tags.push({
1137
1153
  key: -1,
1138
- text: '+ ' + restCount,
1154
+ text: '+' + restCount,
1139
1155
  closable: false
1140
1156
  });
1141
1157
  } else {