This repository has been archived by the owner on May 14, 2020. It is now read-only.
Releases: ribizli/ng2-imageupload
Releases · ribizli/ng2-imageupload
1.4.2
1.4.1
1.4.0
Breaking changes
- Peer dependency: Angular 4.0.0
- directive renamed to
imageUpload
- resize algorithm changed: ensure resized image fits into the specified maximal width and height
Fixes
- Cannot upload files with extensions like JPG, pnG, Gif using ['jpg', 'png', 'gif'] allowed extensions array #16
1.3.1
1.3.0
1.2.2
1.2.1
Angular2 RC5 Support
1.2.0 fix #2: upgrade to rc5
1.1.1
1.1.0
Changes
- angular2 RC.1
- restructured package
BREAKING CHANGES
Use import {ImageUpload} from 'ng-imageupload'
, since the main file is now index.js
.
System.js configuration needs main
specified for the package:
System.config({
packages: {
'ng2-imageupload': {
main: 'index.js',
defaultExtension: 'js'
}
},
map: {
'ng2-imageupload': 'node_modules/ng2-imageupload'
}
});