We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581c3ad commit 6d9a70cCopy full SHA for 6d9a70c
scripts/build-docs.js
@@ -71,7 +71,7 @@ components.forEach(component => {
71
72
/* Props */
73
content += `## API\n`;
74
- component.props?.forEach(prop => {
+ _.sortBy(component.props, p => p.name)?.forEach(prop => {
75
content += `### ${prop.name}\n`;
76
content += `${prop.description} \n`;
77
// content += `<span style={{color: 'grey'}}>${_.escape(prop.type)}</span>\n\n`;
0 commit comments