angular-tailwind-components 1.6.1 → 1.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
# Angular Tailwind Components
|
|
2
2
|
|
|
3
|
-
[](https://stackblitz.com/fork/github/giuseppemorale/angular-tailwind-components?startScript=stackblitz&title=Angular%20Tailwind%20Components%20%E2%80%94%20Storybook)
|
|
4
|
-
|
|
5
|
-
Apri la demo live su StackBlitz: avvia **Storybook** (tutti i componenti, stesso sorgente del repo).
|
|
6
|
-
|
|
7
3
|
A comprehensive Angular component library built entirely with **Tailwind CSS v4** — zero additional UI dependencies.
|
|
8
4
|
|
|
5
|
+
**[Live demo (Storybook) on StackBlitz](https://stackblitz.com/fork/github/giuseppemorale/angular-tailwind-components?startScript=stackblitz)**
|
|
6
|
+
|
|
9
7
|
## Features
|
|
10
8
|
|
|
11
9
|
- 🎨 **35 components** — Buttons, Inputs, Modals, Tables, DatePickers, and more
|
|
@@ -33,10 +31,7 @@ Your consuming project must have **Tailwind CSS v4** configured. Add the library
|
|
|
33
31
|
|
|
34
32
|
The published `styles/tailwind.css` scans the sibling `fesm2022` bundle plus library `.html` / `.ts` sources for development. You do **not** need a separate `@source` to `node_modules/.../fesm2022` in the consumer.
|
|
35
33
|
|
|
36
|
-
|
|
37
|
-
@import 'tailwindcss';
|
|
38
|
-
|
|
39
|
-
So you don't need to import the base styles
|
|
34
|
+
That stylesheet also includes Tailwind’s base import, so you do **not** need a separate `@import 'tailwindcss'` in your app.
|
|
40
35
|
|
|
41
36
|
## Quick Start
|
|
42
37
|
|
|
@@ -282,7 +277,7 @@ ng build angular-tailwind-components
|
|
|
282
277
|
# Start Storybook (locale)
|
|
283
278
|
npm run storybook
|
|
284
279
|
|
|
285
|
-
# Storybook
|
|
280
|
+
# StackBlitz: build statico Storybook + serve (primo avvio ~1–2 min)
|
|
286
281
|
npm run stackblitz
|
|
287
282
|
```
|
|
288
283
|
|