-
Notifications
You must be signed in to change notification settings - Fork 173
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
IE 11 support? #326
Comments
Sorry, but currently, we have no plan about IE11 support. |
@Jcomper - Are you planning yo create PR ? My angular app also does not compile in IE 11 because of JEXL not providing es5 transpiled code. |
Jexl ES5 support pull request is already there: A Proxy polyfill is also provided by Google: |
Jexl ES5 support pull request has been merged and released as version 2.3.0 To build for IE11
your are ready to go |
Hi @daniele-pecora . I tried your suggested solution but it doesn't work with latest ngx-schema-form@2.5.7 and also ngx-schema-form@2.5.0 IE11 error messages:
|
Hi @rodrigo-vizbelis could you try this version I build here: Just extract the ZIP file somewhere and install via path like |
@daniele-pecora ExtendedProxyHandler changes solves issue about proxy polyfill unsupported traps. Here is a stack trace from new IE11 issue:
Error comes from ObjectProperty class line 55:
It seems that this issue is related to proxy polyfill because i can't reproduce it after removing Proxy object usage from FormProperty class. |
The GoogleChrome/proxy-polyfill does make the wrapped object immutable by calling As I see there is another proxy polyfill out there: es6-proxy-polyfill which does not Would you like try it out? |
@daniele-pecora I think the label on the issue is misleading. Maybe remove it? I was trying to play with polyfills, but didn't manage to make it working. So rolled back to 2.3.2 :( |
IE 11 is not supported as far as I can tell.
Dependency jexl is using ES6 class syntax, after transpiling it to ES5 I faced a problem that Proxy object is used in formproperty.ts
and there is no Proxy Polyfill for IE11.
Any thoughts on this?
The text was updated successfully, but these errors were encountered: