IE 11 support?
See original GitHub issueIE 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
set properties(properties: FormProperty[] | { [key: string]: FormProperty }) {
/**
* Override the setter to add an observer that notices when an item is added or removed.
*/
this._properties = new Proxy(properties, this._propertyProxyHandler);
}
and there is no Proxy Polyfill for IE11.
Any thoughts on this?
Issue Analytics
- State:
- Created 3 years ago
- Comments:9
Top Results From Across the Web
Internet Explorer 11 - Microsoft Lifecycle
The Internet Explorer (IE) 11 desktop application ended support for Windows 10 semi-annual channel on June 15, 2022. Customers are encouraged to move...
Read more >Internet Explorer 11 has retired and is officially out of support ...
After 25+ years of helping people use and experience the web, Internet Explorer (IE) is officially retired and out of support as of...
Read more >Internet Explorer 11 End of Life - Lansweeper.com
Internet Explorer 11 is going end of life on June 15, 2022. Meaning that for most Windows versions, using Internet Explorer 11 won't...
Read more >Internet Explorer 11 - Wikipedia
The exception to this is the Windows 10 Semi-Annual Channel (SAC). For SAC versions of Windows 10, Internet Explorer 11 support ended on...
Read more >IE11 end of support countdown
Sources before May 19th 2021 · Support for older versions of Internet Explorer ended · Windows 10 product lifecycle · IE11 Mainstream End...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @rodrigo-vizbelis could you try this version I build here: ngx-schema-form-2.5.7-beta.1.tgz.zip
Just extract the ZIP file somewhere and install via path like
$ npm install ./myfolder/ngx-schema-form-2.5.7-beta.1.tgz
@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 😦