This is amazing !!!!
I had my <select-ou> polymer element inside a library. It's very useful for better organization and for a simple import paths.
Instead of import '../../.../ous/ous.html'; you can make import 'package:my_lib/ous/ous.html';
If i move the <select-ou> element inside the web project folder, everything works perfectly, data-binding works and onPropertyChanged events are invoked. However having the <select-ou> element in a separate library, although this library is located in the same project, onPropertyChanged events are never invoked.
I think this breaks the encapsulation and reusable polymer concepts.
Any ideas to solve this problem?
Thanks in advance.