@syncfusion/ej2-vue-dropdowns 25.2.3 → 25.2.5
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 +41 -0
- 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 +9 -0
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +9 -0
- 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.d.ts +1 -0
- package/src/auto-complete/autocomplete.component.js +3 -0
- package/src/combo-box/combobox.component.d.ts +1 -0
- package/src/combo-box/combobox.component.js +3 -0
- package/src/drop-down-list/dropdownlist.component.d.ts +1 -0
- package/src/drop-down-list/dropdownlist.component.js +3 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-dropdowns@25.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-dropdowns@25.2.4",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-PENniAZ/g6kd1aRS8sk/hIoE0JCE93Sk/PtGBAvXIT2HdBwAsnyn2gZHM2Yy6vbUOqV/8JHrVkJF7BGCw6oWYQ==",
|
|
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": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-25.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-25.2.4.tgz",
|
|
23
|
+
"_shasum": "7d8bd6f2d600b9b715a3d6808be6de80ee08eadd",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-dropdowns@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~25.2.
|
|
35
|
-
"@syncfusion/ej2-dropdowns": "25.2.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~25.2.
|
|
34
|
+
"@syncfusion/ej2-base": "~25.2.5",
|
|
35
|
+
"@syncfusion/ej2-dropdowns": "25.2.5",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~25.2.4"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Vue",
|
|
@@ -62,6 +62,6 @@
|
|
|
62
62
|
"ci-publish": "gulp ci-publish",
|
|
63
63
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
64
64
|
},
|
|
65
|
-
"version": "25.2.
|
|
65
|
+
"version": "25.2.5",
|
|
66
66
|
"sideEffects": false
|
|
67
67
|
}
|
|
@@ -36,6 +36,7 @@ export declare type AutoCompleteComponent = typeof ComponentBase & {
|
|
|
36
36
|
getItems(): Object[];
|
|
37
37
|
hidePopup(e?: Object | Object | Object): void;
|
|
38
38
|
hideSpinner(): void;
|
|
39
|
+
removeAllChildren(element: any): void;
|
|
39
40
|
requiredModules(): Object[];
|
|
40
41
|
showPopup(e?: Object | Object | Object): void;
|
|
41
42
|
showSpinner(): void;
|
|
@@ -173,6 +173,9 @@ export var AutoCompleteComponent = vueDefineComponent({
|
|
|
173
173
|
hideSpinner: function () {
|
|
174
174
|
return this.ej2Instances.hideSpinner();
|
|
175
175
|
},
|
|
176
|
+
removeAllChildren: function (element) {
|
|
177
|
+
return this.ej2Instances.removeAllChildren(element);
|
|
178
|
+
},
|
|
176
179
|
requiredModules: function () {
|
|
177
180
|
return this.ej2Instances.requiredModules();
|
|
178
181
|
},
|
|
@@ -36,6 +36,7 @@ export declare type ComboBoxComponent = typeof ComponentBase & {
|
|
|
36
36
|
getItems(): Object[];
|
|
37
37
|
hidePopup(e?: Object | Object | Object): void;
|
|
38
38
|
hideSpinner(): void;
|
|
39
|
+
removeAllChildren(element: any): void;
|
|
39
40
|
requiredModules(): Object[];
|
|
40
41
|
showPopup(e?: Object | Object | Object): void;
|
|
41
42
|
showSpinner(): void;
|
|
@@ -173,6 +173,9 @@ export var ComboBoxComponent = vueDefineComponent({
|
|
|
173
173
|
hideSpinner: function () {
|
|
174
174
|
return this.ej2Instances.hideSpinner();
|
|
175
175
|
},
|
|
176
|
+
removeAllChildren: function (element) {
|
|
177
|
+
return this.ej2Instances.removeAllChildren(element);
|
|
178
|
+
},
|
|
176
179
|
requiredModules: function () {
|
|
177
180
|
return this.ej2Instances.requiredModules();
|
|
178
181
|
},
|
|
@@ -36,6 +36,7 @@ export declare type DropDownListComponent = typeof ComponentBase & {
|
|
|
36
36
|
getItems(): Object[];
|
|
37
37
|
hidePopup(e?: Object | Object | Object): void;
|
|
38
38
|
hideSpinner(): void;
|
|
39
|
+
removeAllChildren(element: any): void;
|
|
39
40
|
requiredModules(): Object[];
|
|
40
41
|
showPopup(e?: Object | Object | Object): void;
|
|
41
42
|
showSpinner(): void;
|
|
@@ -173,6 +173,9 @@ export var DropDownListComponent = vueDefineComponent({
|
|
|
173
173
|
hideSpinner: function () {
|
|
174
174
|
return this.ej2Instances.hideSpinner();
|
|
175
175
|
},
|
|
176
|
+
removeAllChildren: function (element) {
|
|
177
|
+
return this.ej2Instances.removeAllChildren(element);
|
|
178
|
+
},
|
|
176
179
|
requiredModules: function () {
|
|
177
180
|
return this.ej2Instances.requiredModules();
|
|
178
181
|
},
|