chore(): bump react output target (#23926)

This commit is contained in:
Liam DeBeasi
2021-09-14 12:01:56 -04:00
committed by GitHub
parent 4ae44b7a23
commit 497537ac73
5 changed files with 82 additions and 82 deletions

View File

@ -11,25 +11,25 @@ import { /*@__PURE__*/ createReactComponent } from './react-component-lib';
export const IonTabButtonInner = /*@__PURE__*/ createReactComponent<
JSX.IonTabButton & { onIonTabButtonClick?: (e: CustomEvent) => void },
HTMLIonTabButtonElement
>('ion-tab-button', IonTabButtonCmp);
>('ion-tab-button', undefined, undefined, IonTabButtonCmp);
export const IonTabBarInner = /*@__PURE__*/ createReactComponent<
JSX.IonTabBar,
HTMLIonTabBarElement
>('ion-tab-bar', IonTabBarCmp);
>('ion-tab-bar', undefined, undefined, IonTabBarCmp);
export const IonBackButtonInner = /*@__PURE__*/ createReactComponent<
Omit<JSX.IonBackButton, 'icon'>,
HTMLIonBackButtonElement
>('ion-back-button', IonBackButtonCmp);
>('ion-back-button', undefined, undefined, IonBackButtonCmp);
export const IonRouterOutletInner = /*@__PURE__*/ createReactComponent<
JSX.IonRouterOutlet & {
setRef?: (val: HTMLIonRouterOutletElement) => void;
forwardedRef?: React.ForwardedRef<HTMLIonRouterOutletElement>;
},
HTMLIonRouterOutletElement
>('ion-router-outlet', IonRouterOutletCmp);
>('ion-router-outlet', undefined, undefined, IonRouterOutletCmp);
// ionicons
export const IonIconInner = /*@__PURE__*/ createReactComponent<
IoniconsJSX.IonIcon,
HTMLIonIconElement
>('ion-icon', IonIconCmp);
>('ion-icon', undefined, undefined, IonIconCmp);