@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.
- package/README.md +9 -1
- package/esm2020/lib/animations/index.mjs +2 -0
- package/esm2020/lib/animations/slide.mjs +11 -0
- package/esm2020/lib/base/index.mjs +3 -0
- package/esm2020/lib/base/upload.component.mjs +57 -0
- package/esm2020/lib/base/value-accessor.mjs +42 -0
- package/esm2020/lib/directives/index.mjs +12 -0
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
- package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
- package/esm2020/lib/directives/p-select.directive.mjs +38 -0
- package/esm2020/lib/modules/index.mjs +6 -0
- package/esm2020/lib/modules/table/base/form.component.mjs +105 -0
- package/esm2020/lib/modules/table/base/index.mjs +3 -0
- package/esm2020/lib/modules/table/base/table.component.mjs +162 -0
- package/esm2020/lib/modules/table/components/index.mjs +8 -0
- package/esm2020/lib/modules/table/components/table/constants.mjs +3 -0
- package/esm2020/lib/modules/table/components/table/table.component.mjs +544 -0
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +167 -0
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +37 -0
- package/esm2020/lib/modules/table/directives/index.mjs +15 -0
- package/esm2020/lib/modules/table/directives/p-table-footer.directive.mjs +52 -0
- package/esm2020/lib/modules/table/directives/p-table-header.directive.mjs +60 -0
- package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +88 -0
- package/esm2020/lib/modules/table/directives/p-table.directive.mjs +78 -0
- package/esm2020/lib/modules/table/index.mjs +5 -0
- package/esm2020/lib/modules/table/table.module.mjs +27 -0
- package/esm2020/lib/modules/toast/components/index.mjs +4 -0
- package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +35 -0
- package/esm2020/lib/modules/toast/directives/index.mjs +4 -0
- package/esm2020/lib/modules/toast/directives/toast.directive.mjs +44 -0
- package/esm2020/lib/modules/toast/index.mjs +6 -0
- package/esm2020/lib/modules/toast/services/index.mjs +4 -0
- package/esm2020/lib/modules/toast/services/toast.service.mjs +47 -0
- package/esm2020/lib/modules/toast/toast.module.mjs +22 -0
- package/esm2020/lib/modules/toast/types.mjs +10 -0
- package/esm2020/lib/paperless.module.mjs +29 -9
- package/esm2020/lib/pipes/currency.pipe.mjs +20 -0
- package/esm2020/lib/pipes/date.pipe.mjs +20 -0
- package/esm2020/lib/pipes/index.mjs +8 -0
- package/esm2020/lib/pipes/safe.pipe.mjs +33 -0
- package/esm2020/lib/stencil/components.mjs +976 -70
- package/esm2020/lib/stencil/index.mjs +37 -1
- package/esm2020/lib/stencil.module.mjs +17 -0
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/paperless-angular.mjs +2733 -116
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +2766 -133
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/{paperless-angular.d.ts → index.d.ts} +0 -0
- package/lib/animations/index.d.ts +1 -0
- package/lib/animations/slide.d.ts +1 -0
- package/lib/base/index.d.ts +2 -0
- package/lib/base/upload.component.d.ts +16 -0
- package/lib/base/value-accessor.d.ts +17 -0
- package/lib/directives/index.d.ts +5 -0
- package/lib/directives/p-page-size-select.directive.d.ts +10 -0
- package/lib/directives/p-pagination.directive.d.ts +10 -0
- package/lib/directives/p-select.directive.d.ts +9 -0
- package/lib/modules/index.d.ts +4 -0
- package/lib/modules/table/base/form.component.d.ts +15 -0
- package/lib/modules/table/base/index.d.ts +2 -0
- package/lib/modules/table/base/table.component.d.ts +45 -0
- package/lib/modules/table/components/index.d.ts +7 -0
- package/lib/modules/table/components/table/constants.d.ts +2 -0
- package/lib/modules/table/components/table/table.component.d.ts +190 -0
- package/lib/modules/table/components/table-cell/table-cell.component.d.ts +45 -0
- package/lib/modules/table/components/table-column/table-column.component.d.ts +17 -0
- package/lib/modules/table/directives/index.d.ts +9 -0
- package/lib/modules/table/directives/p-table-footer.directive.d.ts +11 -0
- package/lib/modules/table/directives/p-table-header.directive.d.ts +17 -0
- package/lib/modules/table/directives/p-table-ngx.directive.d.ts +24 -0
- package/lib/modules/table/directives/p-table.directive.d.ts +22 -0
- package/lib/modules/table/index.d.ts +4 -0
- package/lib/modules/table/table.module.d.ts +15 -0
- package/lib/modules/toast/components/index.d.ts +3 -0
- package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +17 -0
- package/lib/modules/toast/directives/index.d.ts +3 -0
- package/lib/modules/toast/directives/toast.directive.d.ts +13 -0
- package/lib/modules/toast/index.d.ts +5 -0
- package/lib/modules/toast/services/index.d.ts +3 -0
- package/lib/modules/toast/services/toast.service.d.ts +12 -0
- package/lib/modules/toast/toast.module.d.ts +10 -0
- package/lib/modules/toast/types.d.ts +26 -0
- package/lib/paperless.module.d.ts +13 -2
- package/lib/pipes/currency.pipe.d.ts +10 -0
- package/lib/pipes/date.pipe.d.ts +10 -0
- package/lib/pipes/index.d.ts +7 -0
- package/lib/pipes/safe.pipe.d.ts +10 -0
- package/lib/stencil/components.d.ts +404 -15
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +7 -0
- package/package.json +7 -6
- 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==
|