mirror of
https://github.com/aleleba/create-react-component-library.git
synced 2025-10-13 23:29:24 -06:00
PR-500824updating packages.
This commit is contained in:
@@ -59,7 +59,23 @@ module.exports = {
|
||||
"paths": {
|
||||
"@Components/*": ["Components/*"]
|
||||
}
|
||||
},
|
||||
propFilter: (prop) => {
|
||||
// Filter out props that might contain Symbol values
|
||||
if (prop.name && typeof prop.name === 'symbol') {
|
||||
return false;
|
||||
}
|
||||
// Filter out React internal props that might cause issues
|
||||
if (prop.name && prop.name.startsWith('$$')) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
docs: {
|
||||
autodocs: 'tag',
|
||||
defaultName: 'Docs',
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user