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
|
@@ -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
|
|
2849
|
-
|
|
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`;
|