bk-magic-vue 2.5.3-beta.7 → 2.5.3-beta.9
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/dist/bk-magic-vue.js +5 -3
- package/dist/bk-magic-vue.min.js +1 -1
- package/dist/bk-magic-vue.min.js.gz +0 -0
- package/dist/bk-magic-vue.min.js.map +1 -1
- package/lib/card.js +1 -1
- package/lib/input.js +1 -1
- package/lib/pagination.js +1 -1
- package/lib/slider.js +1 -1
- package/lib/table.js +5 -3
- package/lib/transfer.js +1 -1
- package/package.json +1 -1
package/dist/bk-magic-vue.js
CHANGED
|
@@ -29594,7 +29594,7 @@
|
|
|
29594
29594
|
},
|
|
29595
29595
|
handlerInput: function handlerInput(event) {
|
|
29596
29596
|
var _this3 = this;
|
|
29597
|
-
if (this.isOnComposition) {
|
|
29597
|
+
if (this.inputType === 'number' && this.isOnComposition) {
|
|
29598
29598
|
return;
|
|
29599
29599
|
}
|
|
29600
29600
|
this.$nextTick(function () {
|
|
@@ -41480,8 +41480,10 @@
|
|
|
41480
41480
|
setHeaderStyle: function setHeaderStyle() {
|
|
41481
41481
|
var _this4 = this;
|
|
41482
41482
|
this.$nextTick(function () {
|
|
41483
|
-
_this4.$refs.bkTable
|
|
41484
|
-
|
|
41483
|
+
if (_this4.$refs.bkTable) {
|
|
41484
|
+
_this4.$refs.bkTable.style.setProperty('--customHeaderColor', _this4.customHeaderColor);
|
|
41485
|
+
_this4.$refs.bkTable.style.setProperty('--customHeaderColorHover', _this4.customHeaderColorHover);
|
|
41486
|
+
}
|
|
41485
41487
|
});
|
|
41486
41488
|
},
|
|
41487
41489
|
setCurrentRow: function setCurrentRow(row) {
|