mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Set eventemitter to undefined to allow actions to function correctly
This commit is contained in:
parent
7763757305
commit
a2d0754f27
@ -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,
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user