Document Type Picker - enabled boolean properties

Previously the `?elementTypesOnly` attribute wasn't reading the value
This commit is contained in:
leekelleher
2024-08-05 15:25:19 +01:00
committed by Lee Kelleher
parent 9c112b90e9
commit d5b40694e8

View File

@@ -37,7 +37,7 @@ export class UmbInputDocumentTypeElement extends UmbFormControlMixin<string | un
* @attr
* @default false
*/
@property({ attribute: false })
@property({ type: Boolean })
elementTypesOnly: boolean = false;
/**
@@ -46,7 +46,7 @@ export class UmbInputDocumentTypeElement extends UmbFormControlMixin<string | un
* @attr
* @default false
*/
@property({ attribute: false })
@property({ type: Boolean })
documentTypesOnly: boolean = false;
/**