master #5

Merged
m.lettere merged 5 commits from master into ccp-features 2023-06-07 18:25:26 +02:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit 20ac50bc22 - Show all commits

View File

@ -65,6 +65,10 @@ class Renderer{
return this.#input.minOccurs > 0
}
get readOnly(){
return this.#input.schema.readOnly
}
static instance(input){
if(this.isEnum(input)){
return new EnumInputRenderer(input)