mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
chore(package): update to latest stencil
This commit is contained in:
1711
packages/core/package-lock.json
generated
1711
packages/core/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -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",
|
||||||
|
36
packages/core/src/components.d.ts
vendored
36
packages/core/src/components.d.ts
vendored
@ -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
|
||||||
|
Reference in New Issue
Block a user