diff --git a/CHANGELOG.md b/CHANGELOG.md index 4260b533..ff8faf11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# [1.0.0-rc.0](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/1.0.0-beta.2...1.0.0-rc.0) (2019-09-16) + +### Bug Fixes + +* **carousel:** fix carousel ignore vertical event when set left or right direction ([#581](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/581)) ([abb3a0a](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/abb3a0a)) + +* **carousel:** fix carousel style int other content error ([#582](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/582)) ([004e4e0](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/004e4e0)) + +* **toast:** fix toast z-index ([#580](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/580)) ([7350600](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/7350600)) + +* **steps:** fix steps status icon ([#577](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/577)) ([fef7568](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/fef7568)) + +* **accordion:** fix accordion not automatic expand bug ([#575](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/575)) ([19b90da](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/19b90da)) + +* **pull-to-refresh:** fix pull-to-refresh not work bug ([#573](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/573)) ([6df7d7c](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/6df7d7c)) + +* **textarea-item:** fix textarea-item autoheight issues([#571](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/571)) ([5aa3149](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/5aa3149)) + +* **swipe-action:** fix swipe-action not work in ionic bug ([#569](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/569)) ([f2d1600](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/f2d1600)) + # [1.0.0-beta.2](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/1.0.0-beta.1...1.0.0-beta.2) (2019-09-05) ### Bug Fixes @@ -8,7 +28,7 @@ * **codebox:** fix stackblitz package dependencies error ([#561](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/561)) ([61dcc28](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/61dcc28)) -* **codebox:** fix copy code error error ([#560](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/560)) ([630f63c](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/630f63c)) +* **codebox:** fix copy code error ([#560](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/560)) ([630f63c](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/630f63c)) * **codebox:** fix rawCode convert bug ([#558](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/558)) ([ddb89cb](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/ddb89cb)) diff --git a/components/accordion/accordion.component.ts b/components/accordion/accordion.component.ts index e841dfb3..bdefadd9 100644 --- a/components/accordion/accordion.component.ts +++ b/components/accordion/accordion.component.ts @@ -75,7 +75,7 @@ export class AccordionComponent implements AfterContentInit, OnDestroy, OnChange init() { if (this.expandAll && this.groups && this.groups.length > 0) { this._oldGroups = this.groups.toArray(); - this._oldGroups.forEach((group) => { + this._oldGroups.forEach(group => { group.openOnInitialization(); }); this._subscription = this.groups.changes.subscribe(change => { diff --git a/components/accordion/demo/basic.ts b/components/accordion/demo/basic.ts index ddddd70f..8a15750f 100644 --- a/components/accordion/demo/basic.ts +++ b/components/accordion/demo/basic.ts @@ -23,7 +23,7 @@ import { Component, ViewChild, AfterViewInit, OnInit } from '@angular/core'; ` }) export class DemoAccordionBasicComponent implements OnInit { - @ViewChild('title1', {static: true}) title1: ViewChild; + @ViewChild('title1', { static: true }) title1: ViewChild; accordions: Array = []; activeKey = [0, 1]; diff --git a/components/package.json b/components/package.json index a9c24968..e041ce9e 100644 --- a/components/package.json +++ b/components/package.json @@ -1,6 +1,6 @@ { "name": "ng-zorro-antd-mobile", - "version": "1.0.0-beta.2", + "version": "1.0.0-rc.0", "description": "An enterprise-class mobile UI components based on Ant Design and Angular", "schematics": "./schematics/collection.json", "keywords": [ diff --git a/components/pull-to-refresh/pull-to-refresh.component.html b/components/pull-to-refresh/pull-to-refresh.component.html index ff929a0a..b9b1e60d 100644 --- a/components/pull-to-refresh/pull-to-refresh.component.html +++ b/components/pull-to-refresh/pull-to-refresh.component.html @@ -1,9 +1,6 @@
-
+
-