chore(package): update stencil 0.6.11 and ionicons 4.0.0-18

This commit is contained in:
Adam Bradley
2018-02-27 14:30:15 -06:00
parent b1dbc1b733
commit cee37a60b4
3 changed files with 31 additions and 24 deletions

View File

@ -14,14 +14,14 @@
}
},
"@stencil/core": {
"version": "0.6.8",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-0.6.8.tgz",
"integrity": "sha512-w1x4QeBCulWL0X4S2w9TH9UzXidf93F20hCnTfT+WKu8PdY2jCJMFs+dtO7zgRmUahIMXLJ8GXeNaRhvub6cuA==",
"version": "0.6.11",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-0.6.11.tgz",
"integrity": "sha512-G6U8thKznLZrTrMyUzNZSxs3VeHX0iuDFfhGN0NuUvY3169DrM7/tMGyolhRultbyDBLD7PTvOlxWE5xM6ebKw==",
"dev": true,
"requires": {
"chokidar": "2.0.1",
"jsdom": "11.5.1",
"rollup": "0.55.5",
"rollup": "0.56.3",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.1.0",
@ -30,6 +30,14 @@
"typescript": "2.7.2",
"uglify-es": "3.3.9",
"workbox-build": "3.0.0-alpha.6"
},
"dependencies": {
"rollup": {
"version": "0.56.3",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-0.56.3.tgz",
"integrity": "sha512-/iH4RfioboHgBjo7TbQcdMad/ifVGY/ToOB1AsW7oZHUhfhm+low6QlrImUSaJO1JqklOpWEKlD+b3MZYLuptA==",
"dev": true
}
}
},
"@stencil/dev-server": {
@ -4614,9 +4622,9 @@
"dev": true
},
"ionicons": {
"version": "4.0.0-16",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-4.0.0-16.tgz",
"integrity": "sha512-dKlEPK0BunmsNCAlcIr0LRY2fxUySa7Vzqe/onmSoNLRshMTbkDM1IyuHOWBEnJp5UsUFW+lqsEERV+VQpEhKA=="
"version": "4.0.0-18",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-4.0.0-18.tgz",
"integrity": "sha512-nPijotkyDVy1tX6IBuo9/uLnWLtvwYUxX5YGcJJ0meyx6XwUrc+9irDF/xXkVnnUrw9cHbGoJv2Hs0l65wMWLQ=="
},
"is": {
"version": "0.2.7",
@ -9017,12 +9025,6 @@
"inherits": "2.0.3"
}
},
"rollup": {
"version": "0.55.5",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-0.55.5.tgz",
"integrity": "sha512-2hke9NOy332kxvnmMQOgl7DHm94zihNyYJNd8ZLWo4U0EjFvjUkeWa0+ge+70bTg+mY0xJ7NUsf5kIhDtrGrtA==",
"dev": true
},
"rollup-plugin-commonjs": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.3.0.tgz",

View File

@ -9,10 +9,10 @@
"dist/"
],
"dependencies": {
"ionicons": "4.0.0-16"
"ionicons": "4.0.0-18"
},
"devDependencies": {
"@stencil/core": "0.6.8",
"@stencil/core": "0.6.11",
"@stencil/dev-server": "latest",
"@stencil/postcss": "0.0.2",
"@stencil/sass": "0.0.3",

View File

@ -3,6 +3,20 @@
* It contains typing information for all components that exist in this project
* and imports for stencil collections that might be configured in your stencil.config.js file
*/
declare global {
namespace JSX {
interface Element {}
export interface IntrinsicElements {}
}
namespace JSXElements {}
interface HTMLStencilElement extends HTMLElement {
componentOnReady(): Promise<this>;
componentOnReady(done: (ele?: this) => void): void;
}
interface HTMLAttributes {}
}
import 'ionicons';
@ -50,15 +64,6 @@ import {
NodeHeightFn,
} from './components/virtual-scroll/virtual-scroll-utils';
declare global {
interface HTMLStencilElement extends HTMLElement {
componentOnReady(): Promise<this>;
componentOnReady(done: (ele?: this) => void): void;
}
}
import {
ActionSheetController as IonActionSheetController
} from './components/action-sheet-controller/action-sheet-controller';