From c2f3380d74d43637fc5131e52802976a99f875d5 Mon Sep 17 00:00:00 2001 From: MOHANRAJSF4991 Date: Thu, 7 May 2026 18:45:20 +0530 Subject: [PATCH 1/5] 1021043: updated the getting started content --- .../Javascript-ES6/getting-started.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md index 2b6c018b69..9908b29762 100644 --- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md @@ -36,8 +36,22 @@ git clone https://github.com/SyncfusionExamples/ej2-quickstart-webpack- ej2-quic ```bash cd ej2-quickstart ``` +**Step 3:** By default, ej2-quickstart repository’s `package.json` file is preconfigured with the following dependency: +```bash +"dependencies": { + "@syncfusion/ej2": "*" +} +``` +This configuration installs the All Syncfusion Essential JS 2 packages, including Spreadsheet and all other EJ2 controls. -**Step 3:** Install the dependent npm packages. +Install only the Spreadsheet package +Update the dependencies section in package.json as shown below: +```bash +"dependencies": { + "@syncfusion/ej2-spreadsheet": "*" +} +``` +**Step 4:** Install the dependent npm packages. ```bash npm install From 95bf164562d92122e898f93213d0b790e138c653 Mon Sep 17 00:00:00 2001 From: MOHANRAJSF4991 Date: Thu, 7 May 2026 19:10:43 +0530 Subject: [PATCH 2/5] 1021043: updated typescript platform getting started content --- .../Javascript-ES6/getting-started.md | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md index 9908b29762..764895402f 100644 --- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md @@ -36,21 +36,10 @@ git clone https://github.com/SyncfusionExamples/ej2-quickstart-webpack- ej2-quic ```bash cd ej2-quickstart ``` -**Step 3:** By default, ej2-quickstart repository’s `package.json` file is preconfigured with the following dependency: -```bash -"dependencies": { - "@syncfusion/ej2": "*" -} -``` -This configuration installs the All Syncfusion Essential JS 2 packages, including Spreadsheet and all other EJ2 controls. +**Step 3:** By default, the `ej2‑quickstart` repository is preconfigured with `"@syncfusion/ej2": "*"` in `package.json`, which installs all [Syncfusion Essential JS 2](https://www.npmjs.com/package/@syncfusion/ej2) packages, including the Spreadsheet and all other EJ2 components. + +If you want to install only the [Spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet), replace it with `"@syncfusion/ej2-spreadsheet": "*"` -Install only the Spreadsheet package -Update the dependencies section in package.json as shown below: -```bash -"dependencies": { - "@syncfusion/ej2-spreadsheet": "*" -} -``` **Step 4:** Install the dependent npm packages. ```bash From 7eb1d9dfe742dd15933b024ceba15f926c328bd5 Mon Sep 17 00:00:00 2001 From: MOHANRAJSF4991 Date: Thu, 7 May 2026 19:53:05 +0530 Subject: [PATCH 3/5] 1021043: updated review correction for getting started content --- .../Spreadsheet/Javascript-ES6/getting-started.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md index 764895402f..0fb3dcb74e 100644 --- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md @@ -36,9 +36,15 @@ git clone https://github.com/SyncfusionExamples/ej2-quickstart-webpack- ej2-quic ```bash cd ej2-quickstart ``` -**Step 3:** By default, the `ej2‑quickstart` repository is preconfigured with `"@syncfusion/ej2": "*"` in `package.json`, which installs all [Syncfusion Essential JS 2](https://www.npmjs.com/package/@syncfusion/ej2) packages, including the Spreadsheet and all other EJ2 components. +**Step 3:** By default, the `ej2‑quickstart` repository is preconfigured with the [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package in `~/package.json`. This installs all Syncfusion Essential JS 2 packages, including the Spreadsheet and all other EJ2 components. -If you want to install only the [Spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet), replace it with `"@syncfusion/ej2-spreadsheet": "*"` +To install only the Spreadsheet package, replace the dependency with the [@syncfusion/ej2-spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet) package as shown below: + +```bash +"dependencies": { + "@syncfusion/ej2-spreadsheet": "*" +} +``` **Step 4:** Install the dependent npm packages. From 3594f31b9ca5fb9336318c269880b625049e212f Mon Sep 17 00:00:00 2001 From: MOHANRAJSF4991 Date: Thu, 7 May 2026 20:03:28 +0530 Subject: [PATCH 4/5] 1021043: fixed the space issue --- .../Excel/Spreadsheet/Javascript-ES6/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md index 0fb3dcb74e..38ba8e1318 100644 --- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md @@ -38,7 +38,7 @@ cd ej2-quickstart ``` **Step 3:** By default, the `ej2‑quickstart` repository is preconfigured with the [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package in `~/package.json`. This installs all Syncfusion Essential JS 2 packages, including the Spreadsheet and all other EJ2 components. -To install only the Spreadsheet package, replace the dependency with the [@syncfusion/ej2-spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet) package as shown below: +To install only the Spreadsheet package, replace the dependency with the [@syncfusion/ej2-spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet) package as shown below: ```bash "dependencies": { From 59260e4391f8c40bc992984c0d8181f78970041d Mon Sep 17 00:00:00 2001 From: MOHANRAJSF4991 Date: Thu, 7 May 2026 20:17:56 +0530 Subject: [PATCH 5/5] 1021043: final review correction getting started content --- .../Excel/Spreadsheet/Javascript-ES6/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md index 38ba8e1318..52c0bfead7 100644 --- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md @@ -36,9 +36,9 @@ git clone https://github.com/SyncfusionExamples/ej2-quickstart-webpack- ej2-quic ```bash cd ej2-quickstart ``` -**Step 3:** By default, the `ej2‑quickstart` repository is preconfigured with the [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package in `~/package.json`. This installs all Syncfusion Essential JS 2 packages, including the Spreadsheet and all other EJ2 components. - -To install only the Spreadsheet package, replace the dependency with the [@syncfusion/ej2-spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet) package as shown below: +**Step 3:** By default, the `ej2‑quickstart` repository is preconfigured with the [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package in `~/package.json`. This package installs all Syncfusion Essential JS 2 components packages, including the Spreadsheet and other EJ2 controls. + +To install only the Spreadsheet component, replace the dependency with [@syncfusion/ej2-spreadsheet](https://www.npmjs.com/package/@syncfusion/ej2-spreadsheet), as shown below: ```bash "dependencies": {