@progress/kendo-vue-inputs 3.5.4 → 3.6.0-dev.202209130634

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.
@@ -150,8 +150,9 @@ var ColorInputVue2 = {
150
150
  } : [hexMessage])]), (this.inputMode === 'rgb' || this.inputMode === 'rgba') && [h("div", {
151
151
  "class": "k-vstack"
152
152
  }, [h(NumericTextBox, {
153
- tabIndex: this.tabIndex,
153
+ inputType: 'number',
154
154
  attrs: this.v3 ? undefined : {
155
+ inputType: 'number',
155
156
  tabIndex: this.tabIndex,
156
157
  value: this.$props.rgba.r,
157
158
  min: 0,
@@ -161,6 +162,7 @@ var ColorInputVue2 = {
161
162
  ariaLabel: rLabelMessage,
162
163
  disabled: this.$props.disabled
163
164
  },
165
+ tabIndex: this.tabIndex,
164
166
  value: this.$props.rgba.r,
165
167
  min: 0,
166
168
  max: 255,
@@ -180,8 +182,9 @@ var ColorInputVue2 = {
180
182
  } : [rMessage])]), h("div", {
181
183
  "class": "k-vstack"
182
184
  }, [h(NumericTextBox, {
183
- tabIndex: this.tabIndex,
185
+ inputType: 'number',
184
186
  attrs: this.v3 ? undefined : {
187
+ inputType: 'number',
185
188
  tabIndex: this.tabIndex,
186
189
  value: this.$props.rgba.g,
187
190
  min: 0,
@@ -191,6 +194,7 @@ var ColorInputVue2 = {
191
194
  ariaLabel: gLabelMessage,
192
195
  disabled: this.$props.disabled
193
196
  },
197
+ tabIndex: this.tabIndex,
194
198
  value: this.$props.rgba.g,
195
199
  min: 0,
196
200
  max: 255,
@@ -210,8 +214,9 @@ var ColorInputVue2 = {
210
214
  } : [gMessage])]), h("div", {
211
215
  "class": "k-vstack"
212
216
  }, [h(NumericTextBox, {
213
- tabIndex: this.tabIndex,
217
+ inputType: 'number',
214
218
  attrs: this.v3 ? undefined : {
219
+ inputType: 'number',
215
220
  tabIndex: this.tabIndex,
216
221
  value: this.$props.rgba.b,
217
222
  min: 0,
@@ -221,6 +226,7 @@ var ColorInputVue2 = {
221
226
  ariaLabel: bLabelMessage,
222
227
  disabled: this.$props.disabled
223
228
  },
229
+ tabIndex: this.tabIndex,
224
230
  value: this.$props.rgba.b,
225
231
  min: 0,
226
232
  max: 255,
@@ -241,8 +247,9 @@ var ColorInputVue2 = {
241
247
  } : [bMessage])])], this.inputMode === 'rgba' && h("div", {
242
248
  "class": "k-vstack"
243
249
  }, [this.$props.opacity && h(NumericTextBox, {
244
- tabIndex: this.tabIndex,
250
+ inputType: 'number',
245
251
  attrs: this.v3 ? undefined : {
252
+ inputType: 'number',
246
253
  tabIndex: this.tabIndex,
247
254
  value: this.$props.rgba.a,
248
255
  min: 0,
@@ -253,6 +260,7 @@ var ColorInputVue2 = {
253
260
  ariaLabel: aLabelMessage,
254
261
  disabled: this.$props.disabled
255
262
  },
263
+ tabIndex: this.tabIndex,
256
264
  value: this.$props.rgba.a,
257
265
  min: 0,
258
266
  max: 1,
@@ -1,6 +1,6 @@
1
1
  import { ColorGradientChangeEvent } from './ColorGradientChangeEvent';
2
2
  /**
3
- * Represents the props of the [KendoReact ColorGradient component]({% slug overview_colorgradient %}).
3
+ * Represents the props of the [Kendo UI for Vue ColorGradient component]({% slug overview_colorgradient %}).
4
4
  */
5
5
  export interface ColorGradientProps {
6
6
  /**
@@ -98,6 +98,10 @@ var NumericTextBoxVue2 = {
98
98
  showLoadingIcon: Boolean,
99
99
  showClearButton: Boolean,
100
100
  inputClass: String,
101
+ inputType: {
102
+ type: String,
103
+ default: 'tel'
104
+ },
101
105
  wrapperClass: String
102
106
  },
103
107
  inject: {
@@ -550,7 +554,7 @@ var NumericTextBoxVue2 = {
550
554
  "aria-valuemin": this.$props.min,
551
555
  "aria-valuemax": this.$props.max,
552
556
  placeholder: this.$props.placeholder,
553
- type: this.$props.inputType || 'tel',
557
+ type: this.$props.inputType,
554
558
  spellcheck: false,
555
559
  autocomplete: "off",
556
560
  autocorrect: "off",
@@ -564,7 +568,7 @@ var NumericTextBoxVue2 = {
564
568
  "aria-valuemin": this.$props.min,
565
569
  "aria-valuemax": this.$props.max,
566
570
  placeholder: this.$props.placeholder,
567
- type: this.$props.inputType || 'tel',
571
+ type: this.$props.inputType,
568
572
  spellcheck: false,
569
573
  autocomplete: "off",
570
574
  autocorrect: "off",
@@ -120,8 +120,9 @@ export interface NumericTextBoxProps extends FormComponentProps {
120
120
  * The available options are:
121
121
  * - (Default) `tel`
122
122
  * - `text`
123
+ * - `numeric`
123
124
  */
124
- inputType?: NumericTextBoxInputType;
125
+ inputType?: NumericTextBoxInputType | string;
125
126
  /**
126
127
  * If set to `false`, no visual representation of the invalid state of the component will be applied.
127
128
  *
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-inputs',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1662729130,
8
+ publishDate: 1663050173,
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
  };
@@ -82,13 +82,11 @@ var SliderLabelVue2 = {
82
82
  } : (_a = {}, _a[dir === 'rtl' ? 'right' : 'left'] = "".concat(position, "%"), _a.width = '1px', _a.height = '100%', _a);
83
83
  return h("li", {
84
84
  ref: 'sliderLabelRef',
85
- role: "presentation",
85
+ "class": "k-tick k-tick-large",
86
+ title: this.$props.title,
86
87
  attrs: this.v3 ? undefined : {
87
- role: "presentation",
88
88
  title: this.$props.title
89
89
  },
90
- "class": "k-tick k-tick-large",
91
- title: this.$props.title,
92
90
  style: __assign({
93
91
  zIndex: 1,
94
92
  position: 'absolute'
@@ -41,6 +41,7 @@ var TextAreaVue2 = {
41
41
  'blur': null
42
42
  },
43
43
  props: {
44
+ title: String,
44
45
  ariaDescribedBy: String,
45
46
  ariaLabelledBy: String,
46
47
  autoSize: Boolean,
@@ -220,13 +221,15 @@ var TextAreaVue2 = {
220
221
  iconName = _a.iconName,
221
222
  showValidationIcon = _a.showValidationIcon,
222
223
  showLoadingIcon = _a.showLoadingIcon,
223
- showClearButton = _a.showClearButton;
224
+ showClearButton = _a.showClearButton,
225
+ title = _a.title;
224
226
 
225
227
  var textAreaAttrs = __assign({
226
228
  id: id || this.calculatedId,
227
229
  name: name,
228
230
  disabled: disabled,
229
231
  rows: rows,
232
+ title: title,
230
233
  placeholder: placeholder,
231
234
  readOnly: readOnly,
232
235
  required: required,
@@ -17,6 +17,10 @@ export interface TextAreaProps extends FormComponentProps {
17
17
  * Identifies the element(s) which will label the component.
18
18
  */
19
19
  ariaLabelledBy?: string;
20
+ /**
21
+ * Identifies the title of the TextArea component.
22
+ */
23
+ title?: string;
20
24
  /**
21
25
  * Specifies if the textarea element will resize its height automatically ([see example]({% slug sizing_textarea %})).
22
26
  * Defaults to `false`.
@@ -150,8 +150,9 @@ var ColorInputVue2 = {
150
150
  } : [hexMessage])]), (this.inputMode === 'rgb' || this.inputMode === 'rgba') && [h("div", {
151
151
  "class": "k-vstack"
152
152
  }, [h(NumericTextBox, {
153
- tabIndex: this.tabIndex,
153
+ inputType: 'number',
154
154
  attrs: this.v3 ? undefined : {
155
+ inputType: 'number',
155
156
  tabIndex: this.tabIndex,
156
157
  value: this.$props.rgba.r,
157
158
  min: 0,
@@ -161,6 +162,7 @@ var ColorInputVue2 = {
161
162
  ariaLabel: rLabelMessage,
162
163
  disabled: this.$props.disabled
163
164
  },
165
+ tabIndex: this.tabIndex,
164
166
  value: this.$props.rgba.r,
165
167
  min: 0,
166
168
  max: 255,
@@ -180,8 +182,9 @@ var ColorInputVue2 = {
180
182
  } : [rMessage])]), h("div", {
181
183
  "class": "k-vstack"
182
184
  }, [h(NumericTextBox, {
183
- tabIndex: this.tabIndex,
185
+ inputType: 'number',
184
186
  attrs: this.v3 ? undefined : {
187
+ inputType: 'number',
185
188
  tabIndex: this.tabIndex,
186
189
  value: this.$props.rgba.g,
187
190
  min: 0,
@@ -191,6 +194,7 @@ var ColorInputVue2 = {
191
194
  ariaLabel: gLabelMessage,
192
195
  disabled: this.$props.disabled
193
196
  },
197
+ tabIndex: this.tabIndex,
194
198
  value: this.$props.rgba.g,
195
199
  min: 0,
196
200
  max: 255,
@@ -210,8 +214,9 @@ var ColorInputVue2 = {
210
214
  } : [gMessage])]), h("div", {
211
215
  "class": "k-vstack"
212
216
  }, [h(NumericTextBox, {
213
- tabIndex: this.tabIndex,
217
+ inputType: 'number',
214
218
  attrs: this.v3 ? undefined : {
219
+ inputType: 'number',
215
220
  tabIndex: this.tabIndex,
216
221
  value: this.$props.rgba.b,
217
222
  min: 0,
@@ -221,6 +226,7 @@ var ColorInputVue2 = {
221
226
  ariaLabel: bLabelMessage,
222
227
  disabled: this.$props.disabled
223
228
  },
229
+ tabIndex: this.tabIndex,
224
230
  value: this.$props.rgba.b,
225
231
  min: 0,
226
232
  max: 255,
@@ -241,8 +247,9 @@ var ColorInputVue2 = {
241
247
  } : [bMessage])])], this.inputMode === 'rgba' && h("div", {
242
248
  "class": "k-vstack"
243
249
  }, [this.$props.opacity && h(NumericTextBox, {
244
- tabIndex: this.tabIndex,
250
+ inputType: 'number',
245
251
  attrs: this.v3 ? undefined : {
252
+ inputType: 'number',
246
253
  tabIndex: this.tabIndex,
247
254
  value: this.$props.rgba.a,
248
255
  min: 0,
@@ -253,6 +260,7 @@ var ColorInputVue2 = {
253
260
  ariaLabel: aLabelMessage,
254
261
  disabled: this.$props.disabled
255
262
  },
263
+ tabIndex: this.tabIndex,
256
264
  value: this.$props.rgba.a,
257
265
  min: 0,
258
266
  max: 1,
@@ -1,6 +1,6 @@
1
1
  import { ColorGradientChangeEvent } from './ColorGradientChangeEvent';
2
2
  /**
3
- * Represents the props of the [KendoReact ColorGradient component]({% slug overview_colorgradient %}).
3
+ * Represents the props of the [Kendo UI for Vue ColorGradient component]({% slug overview_colorgradient %}).
4
4
  */
5
5
  export interface ColorGradientProps {
6
6
  /**
@@ -98,6 +98,10 @@ var NumericTextBoxVue2 = {
98
98
  showLoadingIcon: Boolean,
99
99
  showClearButton: Boolean,
100
100
  inputClass: String,
101
+ inputType: {
102
+ type: String,
103
+ default: 'tel'
104
+ },
101
105
  wrapperClass: String
102
106
  },
103
107
  inject: {
@@ -550,7 +554,7 @@ var NumericTextBoxVue2 = {
550
554
  "aria-valuemin": this.$props.min,
551
555
  "aria-valuemax": this.$props.max,
552
556
  placeholder: this.$props.placeholder,
553
- type: this.$props.inputType || 'tel',
557
+ type: this.$props.inputType,
554
558
  spellcheck: false,
555
559
  autocomplete: "off",
556
560
  autocorrect: "off",
@@ -564,7 +568,7 @@ var NumericTextBoxVue2 = {
564
568
  "aria-valuemin": this.$props.min,
565
569
  "aria-valuemax": this.$props.max,
566
570
  placeholder: this.$props.placeholder,
567
- type: this.$props.inputType || 'tel',
571
+ type: this.$props.inputType,
568
572
  spellcheck: false,
569
573
  autocomplete: "off",
570
574
  autocorrect: "off",
@@ -120,8 +120,9 @@ export interface NumericTextBoxProps extends FormComponentProps {
120
120
  * The available options are:
121
121
  * - (Default) `tel`
122
122
  * - `text`
123
+ * - `numeric`
123
124
  */
124
- inputType?: NumericTextBoxInputType;
125
+ inputType?: NumericTextBoxInputType | string;
125
126
  /**
126
127
  * If set to `false`, no visual representation of the invalid state of the component will be applied.
127
128
  *
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-inputs',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1662729130,
8
+ publishDate: 1663050173,
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
  };
@@ -82,13 +82,11 @@ var SliderLabelVue2 = {
82
82
  } : (_a = {}, _a[dir === 'rtl' ? 'right' : 'left'] = "".concat(position, "%"), _a.width = '1px', _a.height = '100%', _a);
83
83
  return h("li", {
84
84
  ref: 'sliderLabelRef',
85
- role: "presentation",
85
+ "class": "k-tick k-tick-large",
86
+ title: this.$props.title,
86
87
  attrs: this.v3 ? undefined : {
87
- role: "presentation",
88
88
  title: this.$props.title
89
89
  },
90
- "class": "k-tick k-tick-large",
91
- title: this.$props.title,
92
90
  style: __assign({
93
91
  zIndex: 1,
94
92
  position: 'absolute'
@@ -41,6 +41,7 @@ var TextAreaVue2 = {
41
41
  'blur': null
42
42
  },
43
43
  props: {
44
+ title: String,
44
45
  ariaDescribedBy: String,
45
46
  ariaLabelledBy: String,
46
47
  autoSize: Boolean,
@@ -220,13 +221,15 @@ var TextAreaVue2 = {
220
221
  iconName = _a.iconName,
221
222
  showValidationIcon = _a.showValidationIcon,
222
223
  showLoadingIcon = _a.showLoadingIcon,
223
- showClearButton = _a.showClearButton;
224
+ showClearButton = _a.showClearButton,
225
+ title = _a.title;
224
226
 
225
227
  var textAreaAttrs = __assign({
226
228
  id: id || this.calculatedId,
227
229
  name: name,
228
230
  disabled: disabled,
229
231
  rows: rows,
232
+ title: title,
230
233
  placeholder: placeholder,
231
234
  readOnly: readOnly,
232
235
  required: required,
@@ -17,6 +17,10 @@ export interface TextAreaProps extends FormComponentProps {
17
17
  * Identifies the element(s) which will label the component.
18
18
  */
19
19
  ariaLabelledBy?: string;
20
+ /**
21
+ * Identifies the title of the TextArea component.
22
+ */
23
+ title?: string;
20
24
  /**
21
25
  * Specifies if the textarea element will resize its height automatically ([see example]({% slug sizing_textarea %})).
22
26
  * Defaults to `false`.
@@ -165,8 +165,9 @@ var ColorInputVue2 = {
165
165
  } : [hexMessage])]), (this.inputMode === 'rgb' || this.inputMode === 'rgba') && [h("div", {
166
166
  "class": "k-vstack"
167
167
  }, [h(main_1.NumericTextBox, {
168
- tabIndex: this.tabIndex,
168
+ inputType: 'number',
169
169
  attrs: this.v3 ? undefined : {
170
+ inputType: 'number',
170
171
  tabIndex: this.tabIndex,
171
172
  value: this.$props.rgba.r,
172
173
  min: 0,
@@ -176,6 +177,7 @@ var ColorInputVue2 = {
176
177
  ariaLabel: rLabelMessage,
177
178
  disabled: this.$props.disabled
178
179
  },
180
+ tabIndex: this.tabIndex,
179
181
  value: this.$props.rgba.r,
180
182
  min: 0,
181
183
  max: 255,
@@ -195,8 +197,9 @@ var ColorInputVue2 = {
195
197
  } : [rMessage])]), h("div", {
196
198
  "class": "k-vstack"
197
199
  }, [h(main_1.NumericTextBox, {
198
- tabIndex: this.tabIndex,
200
+ inputType: 'number',
199
201
  attrs: this.v3 ? undefined : {
202
+ inputType: 'number',
200
203
  tabIndex: this.tabIndex,
201
204
  value: this.$props.rgba.g,
202
205
  min: 0,
@@ -206,6 +209,7 @@ var ColorInputVue2 = {
206
209
  ariaLabel: gLabelMessage,
207
210
  disabled: this.$props.disabled
208
211
  },
212
+ tabIndex: this.tabIndex,
209
213
  value: this.$props.rgba.g,
210
214
  min: 0,
211
215
  max: 255,
@@ -225,8 +229,9 @@ var ColorInputVue2 = {
225
229
  } : [gMessage])]), h("div", {
226
230
  "class": "k-vstack"
227
231
  }, [h(main_1.NumericTextBox, {
228
- tabIndex: this.tabIndex,
232
+ inputType: 'number',
229
233
  attrs: this.v3 ? undefined : {
234
+ inputType: 'number',
230
235
  tabIndex: this.tabIndex,
231
236
  value: this.$props.rgba.b,
232
237
  min: 0,
@@ -236,6 +241,7 @@ var ColorInputVue2 = {
236
241
  ariaLabel: bLabelMessage,
237
242
  disabled: this.$props.disabled
238
243
  },
244
+ tabIndex: this.tabIndex,
239
245
  value: this.$props.rgba.b,
240
246
  min: 0,
241
247
  max: 255,
@@ -256,8 +262,9 @@ var ColorInputVue2 = {
256
262
  } : [bMessage])])], this.inputMode === 'rgba' && h("div", {
257
263
  "class": "k-vstack"
258
264
  }, [this.$props.opacity && h(main_1.NumericTextBox, {
259
- tabIndex: this.tabIndex,
265
+ inputType: 'number',
260
266
  attrs: this.v3 ? undefined : {
267
+ inputType: 'number',
261
268
  tabIndex: this.tabIndex,
262
269
  value: this.$props.rgba.a,
263
270
  min: 0,
@@ -268,6 +275,7 @@ var ColorInputVue2 = {
268
275
  ariaLabel: aLabelMessage,
269
276
  disabled: this.$props.disabled
270
277
  },
278
+ tabIndex: this.tabIndex,
271
279
  value: this.$props.rgba.a,
272
280
  min: 0,
273
281
  max: 1,
@@ -1,6 +1,6 @@
1
1
  import { ColorGradientChangeEvent } from './ColorGradientChangeEvent';
2
2
  /**
3
- * Represents the props of the [KendoReact ColorGradient component]({% slug overview_colorgradient %}).
3
+ * Represents the props of the [Kendo UI for Vue ColorGradient component]({% slug overview_colorgradient %}).
4
4
  */
5
5
  export interface ColorGradientProps {
6
6
  /**
@@ -113,6 +113,10 @@ var NumericTextBoxVue2 = {
113
113
  showLoadingIcon: Boolean,
114
114
  showClearButton: Boolean,
115
115
  inputClass: String,
116
+ inputType: {
117
+ type: String,
118
+ default: 'tel'
119
+ },
116
120
  wrapperClass: String
117
121
  },
118
122
  inject: {
@@ -565,7 +569,7 @@ var NumericTextBoxVue2 = {
565
569
  "aria-valuemin": this.$props.min,
566
570
  "aria-valuemax": this.$props.max,
567
571
  placeholder: this.$props.placeholder,
568
- type: this.$props.inputType || 'tel',
572
+ type: this.$props.inputType,
569
573
  spellcheck: false,
570
574
  autocomplete: "off",
571
575
  autocorrect: "off",
@@ -579,7 +583,7 @@ var NumericTextBoxVue2 = {
579
583
  "aria-valuemin": this.$props.min,
580
584
  "aria-valuemax": this.$props.max,
581
585
  placeholder: this.$props.placeholder,
582
- type: this.$props.inputType || 'tel',
586
+ type: this.$props.inputType,
583
587
  spellcheck: false,
584
588
  autocomplete: "off",
585
589
  autocorrect: "off",
@@ -120,8 +120,9 @@ export interface NumericTextBoxProps extends FormComponentProps {
120
120
  * The available options are:
121
121
  * - (Default) `tel`
122
122
  * - `text`
123
+ * - `numeric`
123
124
  */
124
- inputType?: NumericTextBoxInputType;
125
+ inputType?: NumericTextBoxInputType | string;
125
126
  /**
126
127
  * If set to `false`, no visual representation of the invalid state of the component will be applied.
127
128
  *
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-inputs',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1662729130,
11
+ publishDate: 1663050173,
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
  };
@@ -91,13 +91,11 @@ var SliderLabelVue2 = {
91
91
  } : (_a = {}, _a[dir === 'rtl' ? 'right' : 'left'] = "".concat(position, "%"), _a.width = '1px', _a.height = '100%', _a);
92
92
  return h("li", {
93
93
  ref: 'sliderLabelRef',
94
- role: "presentation",
94
+ "class": "k-tick k-tick-large",
95
+ title: this.$props.title,
95
96
  attrs: this.v3 ? undefined : {
96
- role: "presentation",
97
97
  title: this.$props.title
98
98
  },
99
- "class": "k-tick k-tick-large",
100
- title: this.$props.title,
101
99
  style: __assign({
102
100
  zIndex: 1,
103
101
  position: 'absolute'
@@ -50,6 +50,7 @@ var TextAreaVue2 = {
50
50
  'blur': null
51
51
  },
52
52
  props: {
53
+ title: String,
53
54
  ariaDescribedBy: String,
54
55
  ariaLabelledBy: String,
55
56
  autoSize: Boolean,
@@ -229,13 +230,15 @@ var TextAreaVue2 = {
229
230
  iconName = _a.iconName,
230
231
  showValidationIcon = _a.showValidationIcon,
231
232
  showLoadingIcon = _a.showLoadingIcon,
232
- showClearButton = _a.showClearButton;
233
+ showClearButton = _a.showClearButton,
234
+ title = _a.title;
233
235
 
234
236
  var textAreaAttrs = __assign({
235
237
  id: id || this.calculatedId,
236
238
  name: name,
237
239
  disabled: disabled,
238
240
  rows: rows,
241
+ title: title,
239
242
  placeholder: placeholder,
240
243
  readOnly: readOnly,
241
244
  required: required,
@@ -17,6 +17,10 @@ export interface TextAreaProps extends FormComponentProps {
17
17
  * Identifies the element(s) which will label the component.
18
18
  */
19
19
  ariaLabelledBy?: string;
20
+ /**
21
+ * Identifies the title of the TextArea component.
22
+ */
23
+ title?: string;
20
24
  /**
21
25
  * Specifies if the textarea element will resize its height automatically ([see example]({% slug sizing_textarea %})).
22
26
  * Defaults to `false`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-inputs",
3
3
  "description": "Kendo UI for Vue Input package",
4
- "version": "3.5.4",
4
+ "version": "3.6.0-dev.202209130634",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -44,22 +44,22 @@
44
44
  "vue": "^2.6.12 || ^3.0.2"
45
45
  },
46
46
  "dependencies": {
47
- "@progress/kendo-vue-buttons": "3.5.4",
48
- "@progress/kendo-vue-common": "3.5.4",
49
- "@progress/kendo-vue-labels": "3.5.4",
50
- "@progress/kendo-vue-popup": "3.5.4"
47
+ "@progress/kendo-vue-buttons": "3.6.0-dev.202209130634",
48
+ "@progress/kendo-vue-common": "3.6.0-dev.202209130634",
49
+ "@progress/kendo-vue-labels": "3.6.0-dev.202209130634",
50
+ "@progress/kendo-vue-popup": "3.6.0-dev.202209130634"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@progress/kendo-data-query": "^1.5.5",
54
54
  "@progress/kendo-date-math": "^1.5.4",
55
55
  "@progress/kendo-drawing": "^1.8.0",
56
56
  "@progress/kendo-licensing": "^1.1.0",
57
- "@progress/kendo-vue-buttons": "3.5.4",
58
- "@progress/kendo-vue-dropdowns": "3.5.4",
59
- "@progress/kendo-vue-form": "3.5.4",
60
- "@progress/kendo-vue-intl": "3.5.4",
61
- "@progress/kendo-vue-labels": "3.5.4",
62
- "@progress/kendo-vue-tooltip": "3.5.4",
57
+ "@progress/kendo-vue-buttons": "3.6.0-dev.202209130634",
58
+ "@progress/kendo-vue-dropdowns": "3.6.0-dev.202209130634",
59
+ "@progress/kendo-vue-form": "3.6.0-dev.202209130634",
60
+ "@progress/kendo-vue-intl": "3.6.0-dev.202209130634",
61
+ "@progress/kendo-vue-labels": "3.6.0-dev.202209130634",
62
+ "@progress/kendo-vue-tooltip": "3.6.0-dev.202209130634",
63
63
  "cldr-core": "^41.0.0",
64
64
  "cldr-dates-full": "^41.0.0",
65
65
  "cldr-numbers-full": "^41.0.0"