ionic-team/ionic-framework

feat: Improved types for react useIonModal

Open

#28.680 aberto em 11 de dez. de 2023

Ver no GitHub
 (8 comments) (0 reactions) (0 assignees)TypeScript (13.381 forks)batch import
help wantedpackage: reacttype: feature request

Métricas do repositório

Stars
 (52.503 stars)
Métricas de merge de PR
 (Mesclagem média 4d 10h) (56 fundiu PRs em 30d)

Description

Prerequisites

Describe the Feature Request

useIonModal should type props parameter.

Describe the Use Case

useIonModal currently allows any for component props. This is dangerous and has caused many crashes and unintended behaviors in my experience.

Currently:

export declare function useIonModal(component: ReactComponentOrElement, componentProps?: any): UseIonModalResult;

Describe Preferred Solution

export declare function useIonModal<P>(component: React.ComponentClass<P> | React.FC<P>, componentProps?: P): UseIonModalResult;
export declare function useIonModal(component: React.ReactElement, componentProps?: any): UseIonModalResult;

Describe Alternatives

Leaving as-is

Related Code

No response

Additional Information

If you would accept this change, I would happily make a PR

Guia do colaborador