iov-design 2.15.34 → 2.15.35
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/dropdown.js +3 -3
- package/lib/index.js +1 -1
- package/lib/iov-design.common.js +8 -6
- package/lib/table-column.js +2 -1
- package/lib/table.js +2 -1
- package/lib/theme-chalk/color-picker.css +1 -1
- package/lib/theme-chalk/dropdown.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/table-column.css +1 -1
- package/package.json +1 -1
- package/packages/dropdown/src/dropdown.vue +1 -1
- package/packages/table/src/config.js +1 -0
- package/packages/table/src/store/watcher.js +1 -0
- package/packages/table/src/table-header.js +1 -1
- package/packages/theme-chalk/src/common/var.scss +3 -3
- package/packages/theme-chalk/src/dropdown.scss +23 -22
- package/src/index.js +1 -1
package/lib/dropdown.js
CHANGED
|
@@ -561,11 +561,11 @@ var util_ = __webpack_require__(3);
|
|
|
561
561
|
|
|
562
562
|
return h(
|
|
563
563
|
'div',
|
|
564
|
-
{ 'class': 'el-dropdown',
|
|
564
|
+
{ 'class': 'el-dropdown', attrs: { size: dropdownSize, 'aria-disabled': disabled },
|
|
565
|
+
directives: [{
|
|
565
566
|
name: 'clickoutside',
|
|
566
567
|
value: hide
|
|
567
|
-
}]
|
|
568
|
-
attrs: { 'aria-disabled': disabled }
|
|
568
|
+
}]
|
|
569
569
|
},
|
|
570
570
|
[triggerElm, menuElm]
|
|
571
571
|
);
|