@syncfusion/ej2-vue-dropdowns 24.2.8 → 25.1.35
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/CHANGELOG.md +23 -154
- package/dist/ej2-vue-dropdowns.umd.min.js +2 -2
- package/dist/ej2-vue-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es2015.js +5 -5
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +5 -5
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +9 -9
- package/src/auto-complete/autocomplete.component.d.ts +31 -3
- package/src/auto-complete/autocomplete.component.js +1 -1
- package/src/combo-box/combobox.component.d.ts +31 -3
- package/src/combo-box/combobox.component.js +1 -1
- package/src/drop-down-list/dropdownlist.component.d.ts +31 -3
- package/src/drop-down-list/dropdownlist.component.js +1 -1
- package/src/drop-down-tree/dropdowntree.component.d.ts +26 -3
- package/src/drop-down-tree/dropdowntree.component.js +1 -1
- package/src/list-box/listbox.component.d.ts +40 -3
- package/src/mention/mention.component.d.ts +25 -3
- package/src/multi-select/multiselect.component.d.ts +32 -3
- package/src/multi-select/multiselect.component.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,152 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
### Mention
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I539496` - Fixed an issue where the mentioned value was not being updated to the target element when using mouse interaction.
|
|
10
|
-
|
|
11
|
-
## 24.2.7 (2024-02-20)
|
|
12
|
-
|
|
13
|
-
### Mention
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
-`#I556815`- Fixed an issue where console error that occurred when using `iframe` along with mention.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### MultiSelect
|
|
21
|
-
|
|
22
|
-
#### Bug Fixes
|
|
23
|
-
|
|
24
|
-
- `#I553564` - Fixed an issue where the Change Event was triggering multiple times when unCheck all items.
|
|
25
|
-
|
|
26
|
-
## 24.2.6 (2024-02-15)
|
|
27
|
-
|
|
28
|
-
### ListBox
|
|
29
|
-
|
|
30
|
-
- `#I548014` - Issue with "Reduce the time taken to move records in a dual listbox when using moveTo/moveFrom toolbar click" has been resolved.
|
|
31
|
-
|
|
32
|
-
### Mention
|
|
33
|
-
|
|
34
|
-
#### Bug Fixes
|
|
35
|
-
|
|
36
|
-
-`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- `#F186429` - Fixed an issue where the mention popup was not aligned properly when the mention target was set as `iframe`.
|
|
40
|
-
|
|
41
|
-
## 24.2.5 (2024-02-13)
|
|
42
|
-
|
|
43
|
-
### DropdownList
|
|
44
|
-
|
|
45
|
-
#### Bug Fixes
|
|
46
|
-
|
|
47
|
-
- `#F49655` - Fixed an issue where assigning null to a value, text and index property resulting in errors.
|
|
48
|
-
- `#I546769` - Fixed an issue where the `isInteracted` property return false after selecting a value using focus out.
|
|
49
|
-
|
|
50
|
-
## 24.2.4 (2024-02-06)
|
|
51
|
-
|
|
52
|
-
### ListBox
|
|
53
|
-
|
|
54
|
-
-`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
### DropdownList
|
|
58
|
-
|
|
59
|
-
#### Bug Fixes
|
|
60
|
-
|
|
61
|
-
- `#I545534` - Fixed an issue where the Popup Element was not being destroyed when rendering inside the In-place editor.
|
|
62
|
-
|
|
63
|
-
### MultiSelect
|
|
64
|
-
|
|
65
|
-
#### Bug Fixes
|
|
66
|
-
|
|
67
|
-
- `#I534853` - Fixed an issue where a console exception occurred when typing a custom value in the input field.
|
|
68
|
-
|
|
69
|
-
## 24.1.47 (2024-01-23)
|
|
70
|
-
|
|
71
|
-
### ListBox
|
|
72
|
-
|
|
73
|
-
#### Bug Fixes
|
|
74
|
-
|
|
75
|
-
- `#I514409` - Issue with "Filtering focus not removed in listbox while clearing and click anywhere" has been resolved.
|
|
76
|
-
|
|
77
5
|
### ComboBox
|
|
78
6
|
|
|
79
7
|
#### Bug Fixes
|
|
80
8
|
|
|
81
|
-
- `#
|
|
82
|
-
- `#F49952` - Fixed an issue where the combobox change event was not being triggered when clear the value using backspace.
|
|
9
|
+
- `#I560957` - Resolved issue with "Combo Box not possible to update the datasource dynamically".
|
|
83
10
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### MultiSelect
|
|
11
|
+
### Dropdown Tree
|
|
87
12
|
|
|
88
13
|
#### Bug Fixes
|
|
89
14
|
|
|
90
|
-
- `#
|
|
91
|
-
|
|
92
|
-
## 24.1.45 (2024-01-09)
|
|
93
|
-
|
|
94
|
-
### Mention
|
|
95
|
-
|
|
96
|
-
#### Bug Fixes
|
|
15
|
+
- `#I558972` - Issue with "focus from the first item when items are selected in the Dropdown Tree component" has been resolved.
|
|
97
16
|
|
|
98
|
-
|
|
99
|
-
- `#I530749` - Now, the Change event triggers properly with the mention list in Rich Text Editor.
|
|
100
|
-
|
|
101
|
-
## 24.1.44 (2024-01-03)
|
|
102
|
-
|
|
103
|
-
### DropDownTree
|
|
104
|
-
|
|
105
|
-
#### Bug Fixes
|
|
106
|
-
|
|
107
|
-
- `#I536388` - The issue with the `selectAll` method in the Dropdown Tree component has been resolved.
|
|
108
|
-
|
|
109
|
-
### DropdownList
|
|
110
|
-
|
|
111
|
-
#### Bug Fixes
|
|
112
|
-
|
|
113
|
-
- `#F49252` - Fixed the issue where the dropdown list width was not the same as the dropdown control.
|
|
114
|
-
- `#I531994` - Fixed the issue where pressing the space key after focusing on a dropdown list would cause an unexpected page scroll.
|
|
115
|
-
|
|
116
|
-
### Mention
|
|
117
|
-
|
|
118
|
-
#### Bug Fixes
|
|
119
|
-
|
|
120
|
-
- `#I530713` - Fixed issue where users were unable to access the popup after pressing Shift + Enter.
|
|
121
|
-
- `#I8411` - Fixed an issue where list values were displayed immediately after typing instead of waiting the minimum length was reached.
|
|
122
|
-
|
|
123
|
-
## 24.1.43 (2023-12-27)
|
|
124
|
-
|
|
125
|
-
### ListBox
|
|
126
|
-
|
|
127
|
-
#### Bug Fixes
|
|
128
|
-
|
|
129
|
-
- `#I520132` - Issue with "The listbox value was not updated properly while filtering the data source when we place within form" has been resolved.
|
|
130
|
-
- `#I522090` - Issue with "Keyboard action is not working properly in the ListBox filter" has been resolved.
|
|
131
|
-
|
|
132
|
-
### DropdownList
|
|
133
|
-
|
|
134
|
-
#### Bug Fixes
|
|
135
|
-
|
|
136
|
-
- `#I523994` - Resolved the issue where the NVDA Reader was not reading the list item when filtering is enabled.
|
|
137
|
-
|
|
138
|
-
### AutoComplete
|
|
139
|
-
|
|
140
|
-
#### Bug Fixes
|
|
141
|
-
|
|
142
|
-
- `#I528524` - Fixed an issue where the Change Event was not triggered when pressing the enter key after preventing the Popup from opening.
|
|
143
|
-
|
|
144
|
-
## 24.1.41 (2023-12-18)
|
|
145
|
-
|
|
146
|
-
### DropDownTree
|
|
147
|
-
|
|
148
|
-
#### Bug Fixes
|
|
17
|
+
#### New Features
|
|
149
18
|
|
|
150
|
-
- `#
|
|
19
|
+
- `#I322379`,`#I521440` - The Dropdown Tree component has been updated to render the popup in the DOM dynamically, significantly improving performance. If you need the popup to render during the initial load, you can set the 'destroyPopupOnHide' property to 'false'.
|
|
151
20
|
|
|
152
21
|
### ListBox
|
|
153
22
|
|
|
@@ -226,7 +95,7 @@
|
|
|
226
95
|
|
|
227
96
|
- `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
|
|
228
97
|
|
|
229
|
-
###
|
|
98
|
+
### Dropdown Tree
|
|
230
99
|
|
|
231
100
|
#### Bug Fixes
|
|
232
101
|
|
|
@@ -242,7 +111,7 @@
|
|
|
242
111
|
|
|
243
112
|
## 19.3.53 (2021-11-12)
|
|
244
113
|
|
|
245
|
-
###
|
|
114
|
+
### Dropdown Tree
|
|
246
115
|
|
|
247
116
|
#### Bug Fixes
|
|
248
117
|
|
|
@@ -250,7 +119,7 @@
|
|
|
250
119
|
|
|
251
120
|
## 19.3.48 (2021-11-02)
|
|
252
121
|
|
|
253
|
-
###
|
|
122
|
+
### Dropdown Tree
|
|
254
123
|
|
|
255
124
|
#### Bug Fixes
|
|
256
125
|
|
|
@@ -258,7 +127,7 @@
|
|
|
258
127
|
|
|
259
128
|
## 19.3.47 (2021-10-26)
|
|
260
129
|
|
|
261
|
-
###
|
|
130
|
+
### Dropdown Tree
|
|
262
131
|
|
|
263
132
|
#### Bug Fixes
|
|
264
133
|
|
|
@@ -266,7 +135,7 @@
|
|
|
266
135
|
|
|
267
136
|
## 19.3.46 (2021-10-19)
|
|
268
137
|
|
|
269
|
-
###
|
|
138
|
+
### Dropdown Tree
|
|
270
139
|
|
|
271
140
|
#### Bug Fixes
|
|
272
141
|
|
|
@@ -283,7 +152,7 @@
|
|
|
283
152
|
|
|
284
153
|
## 19.3.44 (2021-10-05)
|
|
285
154
|
|
|
286
|
-
###
|
|
155
|
+
### Dropdown Tree
|
|
287
156
|
|
|
288
157
|
#### New Features
|
|
289
158
|
|
|
@@ -322,7 +191,7 @@
|
|
|
322
191
|
|
|
323
192
|
- `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
|
|
324
193
|
|
|
325
|
-
###
|
|
194
|
+
### Dropdown Tree
|
|
326
195
|
|
|
327
196
|
#### Bug Fixes
|
|
328
197
|
|
|
@@ -336,7 +205,7 @@
|
|
|
336
205
|
|
|
337
206
|
- `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
|
|
338
207
|
|
|
339
|
-
###
|
|
208
|
+
### Dropdown Tree
|
|
340
209
|
|
|
341
210
|
#### Bug Fixes
|
|
342
211
|
|
|
@@ -365,7 +234,7 @@
|
|
|
365
234
|
- `#I331063`, `#I335590` - Issue with "popup is not opened while rendering the component with HTML select tag and `dataSource` property" has been resolved.
|
|
366
235
|
- `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
|
|
367
236
|
|
|
368
|
-
###
|
|
237
|
+
### Dropdown Tree
|
|
369
238
|
|
|
370
239
|
#### Bug Fixes
|
|
371
240
|
|
|
@@ -428,7 +297,7 @@
|
|
|
428
297
|
|
|
429
298
|
## 19.1.54 (2021-03-30)
|
|
430
299
|
|
|
431
|
-
###
|
|
300
|
+
### Dropdown Tree
|
|
432
301
|
|
|
433
302
|
#### Bug Fixes
|
|
434
303
|
|
|
@@ -454,7 +323,7 @@
|
|
|
454
323
|
|
|
455
324
|
## 18.4.43 (2021-02-16)
|
|
456
325
|
|
|
457
|
-
###
|
|
326
|
+
### Dropdown Tree
|
|
458
327
|
|
|
459
328
|
#### Bug Fixes
|
|
460
329
|
|
|
@@ -541,7 +410,7 @@
|
|
|
541
410
|
|
|
542
411
|
## 18.3.42 (2020-10-20)
|
|
543
412
|
|
|
544
|
-
###
|
|
413
|
+
### Dropdown Tree
|
|
545
414
|
|
|
546
415
|
#### Bug Fixes
|
|
547
416
|
|
|
@@ -585,7 +454,7 @@
|
|
|
585
454
|
|
|
586
455
|
## 18.2.54 (2020-08-18)
|
|
587
456
|
|
|
588
|
-
###
|
|
457
|
+
### Dropdown Tree
|
|
589
458
|
|
|
590
459
|
#### Breaking Changes
|
|
591
460
|
|
|
@@ -605,7 +474,7 @@
|
|
|
605
474
|
|
|
606
475
|
- `#285392` - Enable / disable list items based on unique value support provided.
|
|
607
476
|
|
|
608
|
-
###
|
|
477
|
+
### Dropdown Tree
|
|
609
478
|
|
|
610
479
|
#### Bug Fixes
|
|
611
480
|
|
|
@@ -659,7 +528,7 @@
|
|
|
659
528
|
-`#273796` - Now, e-outline class is added to the filter input
|
|
660
529
|
|
|
661
530
|
|
|
662
|
-
###
|
|
531
|
+
### Dropdown Tree
|
|
663
532
|
|
|
664
533
|
#### Bug Fixes
|
|
665
534
|
|
|
@@ -682,7 +551,7 @@
|
|
|
682
551
|
- Issue with "clear button is not working properly while enabling filter" has been resolved.
|
|
683
552
|
- Issue with "script error occurs while calling the refresh method" has been resolved.
|
|
684
553
|
|
|
685
|
-
###
|
|
554
|
+
### Dropdown Tree
|
|
686
555
|
|
|
687
556
|
#### Bug Fixes
|
|
688
557
|
|
|
@@ -722,7 +591,7 @@
|
|
|
722
591
|
|
|
723
592
|
## 18.1.46 (2020-04-28)
|
|
724
593
|
|
|
725
|
-
###
|
|
594
|
+
### Dropdown Tree
|
|
726
595
|
|
|
727
596
|
#### Bug Fixes
|
|
728
597
|
|
|
@@ -766,7 +635,7 @@ The newly added `Dropdown Tree` component in dropdowns package requires `Navigat
|
|
|
766
635
|
Update the system.js configuration while going with this version and above.
|
|
767
636
|
|
|
768
637
|
|
|
769
|
-
###
|
|
638
|
+
### Dropdown Tree
|
|
770
639
|
|
|
771
640
|
The Dropdown Tree control allows you to select single or multiple values from hierarchical data in a tree-like structure. It has several out-of-the-box features, such as data binding, check boxes, templates, UI customization, accessibility, and preselected values. The available key features are
|
|
772
641
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-dropdowns.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 25.1.35
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
8
|
* applicable laws.
|
|
9
9
|
*/
|
|
10
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-dropdowns"),require("@syncfusion/ej2-vue-base"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-dropdowns","@syncfusion/ej2-vue-base","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Dropdowns,e.ej2VueBase,e.ej2Base)}(this,function(e,t,s,n){"use strict";var i=["isLazyUpdate","plugins","actionFailureTemplate","allowFiltering","cssClass","dataSource","enablePersistence","enableRtl","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","htmlAttributes","ignoreAccent","ignoreCase","index","itemTemplate","locale","noRecordsTemplate","placeholder","popupHeight","popupWidth","query","readonly","showClearButton","sortOrder","text","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","blur","change","close","created","dataBound","destroyed","filtering","focus","open","select"],a=["value"],o=s.getProps({props:i}),r=o[0],l=o[1],c=Object.keys(l);c.push("modelchanged","update:modelValue");for(var u=0,h=a;u<h.length;u++){var d=h[u];c.push("update:"+d)}var p=s.vueDefineComponent({name:"DropDownListComponent",mixins:[s.ComponentBase],props:r,watch:l,emits:c,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.DropDownList({}),propKeys:i,models:a,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(e){return this.ej2Instances.focusIn(e)},focusOut:function(e){return this.ej2Instances.focusOut(e)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),m={name:"ejs-dropdownlist",install:function(e){e.component(m.name,p)}},g=["isLazyUpdate","plugins","actionFailureTemplate","allowCustom","allowFiltering","autofill","cssClass","dataSource","enablePersistence","enableRtl","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","htmlAttributes","ignoreAccent","ignoreCase","index","itemTemplate","locale","noRecordsTemplate","placeholder","popupHeight","popupWidth","query","readonly","showClearButton","sortOrder","text","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","blur","change","close","created","customValueSpecifier","dataBound","destroyed","filtering","focus","open","select"],f=["value"],I=s.getProps({props:g}),j=I[0],v=I[1],$=Object.keys(v);$.push("modelchanged","update:modelValue");for(var y=0,C=f;y<C.length;y++){var T=C[y];$.push("update:"+T)}var P=s.vueDefineComponent({name:"ComboBoxComponent",mixins:[s.ComponentBase],props:j,watch:v,emits:$,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.ComboBox({}),propKeys:g,models:f,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(){return this.ej2Instances.focusIn()},focusOut:function(e){return this.ej2Instances.focusOut(e)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),_={name:"ejs-combobox",install:function(e){e.component(_.name,P)}},b=["isLazyUpdate","plugins","actionFailureTemplate","allowCustom","allowFiltering","autofill","cssClass","dataSource","enablePersistence","enableRtl","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","highlight","htmlAttributes","ignoreAccent","ignoreCase","index","itemTemplate","locale","minLength","noRecordsTemplate","placeholder","popupHeight","popupWidth","query","readonly","showClearButton","showPopupButton","sortOrder","suggestionCount","text","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","blur","change","close","created","customValueSpecifier","dataBound","destroyed","filtering","focus","open","select"],w=["value"],x=s.getProps({props:b}),V=x[0],M=x[1],B=Object.keys(M);B.push("modelchanged","update:modelValue");for(var S=0,D=w;S<D.length;S++){var O=D[S];B.push("update:"+O)}var L=s.vueDefineComponent({name:"AutoCompleteComponent",mixins:[s.ComponentBase],props:V,watch:M,emits:B,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.AutoComplete({}),propKeys:b,models:w,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(){return this.ej2Instances.focusIn()},focusOut:function(e){return this.ej2Instances.focusOut(e)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),E={name:"ejs-autocomplete",install:function(e){e.component(E.name,L)}},U=["isLazyUpdate","plugins","actionFailureTemplate","addTagOnBlur","allowCustomValue","allowFiltering","changeOnBlur","closePopupOnSelect","cssClass","dataSource","delimiterChar","enableGroupCheckBox","enableHtmlSanitizer","enablePersistence","enableRtl","enableSelectionOrder","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","hideSelectedItem","htmlAttributes","ignoreAccent","ignoreCase","itemTemplate","locale","maximumSelectionLength","mode","noRecordsTemplate","openOnClick","placeholder","popupHeight","popupWidth","query","readonly","selectAllText","showClearButton","showDropDownIcon","showSelectAll","sortOrder","text","unSelectAllText","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","beforeSelectAll","blur","change","chipSelection","close","created","customValueSelection","dataBound","destroyed","filtering","focus","open","removed","removing","select","selectedAll","tagging"],k=["value"],A=s.getProps({props:U}),q=A[0],z=A[1],H=Object.keys(z);H.push("modelchanged","update:modelValue");for(var N=0,F=k;N<F.length;N++){var R=F[N];H.push("update:"+R)}var K=s.vueDefineComponent({name:"MultiSelectComponent",mixins:[s.ComponentBase],props:q,watch:z,emits:H,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.MultiSelect({}),propKeys:U,models:k,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(){return this.ej2Instances.focusIn()},focusOut:function(){return this.ej2Instances.focusOut()},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},selectAll:function(e){return this.ej2Instances.selectAll(e)},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),W={name:"ejs-multiselect",install:function(e){e.component(W.name,K)}},G=["isLazyUpdate","plugins","actionFailureTemplate","allowDragAndDrop","allowFiltering","cssClass","dataSource","enablePersistence","enableRtl","enabled","fields","filterBarPlaceholder","filterType","groupTemplate","height","ignoreAccent","ignoreCase","itemTemplate","locale","maximumSelectionLength","noRecordsTemplate","query","scope","selectionSettings","sortOrder","toolbarSettings","value","zIndex","actionBegin","actionComplete","actionFailure","beforeDrop","beforeItemRender","change","created","dataBound","destroyed","drag","dragStart","drop","filtering","select"],J=["value"],Q=s.getProps({props:G}),X=Q[0],Y=Q[1],Z=Object.keys(Y);Z.push("modelchanged","update:modelValue");for(var ee=0,te=J;ee<te.length;ee++){var se=te[ee];Z.push("update:"+se)}var ne=s.vueDefineComponent({name:"ListBoxComponent",mixins:[s.ComponentBase],props:X,watch:Y,emits:Z,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.ListBox({}),propKeys:G,models:J,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItems:function(e,t){return this.ej2Instances.addItems(e,t)},enableItems:function(e,t,s){return this.ej2Instances.enableItems(e,t,s)},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getDataByValues:function(e){return this.ej2Instances.getDataByValues(e)},getDataList:function(){return this.ej2Instances.getDataList()},getItems:function(){return this.ej2Instances.getItems()},getSortedList:function(){return this.ej2Instances.getSortedList()},hideSpinner:function(){return this.ej2Instances.hideSpinner()},moveAllTo:function(e,t){return this.ej2Instances.moveAllTo(e,t)},moveBottom:function(e){return this.ej2Instances.moveBottom(e)},moveDown:function(e){return this.ej2Instances.moveDown(e)},moveTo:function(e,t,s){return this.ej2Instances.moveTo(e,t,s)},moveTop:function(e){return this.ej2Instances.moveTop(e)},moveUp:function(e){return this.ej2Instances.moveUp(e)},removeItem:function(e,t){return this.ej2Instances.removeItem(e,t)},removeItems:function(e,t){return this.ej2Instances.removeItems(e,t)},requiredModules:function(){return this.ej2Instances.requiredModules()},selectAll:function(e){return this.ej2Instances.selectAll(e)},selectItems:function(e,t,s){return this.ej2Instances.selectItems(e,t,s)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),ie={name:"ejs-listbox",install:function(e){e.component(ie.name,ne)}},ae=["isLazyUpdate","plugins","actionFailureTemplate","allowFiltering","allowMultiSelection","changeOnBlur","cssClass","customTemplate","delimiterChar","enableHtmlSanitizer","enablePersistence","enableRtl","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","headerTemplate","htmlAttributes","ignoreAccent","ignoreCase","itemTemplate","locale","mode","noRecordsTemplate","placeholder","popupHeight","popupWidth","readonly","selectAllText","showCheckBox","showClearButton","showDropDownIcon","showSelectAll","sortOrder","text","treeSettings","unSelectAllText","value","width","wrapText","zIndex","actionFailure","beforeOpen","blur","change","close","created","dataBound","destroyed","filtering","focus","keyPress","open","select"],oe=["value"],re=s.getProps({props:ae}),le=re[0],ce=re[1],ue=Object.keys(ce);ue.push("modelchanged","update:modelValue");for(var he=0,de=oe;he<de.length;he++){var pe=de[he];ue.push("update:"+pe)}var me=s.vueDefineComponent({name:"DropDownTreeComponent",mixins:[s.ComponentBase],props:le,watch:ce,emits:ue,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.DropDownTree({}),propKeys:ae,models:oe,hasChildDirective:!1,hasInjectedModules:!1,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},clear:function(){return this.ej2Instances.clear()},ensureVisible:function(e){return this.ej2Instances.ensureVisible(e)},getData:function(e){return this.ej2Instances.getData(e)},getLocaleName:function(){return this.ej2Instances.getLocaleName()},hidePopup:function(){return this.ej2Instances.hidePopup()},selectAll:function(e){return this.ej2Instances.selectAll(e)},showPopup:function(){return this.ej2Instances.showPopup()}}}),ge={name:"ejs-dropdowntree",install:function(e){e.component(ge.name,me)}},fe=["isLazyUpdate","plugins","allowSpaces","cssClass","dataSource","displayTemplate","fields","filterType","highlight","ignoreCase","itemTemplate","locale","mentionChar","minLength","noRecordsTemplate","popupHeight","popupWidth","query","showMentionChar","sortOrder","spinnerTemplate","suffixText","suggestionCount","target","actionBegin","actionComplete","actionFailure","beforeOpen","change","closed","created","destroyed","filtering","opened","select"],Ie=[],je=s.getProps({props:fe}),ve=je[0],$e=je[1],ye=Object.keys($e);ye.push("modelchanged","update:modelValue");for(var Ce=0,Te=Ie;Ce<Te.length;Ce++){var Pe=Te[Ce];ye.push("update:"+Pe)}var _e=s.vueDefineComponent({name:"MentionComponent",mixins:[s.ComponentBase],props:ve,watch:$e,emits:ye,provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.Mention({}),propKeys:fe,models:Ie,hasChildDirective:!1,hasInjectedModules:!1,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("div",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},search:function(e,t,s){return this.ej2Instances.search(e,t,s)},showPopup:function(){return this.ej2Instances.showPopup()}}}),be={name:"ejs-mention",install:function(e){e.component(be.name,_e)}};e.DropDownListComponent=p,e.DropDownListPlugin=m,e.ComboBoxComponent=P,e.ComboBoxPlugin=_,e.AutoCompleteComponent=L,e.AutoCompletePlugin=E,e.MultiSelectComponent=K,e.MultiSelectPlugin=W,e.ListBoxComponent=ne,e.ListBoxPlugin=ie,e.DropDownTreeComponent=me,e.DropDownTreePlugin=ge,e.MentionComponent=_e,e.MentionPlugin=be,Object.keys(t).forEach(function(s){e[s]=t[s]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-dropdowns"),require("@syncfusion/ej2-vue-base"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-dropdowns","@syncfusion/ej2-vue-base","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Dropdowns,e.ej2VueBase,e.ej2Base)}(this,function(e,t,s,n){"use strict";var i=["isLazyUpdate","plugins","actionFailureTemplate","allowFiltering","allowObjectBinding","cssClass","dataSource","enablePersistence","enableRtl","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","htmlAttributes","ignoreAccent","ignoreCase","index","itemTemplate","locale","noRecordsTemplate","placeholder","popupHeight","popupWidth","query","readonly","showClearButton","sortOrder","text","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","blur","change","close","created","dataBound","destroyed","filtering","focus","open","select"],a=["value"],o=s.getProps({props:i}),r=o[0],l=o[1],c=Object.keys(l);c.push("modelchanged","update:modelValue");for(var u=0,h=a;u<h.length;u++){var d=h[u];c.push("update:"+d)}var p=s.vueDefineComponent({name:"DropDownListComponent",mixins:[s.ComponentBase],props:r,watch:l,emits:c,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.DropDownList({}),propKeys:i,models:a,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(e){return this.ej2Instances.focusIn(e)},focusOut:function(e){return this.ej2Instances.focusOut(e)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),m={name:"ejs-dropdownlist",install:function(e){e.component(m.name,p)}},g=["isLazyUpdate","plugins","actionFailureTemplate","allowCustom","allowFiltering","allowObjectBinding","autofill","cssClass","dataSource","enablePersistence","enableRtl","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","htmlAttributes","ignoreAccent","ignoreCase","index","itemTemplate","locale","noRecordsTemplate","placeholder","popupHeight","popupWidth","query","readonly","showClearButton","sortOrder","text","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","blur","change","close","created","customValueSpecifier","dataBound","destroyed","filtering","focus","open","select"],f=["value"],I=s.getProps({props:g}),j=I[0],v=I[1],$=Object.keys(v);$.push("modelchanged","update:modelValue");for(var y=0,C=f;y<C.length;y++){var T=C[y];$.push("update:"+T)}var P=s.vueDefineComponent({name:"ComboBoxComponent",mixins:[s.ComponentBase],props:j,watch:v,emits:$,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.ComboBox({}),propKeys:g,models:f,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(){return this.ej2Instances.focusIn()},focusOut:function(e){return this.ej2Instances.focusOut(e)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),b={name:"ejs-combobox",install:function(e){e.component(b.name,P)}},_=["isLazyUpdate","plugins","actionFailureTemplate","allowCustom","allowFiltering","allowObjectBinding","autofill","cssClass","dataSource","enablePersistence","enableRtl","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","highlight","htmlAttributes","ignoreAccent","ignoreCase","index","itemTemplate","locale","minLength","noRecordsTemplate","placeholder","popupHeight","popupWidth","query","readonly","showClearButton","showPopupButton","sortOrder","suggestionCount","text","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","blur","change","close","created","customValueSpecifier","dataBound","destroyed","filtering","focus","open","select"],w=["value"],x=s.getProps({props:_}),B=x[0],V=x[1],M=Object.keys(V);M.push("modelchanged","update:modelValue");for(var S=0,D=w;S<D.length;S++){var O=D[S];M.push("update:"+O)}var L=s.vueDefineComponent({name:"AutoCompleteComponent",mixins:[s.ComponentBase],props:B,watch:V,emits:M,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.AutoComplete({}),propKeys:_,models:w,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(){return this.ej2Instances.focusIn()},focusOut:function(e){return this.ej2Instances.focusOut(e)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),E={name:"ejs-autocomplete",install:function(e){e.component(E.name,L)}},U=["isLazyUpdate","plugins","actionFailureTemplate","addTagOnBlur","allowCustomValue","allowFiltering","allowObjectBinding","changeOnBlur","closePopupOnSelect","cssClass","dataSource","delimiterChar","enableGroupCheckBox","enableHtmlSanitizer","enablePersistence","enableRtl","enableSelectionOrder","enableVirtualization","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","groupTemplate","headerTemplate","hideSelectedItem","htmlAttributes","ignoreAccent","ignoreCase","itemTemplate","locale","maximumSelectionLength","mode","noRecordsTemplate","openOnClick","placeholder","popupHeight","popupWidth","query","readonly","selectAllText","showClearButton","showDropDownIcon","showSelectAll","sortOrder","text","unSelectAllText","value","valueTemplate","width","zIndex","actionBegin","actionComplete","actionFailure","beforeOpen","beforeSelectAll","blur","change","chipSelection","close","created","customValueSelection","dataBound","destroyed","filtering","focus","open","removed","removing","select","selectedAll","tagging"],k=["value"],A=s.getProps({props:U}),q=A[0],z=A[1],H=Object.keys(z);H.push("modelchanged","update:modelValue");for(var N=0,F=k;N<F.length;N++){var R=F[N];H.push("update:"+R)}var K=s.vueDefineComponent({name:"MultiSelectComponent",mixins:[s.ComponentBase],props:q,watch:z,emits:H,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.MultiSelect({}),propKeys:U,models:k,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},clear:function(){return this.ej2Instances.clear()},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},focusIn:function(){return this.ej2Instances.focusIn()},focusOut:function(){return this.ej2Instances.focusOut()},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},requiredModules:function(){return this.ej2Instances.requiredModules()},selectAll:function(e){return this.ej2Instances.selectAll(e)},showPopup:function(e){return this.ej2Instances.showPopup(e)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),W={name:"ejs-multiselect",install:function(e){e.component(W.name,K)}},G=["isLazyUpdate","plugins","actionFailureTemplate","allowDragAndDrop","allowFiltering","cssClass","dataSource","enablePersistence","enableRtl","enabled","fields","filterBarPlaceholder","filterType","groupTemplate","height","ignoreAccent","ignoreCase","itemTemplate","locale","maximumSelectionLength","noRecordsTemplate","query","scope","selectionSettings","sortOrder","toolbarSettings","value","zIndex","actionBegin","actionComplete","actionFailure","beforeDrop","beforeItemRender","change","created","dataBound","destroyed","drag","dragStart","drop","filtering","select"],J=["value"],Q=s.getProps({props:G}),X=Q[0],Y=Q[1],Z=Object.keys(Y);Z.push("modelchanged","update:modelValue");for(var ee=0,te=J;ee<te.length;ee++){var se=te[ee];Z.push("update:"+se)}var ne=s.vueDefineComponent({name:"ListBoxComponent",mixins:[s.ComponentBase],props:X,watch:Y,emits:Z,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.ListBox({}),propKeys:G,models:J,hasChildDirective:!1,hasInjectedModules:!0,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},addItems:function(e,t){return this.ej2Instances.addItems(e,t)},enableItems:function(e,t,s){return this.ej2Instances.enableItems(e,t,s)},filter:function(e,t,s){return this.ej2Instances.filter(e,t,s)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getDataByValues:function(e){return this.ej2Instances.getDataByValues(e)},getDataList:function(){return this.ej2Instances.getDataList()},getItems:function(){return this.ej2Instances.getItems()},getSortedList:function(){return this.ej2Instances.getSortedList()},hideSpinner:function(){return this.ej2Instances.hideSpinner()},moveAllTo:function(e,t){return this.ej2Instances.moveAllTo(e,t)},moveBottom:function(e){return this.ej2Instances.moveBottom(e)},moveDown:function(e){return this.ej2Instances.moveDown(e)},moveTo:function(e,t,s){return this.ej2Instances.moveTo(e,t,s)},moveTop:function(e){return this.ej2Instances.moveTop(e)},moveUp:function(e){return this.ej2Instances.moveUp(e)},removeItem:function(e,t){return this.ej2Instances.removeItem(e,t)},removeItems:function(e,t){return this.ej2Instances.removeItems(e,t)},requiredModules:function(){return this.ej2Instances.requiredModules()},selectAll:function(e){return this.ej2Instances.selectAll(e)},selectItems:function(e,t,s){return this.ej2Instances.selectItems(e,t,s)},showSpinner:function(){return this.ej2Instances.showSpinner()}}}),ie={name:"ejs-listbox",install:function(e){e.component(ie.name,ne)}},ae=["isLazyUpdate","plugins","actionFailureTemplate","allowFiltering","allowMultiSelection","changeOnBlur","cssClass","customTemplate","delimiterChar","destroyPopupOnHide","enableHtmlSanitizer","enablePersistence","enableRtl","enabled","fields","filterBarPlaceholder","filterType","floatLabelType","footerTemplate","headerTemplate","htmlAttributes","ignoreAccent","ignoreCase","itemTemplate","locale","mode","noRecordsTemplate","placeholder","popupHeight","popupWidth","readonly","selectAllText","showCheckBox","showClearButton","showDropDownIcon","showSelectAll","sortOrder","text","treeSettings","unSelectAllText","value","width","wrapText","zIndex","actionFailure","beforeOpen","blur","change","close","created","dataBound","destroyed","filtering","focus","keyPress","open","select"],oe=["value"],re=s.getProps({props:ae}),le=re[0],ce=re[1],ue=Object.keys(ce);ue.push("modelchanged","update:modelValue");for(var he=0,de=oe;he<de.length;he++){var pe=de[he];ue.push("update:"+pe)}var me=s.vueDefineComponent({name:"DropDownTreeComponent",mixins:[s.ComponentBase],props:le,watch:ce,emits:ue,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.DropDownTree({}),propKeys:ae,models:oe,hasChildDirective:!1,hasInjectedModules:!1,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("input",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},trigger:function(e,t,i){if(s.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){o=(a=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o])))}}else{var a,o=(a=this.models.toString().match(/checked|value/)||[])[0];t&&a&&!n.isUndefined(t[o])&&(s.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+o,t[o]),this.$emit("modelchanged",t[o])):(this.ej2Instances.vueInstance.$emit("update:"+o,t[o]),this.ej2Instances.vueInstance.$emit("modelchanged",t[o]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[o])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,i)},custom:function(){this.updated()},clear:function(){return this.ej2Instances.clear()},ensureVisible:function(e){return this.ej2Instances.ensureVisible(e)},getData:function(e){return this.ej2Instances.getData(e)},getLocaleName:function(){return this.ej2Instances.getLocaleName()},hidePopup:function(){return this.ej2Instances.hidePopup()},selectAll:function(e){return this.ej2Instances.selectAll(e)},showPopup:function(){return this.ej2Instances.showPopup()}}}),ge={name:"ejs-dropdowntree",install:function(e){e.component(ge.name,me)}},fe=["isLazyUpdate","plugins","allowSpaces","cssClass","dataSource","displayTemplate","fields","filterType","highlight","ignoreCase","itemTemplate","locale","mentionChar","minLength","noRecordsTemplate","popupHeight","popupWidth","query","showMentionChar","sortOrder","spinnerTemplate","suffixText","suggestionCount","target","actionBegin","actionComplete","actionFailure","beforeOpen","change","closed","created","destroyed","filtering","opened","select"],Ie=[],je=s.getProps({props:fe}),ve=je[0],$e=je[1],ye=Object.keys($e);ye.push("modelchanged","update:modelValue");for(var Ce=0,Te=Ie;Ce<Te.length;Ce++){var Pe=Te[Ce];ye.push("update:"+Pe)}var be=s.vueDefineComponent({name:"MentionComponent",mixins:[s.ComponentBase],props:ve,watch:$e,emits:ye,provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.Mention({}),propKeys:fe,models:Ie,hasChildDirective:!1,hasInjectedModules:!1,tagMapper:{},tagNameMapper:{},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=s.isExecute?e:s.gh,i=null;return n.isNullOrUndefined(this.$slots.default)||(i=s.isExecute?this.$slots.default:this.$slots.default()),t("div",i)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,s=e;t<s.length;t++){var i=s[t],a=this.templateCollection[i];if(a&&a.length){for(var o=0,r=a;o<r.length;o++){var l=r[o];n.getValue("__vue__.$destroy",l)&&l.__vue__.$destroy(),l.innerHTML&&(l.innerHTML="")}delete this.templateCollection[i]}}},setProperties:function(e,t){var s=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){s.models.map(function(n){t!==n||/datasource/i.test(t)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(s.$emit("update:"+t,e[t]),s.$emit("modelchanged",e[t])))})})},custom:function(){this.updated()},addItem:function(e,t){return this.ej2Instances.addItem(e,t)},getDataByValue:function(e){return this.ej2Instances.getDataByValue(e)},getItems:function(){return this.ej2Instances.getItems()},hidePopup:function(e){return this.ej2Instances.hidePopup(e)},search:function(e,t,s){return this.ej2Instances.search(e,t,s)},showPopup:function(){return this.ej2Instances.showPopup()}}}),_e={name:"ejs-mention",install:function(e){e.component(_e.name,be)}};e.DropDownListComponent=p,e.DropDownListPlugin=m,e.ComboBoxComponent=P,e.ComboBoxPlugin=b,e.AutoCompleteComponent=L,e.AutoCompletePlugin=E,e.MultiSelectComponent=K,e.MultiSelectPlugin=W,e.ListBoxComponent=ne,e.ListBoxPlugin=ie,e.DropDownTreeComponent=me,e.DropDownTreePlugin=ge,e.MentionComponent=be,e.MentionPlugin=_e,Object.keys(t).forEach(function(s){e[s]=t[s]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
11
|
//# sourceMappingURL=ej2-vue-dropdowns.umd.min.js.map
|