bkui-vue 0.0.1-beta.451 → 0.0.1-beta.452
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/index.cjs.js +8 -8
- package/dist/index.esm.js +8 -1
- package/dist/index.umd.js +8 -8
- package/lib/modal/index.d.ts +4 -11
- package/lib/modal/index.js +1 -1
- package/lib/modal/modal.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -11151,7 +11151,7 @@ var Component$u = defineComponent({
|
|
11151
11151
|
return {
|
11152
11152
|
visible: false,
|
11153
11153
|
closeTimer: null,
|
11154
|
-
bkPopIndexManager:
|
11154
|
+
bkPopIndexManager: null
|
11155
11155
|
};
|
11156
11156
|
},
|
11157
11157
|
computed: {
|
@@ -11218,6 +11218,13 @@ var Component$u = defineComponent({
|
|
11218
11218
|
},
|
11219
11219
|
created() {
|
11220
11220
|
},
|
11221
|
+
mounted() {
|
11222
|
+
var _a;
|
11223
|
+
const popConfig = __spreadValues(__spreadValues({}, this.$props), {
|
11224
|
+
transfer: this.transfer === "parent" ? (_a = this.$el) == null ? void 0 : _a.parentElement : this.transfer
|
11225
|
+
});
|
11226
|
+
this.bkPopIndexManager = new BKPopIndexManager(popConfig);
|
11227
|
+
},
|
11221
11228
|
beforeUnmount() {
|
11222
11229
|
var _a, _b;
|
11223
11230
|
if (this.visible) {
|