UI LibraryUI Library
Guide
Components
Styling
Repo
Guide
Components
Styling
Repo
  • Guide

    • Introduction
    • Getting Started
  • Components

    • CataUiAccordion
    • CataUiAccordionItem
    • CataUiAlert
    • CataUiAnchorMenu
    • CataUiBadge
    • CataUiButton
    • CataUiCollapse
    • CataUiDraggable
    • CataUiDropdown
    • CataUiDropover
    • CataUiFileTree
    • CataUiIcon
    • CataUiIconSwitch
    • CataUiInput
    • CataUiInputCheckbox
    • CataUiInputColor
    • CataUiInputDate
    • CataUiInputGroup
    • CataUiInputRadio
    • CataUiInputSearch
    • CataUiInputSelect
    • CataUiMasonry
    • CataUiMasonryTile
    • CataUiLogo
    • CataUiModal
    • CataUiPaginate
    • CataUiProgress
    • CataUiSpinner
    • CataUiStatusLabel
    • CataUiSwitch
    • CataUiTable
    • CataUiTableAG
    • CataUiTableFooter
    • CataUiTabs
    • CataUiTabSwitch
    • CataUiTooltip
  • Styling

    • Colors
    • Icons
    • Typography
    • Utils

CataUiProgress

A progress indicator component that shows either a determinate progress bar or an infinite loading animation.

Examples

Determinate Progress

<CataUiProgress :progress="75" />

Infinite Progress

<CataUiProgress />

Custom Height

<CataUiProgress :progress="50" height="10px" />

Props

PropDescriptionTypeDefaultRequired
heightSets the height of the progress barString'5px'false
progressPercentage progress (0-100). If set to less than 0, displays an infinite animationNumber-1false

Usage Notes

  • Set a specific progress value (0-100) to show a determinate progress bar
  • Omit the progress prop or set it to a negative value to display an infinite loading animation
  • The component automatically handles progress values greater than 100, capping them at 100%
Prev
CataUiPaginate
Next
CataUiSpinner