@paperless/angular 0.1.0-alpha.21 → 0.1.0-alpha.212

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 (93) hide show
  1. package/README.md +9 -1
  2. package/esm2020/lib/animations/index.mjs +2 -0
  3. package/esm2020/lib/animations/slide.mjs +11 -0
  4. package/esm2020/lib/base/index.mjs +3 -0
  5. package/esm2020/lib/base/upload.component.mjs +57 -0
  6. package/esm2020/lib/base/value-accessor.mjs +42 -0
  7. package/esm2020/lib/directives/index.mjs +12 -0
  8. package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
  9. package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
  10. package/esm2020/lib/directives/p-select.directive.mjs +38 -0
  11. package/esm2020/lib/modules/index.mjs +6 -0
  12. package/esm2020/lib/modules/table/base/form.component.mjs +105 -0
  13. package/esm2020/lib/modules/table/base/index.mjs +3 -0
  14. package/esm2020/lib/modules/table/base/table.component.mjs +162 -0
  15. package/esm2020/lib/modules/table/components/index.mjs +8 -0
  16. package/esm2020/lib/modules/table/components/table/constants.mjs +3 -0
  17. package/esm2020/lib/modules/table/components/table/table.component.mjs +544 -0
  18. package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +167 -0
  19. package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +37 -0
  20. package/esm2020/lib/modules/table/directives/index.mjs +15 -0
  21. package/esm2020/lib/modules/table/directives/p-table-footer.directive.mjs +52 -0
  22. package/esm2020/lib/modules/table/directives/p-table-header.directive.mjs +60 -0
  23. package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +88 -0
  24. package/esm2020/lib/modules/table/directives/p-table.directive.mjs +78 -0
  25. package/esm2020/lib/modules/table/index.mjs +5 -0
  26. package/esm2020/lib/modules/table/table.module.mjs +27 -0
  27. package/esm2020/lib/modules/toast/components/index.mjs +4 -0
  28. package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +35 -0
  29. package/esm2020/lib/modules/toast/directives/index.mjs +4 -0
  30. package/esm2020/lib/modules/toast/directives/toast.directive.mjs +44 -0
  31. package/esm2020/lib/modules/toast/index.mjs +6 -0
  32. package/esm2020/lib/modules/toast/services/index.mjs +4 -0
  33. package/esm2020/lib/modules/toast/services/toast.service.mjs +47 -0
  34. package/esm2020/lib/modules/toast/toast.module.mjs +22 -0
  35. package/esm2020/lib/modules/toast/types.mjs +10 -0
  36. package/esm2020/lib/paperless.module.mjs +29 -9
  37. package/esm2020/lib/pipes/currency.pipe.mjs +20 -0
  38. package/esm2020/lib/pipes/date.pipe.mjs +20 -0
  39. package/esm2020/lib/pipes/index.mjs +8 -0
  40. package/esm2020/lib/pipes/safe.pipe.mjs +33 -0
  41. package/esm2020/lib/stencil/components.mjs +976 -70
  42. package/esm2020/lib/stencil/index.mjs +37 -1
  43. package/esm2020/lib/stencil.module.mjs +17 -0
  44. package/esm2020/public-api.mjs +6 -1
  45. package/fesm2015/paperless-angular.mjs +2733 -116
  46. package/fesm2015/paperless-angular.mjs.map +1 -1
  47. package/fesm2020/paperless-angular.mjs +2766 -133
  48. package/fesm2020/paperless-angular.mjs.map +1 -1
  49. package/{paperless-angular.d.ts → index.d.ts} +0 -0
  50. package/lib/animations/index.d.ts +1 -0
  51. package/lib/animations/slide.d.ts +1 -0
  52. package/lib/base/index.d.ts +2 -0
  53. package/lib/base/upload.component.d.ts +16 -0
  54. package/lib/base/value-accessor.d.ts +17 -0
  55. package/lib/directives/index.d.ts +5 -0
  56. package/lib/directives/p-page-size-select.directive.d.ts +10 -0
  57. package/lib/directives/p-pagination.directive.d.ts +10 -0
  58. package/lib/directives/p-select.directive.d.ts +9 -0
  59. package/lib/modules/index.d.ts +4 -0
  60. package/lib/modules/table/base/form.component.d.ts +15 -0
  61. package/lib/modules/table/base/index.d.ts +2 -0
  62. package/lib/modules/table/base/table.component.d.ts +45 -0
  63. package/lib/modules/table/components/index.d.ts +7 -0
  64. package/lib/modules/table/components/table/constants.d.ts +2 -0
  65. package/lib/modules/table/components/table/table.component.d.ts +190 -0
  66. package/lib/modules/table/components/table-cell/table-cell.component.d.ts +45 -0
  67. package/lib/modules/table/components/table-column/table-column.component.d.ts +17 -0
  68. package/lib/modules/table/directives/index.d.ts +9 -0
  69. package/lib/modules/table/directives/p-table-footer.directive.d.ts +11 -0
  70. package/lib/modules/table/directives/p-table-header.directive.d.ts +17 -0
  71. package/lib/modules/table/directives/p-table-ngx.directive.d.ts +24 -0
  72. package/lib/modules/table/directives/p-table.directive.d.ts +22 -0
  73. package/lib/modules/table/index.d.ts +4 -0
  74. package/lib/modules/table/table.module.d.ts +15 -0
  75. package/lib/modules/toast/components/index.d.ts +3 -0
  76. package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +17 -0
  77. package/lib/modules/toast/directives/index.d.ts +3 -0
  78. package/lib/modules/toast/directives/toast.directive.d.ts +13 -0
  79. package/lib/modules/toast/index.d.ts +5 -0
  80. package/lib/modules/toast/services/index.d.ts +3 -0
  81. package/lib/modules/toast/services/toast.service.d.ts +12 -0
  82. package/lib/modules/toast/toast.module.d.ts +10 -0
  83. package/lib/modules/toast/types.d.ts +26 -0
  84. package/lib/paperless.module.d.ts +13 -2
  85. package/lib/pipes/currency.pipe.d.ts +10 -0
  86. package/lib/pipes/date.pipe.d.ts +10 -0
  87. package/lib/pipes/index.d.ts +7 -0
  88. package/lib/pipes/safe.pipe.d.ts +10 -0
  89. package/lib/stencil/components.d.ts +404 -15
  90. package/lib/stencil/index.d.ts +1 -1
  91. package/lib/stencil.module.d.ts +7 -0
  92. package/package.json +7 -6
  93. package/public-api.d.ts +5 -0
