Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

Was:

```
```html
<ion-input>
<ion-label>Email</ion-label>
<input type="email">
Expand All @@ -37,7 +37,7 @@ Was:

Now:

```
```html
<ion-item>
<ion-label>Email</ion-label>
<ion-input type="email"></ion-input>
Expand All @@ -55,15 +55,15 @@ Now:

Was:

```
```html
<ion-checkbox [(ngModel)]="data">
My Checkbox
</ion-checkbox>
```

Now:

```
```html
<ion-item>
<ion-label>My Checkbox</ion-label>
<ion-checkbox [(ngModel)]="data"></ion-checkbox>
Expand All @@ -75,7 +75,7 @@ Now:

Was:

```
```html
<ion-list radio-group [(ngModel)]="data">

<ion-list-header>
Expand All @@ -99,7 +99,7 @@ Was:

Now:

```
```html
<ion-list radio-group [(ngModel)]="data">

<ion-list-header>
Expand Down Expand Up @@ -129,7 +129,7 @@ Now:

Was:

```
```html
<ion-select [(ngModel)]="gender">
<ion-label>Gender</ion-label>
<ion-option value="f" checked="true">Female</ion-option>
Expand All @@ -139,7 +139,7 @@ Was:

Now:

```
```html
<ion-item>
<ion-label>Gender</ion-label>
<ion-select [(ngModel)]="gender">
Expand All @@ -154,15 +154,15 @@ Now:

Was:

```
```html
<ion-toggle [(ngModel)]="data">
My Toggle
</ion-toggle>
```

Now:

```
```html
<ion-item>
<ion-label>My Toggle</ion-label>
<ion-toggle [(ngModel)]="data"></ion-toggle>
Expand All @@ -174,7 +174,7 @@ Now:

Was:

```
```html
<ion-input fixed-label>
<ion-label>Username</ion-label>
<input type="text">
Expand All @@ -188,7 +188,7 @@ Was:

Now:

```
```html
<ion-input>
<ion-label fixed>Username</ion-label>
<ion-input></ion-input>
Expand Down Expand Up @@ -225,7 +225,7 @@ Now:
* Install ionicons (this will be added in the starters): `npm install --save ionicons`
* Modify the sass `include` in your `ionic.config.js` file:

```
```js
sass: {
src: ['app/theme/app.+(ios|md).scss'],
dest: 'www/build/css',
Expand All @@ -238,7 +238,7 @@ Now:

* Modify the fonts `src` in your `ionic.config.js` file:

```
```js
fonts: {
src: ['node_modules/ionic-framework/fonts/**/*.+(ttf|woff|woff2)'],
dest: "www/build/fonts"
Expand Down Expand Up @@ -293,7 +293,7 @@ Now:

Was:

```
```js
import {Popup} from 'ionic/ionic';

@Page(...)
Expand All @@ -312,7 +312,7 @@ class MyPage {

Now:

```
```js
import {Alert, NavController} from 'ionic/ionic';

@Page(...)
Expand All @@ -336,7 +336,7 @@ class MyPage {

Was:

```
```js
import {Popup} from 'ionic/ionic';

@Page(...)
Expand All @@ -362,7 +362,7 @@ class MyPage {

Now:

```
```js
import {Alert, NavController} from 'ionic/ionic';

@Page(...)
Expand Down Expand Up @@ -400,7 +400,7 @@ class MyPage {

Was:

```
```js
import {Popup} from 'ionic/ionic';

@Page(...)
Expand All @@ -426,7 +426,7 @@ class MyPage {

Now:

```
```js
import {Alert, NavController} from 'ionic/ionic';

@Page(...)
Expand Down Expand Up @@ -469,7 +469,7 @@ class MyPage {

Was:

```
```js
import {ActionSheet} from 'ionic/ionic';

@Page(...)
Expand Down Expand Up @@ -507,7 +507,7 @@ class MyPage {

Now:

```
```js
import {ActionSheet, NavController} from 'ionic/ionic';

@Page(...)
Expand Down Expand Up @@ -551,7 +551,7 @@ class MyPage {

Was:

```
```js
import {Modal} from 'ionic/ionic';

@Page(...)
Expand All @@ -570,7 +570,7 @@ class MyApp {

Now:

```
```js
import {Modal, NavController} from 'ionic/ionic';

@Page(...)
Expand Down Expand Up @@ -660,7 +660,7 @@ class MyPage {
4. Remove the Sass imports in JS files
5. Update css reference in index.html (remove build/css/app.css if it exists)

```
```html
<link ios-href="build/css/app.ios.css" rel="stylesheet">
<link md-href="build/css/app.md.css" rel="stylesheet">
```
Expand Down