mat-table-ext 0.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.
Files changed (65) hide show
  1. package/.editorconfig +16 -0
  2. package/.vscode/extensions.json +4 -0
  3. package/.vscode/launch.json +20 -0
  4. package/.vscode/tasks.json +42 -0
  5. package/README.md +27 -0
  6. package/angular.json +150 -0
  7. package/package.json +45 -0
  8. package/projects/mat-table-ext/.browserslistrc +16 -0
  9. package/projects/mat-table-ext/README.md +24 -0
  10. package/projects/mat-table-ext/assets/pinIcon.svg +1 -0
  11. package/projects/mat-table-ext/assets/pinLeft.svg +11 -0
  12. package/projects/mat-table-ext/assets/pinNone.svg +5 -0
  13. package/projects/mat-table-ext/assets/pinRight.svg +11 -0
  14. package/projects/mat-table-ext/assets/pinned.svg +2 -0
  15. package/projects/mat-table-ext/karma.conf.js +44 -0
  16. package/projects/mat-table-ext/ng-package.json +9 -0
  17. package/projects/mat-table-ext/package.json +34 -0
  18. package/projects/mat-table-ext/src/lib/components/column-pinning/column-pinning.component.html +7 -0
  19. package/projects/mat-table-ext/src/lib/components/column-pinning/column-pinning.component.scss +9 -0
  20. package/projects/mat-table-ext/src/lib/components/column-pinning/column-pinning.component.spec.ts +23 -0
  21. package/projects/mat-table-ext/src/lib/components/column-pinning/column-pinning.component.ts +48 -0
  22. package/projects/mat-table-ext/src/lib/components/editing/editing.component.html +55 -0
  23. package/projects/mat-table-ext/src/lib/components/editing/editing.component.scss +19 -0
  24. package/projects/mat-table-ext/src/lib/components/editing/editing.component.spec.ts +23 -0
  25. package/projects/mat-table-ext/src/lib/components/editing/editing.component.ts +110 -0
  26. package/projects/mat-table-ext/src/lib/components/filter-columns-component/filter-columns-component.component.html +26 -0
  27. package/projects/mat-table-ext/src/lib/components/filter-columns-component/filter-columns-component.component.scss +0 -0
  28. package/projects/mat-table-ext/src/lib/components/filter-columns-component/filter-columns-component.component.spec.ts +23 -0
  29. package/projects/mat-table-ext/src/lib/components/filter-columns-component/filter-columns-component.component.ts +54 -0
  30. package/projects/mat-table-ext/src/lib/directives/resize-column.directive.ts +103 -0
  31. package/projects/mat-table-ext/src/lib/mat-table-ext.component.html +285 -0
  32. package/projects/mat-table-ext/src/lib/mat-table-ext.component.spec.ts +25 -0
  33. package/projects/mat-table-ext/src/lib/mat-table-ext.component.ts +985 -0
  34. package/projects/mat-table-ext/src/lib/mat-table-ext.module.ts +127 -0
  35. package/projects/mat-table-ext/src/lib/mat-table-ext.scss +189 -0
  36. package/projects/mat-table-ext/src/lib/mat-table-ext.service.spec.ts +16 -0
  37. package/projects/mat-table-ext/src/lib/mat-table-ext.service.ts +12 -0
  38. package/projects/mat-table-ext/src/lib/models/tableExtModels.ts +85 -0
  39. package/projects/mat-table-ext/src/public-api.ts +11 -0
  40. package/projects/mat-table-ext/src/test.ts +27 -0
  41. package/projects/mat-table-ext/tsconfig.lib.json +15 -0
  42. package/projects/mat-table-ext/tsconfig.lib.prod.json +10 -0
  43. package/projects/mat-table-ext/tsconfig.spec.json +17 -0
  44. package/projects/mat-table-ext-example/.browserslistrc +16 -0
  45. package/projects/mat-table-ext-example/karma.conf.js +44 -0
  46. package/projects/mat-table-ext-example/src/app/app.component.html +577 -0
  47. package/projects/mat-table-ext-example/src/app/app.component.scss +0 -0
  48. package/projects/mat-table-ext-example/src/app/app.component.spec.ts +31 -0
  49. package/projects/mat-table-ext-example/src/app/app.component.ts +173 -0
  50. package/projects/mat-table-ext-example/src/app/app.module.ts +40 -0
  51. package/projects/mat-table-ext-example/src/app/service/custom-table.service.spec.ts +16 -0
  52. package/projects/mat-table-ext-example/src/app/service/custom-table.service.ts +18 -0
  53. package/projects/mat-table-ext-example/src/assets/.gitkeep +0 -0
  54. package/projects/mat-table-ext-example/src/assets/data.json +100003 -0
  55. package/projects/mat-table-ext-example/src/environments/environment.prod.ts +3 -0
  56. package/projects/mat-table-ext-example/src/environments/environment.ts +16 -0
  57. package/projects/mat-table-ext-example/src/favicon.ico +0 -0
  58. package/projects/mat-table-ext-example/src/index.html +14 -0
  59. package/projects/mat-table-ext-example/src/main.ts +12 -0
  60. package/projects/mat-table-ext-example/src/polyfills.ts +53 -0
  61. package/projects/mat-table-ext-example/src/styles.scss +1 -0
  62. package/projects/mat-table-ext-example/src/test.ts +26 -0
  63. package/projects/mat-table-ext-example/tsconfig.app.json +15 -0
  64. package/projects/mat-table-ext-example/tsconfig.spec.json +18 -0
  65. package/tsconfig.json +38 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.