@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.
- package/chunkprogressbar/ChunkProgressBar.d.ts +90 -0
- package/chunkprogressbar/interfaces/ChunkProgressBarProps.d.ts +17 -0
- package/common/BaseProps.d.ts +85 -0
- package/common/constants.d.ts +23 -0
- package/common/utils.d.ts +23 -0
- package/dist/cdn/js/kendo-vue-progressbars.js +1 -1
- package/index.d.mts +7 -391
- package/index.d.ts +7 -391
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -6
- package/progressbar/ProgressBar.d.ts +148 -0
- package/progressbar/interfaces/LabelProps.d.ts +16 -0
- package/progressbar/interfaces/ProgressBarAnimation.d.ts +16 -0
- package/progressbar/interfaces/ProgressBarHandle.d.ts +28 -0
- package/progressbar/interfaces/ProgressBarProps.d.ts +36 -0
package/index.d.ts
CHANGED
|
@@ -5,394 +5,10 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* @hidden
|
|
18
|
-
*/
|
|
19
|
-
declare interface BaseProps {
|
|
20
|
-
/**
|
|
21
|
-
* Sets one of the two visually distinct types of progress bar.
|
|
22
|
-
*
|
|
23
|
-
* @hidden
|
|
24
|
-
*/
|
|
25
|
-
type?: 'linear' | 'circular';
|
|
26
|
-
/**
|
|
27
|
-
* Sets the value of the progress bar. Has to be between `min` and `max` values. Defaults to `0`.
|
|
28
|
-
* Set `null` to enable the indeterminate state of the progress bar.
|
|
29
|
-
* See examples ([here]({% slug overview_progressbar %})).
|
|
30
|
-
*/
|
|
31
|
-
value?: number | null;
|
|
32
|
-
/**
|
|
33
|
-
* The minimum value of the progress bar. Defaults to `0`.
|
|
34
|
-
*/
|
|
35
|
-
min?: number;
|
|
36
|
-
/**
|
|
37
|
-
* The maximum value of the progress bar. Defaults to `100`.
|
|
38
|
-
*/
|
|
39
|
-
max?: number;
|
|
40
|
-
/**
|
|
41
|
-
* Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
|
|
42
|
-
*/
|
|
43
|
-
dir?: string;
|
|
44
|
-
/**
|
|
45
|
-
* The accessible label of the component.
|
|
46
|
-
*/
|
|
47
|
-
ariaLabel?: string;
|
|
48
|
-
/**
|
|
49
|
-
* Sets the disabled state of the progress bar.
|
|
50
|
-
* See examples ([here]({% slug progressbar_disabled %})).
|
|
51
|
-
*/
|
|
52
|
-
disabled?: boolean;
|
|
53
|
-
/**
|
|
54
|
-
* Defines the orientation of the progress bar.
|
|
55
|
-
* See examples ([here]({% slug progressbar_orientation %})) .
|
|
56
|
-
* Defaults to `horizontal`.
|
|
57
|
-
*/
|
|
58
|
-
orientation?: 'horizontal' | 'vertical' | string;
|
|
59
|
-
/**
|
|
60
|
-
* If set to `true`, the progress bar will be reversed.
|
|
61
|
-
* See examples ([here]({% slug progressbar_direction %})).
|
|
62
|
-
* Defaults to `false`.
|
|
63
|
-
*/
|
|
64
|
-
reverse?: boolean;
|
|
65
|
-
/**
|
|
66
|
-
* Specifies a list of CSS classes that will be added to the progress bar element.
|
|
67
|
-
*/
|
|
68
|
-
className?: string;
|
|
69
|
-
/**
|
|
70
|
-
* The styles that are applied to the inner element which represents the empty portion of the progress bar.
|
|
71
|
-
* See examples ([here]({% slug progressbar_appearance %})).
|
|
72
|
-
*/
|
|
73
|
-
emptyStyle?: object;
|
|
74
|
-
/**
|
|
75
|
-
* Sets additional classes to the inner element which represents the empty portion of the progress bar.
|
|
76
|
-
* See examples ([here]({% slug progressbar_appearance %})).
|
|
77
|
-
*/
|
|
78
|
-
emptyClassName?: string;
|
|
79
|
-
/**
|
|
80
|
-
* The styles that are applied to the inner element which represents the full portion of the progress bar.
|
|
81
|
-
* See examples ([here]({% slug progressbar_appearance %})).
|
|
82
|
-
*/
|
|
83
|
-
progressStyle?: object;
|
|
84
|
-
/**
|
|
85
|
-
* Sets additional classes to the inner element which represents the full portion of the progress bar.
|
|
86
|
-
* See examples ([here]({% slug progressbar_appearance %})).
|
|
87
|
-
*/
|
|
88
|
-
progressClassName?: string;
|
|
89
|
-
/**
|
|
90
|
-
* Sets the `tabIndex` property of the progress bar.
|
|
91
|
-
*/
|
|
92
|
-
tabIndex?: number;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
/**
|
|
96
|
-
* @hidden
|
|
97
|
-
*/
|
|
98
|
-
export declare const ChunkProgressBar: DefineComponent<ExtractPropTypes< {
|
|
99
|
-
chunkCount: {
|
|
100
|
-
type: PropType<number>;
|
|
101
|
-
default: number;
|
|
102
|
-
};
|
|
103
|
-
ariaLabel: PropType<string>;
|
|
104
|
-
disabled: PropType<boolean>;
|
|
105
|
-
reverse: {
|
|
106
|
-
type: PropType<boolean>;
|
|
107
|
-
default: boolean;
|
|
108
|
-
};
|
|
109
|
-
max: {
|
|
110
|
-
type: PropType<number>;
|
|
111
|
-
default: number;
|
|
112
|
-
};
|
|
113
|
-
min: {
|
|
114
|
-
type: PropType<number>;
|
|
115
|
-
default: number;
|
|
116
|
-
};
|
|
117
|
-
value: {
|
|
118
|
-
type: PropType<number>;
|
|
119
|
-
default: number;
|
|
120
|
-
};
|
|
121
|
-
tabIndex: PropType<number>;
|
|
122
|
-
emptyStyle: PropType<object>;
|
|
123
|
-
emptyClassName: PropType<string>;
|
|
124
|
-
progressStyle: PropType<object>;
|
|
125
|
-
progressClassName: PropType<string>;
|
|
126
|
-
orientation: {
|
|
127
|
-
type: PropType<string>;
|
|
128
|
-
default: string;
|
|
129
|
-
validator: (value: string) => any;
|
|
130
|
-
};
|
|
131
|
-
}>, {}, {
|
|
132
|
-
currentDir: any;
|
|
133
|
-
}, {}, {
|
|
134
|
-
focusElement(): void;
|
|
135
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
136
|
-
chunkCount: {
|
|
137
|
-
type: PropType<number>;
|
|
138
|
-
default: number;
|
|
139
|
-
};
|
|
140
|
-
ariaLabel: PropType<string>;
|
|
141
|
-
disabled: PropType<boolean>;
|
|
142
|
-
reverse: {
|
|
143
|
-
type: PropType<boolean>;
|
|
144
|
-
default: boolean;
|
|
145
|
-
};
|
|
146
|
-
max: {
|
|
147
|
-
type: PropType<number>;
|
|
148
|
-
default: number;
|
|
149
|
-
};
|
|
150
|
-
min: {
|
|
151
|
-
type: PropType<number>;
|
|
152
|
-
default: number;
|
|
153
|
-
};
|
|
154
|
-
value: {
|
|
155
|
-
type: PropType<number>;
|
|
156
|
-
default: number;
|
|
157
|
-
};
|
|
158
|
-
tabIndex: PropType<number>;
|
|
159
|
-
emptyStyle: PropType<object>;
|
|
160
|
-
emptyClassName: PropType<string>;
|
|
161
|
-
progressStyle: PropType<object>;
|
|
162
|
-
progressClassName: PropType<string>;
|
|
163
|
-
orientation: {
|
|
164
|
-
type: PropType<string>;
|
|
165
|
-
default: string;
|
|
166
|
-
validator: (value: string) => any;
|
|
167
|
-
};
|
|
168
|
-
}>> & Readonly<{}>, {
|
|
169
|
-
reverse: boolean;
|
|
170
|
-
value: number;
|
|
171
|
-
orientation: string;
|
|
172
|
-
max: number;
|
|
173
|
-
min: number;
|
|
174
|
-
chunkCount: number;
|
|
175
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
176
|
-
|
|
177
|
-
/**
|
|
178
|
-
* Represents the props of the [Kendo UI for Vue ChunkProgressBar component]({% slug overview_chunkprogressbar %}).
|
|
179
|
-
*/
|
|
180
|
-
export declare interface ChunkProgressBarProps extends BaseProps {
|
|
181
|
-
/**
|
|
182
|
-
* Sets the number of chunks into which the ChunkProgressBar will be split. Defaults to `5`.
|
|
183
|
-
*/
|
|
184
|
-
chunkCount?: number;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
/**
|
|
188
|
-
* An interface for the ProgressBar label.
|
|
189
|
-
*/
|
|
190
|
-
export declare interface LabelProps {
|
|
191
|
-
/**
|
|
192
|
-
* Represents the current value of the ProgressBar.
|
|
193
|
-
*/
|
|
194
|
-
value?: number | null;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
/**
|
|
198
|
-
* @hidden
|
|
199
|
-
*/
|
|
200
|
-
export declare const ProgressBar: DefineComponent<ExtractPropTypes< {
|
|
201
|
-
animation: {
|
|
202
|
-
type: PropType<boolean | ProgressBarAnimation_2>;
|
|
203
|
-
default: boolean;
|
|
204
|
-
};
|
|
205
|
-
disabled: {
|
|
206
|
-
type: PropType<boolean>;
|
|
207
|
-
default: boolean;
|
|
208
|
-
};
|
|
209
|
-
reverse: {
|
|
210
|
-
type: PropType<boolean>;
|
|
211
|
-
default: boolean;
|
|
212
|
-
};
|
|
213
|
-
label: PropType<any>;
|
|
214
|
-
labelRender: PropType<any>;
|
|
215
|
-
labelVisible: {
|
|
216
|
-
type: PropType<boolean>;
|
|
217
|
-
default: boolean;
|
|
218
|
-
};
|
|
219
|
-
labelPlacement: {
|
|
220
|
-
type: PropType<any>;
|
|
221
|
-
default: any;
|
|
222
|
-
validator: (value: string) => any;
|
|
223
|
-
};
|
|
224
|
-
dir: {
|
|
225
|
-
type: PropType<string>;
|
|
226
|
-
default: any;
|
|
227
|
-
};
|
|
228
|
-
max: {
|
|
229
|
-
type: PropType<number>;
|
|
230
|
-
default: number;
|
|
231
|
-
};
|
|
232
|
-
min: {
|
|
233
|
-
type: PropType<number>;
|
|
234
|
-
default: number;
|
|
235
|
-
};
|
|
236
|
-
value: {
|
|
237
|
-
type: PropType<number>;
|
|
238
|
-
default: number;
|
|
239
|
-
};
|
|
240
|
-
orientation: {
|
|
241
|
-
type: PropType<string>;
|
|
242
|
-
default: string;
|
|
243
|
-
validator: (value: string) => any;
|
|
244
|
-
};
|
|
245
|
-
tabIndex: PropType<number>;
|
|
246
|
-
emptyStyle: PropType<object>;
|
|
247
|
-
emptyClassName: PropType<string>;
|
|
248
|
-
progressStyle: PropType<object>;
|
|
249
|
-
progressClassName: PropType<string>;
|
|
250
|
-
ariaLabel: PropType<string>;
|
|
251
|
-
}>, {}, {
|
|
252
|
-
currentDir: any;
|
|
253
|
-
}, {
|
|
254
|
-
wrapperClass(): ProgressBarComputed['wrapperClass'];
|
|
255
|
-
isVertical(): ProgressBarComputed['isVertical'];
|
|
256
|
-
animationDuration(): ProgressBarComputed['animationDuration'];
|
|
257
|
-
}, {
|
|
258
|
-
focus(): void;
|
|
259
|
-
progressStatusElement(): any;
|
|
260
|
-
progressStatusWrapElement(): any;
|
|
261
|
-
handleStart(): void;
|
|
262
|
-
handleUpdate(progress: number): void;
|
|
263
|
-
handleEnd(): void;
|
|
264
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
265
|
-
animation: {
|
|
266
|
-
type: PropType<boolean | ProgressBarAnimation_2>;
|
|
267
|
-
default: boolean;
|
|
268
|
-
};
|
|
269
|
-
disabled: {
|
|
270
|
-
type: PropType<boolean>;
|
|
271
|
-
default: boolean;
|
|
272
|
-
};
|
|
273
|
-
reverse: {
|
|
274
|
-
type: PropType<boolean>;
|
|
275
|
-
default: boolean;
|
|
276
|
-
};
|
|
277
|
-
label: PropType<any>;
|
|
278
|
-
labelRender: PropType<any>;
|
|
279
|
-
labelVisible: {
|
|
280
|
-
type: PropType<boolean>;
|
|
281
|
-
default: boolean;
|
|
282
|
-
};
|
|
283
|
-
labelPlacement: {
|
|
284
|
-
type: PropType<any>;
|
|
285
|
-
default: any;
|
|
286
|
-
validator: (value: string) => any;
|
|
287
|
-
};
|
|
288
|
-
dir: {
|
|
289
|
-
type: PropType<string>;
|
|
290
|
-
default: any;
|
|
291
|
-
};
|
|
292
|
-
max: {
|
|
293
|
-
type: PropType<number>;
|
|
294
|
-
default: number;
|
|
295
|
-
};
|
|
296
|
-
min: {
|
|
297
|
-
type: PropType<number>;
|
|
298
|
-
default: number;
|
|
299
|
-
};
|
|
300
|
-
value: {
|
|
301
|
-
type: PropType<number>;
|
|
302
|
-
default: number;
|
|
303
|
-
};
|
|
304
|
-
orientation: {
|
|
305
|
-
type: PropType<string>;
|
|
306
|
-
default: string;
|
|
307
|
-
validator: (value: string) => any;
|
|
308
|
-
};
|
|
309
|
-
tabIndex: PropType<number>;
|
|
310
|
-
emptyStyle: PropType<object>;
|
|
311
|
-
emptyClassName: PropType<string>;
|
|
312
|
-
progressStyle: PropType<object>;
|
|
313
|
-
progressClassName: PropType<string>;
|
|
314
|
-
ariaLabel: PropType<string>;
|
|
315
|
-
}>> & Readonly<{}>, {
|
|
316
|
-
reverse: boolean;
|
|
317
|
-
value: number;
|
|
318
|
-
disabled: boolean;
|
|
319
|
-
animation: boolean | ProgressBarAnimation_2;
|
|
320
|
-
orientation: string;
|
|
321
|
-
labelVisible: boolean;
|
|
322
|
-
labelPlacement: any;
|
|
323
|
-
dir: string;
|
|
324
|
-
max: number;
|
|
325
|
-
min: number;
|
|
326
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
327
|
-
|
|
328
|
-
/**
|
|
329
|
-
* Specifies the animation settings of the ProgressBar.
|
|
330
|
-
*/
|
|
331
|
-
export declare interface ProgressBarAnimation {
|
|
332
|
-
/**
|
|
333
|
-
* Specifies the duration of the ProgressBar animation. Defaults to `400`.
|
|
334
|
-
*/
|
|
335
|
-
duration: number;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
/**
|
|
339
|
-
* @hidden
|
|
340
|
-
*/
|
|
341
|
-
export declare interface ProgressBarComputed {
|
|
342
|
-
[key: string]: any;
|
|
343
|
-
wrapperClass: object;
|
|
344
|
-
isVertical: boolean;
|
|
345
|
-
animationDuration: number;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
/**
|
|
349
|
-
* The ProgressBar ref.
|
|
350
|
-
*/
|
|
351
|
-
export declare interface ProgressBarHandle {
|
|
352
|
-
/**
|
|
353
|
-
* The ProgressBar element.
|
|
354
|
-
*/
|
|
355
|
-
element: HTMLDivElement | null;
|
|
356
|
-
/**
|
|
357
|
-
* The progress status element.
|
|
358
|
-
*/
|
|
359
|
-
progressStatusElement: HTMLDivElement | null;
|
|
360
|
-
/**
|
|
361
|
-
* The progress status wrap element.
|
|
362
|
-
*/
|
|
363
|
-
progressStatusWrapElement: HTMLSpanElement | null;
|
|
364
|
-
/**
|
|
365
|
-
* Focus the ProgressBar.
|
|
366
|
-
*/
|
|
367
|
-
focus: () => void;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
/**
|
|
371
|
-
* Represents the props of the [Kendo UI for Vue ProgressBar component]({% slug overview_progressbar %}).
|
|
372
|
-
*/
|
|
373
|
-
export declare interface ProgressBarProps extends BaseProps {
|
|
374
|
-
/**
|
|
375
|
-
* Specifies the animation settings of the ProgressBar. Defaults to `false`.
|
|
376
|
-
* If boolean, enables or disables the default animation.
|
|
377
|
-
* Use ProgressBarAnimation to set slide animation with customizable duration option. Accepts a number in milliseconds.
|
|
378
|
-
*/
|
|
379
|
-
animation?: boolean | ProgressBarAnimation;
|
|
380
|
-
/**
|
|
381
|
-
* Overrides the default label ([see example]({% slug progressbar_label %})).
|
|
382
|
-
*/
|
|
383
|
-
label?: any;
|
|
384
|
-
/**
|
|
385
|
-
* Overrides the default label template ([see example]({% slug progressbar_label %})).
|
|
386
|
-
*/
|
|
387
|
-
labelRender?: any;
|
|
388
|
-
/**
|
|
389
|
-
* Sets the visibility of the progress status label. Defaults to `true`.
|
|
390
|
-
*/
|
|
391
|
-
labelVisible?: boolean;
|
|
392
|
-
/**
|
|
393
|
-
* Sets the position of the progress status label. Defaults to `end` ([see example]({% slug progressbar_label %})).
|
|
394
|
-
*/
|
|
395
|
-
labelPlacement?: 'start' | 'center' | 'end' | any;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
export { }
|
|
8
|
+
export * from './progressbar/ProgressBar';
|
|
9
|
+
export * from './progressbar/interfaces/ProgressBarHandle';
|
|
10
|
+
export * from './progressbar/interfaces/ProgressBarProps';
|
|
11
|
+
export * from './progressbar/interfaces/ProgressBarAnimation';
|
|
12
|
+
export * from './progressbar/interfaces/LabelProps';
|
|
13
|
+
export * from './chunkprogressbar/ChunkProgressBar';
|
|
14
|
+
export * from './chunkprogressbar/interfaces/ChunkProgressBarProps';
|
|
@@ -0,0 +1,12 @@
|
|
|
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 { PackageMetadata } from '@progress/kendo-licensing';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare const packageMetadata: PackageMetadata;
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-progressbars",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-progressbars",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773401327,version:"8.0.3-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "8.0.3-develop.
|
|
13
|
+
publishDate: 1773401327,
|
|
14
|
+
version: "8.0.3-develop.3",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-progressbars",
|
|
3
|
-
"version": "8.0.3-develop.
|
|
3
|
+
"version": "8.0.3-develop.3",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -9,8 +9,14 @@
|
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"import":
|
|
13
|
-
|
|
12
|
+
"import": {
|
|
13
|
+
"types": "./index.d.mts",
|
|
14
|
+
"default": "./index.mjs"
|
|
15
|
+
},
|
|
16
|
+
"require": {
|
|
17
|
+
"types": "./index.d.ts",
|
|
18
|
+
"default": "./index.js"
|
|
19
|
+
}
|
|
14
20
|
},
|
|
15
21
|
"./package.json": {
|
|
16
22
|
"default": "./package.json"
|
|
@@ -19,8 +25,8 @@
|
|
|
19
25
|
"sideEffects": false,
|
|
20
26
|
"peerDependencies": {
|
|
21
27
|
"@progress/kendo-licensing": "^1.7.2",
|
|
22
|
-
"@progress/kendo-vue-common": "8.0.3-develop.
|
|
23
|
-
"@progress/kendo-vue-animation": "8.0.3-develop.
|
|
28
|
+
"@progress/kendo-vue-common": "8.0.3-develop.3",
|
|
29
|
+
"@progress/kendo-vue-animation": "8.0.3-develop.3",
|
|
24
30
|
"vue": "^3.0.2"
|
|
25
31
|
},
|
|
26
32
|
"dependencies": {},
|
|
@@ -40,7 +46,7 @@
|
|
|
40
46
|
"package": {
|
|
41
47
|
"productName": "Kendo UI for Vue",
|
|
42
48
|
"productCode": "KENDOUIVUE",
|
|
43
|
-
"publishDate":
|
|
49
|
+
"publishDate": 1773401327,
|
|
44
50
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
45
51
|
}
|
|
46
52
|
},
|
|
@@ -0,0 +1,148 @@
|
|
|
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 { PropType } from 'vue';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface ProgressBarComputed {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
wrapperClass: object;
|
|
15
|
+
isVertical: boolean;
|
|
16
|
+
animationDuration: number;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @hidden
|
|
20
|
+
*/
|
|
21
|
+
declare const ProgressBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
22
|
+
animation: {
|
|
23
|
+
type: PropType<boolean | import('..').ProgressBarAnimation>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
disabled: {
|
|
27
|
+
type: PropType<boolean>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
reverse: {
|
|
31
|
+
type: PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
label: PropType<any>;
|
|
35
|
+
labelRender: PropType<any>;
|
|
36
|
+
labelVisible: {
|
|
37
|
+
type: PropType<boolean>;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
labelPlacement: {
|
|
41
|
+
type: PropType<any>;
|
|
42
|
+
default: any;
|
|
43
|
+
validator: (value: string) => any;
|
|
44
|
+
};
|
|
45
|
+
dir: {
|
|
46
|
+
type: PropType<string>;
|
|
47
|
+
default: any;
|
|
48
|
+
};
|
|
49
|
+
max: {
|
|
50
|
+
type: PropType<number>;
|
|
51
|
+
default: number;
|
|
52
|
+
};
|
|
53
|
+
min: {
|
|
54
|
+
type: PropType<number>;
|
|
55
|
+
default: number;
|
|
56
|
+
};
|
|
57
|
+
value: {
|
|
58
|
+
type: PropType<number>;
|
|
59
|
+
default: number;
|
|
60
|
+
};
|
|
61
|
+
orientation: {
|
|
62
|
+
type: PropType<string>;
|
|
63
|
+
default: string;
|
|
64
|
+
validator: (value: string) => any;
|
|
65
|
+
};
|
|
66
|
+
tabIndex: PropType<number>;
|
|
67
|
+
emptyStyle: PropType<object>;
|
|
68
|
+
emptyClassName: PropType<string>;
|
|
69
|
+
progressStyle: PropType<object>;
|
|
70
|
+
progressClassName: PropType<string>;
|
|
71
|
+
ariaLabel: PropType<string>;
|
|
72
|
+
}>, {}, {
|
|
73
|
+
currentDir: any;
|
|
74
|
+
}, {
|
|
75
|
+
wrapperClass(): ProgressBarComputed['wrapperClass'];
|
|
76
|
+
isVertical(): ProgressBarComputed['isVertical'];
|
|
77
|
+
animationDuration(): ProgressBarComputed['animationDuration'];
|
|
78
|
+
}, {
|
|
79
|
+
focus(): void;
|
|
80
|
+
progressStatusElement(): any;
|
|
81
|
+
progressStatusWrapElement(): any;
|
|
82
|
+
handleStart(): void;
|
|
83
|
+
handleUpdate(progress: number): void;
|
|
84
|
+
handleEnd(): void;
|
|
85
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
86
|
+
animation: {
|
|
87
|
+
type: PropType<boolean | import('..').ProgressBarAnimation>;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
disabled: {
|
|
91
|
+
type: PropType<boolean>;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
94
|
+
reverse: {
|
|
95
|
+
type: PropType<boolean>;
|
|
96
|
+
default: boolean;
|
|
97
|
+
};
|
|
98
|
+
label: PropType<any>;
|
|
99
|
+
labelRender: PropType<any>;
|
|
100
|
+
labelVisible: {
|
|
101
|
+
type: PropType<boolean>;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
labelPlacement: {
|
|
105
|
+
type: PropType<any>;
|
|
106
|
+
default: any;
|
|
107
|
+
validator: (value: string) => any;
|
|
108
|
+
};
|
|
109
|
+
dir: {
|
|
110
|
+
type: PropType<string>;
|
|
111
|
+
default: any;
|
|
112
|
+
};
|
|
113
|
+
max: {
|
|
114
|
+
type: PropType<number>;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
117
|
+
min: {
|
|
118
|
+
type: PropType<number>;
|
|
119
|
+
default: number;
|
|
120
|
+
};
|
|
121
|
+
value: {
|
|
122
|
+
type: PropType<number>;
|
|
123
|
+
default: number;
|
|
124
|
+
};
|
|
125
|
+
orientation: {
|
|
126
|
+
type: PropType<string>;
|
|
127
|
+
default: string;
|
|
128
|
+
validator: (value: string) => any;
|
|
129
|
+
};
|
|
130
|
+
tabIndex: PropType<number>;
|
|
131
|
+
emptyStyle: PropType<object>;
|
|
132
|
+
emptyClassName: PropType<string>;
|
|
133
|
+
progressStyle: PropType<object>;
|
|
134
|
+
progressClassName: PropType<string>;
|
|
135
|
+
ariaLabel: PropType<string>;
|
|
136
|
+
}>> & Readonly<{}>, {
|
|
137
|
+
reverse: boolean;
|
|
138
|
+
value: number;
|
|
139
|
+
disabled: boolean;
|
|
140
|
+
animation: boolean | import('..').ProgressBarAnimation;
|
|
141
|
+
orientation: string;
|
|
142
|
+
labelVisible: boolean;
|
|
143
|
+
labelPlacement: any;
|
|
144
|
+
dir: string;
|
|
145
|
+
max: number;
|
|
146
|
+
min: number;
|
|
147
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
148
|
+
export { ProgressBar };
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* An interface for the ProgressBar label.
|
|
10
|
+
*/
|
|
11
|
+
export interface LabelProps {
|
|
12
|
+
/**
|
|
13
|
+
* Represents the current value of the ProgressBar.
|
|
14
|
+
*/
|
|
15
|
+
value?: number | null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* Specifies the animation settings of the ProgressBar.
|
|
10
|
+
*/
|
|
11
|
+
export interface ProgressBarAnimation {
|
|
12
|
+
/**
|
|
13
|
+
* Specifies the duration of the ProgressBar animation. Defaults to `400`.
|
|
14
|
+
*/
|
|
15
|
+
duration: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* The ProgressBar ref.
|
|
10
|
+
*/
|
|
11
|
+
export interface ProgressBarHandle {
|
|
12
|
+
/**
|
|
13
|
+
* The ProgressBar element.
|
|
14
|
+
*/
|
|
15
|
+
element: HTMLDivElement | null;
|
|
16
|
+
/**
|
|
17
|
+
* The progress status element.
|
|
18
|
+
*/
|
|
19
|
+
progressStatusElement: HTMLDivElement | null;
|
|
20
|
+
/**
|
|
21
|
+
* The progress status wrap element.
|
|
22
|
+
*/
|
|
23
|
+
progressStatusWrapElement: HTMLSpanElement | null;
|
|
24
|
+
/**
|
|
25
|
+
* Focus the ProgressBar.
|
|
26
|
+
*/
|
|
27
|
+
focus: () => void;
|
|
28
|
+
}
|