@progress/kendo-charts 2.4.2 → 2.5.0-dev.202408300624
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/README.md +20 -14
- package/dist/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/chart-wizard/get-wizard-data-from-data-rows.js +22 -0
- package/dist/es/chart-wizard/messages.js +108 -0
- package/dist/es/chart-wizard/state.js +721 -0
- package/dist/es/chart-wizard.js +19 -0
- package/dist/es/main.js +1 -0
- package/dist/es2015/chart-wizard/get-wizard-data-from-data-rows.js +21 -0
- package/dist/es2015/chart-wizard/messages.js +108 -0
- package/dist/es2015/chart-wizard/state.js +730 -0
- package/dist/es2015/chart-wizard.js +19 -0
- package/dist/es2015/main.js +1 -0
- package/dist/npm/chart-wizard.d.ts +313 -0
- package/dist/npm/main.d.ts +1 -0
- package/dist/npm/main.js +856 -3
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,26 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
## Professional Grade UI Components
|
|
2
2
|
|
|
3
|
-
This package is part of the [Kendo UI for Angular](
|
|
3
|
+
This package is part of the [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/) and [KendoReact](https://www.telerik.com/kendo-react-ui/components/#react-components) suites.
|
|
4
4
|
|
|
5
5
|
## License
|
|
6
6
|
|
|
7
|
-
This is commercial software. To use it, you need to agree to the [**Telerik End User License Agreement for Kendo UI
|
|
7
|
+
This is commercial software. To use it, you need to agree to the [**Telerik End User License Agreement for Kendo UI** (for Kendo UI for Angular)](http://www.telerik.com/purchase/license-agreement/kendo-ui) or to the [**End User License Agreement for Progress KendoReact** (for KendoReact)](https://www.telerik.com/purchase/license-agreement/progress-kendoreact). 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
10
|
|
|
11
|
-
##
|
|
11
|
+
## Kendo UI for Angular Resources and Feedback
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
- [Get Started](https://www.telerik.com/kendo-angular-ui/getting-started)
|
|
14
|
+
- [Component References](https://www.telerik.com/kendo-angular-ui/components)
|
|
15
|
+
- [Blogs](http://www.telerik.com/blogs/kendo-ui)
|
|
16
|
+
- [FAQ](https://www.telerik.com/kendo-angular-ui/components/faq/)
|
|
17
|
+
- [GitHub Issues](https://github.com/telerik/kendo-angular/issues)
|
|
18
|
+
- [Feedback Portal](http://kendoui-feedback.telerik.com/forums/555517-kendo-ui-for-angular-2-feedback)
|
|
19
|
+
- [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-ui-angular2)
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
## KendoReact Resources and Feedback
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
- [Get Started](https://www.telerik.com/kendo-react-ui/getting-started)
|
|
24
|
+
- [Component References](https://www.telerik.com/kendo-react-ui/components/#react-components)
|
|
25
|
+
- [Blogs](http://www.telerik.com/blogs/kendo-ui)
|
|
26
|
+
- [GitHub Issues](https://github.com/telerik/kendo-react/issues)
|
|
27
|
+
- [Feedback Portal](http://kendoui-feedback.telerik.com/forums/908425-kendo-ui-for-react-feedback)
|
|
28
|
+
- [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-react-ui)
|
|
18
29
|
|
|
19
|
-
|
|
30
|
+
*Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
|
|
20
31
|
|
|
21
|
-
|
|
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`.
|
|
32
|
+
*Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
|