@progress/kendo-vue-dropdowns 3.9.4-dev.202304190945 → 3.9.4-dev.202304210655

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.
@@ -22,7 +22,9 @@ var ListFilterVue2 = {
22
22
  // @ts-ignore
23
23
  emits: {
24
24
  keydown: null,
25
- change: null
25
+ change: null,
26
+ focus: null,
27
+ blur: null
26
28
  },
27
29
  props: {
28
30
  value: String,
@@ -75,6 +77,12 @@ var ListFilterVue2 = {
75
77
  },
76
78
  onChange: function onChange(e) {
77
79
  this.$emit('change', e);
80
+ },
81
+ handleFocus: function handleFocus(e) {
82
+ this.$emit('focus', e);
83
+ },
84
+ handleBlur: function handleBlur(e) {
85
+ this.$emit('blur', e);
78
86
  }
79
87
  },
80
88
  mounted: function mounted() {
@@ -109,9 +117,13 @@ var ListFilterVue2 = {
109
117
  onInput: this.onChange,
110
118
  on: this.v3 ? undefined : {
111
119
  "input": this.onChange,
112
- "keydown": this.onKeyDown
120
+ "keydown": this.onKeyDown,
121
+ "focusin": this.handleFocus,
122
+ "focusout": this.handleBlur
113
123
  },
114
- onKeydown: this.onKeyDown
124
+ onKeydown: this.onKeyDown,
125
+ onFocusin: this.handleFocus,
126
+ onFocusout: this.handleBlur
115
127
  })])]);
116
128
  }
117
129
  };
@@ -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: 1681896936,
11
+ publishDate: 1682059133,
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.9.4-dev.202304190945",
4
+ "version": "3.9.4-dev.202304210655",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -51,18 +51,18 @@
51
51
  "vue": "^2.6.12 || ^3.0.2"
52
52
  },
53
53
  "dependencies": {
54
- "@progress/kendo-vue-buttons": "3.9.4-dev.202304190945",
55
- "@progress/kendo-vue-common": "3.9.4-dev.202304190945",
56
- "@progress/kendo-vue-popup": "3.9.4-dev.202304190945"
54
+ "@progress/kendo-vue-buttons": "3.9.4-dev.202304210655",
55
+ "@progress/kendo-vue-common": "3.9.4-dev.202304210655",
56
+ "@progress/kendo-vue-popup": "3.9.4-dev.202304210655"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@progress/kendo-data-query": "^1.5.4",
60
60
  "@progress/kendo-licensing": "^1.3.0",
61
61
  "@progress/kendo-svg-icons": "^1.0.0",
62
- "@progress/kendo-vue-data-tools": "3.9.4-dev.202304190945",
63
- "@progress/kendo-vue-intl": "3.9.4-dev.202304190945",
64
- "@progress/kendo-vue-labels": "3.9.4-dev.202304190945",
65
- "@progress/kendo-vue-treeview": "3.9.4-dev.202304190945"
62
+ "@progress/kendo-vue-data-tools": "3.9.4-dev.202304210655",
63
+ "@progress/kendo-vue-intl": "3.9.4-dev.202304210655",
64
+ "@progress/kendo-vue-labels": "3.9.4-dev.202304210655",
65
+ "@progress/kendo-vue-treeview": "3.9.4-dev.202304210655"
66
66
  },
67
67
  "author": "Progress",
68
68
  "license": "SEE LICENSE IN LICENSE.md",