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

View File

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

View File

@ -3,6 +3,20 @@
* It contains typing information for all components that exist in this project * 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 * 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'; import 'ionicons';
@ -50,15 +64,6 @@ import {
NodeHeightFn, NodeHeightFn,
} from './components/virtual-scroll/virtual-scroll-utils'; } from './components/virtual-scroll/virtual-scroll-utils';
declare global {
interface HTMLStencilElement extends HTMLElement {
componentOnReady(): Promise<this>;
componentOnReady(done: (ele?: this) => void): void;
}
}
import { import {
ActionSheetController as IonActionSheetController ActionSheetController as IonActionSheetController
} from './components/action-sheet-controller/action-sheet-controller'; } from './components/action-sheet-controller/action-sheet-controller';