@syncfusion/ej2-vue-spreadsheet 19.4.50 → 19.4.54

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@19.4.48",
3
+ "_id": "@syncfusion/ej2-vue-spreadsheet@19.4.53",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-f+lqDW4G6TrZjlab7b6Wt9TrLbZVb/tFth9CdCl5lfaH46BxHzIH++Yo3XTRQKN7ZNqMmvqyvr0WpdRZbgAJOQ==",
5
+ "_integrity": "sha512-DkLBy6OLqiv0B8spiN67va8KRVydLAWk3l37YHEp5FcFLRuAMwPhaza77tf33US9Rva16m+HQ0pHpNuKEnrqCg==",
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": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-spreadsheet/-/ej2-vue-spreadsheet-19.4.48.tgz",
23
- "_shasum": "4d420906df6377034d1541093002b7ae4963ad16",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-spreadsheet/-/ej2-vue-spreadsheet-19.4.53.tgz",
23
+ "_shasum": "e27f32ad3a88da76f26a7b3389c8bf34017b9e84",
24
24
  "_spec": "@syncfusion/ej2-vue-spreadsheet@*",
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.4.48",
35
- "@syncfusion/ej2-spreadsheet": "19.4.50",
36
- "@syncfusion/ej2-vue-base": "~19.4.48"
34
+ "@syncfusion/ej2-base": "~19.4.52",
35
+ "@syncfusion/ej2-spreadsheet": "19.4.54",
36
+ "@syncfusion/ej2-vue-base": "~19.4.53"
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",
@@ -65,6 +65,6 @@
65
65
  "type": "git",
66
66
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
67
67
  },
68
- "version": "19.4.50",
68
+ "version": "19.4.54",
69
69
  "sideEffects": false
70
70
  }
@@ -78,6 +78,7 @@ export declare class SpreadsheetComponent extends ComponentBase {
78
78
  insertImage(images: Object[], range?: string): void;
79
79
  insertRow(startRow?: number | Object[], endRow?: number, sheet?: number | string): void;
80
80
  insertSheet(startSheet?: number | Object[], endSheet?: number): void;
81
+ isValidCell(cellAddress?: string): boolean;
81
82
  lockCells(range?: string, isLocked?: boolean): void;
82
83
  merge(range?: string, type?: Object): void;
83
84
  moveSheet(position: number, sheetIndexes?: number[]): void;
@@ -272,6 +272,9 @@ var SpreadsheetComponent = /** @class */ (function (_super) {
272
272
  SpreadsheetComponent.prototype.insertSheet = function (startSheet, endSheet) {
273
273
  return this.ej2Instances.insertSheet(startSheet, endSheet);
274
274
  };
275
+ SpreadsheetComponent.prototype.isValidCell = function (cellAddress) {
276
+ return this.ej2Instances.isValidCell(cellAddress);
277
+ };
275
278
  SpreadsheetComponent.prototype.lockCells = function (range, isLocked) {
276
279
  return this.ej2Instances.lockCells(range, isLocked);
277
280
  };