@syncfusion/ej2-vue-dropdowns 19.4.38 → 19.4.40
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/README.md +1 -1
- package/dist/ej2-vue-dropdowns.umd.min.js +10 -1
- package/dist/es6/ej2-vue-dropdowns.es2015.js +12 -12
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +12 -12
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +7 -7
- package/src/auto-complete/autocomplete.component.js +2 -2
- package/src/combo-box/combobox.component.js +2 -2
- package/src/drop-down-list/dropdownlist.component.js +2 -2
- package/src/drop-down-tree/dropdowntree.component.js +2 -2
- package/src/list-box/listbox.component.js +2 -2
- package/src/multi-select/multiselect.component.js +2 -2
- package/styles/auto-complete/bootstrap5-dark.css +1 -0
- package/styles/auto-complete/bootstrap5.css +1 -0
- package/styles/bootstrap5-dark.css +6 -12
- package/styles/bootstrap5.css +6 -12
- package/styles/combo-box/bootstrap5-dark.css +1 -0
- package/styles/combo-box/bootstrap5.css +1 -0
- package/styles/drop-down-list/bootstrap5-dark.css +1 -0
- package/styles/drop-down-list/bootstrap5.css +1 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +4 -11
- package/styles/drop-down-tree/bootstrap5.css +4 -11
- package/styles/drop-down-tree/tailwind-dark.css +0 -1
- package/styles/drop-down-tree/tailwind.css +0 -1
- package/styles/list-box/bootstrap5-dark.css +1 -1
- package/styles/list-box/bootstrap5.css +1 -1
- package/styles/list-box/tailwind-dark.css +3 -3
- package/styles/list-box/tailwind.css +1 -1
- package/styles/material-dark.css +94 -0
- package/styles/material.css +94 -0
- package/styles/multi-select/material-dark.css +94 -0
- package/styles/multi-select/material.css +94 -0
- package/styles/tailwind-dark.css +3 -4
- package/styles/tailwind.css +1 -2
|
@@ -22,7 +22,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|
|
22
22
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
23
23
|
};
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
var properties = ['
|
|
25
|
+
var 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'];
|
|
26
26
|
var modelProps = ['value'];
|
|
27
27
|
var testProp = getProps({ props: properties });
|
|
28
28
|
var props = testProp[0];
|
|
@@ -121,7 +121,7 @@ var DropDownListComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
if (eventName === 'change' || (this.$props && !this.$props.
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
125
|
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
126
|
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
127
|
}
|
|
@@ -229,7 +229,7 @@ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
229
229
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
230
230
|
};
|
|
231
231
|
// {{VueImport}}
|
|
232
|
-
var properties$1 = ['
|
|
232
|
+
var 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'];
|
|
233
233
|
var modelProps$1 = ['value'];
|
|
234
234
|
var testProp$1 = getProps({ props: properties$1 });
|
|
235
235
|
var props$1 = testProp$1[0];
|
|
@@ -328,7 +328,7 @@ var ComboBoxComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
328
328
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
329
329
|
}
|
|
330
330
|
else {
|
|
331
|
-
if (eventName === 'change' || (this.$props && !this.$props.
|
|
331
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
332
332
|
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
333
333
|
this.$emit('modelchanged', eventProp[propKey]);
|
|
334
334
|
}
|
|
@@ -436,7 +436,7 @@ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
436
436
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
437
437
|
};
|
|
438
438
|
// {{VueImport}}
|
|
439
|
-
var properties$2 = ['
|
|
439
|
+
var 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'];
|
|
440
440
|
var modelProps$2 = ['value'];
|
|
441
441
|
var testProp$2 = getProps({ props: properties$2 });
|
|
442
442
|
var props$2 = testProp$2[0];
|
|
@@ -535,7 +535,7 @@ var AutoCompleteComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
535
535
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
536
536
|
}
|
|
537
537
|
else {
|
|
538
|
-
if (eventName === 'change' || (this.$props && !this.$props.
|
|
538
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
539
539
|
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
540
540
|
this.$emit('modelchanged', eventProp[propKey]);
|
|
541
541
|
}
|
|
@@ -643,7 +643,7 @@ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
643
643
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
644
644
|
};
|
|
645
645
|
// {{VueImport}}
|
|
646
|
-
var properties$3 = ['
|
|
646
|
+
var properties$3 = ['islazyUpdate', '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'];
|
|
647
647
|
var modelProps$3 = ['value'];
|
|
648
648
|
var testProp$3 = getProps({ props: properties$3 });
|
|
649
649
|
var props$3 = testProp$3[0];
|
|
@@ -742,7 +742,7 @@ var MultiSelectComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
742
742
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
743
743
|
}
|
|
744
744
|
else {
|
|
745
|
-
if (eventName === 'change' || (this.$props && !this.$props.
|
|
745
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
746
746
|
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
747
747
|
this.$emit('modelchanged', eventProp[propKey]);
|
|
748
748
|
}
|
|
@@ -856,7 +856,7 @@ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
856
856
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
857
857
|
};
|
|
858
858
|
// {{VueImport}}
|
|
859
|
-
var properties$4 = ['
|
|
859
|
+
var 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'];
|
|
860
860
|
var modelProps$4 = ['value'];
|
|
861
861
|
var testProp$4 = getProps({ props: properties$4 });
|
|
862
862
|
var props$4 = testProp$4[0];
|
|
@@ -955,7 +955,7 @@ var ListBoxComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
955
955
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
956
956
|
}
|
|
957
957
|
else {
|
|
958
|
-
if (eventName === 'change' || (this.$props && !this.$props.
|
|
958
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
959
959
|
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
960
960
|
this.$emit('modelchanged', eventProp[propKey]);
|
|
961
961
|
}
|
|
@@ -1087,7 +1087,7 @@ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
1087
1087
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1088
1088
|
};
|
|
1089
1089
|
// {{VueImport}}
|
|
1090
|
-
var properties$5 = ['
|
|
1090
|
+
var 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'];
|
|
1091
1091
|
var modelProps$5 = ['value'];
|
|
1092
1092
|
var testProp$5 = getProps({ props: properties$5 });
|
|
1093
1093
|
var props$5 = testProp$5[0];
|
|
@@ -1186,7 +1186,7 @@ var DropDownTreeComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1186
1186
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1187
1187
|
}
|
|
1188
1188
|
else {
|
|
1189
|
-
if (eventName === 'change' || (this.$props && !this.$props.
|
|
1189
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
1190
1190
|
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
1191
1191
|
this.$emit('modelchanged', eventProp[propKey]);
|
|
1192
1192
|
}
|