Skip to content

Commit 11efebf

Browse files
committed
initial commit
0 parents  commit 11efebf

65 files changed

Lines changed: 12155 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
ij_typescript_use_double_quotes = false
14+
15+
[*.md]
16+
max_line_length = off
17+
trim_trailing_whitespace = false

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+
# Compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/bazel-out
8+
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# IDEs and editors
15+
.idea/
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
!.vscode/mcp.json
30+
.history/*
31+
32+
# Miscellaneous
33+
/.angular/cache
34+
.sass-cache/
35+
/connect.lock
36+
/coverage
37+
/libpeerconnection.log
38+
testem.log
39+
/typings
40+
__screenshots__/
41+
42+
# System files
43+
.DS_Store
44+
Thumbs.db

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Angular Gantt Public Examples
2+
3+
[![dhtmlx.com](https://img.shields.io/badge/made%20by-DHTMLX-blue)](https://dhtmlx.com/)
4+
5+
> Standalone public showcase demos for the [DHTMLX Angular Gantt](https://dhtmlx.com/docs/products/dhtmlxGantt-for-Angular/) wrapper.
6+
7+
- Documentation: https://github.com/DHTMLX/gantt-docs/tree/wrappers/docs/integrations/angular
8+
- Repository: https://github.com/DHTMLX/angular-gantt-examples
9+
10+
## How to start
11+
12+
```bash
13+
npm install
14+
npm start
15+
```
16+
17+
The app starts locally with the public trial wrapper package `@dhtmlx/trial-angular-gantt` pinned to `^9.1.4-beta1`.
18+
19+
## Build for production
20+
21+
```bash
22+
npm run build -- --base-href ./
23+
```
24+
25+
## Notes
26+
27+
- The application source code in this repo is published as an example project.
28+
- `@dhtmlx/trial-angular-gantt` is a commercial trial package. Use it under a valid evaluation or commercial agreement.
29+
30+
## Useful links
31+
32+
33+
- Integration docs: https://github.com/DHTMLX/gantt-docs/tree/wrappers/docs/integrations/angular
34+
- Support forum: https://forum.dhtmlx.com/c/gantt
35+

angular.json

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"cli": {
5+
"packageManager": "npm",
6+
"analytics": false
7+
},
8+
"newProjectRoot": "projects",
9+
"projects": {
10+
"samples-public": {
11+
"projectType": "application",
12+
"schematics": {},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "app",
16+
"architect": {
17+
"build": {
18+
"builder": "@angular/build:application",
19+
"options": {
20+
"browser": "src/main.ts",
21+
"tsConfig": "tsconfig.app.json",
22+
"assets": [
23+
{
24+
"glob": "**/*",
25+
"input": "public"
26+
}
27+
],
28+
"styles": [
29+
"src/styles.css"
30+
]
31+
},
32+
"configurations": {
33+
"production": {
34+
"budgets": [
35+
{
36+
"type": "initial",
37+
"maximumWarning": "5MB",
38+
"maximumError": "10MB"
39+
},
40+
{
41+
"type": "anyComponentStyle",
42+
"maximumWarning": "256kB",
43+
"maximumError": "512kB"
44+
}
45+
],
46+
"outputHashing": "all"
47+
},
48+
"development": {
49+
"optimization": false,
50+
"extractLicenses": false,
51+
"sourceMap": true
52+
}
53+
},
54+
"defaultConfiguration": "production"
55+
},
56+
"serve": {
57+
"builder": "@angular/build:dev-server",
58+
"configurations": {
59+
"production": {
60+
"buildTarget": "samples-public:build:production"
61+
},
62+
"development": {
63+
"buildTarget": "samples-public:build:development"
64+
}
65+
},
66+
"options": {
67+
"prebundle": {
68+
"exclude": ["@dhtmlx/trial-angular-gantt"]
69+
}
70+
},
71+
"defaultConfiguration": "development"
72+
},
73+
"test": {
74+
"builder": "@angular/build:unit-test"
75+
}
76+
}
77+
}
78+
}
79+
}

0 commit comments

Comments
 (0)