@razaman2/reactive-view 0.1.0-beta.6 → 0.1.0-beta.7
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 -3
- package/dist/index.mjs +3 -3
- package/package.json +48 -48
package/dist/index.js
CHANGED
|
@@ -177,7 +177,7 @@ var import_data_manager = __toESM(require("@razaman2/data-manager"));
|
|
|
177
177
|
var import_vue = require("vue");
|
|
178
178
|
|
|
179
179
|
// package.json
|
|
180
|
-
var version = "0.1.0-beta.
|
|
180
|
+
var version = "0.1.0-beta.7";
|
|
181
181
|
var package_default = {
|
|
182
182
|
name: "@razaman2/reactive-view",
|
|
183
183
|
version,
|
|
@@ -397,7 +397,7 @@ var ReactiveView_default = {
|
|
|
397
397
|
}, config2.options));
|
|
398
398
|
}
|
|
399
399
|
setTimeout(async () => {
|
|
400
|
-
var _a3, _b2;
|
|
400
|
+
var _a3, _b2, _c2;
|
|
401
401
|
if (props.model !== false && (isFunctionData || isAsyncData)) {
|
|
402
402
|
if (!("defaultData" in vue.vnode.props)) {
|
|
403
403
|
console.warn(`${props.modelName}: defaultData is required for promise or function data.`, props.data);
|
|
@@ -420,7 +420,7 @@ var ReactiveView_default = {
|
|
|
420
420
|
}
|
|
421
421
|
}, {
|
|
422
422
|
immediate: (_b2 = context.attrs["data:immediate"]) != null ? _b2 : true,
|
|
423
|
-
deep: context.attrs["data:deep"],
|
|
423
|
+
deep: (_c2 = context.attrs["data:deep"]) != null ? _c2 : true,
|
|
424
424
|
once: context.attrs["data:once"]
|
|
425
425
|
}));
|
|
426
426
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -130,7 +130,7 @@ import DataManager from "@razaman2/data-manager";
|
|
|
130
130
|
import { ref, reactive, watch, unref, isRef, isReactive, createVNode, getCurrentInstance, onBeforeUnmount } from "vue";
|
|
131
131
|
|
|
132
132
|
// package.json
|
|
133
|
-
var version = "0.1.0-beta.
|
|
133
|
+
var version = "0.1.0-beta.7";
|
|
134
134
|
var package_default = {
|
|
135
135
|
name: "@razaman2/reactive-view",
|
|
136
136
|
version,
|
|
@@ -350,7 +350,7 @@ var ReactiveView_default = {
|
|
|
350
350
|
}, config2.options));
|
|
351
351
|
}
|
|
352
352
|
setTimeout(async () => {
|
|
353
|
-
var _a3, _b2;
|
|
353
|
+
var _a3, _b2, _c2;
|
|
354
354
|
if (props.model !== false && (isFunctionData || isAsyncData)) {
|
|
355
355
|
if (!("defaultData" in vue.vnode.props)) {
|
|
356
356
|
console.warn(`${props.modelName}: defaultData is required for promise or function data.`, props.data);
|
|
@@ -373,7 +373,7 @@ var ReactiveView_default = {
|
|
|
373
373
|
}
|
|
374
374
|
}, {
|
|
375
375
|
immediate: (_b2 = context.attrs["data:immediate"]) != null ? _b2 : true,
|
|
376
|
-
deep: context.attrs["data:deep"],
|
|
376
|
+
deep: (_c2 = context.attrs["data:deep"]) != null ? _c2 : true,
|
|
377
377
|
once: context.attrs["data:once"]
|
|
378
378
|
}));
|
|
379
379
|
}
|
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@razaman2/reactive-view",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
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
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"prepublishOnly": "npm run build",
|
|
10
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
11
|
-
"lint": "tsc",
|
|
12
|
-
"test": "cd tests/vue-ts && npm run dev",
|
|
13
|
-
"pr": "sh pr.sh"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"vue",
|
|
17
|
-
"vue-helper",
|
|
18
|
-
"reactive-view",
|
|
19
|
-
"vue-class-component",
|
|
20
|
-
"reactive-ui"
|
|
21
|
-
],
|
|
22
|
-
"author": "razaman2",
|
|
23
|
-
"license": "MIT",
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@razaman2/data-manager": "^3.3.8",
|
|
26
|
-
"@razaman2/event-emitter": "^2.1.1",
|
|
27
|
-
"@razaman2/object-manager": "^3.4.7",
|
|
28
|
-
"date-fns": "^4.1.0",
|
|
29
|
-
"date-fns-tz": "^3.2.0",
|
|
30
|
-
"tailwind-merge": "^3.5.0",
|
|
31
|
-
"uuid": "^13.0.0"
|
|
32
|
-
},
|
|
33
|
-
"peerDependencies": {
|
|
34
|
-
"vue": ">=3.0.0"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@types/uuid": "^11.0.0",
|
|
38
|
-
"tsup": "^8.5.1",
|
|
39
|
-
"typescript": "^5.9.3",
|
|
40
|
-
"vitest": "^4.1.2"
|
|
41
|
-
},
|
|
42
|
-
"publishConfig": {
|
|
43
|
-
"access": "public"
|
|
44
|
-
},
|
|
45
|
-
"files": [
|
|
46
|
-
"dist"
|
|
47
|
-
]
|
|
48
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@razaman2/reactive-view",
|
|
3
|
+
"version": "0.1.0-beta.7",
|
|
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
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"prepublishOnly": "npm run build",
|
|
10
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
11
|
+
"lint": "tsc",
|
|
12
|
+
"test": "cd tests/vue-ts && npm run dev",
|
|
13
|
+
"pr": "sh pr.sh"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"vue",
|
|
17
|
+
"vue-helper",
|
|
18
|
+
"reactive-view",
|
|
19
|
+
"vue-class-component",
|
|
20
|
+
"reactive-ui"
|
|
21
|
+
],
|
|
22
|
+
"author": "razaman2",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@razaman2/data-manager": "^3.3.8",
|
|
26
|
+
"@razaman2/event-emitter": "^2.1.1",
|
|
27
|
+
"@razaman2/object-manager": "^3.4.7",
|
|
28
|
+
"date-fns": "^4.1.0",
|
|
29
|
+
"date-fns-tz": "^3.2.0",
|
|
30
|
+
"tailwind-merge": "^3.5.0",
|
|
31
|
+
"uuid": "^13.0.0"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"vue": ">=3.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/uuid": "^11.0.0",
|
|
38
|
+
"tsup": "^8.5.1",
|
|
39
|
+
"typescript": "^5.9.3",
|
|
40
|
+
"vitest": "^4.1.2"
|
|
41
|
+
},
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist"
|
|
47
|
+
]
|
|
48
|
+
}
|