@adobe/spectrum-tokens
Version:
Design tokens for Spectrum, Adobe's design system
33 lines (32 loc) • 975 B
JSON
{
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json",
"$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tabs.json",
"title": "Tabs",
"description": "Tabs organize content into multiple sections and allow users to navigate between them. The content under the set of tabs should be related and form a coherent unit.",
"meta": {
"category": "navigation",
"documentationUrl": "https://spectrum.adobe.com/page/tabs/"
},
"type": "object",
"properties": {
"label": {
"type": "string"
},
"icon": {
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/types/workflow-icon.json"
},
"isSelected": {
"type": "boolean",
"default": false
},
"isDisabled": {
"type": "boolean",
"default": false
},
"state": {
"type": "string",
"enum": ["default", "hover", "down", "keyboard focus"],
"default": "default"
}
}
}