@qikdev/vue-ui 0.2.278 → 0.2.280
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/lib.es.js +8 -1
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +9 -2
- package/dist/lib.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/lib.umd.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
: typeof define == "function" && define.amd
|
|
5
5
|
? define(["exports", "vue", "@qikdev/sdk"], t)
|
|
6
6
|
: ((V = typeof globalThis < "u" ? globalThis : V || self),
|
|
7
|
-
t((V["@qikdev/vue-ui"] = {}), V.Vue, V
|
|
7
|
+
t((V["@qikdev/vue-ui"] = {}), V.Vue, V.sdk));
|
|
8
8
|
})(this, function (V, t, $r) {
|
|
9
9
|
"use strict";
|
|
10
|
-
const sc = "0.2.
|
|
10
|
+
const sc = "0.2.280";
|
|
11
11
|
class ct extends Error {}
|
|
12
12
|
class cc extends ct {
|
|
13
13
|
constructor(n) {
|
|
@@ -28525,6 +28525,13 @@
|
|
|
28525
28525
|
data() {
|
|
28526
28526
|
return {};
|
|
28527
28527
|
},
|
|
28528
|
+
provide() {
|
|
28529
|
+
return {
|
|
28530
|
+
isInModal: !0,
|
|
28531
|
+
closeParentModal: (e) => this.close(e),
|
|
28532
|
+
dismissParentModal: (e) => this.dismiss(e),
|
|
28533
|
+
};
|
|
28534
|
+
},
|
|
28528
28535
|
emits: ["dismiss", "close"],
|
|
28529
28536
|
methods: {
|
|
28530
28537
|
dismiss(e) {
|