ng-firebase-table-kxp 1.0.0 → 1.0.2

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.
Files changed (38) hide show
  1. package/README.md +500 -381
  2. package/esm2020/lib/components/table/table.component.mjs +776 -0
  3. package/esm2020/lib/firebase-table-kxp-lib.component.mjs +19 -0
  4. package/esm2020/lib/firebase-table-kxp-lib.module.mjs +74 -0
  5. package/esm2020/lib/firebase-table-kxp-lib.service.mjs +14 -0
  6. package/esm2020/lib/services/table.service.mjs +908 -0
  7. package/esm2020/lib/types/Table.mjs +2 -0
  8. package/esm2020/ng-firebase-table-kxp.mjs +5 -0
  9. package/esm2020/public-api.mjs +15 -0
  10. package/fesm2015/ng-firebase-table-kxp.mjs +1811 -0
  11. package/fesm2015/ng-firebase-table-kxp.mjs.map +1 -0
  12. package/fesm2020/ng-firebase-table-kxp.mjs +1784 -0
  13. package/fesm2020/ng-firebase-table-kxp.mjs.map +1 -0
  14. package/index.d.ts +5 -0
  15. package/lib/components/table/table.component.d.ts +111 -0
  16. package/lib/firebase-table-kxp-lib.component.d.ts +5 -0
  17. package/lib/firebase-table-kxp-lib.module.d.ts +21 -0
  18. package/lib/firebase-table-kxp-lib.service.d.ts +6 -0
  19. package/lib/services/table.service.d.ts +70 -0
  20. package/{src/lib/types/Table.ts → lib/types/Table.d.ts} +28 -31
  21. package/package.json +23 -3
  22. package/{src/public-api.ts → public-api.d.ts} +0 -13
  23. package/CHANGELOG.md +0 -88
  24. package/ng-package.json +0 -7
  25. package/src/lib/components/table/table.component.html +0 -555
  26. package/src/lib/components/table/table.component.scss +0 -22
  27. package/src/lib/components/table/table.component.spec.ts +0 -24
  28. package/src/lib/components/table/table.component.ts +0 -917
  29. package/src/lib/firebase-table-kxp-lib.component.spec.ts +0 -23
  30. package/src/lib/firebase-table-kxp-lib.component.ts +0 -15
  31. package/src/lib/firebase-table-kxp-lib.module.ts +0 -45
  32. package/src/lib/firebase-table-kxp-lib.service.spec.ts +0 -16
  33. package/src/lib/firebase-table-kxp-lib.service.ts +0 -9
  34. package/src/lib/services/table.service.spec.ts +0 -16
  35. package/src/lib/services/table.service.ts +0 -1235
  36. package/tsconfig.lib.json +0 -14
  37. package/tsconfig.lib.prod.json +0 -10
  38. package/tsconfig.spec.json +0 -14
package/tsconfig.lib.json DELETED
@@ -1,14 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "../../tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "../../../out-tsc/lib",
6
- "declaration": true,
7
- "declarationMap": true,
8
- "inlineSources": true,
9
- "types": []
10
- },
11
- "exclude": [
12
- "**/*.spec.ts"
13
- ]
14
- }
@@ -1,10 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "./tsconfig.lib.json",
4
- "compilerOptions": {
5
- "declarationMap": false
6
- },
7
- "angularCompilerOptions": {
8
- "compilationMode": "partial"
9
- }
10
- }
@@ -1,14 +0,0 @@
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
- "**/*.spec.ts",
12
- "**/*.d.ts"
13
- ]
14
- }