@progress/kendo-vue-inputs 3.10.2 → 3.11.0-dev.202305230623
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/checkbox/Checkbox.js +1 -0
- package/dist/es/colors/ColorPalette.js +1 -3
- package/dist/es/colors/ColorPicker.js +20 -14
- package/dist/es/colors/FlatColorPicker.js +3 -1
- package/dist/es/colors/interfaces/ColorPickerProps.d.ts +5 -2
- package/dist/es/input/Input.js +6 -2
- package/dist/es/maskedtextbox/MaskedTextBox.js +6 -2
- package/dist/es/numerictextbox/NumericTextBox.js +6 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/range-slider/RangeSlider.js +1 -1
- package/dist/es/slider/Slider.js +14 -9
- package/dist/es/textarea/TextArea.js +6 -2
- package/dist/es/textbox/TextBox.d.ts +1 -1
- package/dist/es/textbox/TextBox.js +9 -5
- package/dist/esm/checkbox/Checkbox.js +1 -0
- package/dist/esm/colors/ColorPalette.js +1 -3
- package/dist/esm/colors/ColorPicker.js +20 -14
- package/dist/esm/colors/FlatColorPicker.js +3 -1
- package/dist/esm/colors/interfaces/ColorPickerProps.d.ts +5 -2
- package/dist/esm/input/Input.js +6 -2
- package/dist/esm/maskedtextbox/MaskedTextBox.js +6 -2
- package/dist/esm/numerictextbox/NumericTextBox.js +6 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/range-slider/RangeSlider.js +1 -1
- package/dist/esm/slider/Slider.js +14 -9
- package/dist/esm/textarea/TextArea.js +6 -2
- package/dist/esm/textbox/TextBox.d.ts +1 -1
- package/dist/esm/textbox/TextBox.js +9 -5
- package/dist/npm/checkbox/Checkbox.js +1 -0
- package/dist/npm/colors/ColorPalette.js +1 -3
- package/dist/npm/colors/ColorPicker.js +19 -13
- package/dist/npm/colors/FlatColorPicker.js +3 -1
- package/dist/npm/colors/interfaces/ColorPickerProps.d.ts +5 -2
- package/dist/npm/input/Input.js +6 -2
- package/dist/npm/maskedtextbox/MaskedTextBox.js +6 -2
- package/dist/npm/numerictextbox/NumericTextBox.js +6 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/range-slider/RangeSlider.js +1 -1
- package/dist/npm/slider/Slider.js +14 -9
- package/dist/npm/textarea/TextArea.js +6 -2
- package/dist/npm/textbox/TextBox.d.ts +1 -1
- package/dist/npm/textbox/TextBox.js +9 -5
- package/package.json +13 -13
|
@@ -199,7 +199,7 @@ var TextBoxVue2 = {
|
|
|
199
199
|
keydown: this.handleKeydown,
|
|
200
200
|
keyup: this.handleKeyup,
|
|
201
201
|
keypress: this.handleKeypress,
|
|
202
|
-
input: this.
|
|
202
|
+
input: this.handleInput,
|
|
203
203
|
animationstart: this.handleAutoFill,
|
|
204
204
|
animationend: this.handleAutoFillEnd
|
|
205
205
|
},
|
|
@@ -209,7 +209,7 @@ var TextBoxVue2 = {
|
|
|
209
209
|
onChange: this.handleChange,
|
|
210
210
|
onFocus: this.emitFocus,
|
|
211
211
|
onBlur: this.emitBlur,
|
|
212
|
-
|
|
212
|
+
onInput: this.handleInput,
|
|
213
213
|
onAnimationstart: this.handleAutoFill,
|
|
214
214
|
onAnimationend: this.handleAutoFillEnd
|
|
215
215
|
}));
|
|
@@ -262,8 +262,12 @@ var TextBoxVue2 = {
|
|
|
262
262
|
},
|
|
263
263
|
icon: exclamationCircleIcon,
|
|
264
264
|
"class": "k-input-validation-icon"
|
|
265
|
-
}), showLoadingIcon && h(
|
|
266
|
-
|
|
265
|
+
}), showLoadingIcon && h(Icon, {
|
|
266
|
+
name: 'loading',
|
|
267
|
+
attrs: this.v3 ? undefined : {
|
|
268
|
+
name: 'loading'
|
|
269
|
+
},
|
|
270
|
+
"class": 'k-input-loading-icon'
|
|
267
271
|
}), showClearButton && this.computedValue && h("span", {
|
|
268
272
|
onClick: this.clearClick,
|
|
269
273
|
on: this.v3 ? undefined : {
|
|
@@ -361,7 +365,7 @@ var TextBoxVue2 = {
|
|
|
361
365
|
this._input.setCustomValidity(this.validity().valid ? '' : this.$props.validationMessage || '');
|
|
362
366
|
}
|
|
363
367
|
},
|
|
364
|
-
|
|
368
|
+
handleInput: function handleInput(event) {
|
|
365
369
|
this.emitUpdate(event, 'input', event.target.value);
|
|
366
370
|
},
|
|
367
371
|
handleChange: function handleChange(event) {
|
|
@@ -199,6 +199,7 @@ var CheckboxVue2 = {
|
|
|
199
199
|
this.defaultValidationMessage = this.localizeMessage(main_1.checkboxValidation);
|
|
200
200
|
this.optionalMessage = this.localizeMessage(main_1.checkboxOptionalText);
|
|
201
201
|
var checkboxClasses = (0, kendo_vue_common_1.classNames)({
|
|
202
|
+
'k-checkbox-wrap': true,
|
|
202
203
|
'k-disabled': disabled
|
|
203
204
|
});
|
|
204
205
|
var inputClasses = (0, kendo_vue_common_1.classNames)((_a = {
|
|
@@ -203,15 +203,13 @@ var ColorPaletteVue2 = {
|
|
|
203
203
|
role: "grid",
|
|
204
204
|
tabindex: (0, kendo_vue_common_1.getTabIndex)(this.$props.tabIndex, this.$props.disabled),
|
|
205
205
|
ref: (0, kendo_vue_common_1.setRef)(this, 'wrapper')
|
|
206
|
-
}, [h("div", {
|
|
207
|
-
"class": "k-colorpalette-table-wrap"
|
|
208
206
|
}, [h("table", {
|
|
209
207
|
"class": "k-colorpalette-table k-palette",
|
|
210
208
|
role: "presentation",
|
|
211
209
|
attrs: this.v3 ? undefined : {
|
|
212
210
|
role: "presentation"
|
|
213
211
|
}
|
|
214
|
-
}, [h("tbody", [renderRows.call(this, svc.colorRows, selectedCellCoords, focusedCellCoords)])])])
|
|
212
|
+
}, [h("tbody", [renderRows.call(this, svc.colorRows, selectedCellCoords, focusedCellCoords)])])]);
|
|
215
213
|
} else {
|
|
216
214
|
// In this way, the code prevents an eventual focus of the component when no cells are available.
|
|
217
215
|
// This is needed because upon focus the first cell gets focused.
|
|
@@ -98,6 +98,7 @@ var ColorPickerVue2 = {
|
|
|
98
98
|
},
|
|
99
99
|
title: String,
|
|
100
100
|
icon: String,
|
|
101
|
+
svgIcon: Object,
|
|
101
102
|
iconClassName: String,
|
|
102
103
|
popupSettings: {
|
|
103
104
|
type: Object,
|
|
@@ -213,22 +214,21 @@ var ColorPickerVue2 = {
|
|
|
213
214
|
// @ts-ignore
|
|
214
215
|
render: function render(createElement) {
|
|
215
216
|
var _this2 = this;
|
|
216
|
-
var _a;
|
|
217
217
|
var _this = this;
|
|
218
218
|
var localizationService = (0, kendo_vue_intl_1.provideLocalizationService)(this);
|
|
219
219
|
// tslint:disable-next-line:max-line-length
|
|
220
220
|
var colorPickerLabelMessage = localizationService.toLanguageString(main_1.colorPickerDropdownButtonAriaLabel, main_1.messages[main_1.colorPickerDropdownButtonAriaLabel]);
|
|
221
221
|
var h = gh || createElement;
|
|
222
|
-
var
|
|
223
|
-
disabled =
|
|
224
|
-
tabIndex =
|
|
225
|
-
dir =
|
|
226
|
-
view =
|
|
227
|
-
selectedView =
|
|
228
|
-
showClearButton =
|
|
229
|
-
showPreview =
|
|
230
|
-
showButtons =
|
|
231
|
-
popupSettings =
|
|
222
|
+
var _a = this.$props,
|
|
223
|
+
disabled = _a.disabled,
|
|
224
|
+
tabIndex = _a.tabIndex,
|
|
225
|
+
dir = _a.dir,
|
|
226
|
+
view = _a.view,
|
|
227
|
+
selectedView = _a.selectedView,
|
|
228
|
+
showClearButton = _a.showClearButton,
|
|
229
|
+
showPreview = _a.showPreview,
|
|
230
|
+
showButtons = _a.showButtons,
|
|
231
|
+
popupSettings = _a.popupSettings;
|
|
232
232
|
var renderFlatColorPicker = function renderFlatColorPicker() {
|
|
233
233
|
return h(FlatColorPicker_1.FlatColorPicker, __assign({
|
|
234
234
|
onKeydown: this.onKeyDownHandler,
|
|
@@ -307,8 +307,14 @@ var ColorPickerVue2 = {
|
|
|
307
307
|
'k-no-color': !this.computedValue,
|
|
308
308
|
'k-icon-color-preview': this.icon || this.iconClassName
|
|
309
309
|
})
|
|
310
|
-
}, [(this.iconClassName || this.icon) && h(
|
|
311
|
-
"class": (0, kendo_vue_common_1.classNames)('k-color-preview-icon', this.iconClassName
|
|
310
|
+
}, [(this.iconClassName || this.icon || this.svgIcon) && h(kendo_vue_common_1.Icon, {
|
|
311
|
+
"class": (0, kendo_vue_common_1.classNames)('k-color-preview-icon', this.iconClassName),
|
|
312
|
+
name: (0, kendo_vue_common_1.getIconName)(this.icon),
|
|
313
|
+
attrs: this.v3 ? undefined : {
|
|
314
|
+
name: (0, kendo_vue_common_1.getIconName)(this.icon),
|
|
315
|
+
icon: this.svgIcon
|
|
316
|
+
},
|
|
317
|
+
icon: this.svgIcon
|
|
312
318
|
}), h("span", {
|
|
313
319
|
"class": "k-color-preview-mask",
|
|
314
320
|
style: {
|
|
@@ -228,7 +228,9 @@ var FlatColorPickerVue2 = {
|
|
|
228
228
|
"class": "k-coloreditor-header-actions k-hstack"
|
|
229
229
|
}, [
|
|
230
230
|
// @ts-ignore function children
|
|
231
|
-
h(kendo_vue_buttons_1.ButtonGroup,
|
|
231
|
+
h(kendo_vue_buttons_1.ButtonGroup, {
|
|
232
|
+
"class": "k-button-group-flat"
|
|
233
|
+
}, this.v3 ? function () {
|
|
232
234
|
return [
|
|
233
235
|
// @ts-ignore function children
|
|
234
236
|
h(kendo_vue_buttons_1.Button, {
|
|
@@ -7,6 +7,7 @@ import { ColorPickerPaletteSettings } from './ColorPickerPaletteSettings';
|
|
|
7
7
|
import { ColorPickerView } from './ColorPickerView';
|
|
8
8
|
import { ColorGradientProps } from './ColorGradientProps';
|
|
9
9
|
import { FlatColorPickerProps } from '../FlatColorPicker';
|
|
10
|
+
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
10
11
|
/**
|
|
11
12
|
* Represents the props of the [Kendo UI for Vue ColorPicker component]({% slug overview_colorpicker %}).
|
|
12
13
|
*/
|
|
@@ -76,11 +77,13 @@ export interface ColorPickerProps {
|
|
|
76
77
|
showButtons?: boolean;
|
|
77
78
|
/**
|
|
78
79
|
* Defines the name of an [existing icon in the Kendo UI for Vue theme]({% slug icons %}).
|
|
79
|
-
* You have to provide only the name of the icon without the `k-icon` or the `k-i-` prefixes.
|
|
80
|
-
* For example, `edit-tools` will be parsed to `k-icon k-i-edit-tools`
|
|
81
80
|
* ([see example]({% slug customizecolorpicker_colorpicker %}#toc-displaying-kendo-ui-icons)).
|
|
82
81
|
*/
|
|
83
82
|
icon?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Defines an SVGIcon to be rendered within the ColorPicker button.
|
|
85
|
+
*/
|
|
86
|
+
svgIcon?: SVGIcon;
|
|
84
87
|
/**
|
|
85
88
|
* The class name which displays an icon in the ColorPicker button
|
|
86
89
|
* ([see example]({% slug customizecolorpicker_colorpicker %}#toc-displaying-custom-icons)).
|
package/dist/npm/input/Input.js
CHANGED
|
@@ -268,8 +268,12 @@ var InputVue2 = {
|
|
|
268
268
|
},
|
|
269
269
|
icon: kendo_svg_icons_1.exclamationCircleIcon,
|
|
270
270
|
"class": "k-input-validation-icon"
|
|
271
|
-
}), showLoadingIcon && h(
|
|
272
|
-
|
|
271
|
+
}), showLoadingIcon && h(kendo_vue_common_1.Icon, {
|
|
272
|
+
name: 'loading',
|
|
273
|
+
attrs: this.v3 ? undefined : {
|
|
274
|
+
name: 'loading'
|
|
275
|
+
},
|
|
276
|
+
"class": 'k-input-loading-icon'
|
|
273
277
|
}), showClearButton && this.computedValue && h("span", {
|
|
274
278
|
onClick: this.clearClick,
|
|
275
279
|
on: this.v3 ? undefined : {
|
|
@@ -486,8 +486,12 @@ var MaskedTextBoxVue2 = {
|
|
|
486
486
|
},
|
|
487
487
|
icon: kendo_svg_icons_1.exclamationCircleIcon,
|
|
488
488
|
"class": "k-input-validation-icon"
|
|
489
|
-
}), showLoadingIcon && h(
|
|
490
|
-
|
|
489
|
+
}), showLoadingIcon && h(kendo_vue_common_1.Icon, {
|
|
490
|
+
name: 'loading',
|
|
491
|
+
attrs: this.v3 ? undefined : {
|
|
492
|
+
name: 'loading'
|
|
493
|
+
},
|
|
494
|
+
"class": 'k-input-loading-icon'
|
|
491
495
|
}), showClearButton && newValue && h("span", {
|
|
492
496
|
onClick: this.clearClick,
|
|
493
497
|
on: this.v3 ? undefined : {
|
|
@@ -591,8 +591,12 @@ var NumericTextBoxVue2 = {
|
|
|
591
591
|
},
|
|
592
592
|
icon: kendo_svg_icons_1.exclamationCircleIcon,
|
|
593
593
|
"class": "k-input-validation-icon"
|
|
594
|
-
}), showLoadingIcon && h(
|
|
595
|
-
|
|
594
|
+
}), showLoadingIcon && h(kendo_vue_common_1.Icon, {
|
|
595
|
+
name: 'loading',
|
|
596
|
+
attrs: this.v3 ? undefined : {
|
|
597
|
+
name: 'loading'
|
|
598
|
+
},
|
|
599
|
+
"class": 'k-input-loading-icon'
|
|
596
600
|
}), showClearButton && this.computedValue !== undefined && this.computedValue !== null && h("span", {
|
|
597
601
|
onClick: this.clearClick,
|
|
598
602
|
on: this.v3 ? undefined : {
|
|
@@ -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: 1684822347,
|
|
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
|
};
|
|
@@ -173,7 +173,7 @@ var RangeSliderVue2 = {
|
|
|
173
173
|
"aria-describedby": this.$props.ariaDescribedBy
|
|
174
174
|
},
|
|
175
175
|
dir: this.currentDir,
|
|
176
|
-
"class": (0, kendo_vue_common_1.classNames)('k-
|
|
176
|
+
"class": (0, kendo_vue_common_1.classNames)('k-slider', {
|
|
177
177
|
'k-rtl': this.currentDir === 'rtl',
|
|
178
178
|
'k-disabled': this.$props.disabled,
|
|
179
179
|
'k-slider-vertical': this.$props.vertical,
|
|
@@ -144,6 +144,11 @@ var SliderVue2 = {
|
|
|
144
144
|
var lS = (0, kendo_vue_intl_1.provideLocalizationService)(this);
|
|
145
145
|
var percentValue = (this.computedValue - this.$props.min) / (this.$props.max - this.$props.min) * 100;
|
|
146
146
|
var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
|
|
147
|
+
var vertical = this.$props.vertical;
|
|
148
|
+
var increaseSvgArrow = this.currentDir === 'rtl' ? vertical ? kendo_svg_icons_1.caretAltUpIcon : kendo_svg_icons_1.caretAltLeftIcon : vertical ? kendo_svg_icons_1.caretAltUpIcon : kendo_svg_icons_1.caretAltRightIcon;
|
|
149
|
+
var decreaseSvgArrow = this.currentDir === 'rtl' ? vertical ? kendo_svg_icons_1.caretAltDownIcon : kendo_svg_icons_1.caretAltRightIcon : vertical ? kendo_svg_icons_1.caretAltDownIcon : kendo_svg_icons_1.caretAltLeftIcon;
|
|
150
|
+
var increaseFontArrow = this.currentDir === 'rtl' ? vertical ? 'caret-alt-up' : 'caret-alt-left' : vertical ? 'caret-alt-up' : 'caret-alt-right';
|
|
151
|
+
var decreaseFontArrow = this.currentDir === 'rtl' ? vertical ? 'caret-alt-down' : 'caret-alt-right' : vertical ? 'caret-alt-down' : 'caret-alt-left';
|
|
147
152
|
return h("div", {
|
|
148
153
|
dir: this.currentDir,
|
|
149
154
|
attrs: this.v3 ? undefined : {
|
|
@@ -160,7 +165,7 @@ var SliderVue2 = {
|
|
|
160
165
|
},
|
|
161
166
|
onBlur: this.onBlur,
|
|
162
167
|
onKeydown: this.onKeyDown,
|
|
163
|
-
"class": (0, kendo_vue_common_1.classNames)('k-slider
|
|
168
|
+
"class": (0, kendo_vue_common_1.classNames)('k-slider', {
|
|
164
169
|
'k-focus': this.currentFocused,
|
|
165
170
|
'k-disabled': this.$props.disabled,
|
|
166
171
|
'k-slider-horizontal': !this.$props.vertical,
|
|
@@ -175,14 +180,14 @@ var SliderVue2 = {
|
|
|
175
180
|
attrs: this.v3 ? undefined : {
|
|
176
181
|
type: "button",
|
|
177
182
|
tabindex: -1,
|
|
178
|
-
icon:
|
|
179
|
-
svgIcon:
|
|
183
|
+
icon: decreaseFontArrow,
|
|
184
|
+
svgIcon: decreaseSvgArrow,
|
|
180
185
|
rounded: 'full',
|
|
181
186
|
title: lS.toLanguageString(main_1.sliderDecreaseValue, main_1.messages[main_1.sliderDecreaseValue])
|
|
182
187
|
},
|
|
183
188
|
tabindex: -1,
|
|
184
|
-
icon:
|
|
185
|
-
svgIcon:
|
|
189
|
+
icon: decreaseFontArrow,
|
|
190
|
+
svgIcon: decreaseSvgArrow,
|
|
186
191
|
style: {
|
|
187
192
|
position: 'relative'
|
|
188
193
|
},
|
|
@@ -294,14 +299,14 @@ var SliderVue2 = {
|
|
|
294
299
|
attrs: this.v3 ? undefined : {
|
|
295
300
|
type: "button",
|
|
296
301
|
tabindex: -1,
|
|
297
|
-
icon:
|
|
298
|
-
svgIcon:
|
|
302
|
+
icon: increaseFontArrow,
|
|
303
|
+
svgIcon: increaseSvgArrow,
|
|
299
304
|
rounded: 'full',
|
|
300
305
|
title: lS.toLanguageString(main_1.sliderIncreaseValue, main_1.messages[main_1.sliderIncreaseValue])
|
|
301
306
|
},
|
|
302
307
|
tabindex: -1,
|
|
303
|
-
icon:
|
|
304
|
-
svgIcon:
|
|
308
|
+
icon: increaseFontArrow,
|
|
309
|
+
svgIcon: increaseSvgArrow,
|
|
305
310
|
rounded: 'full',
|
|
306
311
|
style: {
|
|
307
312
|
position: 'relative'
|
|
@@ -308,8 +308,12 @@ var TextAreaVue2 = {
|
|
|
308
308
|
"class": "k-input-validation-icon"
|
|
309
309
|
})]), showLoadingIcon && h("span", {
|
|
310
310
|
"class": this.suffixIconWrapClass
|
|
311
|
-
}, [h(
|
|
312
|
-
|
|
311
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
312
|
+
name: 'loading',
|
|
313
|
+
attrs: this.v3 ? undefined : {
|
|
314
|
+
name: 'loading'
|
|
315
|
+
},
|
|
316
|
+
"class": 'k-input-loading-icon'
|
|
313
317
|
})]), showClearButton && this.computedValue && h("span", {
|
|
314
318
|
"class": this.suffixIconWrapClass
|
|
315
319
|
}, [h("span", {
|
|
@@ -175,7 +175,7 @@ export interface TextBoxMethods {
|
|
|
175
175
|
validity: () => any;
|
|
176
176
|
isInvalid: (state: any) => any;
|
|
177
177
|
setValidity: () => void;
|
|
178
|
-
|
|
178
|
+
handleInput?: () => void;
|
|
179
179
|
handleChange: (event: any) => void;
|
|
180
180
|
handleKeyup?: (event: any) => void;
|
|
181
181
|
handleKeydown?: (event: any) => void;
|
|
@@ -205,7 +205,7 @@ var TextBoxVue2 = {
|
|
|
205
205
|
keydown: this.handleKeydown,
|
|
206
206
|
keyup: this.handleKeyup,
|
|
207
207
|
keypress: this.handleKeypress,
|
|
208
|
-
input: this.
|
|
208
|
+
input: this.handleInput,
|
|
209
209
|
animationstart: this.handleAutoFill,
|
|
210
210
|
animationend: this.handleAutoFillEnd
|
|
211
211
|
},
|
|
@@ -215,7 +215,7 @@ var TextBoxVue2 = {
|
|
|
215
215
|
onChange: this.handleChange,
|
|
216
216
|
onFocus: this.emitFocus,
|
|
217
217
|
onBlur: this.emitBlur,
|
|
218
|
-
|
|
218
|
+
onInput: this.handleInput,
|
|
219
219
|
onAnimationstart: this.handleAutoFill,
|
|
220
220
|
onAnimationend: this.handleAutoFillEnd
|
|
221
221
|
}));
|
|
@@ -268,8 +268,12 @@ var TextBoxVue2 = {
|
|
|
268
268
|
},
|
|
269
269
|
icon: kendo_svg_icons_1.exclamationCircleIcon,
|
|
270
270
|
"class": "k-input-validation-icon"
|
|
271
|
-
}), showLoadingIcon && h(
|
|
272
|
-
|
|
271
|
+
}), showLoadingIcon && h(kendo_vue_common_1.Icon, {
|
|
272
|
+
name: 'loading',
|
|
273
|
+
attrs: this.v3 ? undefined : {
|
|
274
|
+
name: 'loading'
|
|
275
|
+
},
|
|
276
|
+
"class": 'k-input-loading-icon'
|
|
273
277
|
}), showClearButton && this.computedValue && h("span", {
|
|
274
278
|
onClick: this.clearClick,
|
|
275
279
|
on: this.v3 ? undefined : {
|
|
@@ -367,7 +371,7 @@ var TextBoxVue2 = {
|
|
|
367
371
|
this._input.setCustomValidity(this.validity().valid ? '' : this.$props.validationMessage || '');
|
|
368
372
|
}
|
|
369
373
|
},
|
|
370
|
-
|
|
374
|
+
handleInput: function handleInput(event) {
|
|
371
375
|
this.emitUpdate(event, 'input', event.target.value);
|
|
372
376
|
},
|
|
373
377
|
handleChange: function handleChange(event) {
|
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.
|
|
4
|
+
"version": "3.11.0-dev.202305230623",
|
|
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.
|
|
51
|
-
"@progress/kendo-vue-common": "3.
|
|
52
|
-
"@progress/kendo-vue-dialogs": "3.
|
|
53
|
-
"@progress/kendo-vue-labels": "3.
|
|
54
|
-
"@progress/kendo-vue-popup": "3.
|
|
50
|
+
"@progress/kendo-vue-buttons": "3.11.0-dev.202305230623",
|
|
51
|
+
"@progress/kendo-vue-common": "3.11.0-dev.202305230623",
|
|
52
|
+
"@progress/kendo-vue-dialogs": "3.11.0-dev.202305230623",
|
|
53
|
+
"@progress/kendo-vue-labels": "3.11.0-dev.202305230623",
|
|
54
|
+
"@progress/kendo-vue-popup": "3.11.0-dev.202305230623"
|
|
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.
|
|
64
|
-
"@progress/kendo-vue-dropdowns": "3.
|
|
65
|
-
"@progress/kendo-vue-form": "3.
|
|
66
|
-
"@progress/kendo-vue-intl": "3.
|
|
67
|
-
"@progress/kendo-vue-labels": "3.
|
|
68
|
-
"@progress/kendo-vue-tooltip": "3.
|
|
69
|
-
"@progress/kendo-vue-upload": "3.
|
|
63
|
+
"@progress/kendo-vue-buttons": "3.11.0-dev.202305230623",
|
|
64
|
+
"@progress/kendo-vue-dropdowns": "3.11.0-dev.202305230623",
|
|
65
|
+
"@progress/kendo-vue-form": "3.11.0-dev.202305230623",
|
|
66
|
+
"@progress/kendo-vue-intl": "3.11.0-dev.202305230623",
|
|
67
|
+
"@progress/kendo-vue-labels": "3.11.0-dev.202305230623",
|
|
68
|
+
"@progress/kendo-vue-tooltip": "3.11.0-dev.202305230623",
|
|
69
|
+
"@progress/kendo-vue-upload": "3.11.0-dev.202305230623",
|
|
70
70
|
"cldr-core": "^41.0.0",
|
|
71
71
|
"cldr-dates-full": "^41.0.0",
|
|
72
72
|
"cldr-numbers-full": "^41.0.0"
|