chore(picker): move picker-column to separate directory

This commit is contained in:
Adam Bradley
2017-11-28 20:31:20 -06:00
parent 38023b59dc
commit 1ade6aa684
5 changed files with 194 additions and 35 deletions

View File

@ -1992,6 +1992,37 @@ declare global {
}
import {
PickerColumnCmp as IonPickerColumn
} from './components/picker-column/picker-column';
declare global {
interface HTMLIonPickerColumnElement extends IonPickerColumn, HTMLElement {
}
var HTMLIonPickerColumnElement: {
prototype: HTMLIonPickerColumnElement;
new (): HTMLIonPickerColumnElement;
};
interface HTMLElementTagNameMap {
"ion-picker-column": HTMLIonPickerColumnElement;
}
interface ElementTagNameMap {
"ion-picker-column": HTMLIonPickerColumnElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-picker-column": JSXElements.IonPickerColumnAttributes;
}
}
namespace JSXElements {
export interface IonPickerColumnAttributes extends HTMLAttributes {
col?: PickerColumn
}
}
}
import {
PickerController as IonPickerController
} from './components/picker-controller/picker-controller';
@ -2022,37 +2053,6 @@ declare global {
}
import {
PickerColumnCmp as IonPickerColumn
} from './components/picker/picker-column';
declare global {
interface HTMLIonPickerColumnElement extends IonPickerColumn, HTMLElement {
}
var HTMLIonPickerColumnElement: {
prototype: HTMLIonPickerColumnElement;
new (): HTMLIonPickerColumnElement;
};
interface HTMLElementTagNameMap {
"ion-picker-column": HTMLIonPickerColumnElement;
}
interface ElementTagNameMap {
"ion-picker-column": HTMLIonPickerColumnElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-picker-column": JSXElements.IonPickerColumnAttributes;
}
}
namespace JSXElements {
export interface IonPickerColumnAttributes extends HTMLAttributes {
col?: PickerColumn
}
}
}
import {
Picker as IonPicker
} from './components/picker/picker';

View File

@ -0,0 +1,25 @@
# ion-picker-column
<!-- Auto Generated Below -->
## Properties
#### col
any
## Attributes
#### col
any
----------------------------------------------
*Built by [StencilJS](https://stenciljs.com/)*

View File

@ -1,4 +1,4 @@
# ion-picker-column
# ion-picker
@ -7,18 +7,152 @@
## Properties
#### col
#### buttons
any
#### columns
any
#### content
string
#### cssClass
string
#### dismissOnPageChange
boolean
#### duration
number
#### enableBackdropDismiss
boolean
#### enterAnimation
any
#### exitAnimation
any
#### pickerId
string
#### showBackdrop
boolean
## Attributes
#### col
#### buttons
any
#### columns
any
#### content
string
#### cssClass
string
#### dismissOnPageChange
boolean
#### duration
number
#### enableBackdropDismiss
boolean
#### enterAnimation
any
#### exitAnimation
any
#### pickerId
string
#### showBackdrop
boolean
## Events
#### ionPickerDidDismiss
#### ionPickerDidLoad
#### ionPickerDidPresent
#### ionPickerDidUnload
#### ionPickerWillDismiss
#### ionPickerWillPresent
## Methods
#### addButton()
#### addColumn()
#### getColumn()
#### getColumns()
----------------------------------------------

View File

@ -89,7 +89,7 @@ export { Navbar } from './components/navbar/navbar';
export { NavController } from './components/nav-controller/nav-controller';
export { Note } from './components/note/note';
export { Page } from './components/page/page';
export { PickerColumnCmp } from './components/picker/picker-column';
export { PickerColumnCmp } from './components/picker-column/picker-column';
export {
Picker,
PickerButton,