@syncfusion/ej2-vue-spreadsheet 24.1.47 → 24.2.3

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-spreadsheet@*",
3
- "_id": "@syncfusion/ej2-vue-spreadsheet@24.1.46",
3
+ "_id": "@syncfusion/ej2-vue-spreadsheet@24.1.47",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-0i5UTR18CtG/GZk310lEOhzqzxZEC7nP6NuQC0UYRqxFYsrH3P7nTq73RtzbY9zNMcLMBC6LAmbsr1xXpKImZQ==",
5
+ "_integrity": "sha512-5yv0yrNatUnJSWlr1JThCVJSGfVf0Z0+pqtygUqaIIOOCwVrsuQRJtb4Q2e9UKccIIzylCelaxqUSNP2BxHE7w==",
6
6
  "_location": "/@syncfusion/ej2-vue-spreadsheet",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-spreadsheet/-/ej2-vue-spreadsheet-24.1.46.tgz",
23
- "_shasum": "05e3b0567e4a9afbdf2182459045c53a6b52d28c",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-spreadsheet/-/ej2-vue-spreadsheet-24.1.47.tgz",
23
+ "_shasum": "c4e1e481e28a3e203a6dc96cec4e8fbee5ad00fe",
24
24
  "_spec": "@syncfusion/ej2-vue-spreadsheet@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~24.1.46",
35
- "@syncfusion/ej2-spreadsheet": "24.1.47",
36
- "@syncfusion/ej2-vue-base": "~24.1.41"
34
+ "@syncfusion/ej2-base": "~24.2.3",
35
+ "@syncfusion/ej2-spreadsheet": "24.2.3",
36
+ "@syncfusion/ej2-vue-base": "~24.2.3"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Vue",
@@ -57,6 +57,6 @@
57
57
  "ci-publish": "gulp ci-publish",
58
58
  "compile": "gulp ci-compile && gulp vue-global-script"
59
59
  },
60
- "version": "24.1.47",
60
+ "version": "24.2.3",
61
61
  "sideEffects": false
62
62
  }
@@ -34,7 +34,7 @@ export var SpreadsheetComponent = vueDefineComponent({
34
34
  provide: function () { return { custom: this.custom }; },
35
35
  data: function () {
36
36
  return {
37
- ej2Instance: new Spreadsheet({}),
37
+ ej2Instances: new Spreadsheet({}),
38
38
  propKeys: properties,
39
39
  models: modelProps,
40
40
  hasChildDirective: true,
@@ -187,6 +187,12 @@ export var SpreadsheetComponent = vueDefineComponent({
187
187
  deleteImage: function (id, range) {
188
188
  return this.ej2Instances.deleteImage(id, range);
189
189
  },
190
+ deselectChart: function () {
191
+ return this.ej2Instances.deselectChart();
192
+ },
193
+ deselectImage: function () {
194
+ return this.ej2Instances.deselectImage();
195
+ },
190
196
  duplicateSheet: function (sheetIndex) {
191
197
  return this.ej2Instances.duplicateSheet(sheetIndex);
192
198
  },
@@ -322,6 +328,12 @@ export var SpreadsheetComponent = vueDefineComponent({
322
328
  saveAsJson: function () {
323
329
  return this.ej2Instances.saveAsJson();
324
330
  },
331
+ selectChart: function (id) {
332
+ return this.ej2Instances.selectChart(id);
333
+ },
334
+ selectImage: function (id) {
335
+ return this.ej2Instances.selectImage(id);
336
+ },
325
337
  selectRange: function (address) {
326
338
  return this.ej2Instances.selectRange(address);
327
339
  },