diff --git a/src/progress/Progress.tsx b/src/progress/Progress.tsx index 150e10db6..33742e9f1 100644 --- a/src/progress/Progress.tsx +++ b/src/progress/Progress.tsx @@ -6,30 +6,34 @@ import { reactive, onMounted, defineComponent, + ExtractPropTypes, } from 'vue'; import { truthProp, createNamespace, addUnit } from '../utils'; import { useExpose } from '../composables/use-expose'; const [name, bem] = createNamespace('progress'); +const props = { + color: String, + inactive: Boolean, + pivotText: String, + textColor: String, + showPivot: truthProp, + pivotColor: String, + trackColor: String, + strokeWidth: [Number, String], + percentage: { + type: [Number, String], + validator: (value: number | string) => value >= 0 && value <= 100, + }, +}; + +export type ProgressProps = ExtractPropTypes; + export default defineComponent({ name, - props: { - color: String, - inactive: Boolean, - pivotText: String, - textColor: String, - showPivot: truthProp, - pivotColor: String, - trackColor: String, - strokeWidth: [Number, String], - percentage: { - type: [Number, String], - required: true, - validator: (value: number | string) => value >= 0 && value <= 100, - }, - }, + props, setup(props) { const root = ref(); @@ -58,7 +62,7 @@ export default defineComponent({ const show = props.showPivot && text; if (show) { - const left = ((rootWidth - pivotWidth) * +percentage) / 100; + const left = ((rootWidth - pivotWidth) * +percentage!) / 100; const style = { color: textColor, left: `${left}px`, @@ -85,7 +89,7 @@ export default defineComponent({ }; const portionStyle = { background: background.value, - width: (state.rootWidth * +percentage) / 100 + 'px', + width: (state.rootWidth * +percentage!) / 100 + 'px', }; return ( diff --git a/src/progress/README.md b/src/progress/README.md index ceafbffd4..fbb2052a2 100644 --- a/src/progress/README.md +++ b/src/progress/README.md @@ -77,6 +77,19 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get Progress instance and call insta | --- | --- | --- | --- | | resize | Resize Progress when container element resized or visibility changed | - | - | +### Types + +Get the type definition of the Progress instance through `ProgressInstance`. + +```ts +import { ref } from 'vue'; +import type { ProgressInstance } from 'vant'; + +const progressRef = ref(); + +progressRef.value?.resize(); +``` + ### CSS Variables The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider). diff --git a/src/progress/README.zh-CN.md b/src/progress/README.zh-CN.md index e24dc63ce..37bfd92c2 100644 --- a/src/progress/README.zh-CN.md +++ b/src/progress/README.zh-CN.md @@ -81,6 +81,19 @@ app.use(Progress); | ------ | -------------------------------------------- | ---- | ------ | | resize | 外层元素大小变化后,可以调用此方法来触发重绘 | - | - | +### 类型定义 + +通过 `ProgressInstance` 获取 Progress 实例的类型定义(从 3.2.0 版本开始支持)。 + +```ts +import { ref } from 'vue'; +import type { ProgressInstance } from 'vant'; + +const progressRef = ref(); + +progressRef.value?.resize(); +``` + ### 样式变量 组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。 diff --git a/src/progress/index.ts b/src/progress/index.ts index aac193b71..3773a384f 100644 --- a/src/progress/index.ts +++ b/src/progress/index.ts @@ -5,3 +5,4 @@ const Progress = withInstall(_Progress); export default Progress; export { Progress }; +export type { ProgressInstance } from './types'; diff --git a/src/progress/types.ts b/src/progress/types.ts new file mode 100644 index 000000000..d626cde5e --- /dev/null +++ b/src/progress/types.ts @@ -0,0 +1,11 @@ +import type { ComponentPublicInstance } from 'vue'; +import type { ProgressProps } from './Progress'; + +export type ProgressExpose = { + resize: () => void; +}; + +export type ProgressInstance = ComponentPublicInstance< + ProgressProps, + ProgressExpose +>;