-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE11 support when updating project from NG 7.2.2 to NG 9.1.12 #466
Comments
I went through and upgraded the whole library to support 9+ without changing any API that I remember. So yes, you need to swap the import completely and then rename the component to: |
that is super awesome. thanks dude. I will make this change and double check |
So after an update I did run into issues on my 9.1.12 project - here is the error log.
is this related to the peer dependency requirement of min 10.0.6? so 9.x+ is not currently supported? |
I haven't tried 9.x but I believe it should work. Could you try the suggested solutions here like
https://stackoverflow.com/questions/61222467/angular-9-ngcc-fails-with-an-unhandled-exception |
I went through and tried some things. The I created a base NG@9 app with only the I wonder what changed from https://github.com/kylebradshaw/bootrap-multiselect Thanks a ton. |
Ok, it seems the error is caused by compiling to es2015 which IE11 does not have. What changed in the updated component is probably dropping es5 support. |
@kylebradshaw were you able to find a solution? |
Unfortunately I could never get the new library to compile to es5 so I had to rollback to angular2-multiselect for now. Still need to support ie11 on this project |
Something to be aware of in lib maybe worth documenting In the readme? |
It looks like this project is the current iteration of https://www.npmjs.com/package/angular-2-dropdown-multiselect (no active development) which was used in 7.2.2 - I was able to update to 8.2.x without a problem, cheers!
However, upgrading from 8.2.x to 9.1.12 is showing issues. I wanted to ask - should I swap out
"angular-2-dropdown-multiselect": "1.9.0", for
"ngx-bootrap-multiselect": "2.0.0" ?
the composition looks similar but was there any migration documentation or anything? just wondering if the API's are drastically different.
lmk, thanks! 🍻
The text was updated successfully, but these errors were encountered: