@json-layout/vocabulary
Advanced tools
Comparing version 0.23.2 to 0.23.3
{ | ||
"name": "@json-layout/vocabulary", | ||
"version": "0.23.2", | ||
"version": "0.23.3", | ||
"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", |
@@ -122,3 +122,2 @@ import type { | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -141,3 +140,2 @@ [k: string]: unknown; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -160,3 +158,2 @@ [k: string]: unknown; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -263,3 +260,2 @@ [k: string]: unknown; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -272,4 +268,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -280,2 +274,3 @@ }) & | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -294,3 +289,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -303,4 +297,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -311,2 +303,3 @@ }) & | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -325,3 +318,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -334,4 +326,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -342,2 +332,3 @@ }) & | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -356,3 +347,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -365,4 +355,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -373,2 +361,3 @@ }) & | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -394,4 +383,2 @@ }) & { | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -402,2 +389,3 @@ }) & | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -418,4 +406,2 @@ }); | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -426,2 +412,3 @@ }) & | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -442,4 +429,2 @@ }); | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -458,3 +443,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -466,2 +450,3 @@ [k: string]: unknown; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -468,0 +453,0 @@ }) & { |
@@ -170,5 +170,2 @@ | ||
}, | ||
"label": { | ||
"type": "string" | ||
}, | ||
"autofocus": { | ||
@@ -200,8 +197,2 @@ "type": "boolean" | ||
"$ref": "#/$defs/get-items" | ||
}, | ||
"multiple": { | ||
"type": "boolean" | ||
}, | ||
"separator": { | ||
"type": "string" | ||
} | ||
@@ -228,2 +219,5 @@ } | ||
"type": "boolean" | ||
}, | ||
"separator": { | ||
"type": "string" | ||
} | ||
@@ -272,12 +266,6 @@ } | ||
"title": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
"type": "string" | ||
}, | ||
"subtitle": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
"type": "string" | ||
}, | ||
@@ -284,0 +272,0 @@ "children": { |
@@ -93,3 +93,2 @@ { | ||
"comp": {"type": "string"}, | ||
"label": {"type": "string"}, | ||
"autofocus": {"type": "boolean"} | ||
@@ -109,5 +108,3 @@ } | ||
"items": {"$ref": "#/$defs/select-items"}, | ||
"getItems": {"$ref": "#/$defs/get-items"}, | ||
"multiple": {"type": "boolean"}, | ||
"separator": {"type": "string"} | ||
"getItems": {"$ref": "#/$defs/get-items"} | ||
} | ||
@@ -125,3 +122,4 @@ } | ||
"comp": {"type": "string"}, | ||
"multiple": {"type": "boolean"} | ||
"multiple": {"type": "boolean"}, | ||
"separator": {"type": "string"} | ||
} | ||
@@ -147,4 +145,4 @@ } | ||
"comp": {"type": "string"}, | ||
"title": {"type": ["string", "null"]}, | ||
"subtitle": {"type": ["string", "null"]}, | ||
"title": {"type": "string"}, | ||
"subtitle": {"type": "string"}, | ||
"children": {"$ref": "#/$defs/children"} | ||
@@ -151,0 +149,0 @@ } |
@@ -87,3 +87,2 @@ /** | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -100,4 +99,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -131,2 +128,3 @@ }; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -244,4 +242,4 @@ }; | ||
comp?: string; | ||
title?: string | null; | ||
subtitle?: string | null; | ||
title?: string; | ||
subtitle?: string; | ||
children: Children; | ||
@@ -248,0 +246,0 @@ [k: string]: unknown; |
@@ -102,3 +102,2 @@ import type { BaseCompObject, Expression, Children, GetItems, SelectItems } from '../normalized-layout/types.js'; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -119,3 +118,2 @@ [k: string]: unknown; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -136,3 +134,2 @@ [k: string]: unknown; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -230,3 +227,2 @@ [k: string]: unknown; | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -238,4 +234,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -245,2 +239,3 @@ }) & (BaseCompObject & { | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -257,3 +252,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -265,4 +259,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -272,2 +264,3 @@ }) & (BaseCompObject & { | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -284,3 +277,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -292,4 +284,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -299,2 +289,3 @@ }) & (BaseCompObject & { | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -311,3 +302,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -319,4 +309,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -326,2 +314,3 @@ }) & (BaseCompObject & { | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -345,4 +334,2 @@ }) & { | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -352,2 +339,3 @@ }) & (BaseCompObject & { | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -366,4 +354,2 @@ }); | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -373,2 +359,3 @@ }) & (BaseCompObject & { | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -387,4 +374,2 @@ }); | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -401,3 +386,2 @@ }); | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -408,2 +392,3 @@ [k: string]: unknown; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -410,0 +395,0 @@ }) & { |
@@ -148,5 +148,2 @@ declare namespace _default { | ||
}; | ||
label: { | ||
type: string; | ||
}; | ||
autofocus: { | ||
@@ -178,8 +175,2 @@ type: string; | ||
}; | ||
multiple: { | ||
type: string; | ||
}; | ||
separator: { | ||
type: string; | ||
}; | ||
}; | ||
@@ -205,2 +196,5 @@ $ref?: undefined; | ||
}; | ||
separator: { | ||
type: string; | ||
}; | ||
}; | ||
@@ -237,6 +231,6 @@ $ref?: undefined; | ||
title: { | ||
type: string[]; | ||
type: string; | ||
}; | ||
subtitle: { | ||
type: string[]; | ||
type: string; | ||
}; | ||
@@ -243,0 +237,0 @@ children: { |
@@ -84,3 +84,2 @@ /** | ||
comp: string; | ||
label?: string; | ||
autofocus?: boolean; | ||
@@ -97,4 +96,2 @@ [k: string]: unknown; | ||
getItems?: GetItems; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -128,2 +125,3 @@ }; | ||
multiple?: boolean; | ||
separator?: string; | ||
[k: string]: unknown; | ||
@@ -240,4 +238,4 @@ }; | ||
comp?: string; | ||
title?: string | null; | ||
subtitle?: string | null; | ||
title?: string; | ||
subtitle?: string; | ||
children: Children; | ||
@@ -244,0 +242,0 @@ [k: string]: unknown; |
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
195349
5590