Skip to content

3.3.0

Compare
Choose a tag to compare
@danbucholtz danbucholtz released this 24 May 14:49

3.3.0 (2017-05-24)

Steps to Upgrade

ionic-angular now supports the latest @angular (4.1.2), and typescript (2.3.3) versions. Feel free to update apps by updating the package.json dependencies to match below:

"dependencies": {
  "@angular/common": "4.1.2",
  "@angular/compiler": "4.1.2",
  "@angular/compiler-cli": "4.1.2",
  "@angular/core": "4.1.2",
  "@angular/forms": "4.1.2",
  "@angular/http": "4.1.2",
  "@angular/platform-browser": "4.1.2",
  "@angular/platform-browser-dynamic": "4.1.2",
  "@ionic-native/core": "3.6.1",
  "@ionic-native/splash-screen": "3.6.1",
  "@ionic-native/status-bar": "3.6.1",
  "@ionic/storage": "2.0.1",
  "ionic-angular": "3.3.0",
  "ionicons": "3.0.0",
  "rxjs": "5.1.1",
  "sw-toolbox": "3.6.0",
  "zone.js": "0.8.10"
},
"devDependencies": {
  "@ionic/app-scripts": "1.3.7",
  "typescript": "2.3.3"
}

Another optional step is to remove the src/declarations.d.ts file. This is a legacy file introduced early with ionic-angular projects to improve compatibility between TypeScript and third-party libraries. Due to improvements in TypeScript, this file is no longer necessary. By removing this file, the TypeScript compiler will be able to provide more accurate error messages for import statements.

Bug Fixes

Features

  • icon: add flip/unflip for icon on rtl (#11634) (7bdfaac)
  • rtl: add rtl margin, padding, position and border-radius (#11342) (a30379b)