Update CHANGELOG.md

This commit is contained in:
Brandy Carney
2016-01-29 11:42:01 -05:00
parent 494d0da4ce
commit f8938c63d2

View File

@ -12,6 +12,30 @@
### Breaking Changes ### Breaking Changes
* CSS may not get updated if your `ionic.config` file is not correct:
If you have the following directory structure:
```
│ ├── theme/ * App theme files
│ │ ├── app.core.scss * App Shared Sass Imports
│ │ ├── app.ios.scss * iOS Sass Imports & iOS Variables
│ │ ├── app.md.scss * MD Sass Imports & MD Variables
│ │ └── app.variables.scss * App Shared Sass Variables
```
Make sure the `ionic.config` file looks like this:
```
sass: {
src: ['app/theme/app.+(ios|md).scss'],
dest: 'www/build/css',
include: [
'node_modules/ionic-framework',
'node_modules/ionicons/dist/scss'
]
},
```
* Inputs are now placed inside of `ion-item` * Inputs are now placed inside of `ion-item`
* Inputs do not come with their own label * Inputs do not come with their own label
* `ion-item-content` has been replaced with `ion-label` * `ion-item-content` has been replaced with `ion-label`