@vllnt/ui 0.1.11-canary.54f8a77 → 0.1.11-canary.db315bc

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 (3) hide show
  1. package/CHANGELOG.md +104 -0
  2. package/README.md +106 -1
  3. package/package.json +4 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,104 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@vllnt/ui` are documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.2.0] - 2026-04-21
8
+
9
+ ### Added
10
+
11
+ - **AI family** — `AiChatInput`, `AiMessageBubble`, `AiSourceCitation`, `AiStreamingText`, `AiToolCallDisplay`, `ThinkingBlock`, `ModelSelector`.
12
+ - **Financial family** — `CandlestickChart`, `MarketTreemap`, `OrderBook`, `TickerTape`, `SparklineGrid`, `WalletCard`, `Watchlist`.
13
+ - **Ops / Status family** — `StatusBoard`, `StatusIndicator`, `LiveFeed`, `WorldClockBar`, `SeverityBadge`, `RoleBadge`, `ScopeSelector`.
14
+ - **Billing & Plans family** — `SubscriptionCard`, `PlanBadge`, `CreditBadge`, `UsageBreakdown`.
15
+ - **Animation family** — `AnimatedText`, `BorderBeam`, `Marquee`, `NumberTicker`, and a standalone spinner library exported via `Spinner`.
16
+ - **Educational family** — `Flashcard`, `Stepper`, `Tour`, `Annotation`, `CompletionDialog`, `TruncatedText`, `TableOfContentsPanel`.
17
+ - **Form additions** — `DatePicker`, `FileUpload`, `NumberInput`, `PasswordInput`, `InlineInput`, `Combobox`, `Rating`.
18
+ - **Data / metric additions** — `DataTable`, `DataList`, `StatCard`, `MetricGauge`, `ActivityHeatmap`, `ActivityLog`.
19
+ - **App shell additions** — `CategoryFilter`, `FilterBar`, `CookieConsent`, `Slideshow`, `CountdownTimer`, `AvatarGroup`, `FloatingActionButton`, `SocialFab`, `KeyboardShortcutsHelp`, `ShareDialog`, `HorizontalScrollRow`, `ViewSwitcher`.
20
+ - Total component count: **144** (up from 93).
21
+ - Full Storybook integration with E2E smoke tests in CI.
22
+ - OG image generation for every registry page.
23
+ - Signed provenance attestations on every published artifact (sigstore).
24
+
25
+ ### Changed
26
+
27
+ - Documentation domain moved to `ui.vllnt.ai` / `storybook.vllnt.ai`.
28
+ - Default package registry is the public npm registry (no longer GitHub Packages).
29
+ - README component tables expanded to cover all 144 components organized by family.
30
+
31
+ ### Fixed
32
+
33
+ - Publish workflow now uses `npx --yes npm@latest publish` so OIDC trusted publishing survives GitHub runners that ship pre-11.5.1 npm.
34
+
35
+ ## [0.1.11] - 2026-04 *(last canary-era release)*
36
+
37
+ ### Fixed
38
+
39
+ - Re-extract tarball path from `pnpm pack` output for publish step.
40
+
41
+ ## [0.1.10]
42
+
43
+ ### Changed
44
+
45
+ - Switched to `pnpm pack` + `npm publish` flow to support `publishConfig` with OIDC auth.
46
+
47
+ ## [0.1.9]
48
+
49
+ ### Fixed
50
+
51
+ - Use `pnpm publish` and repair release creation step in CI.
52
+
53
+ ## [0.1.8]
54
+
55
+ ### Fixed
56
+
57
+ - Annotated tags + `--notes-file` for release creation.
58
+
59
+ ## [0.1.7]
60
+
61
+ ### Added
62
+
63
+ - `HorizontalScrollRow`, `ViewSwitcher`, and `useHorizontalScroll` hook.
64
+
65
+ ### Fixed
66
+
67
+ - `Comparison`: defensive prop validation to prevent runtime crash on malformed input.
68
+
69
+ ## [0.1.6]
70
+
71
+ ### Fixed
72
+
73
+ - Bundle-free build to preserve per-file `"use client"` directives in published chunks.
74
+
75
+ ## [0.1.5]
76
+
77
+ ### Fixed
78
+
79
+ - Add `"use client"` to all dist JS including `index.js`.
80
+
81
+ ## [0.1.4]
82
+
83
+ ### Fixed
84
+
85
+ - Exclude `index.js` from `"use client"` banner.
86
+
87
+ ## [0.1.3]
88
+
89
+ ### Fixed
90
+
91
+ - Add `"use client"` directive to published dist chunks.
92
+
93
+ ## [0.1.2]
94
+
95
+ ### Added
96
+
97
+ - Initial public publish to the public npm registry.
98
+
99
+ [0.2.0]: https://github.com/vllnt/ui/releases/tag/v0.2.0
100
+ [0.1.11]: https://github.com/vllnt/ui/releases/tag/v0.1.11
101
+ [0.1.10]: https://github.com/vllnt/ui/releases/tag/v0.1.10
102
+ [0.1.9]: https://github.com/vllnt/ui/releases/tag/v0.1.9
103
+ [0.1.8]: https://github.com/vllnt/ui/releases/tag/v0.1.8
104
+ [0.1.2]: https://github.com/vllnt/ui/releases/tag/v0.1.2
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # @vllnt/ui
2
2
 
3
- React component library — 93 components built on Radix UI primitives, Tailwind CSS, and CVA.
3
+ React component library — 144 components built on Radix UI primitives, Tailwind CSS, and CVA.
4
+
5
+ See [CHANGELOG.md](./CHANGELOG.md) for release history.
4
6
 
5
7
  ## Install
6
8
 
@@ -271,6 +273,109 @@ import {
271
273
  | `CodePlayground` | `{ CodePlayground, FileTree }` | Code editor with file tree |
272
274
  | `Terminal` | `{ Terminal, SimpleTerminal }` | Terminal emulator UI |
273
275
  | `VideoEmbed` | `{ VideoEmbed }` | Responsive video embed |
276
+ | `Flashcard` | `{ Flashcard }` | Flip-card for spaced repetition |
277
+ | `Stepper` | `{ Stepper }` | Linear progress stepper |
278
+ | `Tour` | `{ Tour }` | Guided product tour |
279
+ | `Annotation` | `{ Annotation }` | Inline annotation / highlight |
280
+ | `CompletionDialog` | `{ CompletionDialog }` | End-of-flow celebration dialog |
281
+ | `TruncatedText` | `{ TruncatedText }` | Expand-on-overflow text block |
282
+ | `TableOfContentsPanel` | `{ TableOfContentsPanel }` | Sidebar TOC panel |
283
+ | `ThinkingBlock` | `{ ThinkingBlock }` | Collapsible reasoning block |
284
+
285
+ ### AI
286
+
287
+ | Component | Import | Notes |
288
+ |-----------|--------|-------|
289
+ | `AiChatInput` | `{ AiChatInput }` | Chat composer with submit + attachments |
290
+ | `AiMessageBubble` | `{ AiMessageBubble }` | User/assistant message bubble |
291
+ | `AiStreamingText` | `{ AiStreamingText }` | Token-stream renderer |
292
+ | `AiToolCallDisplay` | `{ AiToolCallDisplay }` | Tool-use invocation render |
293
+ | `AiSourceCitation` | `{ AiSourceCitation }` | Inline citation reference |
294
+ | `ModelSelector` | `{ ModelSelector }` | Model picker (provider-agnostic) |
295
+
296
+ ### Financial
297
+
298
+ | Component | Import | Notes |
299
+ |-----------|--------|-------|
300
+ | `CandlestickChart` | `{ CandlestickChart }` | OHLC candlestick chart |
301
+ | `MarketTreemap` | `{ MarketTreemap }` | Market-cap treemap |
302
+ | `OrderBook` | `{ OrderBook }` | Bid/ask depth book |
303
+ | `TickerTape` | `{ TickerTape }` | Horizontal ticker marquee |
304
+ | `SparklineGrid` | `{ SparklineGrid }` | Grid of inline sparklines |
305
+ | `WalletCard` | `{ WalletCard }` | Balance / portfolio card |
306
+ | `Watchlist` | `{ Watchlist }` | Tracked-symbol list |
307
+
308
+ ### Ops / Status
309
+
310
+ | Component | Import | Notes |
311
+ |-----------|--------|-------|
312
+ | `StatusBoard` | `{ StatusBoard }` | Grid of service statuses |
313
+ | `StatusIndicator` | `{ StatusIndicator }` | Inline dot + label |
314
+ | `LiveFeed` | `{ LiveFeed }` | Append-only event feed |
315
+ | `WorldClockBar` | `{ WorldClockBar }` | Multi-timezone clock bar |
316
+ | `SeverityBadge` | `{ SeverityBadge }` | Severity-level badge |
317
+ | `RoleBadge` | `{ RoleBadge }` | User-role badge |
318
+ | `ScopeSelector` | `{ ScopeSelector }` | Scope / environment picker |
319
+
320
+ ### Billing & Plans
321
+
322
+ | Component | Import | Notes |
323
+ |-----------|--------|-------|
324
+ | `SubscriptionCard` | `{ SubscriptionCard }` | Plan pricing / feature card |
325
+ | `PlanBadge` | `{ PlanBadge }` | Tier indicator |
326
+ | `CreditBadge` | `{ CreditBadge }` | Remaining-credit pill |
327
+ | `UsageBreakdown` | `{ UsageBreakdown }` | Usage-by-category breakdown |
328
+
329
+ ### Animation
330
+
331
+ | Component | Import | Notes |
332
+ |-----------|--------|-------|
333
+ | `AnimatedText` | `{ AnimatedText }` | Text enter-animations |
334
+ | `BorderBeam` | `{ BorderBeam }` | Animated gradient border |
335
+ | `Marquee` | `{ Marquee }` | Infinite scroll marquee |
336
+ | `NumberTicker` | `{ NumberTicker }` | Animated number counter |
337
+ | `Spinner` | `{ Spinner }` | Rich loading-spinner library |
338
+
339
+ ### Form Additions
340
+
341
+ | Component | Import | Notes |
342
+ |-----------|--------|-------|
343
+ | `DatePicker` | `{ DatePicker }` | Composed `Calendar` + `Popover` |
344
+ | `FileUpload` | `{ FileUpload }` | Drag-drop file input |
345
+ | `NumberInput` | `{ NumberInput }` | Numeric input w/ steppers |
346
+ | `PasswordInput` | `{ PasswordInput }` | Input w/ show-password toggle |
347
+ | `InlineInput` | `{ InlineInput }` | Click-to-edit inline input |
348
+ | `Combobox` | `{ Combobox }` | Typeahead select |
349
+ | `Rating` | `{ Rating }` | Star rating input |
350
+
351
+ ### Data & Metrics
352
+
353
+ | Component | Import | Notes |
354
+ |-----------|--------|-------|
355
+ | `DataTable` | `{ DataTable }` | High-level table w/ sort/filter (TanStack) |
356
+ | `DataList` | `{ DataList }` | Label/value list |
357
+ | `StatCard` | `{ StatCard }` | KPI tile |
358
+ | `MetricGauge` | `{ MetricGauge }` | Gauge chart |
359
+ | `ActivityHeatmap` | `{ ActivityHeatmap }` | GitHub-style contribution grid |
360
+ | `ActivityLog` | `{ ActivityLog }` | Audit-trail feed |
361
+ | `TableOfContents` | `{ TableOfContents }` | Inline TOC |
362
+
363
+ ### App Shell (extended)
364
+
365
+ | Component | Import | Notes |
366
+ |-----------|--------|-------|
367
+ | `CategoryFilter` | `{ CategoryFilter }` | Chip-based category filter |
368
+ | `FilterBar` | `{ FilterBar }` | Multi-facet filter row |
369
+ | `CookieConsent` | `{ CookieConsent }` | Cookie-consent banner |
370
+ | `Slideshow` | `{ Slideshow }` | Hero slideshow |
371
+ | `CountdownTimer` | `{ CountdownTimer }` | Event countdown |
372
+ | `AvatarGroup` | `{ AvatarGroup }` | Stacked avatar group |
373
+ | `FloatingActionButton` | `{ FloatingActionButton }` | Anchored FAB |
374
+ | `SocialFab` | `{ SocialFab }` | Social-links FAB |
375
+ | `KeyboardShortcutsHelp` | `{ KeyboardShortcutsHelp }` | Cmd-? shortcut dialog |
376
+ | `ShareDialog` | `{ ShareDialog }` | Shareable-link dialog |
377
+ | `HorizontalScrollRow` | `{ HorizontalScrollRow }` | Scroll-snap row |
378
+ | `ViewSwitcher` | `{ ViewSwitcher }` | Grid/list toggle |
274
379
 
275
380
  ## Utilities
276
381
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vllnt/ui",
3
- "version": "0.1.11-canary.54f8a77",
3
+ "version": "0.1.11-canary.db315bc",
4
4
  "description": "React component library — 93 components built on Radix UI, Tailwind CSS, and CVA",
5
5
  "license": "MIT",
6
6
  "author": "vllnt",
@@ -45,7 +45,9 @@
45
45
  "files": [
46
46
  "dist",
47
47
  "styles.css",
48
- "themes"
48
+ "themes",
49
+ "CHANGELOG.md",
50
+ "README.md"
49
51
  ],
50
52
  "sideEffects": [
51
53
  "*.css"