@progress/kendo-vue-inputs 4.3.1-dev.202402051124 → 4.3.1-dev.202402201349
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/radiobutton/RadioButton.js +1 -1
- package/dist/es/radiobutton/RadioGroup.js +2 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/radiobutton/RadioButton.js +1 -1
- package/dist/esm/radiobutton/RadioGroup.js +2 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/radiobutton/RadioButton.js +1 -1
- package/dist/npm/radiobutton/RadioGroup.js +2 -2
- 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: 1708436276,
|
|
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
|
};
|
|
@@ -13,7 +13,6 @@ import { packageMetadata } from '../package-metadata';
|
|
|
13
13
|
*/
|
|
14
14
|
var RadioButtonVue2 = {
|
|
15
15
|
name: 'KendoRadioButton',
|
|
16
|
-
inheritAttrs: false,
|
|
17
16
|
props: {
|
|
18
17
|
ariaDescribedBy: String,
|
|
19
18
|
checked: Boolean,
|
|
@@ -27,6 +26,7 @@ var RadioButtonVue2 = {
|
|
|
27
26
|
item: [String, Number, Boolean, Object],
|
|
28
27
|
labelPlacement: String,
|
|
29
28
|
name: String,
|
|
29
|
+
index: Number,
|
|
30
30
|
tag: {
|
|
31
31
|
type: String,
|
|
32
32
|
default: 'div'
|
|
@@ -155,7 +155,7 @@ var RadioGroupVue2 = {
|
|
|
155
155
|
item: item,
|
|
156
156
|
attrs: this.v3 ? undefined : {
|
|
157
157
|
item: item,
|
|
158
|
-
role: '
|
|
158
|
+
role: 'none',
|
|
159
159
|
tag: 'li',
|
|
160
160
|
valid: valid,
|
|
161
161
|
className: option.className,
|
|
@@ -169,7 +169,7 @@ var RadioGroupVue2 = {
|
|
|
169
169
|
index: index,
|
|
170
170
|
name: name || option.name || this.radioGroupName
|
|
171
171
|
},
|
|
172
|
-
role: '
|
|
172
|
+
role: 'none',
|
|
173
173
|
tag: 'li',
|
|
174
174
|
valid: valid,
|
|
175
175
|
className: option.className,
|
|
@@ -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: 1708436276,
|
|
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
|
};
|
|
@@ -13,7 +13,6 @@ import { packageMetadata } from '../package-metadata.js';
|
|
|
13
13
|
*/
|
|
14
14
|
var RadioButtonVue2 = {
|
|
15
15
|
name: 'KendoRadioButton',
|
|
16
|
-
inheritAttrs: false,
|
|
17
16
|
props: {
|
|
18
17
|
ariaDescribedBy: String,
|
|
19
18
|
checked: Boolean,
|
|
@@ -27,6 +26,7 @@ var RadioButtonVue2 = {
|
|
|
27
26
|
item: [String, Number, Boolean, Object],
|
|
28
27
|
labelPlacement: String,
|
|
29
28
|
name: String,
|
|
29
|
+
index: Number,
|
|
30
30
|
tag: {
|
|
31
31
|
type: String,
|
|
32
32
|
default: 'div'
|
|
@@ -155,7 +155,7 @@ var RadioGroupVue2 = {
|
|
|
155
155
|
item: item,
|
|
156
156
|
attrs: this.v3 ? undefined : {
|
|
157
157
|
item: item,
|
|
158
|
-
role: '
|
|
158
|
+
role: 'none',
|
|
159
159
|
tag: 'li',
|
|
160
160
|
valid: valid,
|
|
161
161
|
className: option.className,
|
|
@@ -169,7 +169,7 @@ var RadioGroupVue2 = {
|
|
|
169
169
|
index: index,
|
|
170
170
|
name: name || option.name || this.radioGroupName
|
|
171
171
|
},
|
|
172
|
-
role: '
|
|
172
|
+
role: 'none',
|
|
173
173
|
tag: 'li',
|
|
174
174
|
valid: valid,
|
|
175
175
|
className: option.className,
|
|
@@ -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: 1708436276,
|
|
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
|
};
|
|
@@ -19,7 +19,6 @@ var package_metadata_1 = require("../package-metadata");
|
|
|
19
19
|
*/
|
|
20
20
|
var RadioButtonVue2 = {
|
|
21
21
|
name: 'KendoRadioButton',
|
|
22
|
-
inheritAttrs: false,
|
|
23
22
|
props: {
|
|
24
23
|
ariaDescribedBy: String,
|
|
25
24
|
checked: Boolean,
|
|
@@ -33,6 +32,7 @@ var RadioButtonVue2 = {
|
|
|
33
32
|
item: [String, Number, Boolean, Object],
|
|
34
33
|
labelPlacement: String,
|
|
35
34
|
name: String,
|
|
35
|
+
index: Number,
|
|
36
36
|
tag: {
|
|
37
37
|
type: String,
|
|
38
38
|
default: 'div'
|
|
@@ -161,7 +161,7 @@ var RadioGroupVue2 = {
|
|
|
161
161
|
item: item,
|
|
162
162
|
attrs: this.v3 ? undefined : {
|
|
163
163
|
item: item,
|
|
164
|
-
role: '
|
|
164
|
+
role: 'none',
|
|
165
165
|
tag: 'li',
|
|
166
166
|
valid: valid,
|
|
167
167
|
className: option.className,
|
|
@@ -175,7 +175,7 @@ var RadioGroupVue2 = {
|
|
|
175
175
|
index: index,
|
|
176
176
|
name: name || option.name || this.radioGroupName
|
|
177
177
|
},
|
|
178
|
-
role: '
|
|
178
|
+
role: 'none',
|
|
179
179
|
tag: 'li',
|
|
180
180
|
valid: valid,
|
|
181
181
|
className: option.className,
|
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": "4.3.1-dev.
|
|
4
|
+
"version": "4.3.1-dev.202402201349",
|
|
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": "4.3.1-dev.
|
|
51
|
-
"@progress/kendo-vue-common": "4.3.1-dev.
|
|
52
|
-
"@progress/kendo-vue-dialogs": "4.3.1-dev.
|
|
53
|
-
"@progress/kendo-vue-labels": "4.3.1-dev.
|
|
54
|
-
"@progress/kendo-vue-popup": "4.3.1-dev.
|
|
50
|
+
"@progress/kendo-vue-buttons": "4.3.1-dev.202402201349",
|
|
51
|
+
"@progress/kendo-vue-common": "4.3.1-dev.202402201349",
|
|
52
|
+
"@progress/kendo-vue-dialogs": "4.3.1-dev.202402201349",
|
|
53
|
+
"@progress/kendo-vue-labels": "4.3.1-dev.202402201349",
|
|
54
|
+
"@progress/kendo-vue-popup": "4.3.1-dev.202402201349"
|
|
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": "^2.0.0",
|
|
63
|
-
"@progress/kendo-vue-buttons": "4.3.1-dev.
|
|
64
|
-
"@progress/kendo-vue-dropdowns": "4.3.1-dev.
|
|
65
|
-
"@progress/kendo-vue-form": "4.3.1-dev.
|
|
66
|
-
"@progress/kendo-vue-intl": "4.3.1-dev.
|
|
67
|
-
"@progress/kendo-vue-labels": "4.3.1-dev.
|
|
68
|
-
"@progress/kendo-vue-tooltip": "4.3.1-dev.
|
|
69
|
-
"@progress/kendo-vue-upload": "4.3.1-dev.
|
|
63
|
+
"@progress/kendo-vue-buttons": "4.3.1-dev.202402201349",
|
|
64
|
+
"@progress/kendo-vue-dropdowns": "4.3.1-dev.202402201349",
|
|
65
|
+
"@progress/kendo-vue-form": "4.3.1-dev.202402201349",
|
|
66
|
+
"@progress/kendo-vue-intl": "4.3.1-dev.202402201349",
|
|
67
|
+
"@progress/kendo-vue-labels": "4.3.1-dev.202402201349",
|
|
68
|
+
"@progress/kendo-vue-tooltip": "4.3.1-dev.202402201349",
|
|
69
|
+
"@progress/kendo-vue-upload": "4.3.1-dev.202402201349",
|
|
70
70
|
"cldr-core": "^41.0.0",
|
|
71
71
|
"cldr-dates-full": "^41.0.0",
|
|
72
72
|
"cldr-numbers-full": "^41.0.0"
|