@ea-controls/mat-table-extensions 0.0.0 → 0.0.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 +2 -0
- package/fesm2022/ea-controls-mat-table-extensions.mjs +146 -0
- package/fesm2022/ea-controls-mat-table-extensions.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/cell.d.ts +18 -0
- package/{projects/mat-table-extensions/src/lib/index.ts → lib/index.d.ts} +3 -3
- package/lib/module.d.ts +9 -0
- package/lib/row.d.ts +16 -0
- package/package.json +30 -35
- package/public-api.d.ts +1 -0
- package/.editorconfig +0 -17
- package/.vscode/extensions.json +0 -4
- package/.vscode/launch.json +0 -20
- package/.vscode/tasks.json +0 -42
- package/angular.json +0 -137
- package/projects/mat-table-extensions/README.md +0 -63
- package/projects/mat-table-extensions/ng-package.json +0 -7
- package/projects/mat-table-extensions/package.json +0 -24
- package/projects/mat-table-extensions/src/lib/cell.ts +0 -58
- package/projects/mat-table-extensions/src/lib/module.ts +0 -21
- package/projects/mat-table-extensions/src/lib/row.ts +0 -38
- package/projects/mat-table-extensions/src/public-api.ts +0 -6
- package/projects/mat-table-extensions/tsconfig.lib.json +0 -15
- package/projects/mat-table-extensions/tsconfig.lib.prod.json +0 -11
- package/projects/mat-table-extensions/tsconfig.spec.json +0 -15
- package/projects/mat-table-extensions-examples/public/favicon.ico +0 -0
- package/projects/mat-table-extensions-examples/src/app/app.component.html +0 -6
- package/projects/mat-table-extensions-examples/src/app/app.component.scss +0 -29
- package/projects/mat-table-extensions-examples/src/app/app.component.spec.ts +0 -29
- package/projects/mat-table-extensions-examples/src/app/app.component.ts +0 -14
- package/projects/mat-table-extensions-examples/src/app/app.config.ts +0 -9
- package/projects/mat-table-extensions-examples/src/app/app.routes.ts +0 -9
- package/projects/mat-table-extensions-examples/src/app/basic/basic.component.html +0 -66
- package/projects/mat-table-extensions-examples/src/app/basic/basic.component.scss +0 -0
- package/projects/mat-table-extensions-examples/src/app/basic/basic.component.spec.ts +0 -23
- package/projects/mat-table-extensions-examples/src/app/basic/basic.component.ts +0 -33
- package/projects/mat-table-extensions-examples/src/app/sticky/sticky.component.html +0 -83
- package/projects/mat-table-extensions-examples/src/app/sticky/sticky.component.scss +0 -0
- package/projects/mat-table-extensions-examples/src/app/sticky/sticky.component.spec.ts +0 -23
- package/projects/mat-table-extensions-examples/src/app/sticky/sticky.component.ts +0 -57
- package/projects/mat-table-extensions-examples/src/index.html +0 -15
- package/projects/mat-table-extensions-examples/src/main.ts +0 -6
- package/projects/mat-table-extensions-examples/src/styles.scss +0 -4
- package/projects/mat-table-extensions-examples/tsconfig.app.json +0 -15
- package/projects/mat-table-extensions-examples/tsconfig.spec.json +0 -15
- package/tsconfig.json +0 -35
package/tsconfig.json
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
2
|
-
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
3
|
-
{
|
4
|
-
"compileOnSave": false,
|
5
|
-
"compilerOptions": {
|
6
|
-
"outDir": "./dist/out-tsc",
|
7
|
-
"strict": true,
|
8
|
-
"noImplicitOverride": true,
|
9
|
-
"noPropertyAccessFromIndexSignature": true,
|
10
|
-
"paths": {
|
11
|
-
"mat-table-extensions": [
|
12
|
-
"./dist/mat-table-extensions"
|
13
|
-
],
|
14
|
-
"@ea-controls/mat-table-extensions": [
|
15
|
-
"./projects/mat-table-extensions/src/public-api"
|
16
|
-
]
|
17
|
-
},
|
18
|
-
"noImplicitReturns": true,
|
19
|
-
"noFallthroughCasesInSwitch": true,
|
20
|
-
"skipLibCheck": true,
|
21
|
-
"isolatedModules": true,
|
22
|
-
"esModuleInterop": true,
|
23
|
-
"experimentalDecorators": true,
|
24
|
-
"moduleResolution": "bundler",
|
25
|
-
"importHelpers": true,
|
26
|
-
"target": "ES2022",
|
27
|
-
"module": "ES2022"
|
28
|
-
},
|
29
|
-
"angularCompilerOptions": {
|
30
|
-
"enableI18nLegacyMessageIdFormat": false,
|
31
|
-
"strictInjectionParameters": true,
|
32
|
-
"strictInputAccessModifiers": true,
|
33
|
-
"strictTemplates": true
|
34
|
-
}
|
35
|
-
}
|