angular-tailwind-components 1.8.1 โ†’ 1.8.2

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.
Files changed (2) hide show
  1. package/README.md +9 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A comprehensive Angular component library built entirely with **Tailwind CSS v4** โ€” zero additional UI dependencies.
4
4
 
5
+ **Live Storybook:** [angular-tailwind-components.vercel.app](https://angular-tailwind-components.vercel.app/)
6
+
5
7
  ## Features
6
8
 
7
9
  - ๐ŸŽจ **36 components** โ€” Buttons, Inputs, Modals, Tables, DatePickers, and more
@@ -10,7 +12,7 @@ A comprehensive Angular component library built entirely with **Tailwind CSS v4*
10
12
  - ๐Ÿ“ **ControlValueAccessor** โ€” Full reactive forms integration for all form components
11
13
  - โ™ฟ **Accessible** โ€” WCAG-compliant with proper ARIA roles and keyboard support
12
14
  - ๐Ÿงช **Tested** โ€” Unit tests with Vitest
13
- - ๐Ÿ“– **Storybook** โ€” Visual documentation for all components
15
+ - ๐Ÿ“– **Storybook** โ€” [Visual documentation](https://angular-tailwind-components.vercel.app/) for all components
14
16
  - ๐ŸŽญ **Customizable** โ€” **`defineTheme()`** for injection-token defaults and runtime semantic colors; optional CSS overrides via `@theme`
15
17
 
16
18
  ## Installation
@@ -272,12 +274,17 @@ You can still override any token in your own CSS, for example:
272
274
 
273
275
  ## Development
274
276
 
277
+ Browse components in the hosted Storybook: [angular-tailwind-components.vercel.app](https://angular-tailwind-components.vercel.app/)
278
+
275
279
  ```bash
276
280
  # Build the library
277
281
  ng build angular-tailwind-components
278
282
 
279
- # Start Storybook
283
+ # Start Storybook locally
280
284
  npm run storybook
285
+
286
+ # Build static Storybook (output: storybook-static/)
287
+ npm run build:storybook
281
288
  ```
282
289
 
283
290
  ### Component Conventions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-tailwind-components",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "files": [
5
5
  "fesm2022",
6
6
  "types",