@paperless/angular 0.1.0-alpha.99 → 1.0.1
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 +209 -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 +683 -0
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +212 -0
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +56 -0
- package/esm2020/lib/modules/table/directives/index.mjs +21 -0
- package/esm2020/lib/modules/table/directives/p-table-custom-filter.directive.mjs +13 -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 +29 -0
- package/esm2020/lib/modules/table/utils.mjs +25 -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/angular-component-lib/utils.mjs +6 -8
- package/esm2020/lib/stencil/components.mjs +644 -258
- package/esm2020/lib/stencil/index.mjs +18 -3
- package/esm2020/lib/stencil.module.mjs +17 -0
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/paperless-angular.mjs +2864 -331
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +2882 -331
- package/fesm2020/paperless-angular.mjs.map +1 -1
- 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 +60 -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 +248 -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 +18 -0
- package/lib/modules/table/directives/index.d.ts +12 -0
- package/lib/modules/table/directives/p-table-custom-filter.directive.d.ts +5 -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 +17 -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 +329 -106
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +7 -0
- package/package.json +6 -4
- package/paperless.css +492 -0
- package/public-api.d.ts +5 -0
- package/esm2020/lib/directives/pagination.directive.mjs +0 -42
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
2
|
export const DIRECTIVES = [
|
|
3
3
|
d.PAccordion,
|
|
4
|
+
d.PAttachment,
|
|
4
5
|
d.PAvatar,
|
|
5
6
|
d.PAvatarGroup,
|
|
7
|
+
d.PBackdrop,
|
|
6
8
|
d.PButton,
|
|
9
|
+
d.PCalendar,
|
|
7
10
|
d.PCardBody,
|
|
8
11
|
d.PCardContainer,
|
|
9
12
|
d.PCardHeader,
|
|
10
13
|
d.PContentSlider,
|
|
11
14
|
d.PCounter,
|
|
15
|
+
d.PDatepicker,
|
|
12
16
|
d.PDivider,
|
|
17
|
+
d.PDrawer,
|
|
18
|
+
d.PDrawerBody,
|
|
19
|
+
d.PDrawerContainer,
|
|
20
|
+
d.PDrawerHeader,
|
|
13
21
|
d.PDropdown,
|
|
14
22
|
d.PDropdownMenuContainer,
|
|
15
23
|
d.PDropdownMenuItem,
|
|
@@ -17,22 +25,25 @@ export const DIRECTIVES = [
|
|
|
17
25
|
d.PIcon,
|
|
18
26
|
d.PIllustration,
|
|
19
27
|
d.PInfoPanel,
|
|
28
|
+
d.PInputError,
|
|
20
29
|
d.PInputGroup,
|
|
30
|
+
d.PLabel,
|
|
21
31
|
d.PLayout,
|
|
22
32
|
d.PLoader,
|
|
23
33
|
d.PModal,
|
|
24
|
-
d.PModalBackdrop,
|
|
25
34
|
d.PModalBody,
|
|
26
35
|
d.PModalContainer,
|
|
27
36
|
d.PModalFooter,
|
|
28
37
|
d.PModalHeader,
|
|
29
38
|
d.PNavbar,
|
|
30
39
|
d.PNavigationItem,
|
|
40
|
+
d.PPageSizeSelect,
|
|
31
41
|
d.PPagination,
|
|
32
42
|
d.PPaginationItem,
|
|
33
43
|
d.PProfile,
|
|
34
44
|
d.PSegmentContainer,
|
|
35
45
|
d.PSegmentItem,
|
|
46
|
+
d.PSelect,
|
|
36
47
|
d.PSliderIndicator,
|
|
37
48
|
d.PStatus,
|
|
38
49
|
d.PStepper,
|
|
@@ -40,7 +51,11 @@ export const DIRECTIVES = [
|
|
|
40
51
|
d.PStepperLine,
|
|
41
52
|
d.PTabGroup,
|
|
42
53
|
d.PTabItem,
|
|
43
|
-
d.
|
|
54
|
+
d.PTableContainer,
|
|
55
|
+
d.PTableFooter,
|
|
56
|
+
d.PTableHeader,
|
|
57
|
+
d.PTableRow,
|
|
58
|
+
d.PToast,
|
|
44
59
|
d.PTooltip
|
|
45
60
|
];
|
|
46
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9zdGVuY2lsL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sS0FBSyxDQUFDLE1BQU0sY0FBYyxDQUFDO0FBRWxDLE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixDQUFDLENBQUMsVUFBVTtJQUNaLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxTQUFTO0lBQ1gsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxTQUFTO0lBQ1gsQ0FBQyxDQUFDLGNBQWM7SUFDaEIsQ0FBQyxDQUFDLFdBQVc7SUFDYixDQUFDLENBQUMsY0FBYztJQUNoQixDQUFDLENBQUMsUUFBUTtJQUNWLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLGdCQUFnQjtJQUNsQixDQUFDLENBQUMsYUFBYTtJQUNmLENBQUMsQ0FBQyxTQUFTO0lBQ1gsQ0FBQyxDQUFDLHNCQUFzQjtJQUN4QixDQUFDLENBQUMsaUJBQWlCO0lBQ25CLENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLEtBQUs7SUFDUCxDQUFDLENBQUMsYUFBYTtJQUNmLENBQUMsQ0FBQyxVQUFVO0lBQ1osQ0FBQyxDQUFDLFdBQVc7SUFDYixDQUFDLENBQUMsV0FBVztJQUNiLENBQUMsQ0FBQyxNQUFNO0lBQ1IsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxNQUFNO0lBQ1IsQ0FBQyxDQUFDLFVBQVU7SUFDWixDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsV0FBVztJQUNiLENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxRQUFRO0lBQ1YsQ0FBQyxDQUFDLGlCQUFpQjtJQUNuQixDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLGdCQUFnQjtJQUNsQixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxRQUFRO0lBQ1YsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxTQUFTO0lBQ1gsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFNBQVM7SUFDWCxDQUFDLENBQUMsTUFBTTtJQUNSLENBQUMsQ0FBQyxRQUFRO0NBQ1gsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIlxuaW1wb3J0ICogYXMgZCBmcm9tICcuL2NvbXBvbmVudHMnO1xuXG5leHBvcnQgY29uc3QgRElSRUNUSVZFUyA9IFtcbiAgZC5QQWNjb3JkaW9uLFxuICBkLlBBdHRhY2htZW50LFxuICBkLlBBdmF0YXIsXG4gIGQuUEF2YXRhckdyb3VwLFxuICBkLlBCYWNrZHJvcCxcbiAgZC5QQnV0dG9uLFxuICBkLlBDYWxlbmRhcixcbiAgZC5QQ2FyZEJvZHksXG4gIGQuUENhcmRDb250YWluZXIsXG4gIGQuUENhcmRIZWFkZXIsXG4gIGQuUENvbnRlbnRTbGlkZXIsXG4gIGQuUENvdW50ZXIsXG4gIGQuUERhdGVwaWNrZXIsXG4gIGQuUERpdmlkZXIsXG4gIGQuUERyYXdlcixcbiAgZC5QRHJhd2VyQm9keSxcbiAgZC5QRHJhd2VyQ29udGFpbmVyLFxuICBkLlBEcmF3ZXJIZWFkZXIsXG4gIGQuUERyb3Bkb3duLFxuICBkLlBEcm9wZG93bk1lbnVDb250YWluZXIsXG4gIGQuUERyb3Bkb3duTWVudUl0ZW0sXG4gIGQuUEhlbHBlcixcbiAgZC5QSWNvbixcbiAgZC5QSWxsdXN0cmF0aW9uLFxuICBkLlBJbmZvUGFuZWwsXG4gIGQuUElucHV0RXJyb3IsXG4gIGQuUElucHV0R3JvdXAsXG4gIGQuUExhYmVsLFxuICBkLlBMYXlvdXQsXG4gIGQuUExvYWRlcixcbiAgZC5QTW9kYWwsXG4gIGQuUE1vZGFsQm9keSxcbiAgZC5QTW9kYWxDb250YWluZXIsXG4gIGQuUE1vZGFsRm9vdGVyLFxuICBkLlBNb2RhbEhlYWRlcixcbiAgZC5QTmF2YmFyLFxuICBkLlBOYXZpZ2F0aW9uSXRlbSxcbiAgZC5QUGFnZVNpemVTZWxlY3QsXG4gIGQuUFBhZ2luYXRpb24sXG4gIGQuUFBhZ2luYXRpb25JdGVtLFxuICBkLlBQcm9maWxlLFxuICBkLlBTZWdtZW50Q29udGFpbmVyLFxuICBkLlBTZWdtZW50SXRlbSxcbiAgZC5QU2VsZWN0LFxuICBkLlBTbGlkZXJJbmRpY2F0b3IsXG4gIGQuUFN0YXR1cyxcbiAgZC5QU3RlcHBlcixcbiAgZC5QU3RlcHBlckl0ZW0sXG4gIGQuUFN0ZXBwZXJMaW5lLFxuICBkLlBUYWJHcm91cCxcbiAgZC5QVGFiSXRlbSxcbiAgZC5QVGFibGVDb250YWluZXIsXG4gIGQuUFRhYmxlRm9vdGVyLFxuICBkLlBUYWJsZUhlYWRlcixcbiAgZC5QVGFibGVSb3csXG4gIGQuUFRvYXN0LFxuICBkLlBUb29sdGlwXG5dO1xuIl19
|
|
@@ -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.2.9", ngImport: i0, type: StencilModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
+
StencilModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: StencilModule, declarations: [i1.PAccordion, i1.PAttachment, 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.PInputError, 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.PAttachment, 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.PInputError, 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.2.9", ngImport: i0, type: StencilModule });
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", 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=
|