chore(package): update to latest stencil

This commit is contained in:
Manu Mtz.-Almeida
2017-10-25 12:48:34 +02:00
parent a39c56f48d
commit 9a42816d7d
3 changed files with 301 additions and 1448 deletions

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
"dist/" "dist/"
], ],
"devDependencies": { "devDependencies": {
"@stencil/core": "0.0.6-22", "@stencil/core": "^0.0.6-23",
"@stencil/dev-server": "latest", "@stencil/dev-server": "latest",
"@stencil/utils": "latest", "@stencil/utils": "latest",
"@types/jest": "^21.1.0", "@types/jest": "^21.1.0",

View File

@ -596,7 +596,7 @@ declare global {
mode?: string, mode?: string,
color?: string, color?: string,
fullscreen?: boolean | "true" | "false" fullscreen?: boolean
} }
} }
} }
@ -626,13 +626,14 @@ declare global {
mode?: string, mode?: string,
color?: string, color?: string,
disabled?: boolean | "true" | "false", pickerCtrl?: any,
min?: any, disabled?: boolean,
max?: any, min?: string,
displayFormat?: any, max?: string,
pickerFormat?: any, displayFormat?: string,
cancelText?: any, pickerFormat?: string,
doneText?: any, cancelText?: string,
doneText?: string,
yearValues?: any, yearValues?: any,
monthValues?: any, monthValues?: any,
dayValues?: any, dayValues?: any,
@ -643,7 +644,8 @@ declare global {
dayNames?: any, dayNames?: any,
dayShortNames?: any, dayShortNames?: any,
pickerOptions?: any, pickerOptions?: any,
placeholder?: any placeholder?: string,
value?: string
} }
} }
} }
@ -1014,9 +1016,11 @@ declare global {
} }
namespace JSXElements { namespace JSXElements {
export interface IonInfiniteScrollContentAttributes extends HTMLAttributes { export interface IonInfiniteScrollContentAttributes extends HTMLAttributes {
mode?: string,
color?: string,
loadingSpinner?: any, loadingSpinner?: string,
loadingText?: any loadingText?: string
} }
} }
} }
@ -1043,10 +1047,12 @@ declare global {
} }
namespace JSXElements { namespace JSXElements {
export interface IonInfiniteScrollAttributes extends HTMLAttributes { export interface IonInfiniteScrollAttributes extends HTMLAttributes {
mode?: string,
color?: string,
complete?: any, complete?: any,
threshold?: any, threshold?: string,
enabled?: boolean | "true" | "false", enabled?: boolean,
position?: any position?: any
} }
} }
@ -2401,8 +2407,8 @@ declare global {
mode?: string, mode?: string,
color?: string, color?: string,
enabled?: boolean | "true" | "false", enabled?: boolean,
jsScroll?: boolean | "true" | "false", jsScroll?: boolean,
onionScrollStart?: any, onionScrollStart?: any,
onionScroll?: any, onionScroll?: any,
onionScrollEnd?: any onionScrollEnd?: any