keasy9

Results 9 issues of keasy9

It will be usefull to generate css, less or any other stylesheet for sprites, for e.g.: ``` icon--arrow { width: 32px; height: 64px; } ``` where width and height based...

When using hidden input in rows layout additional gap adds around it because this layout has flex container with gap and input has not hidden container. Reproducing: ``` Input::make('some-data')->hidden(), Input::make('like-id')->hidden(),...

Errors

For now is cool that phaser can be used for pixel art games with only one config options (pixelArt: true). But there is juttering that becomes more noticeable when the...

For now there is nice api with world.createBody(), but there is no _typed_ way to create custom body classes and add it to the world. When I say _typed_ I...

If model field casted as enum class, e.g.: ```php protected $casts = [ 'user_type' => UserTypeEnum::class, ]; ``` and select field is used to edit it: ```php Select::make('user_type')->options( collect(UserTypeEnum::cases()) ->mapWithKeys(fn($case)...

Errors

It seems to be impossible to make Relation field nullable (not non-required). If I selected value in it once, there is no way to clear it, even if field not...

Errors

First, thank you for really convinent api and many usefull features! ### Context I'm making simple galaxy shooter game with exalibur, where enemies have different textures, based on a parameter...

feature

When I making pool and getting object from it first time, object constructor called twice. Minimal reproducing example: ```ts import {Actor, Pool} from 'excalibur'; class TestActor extends Actor { constructor()...

bug

Awesome project! I wanna translate its docs. As a native russian speaker, I can translate this project docs into russian. I could also try generating translations into other popular languages...