Hide unused helper marks on selection cards and modal section labels until tooltip behavior ships.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -36,7 +36,8 @@ export default {
|
||||
},
|
||||
showInfoIcon: {
|
||||
control: { type: "boolean" },
|
||||
description: "Show info icon next to label (typically in vertical)",
|
||||
description:
|
||||
"Optional helper ? next to the label. Off in product until tooltip behavior ships.",
|
||||
},
|
||||
onClick: { action: "clicked" },
|
||||
},
|
||||
@@ -82,7 +83,7 @@ export const VerticalRecommended = {
|
||||
recommended: true,
|
||||
selected: false,
|
||||
orientation: "vertical",
|
||||
showInfoIcon: true,
|
||||
showInfoIcon: false,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -93,7 +94,7 @@ export const VerticalSelected = {
|
||||
recommended: false,
|
||||
selected: true,
|
||||
orientation: "vertical",
|
||||
showInfoIcon: true,
|
||||
showInfoIcon: false,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -134,7 +135,7 @@ export const AllVariants = {
|
||||
recommended={true}
|
||||
selected={false}
|
||||
orientation="vertical"
|
||||
showInfoIcon={true}
|
||||
showInfoIcon={false}
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-2">
|
||||
@@ -147,7 +148,7 @@ export const AllVariants = {
|
||||
recommended={false}
|
||||
selected={true}
|
||||
orientation="vertical"
|
||||
showInfoIcon={true}
|
||||
showInfoIcon={false}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user