diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2abc3d4b50..8f776ac79b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+
+# [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)
+
+
+
# [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)
diff --git a/angular/package.json b/angular/package.json
index 87dd9fde85..ea69319788 100644
--- a/angular/package.json
+++ b/angular/package.json
@@ -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",
diff --git a/angular/src/directives/proxies.ts b/angular/src/directives/proxies.ts
index 4d5d00da37..20b7c6644b 100644
--- a/angular/src/directives/proxies.ts
+++ b/angular/src/directives/proxies.ts
@@ -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: '', inputs: ['lines', 'inset'] })
+@Component({ selector: 'ion-list', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '', 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']);
}
}
diff --git a/core/README.md b/core/README.md
index 1feca8e5e8..d0ec032a9d 100644
--- a/core/README.md
+++ b/core/README.md
@@ -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
-
-
+
+
```
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')`.
diff --git a/core/package.json b/core/package.json
index 1716fb8dc9..fe167a3ae4 100644
--- a/core/package.json
+++ b/core/package.json
@@ -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",