iov-design 2.15.20 → 2.15.21

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/lib/alert.js CHANGED
@@ -263,7 +263,7 @@ var render = function() {
263
263
  staticClass: "el-alert__closebtn",
264
264
  class: {
265
265
  "is-customed": _vm.closeText !== "",
266
- "el-icon-close": _vm.closeText === ""
266
+ "iov-icon-close": _vm.closeText === ""
267
267
  },
268
268
  on: {
269
269
  click: function($event) {
@@ -308,9 +308,9 @@ render._withStripped = true
308
308
  //
309
309
 
310
310
  var TYPE_CLASSES_MAP = {
311
- 'success': 'el-icon-success',
312
- 'warning': 'el-icon-warning',
313
- 'error': 'el-icon-error'
311
+ 'success': 'iov-icon-fill-success',
312
+ 'warning': 'iov-icon-fill-warning',
313
+ 'error': 'iov-icon-fill-fail'
314
314
  };
315
315
  /* harmony default export */ var mainvue_type_script_lang_js_ = ({
316
316
  name: 'ElAlert',
@@ -366,7 +366,7 @@ var TYPE_CLASSES_MAP = {
366
366
  return 'el-alert--' + this.type;
367
367
  },
368
368
  iconClass: function iconClass() {
369
- return TYPE_CLASSES_MAP[this.type] || 'el-icon-info';
369
+ return TYPE_CLASSES_MAP[this.type] || 'iov-icon-fill-explain';
370
370
  },
371
371
  isBigIcon: function isBigIcon() {
372
372
  return this.description || this.$slots.default ? 'is-big' : '';