spectrum-web-components
spectrum-web-components copied to clipboard
[Feat]: Action Menu with ONLY text label
trafficstars
Code of conduct
- [X] I agree to follow this project's code of conduct.
Impacted component(s)
Action Menu
Description of the requested feature
Deliver API to support shipping an <sp-action-menu> to an application that DOES NOT require an icon.
Mockups or screenshots
No response
Implementation notes or ideas
See Picker API for icon display as possible directional support here?
icons = 'only' | 'none' | undefined
How's this for an API here?
Current icon and label Action Menu:
<sp-action-menu>
<span slot="label">More Actions</span>
<sp-menu-item>
Deselect
</sp-menu-item>
<sp-menu-item>
Select inverse
</sp-menu-item>
<sp-menu-item>
Feather...
</sp-menu-item>
<sp-menu-item>
Select and mask...
</sp-menu-item>
<sp-menu-divider></sp-menu-divider>
<sp-menu-item>
Save selection
</sp-menu-item>
<sp-menu-item disabled>
Make work path
</sp-menu-item>
</sp-action-menu>
Proposed label only Action Menu:
<sp-action-menu>
<span slot="label-only">More Actions</span>
<sp-menu-item>
Deselect
</sp-menu-item>
<sp-menu-item>
Select inverse
</sp-menu-item>
<sp-menu-item>
Feather...
</sp-menu-item>
<sp-menu-item>
Select and mask...
</sp-menu-item>
<sp-menu-divider></sp-menu-divider>
<sp-menu-item>
Save selection
</sp-menu-item>
<sp-menu-item disabled>
Make work path
</sp-menu-item>
</sp-action-menu>