docs(ComponentCode): ignore externals manually

This commit is contained in:
Benjamin Canac
2024-07-31 15:52:04 +02:00
parent 8f48883a2d
commit 00575f55c9
10 changed files with 66 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ function mapKeys(obj, parentKey = '') {
const fullKey = parentKey ? `${parentKey}.${key}` : key
return !props.ignore?.includes(fullKey) && !props.hide?.includes(fullKey) && !props.external?.includes(fullKey) ? fullKey : undefined
return !props.ignore?.includes(fullKey) && !props.hide?.includes(fullKey) ? fullKey : undefined
}).filter(Boolean)
}