@progress/kendo-vue-progressbars 8.0.3-develop.1 → 8.0.3-develop.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,36 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { BaseProps } from '../../common/BaseProps';
9
+ import { ProgressBarAnimation } from './ProgressBarAnimation';
10
+ /**
11
+ * Represents the props of the [Kendo UI for Vue ProgressBar component]({% slug overview_progressbar %}).
12
+ */
13
+ export interface ProgressBarProps extends BaseProps {
14
+ /**
15
+ * Specifies the animation settings of the ProgressBar. Defaults to `false`.
16
+ * If boolean, enables or disables the default animation.
17
+ * Use ProgressBarAnimation to set slide animation with customizable duration option. Accepts a number in milliseconds.
18
+ */
19
+ animation?: boolean | ProgressBarAnimation;
20
+ /**
21
+ * Overrides the default label ([see example]({% slug progressbar_label %})).
22
+ */
23
+ label?: any;
24
+ /**
25
+ * Overrides the default label template ([see example]({% slug progressbar_label %})).
26
+ */
27
+ labelRender?: any;
28
+ /**
29
+ * Sets the visibility of the progress status label. Defaults to `true`.
30
+ */
31
+ labelVisible?: boolean;
32
+ /**
33
+ * Sets the position of the progress status label. Defaults to `end` ([see example]({% slug progressbar_label %})).
34
+ */
35
+ labelPlacement?: 'start' | 'center' | 'end' | any;
36
+ }