@bryntum/gantt-angular-thin 7.1.1
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 +44 -0
- package/bryntum-gantt-angular-thin.d.ts +5 -0
- package/bundles/bryntum-gantt-angular-thin.umd.js +14832 -0
- package/bundles/bryntum-gantt-angular-thin.umd.js.map +1 -0
- package/esm2015/bryntum-gantt-angular-thin.js +5 -0
- package/esm2015/lib/bryntum-assignment-field.component.js +941 -0
- package/esm2015/lib/bryntum-assignment-grid.component.js +2111 -0
- package/esm2015/lib/bryntum-calendar-picker.component.js +933 -0
- package/esm2015/lib/bryntum-dependency-field.component.js +961 -0
- package/esm2015/lib/bryntum-gantt-base.component.js +4219 -0
- package/esm2015/lib/bryntum-gantt-project-model.component.js +923 -0
- package/esm2015/lib/bryntum-gantt.component.js +4223 -0
- package/esm2015/lib/gantt.module.js +54 -0
- package/esm2015/lib/wrapper.helper.js +74 -0
- package/esm2015/public-api.js +12 -0
- package/fesm2015/bryntum-gantt-angular-thin.js +14387 -0
- package/fesm2015/bryntum-gantt-angular-thin.js.map +1 -0
- package/lib/bryntum-assignment-field.component.d.ts +1225 -0
- package/lib/bryntum-assignment-grid.component.d.ts +2292 -0
- package/lib/bryntum-calendar-picker.component.d.ts +1200 -0
- package/lib/bryntum-dependency-field.component.d.ts +1241 -0
- package/lib/bryntum-gantt-base.component.d.ts +4468 -0
- package/lib/bryntum-gantt-project-model.component.d.ts +1106 -0
- package/lib/bryntum-gantt.component.d.ts +4470 -0
- package/lib/gantt.module.d.ts +13 -0
- package/lib/wrapper.helper.d.ts +26 -0
- package/package.json +33 -0
- package/public-api.d.ts +8 -0
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Angular Ivy wrapper for Bryntum Gantt
|
|
2
|
+
|
|
3
|
+
This package contains a wrapper that encapsulates Bryntum Gantt and turns it into an Angular component, exposing
|
|
4
|
+
configuration options, properties, features, and events. Compiled for the Angular Ivy engine.
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
The installation is performed by issuing the installation command in the root of the application folder.
|
|
9
|
+
The specific command depends on the package manager used by the application.
|
|
10
|
+
|
|
11
|
+
The following are most frequently used:
|
|
12
|
+
|
|
13
|
+
Install using `npm`:
|
|
14
|
+
|
|
15
|
+
```shell
|
|
16
|
+
npm install @bryntum/gantt-angular@7.1.1
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Install using `yarn`:
|
|
20
|
+
|
|
21
|
+
```shell
|
|
22
|
+
yarn add @bryntum/gantt-angular@7.1.1
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Integration guide
|
|
26
|
+
|
|
27
|
+
For details on installing and using this package, see the
|
|
28
|
+
[Angular Integration Guide](https://bryntum.com/products/gantt/docs/guide/Gantt/integration/angular/guide).
|
|
29
|
+
|
|
30
|
+
# Online references
|
|
31
|
+
|
|
32
|
+
* [Bryntum npm repository guide](https://bryntum.com/products/gantt/docs/guide/Gantt/npm-repository)
|
|
33
|
+
* [Bryntum Gantt documentation](https://bryntum.com/products/gantt/docs/)
|
|
34
|
+
* [Bryntum Gantt examples](https://bryntum.com/products/gantt/examples/)
|
|
35
|
+
* [Bryntum Support Forum](https://forum.bryntum.com/)
|
|
36
|
+
* [Contact us](https://bryntum.com/contact/)
|
|
37
|
+
|
|
38
|
+
## License and copyright
|
|
39
|
+
|
|
40
|
+
This wrapper depends on Bryntum Gantt, which is commercial software and requires a paid license.
|
|
41
|
+
Please visit the [Bryntum Gantt End User License](https://bryntum.com/products/gantt/license/) for the full text of the license.
|
|
42
|
+
|
|
43
|
+
Copyright © 2009-2026, Bryntum
|
|
44
|
+
All rights reserved.
|