nova-global-filter icon indicating copy to clipboard operation
nova-global-filter copied to clipboard

Nova 4 Update

Open ali-raza-saleem opened this issue 1 year ago • 5 comments

ali-raza-saleem avatar Jul 23 '22 17:07 ali-raza-saleem

The following error occurs on fresh nova install because of a missing lodash dependency in package.json, blocking the dashboard card's loading.

Capture d’écran 2022-07-29 à 13 23 33

This error is not triggered if a custom tool is already installing the lodash dependency.

It seems Nova is no longer providing lodash out of the box : https://github.com/laravel/nova-issues/discussions/3814#discussioncomment-2509234

WillyReyno avatar Jul 29 '22 11:07 WillyReyno

Hello, some issue about the CSS, the component can't trigger the dark mode in Nova, stay in light.

Capture d’écran 2022-07-29 à 17 12 50

ValentinGaudin avatar Jul 29 '22 15:07 ValentinGaudin

Sorry guys, i don't have Nova 4 license to work on it. I wish i implemented this package with some tests but unfortunately i didn't. I will try to come back to this package at some point to upgrade.

MuzafferDede avatar Aug 08 '22 14:08 MuzafferDede

I forked this as well for nova 4, I did some styling changed, how do I re-compile? thanks!

luciantugui avatar Aug 09 '22 13:08 luciantugui

I forked this as well for nova 4, I did some styling changed, how do I re-compile? thanks!

You can add your own style sheet in the NovaServiceProvider

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot(): void
    {
        parent::boot();

        Nova::style('white-block', public_path('./style/app.css'));
    }

ValentinGaudin avatar Aug 09 '22 16:08 ValentinGaudin