@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/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-dropdowns@
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-dropdowns@19.3.46",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-LYO/uFmm6As5oKkMM/hV84imGpU1odQbWCw/dOsjmMrgPWFUSd3p3WGMEXvfnIq0NSCveNOBqkvdtyUIy5PTyQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-dropdowns",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-19.3.46.tgz",
|
|
23
|
+
"_shasum": "a4906354737c14eed506ec5933c052f1cc73ea05",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-dropdowns@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~19.3.
|
|
35
|
-
"@syncfusion/ej2-dropdowns": "19.3.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~19.3.
|
|
34
|
+
"@syncfusion/ej2-base": "~19.3.47",
|
|
35
|
+
"@syncfusion/ej2-dropdowns": "19.3.47",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~19.3.47"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Vue",
|
|
@@ -67,6 +67,6 @@
|
|
|
67
67
|
"type": "git",
|
|
68
68
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
69
69
|
},
|
|
70
|
-
"version": "19.3.
|
|
70
|
+
"version": "19.3.47",
|
|
71
71
|
"sideEffects": false
|
|
72
72
|
}
|
|
@@ -22,7 +22,7 @@ import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/e
|
|
|
22
22
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
23
23
|
import { AutoComplete } from '@syncfusion/ej2-dropdowns';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var properties = ['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'];
|
|
25
|
+
export var properties = ['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'];
|
|
26
26
|
export var modelProps = ['value'];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
|
@@ -121,8 +121,10 @@ var AutoCompleteComponent = /** @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
|
+
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
@@ -22,7 +22,7 @@ import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/e
|
|
|
22
22
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
23
23
|
import { ComboBox } from '@syncfusion/ej2-dropdowns';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var properties = ['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'];
|
|
25
|
+
export var properties = ['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'];
|
|
26
26
|
export var modelProps = ['value'];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
|
@@ -121,8 +121,10 @@ var ComboBoxComponent = /** @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
|
+
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
@@ -22,7 +22,7 @@ import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/e
|
|
|
22
22
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
23
23
|
import { DropDownList } from '@syncfusion/ej2-dropdowns';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var 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'];
|
|
25
|
+
export 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
|
export var modelProps = ['value'];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
|
@@ -121,8 +121,10 @@ var DropDownListComponent = /** @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
|
+
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
@@ -22,7 +22,7 @@ import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/e
|
|
|
22
22
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
23
23
|
import { DropDownTree } from '@syncfusion/ej2-dropdowns';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var properties = ['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'];
|
|
25
|
+
export var properties = ['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'];
|
|
26
26
|
export var modelProps = ['value'];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
|
@@ -121,8 +121,10 @@ var DropDownTreeComponent = /** @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
|
+
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
@@ -22,7 +22,7 @@ import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/e
|
|
|
22
22
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
23
23
|
import { ListBox } from '@syncfusion/ej2-dropdowns';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var properties = ['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'];
|
|
25
|
+
export var properties = ['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'];
|
|
26
26
|
export var modelProps = ['value'];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
|
@@ -121,8 +121,10 @@ var ListBoxComponent = /** @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
|
+
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
@@ -22,7 +22,7 @@ import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/e
|
|
|
22
22
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
23
23
|
import { MultiSelect } from '@syncfusion/ej2-dropdowns';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var properties = ['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'];
|
|
25
|
+
export var properties = ['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'];
|
|
26
26
|
export var modelProps = ['value'];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
|
@@ -121,8 +121,10 @@ var MultiSelectComponent = /** @class */ (function (_super) {
|
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
if (eventName === 'change' || (this.$props && !this.$props.islazyUpdate)) {
|
|
125
|
+
this.$emit('update:' + propKey, eventProp[propKey]);
|
|
126
|
+
this.$emit('modelchanged', eventProp[propKey]);
|
|
127
|
+
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
@@ -68,6 +68,11 @@
|
|
|
68
68
|
background: transparent;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
72
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
73
|
+
background: #e9ecef;
|
|
74
|
+
}
|
|
75
|
+
|
|
71
76
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
72
77
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
73
78
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #343a40;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #e9ecef;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
package/styles/bootstrap4.css
CHANGED
|
@@ -449,6 +449,11 @@
|
|
|
449
449
|
background: transparent;
|
|
450
450
|
}
|
|
451
451
|
|
|
452
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
453
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
454
|
+
background: #e9ecef;
|
|
455
|
+
}
|
|
456
|
+
|
|
452
457
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
453
458
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
454
459
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -455,6 +455,11 @@
|
|
|
455
455
|
background: transparent;
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
459
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
460
|
+
background: #343a40;
|
|
461
|
+
}
|
|
462
|
+
|
|
458
463
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
459
464
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
460
465
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -455,6 +455,11 @@
|
|
|
455
455
|
background: transparent;
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
459
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
460
|
+
background: #e9ecef;
|
|
461
|
+
}
|
|
462
|
+
|
|
458
463
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
459
464
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
460
465
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -68,6 +68,11 @@
|
|
|
68
68
|
background: transparent;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
72
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
73
|
+
background: #e9ecef;
|
|
74
|
+
}
|
|
75
|
+
|
|
71
76
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
72
77
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
73
78
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #343a40;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #e9ecef;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -117,6 +117,11 @@
|
|
|
117
117
|
background: transparent;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
121
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
122
|
+
background: #e9ecef;
|
|
123
|
+
}
|
|
124
|
+
|
|
120
125
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
121
126
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
122
127
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -121,6 +121,11 @@
|
|
|
121
121
|
background: transparent;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
125
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
126
|
+
background: #343a40;
|
|
127
|
+
}
|
|
128
|
+
|
|
124
129
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
125
130
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
126
131
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -121,6 +121,11 @@
|
|
|
121
121
|
background: transparent;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
125
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
126
|
+
background: #e9ecef;
|
|
127
|
+
}
|
|
128
|
+
|
|
124
129
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
125
130
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
126
131
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|