Skip to content

Commit ecbb946

Browse files
authored
Merge pull request #8 from DHTMLX/next
[update] the sections on package installation
2 parents 6ed6e57 + 479649f commit ecbb946

File tree

5 files changed

+16
-166
lines changed

5 files changed

+16
-166
lines changed

docs/angular_integration.md

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -52,42 +52,7 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
5252

5353
### Step 1. Package installation
5454

55-
There are two options available: you can install the **Pro** package from a local folder or install the **trial** version using `npm` or `yarn`.
56-
57-
#### Installing the package from a local folder
58-
59-
1. Copy the Spreadsheet package into some local directory inside the project
60-
2. In the project directory run the command below replacing *spreadsheet-local-package-path* with the actual path:
61-
62-
~~~
63-
npm install ./spreadsheet-local-package-path
64-
//or
65-
yarn add "./spreadsheet-local-package-path"
66-
~~~
67-
68-
For example:
69-
70-
~~~
71-
npm install ./spreadsheet_5.1.0_enterprise
72-
// or
73-
yarn add "./spreadsheet_5.1.0_enterprise"
74-
~~~
75-
76-
#### Installing the trial version via a package manager
77-
78-
You can install the **trial** version of Spreadsheet using **npm** or **yarn** commands:
79-
80-
~~~jsx {2,3,6,7}
81-
// npm
82-
npm config set @dhx:registry https://npm.dhtmlx.com
83-
npm i @dhx/trial-spreadsheet
84-
85-
// yarn
86-
yarn config set @dhx:registry https://npm.dhtmlx.com
87-
yarn add @dhx/trial-spreadsheet
88-
~~~
89-
90-
To get Spreadsheet under the proprietary license, refer to the [Support Center](https://dhtmlx.com/docs/technical-support.shtml)!
55+
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
9156

9257
### Step 2. Component creation
9358

docs/how_to_start.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ Start from creating an HTML file and call it *index.html*. Then proceed to inclu
1818

1919
There are two necessary files:
2020

21-
- the JS file of DHTMLX Spreadsheet
22-
- the CSS file of DHTMLX Spreadsheet
21+
- the *JS* file of DHTMLX Spreadsheet
22+
- the *CSS* file of DHTMLX Spreadsheet
2323

2424
and
2525

2626
- the link to the Google Fonts source file for the correct rendering of fonts.
2727

28-
~~~html title="index.html"
28+
~~~html {5-8} title="index.html"
2929
<!DOCTYPE html>
3030
<html>
3131
<head>
@@ -43,24 +43,20 @@ and
4343
</html>
4444
~~~
4545

46-
:::info
47-
You can also import Spreadsheet into your project using `yarn` or `npm` commands. To get the trial version of Spreadsheet, run the following commands:
46+
### Installing Spreadsheet via npm and yarn
4847

49-
~~~jsx {2,3,6,7}
50-
// npm
51-
npm config set @dhx:registry https://npm.dhtmlx.com
52-
npm i @dhx/trial-spreadsheet
48+
You can import JavaScript Spreadsheet into your project using the `yarn` or `npm` package manager.
5349

54-
// yarn
55-
yarn config set @dhx:registry https://npm.dhtmlx.com
56-
yarn add @dhx/trial-spreadsheet
57-
~~~
50+
#### Installing trial Spreadsheet via npm and yarn
5851

59-
To get Spreadsheet under the proprietary license, refer to [**Support Center**](https://dhtmlx.com/docs/technical-support.shtml?_gl=1*18ffotg*_ga*MTA3MDMxMTAxNi4xNzAwNTcxNzU4*_ga_N87XPB4GSG*MTcwMTQzMjczMS4yOS4xLjE3MDE0MzI3OTUuNTYuMC4w&_ga=2.77564829.902258312.1701098802-1070311016.1700571758)!
52+
:::info
53+
If you want to use the trial version of Spreadsheet, download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
6054
:::
6155

62-
:::tip
63-
If you want to integrate JavaScript Spreadsheet into Svelte, React, Angular or Vue projects, refer to the corresponding [**Examples on CodeSandbox**](https://codesandbox.io/u/DHTMLX) for more information.
56+
#### Installing PRO Spreadsheet via npm and yarn
57+
58+
:::info
59+
If you already have Spreadsheet under the proprietary license, send your **license number** to the *contact@dhtmlx.com* email to receive a login and a password for a private **npm** as well as a detailed guide on how to install Spreadsheet. Note that a private **npm** is available before the expiration of the proprietary Spreadsheet license.
6460
:::
6561

6662
## Step 2. Creating Spreadsheet

docs/react_integration.md

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -60,44 +60,7 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
6060

6161
### Step 1. Package installation
6262

63-
There are two options available: you can install the **Pro** package from a local folder or install the **trial** version using `npm` or `yarn`.
64-
65-
#### Installing the package from a local folder
66-
67-
The instructions are the following:
68-
69-
1. Copy the Spreadsheet package into some local directory inside the project
70-
2. In the project directory run the command below replacing *spreadsheet-local-package-path* with the actual path:
71-
72-
~~~
73-
npm install ./spreadsheet-local-package-path
74-
//or
75-
yarn add "./spreadsheet-local-package-path"
76-
~~~
77-
78-
For example:
79-
80-
~~~
81-
npm install ./spreadsheet_5.1.0_enterprise
82-
// or
83-
yarn add "./spreadsheet_5.1.0_enterprise"
84-
~~~
85-
86-
#### Installing the trial version via a package manager
87-
88-
You can install the **trial** version of Spreadsheet using **npm** or **yarn** commands:
89-
90-
~~~jsx {2,3,6,7}
91-
// npm
92-
npm config set @dhx:registry https://npm.dhtmlx.com
93-
npm i @dhx/trial-spreadsheet
94-
95-
//yarn
96-
yarn config set @dhx:registry https://npm.dhtmlx.com
97-
yarn add @dhx/trial-spreadsheet
98-
~~~
99-
100-
To get Spreadsheet under the proprietary license, refer to the [Support Center](https://dhtmlx.com/docs/technical-support.shtml)!
63+
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
10164

10265
### Step 2. Component creation
10366

docs/svelte_integration.md

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -68,44 +68,7 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
6868

6969
### Step 1. Package installation
7070

71-
There are two options available: you can install the **Pro** package from a local folder or install the **trial** version using `npm` or `yarn`.
72-
73-
#### Installing the package from a local folder
74-
75-
The instructions are the following:
76-
77-
1. Copy the Spreadsheet package into some local directory inside the project
78-
2. In the project directory run the command below replacing *spreadsheet-local-package-path* with the actual path:
79-
80-
~~~
81-
npm install ./spreadsheet-local-package-path
82-
//or
83-
yarn add "./spreadsheet-local-package-path"
84-
~~~
85-
86-
For example:
87-
88-
~~~
89-
npm install ./spreadsheet_5.1.0_enterprise
90-
// or
91-
yarn add "./spreadsheet_5.1.0_enterprise"
92-
~~~
93-
94-
#### Installing the trial version via a package manager
95-
96-
You can install the **trial** version of Spreadsheet using **npm** or **yarn** commands:
97-
98-
~~~jsx {2,3,6,7}
99-
// npm
100-
npm config set @dhx:registry https://npm.dhtmlx.com
101-
npm i @dhx/trial-spreadsheet
102-
103-
// yarn
104-
yarn config set @dhx:registry https://npm.dhtmlx.com
105-
yarn add @dhx/trial-spreadsheet
106-
~~~
107-
108-
To get Spreadsheet under the proprietary license, refer to the [Support Center](https://dhtmlx.com/docs/technical-support.shtml)!
71+
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
10972

11073
### Step 2. Component creation
11174

docs/vuejs_integration.md

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -61,44 +61,7 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
6161

6262
### Step 1. Package installation
6363

64-
There are two options available: you can install the **Pro** package from a local folder or install the **trial** version using `npm` or `yarn`.
65-
66-
#### Installing the package from a local folder
67-
68-
The instructions are the following:
69-
70-
1. Copy the Spreadsheet package into some local directory inside the project
71-
2. In the project directory run the command below replacing *spreadsheet-local-package-path* with the actual path:
72-
73-
~~~
74-
npm install ./spreadsheet-local-package-path
75-
//or
76-
yarn add "./spreadsheet-local-package-path"
77-
~~~
78-
79-
For example:
80-
81-
~~~
82-
npm install ./spreadsheet_5.1.0_enterprise
83-
// or
84-
yarn add "./spreadsheet_5.1.0_enterprise"
85-
~~~
86-
87-
#### Installing the trial version via a package manager
88-
89-
You can install the **trial** version of Spreadsheet using **npm** or **yarn** commands:
90-
91-
~~~jsx {2,3,6,7}
92-
// npm
93-
npm config set @dhx:registry https://npm.dhtmlx.com
94-
npm i @dhx/trial-spreadsheet
95-
96-
// yarn
97-
yarn config set @dhx:registry https://npm.dhtmlx.com
98-
yarn add @dhx/trial-spreadsheet
99-
~~~
100-
101-
To get Spreadsheet under the proprietary license, refer to the [Support Center](https://dhtmlx.com/docs/technical-support.shtml)!
64+
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
10265

10366
### Step 2. Component creation
10467

0 commit comments

Comments
 (0)