Boris Kaul
Boris Kaul
Hi, sorry for the delayed response. If you want, I can transfer this repository and npm package to you, so you can properly maintain it.
I don't think that it is possible to find a nice solution for snapshot testing without rewriting Karma, so as long as it is working and solves the problem it...
Yes, [liquid](http://github.com/localvoid/liquid) is now deprecated. This library have significantly smaller codebase and it is much easier to understand. No more magic like `@property()`, data(props in React terms) is just passed...
There should be a better way to test, but right now [this](https://github.com/localvoid/uix_example_tests/blob/master/test/test_basic.dart) is the easiest way to test. It didn't worked in liquid, because in liquid `injectComponent` injects component on...
@Janamou I am not sure, I don't use it in any project right now, tomorrow I'll start writing real application using this library :) Build step probably will be removed...
@Scorpiion Thanks, done.
@sethladd I am not sure what to write in their issues list, except that I'll be a happy user of that feature :) I have a simple use case `type.new()`...
Here is a simple example with input elements: ``` dart import 'dart:html' as html; import 'package:liquid/liquid.dart'; import 'package:liquid/vdom.dart' as v; class ExampleComponent extends Component { String _inputValue = ''; String...
I don't know any good way to make it "isomorphic" in Dart right now, but I've removed comment that it won't be isomorphic in the future. If Dart introduces something...
I agree that transformers is a terrible idea. I like clean's API, but how much performance and features we can sacrifice to make all this magic behind such API. For...