4.0.0-beta.7

This commit is contained in:
Manu Mtz.-Almeida
2018-08-30 19:12:15 +02:00
parent f4807d1198
commit db1dbd40c2
5 changed files with 21 additions and 7 deletions

View File

@ -1,3 +1,16 @@
<a name="4.0.0-beta.7"></a>
# [4.0.0-beta.7](https://github.com/ionic-team/ionic/compare/v4.0.0-beta.6...v4.0.0-beta.7) (2018-08-30)
### Bug Fixes
* **list:** add closeSlidingItems() ([81fbbb8](https://github.com/ionic-team/ionic/commit/81fbbb8)), closes [#15378](https://github.com/ionic-team/ionic/issues/15378)
* **menu:** await animation check ([f00db59](https://github.com/ionic-team/ionic/commit/f00db59)), closes [#15377](https://github.com/ionic-team/ionic/issues/15377)
* **range:** add and document custom properties ([cf35445](https://github.com/ionic-team/ionic/commit/cf35445)), closes [#14850](https://github.com/ionic-team/ionic/issues/14850) [#14808](https://github.com/ionic-team/ionic/issues/14808)
* **slides:** isEnd() returns a boolean ([771c517](https://github.com/ionic-team/ionic/commit/771c517)), closes [#15376](https://github.com/ionic-team/ionic/issues/15376)
<a name="4.0.0-beta.6"></a>
# [4.0.0-beta.6](https://github.com/ionic-team/ionic/compare/v4.0.0-beta.5...v4.0.0-beta.6) (2018-08-29)

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "4.0.0-beta.6",
"version": "4.0.0-beta.7",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@ -43,7 +43,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "4.0.0-beta.6"
"@ionic/core": "4.0.0-beta.7"
},
"devDependencies": {
"@angular/common": "^6.1.0",

View File

@ -436,12 +436,13 @@ export class Label {
}
export declare interface List extends StencilComponents<'IonList'> {}
@Component({ selector: 'ion-list', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['lines', 'inset'] })
@Component({ selector: 'ion-list', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['mode', 'lines', 'inset'] })
export class List {
constructor(r: ElementRef) {
const el = r.nativeElement;
proxyInputs(this, el, ['lines', 'inset']);
proxyMethods(this, el, ['closeSlidingItems']);
proxyInputs(this, el, ['mode', 'lines', 'inset']);
}
}

View File

@ -23,8 +23,8 @@ 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:
```html
<link href="https://unpkg.com/@ionic/core@4.0.0-beta.6/css/ionic.bundle.css" rel="stylesheet">
<script src="https://unpkg.com/@ionic/core@4.0.0-beta.6/dist/ionic.js"></script>
<link href="https://unpkg.com/@ionic/core@4.0.0-beta.7/css/ionic.bundle.css" rel="stylesheet">
<script src="https://unpkg.com/@ionic/core@4.0.0-beta.7/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')`.

View File

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