@@ -0,0 +1,8 @@
1
+ export * from './table-cell/table-cell.component';
2
+ export * from './table-column/table-column.component';
3
+ export * from './table/table.component';
4
+ import { TableCell } from './table-cell/table-cell.component';
5
+ import { TableColumn } from './table-column/table-column.component';
6
+ import { Table } from './table/table.component';
7
+ export const TABLE_COMPONENTS = [Table, TableCell, TableColumn];
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9tb2R1bGVzL3RhYmxlL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMseUJBQXlCLENBQUM7QUFFeEMsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBQzlELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUNwRSxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFaEQsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQUcsQ0FBQyxLQUFLLEVBQUUsU0FBUyxFQUFFLFdBQVcsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi90YWJsZS1jZWxsL3RhYmxlLWNlbGwuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtY29sdW1uL3RhYmxlLWNvbHVtbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWJsZS90YWJsZS5jb21wb25lbnQnO1xuXG5pbXBvcnQgeyBUYWJsZUNlbGwgfSBmcm9tICcuL3RhYmxlLWNlbGwvdGFibGUtY2VsbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGFibGVDb2x1bW4gfSBmcm9tICcuL3RhYmxlLWNvbHVtbi90YWJsZS1jb2x1bW4uY29tcG9uZW50JztcbmltcG9ydCB7IFRhYmxlIH0gZnJvbSAnLi90YWJsZS90YWJsZS5jb21wb25lbnQnO1xuXG5leHBvcnQgY29uc3QgVEFCTEVfQ09NUE9ORU5UUyA9IFtUYWJsZSwgVGFibGVDZWxsLCBUYWJsZUNvbHVtbl07XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export const defaultSize = 12;
2
+ export const defaultSizeOptions = [12, 24, 68, 136];
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcGFwZXJsZXNzL3NyYy9saWIvbW9kdWxlcy90YWJsZS9jb21wb25lbnRzL3RhYmxlL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxXQUFXLEdBQUcsRUFBRSxDQUFDO0FBQzlCLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgZGVmYXVsdFNpemUgPSAxMjtcbmV4cG9ydCBjb25zdCBkZWZhdWx0U2l6ZU9wdGlvbnMgPSBbMTIsIDI0LCA2OCwgMTM2XTtcbiJdfQ==