bk-magic-vue 2.5.10-beta.14 → 2.5.10-beta.16
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.css +1 -0
- package/dist/bk-magic-vue.js +6 -3
- package/dist/bk-magic-vue.min.css +1 -1
- package/dist/bk-magic-vue.min.css.gz +0 -0
- package/dist/bk-magic-vue.min.css.map +1 -1
- 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 -0
- package/lib/cascade.js +6 -3
- package/lib/directives/overflow-tips.js +1 -0
- package/lib/directives/tooltips.js +1 -0
- package/lib/form-item.js +1 -0
- package/lib/input.js +1 -0
- package/lib/pagination.js +6 -3
- package/lib/popconfirm.js +6 -3
- package/lib/popover.js +6 -3
- package/lib/search-select.js +1 -0
- package/lib/select.js +6 -3
- package/lib/slider.js +1 -0
- package/lib/table.js +6 -3
- package/lib/tag-input.js +6 -3
- package/lib/transfer.js +1 -0
- package/lib/ui/bk-magic-vue.css +1 -0
- package/lib/ui/bk-magic-vue.min.css +1 -1
- package/lib/ui/bk-magic-vue.min.css.gz +0 -0
- package/lib/ui/bk-magic-vue.min.css.map +1 -1
- package/lib/ui/resize-layout.css +1 -0
- package/lib/ui/resize-layout.min.css +1 -1
- package/lib/ui/resize-layout.min.css.map +1 -1
- package/lib/upload.js +1 -0
- package/lib/utils/tippy.js +1 -0
- package/lib/version-detail.js +1 -0
- package/package.json +1 -1
package/dist/bk-magic-vue.css
CHANGED
|
@@ -16237,6 +16237,7 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
|
|
|
16237
16237
|
bottom:100%;
|
|
16238
16238
|
left:50%;
|
|
16239
16239
|
margin-bottom:8px;
|
|
16240
|
+
margin-left:-16px;
|
|
16240
16241
|
-webkit-transform:translate3d(50%, 50%, 0) rotate(-90deg);
|
|
16241
16242
|
transform:translate3d(50%, 50%, 0) rotate(-90deg);
|
|
16242
16243
|
}
|
package/dist/bk-magic-vue.js
CHANGED
|
@@ -28000,6 +28000,7 @@
|
|
|
28000
28000
|
element[innerHTML()] = isRealElement(html) ? html[innerHTML()] : html;
|
|
28001
28001
|
}
|
|
28002
28002
|
function setContent(contentEl, props) {
|
|
28003
|
+
if (!contentEl) return;
|
|
28003
28004
|
if (isRealElement(props.content)) {
|
|
28004
28005
|
setInnerHTML(contentEl, '');
|
|
28005
28006
|
contentEl.appendChild(props.content);
|
|
@@ -32967,9 +32968,11 @@
|
|
|
32967
32968
|
}
|
|
32968
32969
|
},
|
|
32969
32970
|
updated: function updated() {
|
|
32970
|
-
|
|
32971
|
-
|
|
32972
|
-
this.instance.popperInstance
|
|
32971
|
+
if (this.$refs.html) {
|
|
32972
|
+
this.instance.setContent(this.$refs.html);
|
|
32973
|
+
if (this.instance.popperInstance) {
|
|
32974
|
+
this.instance.popperInstance.update();
|
|
32975
|
+
}
|
|
32973
32976
|
}
|
|
32974
32977
|
},
|
|
32975
32978
|
beforeDestroy: function beforeDestroy() {
|