File tree Expand file tree Collapse file tree 7 files changed +62
-8
lines changed
resources/views/components Expand file tree Collapse file tree 7 files changed +62
-8
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -771,6 +771,10 @@ const { getStartedLink } = Astro.props
771771 </h3 >
772772
773773 <div class =" pt-8 grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-3" >
774+ <a href =" https://www.agiledrop.com/laravel?utm_source=filament" target =" _blank" class =" block my-auto" >
775+ <img src =" https://github.com/filamentphp/filament/assets/41773797/2e253117-8308-4f5f-9081-aaed455a508f" alt =" Agiledrop" class =" block rounded-xl" >
776+ </a >
777+
774778 <a href =" https://sevalla.com/application-hosting/filament-php?ref=filamentphp.com" target =" _blank" class =" block my-auto" >
775779 <img src =" /images/sponsors/banners/sevalla.png" alt =" Sevalla" class =" block rounded-xl" >
776780 </a >
@@ -787,10 +791,6 @@ const { getStartedLink } = Astro.props
787791 <img src =" https://github.com/filamentphp/filament/assets/44533235/cd8be68b-59f3-4b93-8b25-f82c6f2d7864" alt =" Tapp Network" class =" block" >
788792 </a >
789793
790- <a href =" https://www.agiledrop.com/laravel?utm_source=filament" target =" _blank" class =" block my-auto" >
791- <img src =" https://github.com/filamentphp/filament/assets/41773797/2e253117-8308-4f5f-9081-aaed455a508f" alt =" Agiledrop" class =" block rounded-xl" >
792- </a >
793-
794794 <a href =" https://cleavr.io/?utm_source=filament" target =" _blank" class =" block my-auto" >
795795 <img src =" https://github.com/filamentphp/filament/assets/41773797/79b9b78f-b52b-4b32-9302-4f083dc81d73" alt =" Cleavr" class =" block rounded-xl" >
796796 </a >
Original file line number Diff line number Diff line change 11---
2- let { extras, set, version } = Astro .props ;
2+ let { extras, except, set, version } = Astro .props ;
33
44extras = (extras ?? ' ' ).split (' ||' ).filter ((extra ) => extra !== ' ' ).map ((extra ) => {
55 const [name, type, parameter, description] = extra .split (' ;;' )
@@ -432,6 +432,9 @@ let utilities = [
432432// Remove duplicate utilities with the same parameter and preserve the last utility, allowing for overrides.
433433utilities = Array .from (new Map (utilities .map ((utility ) => [utility .parameter , utility ])).values ())
434434
435+ // Remove utilities that are in the except list.
436+ utilities = utilities .filter ((utility ) => ! (except ?? ' ' ).split (' ||' ).includes (utility .parameter ))
437+
435438const link = {
436439 actions: ` /docs/${version }/actions/overview#action-utility-injection ` ,
437440 actionGroups: ` /docs/${version }/actions/overview#action-utility-injection ` ,
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ class="col-span-full flex flex-wrap justify-around gap-x-10 gap-y-12 text-dolphi
99 >
1010 <x-sponsors .kirschbaum footer />
1111
12+ <x-sponsors .agiledrop footer />
13+
1214 <x-sponsors .baiz footer />
1315
1416 <x-sponsors .cms-max footer />
Original file line number Diff line number Diff line change @@ -285,6 +285,8 @@ class="col-span-full flex flex-wrap justify-around gap-x-10 gap-y-12"
285285 >
286286 <x-sponsors .kirschbaum />
287287
288+ <x-sponsors .agiledrop />
289+
288290 <x-sponsors .baiz />
289291
290292 <x-sponsors .cms-max />
@@ -305,8 +307,6 @@ class="col-span-full flex flex-wrap justify-around gap-x-10 gap-y-12"
305307
306308 <x-sponsors .tapp-network />
307309
308- <x-sponsors .agiledrop />
309-
310310 <x-sponsors .cleavr />
311311
312312 <x-sponsors .codecourse />
Original file line number Diff line number Diff line change 1+ @props ([
2+ ' footer' => false ,
3+ ] )
4+
15<a
26 class =" grid place-items-center transition duration-300 will-change-transform hover:scale-110 motion-reduce:transition-none motion-reduce:hover:transform-none"
37 href =" https://www.agiledrop.com/laravel?utm_source=filament"
48 target =" _blank"
59 title =" Agiledrop"
610>
711 <svg
8- class =" mt-2 h-9 w-auto fill-current"
12+ @class ([
13+ ' mt-2 w-auto fill-current' ,
14+ ' h-8' => $footer ,
15+ ' h-12' => ! $footer ,
16+ ] )
917 viewBox =" 0 0 480 141"
1018 >
1119 <path
You can’t perform that action at this time.
0 commit comments