@paperless/angular 2.0.1-beta.20 → 2.0.1-beta.200
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/esm2020/lib/directives/index.mjs +19 -7
- package/esm2020/lib/directives/p-checkbox.directive.mjs +39 -0
- package/esm2020/lib/directives/p-field.directive.mjs +38 -0
- package/esm2020/lib/directives/p-pagination-pages.directive.mjs +41 -0
- package/esm2020/lib/directives/p-pagination-size.directive.mjs +41 -0
- package/esm2020/lib/directives/p-radio.directive.mjs +60 -0
- package/esm2020/lib/directives/p-toggle.directive.mjs +38 -0
- package/esm2020/lib/modules/table/components/table/table.component.mjs +146 -80
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +5 -19
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +20 -4
- package/esm2020/lib/modules/toast/types.mjs +4 -3
- package/esm2020/lib/paperless.module.mjs +15 -11
- package/esm2020/lib/stencil/angular-component-lib/utils.mjs +9 -1
- package/esm2020/lib/stencil/components.mjs +377 -255
- package/esm2020/lib/stencil/index.mjs +15 -10
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +756 -392
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +751 -391
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/directives/index.d.ts +9 -4
- package/lib/directives/p-checkbox.directive.d.ts +9 -0
- package/lib/directives/p-field.directive.d.ts +9 -0
- package/lib/directives/p-pagination-pages.directive.d.ts +10 -0
- package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts} +3 -3
- package/lib/directives/p-radio.directive.d.ts +18 -0
- package/lib/directives/p-toggle.directive.d.ts +9 -0
- package/lib/modules/table/components/table/table.component.d.ts +40 -14
- package/lib/modules/table/components/table-cell/table-cell.component.d.ts +2 -6
- package/lib/modules/table/components/table-column/table-column.component.d.ts +1 -1
- package/lib/modules/toast/types.d.ts +3 -2
- package/lib/paperless.module.d.ts +15 -11
- package/lib/stencil/components.d.ts +269 -164
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +250 -55
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +0 -41
- package/esm2020/lib/directives/p-pagination.directive.mjs +0 -41
- package/lib/directives/p-pagination.directive.d.ts +0 -10
|
@@ -12,8 +12,8 @@ export const DIRECTIVES = [
|
|
|
12
12
|
d.PCardBody,
|
|
13
13
|
d.PCardContainer,
|
|
14
14
|
d.PCardHeader,
|
|
15
|
+
d.PCheckbox,
|
|
15
16
|
d.PContentSlider,
|
|
16
|
-
d.PCounter,
|
|
17
17
|
d.PCropper,
|
|
18
18
|
d.PDatepicker,
|
|
19
19
|
d.PDivider,
|
|
@@ -24,6 +24,7 @@ export const DIRECTIVES = [
|
|
|
24
24
|
d.PDropdown,
|
|
25
25
|
d.PDropdownMenuContainer,
|
|
26
26
|
d.PDropdownMenuItem,
|
|
27
|
+
d.PEmptyState,
|
|
27
28
|
d.PField,
|
|
28
29
|
d.PFieldContainer,
|
|
29
30
|
d.PFloatingMenuContainer,
|
|
@@ -31,12 +32,14 @@ export const DIRECTIVES = [
|
|
|
31
32
|
d.PHelper,
|
|
32
33
|
d.PIbanIcon,
|
|
33
34
|
d.PIcon,
|
|
34
|
-
d.PIconDeprecated,
|
|
35
35
|
d.PIllustration,
|
|
36
|
+
d.PIllustrationDeprecated,
|
|
36
37
|
d.PInfoPanel,
|
|
37
|
-
d.PInputError,
|
|
38
38
|
d.PLabel,
|
|
39
39
|
d.PLayout,
|
|
40
|
+
d.PListing,
|
|
41
|
+
d.PListingItem,
|
|
42
|
+
d.PListingLine,
|
|
40
43
|
d.PLoader,
|
|
41
44
|
d.PModal,
|
|
42
45
|
d.PModalBody,
|
|
@@ -47,27 +50,29 @@ export const DIRECTIVES = [
|
|
|
47
50
|
d.PNavigationItem,
|
|
48
51
|
d.PNavigationSection,
|
|
49
52
|
d.PNavigationTitle,
|
|
50
|
-
d.PPageSizeSelect,
|
|
51
53
|
d.PPagination,
|
|
52
|
-
d.
|
|
53
|
-
d.
|
|
54
|
+
d.PPaginationPages,
|
|
55
|
+
d.PPaginationPagesItem,
|
|
56
|
+
d.PPaginationSize,
|
|
54
57
|
d.PProfile,
|
|
55
58
|
d.PRadio,
|
|
59
|
+
d.PRange,
|
|
56
60
|
d.PSegmentContainer,
|
|
57
61
|
d.PSegmentItem,
|
|
58
62
|
d.PSelect,
|
|
59
|
-
d.
|
|
60
|
-
d.PStatus,
|
|
63
|
+
d.PSmile,
|
|
61
64
|
d.PStepper,
|
|
62
65
|
d.PStepperItem,
|
|
63
66
|
d.PStepperLine,
|
|
64
|
-
d.
|
|
67
|
+
d.PTabContainer,
|
|
65
68
|
d.PTabItem,
|
|
66
69
|
d.PTableContainer,
|
|
67
70
|
d.PTableFooter,
|
|
68
71
|
d.PTableHeader,
|
|
69
72
|
d.PTableRow,
|
|
73
|
+
d.PTableRowActionsContainer,
|
|
70
74
|
d.PToast,
|
|
75
|
+
d.PToggle,
|
|
71
76
|
d.PTooltip
|
|
72
77
|
];
|
|
73
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
78
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9zdGVuY2lsL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sS0FBSyxDQUFDLE1BQU0sY0FBYyxDQUFDO0FBRWxDLE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixDQUFDLENBQUMsVUFBVTtJQUNaLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxTQUFTO0lBQ1gsQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFNBQVM7SUFDWCxDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxjQUFjO0lBQ2hCLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLFNBQVM7SUFDWCxDQUFDLENBQUMsY0FBYztJQUNoQixDQUFDLENBQUMsUUFBUTtJQUNWLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLGdCQUFnQjtJQUNsQixDQUFDLENBQUMsYUFBYTtJQUNmLENBQUMsQ0FBQyxTQUFTO0lBQ1gsQ0FBQyxDQUFDLHNCQUFzQjtJQUN4QixDQUFDLENBQUMsaUJBQWlCO0lBQ25CLENBQUMsQ0FBQyxXQUFXO0lBQ2IsQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsc0JBQXNCO0lBQ3hCLENBQUMsQ0FBQyxpQkFBaUI7SUFDbkIsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsU0FBUztJQUNYLENBQUMsQ0FBQyxLQUFLO0lBQ1AsQ0FBQyxDQUFDLGFBQWE7SUFDZixDQUFDLENBQUMsdUJBQXVCO0lBQ3pCLENBQUMsQ0FBQyxVQUFVO0lBQ1osQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxRQUFRO0lBQ1YsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxPQUFPO0lBQ1QsQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsVUFBVTtJQUNaLENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsT0FBTztJQUNULENBQUMsQ0FBQyxlQUFlO0lBQ2pCLENBQUMsQ0FBQyxrQkFBa0I7SUFDcEIsQ0FBQyxDQUFDLGdCQUFnQjtJQUNsQixDQUFDLENBQUMsV0FBVztJQUNiLENBQUMsQ0FBQyxnQkFBZ0I7SUFDbEIsQ0FBQyxDQUFDLG9CQUFvQjtJQUN0QixDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsUUFBUTtJQUNWLENBQUMsQ0FBQyxNQUFNO0lBQ1IsQ0FBQyxDQUFDLE1BQU07SUFDUixDQUFDLENBQUMsaUJBQWlCO0lBQ25CLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsTUFBTTtJQUNSLENBQUMsQ0FBQyxRQUFRO0lBQ1YsQ0FBQyxDQUFDLFlBQVk7SUFDZCxDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxhQUFhO0lBQ2YsQ0FBQyxDQUFDLFFBQVE7SUFDVixDQUFDLENBQUMsZUFBZTtJQUNqQixDQUFDLENBQUMsWUFBWTtJQUNkLENBQUMsQ0FBQyxZQUFZO0lBQ2QsQ0FBQyxDQUFDLFNBQVM7SUFDWCxDQUFDLENBQUMseUJBQXlCO0lBQzNCLENBQUMsQ0FBQyxNQUFNO0lBQ1IsQ0FBQyxDQUFDLE9BQU87SUFDVCxDQUFDLENBQUMsUUFBUTtDQUNYLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJcbmltcG9ydCAqIGFzIGQgZnJvbSAnLi9jb21wb25lbnRzJztcblxuZXhwb3J0IGNvbnN0IERJUkVDVElWRVMgPSBbXG4gIGQuUEFjY29yZGlvbixcbiAgZC5QQXR0YWNobWVudCxcbiAgZC5QQXZhdGFyLFxuICBkLlBBdmF0YXJHcm91cCxcbiAgZC5QQmFja2Ryb3AsXG4gIGQuUEJhZGdlLFxuICBkLlBCdXR0b24sXG4gIGQuUEJ1dHRvbkdyb3VwLFxuICBkLlBDYWxlbmRhcixcbiAgZC5QQ2FyZEJvZHksXG4gIGQuUENhcmRDb250YWluZXIsXG4gIGQuUENhcmRIZWFkZXIsXG4gIGQuUENoZWNrYm94LFxuICBkLlBDb250ZW50U2xpZGVyLFxuICBkLlBDcm9wcGVyLFxuICBkLlBEYXRlcGlja2VyLFxuICBkLlBEaXZpZGVyLFxuICBkLlBEcmF3ZXIsXG4gIGQuUERyYXdlckJvZHksXG4gIGQuUERyYXdlckNvbnRhaW5lcixcbiAgZC5QRHJhd2VySGVhZGVyLFxuICBkLlBEcm9wZG93bixcbiAgZC5QRHJvcGRvd25NZW51Q29udGFpbmVyLFxuICBkLlBEcm9wZG93bk1lbnVJdGVtLFxuICBkLlBFbXB0eVN0YXRlLFxuICBkLlBGaWVsZCxcbiAgZC5QRmllbGRDb250YWluZXIsXG4gIGQuUEZsb2F0aW5nTWVudUNvbnRhaW5lcixcbiAgZC5QRmxvYXRpbmdNZW51SXRlbSxcbiAgZC5QSGVscGVyLFxuICBkLlBJYmFuSWNvbixcbiAgZC5QSWNvbixcbiAgZC5QSWxsdXN0cmF0aW9uLFxuICBkLlBJbGx1c3RyYXRpb25EZXByZWNhdGVkLFxuICBkLlBJbmZvUGFuZWwsXG4gIGQuUExhYmVsLFxuICBkLlBMYXlvdXQsXG4gIGQuUExpc3RpbmcsXG4gIGQuUExpc3RpbmdJdGVtLFxuICBkLlBMaXN0aW5nTGluZSxcbiAgZC5QTG9hZGVyLFxuICBkLlBNb2RhbCxcbiAgZC5QTW9kYWxCb2R5LFxuICBkLlBNb2RhbENvbnRhaW5lcixcbiAgZC5QTW9kYWxGb290ZXIsXG4gIGQuUE1vZGFsSGVhZGVyLFxuICBkLlBOYXZiYXIsXG4gIGQuUE5hdmlnYXRpb25JdGVtLFxuICBkLlBOYXZpZ2F0aW9uU2VjdGlvbixcbiAgZC5QTmF2aWdhdGlvblRpdGxlLFxuICBkLlBQYWdpbmF0aW9uLFxuICBkLlBQYWdpbmF0aW9uUGFnZXMsXG4gIGQuUFBhZ2luYXRpb25QYWdlc0l0ZW0sXG4gIGQuUFBhZ2luYXRpb25TaXplLFxuICBkLlBQcm9maWxlLFxuICBkLlBSYWRpbyxcbiAgZC5QUmFuZ2UsXG4gIGQuUFNlZ21lbnRDb250YWluZXIsXG4gIGQuUFNlZ21lbnRJdGVtLFxuICBkLlBTZWxlY3QsXG4gIGQuUFNtaWxlLFxuICBkLlBTdGVwcGVyLFxuICBkLlBTdGVwcGVySXRlbSxcbiAgZC5QU3RlcHBlckxpbmUsXG4gIGQuUFRhYkNvbnRhaW5lcixcbiAgZC5QVGFiSXRlbSxcbiAgZC5QVGFibGVDb250YWluZXIsXG4gIGQuUFRhYmxlRm9vdGVyLFxuICBkLlBUYWJsZUhlYWRlcixcbiAgZC5QVGFibGVSb3csXG4gIGQuUFRhYmxlUm93QWN0aW9uc0NvbnRhaW5lcixcbiAgZC5QVG9hc3QsXG4gIGQuUFRvZ2dsZSxcbiAgZC5QVG9vbHRpcFxuXTtcbiJdfQ==
|
|
@@ -5,7 +5,7 @@ import * as i1 from "./stencil/components";
|
|
|
5
5
|
export class StencilModule {
|
|
6
6
|
}
|
|
7
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.PBadge, i1.PButton, i1.PButtonGroup, i1.PCalendar, i1.PCardBody, i1.PCardContainer, i1.PCardHeader, i1.
|
|
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.PBadge, i1.PButton, i1.PButtonGroup, i1.PCalendar, i1.PCardBody, i1.PCardContainer, i1.PCardHeader, i1.PCheckbox, i1.PContentSlider, i1.PCropper, i1.PDatepicker, i1.PDivider, i1.PDrawer, i1.PDrawerBody, i1.PDrawerContainer, i1.PDrawerHeader, i1.PDropdown, i1.PDropdownMenuContainer, i1.PDropdownMenuItem, i1.PEmptyState, i1.PField, i1.PFieldContainer, i1.PFloatingMenuContainer, i1.PFloatingMenuItem, i1.PHelper, i1.PIbanIcon, i1.PIcon, i1.PIllustration, i1.PIllustrationDeprecated, i1.PInfoPanel, i1.PLabel, i1.PLayout, i1.PListing, i1.PListingItem, i1.PListingLine, i1.PLoader, i1.PModal, i1.PModalBody, i1.PModalContainer, i1.PModalFooter, i1.PModalHeader, i1.PNavbar, i1.PNavigationItem, i1.PNavigationSection, i1.PNavigationTitle, i1.PPagination, i1.PPaginationPages, i1.PPaginationPagesItem, i1.PPaginationSize, i1.PProfile, i1.PRadio, i1.PRange, i1.PSegmentContainer, i1.PSegmentItem, i1.PSelect, i1.PSmile, i1.PStepper, i1.PStepperItem, i1.PStepperLine, i1.PTabContainer, i1.PTabItem, i1.PTableContainer, i1.PTableFooter, i1.PTableHeader, i1.PTableRow, i1.PTableRowActionsContainer, i1.PToast, i1.PToggle, i1.PTooltip], exports: [i1.PAccordion, i1.PAttachment, i1.PAvatar, i1.PAvatarGroup, i1.PBackdrop, i1.PBadge, i1.PButton, i1.PButtonGroup, i1.PCalendar, i1.PCardBody, i1.PCardContainer, i1.PCardHeader, i1.PCheckbox, i1.PContentSlider, i1.PCropper, i1.PDatepicker, i1.PDivider, i1.PDrawer, i1.PDrawerBody, i1.PDrawerContainer, i1.PDrawerHeader, i1.PDropdown, i1.PDropdownMenuContainer, i1.PDropdownMenuItem, i1.PEmptyState, i1.PField, i1.PFieldContainer, i1.PFloatingMenuContainer, i1.PFloatingMenuItem, i1.PHelper, i1.PIbanIcon, i1.PIcon, i1.PIllustration, i1.PIllustrationDeprecated, i1.PInfoPanel, i1.PLabel, i1.PLayout, i1.PListing, i1.PListingItem, i1.PListingLine, i1.PLoader, i1.PModal, i1.PModalBody, i1.PModalContainer, i1.PModalFooter, i1.PModalHeader, i1.PNavbar, i1.PNavigationItem, i1.PNavigationSection, i1.PNavigationTitle, i1.PPagination, i1.PPaginationPages, i1.PPaginationPagesItem, i1.PPaginationSize, i1.PProfile, i1.PRadio, i1.PRange, i1.PSegmentContainer, i1.PSegmentItem, i1.PSelect, i1.PSmile, i1.PStepper, i1.PStepperItem, i1.PStepperLine, i1.PTabContainer, i1.PTabItem, i1.PTableContainer, i1.PTableFooter, i1.PTableHeader, i1.PTableRow, i1.PTableRowActionsContainer, i1.PToast, i1.PToggle, i1.PTooltip] });
|
|
9
9
|
StencilModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StencilModule });
|
|
10
10
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StencilModule, decorators: [{
|
|
11
11
|
type: NgModule,
|