Ryan Chandler
Ryan Chandler
Yeah this is a good question. It should really be moved to a dependency rather than a dev dependency, yes. The `main` entry in the package.json file should also be...
These changes have been made. Tippy.js is now a dependency on this package, the `main` entry also points to the raw source code to allow compilation with source & accompanying...
I really need to get the auto-update script running again ðŸ«
This is functional, it just needs some design love from @filamentphp/design.
@danharrin Yep, it's on my todo list!
I'm not sure a `Heroicon` abstraction is the right thing... a more generic `Icon` abstraction might make more sense, then Filament can provide a `Heroicon` implementation of `Icon`.
> @ryangjchandler Any BackedEnum should work I think Yeah or a BackedEnum, depends on whether you want to have any methods for doing things like default size etc.
We could generate the enums with some codegen, that wouldn't be too difficult. We could also add a small script to the support package or something to let users generate...
@tembra This would still be a breaking change unfortunately, since inherited property types are "invariant", which means the type cannot change during inheritance. Adding a new type to the union...
The difference in speed is likely due to converting between PHP types (`Zval`) and Rust types such as `String`, `Vec`, etc.