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 { "onClick": Object {
"action": "onClick", "action": "onClick",
"defaultValue": "new EventEmitter<Event>()", "defaultValue": undefined,
"description": " "description": "
Handler to be called when the button is clicked by a user. 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 { "table": Object {
"category": "outputs", "category": "outputs",
"defaultValue": Object { "defaultValue": Object {
"summary": "new EventEmitter<Event>()", "summary": undefined,
}, },
"type": Object { "type": Object {
"required": true, "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. // 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 // null and undefined also have 'any' type
if (['boolean', 'number', 'string'].includes(compodocType)) { if (['boolean', 'number', 'string', 'EventEmitter'].includes(compodocType)) {
switch (compodocType) { switch (compodocType) {
case 'boolean': case 'boolean':
return defaultValue === 'true'; return defaultValue === 'true';
case 'number': case 'number':
return Number(defaultValue); return Number(defaultValue);
case 'EventEmitter':
return undefined;
default: default:
return defaultValue; return defaultValue;
} }