@progress/kendo-vue-layout 3.13.0-dev.202308240911 → 3.13.0-dev.202308291144

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.
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-layout',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1692867707,
8
+ publishDate: 1693308761,
9
9
  version: '',
10
10
  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'
11
11
  };
@@ -67,6 +67,12 @@ var StepperVue2 = {
67
67
  type: Number,
68
68
  default: 0
69
69
  },
70
+ progressTotal: {
71
+ type: Number
72
+ },
73
+ progress: {
74
+ type: Number
75
+ },
70
76
  modelValue: Number,
71
77
  successIcon: String,
72
78
  errorIcon: String
@@ -264,21 +270,21 @@ var StepperVue2 = {
264
270
  },
265
271
  "aria-hidden": true,
266
272
  "aria-label": progressbarAriaLabelMessage,
267
- max: this.numOfSteps - 1,
273
+ max: this.progressTotal || this.numOfSteps - 1,
268
274
  labelVisible: false,
269
275
  orientation: orientation,
270
276
  reverse: orientation === 'vertical',
271
- value: value,
277
+ value: this.progress || value,
272
278
  disabled: disabled,
273
279
  tabIndex: -1
274
280
  },
275
281
  "aria-hidden": true,
276
282
  "aria-label": progressbarAriaLabelMessage,
277
- max: this.numOfSteps - 1,
283
+ max: this.progressTotal || this.numOfSteps - 1,
278
284
  labelVisible: false,
279
285
  orientation: orientation,
280
286
  reverse: orientation === 'vertical',
281
- value: value,
287
+ value: this.progress || value,
282
288
  disabled: disabled,
283
289
  tabIndex: -1
284
290
  })]);
@@ -65,6 +65,14 @@ export interface StepperProps {
65
65
  * Specifies the index of the selected Step.
66
66
  */
67
67
  value: number;
68
+ /**
69
+ * The maximum value of the ProgressBar inside the Stepper. If not defined it is equal to the number of steps defined.
70
+ */
71
+ progressTotal: number;
72
+ /**
73
+ * Specifies the current progress of the ProgressBar inside the Stepper. If not defined it is equal to the current value.
74
+ */
75
+ progress: number;
68
76
  /**
69
77
  * @hidden
70
78
  */
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-layout',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1692867707,
8
+ publishDate: 1693308761,
9
9
  version: '',
10
10
  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'
11
11
  };
@@ -67,6 +67,12 @@ var StepperVue2 = {
67
67
  type: Number,
68
68
  default: 0
69
69
  },
70
+ progressTotal: {
71
+ type: Number
72
+ },
73
+ progress: {
74
+ type: Number
75
+ },
70
76
  modelValue: Number,
71
77
  successIcon: String,
72
78
  errorIcon: String
@@ -264,21 +270,21 @@ var StepperVue2 = {
264
270
  },
265
271
  "aria-hidden": true,
266
272
  "aria-label": progressbarAriaLabelMessage,
267
- max: this.numOfSteps - 1,
273
+ max: this.progressTotal || this.numOfSteps - 1,
268
274
  labelVisible: false,
269
275
  orientation: orientation,
270
276
  reverse: orientation === 'vertical',
271
- value: value,
277
+ value: this.progress || value,
272
278
  disabled: disabled,
273
279
  tabIndex: -1
274
280
  },
275
281
  "aria-hidden": true,
276
282
  "aria-label": progressbarAriaLabelMessage,
277
- max: this.numOfSteps - 1,
283
+ max: this.progressTotal || this.numOfSteps - 1,
278
284
  labelVisible: false,
279
285
  orientation: orientation,
280
286
  reverse: orientation === 'vertical',
281
- value: value,
287
+ value: this.progress || value,
282
288
  disabled: disabled,
283
289
  tabIndex: -1
284
290
  })]);
@@ -65,6 +65,14 @@ export interface StepperProps {
65
65
  * Specifies the index of the selected Step.
66
66
  */
67
67
  value: number;
68
+ /**
69
+ * The maximum value of the ProgressBar inside the Stepper. If not defined it is equal to the number of steps defined.
70
+ */
71
+ progressTotal: number;
72
+ /**
73
+ * Specifies the current progress of the ProgressBar inside the Stepper. If not defined it is equal to the current value.
74
+ */
75
+ progress: number;
68
76
  /**
69
77
  * @hidden
70
78
  */
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-layout',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1692867707,
11
+ publishDate: 1693308761,
12
12
  version: '',
13
13
  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'
14
14
  };
@@ -73,6 +73,12 @@ var StepperVue2 = {
73
73
  type: Number,
74
74
  default: 0
75
75
  },
