From d9802f4b63122a8e6a3ba39feec05606e86668e9 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Mon, 30 Apr 2018 18:49:30 +0200 Subject: [PATCH] chore(): update to latest stencil --- core/package-lock.json | 12 ++++++------ core/package.json | 2 +- core/src/components/datetime/readme.md | 20 ++++++++++---------- core/src/components/router/readme.md | 5 ++++- core/src/components/split-pane/readme.md | 4 ++-- 5 files changed, 23 insertions(+), 20 deletions(-) diff --git a/core/package-lock.json b/core/package-lock.json index 996f258d3a..33a3b5f17b 100644 --- a/core/package-lock.json +++ b/core/package-lock.json @@ -34,9 +34,9 @@ } }, "@stencil/core": { - "version": "0.7.27-3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-0.7.27-3.tgz", - "integrity": "sha512-WGrT8o29wBu+4lFwOWgQEMKr9LCBlSiGuvWoIf/nyM3bIZ5ywtGI6/QrTy1fXsXeMC7yGlB+YTCqaSCC+eHdfw==", + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-0.8.0.tgz", + "integrity": "sha512-8K1XDyxUtm++v2ixBkXFfB70irE0wkL87uLhBRkET1jllZ5B/kNf+vnhzn+dSTozPizdkkUmqm+NVwaJ0r7xEA==", "dev": true, "requires": { "chokidar": "2.0.3", @@ -10379,9 +10379,9 @@ "dev": true }, "upath": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.0.4.tgz", - "integrity": "sha512-d4SJySNBXDaQp+DPrziv3xGS6w3d2Xt69FijJr86zMPBy23JEloMCEOUBBzuN7xCtjLCnmB9tI/z7SBCahHBOw==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.0.5.tgz", + "integrity": "sha512-qbKn90aDQ0YEwvXoLqj0oiuUYroLX2lVHZ+b+xwjozFasAOC4GneDq5+OaIG5Zj+jFmbz/uO+f7a9qxjktJQww==", "dev": true }, "update-notifier": { diff --git a/core/package.json b/core/package.json index 4fb49b87d0..baadf018f3 100644 --- a/core/package.json +++ b/core/package.json @@ -25,7 +25,7 @@ "ionicons": "4.0.0-19" }, "devDependencies": { - "@stencil/core": "0.7.27-3", + "@stencil/core": "0.8.0", "@stencil/dev-server": "latest", "@stencil/sass": "0.0.3", "@stencil/utils": "latest", diff --git a/core/src/components/datetime/readme.md b/core/src/components/datetime/readme.md index 9ea2478c68..0827123fe5 100644 --- a/core/src/components/datetime/readme.md +++ b/core/src/components/datetime/readme.md @@ -235,7 +235,7 @@ locale names for each day in the week. Defaults to English. #### dayValues -string +any Values used to create the list of selectable days. By default every day is shown for the given month. However, to control exactly which days of @@ -272,7 +272,7 @@ The text to display on the picker's "Done" button. Default: `Done`. #### hourValues -string +any Values used to create the list of selectable hours. By default the hour values range from `0` to `23` for 24-hour, or `1` to `12` for 12-hour. However, @@ -306,7 +306,7 @@ Defaults to the beginning of the year, 100 years ago from today. #### minuteValues -string +any Values used to create the list of selectable minutes. By default the mintues range from `0` to `59`. However, to control exactly which minutes to display, @@ -333,7 +333,7 @@ locale month names. Defaults to English. #### monthValues -string +any Values used to create the list of selectable months. By default the month values range from `1` to `12`. However, to control exactly which months to @@ -380,7 +380,7 @@ the value of the datetime. #### yearValues -string +any Values used to create the list of selectable years. By default the year values range between the `min` and `max` datetime inputs. However, to @@ -416,7 +416,7 @@ locale names for each day in the week. Defaults to English. #### day-values -string +any Values used to create the list of selectable days. By default every day is shown for the given month. However, to control exactly which days of @@ -453,7 +453,7 @@ The text to display on the picker's "Done" button. Default: `Done`. #### hour-values -string +any Values used to create the list of selectable hours. By default the hour values range from `0` to `23` for 24-hour, or `1` to `12` for 12-hour. However, @@ -487,7 +487,7 @@ Defaults to the beginning of the year, 100 years ago from today. #### minute-values -string +any Values used to create the list of selectable minutes. By default the mintues range from `0` to `59`. However, to control exactly which minutes to display, @@ -514,7 +514,7 @@ locale month names. Defaults to English. #### month-values -string +any Values used to create the list of selectable months. By default the month values range from `1` to `12`. However, to control exactly which months to @@ -561,7 +561,7 @@ the value of the datetime. #### year-values -string +any Values used to create the list of selectable years. By default the year values range between the `min` and `max` datetime inputs. However, to diff --git a/core/src/components/router/readme.md b/core/src/components/router/readme.md index df2e05346b..c1a102e247 100644 --- a/core/src/components/router/readme.md +++ b/core/src/components/router/readme.md @@ -139,7 +139,10 @@ By default, this property is `true`, change to `false` to allow hash-less URLs. ## Events -#### ionRouteChanged +#### ionRouteDidChange + + +#### ionRouteWillChange ## Methods diff --git a/core/src/components/split-pane/readme.md b/core/src/components/split-pane/readme.md index f44ecec11c..5fe9dd9164 100644 --- a/core/src/components/split-pane/readme.md +++ b/core/src/components/split-pane/readme.md @@ -124,7 +124,7 @@ If true, the split pane will be hidden. Defaults to `false`. #### when -string +any When the split-pane should be shown. Can be a CSS media query expression, or a shortcut expression. @@ -142,7 +142,7 @@ If true, the split pane will be hidden. Defaults to `false`. #### when -string +any When the split-pane should be shown. Can be a CSS media query expression, or a shortcut expression.