bigopon
bigopon
At the moment, hegel throws at the following: ```ts // fails with: the type "0" is incompatible with "100" // numbers0 type is Array const numbers0 = Array(100).fill(0); // fails...
## Context Currently, in the template, if one wants to acces `JSON`/`Date`/`Math` (commonly used global properties), the dev needs to have the property available in either: - binding context (view...
With the PR #1487 merged, we can now specify a function to filter what attribute **should be capture**: ```ts capture: attr => attr !== 'class' ``` An issue with this...
# Pull Request ## 📖 Description Better handle repeat items replacement for immutable scenarios & race condition ### 🎫 Issues Resolves #1264 ## 📑 Test Plan Existing repeat tests work...
# Pull Request ## 📖 Description Add an observable plugin, primarily targeted at rxjs https://rxjs.dev/ Usage: ```ts import Aurelia from 'aurelia'; import { ObservableConfiguration } from '@aurelia/observable' Aurelia.register(ObservableConfiguration).app(MyApp).start(); ``` A...
# Pull Request ## 📖 Description Add support for `??` in the expression parser, and template. Now it's possible to do this ```html ``` An issue with Aurelia expression behavior...
# 💬 RFC ## 🔦 Context Currently, for an expression like this ```html ``` When a click happens on the button, `myArray[0]` is assigned `event.target` value, similar to the following...
From a number of occasions that folks asked similar questions related to attributes, properties & relevant bits in binding, it's necessary to add the following missing parts to the doc:...
With #1226 , it is now easy to exclude error message from production build for applications. This ticket is a placeholder to track all the replacement. Every replacement should come...
Context: in the Discourse thread at https://discourse.aurelia.io/t/lazy-load-global-custom-elements/1627 , it seems desirable to have a way to automatically delay the compilation of a template until a resource has been loaded. This...