@progress/kendo-vue-inputs 3.7.4-dev.202301151601 → 3.7.4-dev.202301171215

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.
@@ -204,6 +204,10 @@ var ColorGradientVue2 = {
204
204
  "class": "k-hsv-rectangle",
205
205
  style: {
206
206
  background: this.computedBgColor
207
+ },
208
+ ontouchstart: 'return false',
209
+ attrs: this.v3 ? undefined : {
210
+ ontouchstart: 'return false'
207
211
  }
208
212
  }, [
209
213
  // @ts-ignore function children
@@ -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: 1673797599,
8
+ publishDate: 1673956800,
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
  };
@@ -19,6 +19,7 @@ var RadioButtonVue2 = {
19
19
  disabled: Boolean,
20
20
  className: String,
21
21
  content: [String, Number, Boolean, Object],
22
+ dataItem: Object,
22
23
  id: String,
23
24
  label: String,
24
25
  labelRender: [String, Number, Boolean, Object],
@@ -179,7 +180,9 @@ var RadioButtonVue2 = {
179
180
  focus: this.handleFocus,
180
181
  blur: this.handleBlur
181
182
  },
182
- additionalProps: {}
183
+ additionalProps: {
184
+ dataItem: this.$props.dataItem
185
+ }
183
186
  });
184
187
  }
185
188
  };
