vibe-design-system 2.5.43 → 2.5.44
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
|
@@ -1521,10 +1521,10 @@ function main() {
|
|
|
1521
1521
|
}
|
|
1522
1522
|
|
|
1523
1523
|
for (const comp of components) {
|
|
1524
|
-
if (comp.group === "shadcn" || comp.group === "Uncategorized") continue;
|
|
1525
|
-
if (comp.group !== "Components") continue;
|
|
1526
|
-
|
|
1527
1524
|
const componentName = toSafeComponentName(comp.name, comp.file);
|
|
1525
|
+
// Şu ana kadar shadcn grubunu atlıyorduk; Button için istisna tanıyalım
|
|
1526
|
+
if ((comp.group === "shadcn" || comp.group === "Uncategorized") && componentName !== "Button") continue;
|
|
1527
|
+
if (comp.group !== "Components" && componentName !== "Button") continue;
|
|
1528
1528
|
if (onlyName && componentName !== onlyName) continue;
|
|
1529
1529
|
|
|
1530
1530
|
const storyFileName = `${componentName}.stories.tsx`;
|