@syncfusion/ej2-vue-dropdowns 25.2.4 → 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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-dropdowns@*",
3
- "_id": "@syncfusion/ej2-vue-dropdowns@25.2.3",
3
+ "_id": "@syncfusion/ej2-vue-dropdowns@25.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-AFEBbZE/vZu3lZId0Wcs7lHoAjIFUnzEuB8c/Oh4soWLYLwZtDaMJGf/AUVx5/GvS9YoRYm6tI27Mw1/f7RCoQ==",
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.2.3.tgz",
23
- "_shasum": "5bc6482182146e746f65727cb46f8290fc3dc619",
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,8 +31,8 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~25.2.3",
35
- "@syncfusion/ej2-dropdowns": "25.2.4",
34
+ "@syncfusion/ej2-base": "~25.2.5",
35
+ "@syncfusion/ej2-dropdowns": "25.2.5",
36
36
  "@syncfusion/ej2-vue-base": "~25.2.4"
37
37
  },
38
38
  "deprecated": false,
@@ -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.4",
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
  },