feat(react): complete controller integrations and navigation (#16849)

* fix(react): correct controller types and reexport AlertOptions.

* feat(): add Ion Stack and Tabs navigation items based on React Router.

* rework tabs and add router outlet

* fixes to the outlet rendering.

* add direction as state

* fixed transitions

* Update to core rc2.
This commit is contained in:
Josh Thomas
2019-01-22 14:09:58 -06:00
committed by GitHub
parent 3612651334
commit f46cd507c2
16 changed files with 479 additions and 55 deletions

View File

@ -2,7 +2,7 @@ import { Components } from '@ionic/core';
import { createOverlayComponent } from './createOverlayComponent';
import { Omit } from './types';
export type PopoverOptions = Omit<Components.IonPopoverAttributes, 'delegate' | 'overlayIndex' | 'component' | 'componentProps'> & {
export type PopoverOptions = Omit<Components.IonPopoverAttributes, 'component' | 'componentProps'> & {
children: React.ReactNode;
};