@paperless/angular 0.1.0-alpha.32 → 0.1.0-alpha.320
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/fade.mjs +22 -0
- package/esm2020/lib/animations/index.mjs +3 -0
- package/esm2020/lib/animations/slide.mjs +20 -0
- package/esm2020/lib/base/form.component.mjs +105 -0
- package/esm2020/lib/base/index.mjs +3 -1
- package/esm2020/lib/base/upload.component.mjs +57 -0
- package/esm2020/lib/base/value-accessor.mjs +8 -8
- package/esm2020/lib/directives/index.mjs +15 -4
- package/esm2020/lib/directives/p-datepicker.directive.mjs +37 -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 +37 -0
- package/esm2020/lib/modules/index.mjs +8 -0
- package/esm2020/lib/modules/overlay/index.mjs +4 -0
- package/esm2020/lib/modules/overlay/overlay.module.mjs +38 -0
- package/esm2020/lib/modules/overlay/overlay.ref.mjs +12 -0
- package/esm2020/lib/modules/overlay/services/index.mjs +4 -0
- package/esm2020/lib/modules/overlay/services/overlay.service.mjs +74 -0
- package/esm2020/lib/modules/table/base/index.mjs +2 -0
- package/esm2020/lib/modules/table/base/table.component.mjs +201 -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 +632 -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 +18 -0
- package/esm2020/lib/modules/table/directives/p-table-filter-modal.directive.mjs +13 -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 +121 -0
- package/esm2020/lib/modules/table/directives/p-table.directive.mjs +78 -0
- package/esm2020/lib/modules/table/index.mjs +6 -0
- package/esm2020/lib/modules/table/table.module.mjs +28 -0
- package/esm2020/lib/modules/table/utils.mjs +23 -0
- package/esm2020/lib/modules/toast/components/index.mjs +4 -0
- package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +36 -0
- package/esm2020/lib/modules/toast/directives/index.mjs +4 -0
- package/esm2020/lib/modules/toast/directives/toast.directive.mjs +51 -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 +53 -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 +32 -11
- 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 +1022 -108
- 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 +3150 -219
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +3163 -219
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/{paperless-angular.d.ts → index.d.ts} +0 -0
- package/lib/animations/fade.d.ts +2 -0
- package/lib/animations/index.d.ts +2 -0
- package/lib/animations/slide.d.ts +2 -0
- package/lib/base/form.component.d.ts +15 -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 +6 -6
- package/lib/directives/index.d.ts +6 -3
- package/lib/directives/p-datepicker.directive.d.ts +9 -0
- package/lib/directives/p-page-size-select.directive.d.ts +10 -0
- package/lib/directives/{pagination.directive.d.ts → p-pagination.directive.d.ts} +3 -3
- package/lib/directives/p-select.directive.d.ts +9 -0
- package/lib/modules/index.d.ts +5 -0
- package/lib/modules/overlay/index.d.ts +3 -0
- package/lib/modules/overlay/overlay.module.d.ts +12 -0
- package/lib/modules/overlay/overlay.ref.d.ts +9 -0
- package/lib/modules/overlay/services/index.d.ts +3 -0
- package/lib/modules/overlay/services/overlay.service.d.ts +24 -0
- package/lib/modules/table/base/index.d.ts +1 -0
- package/lib/modules/table/base/table.component.d.ts +58 -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 +222 -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 +11 -0
- package/lib/modules/table/directives/p-table-filter-modal.directive.d.ts +5 -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 +27 -0
- package/lib/modules/table/directives/p-table.directive.d.ts +22 -0
- package/lib/modules/table/index.d.ts +5 -0
- package/lib/modules/table/table.module.d.ts +16 -0
- package/lib/modules/table/utils.d.ts +10 -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 +16 -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 +31 -0
- package/lib/paperless.module.d.ts +15 -3
- 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 +436 -20
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +7 -0
- package/package.json +8 -6
- package/paperless.css +436 -0
- package/public-api.d.ts +5 -0
- package/esm2020/lib/directives/pagination.directive.mjs +0 -42
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
2
|
export const DIRECTIVES = [
|
|
3
|
+
d.PAccordion,
|
|
3
4
|
d.PAvatar,
|
|
5
|
+
d.PAvatarGroup,
|
|
6
|
+
d.PBackdrop,
|
|
4
7
|
d.PButton,
|
|
8
|
+
d.PCalendar,
|
|
9
|
+
d.PCardBody,
|
|
10
|
+
d.PCardContainer,
|
|
11
|
+
d.PCardHeader,
|
|
12
|
+
d.PContentSlider,
|
|
5
13
|
d.PCounter,
|
|
14
|
+
d.PDatepicker,
|
|
6
15
|
d.PDivider,
|
|
16
|
+
d.PDrawer,
|
|
17
|
+
d.PDrawerBody,
|
|
18
|
+
d.PDrawerContainer,
|
|
19
|
+
d.PDrawerHeader,
|
|
7
20
|
d.PDropdown,
|
|
8
21
|
d.PDropdownMenuContainer,
|
|
9
22
|
d.PDropdownMenuItem,
|
|
@@ -11,13 +24,36 @@ export const DIRECTIVES = [
|
|
|
11
24
|
d.PIcon,
|
|
12
25
|
d.PIllustration,
|
|
13
26
|
d.PInfoPanel,
|
|
27
|
+
d.PInputGroup,
|
|
28
|
+
d.PLabel,
|
|
29
|
+
d.PLayout,
|
|
14
30
|
d.PLoader,
|
|
31
|
+
d.PModal,
|
|
32
|
+
d.PModalBody,
|
|
33
|
+
d.PModalContainer,
|
|
34
|
+
d.PModalFooter,
|
|
35
|
+
d.PModalHeader,
|
|
36
|
+
d.PNavbar,
|
|
15
37
|
d.PNavigationItem,
|
|
38
|
+
d.PPageSizeSelect,
|
|
16
39
|
d.PPagination,
|
|
17
40
|
d.PPaginationItem,
|
|
41
|
+
d.PProfile,
|
|
18
42
|
d.PSegmentContainer,
|
|
19
43
|
d.PSegmentItem,
|
|
44
|
+
d.PSelect,
|
|
45
|
+
d.PSliderIndicator,
|
|
20
46
|
d.PStatus,
|
|
47
|
+
d.PStepper,
|
|
48
|
+
d.PStepperItem,
|
|
49
|
+
d.PStepperLine,
|
|
50
|
+
d.PTabGroup,
|
|
51
|
+
d.PTabItem,
|
|
52
|
+
d.PTableContainer,
|
|
53
|
+
d.PTableFooter,
|
|
54
|
+
d.PTableHeader,
|
|
55
|
+
d.PTableRow,
|
|
56
|
+
d.PToast,
|
|
21
57
|
d.PTooltip
|
|
22
58
|
];
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
59
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9zdGVuY2lsL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sS0FBSyxDQUFDLE1BQU0sY0FBYyxDQUFDO0FBRWxDLE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixDQUFDLENBQUMsVUFBVTtJQUNaLENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLFNBQVM7SUFDWCxDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxjQUFjO0lBQ2hCLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLGNBQWM7SUFDaEIsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsV0FBVztJQUNiLENBQUMsQ0FBQyxRQUFRO0lBQ1YsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsV0FBVztJQUNiLENBQUMsQ0FBQyxnQkFBZ0I7SUFDbEIsQ0FBQyxDQUFDLGFBQWE7SUFDZixDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxzQkFBc0I7SUFDeEIsQ0FBQyxDQUFDLGlCQUFpQjtJQUNuQixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxLQUFLO0lBQ1AsQ0FBQyxDQUFDLGFBQWE7SUFDZixDQUFDLENBQUMsVUFBVTtJQUNaLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsVUFBVTtJQUNaLENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLGVBQWU7SUFDakIsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsaUJBQWlCO0lBQ25CLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsZ0JBQWdCO0lBQ2xCLENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFNBQVM7SUFDWCxDQUFDLENBQUMsUUFBUTtJQUNWLENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxNQUFNO0lBQ1IsQ0FBQyxDQUFDLFFBQVE7Q0FDWCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiXG5pbXBvcnQgKiBhcyBkIGZyb20gJy4vY29tcG9uZW50cyc7XG5cbmV4cG9ydCBjb25zdCBESVJFQ1RJVkVTID0gW1xuICBkLlBBY2NvcmRpb24sXG4gIGQuUEF2YXRhcixcbiAgZC5QQXZhdGFyR3JvdXAsXG4gIGQuUEJhY2tkcm9wLFxuICBkLlBCdXR0b24sXG4gIGQuUENhbGVuZGFyLFxuICBkLlBDYXJkQm9keSxcbiAgZC5QQ2FyZENvbnRhaW5lcixcbiAgZC5QQ2FyZEhlYWRlcixcbiAgZC5QQ29udGVudFNsaWRlcixcbiAgZC5QQ291bnRlcixcbiAgZC5QRGF0ZXBpY2tlcixcbiAgZC5QRGl2aWRlcixcbiAgZC5QRHJhd2VyLFxuICBkLlBEcmF3ZXJCb2R5LFxuICBkLlBEcmF3ZXJDb250YWluZXIsXG4gIGQuUERyYXdlckhlYWRlcixcbiAgZC5QRHJvcGRvd24sXG4gIGQuUERyb3Bkb3duTWVudUNvbnRhaW5lcixcbiAgZC5QRHJvcGRvd25NZW51SXRlbSxcbiAgZC5QSGVscGVyLFxuICBkLlBJY29uLFxuICBkLlBJbGx1c3RyYXRpb24sXG4gIGQuUEluZm9QYW5lbCxcbiAgZC5QSW5wdXRHcm91cCxcbiAgZC5QTGFiZWwsXG4gIGQuUExheW91dCxcbiAgZC5QTG9hZGVyLFxuICBkLlBNb2RhbCxcbiAgZC5QTW9kYWxCb2R5LFxuICBkLlBNb2RhbENvbnRhaW5lcixcbiAgZC5QTW9kYWxGb290ZXIsXG4gIGQuUE1vZGFsSGVhZGVyLFxuICBkLlBOYXZiYXIsXG4gIGQuUE5hdmlnYXRpb25JdGVtLFxuICBkLlBQYWdlU2l6ZVNlbGVjdCxcbiAgZC5QUGFnaW5hdGlvbixcbiAgZC5QUGFnaW5hdGlvbkl0ZW0sXG4gIGQuUFByb2ZpbGUsXG4gIGQuUFNlZ21lbnRDb250YWluZXIsXG4gIGQuUFNlZ21lbnRJdGVtLFxuICBkLlBTZWxlY3QsXG4gIGQuUFNsaWRlckluZGljYXRvcixcbiAgZC5QU3RhdHVzLFxuICBkLlBTdGVwcGVyLFxuICBkLlBTdGVwcGVySXRlbSxcbiAgZC5QU3RlcHBlckxpbmUsXG4gIGQuUFRhYkdyb3VwLFxuICBkLlBUYWJJdGVtLFxuICBkLlBUYWJsZUNvbnRhaW5lcixcbiAgZC5QVGFibGVGb290ZXIsXG4gIGQuUFRhYmxlSGVhZGVyLFxuICBkLlBUYWJsZVJvdyxcbiAgZC5QVG9hc3QsXG4gIGQuUFRvb2x0aXBcbl07XG4iXX0=
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { DIRECTIVES } from './stencil';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./stencil/components";
|
|
5
|
+
export class StencilModule {
|
|
6
|
+
}
|
|
7
|
+
StencilModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: StencilModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
+
StencilModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: StencilModule, declarations: [i1.PAccordion, i1.PAvatar, i1.PAvatarGroup, i1.PBackdrop, i1.PButton, i1.PCalendar, i1.PCardBody, i1.PCardContainer, i1.PCardHeader, i1.PContentSlider, i1.PCounter, i1.PDatepicker, i1.PDivider, i1.PDrawer, i1.PDrawerBody, i1.PDrawerContainer, i1.PDrawerHeader, i1.PDropdown, i1.PDropdownMenuContainer, i1.PDropdownMenuItem, i1.PHelper, i1.PIcon, i1.PIllustration, i1.PInfoPanel, i1.PInputGroup, i1.PLabel, i1.PLayout, i1.PLoader, i1.PModal, i1.PModalBody, i1.PModalContainer, i1.PModalFooter, i1.PModalHeader, i1.PNavbar, i1.PNavigationItem, i1.PPageSizeSelect, i1.PPagination, i1.PPaginationItem, i1.PProfile, i1.PSegmentContainer, i1.PSegmentItem, i1.PSelect, i1.PSliderIndicator, i1.PStatus, i1.PStepper, i1.PStepperItem, i1.PStepperLine, i1.PTabGroup, i1.PTabItem, i1.PTableContainer, i1.PTableFooter, i1.PTableHeader, i1.PTableRow, i1.PToast, i1.PTooltip], exports: [i1.PAccordion, i1.PAvatar, i1.PAvatarGroup, i1.PBackdrop, i1.PButton, i1.PCalendar, i1.PCardBody, i1.PCardContainer, i1.PCardHeader, i1.PContentSlider, i1.PCounter, i1.PDatepicker, i1.PDivider, i1.PDrawer, i1.PDrawerBody, i1.PDrawerContainer, i1.PDrawerHeader, i1.PDropdown, i1.PDropdownMenuContainer, i1.PDropdownMenuItem, i1.PHelper, i1.PIcon, i1.PIllustration, i1.PInfoPanel, i1.PInputGroup, i1.PLabel, i1.PLayout, i1.PLoader, i1.PModal, i1.PModalBody, i1.PModalContainer, i1.PModalFooter, i1.PModalHeader, i1.PNavbar, i1.PNavigationItem, i1.PPageSizeSelect, i1.PPagination, i1.PPaginationItem, i1.PProfile, i1.PSegmentContainer, i1.PSegmentItem, i1.PSelect, i1.PSliderIndicator, i1.PStatus, i1.PStepper, i1.PStepperItem, i1.PStepperLine, i1.PTabGroup, i1.PTabItem, i1.PTableContainer, i1.PTableFooter, i1.PTableHeader, i1.PTableRow, i1.PToast, i1.PTooltip] });
|
|
9
|
+
StencilModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: StencilModule });
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: StencilModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
declarations: [...DIRECTIVES],
|
|
14
|
+
exports: [...DIRECTIVES],
|
|
15
|
+
}]
|
|
16
|
+
}] });
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlbmNpbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9zdGVuY2lsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxXQUFXLENBQUM7OztBQU12QyxNQUFNLE9BQU8sYUFBYTs7MEdBQWIsYUFBYTsyR0FBYixhQUFhOzJHQUFiLGFBQWE7MkZBQWIsYUFBYTtrQkFKekIsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxHQUFHLFVBQVUsQ0FBQztvQkFDN0IsT0FBTyxFQUFFLENBQUMsR0FBRyxVQUFVLENBQUM7aUJBQzNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERJUkVDVElWRVMgfSBmcm9tICcuL3N0ZW5jaWwnO1xuXG5ATmdNb2R1bGUoe1xuICAgIGRlY2xhcmF0aW9uczogWy4uLkRJUkVDVElWRVNdLFxuICAgIGV4cG9ydHM6IFsuLi5ESVJFQ1RJVkVTXSxcbn0pXG5leHBvcnQgY2xhc3MgU3RlbmNpbE1vZHVsZSB7fVxuIl19
|
package/esm2020/public-api.mjs
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Public API Surface of paperless
|
|
3
3
|
*/
|
|
4
|
+
export * from './lib/animations';
|
|
5
|
+
export * from './lib/base';
|
|
4
6
|
export * from './lib/directives';
|
|
7
|
+
export * from './lib/modules';
|
|
5
8
|
export * from './lib/paperless.module';
|
|
9
|
+
export * from './lib/pipes';
|
|
10
|
+
export * from './lib/stencil.module';
|
|
6
11
|
export * from './lib/stencil/components';
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
12
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3Byb2plY3RzL3BhcGVybGVzcy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgcGFwZXJsZXNzXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9saWIvYW5pbWF0aW9ucyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9iYXNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kdWxlcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9wYXBlcmxlc3MubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3BpcGVzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3N0ZW5jaWwubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3N0ZW5jaWwvY29tcG9uZW50cyc7XG4iXX0=
|