UNPKG

ionic-framework

Version:

An advanced HTML5 mobile app framework built on Angular2

114 lines (113 loc) 4.18 kB
import { Type } from 'angular2/core'; import { Menu } from '../components/menu/menu'; import { MenuToggle } from '../components/menu/menu-toggle'; import { MenuClose } from '../components/menu/menu-close'; import { Badge } from '../components/badge/badge'; import { Button } from '../components/button/button'; import { Blur } from '../components/blur/blur'; import { Content } from '../components/content/content'; import { Scroll } from '../components/scroll/scroll'; import { InfiniteScroll } from '../components/infinite-scroll/infinite-scroll'; import { InfiniteScrollContent } from '../components/infinite-scroll/infinite-scroll-content'; import { Refresher } from '../components/refresher/refresher'; import { RefresherContent } from '../components/refresher/refresher-content'; import { Slides, Slide } from '../components/slides/slides'; import { Tabs } from '../components/tabs/tabs'; import { Tab } from '../components/tabs/tab'; import { List, ListHeader } from '../components/list/list'; import { Item } from '../components/item/item'; import { ItemSliding } from '../components/item/item-sliding'; import { ToolbarTitle, ToolbarItem } from '../components/toolbar/toolbar'; import { Icon } from '../components/icon/icon'; import { Spinner } from '../components/spinner/spinner'; import { Checkbox } from '../components/checkbox/checkbox'; import { Select } from '../components/select/select'; import { Option } from '../components/option/option'; import { Toggle } from '../components/toggle/toggle'; import { TextArea } from '../components/input/input'; import { Label } from '../components/label/label'; import { Segment, SegmentButton } from '../components/segment/segment'; import { RadioButton } from '../components/radio/radio-button'; import { RadioGroup } from '../components/radio/radio-group'; import { Searchbar, SearchbarInput } from '../components/searchbar/searchbar'; import { Nav } from '../components/nav/nav'; import { NavPush, NavPop } from '../components/nav/nav-push'; import { NavRouter } from '../components/nav/nav-router'; import { NavbarTemplate, Navbar } from '../components/navbar/navbar'; import { IdRef } from '../components/app/id'; import { ShowWhen } from '../components/show-hide-when/show-hide-when'; /** * @name IONIC_DIRECTIVES * @private * @description * The core Ionic directives as well as Angular's CORE_DIRECTIVES and * FORM_DIRECTIVES. Automatically available in every [@Page](../Page/) template. * * **Angular** * - CORE_DIRECTIVES * - FORM_DIRECTIVES * * **Content** * - Menu * - MenuToggle * - MenuClose * * - Button * - Blur * - Content * - Scroll * - InfiniteScroll * - InfiniteScrollContent * - Refresher * - RefresherContent * * **Lists** * - List * - ListHeader * - Item * - ItemSliding * * **Slides** * - Slides * - Slide * - SlideLazy * * **Tabs** * - Tabs * - Tab * * **Toolbar** * - Toolbar * - ToolbarTitle * - ToolbarItem * * **Media** * - Icon * - Spinner * * **Forms** * - Searchbar * - Segment * - SegmentButton * - Checkbox * - RadioGroup * - RadioButton * - Select * - Option * - Toggle * - TextInput * - Label * * **Nav** * - Nav * - NavbarTemplate * - Navbar * - NavPush * - NavPop * - NavRouter * - IdRef * * - ShowWhen * - HideWhen */ export declare const IONIC_DIRECTIVES: (Type[] | typeof Menu | typeof MenuToggle | typeof MenuClose | typeof Badge | typeof Button | typeof Blur | typeof Content | typeof Scroll | typeof InfiniteScroll | typeof InfiniteScrollContent | typeof Refresher | typeof RefresherContent | typeof List | typeof ListHeader | typeof Item | typeof ItemSliding | typeof Slides | typeof Slide | typeof Tabs | typeof Tab | typeof ToolbarTitle | typeof ToolbarItem | typeof Icon | typeof Spinner | typeof Searchbar | typeof SearchbarInput | typeof Segment | typeof SegmentButton | typeof Checkbox | typeof RadioGroup | typeof RadioButton | typeof Select | typeof Option | typeof Toggle | typeof TextArea | typeof Label | typeof Nav | typeof NavbarTemplate | typeof Navbar | typeof NavPush | typeof NavPop | typeof NavRouter | typeof IdRef | typeof ShowWhen)[];