@progress/kendo-vue-dropdowns 3.0.0-dev.202201170830 → 3.0.0-dev.202201181632

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.
@@ -709,7 +709,7 @@ var AutoCompleteVue2 = {
709
709
  var renderLoading = function renderLoading(cloading) {
710
710
  if (cloading) {
711
711
  return h("span", {
712
- "class": "k-icon k-i-loading"
712
+ "class": "k-icon k-input-loading-icon k-i-loading"
713
713
  });
714
714
  }
715
715
 
@@ -981,16 +981,18 @@ var ComboBoxVue2 = {
981
981
  },
982
982
  key: "clearbutton"
983
983
  }), loading && h("span", {
984
- "class": "k-icon k-i-loading",
984
+ "class": "k-icon k-input-loading-icon k-i-loading",
985
985
  key: "loading"
986
986
  }), // @ts-ignore
987
987
  h(KButton, {
988
- size: size,
988
+ tabIndex: -1,
989
989
  attrs: this.v3 ? undefined : {
990
+ tabIndex: -1,
990
991
  size: size,
991
992
  fillMode: fillMode,
992
993
  iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
993
994
  },
995
+ size: size,
994
996
  fillMode: fillMode,
995
997
  "class": 'k-input-button',
996
998
  iconClass: classNames('k-icon k-i-arrow-s', iconClassName),
@@ -1043,16 +1043,18 @@ var DropDownListVue2 = {
1043
1043
  id: this.$props.id,
1044
1044
  title: this.$props.title
1045
1045
  }, [valueElement, loading && h("span", {
1046
- "class": "k-icon k-i-loading",
1046
+ "class": "k-icon k-input-loading-icon k-i-loading",
1047
1047
  key: "loading"
1048
1048
  }), // @ts-ignore
1049
1049
  h(KButton, {
1050
- size: size,
1050
+ tabIndex: -1,
1051
1051
  attrs: this.v3 ? undefined : {
1052
+ tabIndex: -1,
1052
1053
  size: size,
1053
1054
  fillMode: fillMode,
1054
1055
  iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
1055
1056
  },
1057
+ size: size,
1056
1058
  fillMode: fillMode,
1057
1059
  "class": 'k-input-button',
1058
1060
  iconClass: classNames('k-icon k-i-arrow-s', iconClassName),
@@ -926,7 +926,7 @@ var MultiSelectVue2 = {
926
926
  var renderLoading = function renderLoading(cloading) {
927
927
  if (cloading) {
928
928
  return h("span", {
929
- "class": "k-icon k-i-loading"
929
+ "class": "k-icon k-input-loading-icon k-i-loading"
930
930
  });
931
931
  }
932
932
 
@@ -115,14 +115,15 @@ var TagListVue2 = {
115
115
  }, [dataItems.map(function (tagData, index) {
116
116
  var _this = this;
117
117
 
118
+ var uniqueId = "tag-" + guid + "-" + tagData.text.toString().replace(/\s+/g, '-');
118
119
  var defaultRendering = h("div", {
119
120
  "class": __assign(__assign({}, this.chipClass), {
120
121
  'k-focus': tagData === this.$props.focused
121
122
  }),
122
- key: tagData.text + index,
123
- id: "tag-" + guid + "-" + tagData.text.replace(/\s+/g, '-'),
123
+ key: uniqueId,
124
+ id: uniqueId,
124
125
  attrs: this.v3 ? undefined : {
125
- id: "tag-" + guid + "-" + tagData.text.replace(/\s+/g, '-'),
126
+ id: uniqueId,
126
127
  "aria-selected": true,
127
128
  role: "option",
128
129
  "aria-setsize": dataItems.length
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-dropdowns',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1642407385,
8
+ publishDate: 1642522747,
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
  };
@@ -724,7 +724,7 @@ var AutoCompleteVue2 = {
724
724
  var renderLoading = function renderLoading(cloading) {
725
725
  if (cloading) {
726
726
  return h("span", {
727
- "class": "k-icon k-i-loading"
727
+ "class": "k-icon k-input-loading-icon k-i-loading"
728
728
  });
729
729
  }
730
730
 
@@ -998,16 +998,18 @@ var ComboBoxVue2 = {
998
998
  },
999
999
  key: "clearbutton"
1000
1000
  }), loading && h("span", {
1001
- "class": "k-icon k-i-loading",
1001
+ "class": "k-icon k-input-loading-icon k-i-loading",
1002
1002
  key: "loading"
1003
1003
  }), // @ts-ignore
1004
1004
  h(kendo_vue_buttons_1.Button, {
1005
- size: size,
1005
+ tabIndex: -1,
1006
1006
  attrs: this.v3 ? undefined : {
1007
+ tabIndex: -1,
1007
1008
  size: size,
1008
1009
  fillMode: fillMode,
1009
1010
  iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
1010
1011
  },
1012
+ size: size,
1011
1013
  fillMode: fillMode,
1012
1014
  "class": 'k-input-button',
1013
1015
  iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName),
@@ -1060,16 +1060,18 @@ var DropDownListVue2 = {
1060
1060
  id: this.$props.id,
1061
1061
  title: this.$props.title
1062
1062
  }, [valueElement, loading && h("span", {
1063
- "class": "k-icon k-i-loading",
1063
+ "class": "k-icon k-input-loading-icon k-i-loading",
1064
1064
  key: "loading"
1065
1065
  }), // @ts-ignore
1066
1066
  h(kendo_vue_buttons_1.Button, {
1067
- size: size,
1067
+ tabIndex: -1,
1068
1068
  attrs: this.v3 ? undefined : {
1069
+ tabIndex: -1,
1069
1070
  size: size,
1070
1071
  fillMode: fillMode,
1071
1072
  iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
1072
1073
  },
1074
+ size: size,
1073
1075
  fillMode: fillMode,
1074
1076
  "class": 'k-input-button',
1075
1077
  iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName),
@@ -944,7 +944,7 @@ var MultiSelectVue2 = {
944
944
  var renderLoading = function renderLoading(cloading) {
945
945
  if (cloading) {
946
946
  return h("span", {
947
- "class": "k-icon k-i-loading"
947
+ "class": "k-icon k-input-loading-icon k-i-loading"
948
948
  });
949
949
  }
950
950
 
@@ -123,14 +123,15 @@ var TagListVue2 = {
123
123
  }, [dataItems.map(function (tagData, index) {
124
124
  var _this = this;
125
125
 
126
+ var uniqueId = "tag-" + guid + "-" + tagData.text.toString().replace(/\s+/g, '-');
126
127
  var defaultRendering = h("div", {
127
128
  "class": __assign(__assign({}, this.chipClass), {
128
129
  'k-focus': tagData === this.$props.focused
129
130
  }),
130
- key: tagData.text + index,
131
- id: "tag-" + guid + "-" + tagData.text.replace(/\s+/g, '-'),
131
+ key: uniqueId,
132
+ id: uniqueId,
132
133
  attrs: this.v3 ? undefined : {
133
- id: "tag-" + guid + "-" + tagData.text.replace(/\s+/g, '-'),
134
+ id: uniqueId,
134
135
  "aria-selected": true,
135
136
  role: "option",
136
137
  "aria-setsize": dataItems.length
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-dropdowns',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1642407385,
11
+ publishDate: 1642522747,
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
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-dropdowns",
3
3
  "description": "Kendo UI for Vue Dropdowns package",
4
- "version": "3.0.0-dev.202201170830",
4
+ "version": "3.0.0-dev.202201181632",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -43,14 +43,14 @@
43
43
  "vue": "^2.6.12 || ^3.0.2"
44
44
  },
45
45
  "dependencies": {
46
- "@progress/kendo-vue-buttons": "3.0.0-dev.202201170830",
47
- "@progress/kendo-vue-common": "3.0.0-dev.202201170830",
48
- "@progress/kendo-vue-popup": "3.0.0-dev.202201170830"
46
+ "@progress/kendo-vue-buttons": "3.0.0-dev.202201181632",
47
+ "@progress/kendo-vue-common": "3.0.0-dev.202201181632",
48
+ "@progress/kendo-vue-popup": "3.0.0-dev.202201181632"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@progress/kendo-data-query": "^1.5.4",
52
52
  "@progress/kendo-licensing": "^1.1.0",
53
- "@progress/kendo-vue-intl": "3.0.0-dev.202201170830"
53
+ "@progress/kendo-vue-intl": "3.0.0-dev.202201181632"
54
54
  },
55
55
  "author": "Progress",
56
56
  "license": "SEE LICENSE IN LICENSE.md",