Skip to content

Commit 64a46c0

Browse files
committed
merge
2 parents 42d015f + 6a20fda commit 64a46c0

File tree

39 files changed

+2063
-1312
lines changed

39 files changed

+2063
-1312
lines changed

bin/setup-playground.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fi
77

88
echo "Cloning repository..."
99

10-
git clone [email protected]:filamentphp/demo.git -b 3.x playground &> /dev/null
10+
git clone [email protected]:filamentphp/demo.git -b 4.x playground &> /dev/null
1111

1212
echo "Configuring application..."
1313

docs-assets/app/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ APP_NAME=Laravel
22
APP_ENV=ci
33
APP_KEY=base64:/RjsPfTKUG/cV+SQjSOfCfgFPZ85Zmwywiz5yevEZ0s=
44
APP_DEBUG=true
5-
APP_URL=http://127.0.0.1::8000
5+
APP_URL=http://127.0.0.1:8000
66

77
LOG_CHANNEL=stack
88
LOG_DEPRECATIONS_CHANNEL=null

docs-assets/app/app/Livewire/Schemas/LayoutDemo.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,28 @@ public function form(Schema $form): Schema
284284
])
285285
->vertical(),
286286
]),
287+
Group::make()
288+
->id('tabsNotScrollable')
289+
->extraAttributes([
290+
'class' => 'p-16 max-w-xl',
291+
])
292+
->schema([
293+
Tabs::make('Tabs')
294+
->statePath('tabsNotScrollable')
295+
->schema([
296+
Tab::make('Tab 1')
297+
->schema([
298+
TextInput::make('field'),
299+
]),
300+
Tab::make('Tab 2'),
301+
Tab::make('Tab 3'),
302+
Tab::make('Tab 4'),
303+
Tab::make('Tab 5'),
304+
Tab::make('Tab 6'),
305+
Tab::make('Tab 7'),
306+
])
307+
->scrollable(false),
308+
]),
287309
Group::make()
288310
->id('wizard')
289311
->extraAttributes([

0 commit comments

Comments
 (0)