Skip to content

bug:(vue) Required props for IonNav component in 8.4.3 #30179

Closed
stenciljs/output-targets
#630
@Ericlm

Description

@Ericlm

Prerequisites

Ionic Framework Version

v8.x

Current Behavior

When adding an IonNav component in a Vue component, some props that was not required before 8.4.3 became required, and make the type-check fail.

before :

import type { VNode } from "vue";
export declare const IonNav: import("vue").DefineComponent<unknown, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
    [key: string]: any;
}>, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>;

After :

export declare const IonNav: import("vue").DefineSetupFnComponent<{
    animated: boolean;
    animation: Function;
    root: any;
    rootParams: any;
    swipeGesture: boolean;
}, {}, {}, {
    animated: boolean;
    animation: Function;
    root: any;
    rootParams: any;
    swipeGesture: boolean;
} & {}, import("vue").PublicProps>;

Expected Behavior

The required props should be the same as before 8.4.3

Steps to Reproduce

  1. Create a Ionic + Vue project
  2. Add an IonNav component
  3. Type errors appear to add some required props

Code Reproduction URL

https://github.com/Ericlm/vue-ion-nav

Ionic Info

Ionic:

   Ionic CLI       : 7.2.0 (/Users/ericlemaitre/.asdf/installs/nodejs/22.13.0/lib/node_modules/@ionic/cli)
   Ionic Framework : @ionic/vue 8.4.3

Capacitor:

   Capacitor CLI      : 7.0.1
   @capacitor/android : not installed
   @capacitor/core    : 7.0.1
   @capacitor/ios     : not installed

Utility:

   cordova-res : not installed globally
   native-run  : 2.0.1

System:

   NodeJS : v22.13.0 (/Users/ericlemaitre/.asdf/installs/nodejs/22.13.0/bin/node)
   npm    : 10.9.2
   OS     : macOS Unknown

Additional Information

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions