Edit flow configured

This commit is contained in:
adilallo
2026-04-29 18:29:16 -06:00
parent 3a9727bceb
commit fc845d8308
39 changed files with 681 additions and 165 deletions
+8 -2
View File
@@ -8,14 +8,14 @@ export default {
docs: {
description: {
component:
"Small status tag with recommended (yellow) or selected (dark) variant. Default labels are RECOMMENDED and SELECTED; pass children for custom text.",
"Small status tag: recommended (yellow), selected (dark on light), templateRecommended (dark on pastel `Card / Rule`). Default labels are RECOMMENDED/SELECTED; pass children for custom text.",
},
},
},
argTypes: {
variant: {
control: { type: "select" },
options: ["recommended", "selected"],
options: ["recommended", "selected", "templateRecommended"],
description: "Visual variant",
},
children: {
@@ -37,6 +37,12 @@ export const Selected = {
},
};
export const TemplateRecommended = {
args: {
variant: "templateRecommended",
},
};
export const CustomLabel = {
args: {
variant: "recommended",