bigopon
bigopon
# 🙋 Feature Request An uncommon, though not rare request we often got is the ability to dynamically switch the tag of some element. A most common example of this...
# 🙋 Feature Request At the moment, many important pieces of the JS syntaxes are supported in our template, except `else if` in `if/else if/else` combo. With `link`, it seems...
# 🙋 Feature Request At the moment, `` does not provides a way to toggle between its content coming from projection or fallback , when the content from projection has...
# 🙋 Feature Request At the moment, the process content hooks is limited to only 2 parameters: `node` which is the host element of a custom element, and platform, which...
say we have a component wrapping a button: ```ts @customElement({ name: 'at-button', containerless: true, template: '${text}' }) class AtButton {} ``` So that when a user writes: ```html app.html ```...
# 💬 RFC ## 🔦 Context In v2, our binding system becomes synchronous. While there are many benefits, there' also cons: - v1 user surprises: in v1, change notification is...
# 🙋 Feature Request At the moment, attr syntax does not allow reuse, or support multiple parts. An example of this is the following: ```html or or ``` With attr...
Placeholder for porting UI virtualization over https://github.com/aurelia/ui-virtualization
Thanks to `@edwrd01` on Discourse at https://discourse.aurelia.io/t/issue-using-ref-in-a-repeat-for-with-a-value-converter/2328/5 , we uncover an issue related the combination of `ref` binding, `repeat` and `value-converter/binding-behavior`. The issue is due to `repeat` custom attribute unable...
https://github.com/aurelia/dialog/blob/0d35c2d3c5d54514715ab01014817e3e10990d2b/src/attach-focus.ts#L18 The above line should be ```js if (this.value === '' || this.value && this.value !== 'false') { ``` I think we should make `attach-focus` boolean attribute for the following...