@@ -161,6 +161,7 @@ var RadioGroupVue2 = {
161
161
  className: option.className,
162
162
  label: option.label,
163
163
  value: option.value,
164
+ dataItem: option,
164
165
  checked: isCurrentlyChecked,
165
166
  disabled: option.disabled || disabled ? true : false,
166
167
  labelPlacement: option.labelPlacement ? option.labelPlacement : labelPlacement,
@@ -174,6 +175,7 @@ var RadioGroupVue2 = {
174
175
  className: option.className,
175
176
  label: option.label,
176
177
  value: option.value,
178
+ dataItem: option,
177
179
  checked: isCurrentlyChecked,
178
180
  disabled: option.disabled || disabled ? true : false,
179
181
  labelPlacement: option.labelPlacement ? option.labelPlacement : labelPlacement,
@@ -24,6 +24,11 @@ export interface RadioButtonProps {
24
24
  * Specifies if the Radio button is disabled.
25
25
  */
26
26
  disabled?: boolean;
27
+ /**
28
+ * @hidden
29
+ * Used in RadioGroup scenarios with a custom template to pass dataItem data to the template
30
+ */
31
+ dataItem?: object;
27
32
  /**
28
33
  * Specifies the current index of the Radio button.
29
34
  */
@@ -166,7 +166,8 @@ var RangeSliderVue2 = {
166
166
  id: id,
167
167
  dir: this.currentDir,
168
168
  "aria-labelledby": this.$props.ariaLabelledBy,
169
- "aria-describedby": this.$props.ariaDescribedBy
169
+ "aria-describedby": this.$props.ariaDescribedBy,
170
+ ontouchstart: 'return false'
170
171
  },
171
172
  dir: this.currentDir,
172
173
  "class": classNames('k-widget k-slider', {
@@ -176,7 +177,8 @@ var RangeSliderVue2 = {
176
177
  'k-slider-horizontal': !this.$props.vertical
177
178
  }, this.$props.class),
178
179
  "aria-labelledby": this.$props.ariaLabelledBy,
179
- "aria-describedby": this.$props.ariaDescribedBy
180
+ "aria-describedby": this.$props.ariaDescribedBy,
181
+ ontouchstart: 'return false'
180
182
  }, [
181
183
  // @ts-ignore function children
182
184
  h(Draggable, {
@@ -161,7 +161,11 @@ var SliderVue2 = {
161
161
  'k-slider-vertical': this.$props.vertical
162
162
  }, this.$props.className)
163
163
  }, [h("div", {
164
- "class": classNames('k-slider-wrap')
164
+ "class": classNames('k-slider-wrap'),
165
+ ontouchstart: 'return false',
166
+ attrs: this.v3 ? undefined : {
167
+ ontouchstart: 'return false'
168
+ }
165
169
  }, [this.$props.buttons &&
166
170
  // @ts-ignore
167
171
  h(Button, {
@@ -204,6 +204,10 @@ var ColorGradientVue2 = {
204
204
  "class": "k-hsv-rectangle",
205
205
  style: {
206
206
  background: this.computedBgColor
207
+ },
208
+ ontouchstart: 'return false',
209
+ attrs: this.v3 ? undefined : {
210
+ ontouchstart: 'return false'
207
211
  }
208
212
  }, [
209
213
  // @ts-ignore function children
@@ -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: 1673797599,
8
+ publishDate: 1673956800,
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
  };
@@ -19,6 +19,7 @@ var RadioButtonVue2 = {
19
19
  disabled: Boolean,
20
20
  className: String,
21
21
  content: [String, Number, Boolean, Object],
22
+ dataItem: Object,
22
23
  id: String,
23
24
  label: String,
24
25
  labelRender: [String, Number, Boolean, Object],
@@ -179,7 +180,9 @@ var RadioButtonVue2 = {
179
180
  focus: this.handleFocus,
180
181
  blur: this.handleBlur
181
182
  },
182
- additionalProps: {}
183
+ additionalProps: {
184
+ dataItem: this.$props.dataItem
185
+ }
183
186
  });
184
187
  }
185
188
  };
@@ -161,6 +161,7 @@ var RadioGroupVue2 = {
161
161
  className: option.className,
162
162
  label: option.label,
163
163
  value: option.value,
164
+ dataItem: option,
164
165
  checked: isCurrentlyChecked,
165
166
  disabled: option.disabled || disabled ? true : false,
166
167
  labelPlacement: option.labelPlacement ? option.labelPlacement : labelPlacement,
@@ -174,6 +175,7 @@ var RadioGroupVue2 = {
174
175
  className: option.className,
175
176
  label: option.label,
176
177
  value: option.value,
178
+ dataItem: option,
177
179
  checked: isCurrentlyChecked,
178
180
  disabled: option.disabled || disabled ? true : false,
179
181
  labelPlacement: option.labelPlacement ? option.labelPlacement : labelPlacement,
@@ -24,6 +24,11 @@ export interface RadioButtonProps {
24
24
  * Specifies if the Radio button is disabled.
25
25
  */
26
26
  disabled?: boolean;
27
+ /**
28
+ * @hidden
29
+ * Used in RadioGroup scenarios with a custom template to pass dataItem data to the template
30
+ */
31
+ dataItem?: object;
27
32
  /**
28
33
  * Specifies the current index of the Radio button.
29
34
  */
@@ -166,7 +166,8 @@ var RangeSliderVue2 = {
166
166
  id: id,
167
167
  dir: this.currentDir,
168
168
  "aria-labelledby": this.$props.ariaLabelledBy,
169
- "aria-describedby": this.$props.ariaDescribedBy
169
+ "aria-describedby": this.$props.ariaDescribedBy,
170
+ ontouchstart: 'return false'
170
171
  },
171
172
  dir: this.currentDir,
172
173
  "class": classNames('k-widget k-slider', {
@@ -176,7 +177,8 @@ var RangeSliderVue2 = {
176
177
  'k-slider-horizontal': !this.$props.vertical
177
178
  }, this.$props.class),
178
179
  "aria-labelledby": this.$props.ariaLabelledBy,
179
- "aria-describedby": this.$props.ariaDescribedBy
180
+ "aria-describedby": this.$props.ariaDescribedBy,
181
+ ontouchstart: 'return false'
180
182
  }, [
181
183
  // @ts-ignore function children
182
184
  h(Draggable, {
@@ -161,7 +161,11 @@ var SliderVue2 = {
161
161
  'k-slider-vertical': this.$props.vertical
162
162
  }, this.$props.className)
163
163
  }, [h("div", {
164
- "class": classNames('k-slider-wrap')
164
+ "class": classNames('k-slider-wrap'),
165
+ ontouchstart: 'return false',
166
+ attrs: this.v3 ? undefined : {
167
+ ontouchstart: 'return false'
168
+ }
165
169
  }, [this.$props.buttons &&
166
170
  // @ts-ignore
167
171
  h(Button, {
@@ -210,6 +210,10 @@ var ColorGradientVue2 = {
210
210
  "class": "k-hsv-rectangle",
211
211
  style: {
212
212
  background: this.computedBgColor
213
+ },
214
+ ontouchstart: 'return false',
215
+ attrs: this.v3 ? undefined : {
216
+ ontouchstart: 'return false'
213
217
  }
214
218
  }, [
215
219
  // @ts-ignore function children
@@ -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: 1673797599,
11
+ publishDate: 1673956800,
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
  };
@@ -25,6 +25,7 @@ var RadioButtonVue2 = {
25
25
  disabled: Boolean,
26
26
  className: String,
27
27
  content: [String, Number, Boolean, Object],
28
+ dataItem: Object,
28
29
  id: String,
29
30
  label: String,
30
31
  labelRender: [String, Number, Boolean, Object],
@@ -185,7 +186,9 @@ var RadioButtonVue2 = {
185
186
  focus: this.handleFocus,
186
187
  blur: this.handleBlur
187
188
  },
188
- additionalProps: {}
189
+ additionalProps: {
190
+ dataItem: this.$props.dataItem
191
+ }
189
192
  });
190
193
  }
191
194
  };
@@ -167,6 +167,7 @@ var RadioGroupVue2 = {
167
167
  className: option.className,
168
168
  label: option.label,
169
169
  value: option.value,
170
+ dataItem: option,
170
171
  checked: isCurrentlyChecked,
171
172
  disabled: option.disabled || disabled ? true : false,
172
173
  labelPlacement: option.labelPlacement ? option.labelPlacement : labelPlacement,
@@ -180,6 +181,7 @@ var RadioGroupVue2 = {
180
181
  className: option.className,
181
182
  label: option.label,
182
183
  value: option.value,
184
+ dataItem: option,
183
185
  checked: isCurrentlyChecked,
184
186
  disabled: option.disabled || disabled ? true : false,
185
187
  labelPlacement: option.labelPlacement ? option.labelPlacement : labelPlacement,
@@ -24,6 +24,11 @@ export interface RadioButtonProps {
24
24
  * Specifies if the Radio button is disabled.
25
25
  */
26
26
  disabled?: boolean;
27
+ /**
28
+ * @hidden
29
+ * Used in RadioGroup scenarios with a custom template to pass dataItem data to the template
30
+ */
31
+ dataItem?: object;
27
32
  /**
28
33
  * Specifies the current index of the Radio button.
29
34
  */
@@ -170,7 +170,8 @@ var RangeSliderVue2 = {
170
170
  id: id,
171
171
  dir: this.currentDir,
172
172
  "aria-labelledby": this.$props.ariaLabelledBy,
173
- "aria-describedby": this.$props.ariaDescribedBy
173
+ "aria-describedby": this.$props.ariaDescribedBy,
174
+ ontouchstart: 'return false'
174
175
  },
175
176
  dir: this.currentDir,
176
177
  "class": (0, kendo_vue_common_1.classNames)('k-widget k-slider', {
@@ -180,7 +181,8 @@ var RangeSliderVue2 = {
180
181
  'k-slider-horizontal': !this.$props.vertical
181
182
  }, this.$props.class),
182
183
  "aria-labelledby": this.$props.ariaLabelledBy,
183
- "aria-describedby": this.$props.ariaDescribedBy
184
+ "aria-describedby": this.$props.ariaDescribedBy,
185
+ ontouchstart: 'return false'
184
186
  }, [
185
187
  // @ts-ignore function children
186
188
  h(kendo_vue_common_1.Draggable, {
@@ -167,7 +167,11 @@ var SliderVue2 = {
167
167
  'k-slider-vertical': this.$props.vertical
168
168
  }, this.$props.className)
169
169
  }, [h("div", {
170
- "class": (0, kendo_vue_common_1.classNames)('k-slider-wrap')
170
+ "class": (0, kendo_vue_common_1.classNames)('k-slider-wrap'),
171
+ ontouchstart: 'return false',
172
+ attrs: this.v3 ? undefined : {
173
+ ontouchstart: 'return false'
174
+ }
171
175
  }, [this.$props.buttons &&
172
176
  // @ts-ignore
173
177
  h(kendo_vue_buttons_1.Button, {
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.7.4-dev.202301151601",
4
+ "version": "3.7.4-dev.202301171215",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -46,11 +46,11 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@progress/kendo-inputs-common": "^3.1.0",
49
- "@progress/kendo-vue-buttons": "3.7.4-dev.202301151601",
50
- "@progress/kendo-vue-common": "3.7.4-dev.202301151601",
51
- "@progress/kendo-vue-dialogs": "3.7.4-dev.202301151601",
52
- "@progress/kendo-vue-labels": "3.7.4-dev.202301151601",
53
- "@progress/kendo-vue-popup": "3.7.4-dev.202301151601"
49
+ "@progress/kendo-vue-buttons": "3.7.4-dev.202301171215",
50
+ "@progress/kendo-vue-common": "3.7.4-dev.202301171215",
51
+ "@progress/kendo-vue-dialogs": "3.7.4-dev.202301171215",
52
+ "@progress/kendo-vue-labels": "3.7.4-dev.202301171215",
53
+ "@progress/kendo-vue-popup": "3.7.4-dev.202301171215"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@progress/kendo-data-query": "^1.5.5",
@@ -59,13 +59,13 @@
59
59
  "@progress/kendo-file-saver": "^1.1.1",
60
60
  "@progress/kendo-licensing": "^1.3.0",
61
61
  "@progress/kendo-svg-icons": "^1.0.0",
62
- "@progress/kendo-vue-buttons": "3.7.4-dev.202301151601",
63
- "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301151601",
64
- "@progress/kendo-vue-form": "3.7.4-dev.202301151601",
65
- "@progress/kendo-vue-intl": "3.7.4-dev.202301151601",
66
- "@progress/kendo-vue-labels": "3.7.4-dev.202301151601",
67
- "@progress/kendo-vue-tooltip": "3.7.4-dev.202301151601",
68
- "@progress/kendo-vue-upload": "3.7.4-dev.202301151601",
62
+ "@progress/kendo-vue-buttons": "3.7.4-dev.202301171215",
63
+ "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301171215",
64
+ "@progress/kendo-vue-form": "3.7.4-dev.202301171215",
65
+ "@progress/kendo-vue-intl": "3.7.4-dev.202301171215",
66
+ "@progress/kendo-vue-labels": "3.7.4-dev.202301171215",
67
+ "@progress/kendo-vue-tooltip": "3.7.4-dev.202301171215",
68
+ "@progress/kendo-vue-upload": "3.7.4-dev.202301171215",
69
69
  "cldr-core": "^41.0.0",
70
70
  "cldr-dates-full": "^41.0.0",
71
71
  "cldr-numbers-full": "^41.0.0"