@ng-brutalism/ui 0.1.1 → 0.1.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.
package/CHANGELOG.md CHANGED
@@ -21,6 +21,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
  - Portfolio journey map sync migrated to `toObservable + subscribe`.
22
22
  - Event handlers renamed to reflect actions rather than triggering events.
23
23
 
24
+ ## [0.1.2] — 2026-05-23
25
+
26
+ ### Changed
27
+
28
+ - npm package `description` rewritten to lead with "neo-brutalist Angular UI library" and include "brutalist Angular components" and `ng add @ng-brutalism/ui` (T1/T2 keyword alignment).
29
+ - npm `keywords`: added `ngbrutalism`, `ng-add`, `schematics`; removed generic `ui` and redundant `tailwind`.
30
+
31
+ > Patch motivation: `@ng-brutalism/ui` was absent from npm's search index even for exact-name queries. Publishing a new version fires the registry event that triggers the search crawler.
32
+
24
33
  ## [0.1.1] — 2026-05-21
25
34
 
26
35
  ### Fixed
package/README.md CHANGED
@@ -127,13 +127,13 @@ Full guides, component API tables, and live examples:
127
127
  Yes — it is built and tested against Angular 21. Earlier Angular versions are not supported.
128
128
 
129
129
  **Do I need Tailwind CSS v4?**
130
- Yes. ng-brutalism is built on Tailwind v4's token system. Tailwind v3 is not supported.
130
+ Yes. ng-brutalism is built around Tailwind CSS v4 and CSS custom properties. It ships with an Angular CLI schematic that helps you get the required styling setup ready out of the box.
131
131
 
132
132
  **Can I use ng-brutalism without zoneless mode?**
133
- Yes components are signal-driven and work in both zone.js and zoneless apps.
133
+ Yes. Components are designed for modern Angular: standalone imports, signal-friendly internals, and zoneless-friendly interaction patterns. They work in zoneless apps and in apps that still run with zone.js.
134
134
 
135
135
  **Does ng-brutalism work with server-side rendering (SSR)?**
136
- Components are zoneless and avoid direct DOM access where possible, so SSR is expected to work but it is not yet exhaustively verified at v0.1.0.
136
+ The UI package avoids browser-only assumptions in core primitives where possible, and browser-dependent behavior is kept behind Angular platform checks when needed.
137
137
 
138
138
  **How customizable is the theme?**
139
139
  All visual tokens are exposed as CSS custom properties (`--nb-*`). A subset of tokens can also be configured from TypeScript via `provideNgBrutalism({ theme: ... })` at bootstrap.
@@ -141,6 +141,10 @@ All visual tokens are exposed as CSS custom properties (`--nb-*`). A subset of t
141
141
  **Is ng-brutalism ready for production?**
142
142
  It is pre-1.0. Component APIs are usable today, but minor versions may include breaking changes while the library settles.
143
143
 
144
+ ## Author
145
+
146
+ Created by [Khang Tran](https://github.com/khangtrannn). MIT licensed. Source code is available on GitHub.
147
+
144
148
  ## Status
145
149
 
146
150
  `@ng-brutalism/ui` is pre-1.0. The component APIs are usable today, but minor
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ng-brutalism/ui",
3
- "version": "0.1.1",
4
- "description": "Neo-brutalist Angular component library (ng-brutalism) with signals, zoneless, token-driven design, and Tailwind v4.",
3
+ "version": "0.1.2",
4
+ "description": "Neo-brutalist Angular UI library brutalist Angular components with signals, zoneless, and Tailwind v4. Install: ng add @ng-brutalism/ui",
5
5
  "license": "MIT",
6
6
  "author": "Khang Tran <khangtrann8198@gmail.com>",
7
7
  "repository": {
@@ -14,6 +14,7 @@
14
14
  },
15
15
  "keywords": [
16
16
  "ng-brutalism",
17
+ "ngbrutalism",
17
18
  "neo-brutalism",
18
19
  "neo-brutalism-ui",
19
20
  "neobrutalism",
@@ -24,14 +25,14 @@
24
25
  "angular-ui",
25
26
  "angular-components",
26
27
  "angular-brutalism",
27
- "ui",
28
28
  "ui-library",
29
29
  "component-library",
30
30
  "design-system",
31
- "tailwind",
32
31
  "tailwindcss",
33
32
  "signals",
34
- "zoneless"
33
+ "zoneless",
34
+ "ng-add",
35
+ "schematics"
35
36
  ],
36
37
  "peerDependencies": {
37
38
  "@angular/common": "^21.0.0",