Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(types): optional Boolean props as default props #909

Merged
merged 1 commit into from Feb 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/component/componentProps.ts
Expand Up @@ -76,7 +76,19 @@ export type ExtractPropTypes<O> = O extends object
: { [K in string]: any }

type DefaultKeys<T> = {
[K in keyof T]: T[K] extends { default: any } ? K : never
[K in keyof T]: T[K] extends
| {
default: any
}
| BooleanConstructor
| { type: BooleanConstructor }
? T[K] extends {
type: BooleanConstructor
required: true
}
? never
: K
: never
}[keyof T]

// extract props which defined with default from prop options
Expand Down