76
+ progressTotal: {
77
+ type: Number
78
+ },
79
+ progress: {
80
+ type: Number
81
+ },
76
82
  modelValue: Number,
77
83
  successIcon: String,
78
84
  errorIcon: String
@@ -270,21 +276,21 @@ var StepperVue2 = {
270
276
  },
271
277
  "aria-hidden": true,
272
278
  "aria-label": progressbarAriaLabelMessage,
273
- max: this.numOfSteps - 1,
279
+ max: this.progressTotal || this.numOfSteps - 1,
274
280
  labelVisible: false,
275
281
  orientation: orientation,
276
282
  reverse: orientation === 'vertical',
277
- value: value,
283
+ value: this.progress || value,
278
284
  disabled: disabled,
279
285
  tabIndex: -1
280
286
  },
281
287
  "aria-hidden": true,
282
288
  "aria-label": progressbarAriaLabelMessage,
283
- max: this.numOfSteps - 1,
289
+ max: this.progressTotal || this.numOfSteps - 1,
284
290
  labelVisible: false,
285
291
  orientation: orientation,
286
292
  reverse: orientation === 'vertical',
287
- value: value,
293
+ value: this.progress || value,
288
294
  disabled: disabled,
289
295
  tabIndex: -1
290
296
  })]);
@@ -65,6 +65,14 @@ export interface StepperProps {
65
65
  * Specifies the index of the selected Step.
66
66
  */
67
67
  value: number;
68
+ /**
69
+ * The maximum value of the ProgressBar inside the Stepper. If not defined it is equal to the number of steps defined.
70
+ */
71
+ progressTotal: number;
72
+ /**
73
+ * Specifies the current progress of the ProgressBar inside the Stepper. If not defined it is equal to the current value.
74
+ */
75
+ progress: number;
68
76
  /**
69
77
  * @hidden
70
78
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-layout",
3
3
  "description": "Kendo UI for Vue Layouts package",
4
- "version": "3.13.0-dev.202308240911",
4
+ "version": "3.13.0-dev.202308291144",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -45,9 +45,9 @@
45
45
  "vue": "^2.6.12 || ^3.0.2"
46
46
  },
47
47
  "dependencies": {
48
- "@progress/kendo-vue-animation": "3.13.0-dev.202308240911",
49
- "@progress/kendo-vue-common": "3.13.0-dev.202308240911",
50
- "@progress/kendo-vue-popup": "3.13.0-dev.202308240911"
48
+ "@progress/kendo-vue-animation": "3.13.0-dev.202308291144",
49
+ "@progress/kendo-vue-common": "3.13.0-dev.202308291144",
50
+ "@progress/kendo-vue-popup": "3.13.0-dev.202308291144"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@progress/kendo-data-query": "^1.5.0",
@@ -55,15 +55,15 @@
55
55
  "@progress/kendo-drawing": "^1.8.0",
56
56
  "@progress/kendo-licensing": "^1.3.0",
57
57
  "@progress/kendo-svg-icons": "^1.0.0",
58
- "@progress/kendo-vue-buttons": "3.13.0-dev.202308240911",
59
- "@progress/kendo-vue-charts": "3.13.0-dev.202308240911",
60
- "@progress/kendo-vue-dateinputs": "3.13.0-dev.202308240911",
61
- "@progress/kendo-vue-dropdowns": "3.13.0-dev.202308240911",
62
- "@progress/kendo-vue-grid": "3.13.0-dev.202308240911",
63
- "@progress/kendo-vue-indicators": "3.13.0-dev.202308240911",
64
- "@progress/kendo-vue-inputs": "3.13.0-dev.202308240911",
65
- "@progress/kendo-vue-intl": "3.13.0-dev.202308240911",
66
- "@progress/kendo-vue-progressbars": "3.13.0-dev.202308240911"
58
+ "@progress/kendo-vue-buttons": "3.13.0-dev.202308291144",
59
+ "@progress/kendo-vue-charts": "3.13.0-dev.202308291144",
60
+ "@progress/kendo-vue-dateinputs": "3.13.0-dev.202308291144",
61
+ "@progress/kendo-vue-dropdowns": "3.13.0-dev.202308291144",
62
+ "@progress/kendo-vue-grid": "3.13.0-dev.202308291144",
63
+ "@progress/kendo-vue-indicators": "3.13.0-dev.202308291144",
64
+ "@progress/kendo-vue-inputs": "3.13.0-dev.202308291144",
65
+ "@progress/kendo-vue-intl": "3.13.0-dev.202308291144",
66
+ "@progress/kendo-vue-progressbars": "3.13.0-dev.202308291144"
67
67
  },
68
68
  "@progress": {
69
69
  "friendlyName": "Layouts",