@progress/kendo-vue-inputs 3.0.2 → 3.0.4-dev.202202011210

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.
@@ -97,11 +97,11 @@ export interface CheckboxProps extends ToggleBaseProps, FormComponentProps {
97
97
  /**
98
98
  * The event handler that will be fired when the user edits the value.
99
99
  */
100
- change?: (event: CheckboxChangeEvent) => void;
100
+ onChange?: (event: CheckboxChangeEvent) => void;
101
101
  /**
102
102
  * The event handler that will be fired when Checkbox is focused.
103
103
  */
104
- focus?: (event: CheckboxFocusEvent) => void;
104
+ onFocus?: (event: CheckboxFocusEvent) => void;
105
105
  /**
106
106
  * Sets the `tabIndex` property of the Checkbox.
107
107
  * Defaults to `0`.
@@ -101,7 +101,7 @@ export interface ColorPickerProps {
101
101
  /**
102
102
  * The event handler that will be fired when the left side of the ColorPicker is clicked.
103
103
  */
104
- onActiveColorClick?: (event: ColorPickerActiveColorClick) => void;
104
+ onActivecolorclick?: (event: ColorPickerActiveColorClick) => void;
105
105
  /**
106
106
  * Configures the `size` of the ColorPicker.
107
107
  *
@@ -56,7 +56,7 @@ export interface InputProps extends FormComponentProps {
56
56
  */
57
57
  fillMode?: null | 'solid' | 'flat' | 'outline' | string;
58
58
  dir?: string;
59
- onChange?: Element;
59
+ onChange?: (event: any) => void;
60
60
  onFocus?: (event: any) => void;
61
61
  onBlur?: (event: any) => void;
62
62
  /**
@@ -528,13 +528,15 @@ var NumericTextBoxVue2 = {
528
528
  }
529
529
  }, [// @ts-ignore
530
530
  h(KButton, {
531
- tabIndex: -1,
531
+ type: "button",
532
532
  attrs: this.v3 ? undefined : {
533
+ type: "button",
533
534
  tabIndex: -1,
534
535
  icon: 'arrow-n',
535
536
  "aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
536
537
  title: localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue])
537
538
  },
539
+ tabIndex: -1,
538
540
  icon: 'arrow-n',
539
541
  "class": "k-spinner-increase",
540
542
  "aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
@@ -545,13 +547,15 @@ var NumericTextBoxVue2 = {
545
547
  }
546
548
  }), // @ts-ignore
547
549
  h(KButton, {
548
- tabIndex: -1,
550
+ type: "button",
549
551
  attrs: this.v3 ? undefined : {
552
+ type: "button",
550
553
  tabIndex: -1,
551
554
  icon: 'arrow-s',
552
555
  "aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
553
556
  title: localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue])
554
557
  },
558
+ tabIndex: -1,
555
559
  "class": "k-spinner-decrease",
556
560
  icon: 'arrow-s',
557
561
  "aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
@@ -118,5 +118,17 @@ export interface NumericTextBoxProps extends FormComponentProps {
118
118
  * - `text`
119
119
  */
120
120
  inputType?: NumericTextBoxInputType;
121
+ /**
122
+ * The event handler that will be fired when the changes the selected value.
123
+ */
124
+ onChange?: (event: any) => void;
125
+ /**
126
+ * The event handler that will be fired when TextArea is focused.
127
+ */
128
+ onFocus?: (event: any) => void;
129
+ /**
130
+ * The event handler that will be fired when TextArea is blurred.
131
+ */
132
+ onBlur?: (event: any) => void;
121
133
  }
122
134
  export {};
@@ -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: 1643194742,
8
+ publishDate: 1643716792,
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
  };
@@ -41,7 +41,8 @@ var RadioGroupVue2 = {
41
41
  'changemodel': null,
42
42
  'update:modelValue': null,
43
43
  change: null,
44
- focus: null
44
+ focus: null,
45
+ blur: null
45
46
  },
46
47
  model: {
47
48
  event: 'changemodel'
@@ -45,7 +45,7 @@ export interface SliderProps extends FormComponentProps {
45
45
  /**
46
46
  * Determines the event handler that will be fired when the user edits the value.
47
47
  */
48
- change?: (event: SliderChangeEvent) => void;
48
+ onChange?: (event: SliderChangeEvent) => void;
49
49
  /**
50
50
  * Renders the arrow side buttons of the Slider if set to true.
51
51
  */
@@ -175,13 +175,15 @@ var SliderVue2 = {
175
175
  "class": classNames('k-slider-wrap')
176
176
  }, [this.$props.buttons && // @ts-ignore
177
177
  h(Button, {
178
- tabIndex: -1,
178
+ type: "button",
179
179
  attrs: this.v3 ? undefined : {
180
+ type: "button",
180
181
  tabIndex: -1,
181
182
  icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
182
183
  rounded: 'full',
183
184
  title: lS.toLanguageString(sliderDecreaseValue, messages[sliderDecreaseValue])
184
185
  },
186
+ tabIndex: -1,
185
187
  icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
186
188
  style: {
187
189
  position: 'relative'
@@ -260,13 +262,15 @@ var SliderVue2 = {
260
262
  } : (_a = {}, _a[_this.currentDir === 'rtl' ? 'right' : 'left'] = percentValue + '%', _a.zIndex = 1, _a)
261
263
  })])])]), this.$props.buttons && // @ts-ignore
