mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(fab-button): adding size prop instead of [mini] (#16692)
- Consistency with rest of API - Auto docs - Helps react fixes #16680
This commit is contained in:
@@ -20,7 +20,7 @@ function generateComponent(component, content) {
|
||||
content.push(component.tag);
|
||||
|
||||
component.props.forEach(prop => {
|
||||
content.push(`${component.tag},prop,${prop.name},${prop.type},${prop.default},${prop.required}`);
|
||||
content.push(`${component.tag},prop,${prop.name},${prop.type},${prop.default},${prop.required},${prop.reflectToAttr}`);
|
||||
});
|
||||
component.methods.forEach(prop => {
|
||||
content.push(`${component.tag},method,${prop.name},${prop.signature}`);
|
||||
|
||||
Reference in New Issue
Block a user