Kevin Leung
                                            Kevin Leung
                                        
                                    I found myself writing the same query such as `db.user.where(user.id == id).first()` again and again. I wonder if it is possible to extend the generated table and add methods like...
In `tests/Db.hx`: add `import Db.User as DbUser;` then change any `Id` to `Id` then it fails with `Type not found : _Db.Db` I think there are similar thing in `tink_json`/`tink_web`...
Was caught by ` Class has no field fromEncodedBytes` But since [`fromEncodedBytes` does exist in Kore](https://github.com/Kode/Kha/blob/094fa8e/Backends/Kore/kha/Image.hx#L94), I think Krom should also expose the method cc @robdangerous
```haxe package; import haxe.ui.*; import haxe.ui.core.*; import haxe.ui.components.*; import haxe.ui.containers.*; class Main extends hxd.App { static function main() { new Main(); } override function init() { hxd.Res.initEmbed(); Toolkit.init({app: this}); var...
```haxe package; import haxe.ui.*; import haxe.ui.core.*; import haxe.ui.containers.*; class Main extends hxd.App { static function main() { new Main(); } override function init() { Toolkit.init({app: this}); var vbox = new...
``` haxe class Main { static function main() { foo({}); } static function foo(data:{?strings:Array}) { var ref:References = data.strings; trace(ref); } } @:forward abstract References(Array) from Array { @:from public...
**Describe the bug** In the code below, all occurrences of `v1` and `v2` are inferred as `string | undefined` but in fact they should be `string` because the undefined cases...
#### Describe the bug The edit handle circles (or icons) are not rendered. Reason: This [commit](https://github.com/visgl/deck.gl/commit/9d0e5680eee70de003468647b703f89ccd17a041) changed the sublayer name from `points` to `points-circle`, `points-icon`, etc
This is due to a bug which is already fixed upstream, see: https://github.com/Turfjs/turf/commit/de640066b8ae8c274e9b5c6b78839b972ced8263#diff-c6bf1e0676ca3aa8e5b4be83c45a17b29bcd63a18caa404ac1ddb85004257896 Solution: Update @turf/centroid to latest version (6.5.x)