mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2025-12-07 13:58:53 +08:00
Fix styling
This commit is contained in:
committed by
github-actions[bot]
parent
0ae390601a
commit
81ee508b06
@@ -33,9 +33,9 @@ $useDependabot = confirm('Enable Dependabot?', true);
|
|||||||
$useLaravelRay = confirm('Use Ray for debugging?', true);
|
$useLaravelRay = confirm('Use Ray for debugging?', true);
|
||||||
$useUpdateChangelogWorkflow = confirm('Use automatic changelog updater workflow?', true);
|
$useUpdateChangelogWorkflow = confirm('Use automatic changelog updater workflow?', true);
|
||||||
|
|
||||||
$isTheme = confirm("Is this a custom theme?");
|
$isTheme = confirm('Is this a custom theme?');
|
||||||
$formsOnly = ! $isTheme && confirm("Is this for Forms only?");
|
$formsOnly = ! $isTheme && confirm('Is this for Forms only?');
|
||||||
$tablesOnly = ! $formsOnly && confirm("Is this for Tables only?");
|
$tablesOnly = ! $formsOnly && confirm('Is this for Tables only?');
|
||||||
|
|
||||||
writeln("\r");
|
writeln("\r");
|
||||||
writeln('------');
|
writeln('------');
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ namespace VendorName\Skeleton;
|
|||||||
|
|
||||||
//use Filament\Support\Assets\Js;
|
//use Filament\Support\Assets\Js;
|
||||||
//use Filament\Support\Assets\Css;
|
//use Filament\Support\Assets\Css;
|
||||||
use Filament\Support\Assets\Asset;
|
|
||||||
use Filament\PluginServiceProvider;
|
use Filament\PluginServiceProvider;
|
||||||
|
use Filament\Support\Assets\Asset;
|
||||||
use Spatie\LaravelPackageTools\Package;
|
use Spatie\LaravelPackageTools\Package;
|
||||||
//use Filament\Support\Assets\AlpineComponent;
|
//use Filament\Support\Assets\AlpineComponent;
|
||||||
use VendorName\Skeleton\Commands\SkeletonCommand;
|
use VendorName\Skeleton\Commands\SkeletonCommand;
|
||||||
@@ -53,5 +53,4 @@ class SkeletonServiceProvider extends PluginServiceProvider
|
|||||||
// Js::make('echo', __DIR__ . '/../resources/dist/skeleton.js'),
|
// Js::make('echo', __DIR__ . '/../resources/dist/skeleton.js'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace Filament;
|
namespace Filament;
|
||||||
|
|
||||||
use Filament\Context;
|
|
||||||
use Filament\Contracts\Plugin;
|
use Filament\Contracts\Plugin;
|
||||||
use Filament\Support\Assets\Theme;
|
use Filament\Support\Assets\Theme;
|
||||||
use Filament\Support\Facades\FilamentAsset;
|
use Filament\Support\Facades\FilamentAsset;
|
||||||
|
|||||||
Reference in New Issue
Block a user