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

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.
@@ -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: 1673884908,
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
  */
@@ -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: 1673884908,
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
  */
@@ -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: 1673884908,
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
  */
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.202301161618",
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.202301161618",
50
+ "@progress/kendo-vue-common": "3.7.4-dev.202301161618",
51
+ "@progress/kendo-vue-dialogs": "3.7.4-dev.202301161618",
52
+ "@progress/kendo-vue-labels": "3.7.4-dev.202301161618",
53
+ "@progress/kendo-vue-popup": "3.7.4-dev.202301161618"
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.202301161618",
63
+ "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301161618",
64
+ "@progress/kendo-vue-form": "3.7.4-dev.202301161618",
65
+ "@progress/kendo-vue-intl": "3.7.4-dev.202301161618",
66
+ "@progress/kendo-vue-labels": "3.7.4-dev.202301161618",
67
+ "@progress/kendo-vue-tooltip": "3.7.4-dev.202301161618",
68
+ "@progress/kendo-vue-upload": "3.7.4-dev.202301161618",
69
69
  "cldr-core": "^41.0.0",
70
70
  "cldr-dates-full": "^41.0.0",
71
71
  "cldr-numbers-full": "^41.0.0"