### API Documentation for Menu Component Source: https://context7_llms Dropdown and context menu component with keyboard navigation and accessibility support. ```APIDOC Menu Component API: Props: children: ReactNode (The element that triggers the menu, e.g., a Button) items: Array (Array of menu items) placement?: 'top' | 'bottom' | 'left' | 'right' (Position of the menu relative to the trigger) onSelect?: function (Callback function when a menu item is selected) open?: boolean (Controls the open state of the menu) onClose?: function (Callback when the menu is closed) className?: string (CSS class name for styling) MenuItem: label: string (Text for the menu item) value: string | number (Unique value for the menu item) onClick?: function (Callback for the menu item action) disabled?: boolean (If true, the menu item will be disabled) icon?: ReactNode (Icon to display next to the label) ``` -------------------------------- ### API Documentation for TabLayout Component Source: https://context7_llms Complete tabbed interface layout with content panels and navigation management. ```APIDOC TabLayout Component API: Props: children: ReactNode (Content for the tab panels, typically TabPanel components) tabs: Array (Array of tab items for the navigation bar) activeTab: string | number (Value of the currently active tab) onTabChange: function (Callback function when a tab is changed) className?: string (CSS class name for styling) TabItem: label: string (Text to display for the tab) value: string | number (Unique value for the tab) disabled?: boolean (If true, the tab will be disabled) TabPanel: value: string | number (Matches the value of the associated tab) children: ReactNode (Content to display when this tab is active) ``` -------------------------------- ### API Documentation for StepBar Component Source: https://context7_llms Multi-step process indicator showing progress through sequential workflows. ```APIDOC StepBar Component API: Props: steps: Array (Array of step items) currentStep: string | number (Value of the currently active step) onStepClick?: function (Callback when a step is clicked) className?: string (CSS class name for styling) StepItem: label: string (Text to display for the step) value: string | number (Unique value for the step) status?: 'completed' | 'active' | 'incomplete' | 'error' (Status of the step) disabled?: boolean (If true, the step will be disabled) ``` -------------------------------- ### API Documentation for Link Component Source: https://context7_llms Styled links for navigation and external references with consistent hover and focus states. ```APIDOC Link Component API: Props: href: string (URL to link to) children: ReactNode (Content of the link) target?: string (Specifies where to open the linked document) rel?: string (Specifies the relationship between the current document and the linked document) onClick?: function (Callback function when the link is clicked) disabled?: boolean (If true, the link will be disabled) className?: string (CSS class name for styling) style?: object (Inline CSS styles) ``` -------------------------------- ### API Documentation for Avatar Component Source: https://context7_llms User profile images and initials display with fallback options and customizable sizes. ```APIDOC Avatar Component API: Props: src?: string (URL of the image to display) alt?: string (Alternative text for the image) size?: 'small' | 'medium' | 'large' | 'xsmall' | 'xxlarge' (Size of the avatar) initials?: string (Initials to display if no image is provided) fallbackIcon?: ReactNode (Icon to display if image fails to load and no initials) label?: string (Accessible label for the avatar) className?: string (CSS class name for styling) ``` -------------------------------- ### API Documentation for SplitButton Component Source: https://context7_llms Button with integrated dropdown menu for primary action plus secondary options. ```APIDOC SplitButton Component API: Props: onClick?: function (Callback for the primary button action) children: ReactNode (Content for the primary button) menuItems: Array (Array of menu items for the dropdown) variant?: 'primary' | 'secondary' | 'destructive' (Visual style of the button) disabled?: boolean (If true, the button will be disabled) className?: string (CSS class name for styling) MenuItem: label: string (Text for the menu item) value: string | number (Unique value for the menu item) onClick?: function (Callback for the menu item action) disabled?: boolean (If true, the menu item will be disabled) ``` -------------------------------- ### Code Component API Source: https://context7_llms Syntax-highlighted code display with copy functionality and theme support. ```APIDOC Code: Description: Syntax-highlighted code display with copy functionality and theme support. ``` -------------------------------- ### API Documentation for Anchor Component Source: https://context7_llms Provides accessible anchor links with consistent styling and behavior patterns for internal and external navigation. ```APIDOC Anchor Component API: Props: href: string (URL to link to) children: ReactNode (Content of the link) target?: string (Specifies where to open the linked document) rel?: string (Specifies the relationship between the current document and the linked document) onClick?: function (Callback function when the link is clicked) className?: string (CSS class name for styling) style?: object (Inline CSS styles) ``` -------------------------------- ### CardLayout Component API Source: https://context7_llms Grid layout system for organizing cards with responsive column management. ```APIDOC CardLayout: Description: Grid layout system for organizing cards with responsive column management. ``` -------------------------------- ### API Documentation for Button Component Source: https://context7_llms Primary action buttons with multiple variants (primary, secondary, destructive) and states (loading, disabled). ```APIDOC Button Component API: Props: onClick?: function (Callback function when the button is clicked) children: ReactNode (Content of the button) variant?: 'primary' | 'secondary' | 'destructive' | 'flat' | 'text' (Visual style of the button) disabled?: boolean (If true, the button will be disabled) loading?: boolean (If true, a loading indicator will be shown) type?: 'button' | 'submit' | 'reset' (Type of the button) icon?: ReactNode (Icon to display within the button) className?: string (CSS class name for styling) ``` -------------------------------- ### API Documentation for TabBar Component Source: https://context7_llms Horizontal tab navigation component for switching between related content views. ```APIDOC TabBar Component API: Props: tabs: Array (Array of tab items) activeTab: string | number (Value of the currently active tab) onTabChange: function (Callback function when a tab is changed) className?: string (CSS class name for styling) TabItem: label: string (Text to display for the tab) value: string | number (Unique value for the tab) disabled?: boolean (If true, the tab will be disabled) ``` -------------------------------- ### WaitSpinner Component API Source: https://context7_llms Loading spinners for async operations with customizable size and styling. ```APIDOC WaitSpinner: Description: Loading spinners for async operations with customizable size and styling. ``` -------------------------------- ### Markdown Component API Source: https://context7_llms Markdown content rendering component with customizable styling and plugins. ```APIDOC Markdown: Description: Markdown content rendering component with customizable styling and plugins. ``` -------------------------------- ### ComboBox Component API Source: https://context7_llms Searchable dropdown with autocomplete and custom value creation. ```APIDOC ComboBox: Description: Searchable dropdown with autocomplete and custom value creation. ``` -------------------------------- ### JSONTree Component API Source: https://context7_llms Interactive JSON data visualization with expandable/collapsible nodes. ```APIDOC JSONTree: Description: Interactive JSON data visualization with expandable/collapsible nodes. ``` -------------------------------- ### Progress Component API Source: https://context7_llms Progress bars and loading indicators for showing task completion status. ```APIDOC Progress: Description: Progress bars and loading indicators for showing task completion status. ``` -------------------------------- ### API Documentation for ButtonGroup Component Source: https://context7_llms Container for grouping related buttons together with consistent spacing and alignment. ```APIDOC ButtonGroup Component API: Props: children: ReactNode (Button components to group) spacing?: 'none' | 'small' | 'medium' | 'large' (Spacing between buttons) alignment?: 'left' | 'center' | 'right' (Horizontal alignment of buttons) className?: string (CSS class name for styling) ``` -------------------------------- ### API Documentation for Breadcrumbs Component Source: https://context7_llms Navigation trail showing current page location within the application hierarchy. ```APIDOC Breadcrumbs Component API: Props: items: Array (Array of breadcrumb items) separator?: ReactNode (Custom separator between items) className?: string (CSS class name for styling) BreadcrumbItem: label: string (Text to display for the breadcrumb item) href?: string (URL for the breadcrumb item) onClick?: function (Callback function when the item is clicked) active?: boolean (If true, indicates the current page) ``` -------------------------------- ### Chip Component API Source: https://context7_llms Small labeled UI elements for tags, categories, and removable selections. ```APIDOC Chip: Description: Small labeled UI elements for tags, categories, and removable selections. ``` -------------------------------- ### DualListbox Component API Source: https://context7_llms Transfer items between two lists with search and bulk operations. ```APIDOC DualListbox: Description: Transfer items between two lists with search and bulk operations. ``` -------------------------------- ### Card Component API Source: https://context7_llms Content container with header, body, and footer sections for organizing related information. ```APIDOC Card: Description: Content container with header, body, and footer sections for organizing related information. ``` -------------------------------- ### Select Component API Source: https://context7_llms Dropdown selection component with search and grouping capabilities. ```APIDOC Select: Description: Dropdown selection component with search and grouping capabilities. ``` -------------------------------- ### Multiselect Component API Source: https://context7_llms Multiple selection dropdown with chips display and bulk selection options. ```APIDOC Multiselect: Description: Multiple selection dropdown with chips display and bulk selection options. ``` -------------------------------- ### Date Input Component API Source: https://context7_llms Date picker and date input component with calendar popup and range selection. ```APIDOC Date: Description: Date picker and date input component with calendar popup and range selection. ``` -------------------------------- ### MessageBar Component API Source: https://context7_llms Persistent notification bar for system-wide messages and status updates. ```APIDOC MessageBar: Description: Persistent notification bar for system-wide messages and status updates. ``` -------------------------------- ### TextArea Input Component API Source: https://context7_llms Multi-line text input field with resize options and character counting. ```APIDOC TextArea: Description: Multi-line text input field with resize options and character counting. ``` -------------------------------- ### Paginator Component API Source: https://context7_llms Pagination controls for large datasets with page size options and navigation. ```APIDOC Paginator: Description: Pagination controls for large datasets with page size options and navigation. ``` -------------------------------- ### Number Input Component API Source: https://context7_llms Numeric input with validation, step controls, and formatting options. ```APIDOC Number: Description: Numeric input with validation, step controls, and formatting options. ``` -------------------------------- ### Text Input Component API Source: https://context7_llms Single-line text input field with validation, placeholder, and formatting support. ```APIDOC Text: Description: Single-line text input field with validation, placeholder, and formatting support. ``` -------------------------------- ### Table Component API Source: https://context7_llms Enterprise data table with sorting, filtering, pagination, and row selection capabilities. ```APIDOC Table: Description: Enterprise data table with sorting, filtering, pagination, and row selection capabilities. ``` -------------------------------- ### Message Component API Source: https://context7_llms Alert and notification messages with different severity levels (info, warning, error, success). ```APIDOC Message: Description: Alert and notification messages with different severity levels (info, warning, error, success). ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.