@progress/kendo-charts 1.29.0 → 1.30.0-dev.202307061326

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/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [Kendo UI for Angular](http://www.telerik.com/kendo-angular-ui)
2
2
 
3
- Copyright © 2022 Telerik AD. All rights reserved.
3
+ Copyright © 2023 Telerik AD. All rights reserved.
4
4
 
5
5
  This is commercial software. To use it, you need to agree to the [**Telerik End User License Agreement for Kendo UI Complete**](http://www.telerik.com/purchase/license-agreement/kendo-ui-complete). If you do not own a commercial license, this file shall be governed by the trial license terms.
6
6
 
package/README.md CHANGED
@@ -7,3 +7,20 @@ This package is part of the [Kendo UI for Angular](http://www.telerik.com/kendo-
7
7
  This is commercial software. To use it, you need to agree to the [**Telerik End User License Agreement for Kendo UI Complete**](http://www.telerik.com/purchase/license-agreement/kendo-ui-complete). If you do not own a commercial license, this file shall be governed by the trial license terms.
8
8
 
9
9
  All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui.
10
+
11
+ ## Development
12
+
13
+ ### Running the examples
14
+
15
+ Inside the repo directory run `npm i && npx gulp start`. The demos will be available at `http://localhost:3000/`.
16
+
17
+ ### Linking the kendo-drawing package
18
+
19
+ Due to the dependency of the package to [@progress/kendo-drawing](https://github.com/telerik/kendo-drawing), it's often necessary to make changes to both packages during development. The most convenient way to develop is using [npm link](https://docs.npmjs.com/cli/v8/commands/npm-link). To link the packages do the following:
20
+
21
+ 1. Clone the [kendo-drawing](https://github.com/telerik/kendo-drawing) repo in the same parent directory, where `kendo-charts` is cloned.
22
+ 2. Navigate to the `kendo-drawing` directory and execute `npm link`.
23
+ 3. Build the package using `npm run build-package`.
24
+ 5. Inside the `kendo-charts` directory run `npm i`, and then `npm link @progress/kendo-drawing`.
25
+
26
+ Now you should be able to make changes to `kendo-drawing` and seeing the effects in `kendo-charts`. After each change in `kendo-drawing` you should run `npm run build-package`.