262
264
  h(Button, {
263
- tabIndex: -1,
265
+ type: "button",
264
266
  attrs: this.v3 ? undefined : {
267
+ type: "button",
265
268
  tabIndex: -1,
266
269
  icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
267
270
  rounded: 'full',
268
271
  title: lS.toLanguageString(sliderIncreaseValue, messages[sliderIncreaseValue])
269
272
  },
273
+ tabIndex: -1,
270
274
  icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
271
275
  rounded: 'full',
272
276
  style: {
@@ -18,7 +18,7 @@ export interface SliderLabelProps {
18
18
  /**
19
19
  * The onClick event of the SliderLabel component.
20
20
  */
21
- click?: (event: any) => void;
21
+ onClick?: (event: any) => void;
22
22
  /**
23
23
  * The title of the SliderLabel component.
24
24
  */
@@ -97,11 +97,11 @@ export interface CheckboxProps extends ToggleBaseProps, FormComponentProps {
97
97
  /**
98
98
  * The event handler that will be fired when the user edits the value.
99
99
  */
100
- change?: (event: CheckboxChangeEvent) => void;
100
+ onChange?: (event: CheckboxChangeEvent) => void;
101
101
  /**
102
102
  * The event handler that will be fired when Checkbox is focused.
103
103
  */
104
- focus?: (event: CheckboxFocusEvent) => void;
104
+ onFocus?: (event: CheckboxFocusEvent) => void;
105
105
  /**
106
106
  * Sets the `tabIndex` property of the Checkbox.
107
107
  * Defaults to `0`.
@@ -101,7 +101,7 @@ export interface ColorPickerProps {
101
101
  /**
102
102
  * The event handler that will be fired when the left side of the ColorPicker is clicked.
103
103
  */
104
- onActiveColorClick?: (event: ColorPickerActiveColorClick) => void;
104
+ onActivecolorclick?: (event: ColorPickerActiveColorClick) => void;
105
105
  /**
106
106
  * Configures the `size` of the ColorPicker.
107
107
  *
@@ -56,7 +56,7 @@ export interface InputProps extends FormComponentProps {
56
56
  */
57
57
  fillMode?: null | 'solid' | 'flat' | 'outline' | string;
58
58
  dir?: string;
59
- onChange?: Element;
59
+ onChange?: (event: any) => void;
60
60
  onFocus?: (event: any) => void;
61
61
  onBlur?: (event: any) => void;
62
62
  /**
@@ -543,13 +543,15 @@ var NumericTextBoxVue2 = {
543
543
  }
544
544
  }, [// @ts-ignore
545
545
  h(kendo_vue_buttons_1.Button, {
546
- tabIndex: -1,
546
+ type: "button",
547
547
  attrs: this.v3 ? undefined : {
548
+ type: "button",
548
549
  tabIndex: -1,
549
550
  icon: 'arrow-n',
550
551
  "aria-label": localizationService.toLanguageString(messages_1.numericIncreaseValue, messages_1.messages[messages_1.numericIncreaseValue]),
551
552
  title: localizationService.toLanguageString(messages_1.numericIncreaseValue, messages_1.messages[messages_1.numericIncreaseValue])
552
553
  },
554
+ tabIndex: -1,
553
555
  icon: 'arrow-n',
554
556
  "class": "k-spinner-increase",
555
557
  "aria-label": localizationService.toLanguageString(messages_1.numericIncreaseValue, messages_1.messages[messages_1.numericIncreaseValue]),
@@ -560,13 +562,15 @@ var NumericTextBoxVue2 = {
560
562
  }
561
563
  }), // @ts-ignore
562
564
  h(kendo_vue_buttons_1.Button, {
563
- tabIndex: -1,
565
+ type: "button",
564
566
  attrs: this.v3 ? undefined : {
567
+ type: "button",
565
568
  tabIndex: -1,
566
569
  icon: 'arrow-s',
567
570
  "aria-label": localizationService.toLanguageString(messages_1.numericDecreaseValue, messages_1.messages[messages_1.numericDecreaseValue]),
568
571
  title: localizationService.toLanguageString(messages_1.numericDecreaseValue, messages_1.messages[messages_1.numericDecreaseValue])
569
572
  },
573
+ tabIndex: -1,
570
574
  "class": "k-spinner-decrease",
571
575
  icon: 'arrow-s',
572
576
  "aria-label": localizationService.toLanguageString(messages_1.numericDecreaseValue, messages_1.messages[messages_1.numericDecreaseValue]),
@@ -118,5 +118,17 @@ export interface NumericTextBoxProps extends FormComponentProps {
118
118
  * - `text`
119
119
  */
120
120
  inputType?: NumericTextBoxInputType;
121
+ /**
122
+ * The event handler that will be fired when the changes the selected value.
123
+ */
124
+ onChange?: (event: any) => void;
125
+ /**
126
+ * The event handler that will be fired when TextArea is focused.
127
+ */
128
+ onFocus?: (event: any) => void;
129
+ /**
130
+ * The event handler that will be fired when TextArea is blurred.
131
+ */
132
+ onBlur?: (event: any) => void;
121
133
  }
122
134
  export {};
@@ -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: 1643194742,
11
+ publishDate: 1643716792,
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
  };
@@ -52,7 +52,8 @@ var RadioGroupVue2 = {
52
52
  'changemodel': null,
53
53
  'update:modelValue': null,
54
54
  change: null,
55
- focus: null
55
+ focus: null,
56
+ blur: null
56
57
  },
57
58
  model: {
58
59
  event: 'changemodel'
@@ -45,7 +45,7 @@ export interface SliderProps extends FormComponentProps {
45
45
  /**
46
46
  * Determines the event handler that will be fired when the user edits the value.
47
47
  */
48
- change?: (event: SliderChangeEvent) => void;
48
+ onChange?: (event: SliderChangeEvent) => void;
49
49
  /**
50
50
  * Renders the arrow side buttons of the Slider if set to true.
51
51
  */
@@ -190,13 +190,15 @@ var SliderVue2 = {
190
190
  "class": kendo_vue_common_2.classNames('k-slider-wrap')
191
191
  }, [this.$props.buttons && // @ts-ignore
192
192
  h(kendo_vue_buttons_1.Button, {
193
- tabIndex: -1,
193
+ type: "button",
194
194
  attrs: this.v3 ? undefined : {
195
+ type: "button",
195
196
  tabIndex: -1,
196
197
  icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
197
198
  rounded: 'full',
198
199
  title: lS.toLanguageString(messages_1.sliderDecreaseValue, messages_1.messages[messages_1.sliderDecreaseValue])
199
200
  },
201
+ tabIndex: -1,
200
202
  icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
201
203
  style: {
202
204
  position: 'relative'
@@ -275,13 +277,15 @@ var SliderVue2 = {
275
277
  } : (_a = {}, _a[_this.currentDir === 'rtl' ? 'right' : 'left'] = percentValue + '%', _a.zIndex = 1, _a)
276
278
  })])])]), this.$props.buttons && // @ts-ignore
277
279
  h(kendo_vue_buttons_1.Button, {
278
- tabIndex: -1,
280
+ type: "button",
279
281
  attrs: this.v3 ? undefined : {
282
+ type: "button",
280
283
  tabIndex: -1,
281
284
  icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
282
285
  rounded: 'full',
283
286
  title: lS.toLanguageString(messages_1.sliderIncreaseValue, messages_1.messages[messages_1.sliderIncreaseValue])
284
287
  },
288
+ tabIndex: -1,
285
289
  icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
286
290
  rounded: 'full',
287
291
  style: {
@@ -18,7 +18,7 @@ export interface SliderLabelProps {
18
18
  /**
19
19
  * The onClick event of the SliderLabel component.
20
20
  */
21
- click?: (event: any) => void;
21
+ onClick?: (event: any) => void;
22
22
  /**
23
23
  * The title of the SliderLabel component.
24
24
  */
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.0.2",
4
+ "version": "3.0.4-dev.202202011210",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -38,21 +38,21 @@
38
38
  "vue": "^2.6.12 || ^3.0.2"
39
39
  },
40
40
  "dependencies": {
41
- "@progress/kendo-vue-buttons": "3.0.2",
42
- "@progress/kendo-vue-common": "3.0.2",
43
- "@progress/kendo-vue-labels": "3.0.2",
44
- "@progress/kendo-vue-popup": "3.0.2"
41
+ "@progress/kendo-vue-buttons": "3.0.4-dev.202202011210",
42
+ "@progress/kendo-vue-common": "3.0.4-dev.202202011210",
43
+ "@progress/kendo-vue-labels": "3.0.4-dev.202202011210",
44
+ "@progress/kendo-vue-popup": "3.0.4-dev.202202011210"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@progress/kendo-data-query": "^1.5.5",
48
48
  "@progress/kendo-date-math": "^1.5.4",
49
49
  "@progress/kendo-drawing": "^1.8.0",
50
50
  "@progress/kendo-licensing": "^1.1.0",
51
- "@progress/kendo-vue-buttons": "3.0.2",
52
- "@progress/kendo-vue-form": "3.0.2",
53
- "@progress/kendo-vue-intl": "3.0.2",
54
- "@progress/kendo-vue-labels": "3.0.2",
55
- "@progress/kendo-vue-tooltip": "3.0.2",
51
+ "@progress/kendo-vue-buttons": "3.0.4-dev.202202011210",
52
+ "@progress/kendo-vue-form": "3.0.4-dev.202202011210",
53
+ "@progress/kendo-vue-intl": "3.0.4-dev.202202011210",
54
+ "@progress/kendo-vue-labels": "3.0.4-dev.202202011210",
55
+ "@progress/kendo-vue-tooltip": "3.0.4-dev.202202011210",
56
56
  "cldr-core": "^34.0.0",
57
57
  "cldr-dates-full": "^34.0.0",
58
58
  "cldr-numbers-full": "^34.0.0"