angular-tailwind-components 1.6.4 → 1.7.1
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
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
A comprehensive Angular component library built entirely with **Tailwind CSS v4** — zero additional UI dependencies.
|
|
4
4
|
|
|
5
|
-
**[Live demo (Storybook) on StackBlitz](https://stackblitz.com/fork/github/giuseppemorale/angular-tailwind-components?startScript=stackblitz)**
|
|
6
|
-
|
|
7
5
|
## Features
|
|
8
6
|
|
|
9
7
|
- 🎨 **35 components** — Buttons, Inputs, Modals, Tables, DatePickers, and more
|
|
@@ -31,7 +29,10 @@ Your consuming project must have **Tailwind CSS v4** configured. Add the library
|
|
|
31
29
|
|
|
32
30
|
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.
|
|
33
31
|
|
|
34
|
-
|
|
32
|
+
The same import also pulls in:
|
|
33
|
+
@import 'tailwindcss';
|
|
34
|
+
|
|
35
|
+
So you don't need to import the base styles
|
|
35
36
|
|
|
36
37
|
## Quick Start
|
|
37
38
|
|
|
@@ -274,11 +275,8 @@ You can still override any token in your own CSS, for example:
|
|
|
274
275
|
# Build the library
|
|
275
276
|
ng build angular-tailwind-components
|
|
276
277
|
|
|
277
|
-
# Start Storybook
|
|
278
|
+
# Start Storybook
|
|
278
279
|
npm run storybook
|
|
279
|
-
|
|
280
|
-
# Storybook su StackBlitz (Vite, porta 6006)
|
|
281
|
-
npm run stackblitz
|
|
282
280
|
```
|
|
283
281
|
|
|
284
282
|
### Component Conventions
|