Initial commit: timeline-elements-demo app

Interactive Angular 19 demo for @sda/timeline-elements-ui with
vertical/horizontal timelines, Gantt charts, activity feeds,
audit trails, changelogs, and dark mode toggle.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Giuliano Silvestro
2026-02-13 21:58:40 +10:00
commit 9a683d5c38
18 changed files with 14947 additions and 0 deletions

32
tsconfig.json Normal file
View File

@@ -0,0 +1,32 @@
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "dom"],
"useDefineForClassFields": false,
"paths": {
"@sda/timeline-elements-ui": ["../timeline-elements-ui/src/index.ts"],
"@sda/base-ui": ["../../sda-frontend/libs/base-ui/src/index.ts"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}