mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
70 lines
1.2 KiB
TypeScript
70 lines
1.2 KiB
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { SvelteHTMLElements } from "svelte/elements";
|
|
|
|
type $RestProps = SvelteHTMLElements["div"];
|
|
|
|
type $Props = {
|
|
/**
|
|
* Specify the current value
|
|
* @default undefined
|
|
*/
|
|
value?: number;
|
|
|
|
/**
|
|
* Specify the maximum value
|
|
* @default 100
|
|
*/
|
|
max?: number;
|
|
|
|
/**
|
|
* Specify the kind of progress bar
|
|
* @default "default"
|
|
*/
|
|
kind?: "default" | "inline" | "indented";
|
|
|
|
/**
|
|
* Specify the status
|
|
* @default "active"
|
|
*/
|
|
status?: "active" | "finished" | "error";
|
|
|
|
/**
|
|
* Specify the size
|
|
* @default "md"
|
|
*/
|
|
size?: "sm" | "md";
|
|
|
|
/**
|
|
* Specify the label text
|
|
* @default ""
|
|
*/
|
|
labelText?: string;
|
|
|
|
/**
|
|
* Set to `true` to visually hide the label text
|
|
* @default false
|
|
*/
|
|
hideLabel?: boolean;
|
|
|
|
/**
|
|
* Specify the helper text
|
|
* @default ""
|
|
*/
|
|
helperText?: string;
|
|
|
|
/**
|
|
* Set an id for the progress bar element
|
|
* @default "ccs-" + Math.random().toString(36)
|
|
*/
|
|
id?: string;
|
|
|
|
[key: `data-${string}`]: any;
|
|
};
|
|
|
|
export type ProgressBarProps = Omit<$RestProps, keyof $Props> & $Props;
|
|
|
|
export default class ProgressBar extends SvelteComponentTyped<
|
|
ProgressBarProps,
|
|
Record<string, any>,
|
|
{ labelText: {} }
|
|
> {}
|