@syncfusion/ej2-vue-dropdowns 19.3.43 → 19.3.47
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 +26 -0
- package/dist/ej2-vue-dropdowns.umd.min.js +10 -1
- package/dist/es6/ej2-vue-dropdowns.es2015.js +30 -18
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +30 -18
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +8 -8
- package/src/auto-complete/autocomplete.component.js +5 -3
- package/src/combo-box/combobox.component.js +5 -3
- package/src/drop-down-list/dropdownlist.component.js +5 -3
- package/src/drop-down-tree/dropdowntree.component.js +5 -3
- package/src/list-box/listbox.component.js +5 -3
- package/src/multi-select/multiselect.component.js +5 -3
- package/styles/auto-complete/bootstrap4.css +5 -0
- package/styles/auto-complete/bootstrap5-dark.css +5 -0
- package/styles/auto-complete/bootstrap5.css +5 -0
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark.css +5 -0
- package/styles/bootstrap5.css +5 -0
- package/styles/combo-box/bootstrap4.css +5 -0
- package/styles/combo-box/bootstrap5-dark.css +5 -0
- package/styles/combo-box/bootstrap5.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +5 -0
- package/styles/drop-down-list/bootstrap5.css +5 -0
- package/styles/drop-down-tree/material-dark.css +402 -1
- package/styles/drop-down-tree/material.css +402 -1
- package/styles/material-dark.css +496 -1
- package/styles/material.css +496 -1
- package/styles/multi-select/material-dark.css +94 -0
- package/styles/multi-select/material.css +94 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,31 @@
|
|
|
4
4
|
|
|
5
5
|
### Dropdown Tree
|
|
6
6
|
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I343096` - The issue with "The Dropdown Tree item getting unselected when clicking the text content of the input element" has been fixed.
|
|
10
|
+
|
|
11
|
+
## 19.3.46 (2021-10-19)
|
|
12
|
+
|
|
13
|
+
### Dropdown Tree
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#F169190` - The issue with "The Dropdown tree is not focused while pressing single tab key" has been resolved.
|
|
18
|
+
- `#I341135` - The issue with "The Dropdown Tree selected items are misaligned while adding the `e-outline` and `e-filled` CSS classes" has been resolved.
|
|
19
|
+
|
|
20
|
+
## 19.3.45 (2021-10-12)
|
|
21
|
+
|
|
22
|
+
### ComboBox
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- `#I343666` - Issue with "data list is not updated to the popup while changing the query property on dynamically with filtering mode" has been resolved.
|
|
27
|
+
|
|
28
|
+
## 19.3.44 (2021-10-05)
|
|
29
|
+
|
|
30
|
+
### Dropdown Tree
|
|
31
|
+
|
|
7
32
|
#### New Features
|
|
8
33
|
|
|
9
34
|
- `#I301222` - Provided support to display custom selected values template in the Dropdown Tree component.
|
|
@@ -11,6 +36,7 @@
|
|
|
11
36
|
#### Bug Fixes
|
|
12
37
|
|
|
13
38
|
- `#I342360`, `#I342351` - The issue with "The Dropdown Tree component is not rendered when providing an id that starts with an integer type" has been resolved.
|
|
39
|
+
- `I341114` - Issue with "When listbox is selected with checkbox, drag and drop is not working properly" has been resolved.
|
|
14
40
|
|
|
15
41
|
## 19.2.62 (2021-09-14)
|
|
16
42
|
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-dropdowns.umd.min.js
|
|
3
|
-
* version : 19.3.
|
|
3
|
+
* version : 19.3.47
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
|
+
* Use of this code is subject to the terms of our license.
|
|
6
|
+
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
+
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
+
* applicable laws.
|
|
9
|
+
*/
|
|
10
|
+
/*!
|
|
11
|
+
* filename: ej2-vue-dropdowns.umd.min.js
|
|
12
|
+
* version : 19.2.55
|
|
4
13
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
14
|
* Use of this code is subject to the terms of our license.
|
|
6
15
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -9,7 +9,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|
|
9
9
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
10
10
|
};
|
|
11
11
|
// {{VueImport}}
|
|
12
|
-
const properties = ['actionFailureTemplate', 'allowFiltering', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', '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'];
|
|
12
|
+
const properties = ['islazyUpdate', 'actionFailureTemplate', 'allowFiltering', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', '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'];
|
|
13
13
|
const modelProps = ['value'];
|
|
14
14
|
const testProp = getProps({ props: properties });
|
|
15
15
|
const props = testProp[0];
|
|
@@ -108,8 +108,10 @@ class DropDownListComponent extends ComponentBase {
|
|
|
108
108
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
109
109
|
}
|
|
110
110
|
else {
|
|
111
|
-
|
|
112
|
-
|
|
111
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
112
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
113
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
114
|
+
}
|
|
113
115
|
}
|
|
114
116
|
}
|
|
115
117
|
}
|
|
@@ -200,7 +202,7 @@ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
200
202
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
201
203
|
};
|
|
202
204
|
// {{VueImport}}
|
|
203
|
-
const properties$1 = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', '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'];
|
|
205
|
+
const properties$1 = ['islazyUpdate', 'actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', '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'];
|
|
204
206
|
const modelProps$1 = ['value'];
|
|
205
207
|
const testProp$1 = getProps({ props: properties$1 });
|
|
206
208
|
const props$1 = testProp$1[0];
|
|
@@ -299,8 +301,10 @@ class ComboBoxComponent extends ComponentBase {
|
|
|
299
301
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
300
302
|
}
|
|
301
303
|
else {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
305
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
306
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
307
|
+
}
|
|
304
308
|
}
|
|
305
309
|
}
|
|
306
310
|
}
|
|
@@ -391,7 +395,7 @@ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
391
395
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
392
396
|
};
|
|
393
397
|
// {{VueImport}}
|
|
394
|
-
const properties$2 = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', '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'];
|
|
398
|
+
const properties$2 = ['islazyUpdate', 'actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', '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'];
|
|
395
399
|
const modelProps$2 = ['value'];
|
|
396
400
|
const testProp$2 = getProps({ props: properties$2 });
|
|
397
401
|
const props$2 = testProp$2[0];
|
|
@@ -490,8 +494,10 @@ class AutoCompleteComponent extends ComponentBase {
|
|
|
490
494
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
491
495
|
}
|
|
492
496
|
else {
|
|
493
|
-
|
|
494
|
-
|
|
497
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
498
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
499
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
500
|
+
}
|
|
495
501
|
}
|
|
496
502
|
}
|
|
497
503
|
}
|
|
@@ -582,7 +588,7 @@ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
582
588
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
583
589
|
};
|
|
584
590
|
// {{VueImport}}
|
|
585
|
-
const properties$3 = ['actionFailureTemplate', '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'];
|
|
591
|
+
const properties$3 = ['islazyUpdate', 'actionFailureTemplate', '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'];
|
|
586
592
|
const modelProps$3 = ['value'];
|
|
587
593
|
const testProp$3 = getProps({ props: properties$3 });
|
|
588
594
|
const props$3 = testProp$3[0];
|
|
@@ -681,8 +687,10 @@ class MultiSelectComponent extends ComponentBase {
|
|
|
681
687
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
682
688
|
}
|
|
683
689
|
else {
|
|
684
|
-
|
|
685
|
-
|
|
690
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
691
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
692
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
693
|
+
}
|
|
686
694
|
}
|
|
687
695
|
}
|
|
688
696
|
}
|
|
@@ -779,7 +787,7 @@ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
779
787
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
780
788
|
};
|
|
781
789
|
// {{VueImport}}
|
|
782
|
-
const properties$4 = ['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'];
|
|
790
|
+
const properties$4 = ['islazyUpdate', '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'];
|
|
783
791
|
const modelProps$4 = ['value'];
|
|
784
792
|
const testProp$4 = getProps({ props: properties$4 });
|
|
785
793
|
const props$4 = testProp$4[0];
|
|
@@ -878,8 +886,10 @@ class ListBoxComponent extends ComponentBase {
|
|
|
878
886
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
879
887
|
}
|
|
880
888
|
else {
|
|
881
|
-
|
|
882
|
-
|
|
889
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
890
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
891
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
892
|
+
}
|
|
883
893
|
}
|
|
884
894
|
}
|
|
885
895
|
}
|
|
@@ -994,7 +1004,7 @@ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
994
1004
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
995
1005
|
};
|
|
996
1006
|
// {{VueImport}}
|
|
997
|
-
const properties$5 = ['actionFailureTemplate', 'allowFiltering', 'allowMultiSelection', 'changeOnBlur', 'cssClass', 'customTemplate', 'delimiterChar', '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'];
|
|
1007
|
+
const properties$5 = ['islazyUpdate', 'actionFailureTemplate', 'allowFiltering', 'allowMultiSelection', 'changeOnBlur', 'cssClass', 'customTemplate', 'delimiterChar', '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'];
|
|
998
1008
|
const modelProps$5 = ['value'];
|
|
999
1009
|
const testProp$5 = getProps({ props: properties$5 });
|
|
1000
1010
|
const props$5 = testProp$5[0];
|
|
@@ -1093,8 +1103,10 @@ class DropDownTreeComponent extends ComponentBase {
|
|
|
1093
1103
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1094
1104
|
}
|
|
1095
1105
|
else {
|
|
1096
|
-
|
|
1097
|
-
|
|
1106
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
1107
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
1108
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
1109
|
+
}
|
|
1098
1110
|
}
|
|
1099
1111
|
}
|
|
1100
1112
|
}
|