@razaman2/reactive-view 0.0.10 → 0.0.11
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.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -162,7 +162,7 @@ var import_vue = require("vue");
|
|
|
162
162
|
|
|
163
163
|
// package.json
|
|
164
164
|
var name = "@razaman2/reactive-view";
|
|
165
|
-
var version = "0.0.
|
|
165
|
+
var version = "0.0.11";
|
|
166
166
|
|
|
167
167
|
// src/ReactiveView.ts
|
|
168
168
|
var props = {
|
|
@@ -249,6 +249,8 @@ var ReactiveView_default = {
|
|
|
249
249
|
var _a2;
|
|
250
250
|
isRendered.value = (_a2 = await props2.defer) != null ? _a2 : true;
|
|
251
251
|
});
|
|
252
|
+
} else {
|
|
253
|
+
isRendered.value = true;
|
|
252
254
|
}
|
|
253
255
|
if (context.attrs["onUpdate:modelState"]) {
|
|
254
256
|
const config2 = typeof context.attrs["onUpdate:modelState"] === "function" ? { callback: context.attrs["onUpdate:modelState"] } : context.attrs["onUpdate:modelState"];
|
package/dist/index.mjs
CHANGED
|
@@ -125,7 +125,7 @@ import { h, ref, reactive, watch, nextTick, getCurrentInstance, onMounted } from
|
|
|
125
125
|
|
|
126
126
|
// package.json
|
|
127
127
|
var name = "@razaman2/reactive-view";
|
|
128
|
-
var version = "0.0.
|
|
128
|
+
var version = "0.0.11";
|
|
129
129
|
|
|
130
130
|
// src/ReactiveView.ts
|
|
131
131
|
var props = {
|
|
@@ -212,6 +212,8 @@ var ReactiveView_default = {
|
|
|
212
212
|
var _a2;
|
|
213
213
|
isRendered.value = (_a2 = await props2.defer) != null ? _a2 : true;
|
|
214
214
|
});
|
|
215
|
+
} else {
|
|
216
|
+
isRendered.value = true;
|
|
215
217
|
}
|
|
216
218
|
if (context.attrs["onUpdate:modelState"]) {
|
|
217
219
|
const config2 = typeof context.attrs["onUpdate:modelState"] === "function" ? { callback: context.attrs["onUpdate:modelState"] } : context.attrs["onUpdate:modelState"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razaman2/reactive-view",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "This library enables you to build vue apps in an object oriented way. It provides a convenient approach to extend and override ui components. It provides a built in eventing system along with component data management.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|