4.0.0-alpha.8

This commit is contained in:
Brandy Carney
2018-07-09 13:37:03 -04:00
parent c20bd8f10a
commit 68120deb54
8 changed files with 2292 additions and 2227 deletions

View File

@ -1,3 +1,28 @@
<a name="4.0.0-alpha.8"></a>
# [4.0.0-alpha.8](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.7...v4.0.0-alpha.8) (2018-07-09)
### Bug Fixes
* **angular:** avoid TS 2.8 features ([c736bac](https://github.com/ionic-team/ionic/commit/c736bac))
* **angular:** correct subscription to cordova ready event ([#14577](https://github.com/ionic-team/ionic/issues/14577)) ([5967352](https://github.com/ionic-team/ionic/commit/5967352))
* **bundling:** fix EventEmitter import ([8e47101](https://github.com/ionic-team/ionic/commit/8e47101))
* linting ([e629e29](https://github.com/ionic-team/ionic/commit/e629e29))
* **icon:** target element for style and add to breaking ([949d93e](https://github.com/ionic-team/ionic/commit/949d93e))
* **overlay:** make type an any ([15dc651](https://github.com/ionic-team/ionic/commit/15dc651))
* **router:** fix reuse strategy ([bd53bba](https://github.com/ionic-team/ionic/commit/bd53bba))
* **scripts:** update github release notes ([fc078af](https://github.com/ionic-team/ionic/commit/fc078af))
* **tabs:** align tab title and icons to flex-start ([c11d74b](https://github.com/ionic-team/ionic/commit/c11d74b)), closes [#14606](https://github.com/ionic-team/ionic/issues/14606)
### Features
* **all:** custom icons ([e6638e7](https://github.com/ionic-team/ionic/commit/e6638e7))
* **dir:** default to ltr css, rtl overrides w/ [dir=rtl] selectors ([fb4353c](https://github.com/ionic-team/ionic/commit/fb4353c))
* **slides:** update swiper to latest ([8e164d6](https://github.com/ionic-team/ionic/commit/8e164d6))
<a name="4.0.0-alpha.7"></a>
# [4.0.0-alpha.7](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.6...v4.0.0-alpha.7) (2018-05-17)

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "4.0.0-alpha.7",
"version": "4.0.0-alpha.8",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2428,4 +2428,4 @@
"dev": true
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "4.0.0-alpha.7",
"version": "4.0.0-alpha.8",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@ -40,7 +40,7 @@
"dist/"
],
"dependencies": {
"@ionic/core": "4.0.0-alpha.7"
"@ionic/core": "4.0.0-alpha.8"
},
"devDependencies": {
"@angular/common": "^6.0.3",

View File

@ -20,7 +20,7 @@ The Ionic Core package contains the Web Components that make up the reusable UI
Easiest way to start using Ionic Core is by adding a script tag to the CDN:
<script src="https://unpkg.com/@ionic/core@4.0.0-alpha.7/dist/ionic.js"></script>
<script src="https://unpkg.com/@ionic/core@4.0.0-alpha.8/dist/ionic.js"></script>
Any Ionic component added to the webpage will automatically load. This includes writing the component tag directly in HTML, or using JavaScript such as `document.createElement('ion-toggle')`.

4442
core/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "4.0.0-alpha.7",
"version": "4.0.0-alpha.8",
"description": "Base components for Ionic",
"keywords": [
"ionic",

View File

@ -6,6 +6,26 @@ Footer can be a wrapper for ion-toolbar to make sure the content area is sized c
<!-- Auto Generated Below -->
## Properties
#### mode
string
The mode determines which platform styles to use.
Possible values are: `"ios"` or `"md"`.
## Attributes
#### mode
string
The mode determines which platform styles to use.
Possible values are: `"ios"` or `"md"`.
----------------------------------------------

View File

@ -8,6 +8,26 @@ It's important to note that ion-header needs to be the one of the three root ele
<!-- Auto Generated Below -->
## Properties
#### mode
string
The mode determines which platform styles to use.
Possible values are: `"ios"` or `"md"`.
## Attributes
#### mode
string
The mode determines which platform styles to use.
Possible values are: `"ios"` or `"md"`.
----------------------------------------------