@fatcore/gantt-lite 1.0.0
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/.editorconfig +16 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +20 -0
- package/.vscode/tasks.json +42 -0
- package/README.md +27 -0
- package/angular.json +165 -0
- package/dist17/gantt-lite/README.md +24 -0
- package/dist17/gantt-lite/esm2022/gantt-lite.mjs +5 -0
- package/dist17/gantt-lite/esm2022/gantt-lite.module.mjs +18 -0
- package/dist17/gantt-lite/esm2022/lib/gantt-lite-base.mjs +290 -0
- package/dist17/gantt-lite/esm2022/lib/gantt-lite.component.mjs +359 -0
- package/dist17/gantt-lite/esm2022/lib/gantt-lite.helper.mjs +107 -0
- package/dist17/gantt-lite/esm2022/lib/gantt-lite.model.mjs +2 -0
- package/dist17/gantt-lite/esm2022/public-api.mjs +3 -0
- package/dist17/gantt-lite/fesm2022/gantt-lite.mjs +774 -0
- package/dist17/gantt-lite/fesm2022/gantt-lite.mjs.map +1 -0
- package/dist17/gantt-lite/gantt-lite.module.d.ts +8 -0
- package/dist17/gantt-lite/index.d.ts +5 -0
- package/dist17/gantt-lite/lib/gantt-lite-base.d.ts +50 -0
- package/dist17/gantt-lite/lib/gantt-lite.component.d.ts +55 -0
- package/dist17/gantt-lite/lib/gantt-lite.helper.d.ts +20 -0
- package/dist17/gantt-lite/lib/gantt-lite.model.d.ts +47 -0
- package/dist17/gantt-lite/public-api.d.ts +2 -0
- package/dist18/gantt-lite/README.md +24 -0
- package/dist18/gantt-lite/esm2022/gantt-lite.mjs +5 -0
- package/dist18/gantt-lite/esm2022/gantt-lite.module.mjs +18 -0
- package/dist18/gantt-lite/esm2022/lib/gantt-lite-base.mjs +290 -0
- package/dist18/gantt-lite/esm2022/lib/gantt-lite.component.mjs +359 -0
- package/dist18/gantt-lite/esm2022/lib/gantt-lite.helper.mjs +107 -0
- package/dist18/gantt-lite/esm2022/lib/gantt-lite.model.mjs +2 -0
- package/dist18/gantt-lite/esm2022/public-api.mjs +3 -0
- package/dist18/gantt-lite/fesm2022/gantt-lite.mjs +774 -0
- package/dist18/gantt-lite/fesm2022/gantt-lite.mjs.map +1 -0
- package/dist18/gantt-lite/gantt-lite.module.d.ts +8 -0
- package/dist18/gantt-lite/index.d.ts +5 -0
- package/dist18/gantt-lite/lib/gantt-lite-base.d.ts +50 -0
- package/dist18/gantt-lite/lib/gantt-lite.component.d.ts +55 -0
- package/dist18/gantt-lite/lib/gantt-lite.helper.d.ts +20 -0
- package/dist18/gantt-lite/lib/gantt-lite.model.d.ts +47 -0
- package/dist18/gantt-lite/public-api.d.ts +2 -0
- package/dist19/gantt-lite/README.md +24 -0
- package/dist19/gantt-lite/fesm2022/gantt-lite.mjs +774 -0
- package/dist19/gantt-lite/fesm2022/gantt-lite.mjs.map +1 -0
- package/dist19/gantt-lite/gantt-lite.module.d.ts +8 -0
- package/dist19/gantt-lite/index.d.ts +5 -0
- package/dist19/gantt-lite/lib/gantt-lite-base.d.ts +50 -0
- package/dist19/gantt-lite/lib/gantt-lite.component.d.ts +55 -0
- package/dist19/gantt-lite/lib/gantt-lite.helper.d.ts +20 -0
- package/dist19/gantt-lite/lib/gantt-lite.model.d.ts +47 -0
- package/dist19/gantt-lite/public-api.d.ts +2 -0
- package/dist20/gantt-lite/README.md +24 -0
- package/dist20/gantt-lite/fesm2022/gantt-lite.mjs +774 -0
- package/dist20/gantt-lite/fesm2022/gantt-lite.mjs.map +1 -0
- package/dist20/gantt-lite/index.d.ts +159 -0
- package/my-workspace-0.0.0.tgz +0 -0
- package/package.json +45 -0
- package/projects/gantt-lite/README.md +24 -0
- package/projects/gantt-lite/ng-package.json +7 -0
- package/projects/gantt-lite/package.json +10 -0
- package/projects/gantt-lite/src/gantt-lite.module.ts +10 -0
- package/projects/gantt-lite/src/lib/gantt-lite-base.ts +300 -0
- package/projects/gantt-lite/src/lib/gantt-lite.component.html +128 -0
- package/projects/gantt-lite/src/lib/gantt-lite.component.scss +323 -0
- package/projects/gantt-lite/src/lib/gantt-lite.component.ts +391 -0
- package/projects/gantt-lite/src/lib/gantt-lite.helper.ts +124 -0
- package/projects/gantt-lite/src/lib/gantt-lite.model.ts +56 -0
- package/projects/gantt-lite/src/public-api.ts +5 -0
- package/projects/gantt-lite/tsconfig.lib.json +14 -0
- package/projects/gantt-lite/tsconfig.lib.prod.json +10 -0
- package/projects/gantt-lite/tsconfig.spec.json +14 -0
- package/projects/my-app/server.ts +56 -0
- package/projects/my-app/src/app/app.component.html +336 -0
- package/projects/my-app/src/app/app.component.scss +0 -0
- package/projects/my-app/src/app/app.component.spec.ts +29 -0
- package/projects/my-app/src/app/app.component.ts +13 -0
- package/projects/my-app/src/app/app.config.server.ts +11 -0
- package/projects/my-app/src/app/app.config.ts +9 -0
- package/projects/my-app/src/app/app.routes.ts +3 -0
- package/projects/my-app/src/assets/.gitkeep +0 -0
- package/projects/my-app/src/favicon.ico +0 -0
- package/projects/my-app/src/index.html +13 -0
- package/projects/my-app/src/main.server.ts +7 -0
- package/projects/my-app/src/main.ts +6 -0
- package/projects/my-app/src/styles.scss +1 -0
- package/projects/my-app/tsconfig.app.json +18 -0
- package/projects/my-app/tsconfig.spec.json +14 -0
- package/tsconfig.json +37 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { provideServerRendering } from '@angular/ssr';
|
|
2
|
+
import { mergeApplicationConfig, ApplicationConfig } from '@angular/core';
|
|
3
|
+
import { appConfig } from './app.config';
|
|
4
|
+
|
|
5
|
+
const serverConfig: ApplicationConfig = {
|
|
6
|
+
providers: [
|
|
7
|
+
provideServerRendering()
|
|
8
|
+
]
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const config = mergeApplicationConfig(appConfig, serverConfig);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ApplicationConfig } from '@angular/core';
|
|
2
|
+
import { provideRouter } from '@angular/router';
|
|
3
|
+
|
|
4
|
+
import { routes } from './app.routes';
|
|
5
|
+
import { provideClientHydration } from '@angular/platform-browser';
|
|
6
|
+
|
|
7
|
+
export const appConfig: ApplicationConfig = {
|
|
8
|
+
providers: [provideRouter(routes), provideClientHydration()]
|
|
9
|
+
};
|
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>MyApp</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<app-root></app-root>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
|
|
2
|
+
import { AppComponent } from './app/app.component';
|
|
3
|
+
import { config } from './app/app.config.server';
|
|
4
|
+
|
|
5
|
+
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);
|
|
6
|
+
|
|
7
|
+
export default bootstrap;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* You can add global styles to this file, and also import other style files */
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"extends": "../../tsconfig.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"outDir": "../../out-tsc/app",
|
|
6
|
+
"types": [
|
|
7
|
+
"node"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"src/main.ts",
|
|
12
|
+
"src/main.server.ts",
|
|
13
|
+
"server.ts"
|
|
14
|
+
],
|
|
15
|
+
"include": [
|
|
16
|
+
"src/**/*.d.ts"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"extends": "../../tsconfig.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"outDir": "../../out-tsc/spec",
|
|
6
|
+
"types": [
|
|
7
|
+
"jasmine"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"src/**/*.spec.ts",
|
|
12
|
+
"src/**/*.d.ts"
|
|
13
|
+
]
|
|
14
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"compileOnSave": false,
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"outDir": "./dist/out-tsc",
|
|
6
|
+
"strict": true,
|
|
7
|
+
"noImplicitOverride": true,
|
|
8
|
+
"paths": {
|
|
9
|
+
"gantt-lite": [
|
|
10
|
+
"./dist/gantt-lite"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
14
|
+
"noImplicitReturns": true,
|
|
15
|
+
"noFallthroughCasesInSwitch": true,
|
|
16
|
+
"skipLibCheck": true,
|
|
17
|
+
"esModuleInterop": true,
|
|
18
|
+
"sourceMap": true,
|
|
19
|
+
"declaration": false,
|
|
20
|
+
"experimentalDecorators": true,
|
|
21
|
+
"moduleResolution": "bundler",
|
|
22
|
+
"importHelpers": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"module": "ES2022",
|
|
25
|
+
"useDefineForClassFields": false,
|
|
26
|
+
"lib": [
|
|
27
|
+
"ES2022",
|
|
28
|
+
"dom"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"angularCompilerOptions": {
|
|
32
|
+
"enableI18nLegacyMessageIdFormat": false,
|
|
33
|
+
"strictInjectionParameters": true,
|
|
34
|
+
"strictInputAccessModifiers": true,
|
|
35
|
+
"strictTemplates": true
|
|
36
|
+
}
|
|
37
|
+
}
|