@ditojs/admin 1.3.0 → 1.4.2
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/dito-admin.es.js +1 -1
- package/dist/dito-admin.umd.js +1 -1
- package/package.json +6 -6
- package/src/utils/schema.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ditojs/admin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dito.js Admin is a schema based admin interface for Dito.js Server, featuring auto-generated views and forms and built with Vue.js",
|
|
6
6
|
"repository": "https://github.com/ditojs/dito/tree/master/packages/admin",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepare": "yarn build"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=
|
|
28
|
+
"node": ">= 16.0.0",
|
|
29
29
|
"yarn": ">= 1.0.0"
|
|
30
30
|
},
|
|
31
31
|
"browserslist": [
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"not ie_mob > 0"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@ditojs/ui": "^1.
|
|
39
|
-
"@ditojs/utils": "^1.
|
|
38
|
+
"@ditojs/ui": "^1.4.1",
|
|
39
|
+
"@ditojs/utils": "^1.4.1",
|
|
40
40
|
"axios": "^0.26.1",
|
|
41
41
|
"codeflask": "^1.4.1",
|
|
42
42
|
"filesize": "^8.0.7",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"vuedraggable": "^2.24.3"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@ditojs/build": "^1.
|
|
62
|
+
"@ditojs/build": "^1.4.1",
|
|
63
63
|
"pug": "^3.0.2",
|
|
64
64
|
"sass": "1.49.9",
|
|
65
65
|
"vite": "^2.8.6",
|
|
66
66
|
"vite-plugin-vue2": "^1.9.3"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "1790e50f979322b47a53421e9facddb86f6eff86"
|
|
69
69
|
}
|
package/src/utils/schema.js
CHANGED
|
@@ -413,7 +413,7 @@ function cloneItem(sourceSchema, item, options) {
|
|
|
413
413
|
|
|
414
414
|
export function processData(schema, sourceSchema, data, dataPath, {
|
|
415
415
|
component,
|
|
416
|
-
schemaOnly, //
|
|
416
|
+
schemaOnly, // whether to only include data covered by the schema, or all data
|
|
417
417
|
target
|
|
418
418
|
} = {}) {
|
|
419
419
|
const options = { component, schemaOnly, target, rootData: data }
|