@happyvertical/smrt-ui 0.51.7 → 0.51.9
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/AGENTS.md +2 -1
- package/package.json +2 -2
package/AGENTS.md
CHANGED
|
@@ -47,7 +47,8 @@ components are exempt — they *are* the primitives.
|
|
|
47
47
|
| `./playground` | shared-host previews for the complete foundation catalog; rendered inside the active preset and color scheme |
|
|
48
48
|
| `./ui` | `Button`, `Card`, `Badge`, `Avatar`, `Chip`, `Skeleton`, `Tooltip`, `Dropdown`/`Menu`, `Popover`, `Disclosure`, `Accordion`, `Tree`, `Pagination`, … |
|
|
49
49
|
| `./feedback` | `Alert`, `ToastViewport`, `Modal`, `Drawer`/`Sheet`, `ConfirmDialog`, `LoadingOverlay`, `Progress`, `Meter`, `Spinner` |
|
|
50
|
-
| `./data` | `CollectionToolbar`, `CollectionList`/`ContentList`, `DataTable` and their types |
|
|
50
|
+
| `./data` | `CollectionToolbar`, `CollectionList`/`ContentList`, `DataTable` and their types — a **component barrel**: it re-exports `.svelte` files, so a plain Node `import()` of it throws `ERR_UNKNOWN_FILE_EXTENSION` |
|
|
51
|
+
| `./data-surface` | **Svelte-free**: registry contracts and shared protocol limits (`DATA_SURFACE_MAX_REQUEST_BYTES`, `DATA_SURFACE_IDENTIFIER_MAX_LENGTH`, …). Server adapters must import these from here, not from `./data` — a server entry that reaches the barrel breaks the `smrt` CLI's plain-Node `.smrt/register.js` load (issue #2924) |
|
|
51
52
|
| `./layout` | `Container`, `Grid`, `Header`, `Footer`, `PageHeader`, `EmptyState`, … |
|
|
52
53
|
| `./calendar` | `Calendar`, `DayView` |
|
|
53
54
|
| `./chat` | `MessageBubble`, `ReactionPicker`, `TypingIndicator` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@happyvertical/smrt-ui",
|
|
3
|
-
"version": "0.51.
|
|
3
|
+
"version": "0.51.9",
|
|
4
4
|
"smrtJsdoc": "strict",
|
|
5
5
|
"description": "Domain-agnostic Svelte 5 UI runtime for SMRT: primitives, i18n client, theme system, and module UI registry",
|
|
6
6
|
"type": "module",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"access": "public"
|
|
130
130
|
},
|
|
131
131
|
"dependencies": {
|
|
132
|
-
"@happyvertical/smrt-types": "0.51.
|
|
132
|
+
"@happyvertical/smrt-types": "0.51.9",
|
|
133
133
|
"esm-env": "^1.2.2"
|
|
134
134
|
},
|
|
135
135
|
"peerDependencies": {
|