mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* chore: upgrade deps * chore: replace __ExtractPublicPropTypes with ExtractPublicPropTypes * fix: get rid of type errors * fix: resolve test errors with @vue/test-utils v2.4.6 * fix: resolve test errors with Vue 3.5.22 * ci: set pnpm flag * chore: update the Vue peer dependency version * Apply suggestion from @tolking Co-authored-by: qiang <qw13131wang@gmail.com> * docs: update example code Co-authored-by: warmthsea <2586244885@qq.com> * chore: remove csstype (#22487) * chore: fix merge code type error * chore: fix test:ssr error - Cannot read properties of undefined (reading 'getSSRProps') * chore: fix typecheck:vitest error * chore: update pnpm yaml file * test: fix collapse accordion error * chore: update deps * chore: fix type error * chore: lock file * chore: sync change sync with the remove of vue macro * refactor: use computed instead of eagerComputed * fix: timeline.test.tsx typecheck * chore: clean lock file try dont throw CodeFactor issues in ci did: - rm pnpm-lock.yaml - rm -rf ./**/node_modules - pnpm store prune - pnpm cache delete - pnpm install Also stay in 3.1.0 for vue-tsc in order to avoid the warnings of template refs, see https://github.com/vuejs/language-tools/issues/5815 * chore: format code --------- Co-authored-by: Dsaquel <291874700n@gmail.com> Co-authored-by: qiang <qw13131wang@gmail.com> Co-authored-by: warmthsea <2586244885@qq.com> Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com> Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com> Co-authored-by: btea <2356281422@qq.com>
112 lines
2.5 KiB
TypeScript
112 lines
2.5 KiB
TypeScript
import { buildProps, definePropType } from '@element-plus/utils'
|
|
|
|
import type {
|
|
ExtractPropTypes,
|
|
ExtractPublicPropTypes,
|
|
SVGAttributes,
|
|
} from 'vue'
|
|
import type Progress from './progress.vue'
|
|
|
|
export type ProgressColor = { color: string; percentage: number }
|
|
export type ProgressFn = (percentage: number) => string
|
|
|
|
export const progressProps = buildProps({
|
|
/**
|
|
* @description type of progress bar
|
|
*/
|
|
type: {
|
|
type: String,
|
|
default: 'line',
|
|
values: ['line', 'circle', 'dashboard'],
|
|
},
|
|
/**
|
|
* @description percentage, required
|
|
*/
|
|
percentage: {
|
|
type: Number,
|
|
default: 0,
|
|
validator: (val: number): boolean => val >= 0 && val <= 100,
|
|
},
|
|
/**
|
|
* @description the current status of progress bar
|
|
*/
|
|
status: {
|
|
type: String,
|
|
default: '',
|
|
values: ['', 'success', 'exception', 'warning'],
|
|
},
|
|
/**
|
|
* @description set indeterminate progress
|
|
*/
|
|
indeterminate: Boolean,
|
|
/**
|
|
* @description control the animation duration of indeterminate progress or striped flow progress
|
|
*/
|
|
duration: {
|
|
type: Number,
|
|
default: 3,
|
|
},
|
|
/**
|
|
* @description the width of progress bar
|
|
*/
|
|
strokeWidth: {
|
|
type: Number,
|
|
default: 6,
|
|
},
|
|
/**
|
|
* @description butt/circle/dashboard type shape at the end path
|
|
*/
|
|
strokeLinecap: {
|
|
type: definePropType<NonNullable<SVGAttributes['stroke-linecap']>>(String),
|
|
default: 'round',
|
|
},
|
|
/**
|
|
* @description whether to place the percentage inside progress bar, only works when `type` is 'line'
|
|
*/
|
|
textInside: Boolean,
|
|
/**
|
|
* @description the canvas width of circle progress bar
|
|
*/
|
|
width: {
|
|
type: Number,
|
|
default: 126,
|
|
},
|
|
/**
|
|
* @description whether to show percentage
|
|
*/
|
|
showText: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
/**
|
|
* @description background color of progress bar. Overrides `status` prop
|
|
*/
|
|
color: {
|
|
type: definePropType<string | ProgressColor[] | ProgressFn>([
|
|
String,
|
|
Array,
|
|
Function,
|
|
]),
|
|
default: '',
|
|
},
|
|
/**
|
|
* @description stripe over the progress bar's color
|
|
*/
|
|
striped: Boolean,
|
|
/**
|
|
* @description get the stripes to flow
|
|
*/
|
|
stripedFlow: Boolean,
|
|
/**
|
|
* @description custom text format
|
|
*/
|
|
format: {
|
|
type: definePropType<ProgressFn>(Function),
|
|
default: (percentage: number): string => `${percentage}%`,
|
|
},
|
|
} as const)
|
|
|
|
export type ProgressProps = ExtractPropTypes<typeof progressProps>
|
|
export type ProgressPropsPublic = ExtractPublicPropTypes<typeof progressProps>
|
|
export type ProgressInstance = InstanceType<typeof Progress> & unknown
|