jetstream icon indicating copy to clipboard operation
jetstream copied to clipboard

Tailwind scaffolding for the Laravel framework.

Results 7 jetstream issues
Sort by recently updated
recently updated
newest added

This PR updates the Jetstream installer to automatically run the `npm install` and `npm run build` commands for you. Currently, the [Laravel installer](https://github.com/laravel/installer/blob/df70a9391dbd5f911565312f8afc125a5e86e0d9/src/NewCommand.php#L173) automatically runs these commands when it installs...

This PR updates Jetstream so that it copies the Livewire components on installation to make it more like Breeze, and more like the Vue stack. I've placed them in `resources/views/components`...

Continuing from https://github.com/laravel/jetstream/pull/1110, this PR removes the "Jet" prefix from the component imports in the Vue stack to give users a better sense of ownership over the scaffolding. This does...

Update the Inertia stack to match the Breeze Vue components. See @jessarcher pull request in Breeze https://github.com/laravel/breeze/pull/175

This PR applies the same changes to Jetstream that https://github.com/laravel/breeze/pull/177 applied to Breeze: - It adds the missing dark text variant for the nav links on the Vue Welcome page...

Currently, the Modal component uses a `` element as the root with the Teleport feature. A modal like this does not properly trap tabs, allowing the user to tab to...

This PR changes the to use a native dialog @cancel event instead of manually adding and removing document-level event listeners when the dialog is shown and dismissed. This also removes...