iov-design 2.15.20 → 2.15.22
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 +5 -5
- package/lib/index.js +1 -1
- package/lib/input.js +2 -0
- package/lib/iov-design.common.js +16 -16
- package/lib/select.js +8 -10
- package/lib/theme-chalk/alert.css +1 -1
- package/lib/theme-chalk/autocomplete.css +1 -1
- package/lib/theme-chalk/cascader-panel.css +1 -1
- package/lib/theme-chalk/cascader.css +1 -1
- package/lib/theme-chalk/date-picker.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/input-number.css +1 -1
- package/lib/theme-chalk/input.css +1 -1
- package/lib/theme-chalk/link.css +1 -1
- package/lib/theme-chalk/message-box.css +1 -1
- package/lib/theme-chalk/pagination.css +1 -1
- package/lib/theme-chalk/radio.css +1 -1
- package/lib/theme-chalk/select.css +1 -1
- package/lib/theme-chalk/slider.css +1 -1
- package/lib/theme-chalk/time-picker.css +1 -1
- package/lib/theme-chalk/transfer.css +1 -1
- package/package.json +3 -1
- package/packages/alert/src/main.vue +5 -5
- package/packages/input/src/input.vue +1 -0
- package/packages/select/src/select.vue +8 -8
- package/packages/theme-chalk/src/alert.scss +35 -31
- package/packages/theme-chalk/src/common/var.scss +5 -12
- package/packages/theme-chalk/src/input.scss +1 -1
- package/packages/theme-chalk/src/link.scss +0 -5
- package/packages/theme-chalk/src/radio.scss +9 -8
- package/src/index.js +1 -1
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
|
-
"
|
|
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': '
|
|
312
|
-
'warning': '
|
|
313
|
-
'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] || '
|
|
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' : '';
|