@stonecrop/desktop 0.10.16 → 0.11.1
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/desktop.css +1 -1
- package/dist/desktop.js +2082 -2083
- package/dist/desktop.js.map +1 -1
- package/package.json +5 -5
- package/src/components/Desktop.vue +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/desktop",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"**/*.css"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@stonecrop/
|
|
36
|
-
"@stonecrop/
|
|
37
|
-
"@stonecrop/themes": "0.
|
|
38
|
-
"@stonecrop/
|
|
35
|
+
"@stonecrop/aform": "0.11.1",
|
|
36
|
+
"@stonecrop/stonecrop": "0.11.1",
|
|
37
|
+
"@stonecrop/themes": "0.11.1",
|
|
38
|
+
"@stonecrop/atable": "0.11.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"vue": "^3.5.28"
|
|
@@ -575,9 +575,7 @@ const getRecordFormSchema = (): SchemaTypes[] => {
|
|
|
575
575
|
return []
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
|
|
579
|
-
const schemaArray = 'toArray' in doctype.schema ? doctype.schema.toArray() : doctype.schema
|
|
580
|
-
return registry.resolveSchema(schemaArray)
|
|
578
|
+
return registry.resolveSchema(doctype)
|
|
581
579
|
} catch {
|
|
582
580
|
return []
|
|
583
581
|
}
|