@progress/kendo-vue-dropdowns 3.6.3 → 3.6.4-dev.202210070908

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.
@@ -493,6 +493,9 @@ var AutoCompleteVue2 = {
493
493
  return this.$data.focusedItem !== undefined ? dataItems.findIndex(function (i) {
494
494
  return areSame(i, _this.$data.focusedItem, textField);
495
495
  }) : focusedItemIndex ? focusedItemIndex(dataItems, inputValue, textField) : Math.max(0, dataItems.indexOf(getFocusedItem(dataItems, inputValue, textField)));
496
+ },
497
+ repositionPopup: function repositionPopup() {
498
+ this.base.repositionPopup();
496
499
  }
497
500
  },
498
501
  render: function render(createElement) {
@@ -727,6 +727,9 @@ var ComboBoxVue2 = {
727
727
  applyState: function applyState(state) {
728
728
  this.base.applyState(state);
729
729
  this.valueDuringOnChange = undefined;
730
+ },
731
+ repositionPopup: function repositionPopup() {
732
+ this.base.repositionPopup();
730
733
  }
731
734
  },
732
735
  render: function render(createElement) {
@@ -712,6 +712,9 @@ var DropDownListVue2 = {
712
712
  applyState: function applyState(state) {
713
713
  this.base.applyState(state);
714
714
  this.valueDuringOnChange = undefined;
715
+ },
716
+ repositionPopup: function repositionPopup() {
717
+ this.base.repositionPopup();
715
718
  }
716
719
  },
717
720
  render: function render(createElement) {
@@ -884,6 +884,9 @@ var MultiSelectVue2 = {
884
884
  if (this.input) {
885
885
  this.input.focus();
886
886
  }
887
+ },
888
+ repositionPopup: function repositionPopup() {
889
+ this.base.repositionPopup();
887
890
  }
888
891
  },
889
892
  render: function render(createElement) {
@@ -213,7 +213,7 @@ function () {
213
213
  if (lc) {
214
214
  var popup = lc.$refs.popup;
215
215
 
216
- if (popup) {
216
+ if (popup && popup.show) {
217
217
  popup.reposition();
218
218
  }
219
219
  }
@@ -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: 1663838966,
8
+ publishDate: 1665132998,
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
  };
@@ -493,6 +493,9 @@ var AutoCompleteVue2 = {
493
493
  return this.$data.focusedItem !== undefined ? dataItems.findIndex(function (i) {
494
494
  return areSame(i, _this.$data.focusedItem, textField);
495
495
  }) : focusedItemIndex ? focusedItemIndex(dataItems, inputValue, textField) : Math.max(0, dataItems.indexOf(getFocusedItem(dataItems, inputValue, textField)));
496
+ },
497
+ repositionPopup: function repositionPopup() {
498
+ this.base.repositionPopup();
496
499
  }
497
500
  },
498
501
  render: function render(createElement) {
@@ -727,6 +727,9 @@ var ComboBoxVue2 = {
727
727
  applyState: function applyState(state) {
728
728
  this.base.applyState(state);
729
729
  this.valueDuringOnChange = undefined;
730
+ },
731
+ repositionPopup: function repositionPopup() {
732
+ this.base.repositionPopup();
730
733
  }
731
734
  },
732
735
  render: function render(createElement) {
@@ -712,6 +712,9 @@ var DropDownListVue2 = {
712
712
  applyState: function applyState(state) {
713
713
  this.base.applyState(state);
714
714
  this.valueDuringOnChange = undefined;
715
+ },
716
+ repositionPopup: function repositionPopup() {
717
+ this.base.repositionPopup();
715
718
  }
716
719
  },
717
720
  render: function render(createElement) {
@@ -884,6 +884,9 @@ var MultiSelectVue2 = {
884
884
  if (this.input) {
885
885
  this.input.focus();
886
886
  }
887
+ },
888
+ repositionPopup: function repositionPopup() {
889
+ this.base.repositionPopup();
887
890
  }
888
891
  },
889
892
  render: function render(createElement) {
@@ -213,7 +213,7 @@ function () {
213
213
  if (lc) {
214
214
  var popup = lc.$refs.popup;
215
215
 
216
- if (popup) {
216
+ if (popup && popup.show) {
217
217
  popup.reposition();
218
218
  }
219
219
  }
@@ -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: 1663838966,
8
+ publishDate: 1665132998,
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
  };
@@ -508,6 +508,9 @@ var AutoCompleteVue2 = {
508
508
  return this.$data.focusedItem !== undefined ? dataItems.findIndex(function (i) {
509
509
  return (0, utils_1.areSame)(i, _this.$data.focusedItem, textField);
510
510
  }) : focusedItemIndex ? focusedItemIndex(dataItems, inputValue, textField) : Math.max(0, dataItems.indexOf((0, utils_1.getFocusedItem)(dataItems, inputValue, textField)));
511
+ },
512
+ repositionPopup: function repositionPopup() {
513
+ this.base.repositionPopup();
511
514
  }
512
515
  },
513
516
  render: function render(createElement) {
@@ -746,6 +746,9 @@ var ComboBoxVue2 = {
746
746
  applyState: function applyState(state) {
747
747
  this.base.applyState(state);
748
748
  this.valueDuringOnChange = undefined;
749
+ },
750
+ repositionPopup: function repositionPopup() {
751
+ this.base.repositionPopup();
749
752
  }
750
753
  },
751
754
  render: function render(createElement) {
@@ -729,6 +729,9 @@ var DropDownListVue2 = {
729
729
  applyState: function applyState(state) {
730
730
  this.base.applyState(state);
731
731
  this.valueDuringOnChange = undefined;
732
+ },
733
+ repositionPopup: function repositionPopup() {
734
+ this.base.repositionPopup();
732
735
  }
733
736
  },
734
737
  render: function render(createElement) {
@@ -902,6 +902,9 @@ var MultiSelectVue2 = {
902
902
  if (this.input) {
903
903
  this.input.focus();
904
904
  }
905
+ },
906
+ repositionPopup: function repositionPopup() {
907
+ this.base.repositionPopup();
905
908
  }
906
909
  },
907
910
  render: function render(createElement) {
@@ -224,7 +224,7 @@ function () {
224
224
  if (lc) {
225
225
  var popup = lc.$refs.popup;
226
226
 
227
- if (popup) {
227
+ if (popup && popup.show) {
228
228
  popup.reposition();
229
229
  }
230
230
  }
@@ -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: 1663838966,
11
+ publishDate: 1665132998,
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.6.3",
4
+ "version": "3.6.4-dev.202210070908",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -49,14 +49,14 @@
49
49
  "vue": "^2.6.12 || ^3.0.2"
50
50
  },
51
51
  "dependencies": {
52
- "@progress/kendo-vue-buttons": "3.6.3",
53
- "@progress/kendo-vue-common": "3.6.3",
54
- "@progress/kendo-vue-popup": "3.6.3"
52
+ "@progress/kendo-vue-buttons": "3.6.4-dev.202210070908",
53
+ "@progress/kendo-vue-common": "3.6.4-dev.202210070908",
54
+ "@progress/kendo-vue-popup": "3.6.4-dev.202210070908"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@progress/kendo-data-query": "^1.5.4",
58
58
  "@progress/kendo-licensing": "^1.1.0",
59
- "@progress/kendo-vue-intl": "3.6.3"
59
+ "@progress/kendo-vue-intl": "3.6.4-dev.202210070908"
60
60
  },
61
61
  "author": "Progress",
62
62
  "license": "SEE LICENSE IN LICENSE.md",