Skip to content

Runtime API Examples 🥳

This page demonstrates usage of some of the runtime APIs provided by VitePress.

The main useData() API can be used to access site, theme, and page data for the current page. It works in both .md and .vue files:

md
<script setup>
import { useData } from 'vitepress'

const { theme, page, frontmatter } = useData()
</script>

## Results

### Theme Data

<pre>{{ theme }}</pre>

### Page Data

<pre>{{ page }}</pre>

### Page Frontmatter

<pre>{{ frontmatter }}</pre>

Results

Theme Data

{
  "nav": [
    {
      "text": "Home",
      "link": "/"
    },
    {
      "text": "Getting Started",
      "link": "/getting-started"
    },
    {
      "text": "Component Library",
      "link": "/component-library/"
    },
    {
      "text": "Examples",
      "link": "/markdown-examples"
    },
    {
      "text": "Maia Storybook",
      "link": "https://maia-storybook.i-coach.ai/?path=/docs/gettingstarted--docs"
    }
  ],
  "sidebar": [
    {
      "text": "Examples",
      "items": [
        {
          "text": "Markdown Examples",
          "link": "/markdown-examples"
        },
        {
          "text": "Runtime API Examples",
          "link": "/api-examples"
        }
      ]
    },
    {
      "text": "Architecture",
      "items": [
        {
          "text": "Glossary",
          "link": "/architecture/00-glossary"
        },
        {
          "text": "Overview",
          "link": "/architecture/10-overview"
        },
        {
          "text": "How do I...",
          "link": "/architecture/15-how-do-i-2"
        },
        {
          "text": "CQRS and Mediator Patterns",
          "link": "/architecture/20-cqrs-and-mediator"
        },
        {
          "text": "Strategy Pattern",
          "link": "/architecture/30-strategy-pattern"
        }
      ]
    },
    {
      "text": "Component Library",
      "items": [
        {
          "text": "Namespaces",
          "collapsed": true,
          "items": [
            {
              "text": "CalendarRoot",
              "link": "/../component-library/modules/CalendarRoot.md",
              "collapsed": true,
              "items": [
                {
                  "text": "Variables",
                  "collapsed": true,
                  "items": [
                    {
                      "text": "displayName",
                      "link": "/../component-library/variables/CalendarRoot.displayName.md"
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "text": "Classes",
          "collapsed": true,
          "items": [
            {
              "text": "ToastQueue",
              "link": "/../component-library/classes/ToastQueue.md"
            }
          ]
        },
        {
          "text": "Interfaces",
          "collapsed": true,
          "items": [
            {
              "text": "AccordionBodyProps",
              "link": "/../component-library/interfaces/AccordionBodyProps.md"
            },
            {
              "text": "AccordionHeadingProps",
              "link": "/../component-library/interfaces/AccordionHeadingProps.md"
            },
            {
              "text": "AccordionIndicatorProps",
              "link": "/../component-library/interfaces/AccordionIndicatorProps.md"
            },
            {
              "text": "AccordionItemProps",
              "link": "/../component-library/interfaces/AccordionItemProps.md"
            },
            {
              "text": "AccordionPanelProps",
              "link": "/../component-library/interfaces/AccordionPanelProps.md"
            },
            {
              "text": "AccordionRootProps",
              "link": "/../component-library/interfaces/AccordionRootProps.md"
            },
            {
              "text": "AccordionTriggerProps",
              "link": "/../component-library/interfaces/AccordionTriggerProps.md"
            },
            {
              "text": "AlertContentProps",
              "link": "/../component-library/interfaces/AlertContentProps.md"
            },
            {
              "text": "AlertDescriptionProps",
              "link": "/../component-library/interfaces/AlertDescriptionProps.md"
            },
            {
              "text": "AlertDialogBackdropProps",
              "link": "/../component-library/interfaces/AlertDialogBackdropProps.md"
            },
            {
              "text": "AlertDialogBodyProps",
              "link": "/../component-library/interfaces/AlertDialogBodyProps.md"
            },
            {
              "text": "AlertDialogCloseTriggerProps",
              "link": "/../component-library/interfaces/AlertDialogCloseTriggerProps.md"
            },
            {
              "text": "AlertDialogContainerProps",
              "link": "/../component-library/interfaces/AlertDialogContainerProps.md"
            },
            {
              "text": "AlertDialogDialogProps",
              "link": "/../component-library/interfaces/AlertDialogDialogProps.md"
            },
            {
              "text": "AlertDialogFooterProps",
              "link": "/../component-library/interfaces/AlertDialogFooterProps.md"
            },
            {
              "text": "AlertDialogHeaderProps",
              "link": "/../component-library/interfaces/AlertDialogHeaderProps.md"
            },
            {
              "text": "AlertDialogHeadingProps",
              "link": "/../component-library/interfaces/AlertDialogHeadingProps.md"
            },
            {
              "text": "AlertDialogIconProps",
              "link": "/../component-library/interfaces/AlertDialogIconProps.md"
            },
            {
              "text": "AlertDialogRootProps",
              "link": "/../component-library/interfaces/AlertDialogRootProps.md"
            },
            {
              "text": "AlertDialogTriggerProps",
              "link": "/../component-library/interfaces/AlertDialogTriggerProps.md"
            },
            {
              "text": "AlertIndicatorProps",
              "link": "/../component-library/interfaces/AlertIndicatorProps.md"
            },
            {
              "text": "AlertRootProps",
              "link": "/../component-library/interfaces/AlertRootProps.md"
            },
            {
              "text": "AlertTitleProps",
              "link": "/../component-library/interfaces/AlertTitleProps.md"
            },
            {
              "text": "AutocompleteClearButtonProps",
              "link": "/../component-library/interfaces/AutocompleteClearButtonProps.md"
            },
            {
              "text": "AutocompleteFilterProps",
              "link": "/../component-library/interfaces/AutocompleteFilterProps.md"
            },
            {
              "text": "AutocompleteIndicatorProps",
              "link": "/../component-library/interfaces/AutocompleteIndicatorProps.md"
            },
            {
              "text": "AutocompletePopoverProps",
              "link": "/../component-library/interfaces/AutocompletePopoverProps.md"
            },
            {
              "text": "AutocompleteRootProps",
              "link": "/../component-library/interfaces/AutocompleteRootProps.md"
            },
            {
              "text": "AutocompleteTriggerProps",
              "link": "/../component-library/interfaces/AutocompleteTriggerProps.md"
            },
            {
              "text": "AutocompleteValueProps",
              "link": "/../component-library/interfaces/AutocompleteValueProps.md"
            },
            {
              "text": "BreadcrumbsItemProps",
              "link": "/../component-library/interfaces/BreadcrumbsItemProps.md"
            },
            {
              "text": "BreadcrumbsRootProps",
              "link": "/../component-library/interfaces/BreadcrumbsRootProps.md"
            },
            {
              "text": "ButtonGroupRootProps",
              "link": "/../component-library/interfaces/ButtonGroupRootProps.md"
            },
            {
              "text": "ButtonGroupSeparatorProps",
              "link": "/../component-library/interfaces/ButtonGroupSeparatorProps.md"
            },
            {
              "text": "ButtonRootProps",
              "link": "/../component-library/interfaces/ButtonRootProps.md"
            },
            {
              "text": "CalendarCellIndicatorProps",
              "link": "/../component-library/interfaces/CalendarCellIndicatorProps.md"
            },
            {
              "text": "CalendarCellProps",
              "link": "/../component-library/interfaces/CalendarCellProps.md"
            },
            {
              "text": "CalendarGridBodyProps",
              "link": "/../component-library/interfaces/CalendarGridBodyProps.md"
            },
            {
              "text": "CalendarGridHeaderProps",
              "link": "/../component-library/interfaces/CalendarGridHeaderProps.md"
            },
            {
              "text": "CalendarGridProps",
              "link": "/../component-library/interfaces/CalendarGridProps.md"
            },
            {
              "text": "CalendarHeaderCellProps",
              "link": "/../component-library/interfaces/CalendarHeaderCellProps.md"
            },
            {
              "text": "CalendarHeaderProps",
              "link": "/../component-library/interfaces/CalendarHeaderProps.md"
            },
            {
              "text": "CalendarHeadingProps",
              "link": "/../component-library/interfaces/CalendarHeadingProps.md"
            },
            {
              "text": "CalendarNavButtonProps",
              "link": "/../component-library/interfaces/CalendarNavButtonProps.md"
            },
            {
              "text": "CalendarRootProps",
              "link": "/../component-library/interfaces/CalendarRootProps.md"
            },
            {
              "text": "CardContentProps",
              "link": "/../component-library/interfaces/CardContentProps.md"
            },
            {
              "text": "CardDescriptionProps",
              "link": "/../component-library/interfaces/CardDescriptionProps.md"
            },
            {
              "text": "CardFooterProps",
              "link": "/../component-library/interfaces/CardFooterProps.md"
            },
            {
              "text": "CardHeaderProps",
              "link": "/../component-library/interfaces/CardHeaderProps.md"
            },
            {
              "text": "CardProps",
              "link": "/../component-library/interfaces/CardProps.md"
            },
            {
              "text": "CardTitleProps",
              "link": "/../component-library/interfaces/CardTitleProps.md"
            },
            {
              "text": "CheckboxContentProps",
              "link": "/../component-library/interfaces/CheckboxContentProps.md"
            },
            {
              "text": "CheckboxControlProps",
              "link": "/../component-library/interfaces/CheckboxControlProps.md"
            },
            {
              "text": "CheckboxGroupProps",
              "link": "/../component-library/interfaces/CheckboxGroupProps.md"
            },
            {
              "text": "CheckboxIndicatorProps",
              "link": "/../component-library/interfaces/CheckboxIndicatorProps.md"
            },
            {
              "text": "CheckboxRootProps",
              "link": "/../component-library/interfaces/CheckboxRootProps.md"
            },
            {
              "text": "ChipProps",
              "link": "/../component-library/interfaces/ChipProps.md"
            },
            {
              "text": "CloseButtonRootProps",
              "link": "/../component-library/interfaces/CloseButtonRootProps.md"
            },
            {
              "text": "CodeProps",
              "link": "/../component-library/interfaces/CodeProps.md"
            },
            {
              "text": "ComboBoxInputGroupProps",
              "link": "/../component-library/interfaces/ComboBoxInputGroupProps.md"
            },
            {
              "text": "ComboBoxPopoverProps",
              "link": "/../component-library/interfaces/ComboBoxPopoverProps.md"
            },
            {
              "text": "ComboBoxRootProps",
              "link": "/../component-library/interfaces/ComboBoxRootProps.md"
            },
            {
              "text": "ComboBoxTriggerProps",
              "link": "/../component-library/interfaces/ComboBoxTriggerProps.md"
            },
            {
              "text": "CustomAvatarFallbackProps",
              "link": "/../component-library/interfaces/CustomAvatarFallbackProps.md"
            },
            {
              "text": "CustomAvatarImageProps",
              "link": "/../component-library/interfaces/CustomAvatarImageProps.md"
            },
            {
              "text": "CustomAvatarRootProps",
              "link": "/../component-library/interfaces/CustomAvatarRootProps.md"
            },
            {
              "text": "CustomBadgeProps",
              "link": "/../component-library/interfaces/CustomBadgeProps.md"
            },
            {
              "text": "DateFieldRootProps",
              "link": "/../component-library/interfaces/DateFieldRootProps.md"
            },
            {
              "text": "DateInputGroupInputContainerProps",
              "link": "/../component-library/interfaces/DateInputGroupInputContainerProps.md"
            },
            {
              "text": "DateInputGroupInputProps",
              "link": "/../component-library/interfaces/DateInputGroupInputProps.md"
            },
            {
              "text": "DateInputGroupPrefixProps",
              "link": "/../component-library/interfaces/DateInputGroupPrefixProps.md"
            },
            {
              "text": "DateInputGroupRootProps",
              "link": "/../component-library/interfaces/DateInputGroupRootProps.md"
            },
            {
              "text": "DateInputGroupSegmentProps",
              "link": "/../component-library/interfaces/DateInputGroupSegmentProps.md"
            },
            {
              "text": "DateInputGroupSuffixProps",
              "link": "/../component-library/interfaces/DateInputGroupSuffixProps.md"
            },
            {
              "text": "DatePickerPopoverProps",
              "link": "/../component-library/interfaces/DatePickerPopoverProps.md"
            },
            {
              "text": "DatePickerRootProps",
              "link": "/../component-library/interfaces/DatePickerRootProps.md"
            },
            {
              "text": "DatePickerTriggerIndicatorProps",
              "link": "/../component-library/interfaces/DatePickerTriggerIndicatorProps.md"
            },
            {
              "text": "DatePickerTriggerProps",
              "link": "/../component-library/interfaces/DatePickerTriggerProps.md"
            },
            {
              "text": "DateRangePickerPopoverProps",
              "link": "/../component-library/interfaces/DateRangePickerPopoverProps.md"
            },
            {
              "text": "DateRangePickerRangeSeparatorProps",
              "link": "/../component-library/interfaces/DateRangePickerRangeSeparatorProps.md"
            },
            {
              "text": "DateRangePickerRootProps",
              "link": "/../component-library/interfaces/DateRangePickerRootProps.md"
            },
            {
              "text": "DateRangePickerTriggerIndicatorProps",
              "link": "/../component-library/interfaces/DateRangePickerTriggerIndicatorProps.md"
            },
            {
              "text": "DateRangePickerTriggerProps",
              "link": "/../component-library/interfaces/DateRangePickerTriggerProps.md"
            },
            {
              "text": "DescriptionRootProps",
              "link": "/../component-library/interfaces/DescriptionRootProps.md"
            },
            {
              "text": "DrawerBackdropProps",
              "link": "/../component-library/interfaces/DrawerBackdropProps.md"
            },
            {
              "text": "DrawerBodyProps",
              "link": "/../component-library/interfaces/DrawerBodyProps.md"
            },
            {
              "text": "DrawerCloseTriggerProps",
              "link": "/../component-library/interfaces/DrawerCloseTriggerProps.md"
            },
            {
              "text": "DrawerContentProps",
              "link": "/../component-library/interfaces/DrawerContentProps.md"
            },
            {
              "text": "DrawerDialogProps",
              "link": "/../component-library/interfaces/DrawerDialogProps.md"
            },
            {
              "text": "DrawerFooterProps",
              "link": "/../component-library/interfaces/DrawerFooterProps.md"
            },
            {
              "text": "DrawerHandleProps",
              "link": "/../component-library/interfaces/DrawerHandleProps.md"
            },
            {
              "text": "DrawerHeaderProps",
              "link": "/../component-library/interfaces/DrawerHeaderProps.md"
            },
            {
              "text": "DrawerHeadingProps",
              "link": "/../component-library/interfaces/DrawerHeadingProps.md"
            },
            {
              "text": "DrawerRootProps",
              "link": "/../component-library/interfaces/DrawerRootProps.md"
            },
            {
              "text": "DrawerTriggerProps",
              "link": "/../component-library/interfaces/DrawerTriggerProps.md"
            },
            {
              "text": "DropdownItemIndicatorProps",
              "link": "/../component-library/interfaces/DropdownItemIndicatorProps.md"
            },
            {
              "text": "DropdownItemProps",
              "link": "/../component-library/interfaces/DropdownItemProps.md"
            },
            {
              "text": "DropdownMenuProps",
              "link": "/../component-library/interfaces/DropdownMenuProps.md"
            },
            {
              "text": "DropdownPopoverProps",
              "link": "/../component-library/interfaces/DropdownPopoverProps.md"
            },
            {
              "text": "DropdownRootProps",
              "link": "/../component-library/interfaces/DropdownRootProps.md"
            },
            {
              "text": "DropdownSectionProps",
              "link": "/../component-library/interfaces/DropdownSectionProps.md"
            },
            {
              "text": "DropdownSubmenuIndicatorProps",
              "link": "/../component-library/interfaces/DropdownSubmenuIndicatorProps.md"
            },
            {
              "text": "DropdownSubmenuTriggerProps",
              "link": "/../component-library/interfaces/DropdownSubmenuTriggerProps.md"
            },
            {
              "text": "DropdownTriggerProps",
              "link": "/../component-library/interfaces/DropdownTriggerProps.md"
            },
            {
              "text": "EmptyStateRootProps",
              "link": "/../component-library/interfaces/EmptyStateRootProps.md"
            },
            {
              "text": "ErrorMessageRootProps",
              "link": "/../component-library/interfaces/ErrorMessageRootProps.md"
            },
            {
              "text": "FieldErrorRootProps",
              "link": "/../component-library/interfaces/FieldErrorRootProps.md"
            },
            {
              "text": "FieldGroupProps",
              "link": "/../component-library/interfaces/FieldGroupProps.md"
            },
            {
              "text": "FieldsetActionsProps",
              "link": "/../component-library/interfaces/FieldsetActionsProps.md"
            },
            {
              "text": "FieldsetLegendProps",
              "link": "/../component-library/interfaces/FieldsetLegendProps.md"
            },
            {
              "text": "FieldsetRootProps",
              "link": "/../component-library/interfaces/FieldsetRootProps.md"
            },
            {
              "text": "FormRootProps",
              "link": "/../component-library/interfaces/FormRootProps.md"
            },
            {
              "text": "HeaderRootProps",
              "link": "/../component-library/interfaces/HeaderRootProps.md"
            },
            {
              "text": "HeadingProps",
              "link": "/../component-library/interfaces/HeadingProps.md"
            },
            {
              "text": "InputGroupInputProps",
              "link": "/../component-library/interfaces/InputGroupInputProps.md"
            },
            {
              "text": "InputGroupPrefixProps",
              "link": "/../component-library/interfaces/InputGroupPrefixProps.md"
            },
            {
              "text": "InputGroupRootProps",
              "link": "/../component-library/interfaces/InputGroupRootProps.md"
            },
            {
              "text": "InputGroupSuffixProps",
              "link": "/../component-library/interfaces/InputGroupSuffixProps.md"
            },
            {
              "text": "InputGroupTextAreaProps",
              "link": "/../component-library/interfaces/InputGroupTextAreaProps.md"
            },
            {
              "text": "InputRootProps",
              "link": "/../component-library/interfaces/InputRootProps.md"
            },
            {
              "text": "LabelRootProps",
              "link": "/../component-library/interfaces/LabelRootProps.md"
            },
            {
              "text": "LinkIconProps",
              "link": "/../component-library/interfaces/LinkIconProps.md"
            },
            {
              "text": "LinkRootProps",
              "link": "/../component-library/interfaces/LinkRootProps.md"
            },
            {
              "text": "ListBoxItemIndicatorProps",
              "link": "/../component-library/interfaces/ListBoxItemIndicatorProps.md"
            },
            {
              "text": "ListBoxItemRootProps",
              "link": "/../component-library/interfaces/ListBoxItemRootProps.md"
            },
            {
              "text": "ListBoxRootProps",
              "link": "/../component-library/interfaces/ListBoxRootProps.md"
            },
            {
              "text": "ListBoxSectionRootProps",
              "link": "/../component-library/interfaces/ListBoxSectionRootProps.md"
            },
            {
              "text": "ModalBackdropProps",
              "link": "/../component-library/interfaces/ModalBackdropProps.md"
            },
            {
              "text": "ModalBodyProps",
              "link": "/../component-library/interfaces/ModalBodyProps.md"
            },
            {
              "text": "ModalCloseTriggerProps",
              "link": "/../component-library/interfaces/ModalCloseTriggerProps.md"
            },
            {
              "text": "ModalContainerProps",
              "link": "/../component-library/interfaces/ModalContainerProps.md"
            },
            {
              "text": "ModalDialogProps",
              "link": "/../component-library/interfaces/ModalDialogProps.md"
            },
            {
              "text": "ModalFooterProps",
              "link": "/../component-library/interfaces/ModalFooterProps.md"
            },
            {
              "text": "ModalHeaderProps",
              "link": "/../component-library/interfaces/ModalHeaderProps.md"
            },
            {
              "text": "ModalHeadingProps",
              "link": "/../component-library/interfaces/ModalHeadingProps.md"
            },
            {
              "text": "ModalIconProps",
              "link": "/../component-library/interfaces/ModalIconProps.md"
            },
            {
              "text": "ModalRootProps",
              "link": "/../component-library/interfaces/ModalRootProps.md"
            },
            {
              "text": "ModalTriggerProps",
              "link": "/../component-library/interfaces/ModalTriggerProps.md"
            },
            {
              "text": "NumberFieldDecrementButtonProps",
              "link": "/../component-library/interfaces/NumberFieldDecrementButtonProps.md"
            },
            {
              "text": "NumberFieldGroupProps",
              "link": "/../component-library/interfaces/NumberFieldGroupProps.md"
            },
            {
              "text": "NumberFieldIncrementButtonProps",
              "link": "/../component-library/interfaces/NumberFieldIncrementButtonProps.md"
            },
            {
              "text": "NumberFieldInputProps",
              "link": "/../component-library/interfaces/NumberFieldInputProps.md"
            },
            {
              "text": "NumberFieldRootProps",
              "link": "/../component-library/interfaces/NumberFieldRootProps.md"
            },
            {
              "text": "PaginationContentProps",
              "link": "/../component-library/interfaces/PaginationContentProps.md"
            },
            {
              "text": "PaginationEllipsisProps",
              "link": "/../component-library/interfaces/PaginationEllipsisProps.md"
            },
            {
              "text": "PaginationItemProps",
              "link": "/../component-library/interfaces/PaginationItemProps.md"
            },
            {
              "text": "PaginationLinkProps",
              "link": "/../component-library/interfaces/PaginationLinkProps.md"
            },
            {
              "text": "PaginationNextIconProps",
              "link": "/../component-library/interfaces/PaginationNextIconProps.md"
            },
            {
              "text": "PaginationNextProps",
              "link": "/../component-library/interfaces/PaginationNextProps.md"
            },
            {
              "text": "PaginationPreviousIconProps",
              "link": "/../component-library/interfaces/PaginationPreviousIconProps.md"
            },
            {
              "text": "PaginationPreviousProps",
              "link": "/../component-library/interfaces/PaginationPreviousProps.md"
            },
            {
              "text": "PaginationRootProps",
              "link": "/../component-library/interfaces/PaginationRootProps.md"
            },
            {
              "text": "PaginationSummaryProps",
              "link": "/../component-library/interfaces/PaginationSummaryProps.md"
            },
            {
              "text": "ParagraphProps",
              "link": "/../component-library/interfaces/ParagraphProps.md"
            },
            {
              "text": "PopoverContentProps",
              "link": "/../component-library/interfaces/PopoverContentProps.md"
            },
            {
              "text": "PopoverTriggerProps",
              "link": "/../component-library/interfaces/PopoverTriggerProps.md"
            },
            {
              "text": "ProgressBarFillProps",
              "link": "/../component-library/interfaces/ProgressBarFillProps.md"
            },
            {
              "text": "ProgressBarOutputProps",
              "link": "/../component-library/interfaces/ProgressBarOutputProps.md"
            },
            {
              "text": "ProgressBarRootProps",
              "link": "/../component-library/interfaces/ProgressBarRootProps.md"
            },
            {
              "text": "ProgressBarTrackProps",
              "link": "/../component-library/interfaces/ProgressBarTrackProps.md"
            },
            {
              "text": "ProseProps",
              "link": "/../component-library/interfaces/ProseProps.md"
            },
            {
              "text": "RadioContentProps",
              "link": "/../component-library/interfaces/RadioContentProps.md"
            },
            {
              "text": "RadioControlProps",
              "link": "/../component-library/interfaces/RadioControlProps.md"
            },
            {
              "text": "RadioGroupRootProps",
              "link": "/../component-library/interfaces/RadioGroupRootProps.md"
            },
            {
              "text": "RadioIndicatorProps",
              "link": "/../component-library/interfaces/RadioIndicatorProps.md"
            },
            {
              "text": "RadioRootProps",
              "link": "/../component-library/interfaces/RadioRootProps.md"
            },
            {
              "text": "SearchFieldClearButtonProps",
              "link": "/../component-library/interfaces/SearchFieldClearButtonProps.md"
            },
            {
              "text": "SearchFieldGroupProps",
              "link": "/../component-library/interfaces/SearchFieldGroupProps.md"
            },
            {
              "text": "SearchFieldInputProps",
              "link": "/../component-library/interfaces/SearchFieldInputProps.md"
            },
            {
              "text": "SearchFieldRootProps",
              "link": "/../component-library/interfaces/SearchFieldRootProps.md"
            },
            {
              "text": "SearchFieldSearchIconProps",
              "link": "/../component-library/interfaces/SearchFieldSearchIconProps.md"
            },
            {
              "text": "SelectIndicatorProps",
              "link": "/../component-library/interfaces/SelectIndicatorProps.md"
            },
            {
              "text": "SelectPopoverProps",
              "link": "/../component-library/interfaces/SelectPopoverProps.md"
            },
            {
              "text": "SelectRootProps",
              "link": "/../component-library/interfaces/SelectRootProps.md"
            },
            {
              "text": "SelectTriggerProps",
              "link": "/../component-library/interfaces/SelectTriggerProps.md"
            },
            {
              "text": "SelectValueProps",
              "link": "/../component-library/interfaces/SelectValueProps.md"
            },
            {
              "text": "SeparatorRootProps",
              "link": "/../component-library/interfaces/SeparatorRootProps.md"
            },
            {
              "text": "SkeletonRootProps",
              "link": "/../component-library/interfaces/SkeletonRootProps.md"
            },
            {
              "text": "SpinnerRootProps",
              "link": "/../component-library/interfaces/SpinnerRootProps.md"
            },
            {
              "text": "SurfaceRootProps",
              "link": "/../component-library/interfaces/SurfaceRootProps.md"
            },
            {
              "text": "SwitchContentProps",
              "link": "/../component-library/interfaces/SwitchContentProps.md"
            },
            {
              "text": "SwitchControlProps",
              "link": "/../component-library/interfaces/SwitchControlProps.md"
            },
            {
              "text": "SwitchGroupRootProps",
              "link": "/../component-library/interfaces/SwitchGroupRootProps.md"
            },
            {
              "text": "SwitchIconProps",
              "link": "/../component-library/interfaces/SwitchIconProps.md"
            },
            {
              "text": "SwitchRootProps",
              "link": "/../component-library/interfaces/SwitchRootProps.md"
            },
            {
              "text": "SwitchThumbProps",
              "link": "/../component-library/interfaces/SwitchThumbProps.md"
            },
            {
              "text": "TagRootProps",
              "link": "/../component-library/interfaces/TagRootProps.md"
            },
            {
              "text": "TextAreaRootProps",
              "link": "/../component-library/interfaces/TextAreaRootProps.md"
            },
            {
              "text": "TextFieldRootProps",
              "link": "/../component-library/interfaces/TextFieldRootProps.md"
            },
            {
              "text": "TimeFieldRootProps",
              "link": "/../component-library/interfaces/TimeFieldRootProps.md"
            },
            {
              "text": "ToastCloseButtonProps",
              "link": "/../component-library/interfaces/ToastCloseButtonProps.md"
            },
            {
              "text": "ToastContentProps",
              "link": "/../component-library/interfaces/ToastContentProps.md"
            },
            {
              "text": "ToastContentValue",
              "link": "/../component-library/interfaces/ToastContentValue.md"
            },
            {
              "text": "ToastDescriptionProps",
              "link": "/../component-library/interfaces/ToastDescriptionProps.md"
            },
            {
              "text": "ToastIndicatorProps",
              "link": "/../component-library/interfaces/ToastIndicatorProps.md"
            },
            {
              "text": "ToastProps",
              "link": "/../component-library/interfaces/ToastProps.md"
            },
            {
              "text": "ToastProviderProps",
              "link": "/../component-library/interfaces/ToastProviderProps.md"
            },
            {
              "text": "ToastQueueOptions",
              "link": "/../component-library/interfaces/ToastQueueOptions.md"
            },
            {
              "text": "ToastTitleProps",
              "link": "/../component-library/interfaces/ToastTitleProps.md"
            },
            {
              "text": "ToggleButtonGroupRootProps",
              "link": "/../component-library/interfaces/ToggleButtonGroupRootProps.md"
            },
            {
              "text": "ToggleButtonGroupSeparatorProps",
              "link": "/../component-library/interfaces/ToggleButtonGroupSeparatorProps.md"
            },
            {
              "text": "ToggleButtonRootProps",
              "link": "/../component-library/interfaces/ToggleButtonRootProps.md"
            },
            {
              "text": "ToolbarRootProps",
              "link": "/../component-library/interfaces/ToolbarRootProps.md"
            },
            {
              "text": "TooltipContentProps",
              "link": "/../component-library/interfaces/TooltipContentProps.md"
            },
            {
              "text": "TooltipTriggerProps",
              "link": "/../component-library/interfaces/TooltipTriggerProps.md"
            },
            {
              "text": "TypographyRootProps",
              "link": "/../component-library/interfaces/TypographyRootProps.md"
            },
            {
              "text": "YearPickerContextValue",
              "link": "/../component-library/interfaces/YearPickerContextValue.md"
            }
          ]
        },
        {
          "text": "Type Aliases",
          "collapsed": true,
          "items": [
            {
              "text": "Accordion",
              "link": "/../component-library/types/Accordion.md"
            },
            {
              "text": "AccordionVariants",
              "link": "/../component-library/types/AccordionVariants.md"
            },
            {
              "text": "Alert",
              "link": "/../component-library/types/Alert.md"
            },
            {
              "text": "AlertDialog",
              "link": "/../component-library/types/AlertDialog.md"
            },
            {
              "text": "AlertDialogVariants",
              "link": "/../component-library/types/AlertDialogVariants.md"
            },
            {
              "text": "AlertVariants",
              "link": "/../component-library/types/AlertVariants.md"
            },
            {
              "text": "Autocomplete",
              "link": "/../component-library/types/Autocomplete.md"
            },
            {
              "text": "AutocompleteVariants",
              "link": "/../component-library/types/AutocompleteVariants.md"
            },
            {
              "text": "Breadcrumbs",
              "link": "/../component-library/types/Breadcrumbs.md"
            },
            {
              "text": "BreadcrumbsVariants",
              "link": "/../component-library/types/BreadcrumbsVariants.md"
            },
            {
              "text": "Button",
              "link": "/../component-library/types/Button.md"
            },
            {
              "text": "ButtonGroup",
              "link": "/../component-library/types/ButtonGroup.md"
            },
            {
              "text": "ButtonGroupContext",
              "link": "/../component-library/types/ButtonGroupContext.md"
            },
            {
              "text": "ButtonGroupVariants",
              "link": "/../component-library/types/ButtonGroupVariants.md"
            },
            {
              "text": "ButtonVariants",
              "link": "/../component-library/types/ButtonVariants.md"
            },
            {
              "text": "Calendar",
              "link": "/../component-library/types/Calendar.md"
            },
            {
              "text": "CalendarSelectionMode",
              "link": "/../component-library/types/CalendarSelectionMode.md"
            },
            {
              "text": "CalendarVariants",
              "link": "/../component-library/types/CalendarVariants.md"
            },
            {
              "text": "Card",
              "link": "/../component-library/types/Card.md"
            },
            {
              "text": "CardVariants",
              "link": "/../component-library/types/CardVariants.md"
            },
            {
              "text": "Checkbox",
              "link": "/../component-library/types/Checkbox.md"
            },
            {
              "text": "CheckboxGroupVariants",
              "link": "/../component-library/types/CheckboxGroupVariants.md"
            },
            {
              "text": "CheckboxVariants",
              "link": "/../component-library/types/CheckboxVariants.md"
            },
            {
              "text": "Chip",
              "link": "/../component-library/types/Chip.md"
            },
            {
              "text": "ChipVariants",
              "link": "/../component-library/types/ChipVariants.md"
            },
            {
              "text": "CloseButton",
              "link": "/../component-library/types/CloseButton.md"
            },
            {
              "text": "CloseButtonVariants",
              "link": "/../component-library/types/CloseButtonVariants.md"
            },
            {
              "text": "ComboBox",
              "link": "/../component-library/types/ComboBox.md"
            },
            {
              "text": "ComboBoxContext",
              "link": "/../component-library/types/ComboBoxContext.md"
            },
            {
              "text": "ComboBoxVariants",
              "link": "/../component-library/types/ComboBoxVariants.md"
            },
            {
              "text": "CustomAvatarVariants",
              "link": "/../component-library/types/CustomAvatarVariants.md"
            },
            {
              "text": "customInputVariants",
              "link": "/../component-library/types/customInputVariants.md"
            },
            {
              "text": "DateField",
              "link": "/../component-library/types/DateField.md"
            },
            {
              "text": "DateFieldVariants",
              "link": "/../component-library/types/DateFieldVariants.md"
            },
            {
              "text": "DateInputGroup",
              "link": "/../component-library/types/DateInputGroup.md"
            },
            {
              "text": "DateInputGroupVariants",
              "link": "/../component-library/types/DateInputGroupVariants.md"
            },
            {
              "text": "DatePicker",
              "link": "/../component-library/types/DatePicker.md"
            },
            {
              "text": "DatePickerVariants",
              "link": "/../component-library/types/DatePickerVariants.md"
            },
            {
              "text": "DateRangePicker",
              "link": "/../component-library/types/DateRangePicker.md"
            },
            {
              "text": "DateRangePickerVariants",
              "link": "/../component-library/types/DateRangePickerVariants.md"
            },
            {
              "text": "Description",
              "link": "/../component-library/types/Description.md"
            },
            {
              "text": "DescriptionVariants",
              "link": "/../component-library/types/DescriptionVariants.md"
            },
            {
              "text": "Drawer",
              "link": "/../component-library/types/Drawer.md"
            },
            {
              "text": "DrawerVariants",
              "link": "/../component-library/types/DrawerVariants.md"
            },
            {
              "text": "Dropdown",
              "link": "/../component-library/types/Dropdown.md"
            },
            {
              "text": "DropdownVariants",
              "link": "/../component-library/types/DropdownVariants.md"
            },
            {
              "text": "EmptyState",
              "link": "/../component-library/types/EmptyState.md"
            },
            {
              "text": "EmptyStateVariants",
              "link": "/../component-library/types/EmptyStateVariants.md"
            },
            {
              "text": "ErrorMessage",
              "link": "/../component-library/types/ErrorMessage.md"
            },
            {
              "text": "ErrorMessageVariants",
              "link": "/../component-library/types/ErrorMessageVariants.md"
            },
            {
              "text": "FieldError",
              "link": "/../component-library/types/FieldError.md"
            },
            {
              "text": "FieldErrorVariants",
              "link": "/../component-library/types/FieldErrorVariants.md"
            },
            {
              "text": "Fieldset",
              "link": "/../component-library/types/Fieldset.md"
            },
            {
              "text": "FieldsetVariants",
              "link": "/../component-library/types/FieldsetVariants.md"
            },
            {
              "text": "Form",
              "link": "/../component-library/types/Form.md"
            },
            {
              "text": "Header",
              "link": "/../component-library/types/Header.md"
            },
            {
              "text": "Input",
              "link": "/../component-library/types/Input.md"
            },
            {
              "text": "InputGroup",
              "link": "/../component-library/types/InputGroup.md"
            },
            {
              "text": "InputGroupVariants",
              "link": "/../component-library/types/InputGroupVariants.md"
            },
            {
              "text": "InputVariants",
              "link": "/../component-library/types/InputVariants.md"
            },
            {
              "text": "Label",
              "link": "/../component-library/types/Label.md"
            },
            {
              "text": "LabelVariants",
              "link": "/../component-library/types/LabelVariants.md"
            },
            {
              "text": "Link",
              "link": "/../component-library/types/Link.md"
            },
            {
              "text": "LinkVariants",
              "link": "/../component-library/types/LinkVariants.md"
            },
            {
              "text": "ListBox",
              "link": "/../component-library/types/ListBox.md"
            },
            {
              "text": "ListBoxItem",
              "link": "/../component-library/types/ListBoxItem.md"
            },
            {
              "text": "ListBoxItemVariants",
              "link": "/../component-library/types/ListBoxItemVariants.md"
            },
            {
              "text": "ListBoxSection",
              "link": "/../component-library/types/ListBoxSection.md"
            },
            {
              "text": "ListBoxSectionVariants",
              "link": "/../component-library/types/ListBoxSectionVariants.md"
            },
            {
              "text": "ListBoxVariants",
              "link": "/../component-library/types/ListBoxVariants.md"
            },
            {
              "text": "Modal",
              "link": "/../component-library/types/Modal.md"
            },
            {
              "text": "ModalVariants",
              "link": "/../component-library/types/ModalVariants.md"
            },
            {
              "text": "NumberField",
              "link": "/../component-library/types/NumberField.md"
            },
            {
              "text": "NumberFieldVariants",
              "link": "/../component-library/types/NumberFieldVariants.md"
            },
            {
              "text": "Pagination",
              "link": "/../component-library/types/Pagination.md"
            },
            {
              "text": "PaginationVariants",
              "link": "/../component-library/types/PaginationVariants.md"
            },
            {
              "text": "Popover",
              "link": "/../component-library/types/Popover.md"
            },
            {
              "text": "PopoverArrowProps",
              "link": "/../component-library/types/PopoverArrowProps.md"
            },
            {
              "text": "PopoverDialogProps",
              "link": "/../component-library/types/PopoverDialogProps.md"
            },
            {
              "text": "PopoverHeadingProps",
              "link": "/../component-library/types/PopoverHeadingProps.md"
            },
            {
              "text": "PopoverRootProps",
              "link": "/../component-library/types/PopoverRootProps.md"
            },
            {
              "text": "PopoverVariants",
              "link": "/../component-library/types/PopoverVariants.md"
            },
            {
              "text": "ProgressBar",
              "link": "/../component-library/types/ProgressBar.md"
            },
            {
              "text": "ProgressBarVariants",
              "link": "/../component-library/types/ProgressBarVariants.md"
            },
            {
              "text": "Radio",
              "link": "/../component-library/types/Radio.md"
            },
            {
              "text": "RadioGroup",
              "link": "/../component-library/types/RadioGroup.md"
            },
            {
              "text": "RadioGroupVariants",
              "link": "/../component-library/types/RadioGroupVariants.md"
            },
            {
              "text": "RadioVariants",
              "link": "/../component-library/types/RadioVariants.md"
            },
            {
              "text": "SearchField",
              "link": "/../component-library/types/SearchField.md"
            },
            {
              "text": "SearchFieldVariants",
              "link": "/../component-library/types/SearchFieldVariants.md"
            },
            {
              "text": "Select",
              "link": "/../component-library/types/Select.md"
            },
            {
              "text": "SelectVariants",
              "link": "/../component-library/types/SelectVariants.md"
            },
            {
              "text": "Separator",
              "link": "/../component-library/types/Separator.md"
            },
            {
              "text": "SeparatorVariants",
              "link": "/../component-library/types/SeparatorVariants.md"
            },
            {
              "text": "Skeleton",
              "link": "/../component-library/types/Skeleton.md"
            },
            {
              "text": "SkeletonVariants",
              "link": "/../component-library/types/SkeletonVariants.md"
            },
            {
              "text": "Spinner",
              "link": "/../component-library/types/Spinner.md"
            },
            {
              "text": "SpinnerVariants",
              "link": "/../component-library/types/SpinnerVariants.md"
            },
            {
              "text": "Surface",
              "link": "/../component-library/types/Surface.md"
            },
            {
              "text": "SurfaceContext",
              "link": "/../component-library/types/SurfaceContext.md"
            },
            {
              "text": "SurfaceVariants",
              "link": "/../component-library/types/SurfaceVariants.md"
            },
            {
              "text": "Switch",
              "link": "/../component-library/types/Switch.md"
            },
            {
              "text": "SwitchGroup",
              "link": "/../component-library/types/SwitchGroup.md"
            },
            {
              "text": "SwitchGroupVariants",
              "link": "/../component-library/types/SwitchGroupVariants.md"
            },
            {
              "text": "SwitchVariants",
              "link": "/../component-library/types/SwitchVariants.md"
            },
            {
              "text": "Tag",
              "link": "/../component-library/types/Tag.md"
            },
            {
              "text": "TagGroup",
              "link": "/../component-library/types/TagGroup.md"
            },
            {
              "text": "TagGroupContext",
              "link": "/../component-library/types/TagGroupContext.md"
            },
            {
              "text": "TagGroupListProps",
              "link": "/../component-library/types/TagGroupListProps.md"
            },
            {
              "text": "TagGroupRootProps",
              "link": "/../component-library/types/TagGroupRootProps.md"
            },
            {
              "text": "TagGroupVariants",
              "link": "/../component-library/types/TagGroupVariants.md"
            },
            {
              "text": "TagRemoveButtonProps",
              "link": "/../component-library/types/TagRemoveButtonProps.md"
            },
            {
              "text": "TagVariants",
              "link": "/../component-library/types/TagVariants.md"
            },
            {
              "text": "TextArea",
              "link": "/../component-library/types/TextArea.md"
            },
            {
              "text": "TextAreaVariants",
              "link": "/../component-library/types/TextAreaVariants.md"
            },
            {
              "text": "TextField",
              "link": "/../component-library/types/TextField.md"
            },
            {
              "text": "TextFieldContext",
              "link": "/../component-library/types/TextFieldContext.md"
            },
            {
              "text": "TextFieldVariants",
              "link": "/../component-library/types/TextFieldVariants.md"
            },
            {
              "text": "TimeField",
              "link": "/../component-library/types/TimeField.md"
            },
            {
              "text": "TimeFieldVariants",
              "link": "/../component-library/types/TimeFieldVariants.md"
            },
            {
              "text": "Toast",
              "link": "/../component-library/types/Toast.md"
            },
            {
              "text": "ToastComponent",
              "link": "/../component-library/types/ToastComponent.md"
            },
            {
              "text": "ToastVariants",
              "link": "/../component-library/types/ToastVariants.md"
            },
            {
              "text": "ToggleButton",
              "link": "/../component-library/types/ToggleButton.md"
            },
            {
              "text": "ToggleButtonGroup",
              "link": "/../component-library/types/ToggleButtonGroup.md"
            },
            {
              "text": "ToggleButtonGroupContext",
              "link": "/../component-library/types/ToggleButtonGroupContext.md"
            },
            {
              "text": "ToggleButtonGroupVariants",
              "link": "/../component-library/types/ToggleButtonGroupVariants.md"
            },
            {
              "text": "ToggleButtonVariants",
              "link": "/../component-library/types/ToggleButtonVariants.md"
            },
            {
              "text": "Toolbar",
              "link": "/../component-library/types/Toolbar.md"
            },
            {
              "text": "ToolbarVariants",
              "link": "/../component-library/types/ToolbarVariants.md"
            },
            {
              "text": "Tooltip",
              "link": "/../component-library/types/Tooltip.md"
            },
            {
              "text": "TooltipArrowProps",
              "link": "/../component-library/types/TooltipArrowProps.md"
            },
            {
              "text": "TooltipRootProps",
              "link": "/../component-library/types/TooltipRootProps.md"
            },
            {
              "text": "TooltipVariants",
              "link": "/../component-library/types/TooltipVariants.md"
            },
            {
              "text": "Typography",
              "link": "/../component-library/types/Typography.md"
            },
            {
              "text": "TypographyVariants",
              "link": "/../component-library/types/TypographyVariants.md"
            }
          ]
        },
        {
          "text": "Variables",
          "collapsed": true,
          "items": [
            {
              "text": "Accordion",
              "link": "/../component-library/variables/Accordion.md"
            },
            {
              "text": "AccordionBody",
              "link": "/../component-library/variables/AccordionBody.md"
            },
            {
              "text": "AccordionHeading",
              "link": "/../component-library/variables/AccordionHeading.md"
            },
            {
              "text": "AccordionIndicator",
              "link": "/../component-library/variables/AccordionIndicator.md"
            },
            {
              "text": "AccordionItem",
              "link": "/../component-library/variables/AccordionItem.md"
            },
            {
              "text": "AccordionPanel",
              "link": "/../component-library/variables/AccordionPanel.md"
            },
            {
              "text": "AccordionRoot",
              "link": "/../component-library/variables/AccordionRoot.md"
            },
            {
              "text": "AccordionTrigger",
              "link": "/../component-library/variables/AccordionTrigger.md"
            },
            {
              "text": "accordionVariants",
              "link": "/../component-library/variables/accordionVariants.md"
            },
            {
              "text": "Alert",
              "link": "/../component-library/variables/Alert.md"
            },
            {
              "text": "AlertContent",
              "link": "/../component-library/variables/AlertContent.md"
            },
            {
              "text": "AlertDescription",
              "link": "/../component-library/variables/AlertDescription.md"
            },
            {
              "text": "AlertDialog",
              "link": "/../component-library/variables/AlertDialog.md"
            },
            {
              "text": "AlertDialogBackdrop",
              "link": "/../component-library/variables/AlertDialogBackdrop.md"
            },
            {
              "text": "AlertDialogBody",
              "link": "/../component-library/variables/AlertDialogBody.md"
            },
            {
              "text": "AlertDialogCloseTrigger",
              "link": "/../component-library/variables/AlertDialogCloseTrigger.md"
            },
            {
              "text": "AlertDialogContainer",
              "link": "/../component-library/variables/AlertDialogContainer.md"
            },
            {
              "text": "AlertDialogDialog",
              "link": "/../component-library/variables/AlertDialogDialog.md"
            },
            {
              "text": "AlertDialogFooter",
              "link": "/../component-library/variables/AlertDialogFooter.md"
            },
            {
              "text": "AlertDialogHeader",
              "link": "/../component-library/variables/AlertDialogHeader.md"
            },
            {
              "text": "AlertDialogHeading",
              "link": "/../component-library/variables/AlertDialogHeading.md"
            },
            {
              "text": "AlertDialogIcon",
              "link": "/../component-library/variables/AlertDialogIcon.md"
            },
            {
              "text": "AlertDialogRoot",
              "link": "/../component-library/variables/AlertDialogRoot.md"
            },
            {
              "text": "AlertDialogTrigger",
              "link": "/../component-library/variables/AlertDialogTrigger.md"
            },
            {
              "text": "alertDialogVariants",
              "link": "/../component-library/variables/alertDialogVariants.md"
            },
            {
              "text": "AlertIndicator",
              "link": "/../component-library/variables/AlertIndicator.md"
            },
            {
              "text": "AlertRoot",
              "link": "/../component-library/variables/AlertRoot.md"
            },
            {
              "text": "AlertTitle",
              "link": "/../component-library/variables/AlertTitle.md"
            },
            {
              "text": "alertVariants",
              "link": "/../component-library/variables/alertVariants.md"
            },
            {
              "text": "Autocomplete",
              "link": "/../component-library/variables/Autocomplete.md"
            },
            {
              "text": "AutocompleteClearButton",
              "link": "/../component-library/variables/AutocompleteClearButton.md"
            },
            {
              "text": "AutocompleteFilter",
              "link": "/../component-library/variables/AutocompleteFilter.md"
            },
            {
              "text": "AutocompleteIndicator",
              "link": "/../component-library/variables/AutocompleteIndicator.md"
            },
            {
              "text": "AutocompletePopover",
              "link": "/../component-library/variables/AutocompletePopover.md"
            },
            {
              "text": "AutocompleteRoot",
              "link": "/../component-library/variables/AutocompleteRoot.md"
            },
            {
              "text": "AutocompleteTrigger",
              "link": "/../component-library/variables/AutocompleteTrigger.md"
            },
            {
              "text": "AutocompleteValue",
              "link": "/../component-library/variables/AutocompleteValue.md"
            },
            {
              "text": "autocompleteVariants",
              "link": "/../component-library/variables/autocompleteVariants.md"
            },
            {
              "text": "Avatar",
              "link": "/../component-library/variables/Avatar.md"
            },
            {
              "text": "Breadcrumbs",
              "link": "/../component-library/variables/Breadcrumbs.md"
            },
            {
              "text": "BreadcrumbsItem",
              "link": "/../component-library/variables/BreadcrumbsItem.md"
            },
            {
              "text": "BreadcrumbsRoot",
              "link": "/../component-library/variables/BreadcrumbsRoot.md"
            },
            {
              "text": "breadcrumbsVariants",
              "link": "/../component-library/variables/breadcrumbsVariants.md"
            },
            {
              "text": "Button",
              "link": "/../component-library/variables/Button.md"
            },
            {
              "text": "BUTTON_GROUP_CHILD",
              "link": "/../component-library/variables/BUTTON_GROUP_CHILD.md"
            },
            {
              "text": "ButtonGroup",
              "link": "/../component-library/variables/ButtonGroup.md"
            },
            {
              "text": "ButtonGroupContext",
              "link": "/../component-library/variables/ButtonGroupContext.md"
            },
            {
              "text": "ButtonGroupRoot",
              "link": "/../component-library/variables/ButtonGroupRoot.md"
            },
            {
              "text": "ButtonGroupSeparator",
              "link": "/../component-library/variables/ButtonGroupSeparator.md"
            },
            {
              "text": "buttonGroupVariants",
              "link": "/../component-library/variables/buttonGroupVariants.md"
            },
            {
              "text": "buttonVariants",
              "link": "/../component-library/variables/buttonVariants.md"
            },
            {
              "text": "Calendar",
              "link": "/../component-library/variables/Calendar.md"
            },
            {
              "text": "CalendarCell",
              "link": "/../component-library/variables/CalendarCell.md"
            },
            {
              "text": "CalendarCellIndicator",
              "link": "/../component-library/variables/CalendarCellIndicator.md"
            },
            {
              "text": "CalendarGrid",
              "link": "/../component-library/variables/CalendarGrid.md"
            },
            {
              "text": "CalendarGridBody",
              "link": "/../component-library/variables/CalendarGridBody.md"
            },
            {
              "text": "CalendarGridHeader",
              "link": "/../component-library/variables/CalendarGridHeader.md"
            },
            {
              "text": "CalendarHeader",
              "link": "/../component-library/variables/CalendarHeader.md"
            },
            {
              "text": "CalendarHeaderCell",
              "link": "/../component-library/variables/CalendarHeaderCell.md"
            },
            {
              "text": "CalendarHeading",
              "link": "/../component-library/variables/CalendarHeading.md"
            },
            {
              "text": "CalendarNavButton",
              "link": "/../component-library/variables/CalendarNavButton.md"
            },
            {
              "text": "calendarVariants",
              "link": "/../component-library/variables/calendarVariants.md"
            },
            {
              "text": "Card",
              "link": "/../component-library/variables/Card.md"
            },
            {
              "text": "cardVariants",
              "link": "/../component-library/variables/cardVariants.md"
            },
            {
              "text": "Checkbox",
              "link": "/../component-library/variables/Checkbox.md"
            },
            {
              "text": "CheckboxContent",
              "link": "/../component-library/variables/CheckboxContent.md"
            },
            {
              "text": "CheckboxControl",
              "link": "/../component-library/variables/CheckboxControl.md"
            },
            {
              "text": "CheckboxGroup",
              "link": "/../component-library/variables/CheckboxGroup.md"
            },
            {
              "text": "checkboxGroupVariants",
              "link": "/../component-library/variables/checkboxGroupVariants.md"
            },
            {
              "text": "CheckboxIndicator",
              "link": "/../component-library/variables/CheckboxIndicator.md"
            },
            {
              "text": "CheckboxRoot",
              "link": "/../component-library/variables/CheckboxRoot.md"
            },
            {
              "text": "checkboxVariants",
              "link": "/../component-library/variables/checkboxVariants.md"
            },
            {
              "text": "Chip",
              "link": "/../component-library/variables/Chip.md"
            },
            {
              "text": "CloseButton",
              "link": "/../component-library/variables/CloseButton.md"
            },
            {
              "text": "CloseButtonRoot",
              "link": "/../component-library/variables/CloseButtonRoot.md"
            },
            {
              "text": "closeButtonVariants",
              "link": "/../component-library/variables/closeButtonVariants.md"
            },
            {
              "text": "Code",
              "link": "/../component-library/variables/Code.md"
            },
            {
              "text": "ComboBox",
              "link": "/../component-library/variables/ComboBox.md"
            },
            {
              "text": "ComboBoxContext",
              "link": "/../component-library/variables/ComboBoxContext.md"
            },
            {
              "text": "ComboBoxInputGroup",
              "link": "/../component-library/variables/ComboBoxInputGroup.md"
            },
            {
              "text": "ComboBoxPopover",
              "link": "/../component-library/variables/ComboBoxPopover.md"
            },
            {
              "text": "ComboBoxRoot",
              "link": "/../component-library/variables/ComboBoxRoot.md"
            },
            {
              "text": "ComboBoxTrigger",
              "link": "/../component-library/variables/ComboBoxTrigger.md"
            },
            {
              "text": "comboBoxVariants",
              "link": "/../component-library/variables/comboBoxVariants.md"
            },
            {
              "text": "customAvatarVariants",
              "link": "/../component-library/variables/customAvatarVariants.md"
            },
            {
              "text": "customChipVariants",
              "link": "/../component-library/variables/customChipVariants.md"
            },
            {
              "text": "DateField",
              "link": "/../component-library/variables/DateField.md"
            },
            {
              "text": "dateFieldVariants",
              "link": "/../component-library/variables/dateFieldVariants.md"
            },
            {
              "text": "DateInputGroup",
              "link": "/../component-library/variables/DateInputGroup.md"
            },
            {
              "text": "DateInputGroupInput",
              "link": "/../component-library/variables/DateInputGroupInput.md"
            },
            {
              "text": "DateInputGroupInputContainer",
              "link": "/../component-library/variables/DateInputGroupInputContainer.md"
            },
            {
              "text": "DateInputGroupPrefix",
              "link": "/../component-library/variables/DateInputGroupPrefix.md"
            },
            {
              "text": "DateInputGroupRoot",
              "link": "/../component-library/variables/DateInputGroupRoot.md"
            },
            {
              "text": "DateInputGroupSegment",
              "link": "/../component-library/variables/DateInputGroupSegment.md"
            },
            {
              "text": "DateInputGroupSuffix",
              "link": "/../component-library/variables/DateInputGroupSuffix.md"
            },
            {
              "text": "dateInputGroupVariants",
              "link": "/../component-library/variables/dateInputGroupVariants.md"
            },
            {
              "text": "DatePicker",
              "link": "/../component-library/variables/DatePicker.md"
            },
            {
              "text": "DatePickerPopover",
              "link": "/../component-library/variables/DatePickerPopover.md"
            },
            {
              "text": "DatePickerRoot",
              "link": "/../component-library/variables/DatePickerRoot.md"
            },
            {
              "text": "DatePickerTrigger",
              "link": "/../component-library/variables/DatePickerTrigger.md"
            },
            {
              "text": "DatePickerTriggerIndicator",
              "link": "/../component-library/variables/DatePickerTriggerIndicator.md"
            },
            {
              "text": "datePickerVariants",
              "link": "/../component-library/variables/datePickerVariants.md"
            },
            {
              "text": "DateRangePicker",
              "link": "/../component-library/variables/DateRangePicker.md"
            },
            {
              "text": "DateRangePickerPopover",
              "link": "/../component-library/variables/DateRangePickerPopover.md"
            },
            {
              "text": "DateRangePickerRangeSeparator",
              "link": "/../component-library/variables/DateRangePickerRangeSeparator.md"
            },
            {
              "text": "DateRangePickerRoot",
              "link": "/../component-library/variables/DateRangePickerRoot.md"
            },
            {
              "text": "DateRangePickerTrigger",
              "link": "/../component-library/variables/DateRangePickerTrigger.md"
            },
            {
              "text": "DateRangePickerTriggerIndicator",
              "link": "/../component-library/variables/DateRangePickerTriggerIndicator.md"
            },
            {
              "text": "dateRangePickerVariants",
              "link": "/../component-library/variables/dateRangePickerVariants.md"
            },
            {
              "text": "DEFAULT_GAP",
              "link": "/../component-library/variables/DEFAULT_GAP.md"
            },
            {
              "text": "DEFAULT_MAX_VISIBLE_TOAST",
              "link": "/../component-library/variables/DEFAULT_MAX_VISIBLE_TOAST.md"
            },
            {
              "text": "DEFAULT_TOAST_TIMEOUT",
              "link": "/../component-library/variables/DEFAULT_TOAST_TIMEOUT.md"
            },
            {
              "text": "Description",
              "link": "/../component-library/variables/Description.md"
            },
            {
              "text": "DescriptionRoot",
              "link": "/../component-library/variables/DescriptionRoot.md"
            },
            {
              "text": "descriptionVariants",
              "link": "/../component-library/variables/descriptionVariants.md"
            },
            {
              "text": "Drawer",
              "link": "/../component-library/variables/Drawer.md"
            },
            {
              "text": "DrawerBackdrop",
              "link": "/../component-library/variables/DrawerBackdrop.md"
            },
            {
              "text": "DrawerBody",
              "link": "/../component-library/variables/DrawerBody.md"
            },
            {
              "text": "DrawerCloseTrigger",
              "link": "/../component-library/variables/DrawerCloseTrigger.md"
            },
            {
              "text": "DrawerContent",
              "link": "/../component-library/variables/DrawerContent.md"
            },
            {
              "text": "DrawerDialog",
              "link": "/../component-library/variables/DrawerDialog.md"
            },
            {
              "text": "DrawerFooter",
              "link": "/../component-library/variables/DrawerFooter.md"
            },
            {
              "text": "DrawerHandle",
              "link": "/../component-library/variables/DrawerHandle.md"
            },
            {
              "text": "DrawerHeader",
              "link": "/../component-library/variables/DrawerHeader.md"
            },
            {
              "text": "DrawerHeading",
              "link": "/../component-library/variables/DrawerHeading.md"
            },
            {
              "text": "DrawerRoot",
              "link": "/../component-library/variables/DrawerRoot.md"
            },
            {
              "text": "DrawerTrigger",
              "link": "/../component-library/variables/DrawerTrigger.md"
            },
            {
              "text": "drawerVariants",
              "link": "/../component-library/variables/drawerVariants.md"
            },
            {
              "text": "Dropdown",
              "link": "/../component-library/variables/Dropdown.md"
            },
            {
              "text": "DropdownItem",
              "link": "/../component-library/variables/DropdownItem.md"
            },
            {
              "text": "DropdownItemIndicator",
              "link": "/../component-library/variables/DropdownItemIndicator.md"
            },
            {
              "text": "DropdownPopover",
              "link": "/../component-library/variables/DropdownPopover.md"
            },
            {
              "text": "DropdownRoot",
              "link": "/../component-library/variables/DropdownRoot.md"
            },
            {
              "text": "DropdownSection",
              "link": "/../component-library/variables/DropdownSection.md"
            },
            {
              "text": "DropdownSubmenuIndicator",
              "link": "/../component-library/variables/DropdownSubmenuIndicator.md"
            },
            {
              "text": "DropdownSubmenuTrigger",
              "link": "/../component-library/variables/DropdownSubmenuTrigger.md"
            },
            {
              "text": "DropdownTrigger",
              "link": "/../component-library/variables/DropdownTrigger.md"
            },
            {
              "text": "dropdownVariants",
              "link": "/../component-library/variables/dropdownVariants.md"
            },
            {
              "text": "EmptyState",
              "link": "/../component-library/variables/EmptyState.md"
            },
            {
              "text": "EmptyStateRoot",
              "link": "/../component-library/variables/EmptyStateRoot.md"
            },
            {
              "text": "emptyStateVariants",
              "link": "/../component-library/variables/emptyStateVariants.md"
            },
            {
              "text": "ErrorMessage",
              "link": "/../component-library/variables/ErrorMessage.md"
            },
            {
              "text": "ErrorMessageRoot",
              "link": "/../component-library/variables/ErrorMessageRoot.md"
            },
            {
              "text": "errorMessageVariants",
              "link": "/../component-library/variables/errorMessageVariants.md"
            },
            {
              "text": "FieldError",
              "link": "/../component-library/variables/FieldError.md"
            },
            {
              "text": "FieldErrorRoot",
              "link": "/../component-library/variables/FieldErrorRoot.md"
            },
            {
              "text": "fieldErrorVariants",
              "link": "/../component-library/variables/fieldErrorVariants.md"
            },
            {
              "text": "FieldGroup",
              "link": "/../component-library/variables/FieldGroup.md"
            },
            {
              "text": "Fieldset",
              "link": "/../component-library/variables/Fieldset.md"
            },
            {
              "text": "FieldsetActions",
              "link": "/../component-library/variables/FieldsetActions.md"
            },
            {
              "text": "FieldsetLegend",
              "link": "/../component-library/variables/FieldsetLegend.md"
            },
            {
              "text": "FieldsetRoot",
              "link": "/../component-library/variables/FieldsetRoot.md"
            },
            {
              "text": "fieldsetVariants",
              "link": "/../component-library/variables/fieldsetVariants.md"
            },
            {
              "text": "Form",
              "link": "/../component-library/variables/Form.md"
            },
            {
              "text": "FormRoot",
              "link": "/../component-library/variables/FormRoot.md"
            },
            {
              "text": "Header",
              "link": "/../component-library/variables/Header.md"
            },
            {
              "text": "HeaderRoot",
              "link": "/../component-library/variables/HeaderRoot.md"
            },
            {
              "text": "headerVariants",
              "link": "/../component-library/variables/headerVariants.md"
            },
            {
              "text": "Heading",
              "link": "/../component-library/variables/Heading.md"
            },
            {
              "text": "Input",
              "link": "/../component-library/variables/Input.md"
            },
            {
              "text": "InputGroup",
              "link": "/../component-library/variables/InputGroup.md"
            },
            {
              "text": "InputGroupInput",
              "link": "/../component-library/variables/InputGroupInput.md"
            },
            {
              "text": "InputGroupPrefix",
              "link": "/../component-library/variables/InputGroupPrefix.md"
            },
            {
              "text": "InputGroupRoot",
              "link": "/../component-library/variables/InputGroupRoot.md"
            },
            {
              "text": "InputGroupSuffix",
              "link": "/../component-library/variables/InputGroupSuffix.md"
            },
            {
              "text": "InputGroupTextArea",
              "link": "/../component-library/variables/InputGroupTextArea.md"
            },
            {
              "text": "inputGroupVariants",
              "link": "/../component-library/variables/inputGroupVariants.md"
            },
            {
              "text": "Label",
              "link": "/../component-library/variables/Label.md"
            },
            {
              "text": "LabelRoot",
              "link": "/../component-library/variables/LabelRoot.md"
            },
            {
              "text": "labelVariants",
              "link": "/../component-library/variables/labelVariants.md"
            },
            {
              "text": "Link",
              "link": "/../component-library/variables/Link.md"
            },
            {
              "text": "LinkIcon",
              "link": "/../component-library/variables/LinkIcon.md"
            },
            {
              "text": "LinkRoot",
              "link": "/../component-library/variables/LinkRoot.md"
            },
            {
              "text": "linkVariants",
              "link": "/../component-library/variables/linkVariants.md"
            },
            {
              "text": "ListBox",
              "link": "/../component-library/variables/ListBox.md"
            },
            {
              "text": "ListBoxItem",
              "link": "/../component-library/variables/ListBoxItem.md"
            },
            {
              "text": "ListBoxItemIndicator",
              "link": "/../component-library/variables/ListBoxItemIndicator.md"
            },
            {
              "text": "ListBoxItemRoot",
              "link": "/../component-library/variables/ListBoxItemRoot.md"
            },
            {
              "text": "listboxItemVariants",
              "link": "/../component-library/variables/listboxItemVariants.md"
            },
            {
              "text": "ListBoxSection",
              "link": "/../component-library/variables/ListBoxSection.md"
            },
            {
              "text": "ListBoxSectionRoot",
              "link": "/../component-library/variables/ListBoxSectionRoot.md"
            },
            {
              "text": "listboxSectionVariants",
              "link": "/../component-library/variables/listboxSectionVariants.md"
            },
            {
              "text": "listboxVariants",
              "link": "/../component-library/variables/listboxVariants.md"
            },
            {
              "text": "Modal",
              "link": "/../component-library/variables/Modal.md"
            },
            {
              "text": "ModalBackdrop",
              "link": "/../component-library/variables/ModalBackdrop.md"
            },
            {
              "text": "ModalBody",
              "link": "/../component-library/variables/ModalBody.md"
            },
            {
              "text": "ModalCloseTrigger",
              "link": "/../component-library/variables/ModalCloseTrigger.md"
            },
            {
              "text": "ModalContainer",
              "link": "/../component-library/variables/ModalContainer.md"
            },
            {
              "text": "ModalDialog",
              "link": "/../component-library/variables/ModalDialog.md"
            },
            {
              "text": "ModalFooter",
              "link": "/../component-library/variables/ModalFooter.md"
            },
            {
              "text": "ModalHeader",
              "link": "/../component-library/variables/ModalHeader.md"
            },
            {
              "text": "ModalHeading",
              "link": "/../component-library/variables/ModalHeading.md"
            },
            {
              "text": "ModalIcon",
              "link": "/../component-library/variables/ModalIcon.md"
            },
            {
              "text": "ModalRoot",
              "link": "/../component-library/variables/ModalRoot.md"
            },
            {
              "text": "ModalTrigger",
              "link": "/../component-library/variables/ModalTrigger.md"
            },
            {
              "text": "modalVariants",
              "link": "/../component-library/variables/modalVariants.md"
            },
            {
              "text": "NumberField",
              "link": "/../component-library/variables/NumberField.md"
            },
            {
              "text": "NumberFieldDecrementButton",
              "link": "/../component-library/variables/NumberFieldDecrementButton.md"
            },
            {
              "text": "NumberFieldGroup",
              "link": "/../component-library/variables/NumberFieldGroup.md"
            },
            {
              "text": "NumberFieldIncrementButton",
              "link": "/../component-library/variables/NumberFieldIncrementButton.md"
            },
            {
              "text": "NumberFieldInput",
              "link": "/../component-library/variables/NumberFieldInput.md"
            },
            {
              "text": "NumberFieldRoot",
              "link": "/../component-library/variables/NumberFieldRoot.md"
            },
            {
              "text": "numberFieldVariants",
              "link": "/../component-library/variables/numberFieldVariants.md"
            },
            {
              "text": "Pagination",
              "link": "/../component-library/variables/Pagination.md"
            },
            {
              "text": "PaginationContent",
              "link": "/../component-library/variables/PaginationContent.md"
            },
            {
              "text": "PaginationEllipsis",
              "link": "/../component-library/variables/PaginationEllipsis.md"
            },
            {
              "text": "PaginationItem",
              "link": "/../component-library/variables/PaginationItem.md"
            },
            {
              "text": "PaginationLink",
              "link": "/../component-library/variables/PaginationLink.md"
            },
            {
              "text": "PaginationNext",
              "link": "/../component-library/variables/PaginationNext.md"
            },
            {
              "text": "PaginationNextIcon",
              "link": "/../component-library/variables/PaginationNextIcon.md"
            },
            {
              "text": "PaginationPrevious",
              "link": "/../component-library/variables/PaginationPrevious.md"
            },
            {
              "text": "PaginationPreviousIcon",
              "link": "/../component-library/variables/PaginationPreviousIcon.md"
            },
            {
              "text": "PaginationRoot",
              "link": "/../component-library/variables/PaginationRoot.md"
            },
            {
              "text": "PaginationSummary",
              "link": "/../component-library/variables/PaginationSummary.md"
            },
            {
              "text": "paginationVariants",
              "link": "/../component-library/variables/paginationVariants.md"
            },
            {
              "text": "Paragraph",
              "link": "/../component-library/variables/Paragraph.md"
            },
            {
              "text": "Popover",
              "link": "/../component-library/variables/Popover.md"
            },
            {
              "text": "PopoverArrow",
              "link": "/../component-library/variables/PopoverArrow.md"
            },
            {
              "text": "PopoverContent",
              "link": "/../component-library/variables/PopoverContent.md"
            },
            {
              "text": "PopoverDialog",
              "link": "/../component-library/variables/PopoverDialog.md"
            },
            {
              "text": "PopoverHeading",
              "link": "/../component-library/variables/PopoverHeading.md"
            },
            {
              "text": "PopoverRoot",
              "link": "/../component-library/variables/PopoverRoot.md"
            },
            {
              "text": "PopoverTrigger",
              "link": "/../component-library/variables/PopoverTrigger.md"
            },
            {
              "text": "popoverVariants",
              "link": "/../component-library/variables/popoverVariants.md"
            },
            {
              "text": "ProgressBar",
              "link": "/../component-library/variables/ProgressBar.md"
            },
            {
              "text": "ProgressBarFill",
              "link": "/../component-library/variables/ProgressBarFill.md"
            },
            {
              "text": "ProgressBarOutput",
              "link": "/../component-library/variables/ProgressBarOutput.md"
            },
            {
              "text": "ProgressBarRoot",
              "link": "/../component-library/variables/ProgressBarRoot.md"
            },
            {
              "text": "ProgressBarTrack",
              "link": "/../component-library/variables/ProgressBarTrack.md"
            },
            {
              "text": "progressBarVariants",
              "link": "/../component-library/variables/progressBarVariants.md"
            },
            {
              "text": "Prose",
              "link": "/../component-library/variables/Prose.md"
            },
            {
              "text": "Radio",
              "link": "/../component-library/variables/Radio.md"
            },
            {
              "text": "RadioContent",
              "link": "/../component-library/variables/RadioContent.md"
            },
            {
              "text": "RadioControl",
              "link": "/../component-library/variables/RadioControl.md"
            },
            {
              "text": "RadioGroup",
              "link": "/../component-library/variables/RadioGroup.md"
            },
            {
              "text": "RadioGroupRoot",
              "link": "/../component-library/variables/RadioGroupRoot.md"
            },
            {
              "text": "radioGroupVariants",
              "link": "/../component-library/variables/radioGroupVariants.md"
            },
            {
              "text": "RadioIndicator",
              "link": "/../component-library/variables/RadioIndicator.md"
            },
            {
              "text": "RadioRoot",
              "link": "/../component-library/variables/RadioRoot.md"
            },
            {
              "text": "radioVariants",
              "link": "/../component-library/variables/radioVariants.md"
            },
            {
              "text": "SearchField",
              "link": "/../component-library/variables/SearchField.md"
            },
            {
              "text": "SearchFieldClearButton",
              "link": "/../component-library/variables/SearchFieldClearButton.md"
            },
            {
              "text": "SearchFieldGroup",
              "link": "/../component-library/variables/SearchFieldGroup.md"
            },
            {
              "text": "SearchFieldInput",
              "link": "/../component-library/variables/SearchFieldInput.md"
            },
            {
              "text": "SearchFieldRoot",
              "link": "/../component-library/variables/SearchFieldRoot.md"
            },
            {
              "text": "SearchFieldSearchIcon",
              "link": "/../component-library/variables/SearchFieldSearchIcon.md"
            },
            {
              "text": "searchFieldVariants",
              "link": "/../component-library/variables/searchFieldVariants.md"
            },
            {
              "text": "Select",
              "link": "/../component-library/variables/Select.md"
            },
            {
              "text": "SelectIndicator",
              "link": "/../component-library/variables/SelectIndicator.md"
            },
            {
              "text": "SelectPopover",
              "link": "/../component-library/variables/SelectPopover.md"
            },
            {
              "text": "SelectRoot",
              "link": "/../component-library/variables/SelectRoot.md"
            },
            {
              "text": "SelectTrigger",
              "link": "/../component-library/variables/SelectTrigger.md"
            },
            {
              "text": "SelectValue",
              "link": "/../component-library/variables/SelectValue.md"
            },
            {
              "text": "selectVariants",
              "link": "/../component-library/variables/selectVariants.md"
            },
            {
              "text": "Separator",
              "link": "/../component-library/variables/Separator.md"
            },
            {
              "text": "SeparatorRoot",
              "link": "/../component-library/variables/SeparatorRoot.md"
            },
            {
              "text": "separatorVariants",
              "link": "/../component-library/variables/separatorVariants.md"
            },
            {
              "text": "Skeleton",
              "link": "/../component-library/variables/Skeleton.md"
            },
            {
              "text": "SkeletonRoot",
              "link": "/../component-library/variables/SkeletonRoot.md"
            },
            {
              "text": "skeletonVariants",
              "link": "/../component-library/variables/skeletonVariants.md"
            },
            {
              "text": "Spinner",
              "link": "/../component-library/variables/Spinner.md"
            },
            {
              "text": "SpinnerRoot",
              "link": "/../component-library/variables/SpinnerRoot.md"
            },
            {
              "text": "spinnerVariants",
              "link": "/../component-library/variables/spinnerVariants.md"
            },
            {
              "text": "Surface",
              "link": "/../component-library/variables/Surface.md"
            },
            {
              "text": "SurfaceContext",
              "link": "/../component-library/variables/SurfaceContext.md"
            },
            {
              "text": "SurfaceRoot",
              "link": "/../component-library/variables/SurfaceRoot.md"
            },
            {
              "text": "surfaceVariants",
              "link": "/../component-library/variables/surfaceVariants.md"
            },
            {
              "text": "Switch",
              "link": "/../component-library/variables/Switch.md"
            },
            {
              "text": "SwitchContent",
              "link": "/../component-library/variables/SwitchContent.md"
            },
            {
              "text": "SwitchControl",
              "link": "/../component-library/variables/SwitchControl.md"
            },
            {
              "text": "SwitchGroup",
              "link": "/../component-library/variables/SwitchGroup.md"
            },
            {
              "text": "SwitchGroupRoot",
              "link": "/../component-library/variables/SwitchGroupRoot.md"
            },
            {
              "text": "switchGroupVariants",
              "link": "/../component-library/variables/switchGroupVariants.md"
            },
            {
              "text": "SwitchIcon",
              "link": "/../component-library/variables/SwitchIcon.md"
            },
            {
              "text": "SwitchRoot",
              "link": "/../component-library/variables/SwitchRoot.md"
            },
            {
              "text": "SwitchThumb",
              "link": "/../component-library/variables/SwitchThumb.md"
            },
            {
              "text": "switchVariants",
              "link": "/../component-library/variables/switchVariants.md"
            },
            {
              "text": "Table",
              "link": "/../component-library/variables/Table.md"
            },
            {
              "text": "Tag",
              "link": "/../component-library/variables/Tag.md"
            },
            {
              "text": "TagGroup",
              "link": "/../component-library/variables/TagGroup.md"
            },
            {
              "text": "TagGroupContext",
              "link": "/../component-library/variables/TagGroupContext.md"
            },
            {
              "text": "TagGroupList",
              "link": "/../component-library/variables/TagGroupList.md"
            },
            {
              "text": "TagGroupRoot",
              "link": "/../component-library/variables/TagGroupRoot.md"
            },
            {
              "text": "tagGroupVariants",
              "link": "/../component-library/variables/tagGroupVariants.md"
            },
            {
              "text": "TagRemoveButton",
              "link": "/../component-library/variables/TagRemoveButton.md"
            },
            {
              "text": "TagRoot",
              "link": "/../component-library/variables/TagRoot.md"
            },
            {
              "text": "tagVariants",
              "link": "/../component-library/variables/tagVariants.md"
            },
            {
              "text": "TextArea",
              "link": "/../component-library/variables/TextArea.md"
            },
            {
              "text": "TextAreaRoot",
              "link": "/../component-library/variables/TextAreaRoot.md"
            },
            {
              "text": "textAreaVariants",
              "link": "/../component-library/variables/textAreaVariants.md"
            },
            {
              "text": "TextField",
              "link": "/../component-library/variables/TextField.md"
            },
            {
              "text": "TextFieldContext",
              "link": "/../component-library/variables/TextFieldContext.md"
            },
            {
              "text": "TextFieldRoot",
              "link": "/../component-library/variables/TextFieldRoot.md"
            },
            {
              "text": "textFieldVariants",
              "link": "/../component-library/variables/textFieldVariants.md"
            },
            {
              "text": "TimeField",
              "link": "/../component-library/variables/TimeField.md"
            },
            {
              "text": "timeFieldVariants",
              "link": "/../component-library/variables/timeFieldVariants.md"
            },
            {
              "text": "toast",
              "link": "/../component-library/variables/toast.md"
            },
            {
              "text": "Toast",
              "link": "/../component-library/variables/Toast-1.md"
            },
            {
              "text": "ToastActionButton",
              "link": "/../component-library/variables/ToastActionButton.md"
            },
            {
              "text": "ToastCloseButton",
              "link": "/../component-library/variables/ToastCloseButton.md"
            },
            {
              "text": "ToastContent",
              "link": "/../component-library/variables/ToastContent.md"
            },
            {
              "text": "ToastDescription",
              "link": "/../component-library/variables/ToastDescription.md"
            },
            {
              "text": "ToastIndicator",
              "link": "/../component-library/variables/ToastIndicator.md"
            },
            {
              "text": "ToastProvider",
              "link": "/../component-library/variables/ToastProvider.md"
            },
            {
              "text": "toastQueue",
              "link": "/../component-library/variables/toastQueue.md"
            },
            {
              "text": "ToastTitle",
              "link": "/../component-library/variables/ToastTitle.md"
            },
            {
              "text": "toastVariants",
              "link": "/../component-library/variables/toastVariants.md"
            },
            {
              "text": "TOGGLE_BUTTON_GROUP_CHILD",
              "link": "/../component-library/variables/TOGGLE_BUTTON_GROUP_CHILD.md"
            },
            {
              "text": "ToggleButton",
              "link": "/../component-library/variables/ToggleButton.md"
            },
            {
              "text": "ToggleButtonGroup",
              "link": "/../component-library/variables/ToggleButtonGroup.md"
            },
            {
              "text": "ToggleButtonGroupContext",
              "link": "/../component-library/variables/ToggleButtonGroupContext.md"
            },
            {
              "text": "ToggleButtonGroupRoot",
              "link": "/../component-library/variables/ToggleButtonGroupRoot.md"
            },
            {
              "text": "ToggleButtonGroupSeparator",
              "link": "/../component-library/variables/ToggleButtonGroupSeparator.md"
            },
            {
              "text": "toggleButtonGroupVariants",
              "link": "/../component-library/variables/toggleButtonGroupVariants.md"
            },
            {
              "text": "ToggleButtonRoot",
              "link": "/../component-library/variables/ToggleButtonRoot.md"
            },
            {
              "text": "toggleButtonVariants",
              "link": "/../component-library/variables/toggleButtonVariants.md"
            },
            {
              "text": "Toolbar",
              "link": "/../component-library/variables/Toolbar.md"
            },
            {
              "text": "ToolbarRoot",
              "link": "/../component-library/variables/ToolbarRoot.md"
            },
            {
              "text": "toolbarVariants",
              "link": "/../component-library/variables/toolbarVariants.md"
            },
            {
              "text": "Tooltip",
              "link": "/../component-library/variables/Tooltip.md"
            },
            {
              "text": "TooltipArrow",
              "link": "/../component-library/variables/TooltipArrow.md"
            },
            {
              "text": "TooltipContent",
              "link": "/../component-library/variables/TooltipContent.md"
            },
            {
              "text": "TooltipRoot",
              "link": "/../component-library/variables/TooltipRoot.md"
            },
            {
              "text": "TooltipTrigger",
              "link": "/../component-library/variables/TooltipTrigger.md"
            },
            {
              "text": "tooltipVariants",
              "link": "/../component-library/variables/tooltipVariants.md"
            },
            {
              "text": "Typography",
              "link": "/../component-library/variables/Typography.md"
            },
            {
              "text": "TypographyRoot",
              "link": "/../component-library/variables/TypographyRoot.md"
            },
            {
              "text": "typographyVariants",
              "link": "/../component-library/variables/typographyVariants.md"
            },
            {
              "text": "YearPickerContext",
              "link": "/../component-library/variables/YearPickerContext.md"
            }
          ]
        },
        {
          "text": "Functions",
          "collapsed": true,
          "items": [
            {
              "text": "AdminHome",
              "link": "/../component-library/functions/AdminHome.md"
            },
            {
              "text": "AvatarFallback",
              "link": "/../component-library/functions/AvatarFallback.md"
            },
            {
              "text": "AvatarImage",
              "link": "/../component-library/functions/AvatarImage.md"
            },
            {
              "text": "AvatarRoot",
              "link": "/../component-library/functions/AvatarRoot.md"
            },
            {
              "text": "Badge",
              "link": "/../component-library/functions/Badge.md"
            },
            {
              "text": "ButtonRoot",
              "link": "/../component-library/functions/ButtonRoot.md"
            },
            {
              "text": "CalendarRoot",
              "link": "/../component-library/functions/CalendarRoot.md"
            },
            {
              "text": "CardContent",
              "link": "/../component-library/functions/CardContent.md"
            },
            {
              "text": "CardDescription",
              "link": "/../component-library/functions/CardDescription.md"
            },
            {
              "text": "CardFooter",
              "link": "/../component-library/functions/CardFooter.md"
            },
            {
              "text": "CardHeader",
              "link": "/../component-library/functions/CardHeader.md"
            },
            {
              "text": "CardRoot",
              "link": "/../component-library/functions/CardRoot.md"
            },
            {
              "text": "CardTitle",
              "link": "/../component-library/functions/CardTitle.md"
            },
            {
              "text": "DateFieldRoot",
              "link": "/../component-library/functions/DateFieldRoot.md"
            },
            {
              "text": "DropdownMenu",
              "link": "/../component-library/functions/DropdownMenu.md"
            },
            {
              "text": "ExternalLinkIcon",
              "link": "/../component-library/functions/ExternalLinkIcon.md"
            },
            {
              "text": "InputRoot",
              "link": "/../component-library/functions/InputRoot.md"
            },
            {
              "text": "ListBoxRoot",
              "link": "/../component-library/functions/ListBoxRoot.md"
            },
            {
              "text": "ProgressMeter",
              "link": "/../component-library/functions/ProgressMeter.md"
            },
            {
              "text": "TimeFieldRoot",
              "link": "/../component-library/functions/TimeFieldRoot.md"
            },
            {
              "text": "useCalendarOrRangeState",
              "link": "/../component-library/functions/useCalendarOrRangeState.md"
            },
            {
              "text": "useYearPicker",
              "link": "/../component-library/functions/useYearPicker.md"
            }
          ]
        }
      ]
    },
    {
      "text": "Outsider Docs",
      "items": [
        {
          "text": "WebEx / OAuth",
          "collapsed": true,
          "items": [
            {
              "text": "OAuth Flow",
              "link": "/../outsider-docs/webex/webex-oauth.md"
            }
          ]
        }
      ]
    }
  ],
  "socialLinks": [
    {
      "icon": "github",
      "link": "https://github.com/vuejs/vitepress"
    }
  ]
}

Page Data

{
  "title": "Runtime API Examples 🥳",
  "description": "",
  "frontmatter": {
    "outline": "deep"
  },
  "headers": [],
  "relativePath": "api-examples.md",
  "filePath": "api-examples.md"
}

Page Frontmatter

{
  "outline": "deep"
}

More

Check out the documentation for the full list of runtime APIs.