Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/vendor/bladewind/css/bladewind-ui.min.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions resources/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@
*::-webkit-scrollbar-thumb { border-radius: 999px; background: #cbd5e1; }
.dark *::-webkit-scrollbar-thumb { background: rgba(71,85,105,.65); }
body { font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important; }
.pre-font { font-family: 'Anonymous Pro', monospace !important; }
pre { @apply !my-7 overflow-x-auto !rounded-2xl !bg-[#0b1020] !text-sm shadow-lg shadow-slate-950/5 dark:!bg-slate-950 dark:shadow-none; }
/*.pre-font { font-family: 'Anonymous Pro', monospace !important; }*/
/*pre { @apply !rounded-2xl !bg-[#0b1020] !text-sm dark:!bg-slate-950 dark:shadow-none; } !*!my-7 overflow-x-auto*!*/
code.inline { @apply mb-1 mr-1 inline-block rounded-md border border-slate-200 bg-slate-100 px-2 py-0.5 text-[13px] font-medium text-slate-700 dark:border-slate-700 dark:bg-slate-800 dark:text-slate-300; }
code.text-red-500 { @apply dark:text-red-300; }
.bw-code-block { @apply mt-6 }
}

@layer components {
Expand Down
1 change: 0 additions & 1 deletion resources/views/docs/button.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
<p>The secondary buttons depend on the secondary colour defined in your project's <code class="inline">tailwind.config.js</code>. <a href="/customize/colours">Please ensure</a> this is defined. </p>
<div class="text-center space-y-4 space-x-4">
<x-bladewind::button type="secondary">Secondary Button</x-bladewind::button>
<x-bladewind::button type="secondary" outline="true">Secondary Button</x-bladewind::button>
</div>
@php
$buttonExample6 = <<<'HTML'
Expand Down
70 changes: 35 additions & 35 deletions resources/views/docs/calendar.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,41 +308,41 @@
<x-bladewind::code-block language="javascript" :code="$calendarExample9"></x-bladewind::code-block>

<h3>Calendar with all attributes defined</h3>
@php
$calendarExample10 = <<<'HTML'
<x-bladewind::calendar
name="team-calendar"
label="Team calendar"
view="week"
date="2026-08-14"
week-starts="monday"
selectable="multiple"
:selected="['2026-08-10', '2026-08-14']"
min-date="2026-01-01"
max-date="2026-12-31"
:disabled-dates="['2026-12-25']"
:events="[
[
'date' => '2026-08-14 15:00',
'end' => '2026-08-14 16:00',
'label' => 'Sprint planning',
'type' => 'info',
'href' => '/events/sprint-planning',
'description' => 'Review the roadmap and assign owners for Q3.',
],
]"
max-events-per-day="3"
show-other-month-days="true"
show-week-numbers="false"
highlight-today="true"
height="40rem"
client-navigation="true"
today-label="Today"
previous-label="Previous"
next-label="Next"
class="shadow-sm" />
HTML;
@endphp
@php
$calendarExample10 = <<<'HTML'
<x-bladewind::calendar
name="team-calendar"
label="Team calendar"
view="week"
date="2026-08-14"
week-starts="monday"
selectable="multiple"
:selected="['2026-08-10', '2026-08-14']"
min-date="2026-01-01"
max-date="2026-12-31"
:disabled-dates="['2026-12-25']"
:events="[
[
'date' => '2026-08-14 15:00',
'end' => '2026-08-14 16:00',
'label' => 'Sprint planning',
'type' => 'info',
'href' => '/events/sprint-planning',
'description' => 'Review the roadmap and assign owners for Q3.',
],
]"
max-events-per-day="3"
show-other-month-days="true"
show-week-numbers="false"
highlight-today="true"
height="40rem"
client-navigation="true"
today-label="Today"
previous-label="Previous"
next-label="Next"
class="shadow-sm" />
HTML;
@endphp
<x-bladewind::code-block language="markup" line_numbers="true" :code="$calendarExample10"></x-bladewind::code-block>

<x-bladewind::alert show_close_icon="false">The source files for this component are available in <code class="inline">resources &gt; views &gt; components &gt; bladewind &gt; calendar.blade.php</code></x-bladewind::alert>
Expand Down
Loading