@progress/kendo-vue-inputs 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.
@@ -125,6 +125,10 @@ export interface InputProps extends FormComponentProps {
125
125
  * Defines additional class to the input element.
126
126
  */
127
127
  inputClass?: String;
128
+ /**
129
+ * Defines a string value that labels an interactive element.
130
+ */
131
+ ariaLabel?: string;
128
132
  /**
129
133
  * Identifies the element(s) which will label the component.
130
134
  */
@@ -113,6 +113,7 @@ var InputVue2 = {
113
113
  inputClass: String,
114
114
  wrapperClass: String,
115
115
  tabIndex: Number,
116
+ ariaLabel: String,
116
117
  ariaLabelledBy: String,
117
118
  ariaDescribedBy: String
118
119
  },
@@ -164,6 +165,7 @@ var InputVue2 = {
164
165
  showLoadingIcon = _a.showLoadingIcon,
165
166
  showClearButton = _a.showClearButton,
166
167
  tabIndex = _a.tabIndex,
168
+ ariaLabel = _a.ariaLabel,
167
169
  ariaLabelledBy = _a.ariaLabelledBy,
168
170
  ariaDescribedBy = _a.ariaDescribedBy;
169
171
  var inputId = id || this._inputId;
@@ -183,6 +185,7 @@ var InputVue2 = {
183
185
  id: inputId,
184
186
  tabindex: tabIndex,
185
187
  required: required,
188
+ ariaLabel: ariaLabel,
186
189
  ariaLabelledby: ariaLabelledBy,
187
190
  ariaDescribedby: ariaDescribedBy,
188
191
  ariaDisabled: this.$props.disabled,
@@ -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: 1692867582,
8
+ publishDate: 1693308607,
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
  };
@@ -133,6 +133,10 @@ export interface TextBoxProps extends FormComponentProps {
133
133
  * Defines a string value that labels an interactive element.
134
134
  */
135
135
  ariaLabelledBy?: string;
136
+ /**
137
+ * Defines a string value that labels an interactive element.
138
+ */
139
+ ariaLabel?: string;
136
140
  /**
137
141
  * Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
138
142
  * * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `minlength`. Camel-case and kebap-case won't work in this scenario.
@@ -113,6 +113,7 @@ var TextBoxVue2 = {
113
113
  inputClass: String,
114
114
  wrapperClass: String,
115
115
  tabIndex: Number,
116
+ ariaLabel: String,
116
117
  ariaLabelledBy: String,
117
118
  ariaDescribedBy: String
118
119
  },
@@ -164,6 +165,7 @@ var TextBoxVue2 = {
164
165
  showLoadingIcon = _a.showLoadingIcon,
165
166
  showClearButton = _a.showClearButton,
166
167
  tabIndex = _a.tabIndex,
168
+ ariaLabel = _a.ariaLabel,
167
169
  ariaLabelledBy = _a.ariaLabelledBy,
168
170
  ariaDescribedBy = _a.ariaDescribedBy;
169
171
  var inputId = id || this._inputId;
@@ -183,6 +185,7 @@ var TextBoxVue2 = {
183
185
  id: inputId,
184
186
  tabindex: tabIndex,
185
187
  required: required,
188
+ ariaLabel: ariaLabel,
186
189
  ariaLabelledby: ariaLabelledBy,
187
190
  ariaDescribedby: ariaDescribedBy,
188
191
  ariaDisabled: this.$props.disabled,
@@ -125,6 +125,10 @@ export interface InputProps extends FormComponentProps {
125
125
  * Defines additional class to the input element.
126
126
  */
127
127
  inputClass?: String;
128
+ /**
129
+ * Defines a string value that labels an interactive element.
130
+ */
131
+ ariaLabel?: string;
128
132
  /**
129
133
  * Identifies the element(s) which will label the component.
130
134
  */
@@ -113,6 +113,7 @@ var InputVue2 = {
113
113
  inputClass: String,
114
114
  wrapperClass: String,
115
115
  tabIndex: Number,
116
+ ariaLabel: String,
116
117
  ariaLabelledBy: String,
117
118
  ariaDescribedBy: String
118
119
  },
@@ -164,6 +165,7 @@ var InputVue2 = {
164
165
  showLoadingIcon = _a.showLoadingIcon,
165
166
  showClearButton = _a.showClearButton,
166
167
  tabIndex = _a.tabIndex,
168
+ ariaLabel = _a.ariaLabel,
167
169
  ariaLabelledBy = _a.ariaLabelledBy,
168
170
  ariaDescribedBy = _a.ariaDescribedBy;
169
171
  var inputId = id || this._inputId;
@@ -183,6 +185,7 @@ var InputVue2 = {
183
185
  id: inputId,
184
186
  tabindex: tabIndex,
185
187
  required: required,
188
+ ariaLabel: ariaLabel,
186
189
  ariaLabelledby: ariaLabelledBy,
187
190
  ariaDescribedby: ariaDescribedBy,
188
191
  ariaDisabled: this.$props.disabled,
@@ -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: 1692867582,
8
+ publishDate: 1693308607,
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
  };
@@ -133,6 +133,10 @@ export interface TextBoxProps extends FormComponentProps {
133
133
  * Defines a string value that labels an interactive element.
134
134
  */
135
135
  ariaLabelledBy?: string;
136
+ /**
137
+ * Defines a string value that labels an interactive element.
138
+ */
139
+ ariaLabel?: string;
136
140
  /**
137
141
  * Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
138
142
  * * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `minlength`. Camel-case and kebap-case won't work in this scenario.
@@ -113,6 +113,7 @@ var TextBoxVue2 = {
113
113
  inputClass: String,
114
114
  wrapperClass: String,
115
115
  tabIndex: Number,
116
+ ariaLabel: String,
116
117
  ariaLabelledBy: String,
117
118
  ariaDescribedBy: String
118
119
  },
@@ -164,6 +165,7 @@ var TextBoxVue2 = {
164
165
  showLoadingIcon = _a.showLoadingIcon,
165
166
  showClearButton = _a.showClearButton,
166
167
  tabIndex = _a.tabIndex,
168
+ ariaLabel = _a.ariaLabel,
167
169
  ariaLabelledBy = _a.ariaLabelledBy,
168
170
  ariaDescribedBy = _a.ariaDescribedBy;
169
171
  var inputId = id || this._inputId;
@@ -183,6 +185,7 @@ var TextBoxVue2 = {
183
185
  id: inputId,
184
186
  tabindex: tabIndex,
185
187
  required: required,
188
+ ariaLabel: ariaLabel,
186
189
  ariaLabelledby: ariaLabelledBy,
187
190
  ariaDescribedby: ariaDescribedBy,
188
191
  ariaDisabled: this.$props.disabled,
@@ -125,6 +125,10 @@ export interface InputProps extends FormComponentProps {
125
125
  * Defines additional class to the input element.
126
126
  */
127
127
  inputClass?: String;
128
+ /**
129
+ * Defines a string value that labels an interactive element.
130
+ */
131
+ ariaLabel?: string;
128
132
  /**
129
133
  * Identifies the element(s) which will label the component.
130
134
  */
@@ -119,6 +119,7 @@ var InputVue2 = {
119
119
  inputClass: String,
120
120
  wrapperClass: String,
121
121
  tabIndex: Number,
122
+ ariaLabel: String,
122
123
  ariaLabelledBy: String,
123
124
  ariaDescribedBy: String
124
125
  },
@@ -170,6 +171,7 @@ var InputVue2 = {
170
171
  showLoadingIcon = _a.showLoadingIcon,
171
172
  showClearButton = _a.showClearButton,
172
173
  tabIndex = _a.tabIndex,
174
+ ariaLabel = _a.ariaLabel,
173
175
  ariaLabelledBy = _a.ariaLabelledBy,
174
176
  ariaDescribedBy = _a.ariaDescribedBy;
175
177
  var inputId = id || this._inputId;
@@ -189,6 +191,7 @@ var InputVue2 = {
189
191
  id: inputId,
190
192
  tabindex: tabIndex,
191
193
  required: required,
194
+ ariaLabel: ariaLabel,
192
195
  ariaLabelledby: ariaLabelledBy,
193
196
  ariaDescribedby: ariaDescribedBy,
194
197
  ariaDisabled: this.$props.disabled,
@@ -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: 1692867582,
11
+ publishDate: 1693308607,
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
  };
@@ -133,6 +133,10 @@ export interface TextBoxProps extends FormComponentProps {
133
133
  * Defines a string value that labels an interactive element.
134
134
  */
135
135
  ariaLabelledBy?: string;
136
+ /**
137
+ * Defines a string value that labels an interactive element.
138
+ */
139
+ ariaLabel?: string;
136
140
  /**
137
141
  * Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
138
142
  * * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `minlength`. Camel-case and kebap-case won't work in this scenario.
@@ -119,6 +119,7 @@ var TextBoxVue2 = {
119
119
  inputClass: String,
120
120
  wrapperClass: String,
121
121
  tabIndex: Number,
122
+ ariaLabel: String,
122
123
  ariaLabelledBy: String,
123
124
  ariaDescribedBy: String
124
125
  },
@@ -170,6 +171,7 @@ var TextBoxVue2 = {
170
171
  showLoadingIcon = _a.showLoadingIcon,
171
172
  showClearButton = _a.showClearButton,
172
173
  tabIndex = _a.tabIndex,
174
+ ariaLabel = _a.ariaLabel,
173
175
  ariaLabelledBy = _a.ariaLabelledBy,
174
176
  ariaDescribedBy = _a.ariaDescribedBy;
175
177
  var inputId = id || this._inputId;
@@ -189,6 +191,7 @@ var TextBoxVue2 = {
189
191
  id: inputId,
190
192
  tabindex: tabIndex,
191
193
  required: required,
194
+ ariaLabel: ariaLabel,
192
195
  ariaLabelledby: ariaLabelledBy,
193
196
  ariaDescribedby: ariaDescribedBy,
194
197
  ariaDisabled: this.$props.disabled,
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.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"
@@ -47,11 +47,11 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@progress/kendo-inputs-common": "^3.1.0",
50
- "@progress/kendo-vue-buttons": "3.13.0-dev.202308240911",
51
- "@progress/kendo-vue-common": "3.13.0-dev.202308240911",
52
- "@progress/kendo-vue-dialogs": "3.13.0-dev.202308240911",
53
- "@progress/kendo-vue-labels": "3.13.0-dev.202308240911",
54
- "@progress/kendo-vue-popup": "3.13.0-dev.202308240911"
50
+ "@progress/kendo-vue-buttons": "3.13.0-dev.202308291144",
51
+ "@progress/kendo-vue-common": "3.13.0-dev.202308291144",
52
+ "@progress/kendo-vue-dialogs": "3.13.0-dev.202308291144",
53
+ "@progress/kendo-vue-labels": "3.13.0-dev.202308291144",
54
+ "@progress/kendo-vue-popup": "3.13.0-dev.202308291144"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@progress/kendo-data-query": "^1.5.5",
@@ -60,13 +60,13 @@
60
60
  "@progress/kendo-file-saver": "^1.1.1",
61
61
  "@progress/kendo-licensing": "^1.3.0",
62
62
  "@progress/kendo-svg-icons": "^1.0.0",
63
- "@progress/kendo-vue-buttons": "3.13.0-dev.202308240911",
64
- "@progress/kendo-vue-dropdowns": "3.13.0-dev.202308240911",
65
- "@progress/kendo-vue-form": "3.13.0-dev.202308240911",
66
- "@progress/kendo-vue-intl": "3.13.0-dev.202308240911",
67
- "@progress/kendo-vue-labels": "3.13.0-dev.202308240911",
68
- "@progress/kendo-vue-tooltip": "3.13.0-dev.202308240911",
69
- "@progress/kendo-vue-upload": "3.13.0-dev.202308240911",
63
+ "@progress/kendo-vue-buttons": "3.13.0-dev.202308291144",
64
+ "@progress/kendo-vue-dropdowns": "3.13.0-dev.202308291144",
65
+ "@progress/kendo-vue-form": "3.13.0-dev.202308291144",
66
+ "@progress/kendo-vue-intl": "3.13.0-dev.202308291144",
67
+ "@progress/kendo-vue-labels": "3.13.0-dev.202308291144",
68
+ "@progress/kendo-vue-tooltip": "3.13.0-dev.202308291144",
69
+ "@progress/kendo-vue-upload": "3.13.0-dev.202308291144",
70
70
  "cldr-core": "^41.0.0",
71
71
  "cldr-dates-full": "^41.0.0",
72
72
  "cldr-numbers-full": "^41.0.0"