@json-layout/vocabulary
Advanced tools
Comparing version 0.20.0 to 0.21.0
{ | ||
"name": "@json-layout/vocabulary", | ||
"version": "0.20.0", | ||
"version": "0.21.0", | ||
"description": "Main JSON Layout vocabulary as JSON schemas and Typescript types. Also contains some small utility functions to validate and normalize annotations.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -207,3 +207,8 @@ /** | ||
{ | ||
name: 'one-of-select' | ||
name: 'one-of-select', | ||
schema: { | ||
properties: { | ||
emptyData: { type: 'boolean' } | ||
} | ||
} | ||
} | ||
@@ -210,0 +215,0 @@ ] |
@@ -450,2 +450,5 @@ import type { | ||
[k: string]: unknown; | ||
}); | ||
}) & { | ||
emptyData?: boolean; | ||
[k: string]: unknown; | ||
}; |
@@ -391,3 +391,6 @@ import type { BaseCompObject, Expression, Children, GetItems, SelectItems } from '../normalized-layout/types.js'; | ||
[k: string]: unknown; | ||
}); | ||
}) & { | ||
emptyData?: boolean; | ||
[k: string]: unknown; | ||
}; | ||
//# sourceMappingURL=types.d.ts.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
192660
5543