@progress/kendo-vue-inputs 5.2.0 → 5.3.0-dev.202408091542
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/dist/cdn/js/kendo-vue-inputs.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/textbox/TextBox.d.ts +0 -16
- package/dist/es/textbox/TextBox.js +4 -18
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/textbox/TextBox.d.ts +0 -16
- package/dist/esm/textbox/TextBox.js +4 -18
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/textbox/TextBox.d.ts +0 -16
- package/dist/npm/textbox/TextBox.js +4 -18
- package/package.json +13 -13
|
@@ -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:
|
|
8
|
+
publishDate: 1723217513,
|
|
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
|
};
|
|
@@ -132,26 +132,10 @@ export interface TextBoxProps extends FormComponentProps {
|
|
|
132
132
|
* Defines additional class to the wrapper element.
|
|
133
133
|
*/
|
|
134
134
|
wrapperClass?: String;
|
|
135
|
-
/**
|
|
136
|
-
* Defines tabindex to the input element.
|
|
137
|
-
*/
|
|
138
|
-
tabIndex?: Number;
|
|
139
135
|
/**
|
|
140
136
|
* Defines additional class to the input element.
|
|
141
137
|
*/
|
|
142
138
|
inputClass?: String;
|
|
143
|
-
/**
|
|
144
|
-
* Identifies the element(s) which will label the component.
|
|
145
|
-
*/
|
|
146
|
-
ariaDescribedBy?: string;
|
|
147
|
-
/**
|
|
148
|
-
* Defines a string value that labels an interactive element.
|
|
149
|
-
*/
|
|
150
|
-
ariaLabelledBy?: string;
|
|
151
|
-
/**
|
|
152
|
-
* Defines a string value that labels an interactive element.
|
|
153
|
-
*/
|
|
154
|
-
ariaLabel?: string;
|
|
155
139
|
/**
|
|
156
140
|
* Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
|
|
157
141
|
* * 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.
|
|
@@ -27,6 +27,7 @@ var TextBoxVue2 = {
|
|
|
27
27
|
model: {
|
|
28
28
|
event: 'changemodel'
|
|
29
29
|
},
|
|
30
|
+
inheritAttrs: false,
|
|
30
31
|
// @ts-ignore
|
|
31
32
|
emits: {
|
|
32
33
|
'input': null,
|
|
@@ -111,11 +112,7 @@ var TextBoxVue2 = {
|
|
|
111
112
|
showLoadingIcon: Boolean,
|
|
112
113
|
showClearButton: Boolean,
|
|
113
114
|
inputClass: String,
|
|
114
|
-
wrapperClass: String
|
|
115
|
-
tabIndex: Number,
|
|
116
|
-
ariaLabel: String,
|
|
117
|
-
ariaLabelledBy: String,
|
|
118
|
-
ariaDescribedBy: String
|
|
115
|
+
wrapperClass: String
|
|
119
116
|
},
|
|
120
117
|
data: function data() {
|
|
121
118
|
return {
|
|
@@ -163,11 +160,7 @@ var TextBoxVue2 = {
|
|
|
163
160
|
iconName = _a.iconName,
|
|
164
161
|
showValidationIcon = _a.showValidationIcon,
|
|
165
162
|
showLoadingIcon = _a.showLoadingIcon,
|
|
166
|
-
showClearButton = _a.showClearButton
|
|
167
|
-
tabIndex = _a.tabIndex,
|
|
168
|
-
ariaLabel = _a.ariaLabel,
|
|
169
|
-
ariaLabelledBy = _a.ariaLabelledBy,
|
|
170
|
-
ariaDescribedBy = _a.ariaDescribedBy;
|
|
163
|
+
showClearButton = _a.showClearButton;
|
|
171
164
|
var inputId = id || this._inputId;
|
|
172
165
|
var textbox = h('input', __assign(__assign({
|
|
173
166
|
domProps: this.v3 ? null : __assign(__assign({}, this.$attrs), {
|
|
@@ -177,18 +170,11 @@ var TextBoxVue2 = {
|
|
|
177
170
|
disabled: this.$props.disabled,
|
|
178
171
|
value: this.computedValue
|
|
179
172
|
}),
|
|
180
|
-
attrs: this.v3 ? undefined : __assign(
|
|
181
|
-
tabindex: tabIndex
|
|
182
|
-
})
|
|
173
|
+
attrs: this.v3 ? undefined : __assign({}, this.$attrs)
|
|
183
174
|
}, this.$attrs), {
|
|
184
175
|
placeholder: this.$props.placeholder,
|
|
185
176
|
id: inputId,
|
|
186
|
-
tabindex: tabIndex,
|
|
187
177
|
required: required,
|
|
188
|
-
ariaLabel: ariaLabel,
|
|
189
|
-
ariaLabelledby: ariaLabelledBy,
|
|
190
|
-
ariaDescribedby: ariaDescribedBy,
|
|
191
|
-
ariaDisabled: this.$props.disabled,
|
|
192
178
|
disabled: this.$props.disabled,
|
|
193
179
|
value: this.computedValue,
|
|
194
180
|
class: this.inputInnerClass,
|
|
@@ -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:
|
|
8
|
+
publishDate: 1723217513,
|
|
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
|
};
|
|
@@ -132,26 +132,10 @@ export interface TextBoxProps extends FormComponentProps {
|
|
|
132
132
|
* Defines additional class to the wrapper element.
|
|
133
133
|
*/
|
|
134
134
|
wrapperClass?: String;
|
|
135
|
-
/**
|
|
136
|
-
* Defines tabindex to the input element.
|
|
137
|
-
*/
|
|
138
|
-
tabIndex?: Number;
|
|
139
135
|
/**
|
|
140
136
|
* Defines additional class to the input element.
|
|
141
137
|
*/
|
|
142
138
|
inputClass?: String;
|
|
143
|
-
/**
|
|
144
|
-
* Identifies the element(s) which will label the component.
|
|
145
|
-
*/
|
|
146
|
-
ariaDescribedBy?: string;
|
|
147
|
-
/**
|
|
148
|
-
* Defines a string value that labels an interactive element.
|
|
149
|
-
*/
|
|
150
|
-
ariaLabelledBy?: string;
|
|
151
|
-
/**
|
|
152
|
-
* Defines a string value that labels an interactive element.
|
|
153
|
-
*/
|
|
154
|
-
ariaLabel?: string;
|
|
155
139
|
/**
|
|
156
140
|
* Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
|
|
157
141
|
* * 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.
|
|
@@ -27,6 +27,7 @@ var TextBoxVue2 = {
|
|
|
27
27
|
model: {
|
|
28
28
|
event: 'changemodel'
|
|
29
29
|
},
|
|
30
|
+
inheritAttrs: false,
|
|
30
31
|
// @ts-ignore
|
|
31
32
|
emits: {
|
|
32
33
|
'input': null,
|
|
@@ -111,11 +112,7 @@ var TextBoxVue2 = {
|
|
|
111
112
|
showLoadingIcon: Boolean,
|
|
112
113
|
showClearButton: Boolean,
|
|
113
114
|
inputClass: String,
|
|
114
|
-
wrapperClass: String
|
|
115
|
-
tabIndex: Number,
|
|
116
|
-
ariaLabel: String,
|
|
117
|
-
ariaLabelledBy: String,
|
|
118
|
-
ariaDescribedBy: String
|
|
115
|
+
wrapperClass: String
|
|
119
116
|
},
|
|
120
117
|
data: function data() {
|
|
121
118
|
return {
|
|
@@ -163,11 +160,7 @@ var TextBoxVue2 = {
|
|
|
163
160
|
iconName = _a.iconName,
|
|
164
161
|
showValidationIcon = _a.showValidationIcon,
|
|
165
162
|
showLoadingIcon = _a.showLoadingIcon,
|
|
166
|
-
showClearButton = _a.showClearButton
|
|
167
|
-
tabIndex = _a.tabIndex,
|
|
168
|
-
ariaLabel = _a.ariaLabel,
|
|
169
|
-
ariaLabelledBy = _a.ariaLabelledBy,
|
|
170
|
-
ariaDescribedBy = _a.ariaDescribedBy;
|
|
163
|
+
showClearButton = _a.showClearButton;
|
|
171
164
|
var inputId = id || this._inputId;
|
|
172
165
|
var textbox = h('input', __assign(__assign({
|
|
173
166
|
domProps: this.v3 ? null : __assign(__assign({}, this.$attrs), {
|
|
@@ -177,18 +170,11 @@ var TextBoxVue2 = {
|
|
|
177
170
|
disabled: this.$props.disabled,
|
|
178
171
|
value: this.computedValue
|
|
179
172
|
}),
|
|
180
|
-
attrs: this.v3 ? undefined : __assign(
|
|
181
|
-
tabindex: tabIndex
|
|
182
|
-
})
|
|
173
|
+
attrs: this.v3 ? undefined : __assign({}, this.$attrs)
|
|
183
174
|
}, this.$attrs), {
|
|
184
175
|
placeholder: this.$props.placeholder,
|
|
185
176
|
id: inputId,
|
|
186
|
-
tabindex: tabIndex,
|
|
187
177
|
required: required,
|
|
188
|
-
ariaLabel: ariaLabel,
|
|
189
|
-
ariaLabelledby: ariaLabelledBy,
|
|
190
|
-
ariaDescribedby: ariaDescribedBy,
|
|
191
|
-
ariaDisabled: this.$props.disabled,
|
|
192
178
|
disabled: this.$props.disabled,
|
|
193
179
|
value: this.computedValue,
|
|
194
180
|
class: this.inputInnerClass,
|
|
@@ -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:
|
|
11
|
+
publishDate: 1723217513,
|
|
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
|
};
|
|
@@ -132,26 +132,10 @@ export interface TextBoxProps extends FormComponentProps {
|
|
|
132
132
|
* Defines additional class to the wrapper element.
|
|
133
133
|
*/
|
|
134
134
|
wrapperClass?: String;
|
|
135
|
-
/**
|
|
136
|
-
* Defines tabindex to the input element.
|
|
137
|
-
*/
|
|
138
|
-
tabIndex?: Number;
|
|
139
135
|
/**
|
|
140
136
|
* Defines additional class to the input element.
|
|
141
137
|
*/
|
|
142
138
|
inputClass?: String;
|
|
143
|
-
/**
|
|
144
|
-
* Identifies the element(s) which will label the component.
|
|
145
|
-
*/
|
|
146
|
-
ariaDescribedBy?: string;
|
|
147
|
-
/**
|
|
148
|
-
* Defines a string value that labels an interactive element.
|
|
149
|
-
*/
|
|
150
|
-
ariaLabelledBy?: string;
|
|
151
|
-
/**
|
|
152
|
-
* Defines a string value that labels an interactive element.
|
|
153
|
-
*/
|
|
154
|
-
ariaLabel?: string;
|
|
155
139
|
/**
|
|
156
140
|
* Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
|
|
157
141
|
* * 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.
|
|
@@ -33,6 +33,7 @@ var TextBoxVue2 = {
|
|
|
33
33
|
model: {
|
|
34
34
|
event: 'changemodel'
|
|
35
35
|
},
|
|
36
|
+
inheritAttrs: false,
|
|
36
37
|
// @ts-ignore
|
|
37
38
|
emits: {
|
|
38
39
|
'input': null,
|
|
@@ -117,11 +118,7 @@ var TextBoxVue2 = {
|
|
|
117
118
|
showLoadingIcon: Boolean,
|
|
118
119
|
showClearButton: Boolean,
|
|
119
120
|
inputClass: String,
|
|
120
|
-
wrapperClass: String
|
|
121
|
-
tabIndex: Number,
|
|
122
|
-
ariaLabel: String,
|
|
123
|
-
ariaLabelledBy: String,
|
|
124
|
-
ariaDescribedBy: String
|
|
121
|
+
wrapperClass: String
|
|
125
122
|
},
|
|
126
123
|
data: function data() {
|
|
127
124
|
return {
|
|
@@ -169,11 +166,7 @@ var TextBoxVue2 = {
|
|
|
169
166
|
iconName = _a.iconName,
|
|
170
167
|
showValidationIcon = _a.showValidationIcon,
|
|
171
168
|
showLoadingIcon = _a.showLoadingIcon,
|
|
172
|
-
showClearButton = _a.showClearButton
|
|
173
|
-
tabIndex = _a.tabIndex,
|
|
174
|
-
ariaLabel = _a.ariaLabel,
|
|
175
|
-
ariaLabelledBy = _a.ariaLabelledBy,
|
|
176
|
-
ariaDescribedBy = _a.ariaDescribedBy;
|
|
169
|
+
showClearButton = _a.showClearButton;
|
|
177
170
|
var inputId = id || this._inputId;
|
|
178
171
|
var textbox = h('input', __assign(__assign({
|
|
179
172
|
domProps: this.v3 ? null : __assign(__assign({}, this.$attrs), {
|
|
@@ -183,18 +176,11 @@ var TextBoxVue2 = {
|
|
|
183
176
|
disabled: this.$props.disabled,
|
|
184
177
|
value: this.computedValue
|
|
185
178
|
}),
|
|
186
|
-
attrs: this.v3 ? undefined : __assign(
|
|
187
|
-
tabindex: tabIndex
|
|
188
|
-
})
|
|
179
|
+
attrs: this.v3 ? undefined : __assign({}, this.$attrs)
|
|
189
180
|
}, this.$attrs), {
|
|
190
181
|
placeholder: this.$props.placeholder,
|
|
191
182
|
id: inputId,
|
|
192
|
-
tabindex: tabIndex,
|
|
193
183
|
required: required,
|
|
194
|
-
ariaLabel: ariaLabel,
|
|
195
|
-
ariaLabelledby: ariaLabelledBy,
|
|
196
|
-
ariaDescribedby: ariaDescribedBy,
|
|
197
|
-
ariaDisabled: this.$props.disabled,
|
|
198
184
|
disabled: this.$props.disabled,
|
|
199
185
|
value: this.computedValue,
|
|
200
186
|
class: this.inputInnerClass,
|
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": "5.
|
|
4
|
+
"version": "5.3.0-dev.202408091542",
|
|
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": "5.
|
|
51
|
-
"@progress/kendo-vue-common": "5.
|
|
52
|
-
"@progress/kendo-vue-dialogs": "5.
|
|
53
|
-
"@progress/kendo-vue-labels": "5.
|
|
54
|
-
"@progress/kendo-vue-popup": "5.
|
|
50
|
+
"@progress/kendo-vue-buttons": "5.3.0-dev.202408091542",
|
|
51
|
+
"@progress/kendo-vue-common": "5.3.0-dev.202408091542",
|
|
52
|
+
"@progress/kendo-vue-dialogs": "5.3.0-dev.202408091542",
|
|
53
|
+
"@progress/kendo-vue-labels": "5.3.0-dev.202408091542",
|
|
54
|
+
"@progress/kendo-vue-popup": "5.3.0-dev.202408091542"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@progress/kendo-data-query": "^1.7.0",
|
|
@@ -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": "^3.0.0",
|
|
63
|
-
"@progress/kendo-vue-buttons": "5.
|
|
64
|
-
"@progress/kendo-vue-dropdowns": "5.
|
|
65
|
-
"@progress/kendo-vue-form": "5.
|
|
66
|
-
"@progress/kendo-vue-intl": "5.
|
|
67
|
-
"@progress/kendo-vue-labels": "5.
|
|
68
|
-
"@progress/kendo-vue-tooltip": "5.
|
|
69
|
-
"@progress/kendo-vue-upload": "5.
|
|
63
|
+
"@progress/kendo-vue-buttons": "5.3.0-dev.202408091542",
|
|
64
|
+
"@progress/kendo-vue-dropdowns": "5.3.0-dev.202408091542",
|
|
65
|
+
"@progress/kendo-vue-form": "5.3.0-dev.202408091542",
|
|
66
|
+
"@progress/kendo-vue-intl": "5.3.0-dev.202408091542",
|
|
67
|
+
"@progress/kendo-vue-labels": "5.3.0-dev.202408091542",
|
|
68
|
+
"@progress/kendo-vue-tooltip": "5.3.0-dev.202408091542",
|
|
69
|
+
"@progress/kendo-vue-upload": "5.3.0-dev.202408091542",
|
|
70
70
|
"cldr-core": "^41.0.0",
|
|
71
71
|
"cldr-dates-full": "^41.0.0",
|
|
72
72
|
"cldr-numbers-full": "^41.0.0"
|