mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:51:05 +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 {
|
"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,
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user