vibe-design-system 2.8.26 → 2.8.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-design-system",
3
- "version": "2.8.26",
3
+ "version": "2.8.27",
4
4
  "description": "Auto-generate design systems for vibe coding projects",
5
5
  "homepage": "https://vibedesign.tech",
6
6
  "repository": {
@@ -2845,8 +2845,9 @@ function main() {
2845
2845
 
2846
2846
  for (const comp of components) {
2847
2847
  const componentName = toSafeComponentName(comp.name, comp.file);
2848
- // Skip only truly unclassified components; all module groups (UI, Circles, Time, …) are welcome
2849
- if (comp.group === "Uncategorized") continue;
2848
+ // Skip unclassified and shadcn/ui primitives (UI group) they're documented at ui.shadcn.com
2849
+ // Only project-specific module groups (Circles, Finance, Projects, Time, …) get stories
2850
+ if (comp.group === "Uncategorized" || comp.group === "UI") continue;
2850
2851
  if (onlyName && componentName !== onlyName) continue;
2851
2852
 
2852
2853
  const storyFileName = `${componentName}.stories.tsx`;