Set eventemitter to undefined to allow actions to function correctly

This commit is contained in:
Brett Upton 2021-09-01 14:53:30 +02:00
parent 7763757305
commit a2d0754f27
2 changed files with 5 additions and 3 deletions

View File

@ -230,7 +230,7 @@ Public value.",
},
"onClick": Object {
"action": "onClick",
"defaultValue": "new EventEmitter<Event>()",
"defaultValue": undefined,
"description": "
Handler to be called when the button is clicked by a user.
@ -241,7 +241,7 @@ Will also block the emission of the event if \`isDisabled\` is true.
"table": Object {
"category": "outputs",
"defaultValue": Object {
"summary": "new EventEmitter<Event>()",
"summary": undefined,
},
"type": Object {
"required": true,

View File

@ -160,12 +160,14 @@ const castDefaultValue = (property: Property, defaultValue: any) => {
// All these checks are necessary as compodoc does not always set the type ie. @HostBinding have empty types.
// null and undefined also have 'any' type
if (['boolean', 'number', 'string'].includes(compodocType)) {
if (['boolean', 'number', 'string', 'EventEmitter'].includes(compodocType)) {
switch (compodocType) {
case 'boolean':
return defaultValue === 'true';
case 'number':
return Number(defaultValue);
case 'EventEmitter':
return undefined;
default:
return defaultValue;
}