diff --git a/src/components/action-sheet/action-sheet.module.ts b/src/components/action-sheet/action-sheet.module.ts index a8b1f3df25..13d31b05bd 100644 --- a/src/components/action-sheet/action-sheet.module.ts +++ b/src/components/action-sheet/action-sheet.module.ts @@ -7,6 +7,7 @@ import { IconModule } from '../icon/icon.module'; import { ActionSheetCmp } from './action-sheet-component'; +/** @hidden */ @NgModule({ imports: [ BackdropModule, diff --git a/src/components/alert/alert.module.ts b/src/components/alert/alert.module.ts index 71d6c1f886..30f7c594b9 100644 --- a/src/components/alert/alert.module.ts +++ b/src/components/alert/alert.module.ts @@ -7,6 +7,7 @@ import { BackdropModule } from '../backdrop/backdrop.module'; import { AlertCmp } from './alert-component'; +/** @hidden */ @NgModule({ imports: [ BackdropModule, diff --git a/src/components/app/app.module.ts b/src/components/app/app.module.ts index 7168b2e686..b3a9daf33d 100644 --- a/src/components/app/app.module.ts +++ b/src/components/app/app.module.ts @@ -4,6 +4,7 @@ import { IonicApp } from './app-root'; import { NavModule } from '../nav/nav.module'; +/** @hidden */ @NgModule({ imports: [ NavModule diff --git a/src/components/avatar/avatar.module.ts b/src/components/avatar/avatar.module.ts index 843fa1e675..a28a653d50 100644 --- a/src/components/avatar/avatar.module.ts +++ b/src/components/avatar/avatar.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Avatar } from './avatar'; +/** @hidden */ @NgModule({ declarations: [ Avatar diff --git a/src/components/backdrop/backdrop.module.ts b/src/components/backdrop/backdrop.module.ts index 441dcbccc3..3b5ea9c71a 100644 --- a/src/components/backdrop/backdrop.module.ts +++ b/src/components/backdrop/backdrop.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Backdrop } from './backdrop'; +/** @hidden */ @NgModule({ declarations: [ Backdrop diff --git a/src/components/badge/badge.module.ts b/src/components/badge/badge.module.ts index f3ef8f2565..2d25b5623b 100644 --- a/src/components/badge/badge.module.ts +++ b/src/components/badge/badge.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Badge } from './badge'; +/** @hidden */ @NgModule({ declarations: [ Badge diff --git a/src/components/button/button.module.ts b/src/components/button/button.module.ts index 3b4b257164..efbfdeb89a 100644 --- a/src/components/button/button.module.ts +++ b/src/components/button/button.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Button } from './button'; +/** @hidden */ @NgModule({ declarations: [ Button diff --git a/src/components/card/card.module.ts b/src/components/card/card.module.ts index 41583cafdf..900741d8da 100644 --- a/src/components/card/card.module.ts +++ b/src/components/card/card.module.ts @@ -5,6 +5,7 @@ import { CardContent } from './card-content'; import { CardHeader } from './card-header'; import { CardTitle } from './card-title'; +/** @hidden */ @NgModule({ declarations: [ Card, diff --git a/src/components/checkbox/checkbox.module.ts b/src/components/checkbox/checkbox.module.ts index 67d773c189..5ab2b17f98 100644 --- a/src/components/checkbox/checkbox.module.ts +++ b/src/components/checkbox/checkbox.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Checkbox } from './checkbox'; +/** @hidden */ @NgModule({ declarations: [ Checkbox diff --git a/src/components/chip/chip.module.ts b/src/components/chip/chip.module.ts index 84071d46c4..acebd286ec 100644 --- a/src/components/chip/chip.module.ts +++ b/src/components/chip/chip.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Chip } from './chip'; +/** @hidden */ @NgModule({ declarations: [ Chip diff --git a/src/components/click-block/click-block.module.ts b/src/components/click-block/click-block.module.ts index caa49cba1e..a105b5fc24 100644 --- a/src/components/click-block/click-block.module.ts +++ b/src/components/click-block/click-block.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { ClickBlock } from './click-block'; +/** @hidden */ @NgModule({ declarations: [ ClickBlock diff --git a/src/components/content/content.module.ts b/src/components/content/content.module.ts index 14b4eee63d..ae78bf1ce7 100644 --- a/src/components/content/content.module.ts +++ b/src/components/content/content.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Content } from './content'; +/** @hidden */ @NgModule({ declarations: [ Content diff --git a/src/components/datetime/datetime.module.ts b/src/components/datetime/datetime.module.ts index 114795b1c6..68a4dc8a4e 100644 --- a/src/components/datetime/datetime.module.ts +++ b/src/components/datetime/datetime.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { DateTime } from './datetime'; +/** @hidden */ @NgModule({ imports: [ CommonModule diff --git a/src/components/fab/fab.module.ts b/src/components/fab/fab.module.ts index a095edf00e..f7dec299d5 100644 --- a/src/components/fab/fab.module.ts +++ b/src/components/fab/fab.module.ts @@ -6,6 +6,7 @@ import { FabButton } from './fab'; import { FabContainer } from './fab-container'; import { FabList } from './fab-list'; +/** @hidden */ @NgModule({ imports: [ IconModule diff --git a/src/components/grid/grid.module.ts b/src/components/grid/grid.module.ts index bbbb02dfef..3122dd8d9f 100644 --- a/src/components/grid/grid.module.ts +++ b/src/components/grid/grid.module.ts @@ -4,6 +4,7 @@ import { Grid } from './grid'; import { Row } from './row'; import { Col } from './col'; +/** @hidden */ @NgModule({ declarations: [ Grid, diff --git a/src/components/img/img.module.ts b/src/components/img/img.module.ts index 442c411db6..bddd2c689c 100644 --- a/src/components/img/img.module.ts +++ b/src/components/img/img.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Img } from './img'; +/** @hidden */ @NgModule({ declarations: [ Img diff --git a/src/components/infinite-scroll/infinite-scroll.module.ts b/src/components/infinite-scroll/infinite-scroll.module.ts index a72be0df6b..cc18485383 100644 --- a/src/components/infinite-scroll/infinite-scroll.module.ts +++ b/src/components/infinite-scroll/infinite-scroll.module.ts @@ -6,6 +6,7 @@ import { InfiniteScrollContent } from './infinite-scroll-content'; import { SpinnerModule } from '../spinner/spinner.module'; +/** @hidden */ @NgModule({ imports: [ CommonModule, diff --git a/src/components/input/input.module.ts b/src/components/input/input.module.ts index 29039af06e..2e1df431f0 100644 --- a/src/components/input/input.module.ts +++ b/src/components/input/input.module.ts @@ -6,6 +6,7 @@ import { NativeInput } from './native-input'; import { NextInput } from './next-input'; import { TextInput } from './input'; +/** @hidden */ @NgModule({ imports: [ CommonModule, diff --git a/src/components/ion.ts b/src/components/ion.ts index 16ba4aa975..59bcd343e4 100644 --- a/src/components/ion.ts +++ b/src/components/ion.ts @@ -7,6 +7,7 @@ import { Config } from '../config/config'; * that all Ionic components need, such as accessing underlying native elements and * sending/receiving app-level events. */ +/** @hidden */ export class Ion { /** @hidden */ _config: Config; diff --git a/src/components/item/item.module.ts b/src/components/item/item.module.ts index 0b76160355..5a8cb9213c 100644 --- a/src/components/item/item.module.ts +++ b/src/components/item/item.module.ts @@ -13,6 +13,7 @@ import { Reorder } from './reorder'; import { IconModule } from '../icon/icon.module'; import { LabelModule } from '../label/label.module'; +/** @hidden */ @NgModule({ imports: [ CommonModule, diff --git a/src/components/label/label.module.ts b/src/components/label/label.module.ts index c64213e29b..feb3559900 100644 --- a/src/components/label/label.module.ts +++ b/src/components/label/label.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Label } from './label'; +/** @hidden */ @NgModule({ declarations: [ Label diff --git a/src/components/list/list.module.ts b/src/components/list/list.module.ts index bb1df001dc..5120a5de37 100644 --- a/src/components/list/list.module.ts +++ b/src/components/list/list.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { List } from './list'; import { ListHeader } from './list-header'; +/** @hidden */ @NgModule({ declarations: [ List, diff --git a/src/components/loading/loading.module.ts b/src/components/loading/loading.module.ts index ed7d9b9fb0..62e66c2033 100644 --- a/src/components/loading/loading.module.ts +++ b/src/components/loading/loading.module.ts @@ -6,6 +6,7 @@ import { SpinnerModule } from '../spinner/spinner.module'; import { LoadingCmp } from './loading-component'; +/** @hidden */ @NgModule({ imports: [ BackdropModule, diff --git a/src/components/menu/menu.module.ts b/src/components/menu/menu.module.ts index 4a68b0a11c..a190bb0a00 100644 --- a/src/components/menu/menu.module.ts +++ b/src/components/menu/menu.module.ts @@ -6,6 +6,7 @@ import { Menu } from './menu'; import { MenuClose } from './menu-close'; import { MenuToggle } from './menu-toggle'; +/** @hidden */ @NgModule({ imports: [ BackdropModule diff --git a/src/components/modal/modal.module.ts b/src/components/modal/modal.module.ts index 65da732b59..8d1c21b58e 100644 --- a/src/components/modal/modal.module.ts +++ b/src/components/modal/modal.module.ts @@ -4,6 +4,7 @@ import { BackdropModule } from '../backdrop/backdrop.module'; import { ModalCmp } from './modal-component'; +/** @hidden */ @NgModule({ imports: [ BackdropModule diff --git a/src/components/nav/nav.module.ts b/src/components/nav/nav.module.ts index 0119c3d3ed..66d18303f7 100644 --- a/src/components/nav/nav.module.ts +++ b/src/components/nav/nav.module.ts @@ -7,6 +7,7 @@ import { NavPush } from './nav-push'; import { NavPushAnchor } from './nav-push-anchor'; import { OverlayPortal } from './overlay-portal'; +/** @hidden */ @NgModule({ declarations: [ Nav, diff --git a/src/components/navbar/navbar.module.ts b/src/components/navbar/navbar.module.ts index fede37d29d..409126c520 100644 --- a/src/components/navbar/navbar.module.ts +++ b/src/components/navbar/navbar.module.ts @@ -6,6 +6,7 @@ import { Navbar } from './navbar'; import { ButtonModule } from '../button/button.module'; import { IconModule } from '../icon/icon.module'; +/** @hidden */ @NgModule({ imports: [ ButtonModule, diff --git a/src/components/note/note.module.ts b/src/components/note/note.module.ts index 5689c55dfd..ff263c91a1 100644 --- a/src/components/note/note.module.ts +++ b/src/components/note/note.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Note } from './note'; +/** @hidden */ @NgModule({ declarations: [ Note diff --git a/src/components/option/option.module.ts b/src/components/option/option.module.ts index e804b108a9..25e619f8a5 100644 --- a/src/components/option/option.module.ts +++ b/src/components/option/option.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Option } from './option'; +/** @hidden */ @NgModule({ declarations: [ Option diff --git a/src/components/picker/picker.module.ts b/src/components/picker/picker.module.ts index 02cc6790e4..833c5b54e9 100644 --- a/src/components/picker/picker.module.ts +++ b/src/components/picker/picker.module.ts @@ -7,6 +7,7 @@ import { ButtonModule } from '../button/button.module'; import { PickerCmp } from './picker-component'; import { PickerColumnCmp } from './picker-column'; +/** @hidden */ @NgModule({ imports: [ BackdropModule, diff --git a/src/components/popover/popover.module.ts b/src/components/popover/popover.module.ts index 9a5b68d2b9..097c2c997d 100644 --- a/src/components/popover/popover.module.ts +++ b/src/components/popover/popover.module.ts @@ -4,6 +4,7 @@ import { BackdropModule } from '../backdrop/backdrop.module'; import { PopoverCmp } from './popover-component'; +/** @hidden */ @NgModule({ imports: [ BackdropModule diff --git a/src/components/radio/radio.module.ts b/src/components/radio/radio.module.ts index 4a0355b29f..e43db9cdc6 100644 --- a/src/components/radio/radio.module.ts +++ b/src/components/radio/radio.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { RadioButton } from './radio-button'; import { RadioGroup } from './radio-group'; +/** @hidden */ @NgModule({ declarations: [ RadioButton, diff --git a/src/components/range/range.module.ts b/src/components/range/range.module.ts index fe80efbb8b..0f07537d19 100644 --- a/src/components/range/range.module.ts +++ b/src/components/range/range.module.ts @@ -4,6 +4,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Range } from './range'; import { RangeKnob } from './range-knob'; +/** @hidden */ @NgModule({ imports: [ CommonModule diff --git a/src/components/refresher/refresher.module.ts b/src/components/refresher/refresher.module.ts index af74258ccc..0956432492 100644 --- a/src/components/refresher/refresher.module.ts +++ b/src/components/refresher/refresher.module.ts @@ -7,6 +7,7 @@ import { SpinnerModule } from '../spinner/spinner.module'; import { Refresher } from './refresher'; import { RefresherContent } from './refresher-content'; +/** @hidden */ @NgModule({ imports: [ CommonModule, diff --git a/src/components/scroll/scroll.module.ts b/src/components/scroll/scroll.module.ts index 6fc2727a5c..76960551ce 100644 --- a/src/components/scroll/scroll.module.ts +++ b/src/components/scroll/scroll.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Scroll } from './scroll'; +/** @hidden */ @NgModule({ declarations: [ Scroll diff --git a/src/components/searchbar/searchbar.module.ts b/src/components/searchbar/searchbar.module.ts index da0b0b961b..e00d3be428 100644 --- a/src/components/searchbar/searchbar.module.ts +++ b/src/components/searchbar/searchbar.module.ts @@ -5,6 +5,7 @@ import { IconModule } from '../icon/icon.module'; import { Searchbar } from './searchbar'; +/** @hidden */ @NgModule({ imports: [ ButtonModule, diff --git a/src/components/segment/segment.module.ts b/src/components/segment/segment.module.ts index 4e55de45d4..bf87d420ef 100644 --- a/src/components/segment/segment.module.ts +++ b/src/components/segment/segment.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Segment } from './segment'; import { SegmentButton } from './segment-button'; +/** @hidden */ @NgModule({ declarations: [ Segment, diff --git a/src/components/select/select.module.ts b/src/components/select/select.module.ts index d9074779c4..d45f10c4c4 100644 --- a/src/components/select/select.module.ts +++ b/src/components/select/select.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Select } from './select'; +/** @hidden */ @NgModule({ imports: [ CommonModule diff --git a/src/components/show-hide-when/show-hide-when.module.ts b/src/components/show-hide-when/show-hide-when.module.ts index bc946b6f1c..cbcfe28b2a 100644 --- a/src/components/show-hide-when/show-hide-when.module.ts +++ b/src/components/show-hide-when/show-hide-when.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { ShowWhen } from './show-when'; import { HideWhen } from './hide-when'; +/** @hidden */ @NgModule({ declarations: [ ShowWhen, diff --git a/src/components/slides/slides.module.ts b/src/components/slides/slides.module.ts index 8c90253fa5..6bcebc7faf 100644 --- a/src/components/slides/slides.module.ts +++ b/src/components/slides/slides.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Slide } from './slide'; import { Slides } from './slides'; +/** @hidden */ @NgModule({ declarations: [ Slide, diff --git a/src/components/spinner/spinner.module.ts b/src/components/spinner/spinner.module.ts index bff7389aab..fb16ad9e3c 100644 --- a/src/components/spinner/spinner.module.ts +++ b/src/components/spinner/spinner.module.ts @@ -3,6 +3,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Spinner } from './spinner'; +/** @hidden */ @NgModule({ imports: [ CommonModule diff --git a/src/components/split-pane/split-pane.module.ts b/src/components/split-pane/split-pane.module.ts index 7ca23b73a8..07746d2a50 100644 --- a/src/components/split-pane/split-pane.module.ts +++ b/src/components/split-pane/split-pane.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { SplitPane } from './split-pane'; +/** @hidden */ @NgModule({ declarations: [ SplitPane diff --git a/src/components/tabs/tabs.module.ts b/src/components/tabs/tabs.module.ts index 3d880675bc..bb742fadd6 100644 --- a/src/components/tabs/tabs.module.ts +++ b/src/components/tabs/tabs.module.ts @@ -9,6 +9,7 @@ import { TabButton } from './tab-button'; import { TabHighlight } from './tab-highlight'; import { Tabs } from './tabs'; +/** @hidden */ @NgModule({ imports: [ BadgeModule, diff --git a/src/components/thumbnail/thumbnail.module.ts b/src/components/thumbnail/thumbnail.module.ts index b22926606f..53c5bf1d14 100644 --- a/src/components/thumbnail/thumbnail.module.ts +++ b/src/components/thumbnail/thumbnail.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Thumbnail } from './thumbnail'; +/** @hidden */ @NgModule({ declarations: [ Thumbnail diff --git a/src/components/toast/toast.module.ts b/src/components/toast/toast.module.ts index e3999f0b50..70e52f31cd 100644 --- a/src/components/toast/toast.module.ts +++ b/src/components/toast/toast.module.ts @@ -6,6 +6,7 @@ import { ButtonModule } from '../button/button.module'; import { ToastCmp } from './toast-component'; +/** @hidden */ @NgModule({ imports: [ BackdropModule, diff --git a/src/components/toggle/toggle.module.ts b/src/components/toggle/toggle.module.ts index b89fe63383..c4401e5bd8 100644 --- a/src/components/toggle/toggle.module.ts +++ b/src/components/toggle/toggle.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Toggle } from './toggle'; +/** @hidden */ @NgModule({ declarations: [ Toggle diff --git a/src/components/toolbar/toolbar.module.ts b/src/components/toolbar/toolbar.module.ts index 9338606554..fc0cbb1f14 100644 --- a/src/components/toolbar/toolbar.module.ts +++ b/src/components/toolbar/toolbar.module.ts @@ -7,6 +7,7 @@ import { Toolbar } from './toolbar'; import { ToolbarItem } from './toolbar-item'; import { ToolbarTitle } from './toolbar-title'; +/** @hidden */ @NgModule({ imports: [ CommonModule diff --git a/src/components/typography/typography.module.ts b/src/components/typography/typography.module.ts index f5ae8afcdc..d25758444e 100644 --- a/src/components/typography/typography.module.ts +++ b/src/components/typography/typography.module.ts @@ -2,6 +2,7 @@ import { NgModule, ModuleWithProviders } from '@angular/core'; import { Typography } from './typography'; +/** @hidden */ @NgModule({ declarations: [ Typography diff --git a/src/components/virtual-scroll/virtual-scroll.module.ts b/src/components/virtual-scroll/virtual-scroll.module.ts index 9f5c4b937e..f3f8124b1d 100644 --- a/src/components/virtual-scroll/virtual-scroll.module.ts +++ b/src/components/virtual-scroll/virtual-scroll.module.ts @@ -5,6 +5,7 @@ import { VirtualHeader } from './virtual-header'; import { VirtualItem } from './virtual-item'; import { VirtualScroll } from './virtual-scroll'; +/** @hidden */ @NgModule({ declarations: [ VirtualFooter,