Adding AOT compatibility. For users that got errors related to function calls occurring in decorators, this was due to the inline editor module decorator being compiled as a function, preventing the module from being usable in AOT. Resolved by using the Angular compiler to do the library compilation instead of tsc. Additionally, there were other issues that needed to be resolved for AOT compatibility, specifically a lot of variables needed to be made public to be accessible to the template. FWIW, the library can be compiled and used just using the compile script, since html and css get packed in.
Lastly, there was a minor fix for the number editor. (It was broken in the demo due to using string comparison instead of numeric comparison.)
Adding AOT compatibility. For users that got errors related to function calls occurring in decorators, this was due to the inline editor module decorator being compiled as a function, preventing the module from being usable in AOT. Resolved by using the Angular compiler to do the library compilation instead of tsc. Additionally, there were other issues that needed to be resolved for AOT compatibility, specifically a lot of variables needed to be made public to be accessible to the template. FWIW, the library can be compiled and used just using the compile script, since html and css get packed in.
Lastly, there was a minor fix for the number editor. (It was broken in the demo due to using string comparison instead of numeric comparison.)
fixes #1 fixes #3