-
Notifications
You must be signed in to change notification settings - Fork 120
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: fix react wrapper types #532
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At the generated d.ts file ISelectOption
interface requires a parameter so we need to pass a default type:
// src/components/select/bl-select.ts
interface ISelectOption<T = string>
Another issue is ValueType
is not defined here:
// baklava-react.d.ts
export declare const BlSelectOption: React.LazyExoticComponent<ReactWebComponent<BlSelectOptionType<string>, {
onBlSelectOption: EventName<CustomEvent<ValueType | string | null>>;
onBlFocus: EventName<CustomEvent<ValueType | string | null>>;
onBlBlur: EventName<CustomEvent<ValueType | string | null>>;
}>>;
I don't like how we fix this typing issue in general, but I think I addressed the points you mentioned. |
🎉 This PR is included in version 2.1.0-beta.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This PR includes the features/fixes for the release of v2.1.0 ## Features * **Switch**: CSS property to set custom color for `off` state (#527) * **Popover**: CSS properties to set `max-width` and `border-size` (#483) ## Fixes * **Dropdown**: Close dropdown when an item is clicked (#533) * **Popover**: Prevent exiting fullscreen with popover close (#551) * **Dialog**: Prevent exiting fullscreen with dialog close (#548) * **Select**: Select item separator is back (#552) * React wrapper types (#532) * Set package type as module (#570) Thanks to our contributors for this version 🚀 : @muratcorlu @ogunb @abugraokkali @AykutSarac @ozkersemih
🎉 This PR is included in version 2.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This PR fixes missing types in React wrappers.