bigopon
bigopon
I think one aspect of this we should ... bikeshed is syntax. What about using some special character to signal event, instead of `;`? ```html ```
```html ``` We will have to avoid any kind of `on...` attribute, because of the high chance of collision with standard `on` attribute: ```html ```
@PrinceLune I think this is where we need to find the balance. Leaving it handled by developers will create a hole in developer experience evident per the feature requests/questions around...
@PrinceLune Aurelia binding & observation system works by connecting only the relevant parts of views and view models together. For that, updating view model will result in a precise view...
What about the concern related to regexp above: > it would be quite hard to express filtering with RegExp Say we want to capture all attribute except `class` and `validation-error`...
This is done-ish. If we have any other request here for a higher level/more flexible API around this, it can be a new issue.
Accessing `myCompose.viewModel` means accessing the **bindable** property `viewModel`, which normally is a constructor. I guess this is a documentation issue, where it is not clear how to access the the...
At the moment, we already have the short hand `` working. `:value` could be enhance to make it work if needed. We just need to transfer more power from the...
What we could consider further, is to apply the same shorthand for normal bindings as well: ```html ``` Is it good to enable: ```html ```
If we are to allow shorthand everywhere, what should we do with the special case: ```html ``` because `colspan` attribute is mapped to `colSpan` property, should the above binding be...