Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Filament | 6,841 | 13 hours ago | 13 | mit | PHP | |||||
Admin panel, form builder and table builder for Laravel. Built with the TALL stack. Designed for humans. | ||||||||||
Tailwindcss Forms | 3,148 | 529 | 21 days ago | 46 | September 02, 2022 | 2 | mit | HTML | ||
A plugin that provides a basic reset for form styles that makes form elements easy to override with utilities. | ||||||||||
Formbricks | 1,623 | 15 hours ago | 14 | other | TypeScript | |||||
Open Source Experience Management Solution | ||||||||||
Flowbite Svelte | 963 | 12 | a day ago | 291 | November 14, 2022 | 73 | mit | Svelte | ||
Official Svelte components built for Flowbite and Tailwind CSS | ||||||||||
Tall Forms | 641 | 1 | 2 months ago | 120 | March 11, 2022 | 5 | mit | PHP | ||
Laravel Livewire (TALL-stack) form generator with realtime validation, file uploads, array fields, blade form input components and more. | ||||||||||
Formvuelar | 300 | 23 days ago | 7 | mit | JavaScript | |||||
Vue form components with server-side validation in mind | ||||||||||
Laravel Form Components | 264 | 4 days ago | 70 | October 20, 2022 | mit | PHP | ||||
Form components built for Tailwind & Livewire. | ||||||||||
Ui | 169 | a year ago | 11 | January 08, 2022 | mit | JavaScript | ||||
Basic UI components for Tailwind CSS. | ||||||||||
Instagram Clone | 68 | 11 days ago | 17 | TypeScript | ||||||
Instagram 2.0 with REACT.JS! (Next.js, TypeScript, NextAuth.js v4.17.0, Tailwind CSS, Firebase v9, Framer Motion, Image Uploading, Google Authentication,, Instagram Profile) | ||||||||||
Laravel Casts | 57 | 1 | 2 years ago | 137 | September 15, 2020 | 21 | mit | PHP | ||
Form builder for Laravel. |
A collection of basic UI components built on Tailwind CSS.
Demo.
If you're already using Tailwind and you find yourself repeatedly creating a few common component classes for every project, Sail UI is for you.
This package helps you with a few basic components, so that you can start building your prototype / draft / MVP before you get down to polishing your fully custom design.
Use .btn
, .card
and other classes you're familiar with to get you started and customize them later when you need to.
If you're moving away from another framework to Tailwind and you're afraid of taking the leap because you don't want to build all of those lovely components from scratch yourself, Sail UI will help you with the transition.
npm install sailui
Add sailui
to your tailwind.config.js
file:
module.exports = {
// ...
plugins: [require("sailui")],
};
Tailwind CSS | Sail UI |
---|---|
v1.9.0 | v0.4.0 |
v2.0.0 | v0.5.0 |
v3.0.0 | v0.7.0 |
Start using Sail UI component classes just like how you're used to.
<a href="/" class="btn"></a>
Simply add a theme.colors.primary
key to your tailwind.config.js
and Sail UI will use it as the default color
for all available components:
module.exports = {
// ...
theme: {
extend: {
colors: {
primary: "#ff6394",
},
},
},
};
These components are included:
<button class="btn">Sign Up</button>
<button class="btn btn-outline">Find Out More</button>
<div class="card">Lorem ipsum dolor sit amet...</div>
<div class="alert">
<strong>Normal stuff!</strong> zero concerns.
</div>
<div class="alert alert-blue">
<strong>All is clear!</strong> So far so good.
</div>
<div class="alert alert-green">
<strong>Fantastic!</strong> You did it.
</div>
<div class="alert alert-yellow">
<strong>Watch out!</strong> Things are going down south.
</div>
<div class="alert alert-red">
<strong>Too late!</strong> It's hit the fan.
</div>
<span class="badge">Default</span>
<span class="badge badge-light">Light</span>
<span class="badge badge-blue">Blue</span>
<span class="badge badge-green">Green</span>
<span class="badge badge-yellow">Yellow</span>
<span class="badge badge-red">Red</span>
<span>This is a <a href="#" class="link">link</a></span>.
Sail UI uses the forms
plugin from Tailwind Labs
to reset form styles.
On top of the provided reset, these classes add an additional layer of styling to form elements:
<label class="block">
<span class="text-gray-700">Name</span>
<input type="text" class="form-input mt-1 block w-full" />
</label>
<label class="block">
<span class="text-gray-700">Pet of Choice</span>
<select class="form-select mt-1 block w-full">
<option>Cat</option>
<option>Catty</option>
<option>Kitty</option>
<option>Kat</option>
</select>
</label>
<div class="mt-4">
<span class="text-gray-700">Age Group</span>
<div class="mt-2">
<label class="inline-flex items-center">
<input type="radio" class="form-radio" name="age-group" value="cat" />
<span class="ml-2">Cat</span>
</label>
<label class="inline-flex items-center ml-6">
<input type="radio" class="form-radio" name="age-group" value="kitty" />
<span class="ml-2">Kitty</span>
</label>
</div>
</div>
<div class="flex mt-6">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox" />
<span class="ml-2">I agree to your <span class="underline">terms</span></span>.
</label>
</div>
<label class="block mt-6">
<span class="text-gray-700">Notes</span>
<textarea class="form-textarea mt-1 block w-full" rows="3" placeholder="Write something..."></textarea>
</label>
The mx-auto
style is automatically applied to center the default .container
that comes out of the box with Tailwind.
Simply pass an object with an array exclude
in it to the registering of the plugin in your tailwind.config.js
:
module.exports = {
// ...
plugins: [
require("sailui")({exclude: ['btn', 'alert']})
],
};
List of all components that can be excluded:
alert
badge
btn
card
container
link
form
- excludes checkbox
, input
, radio
, select
, textarea
and @tailwindcss/forms
Sensible default styles are applied to headings, paragraphs, and other elements of typography. These are the covered elements:
The MIT License (MIT). Please see License File for more information.