From b7786c4b42fbc3a23fc6a13b4817fa0c696b6287 Mon Sep 17 00:00:00 2001 From: Luis Llanes Date: Sat, 7 Mar 2026 13:27:55 -0700 Subject: [PATCH] chore(docs): update registry item types to include `registry:base` and `registry:font` --- .../docs/registry/registry-item-json.mdx | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/apps/v4/content/docs/registry/registry-item-json.mdx b/apps/v4/content/docs/registry/registry-item-json.mdx index 0b43e6846a..4c52058202 100644 --- a/apps/v4/content/docs/registry/registry-item-json.mdx +++ b/apps/v4/content/docs/registry/registry-item-json.mdx @@ -103,18 +103,20 @@ The `type` property is used to specify the type of your registry item. This is u The following types are supported: -| Type | Description | -| -------------------- | ------------------------------------------------ | -| `registry:block` | Use for complex components with multiple files. | -| `registry:component` | Use for simple components. | -| `registry:lib` | Use for lib and utils. | -| `registry:hook` | Use for hooks. | -| `registry:ui` | Use for UI components and single-file primitives | -| `registry:page` | Use for page or file-based routes. | -| `registry:file` | Use for miscellaneous files. | -| `registry:style` | Use for registry styles. eg. `new-york` | -| `registry:theme` | Use for themes. | -| `registry:item` | Use for universal registry items. | +| Type | Description | +| -------------------- | ------------------------------------------------- | +| `registry:base` | Use for entire design systems. | +| `registry:block` | Use for complex components with multiple files. | +| `registry:component` | Use for simple components. | +| `registry:font` | Use for fonts. | +| `registry:lib` | Use for lib and utils. | +| `registry:hook` | Use for hooks. | +| `registry:ui` | Use for UI components and single-file primitives. | +| `registry:page` | Use for page or file-based routes. | +| `registry:file` | Use for miscellaneous files. | +| `registry:style` | Use for registry styles. eg. `new-york`. | +| `registry:theme` | Use for themes. | +| `registry:item` | Use for universal registry items. | ### author