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

This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
Adam Bradley
2017-11-28 20:31:20 -06:00
gitea-unlock(16/)
parent 38023b59dc
commit 1ade6aa684
octicon-diff(16/tw-mr-1) 5 changed files with 194 additions and 35 deletions

62
packages/core/src/components.d.ts vendored
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

25
packages/core/src/components/picker-column/readme.md Normal file
View File

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

140
packages/core/src/components/picker/readme.md
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()
----------------------------------------------

2
packages/core/src/index.d.ts vendored
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,