@paperless/angular 0.1.0-alpha.98 → 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
package/lib/stencil/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PButton | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PDivider | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputGroup | typeof d.
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PButton | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PInputGroup | typeof d.PLabel | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PToast | typeof d.PTooltip)[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stencil/components";
|
|
3
|
+
export declare class StencilModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StencilModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PButton, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PHelper, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PButton, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PHelper, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paperless/angular",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/
|
|
6
|
-
"@angular/
|
|
5
|
+
"@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0",
|
|
6
|
+
"@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",
|
|
7
|
+
"@angular/core": "^13.3.0 || ^14.0.0 || ^15.0.0"
|
|
7
8
|
},
|
|
8
9
|
"dependencies": {
|
|
9
|
-
"
|
|
10
|
+
"@ngneat/until-destroy": "9.2.3",
|
|
11
|
+
"tslib": "2.5.0"
|
|
10
12
|
},
|
|
11
13
|
"module": "fesm2015/paperless-angular.mjs",
|
|
12
14
|
"es2020": "fesm2020/paperless-angular.mjs",
|
package/paperless.css
ADDED
|
@@ -0,0 +1,492 @@
|
|
|
1
|
+
.static {
|
|
2
|
+
position: static !important
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.bottom-0 {
|
|
6
|
+
bottom: 0px !important
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.left-0 {
|
|
10
|
+
left: 0px !important
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.right-0 {
|
|
14
|
+
right: 0px !important
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.top-0 {
|
|
18
|
+
top: 0px !important
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.block {
|
|
22
|
+
display: block !important
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.inline {
|
|
26
|
+
display: inline !important
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.flex {
|
|
30
|
+
display: flex !important
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.table {
|
|
34
|
+
display: table !important
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.table-cell {
|
|
38
|
+
display: table-cell !important
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.hidden {
|
|
42
|
+
display: none !important
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.h-6 {
|
|
46
|
+
height: 1.5rem !important
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.w-1\/12 {
|
|
50
|
+
width: 8.333333% !important
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.w-10\/12 {
|
|
54
|
+
width: 83.333333% !important
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.w-11\/12 {
|
|
58
|
+
width: 91.666667% !important
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.w-2\/12 {
|
|
62
|
+
width: 16.666667% !important
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.w-3\/12 {
|
|
66
|
+
width: 25% !important
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.w-4\/12 {
|
|
70
|
+
width: 33.333333% !important
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.w-5\/12 {
|
|
74
|
+
width: 41.666667% !important
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.w-6 {
|
|
78
|
+
width: 1.5rem !important
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.w-6\/12 {
|
|
82
|
+
width: 50% !important
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.w-7\/12 {
|
|
86
|
+
width: 58.333333% !important
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.w-8\/12 {
|
|
90
|
+
width: 66.666667% !important
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.w-9\/12 {
|
|
94
|
+
width: 75% !important
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.w-auto {
|
|
98
|
+
width: auto !important
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.w-full {
|
|
102
|
+
width: 100% !important
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.flex-1 {
|
|
106
|
+
flex: 1 1 0% !important
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.flex-shrink {
|
|
110
|
+
flex-shrink: 1 !important
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.transform {
|
|
114
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.justify-start {
|
|
118
|
+
justify-content: flex-start !important
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.justify-end {
|
|
122
|
+
justify-content: flex-end !important
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.justify-center {
|
|
126
|
+
justify-content: center !important
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.gap-4 {
|
|
130
|
+
gap: 1rem !important
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.rounded {
|
|
134
|
+
border-radius: 0.25rem !important
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.pr-4 {
|
|
138
|
+
padding-right: 1rem !important
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.font-semibold {
|
|
142
|
+
font-weight: 600 !important
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.text-storm-dark {
|
|
146
|
+
--tw-text-opacity: 1 !important;
|
|
147
|
+
color: rgb(39 40 56 / var(--tw-text-opacity)) !important
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.filter {
|
|
151
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.transition {
|
|
155
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
|
|
156
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
|
|
157
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
|
|
158
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
159
|
+
transition-duration: 150ms !important
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.ease-in {
|
|
163
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.ease-out {
|
|
167
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@media (min-width: 40rem) {
|
|
171
|
+
.tablet\:flex {
|
|
172
|
+
display: flex !important
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.tablet\:hidden {
|
|
176
|
+
display: none !important
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.tablet\:w-1\/12 {
|
|
180
|
+
width: 8.333333% !important
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.tablet\:w-10\/12 {
|
|
184
|
+
width: 83.333333% !important
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.tablet\:w-11\/12 {
|
|
188
|
+
width: 91.666667% !important
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.tablet\:w-2\/12 {
|
|
192
|
+
width: 16.666667% !important
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.tablet\:w-3\/12 {
|
|
196
|
+
width: 25% !important
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.tablet\:w-4\/12 {
|
|
200
|
+
width: 33.333333% !important
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.tablet\:w-5\/12 {
|
|
204
|
+
width: 41.666667% !important
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.tablet\:w-6\/12 {
|
|
208
|
+
width: 50% !important
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.tablet\:w-7\/12 {
|
|
212
|
+
width: 58.333333% !important
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.tablet\:w-8\/12 {
|
|
216
|
+
width: 66.666667% !important
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.tablet\:w-9\/12 {
|
|
220
|
+
width: 75% !important
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
@media (min-width: 64rem) {
|
|
225
|
+
.desktop-xs\:flex {
|
|
226
|
+
display: flex !important
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.desktop-xs\:hidden {
|
|
230
|
+
display: none !important
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.desktop-xs\:w-1\/12 {
|
|
234
|
+
width: 8.333333% !important
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.desktop-xs\:w-10\/12 {
|
|
238
|
+
width: 83.333333% !important
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.desktop-xs\:w-11\/12 {
|
|
242
|
+
width: 91.666667% !important
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.desktop-xs\:w-2\/12 {
|
|
246
|
+
width: 16.666667% !important
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.desktop-xs\:w-3\/12 {
|
|
250
|
+
width: 25% !important
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.desktop-xs\:w-4\/12 {
|
|
254
|
+
width: 33.333333% !important
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.desktop-xs\:w-5\/12 {
|
|
258
|
+
width: 41.666667% !important
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.desktop-xs\:w-6\/12 {
|
|
262
|
+
width: 50% !important
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.desktop-xs\:w-7\/12 {
|
|
266
|
+
width: 58.333333% !important
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.desktop-xs\:w-8\/12 {
|
|
270
|
+
width: 66.666667% !important
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.desktop-xs\:w-9\/12 {
|
|
274
|
+
width: 75% !important
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
@media (min-width: 80rem) {
|
|
279
|
+
.desktop-sm\:flex {
|
|
280
|
+
display: flex !important
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.desktop-sm\:hidden {
|
|
284
|
+
display: none !important
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.desktop-sm\:w-1\/12 {
|
|
288
|
+
width: 8.333333% !important
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.desktop-sm\:w-10\/12 {
|
|
292
|
+
width: 83.333333% !important
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.desktop-sm\:w-11\/12 {
|
|
296
|
+
width: 91.666667% !important
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.desktop-sm\:w-2\/12 {
|
|
300
|
+
width: 16.666667% !important
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.desktop-sm\:w-3\/12 {
|
|
304
|
+
width: 25% !important
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.desktop-sm\:w-4\/12 {
|
|
308
|
+
width: 33.333333% !important
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.desktop-sm\:w-5\/12 {
|
|
312
|
+
width: 41.666667% !important
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.desktop-sm\:w-6\/12 {
|
|
316
|
+
width: 50% !important
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.desktop-sm\:w-7\/12 {
|
|
320
|
+
width: 58.333333% !important
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.desktop-sm\:w-8\/12 {
|
|
324
|
+
width: 66.666667% !important
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.desktop-sm\:w-9\/12 {
|
|
328
|
+
width: 75% !important
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
@media (min-width: 85.375rem) {
|
|
333
|
+
.desktop\:flex {
|
|
334
|
+
display: flex !important
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.desktop\:hidden {
|
|
338
|
+
display: none !important
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.desktop\:w-1\/12 {
|
|
342
|
+
width: 8.333333% !important
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.desktop\:w-10\/12 {
|
|
346
|
+
width: 83.333333% !important
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.desktop\:w-11\/12 {
|
|
350
|
+
width: 91.666667% !important
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.desktop\:w-2\/12 {
|
|
354
|
+
width: 16.666667% !important
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.desktop\:w-3\/12 {
|
|
358
|
+
width: 25% !important
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.desktop\:w-4\/12 {
|
|
362
|
+
width: 33.333333% !important
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.desktop\:w-5\/12 {
|
|
366
|
+
width: 41.666667% !important
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.desktop\:w-6\/12 {
|
|
370
|
+
width: 50% !important
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.desktop\:w-7\/12 {
|
|
374
|
+
width: 58.333333% !important
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.desktop\:w-8\/12 {
|
|
378
|
+
width: 66.666667% !important
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.desktop\:w-9\/12 {
|
|
382
|
+
width: 75% !important
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@media (min-width: 90rem) {
|
|
387
|
+
.desktop-lg\:flex {
|
|
388
|
+
display: flex !important
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.desktop-lg\:hidden {
|
|
392
|
+
display: none !important
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.desktop-lg\:w-1\/12 {
|
|
396
|
+
width: 8.333333% !important
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.desktop-lg\:w-10\/12 {
|
|
400
|
+
width: 83.333333% !important
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.desktop-lg\:w-11\/12 {
|
|
404
|
+
width: 91.666667% !important
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.desktop-lg\:w-2\/12 {
|
|
408
|
+
width: 16.666667% !important
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.desktop-lg\:w-3\/12 {
|
|
412
|
+
width: 25% !important
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.desktop-lg\:w-4\/12 {
|
|
416
|
+
width: 33.333333% !important
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.desktop-lg\:w-5\/12 {
|
|
420
|
+
width: 41.666667% !important
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.desktop-lg\:w-6\/12 {
|
|
424
|
+
width: 50% !important
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.desktop-lg\:w-7\/12 {
|
|
428
|
+
width: 58.333333% !important
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.desktop-lg\:w-8\/12 {
|
|
432
|
+
width: 66.666667% !important
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.desktop-lg\:w-9\/12 {
|
|
436
|
+
width: 75% !important
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
@media (min-width: 120rem) {
|
|
441
|
+
.desktop-xl\:flex {
|
|
442
|
+
display: flex !important
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.desktop-xl\:hidden {
|
|
446
|
+
display: none !important
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.desktop-xl\:w-1\/12 {
|
|
450
|
+
width: 8.333333% !important
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.desktop-xl\:w-10\/12 {
|
|
454
|
+
width: 83.333333% !important
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.desktop-xl\:w-11\/12 {
|
|
458
|
+
width: 91.666667% !important
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.desktop-xl\:w-2\/12 {
|
|
462
|
+
width: 16.666667% !important
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.desktop-xl\:w-3\/12 {
|
|
466
|
+
width: 25% !important
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.desktop-xl\:w-4\/12 {
|
|
470
|
+
width: 33.333333% !important
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.desktop-xl\:w-5\/12 {
|
|
474
|
+
width: 41.666667% !important
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.desktop-xl\:w-6\/12 {
|
|
478
|
+
width: 50% !important
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.desktop-xl\:w-7\/12 {
|
|
482
|
+
width: 58.333333% !important
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.desktop-xl\:w-8\/12 {
|
|
486
|
+
width: 66.666667% !important
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.desktop-xl\:w-9\/12 {
|
|
490
|
+
width: 75% !important
|
|
491
|
+
}
|
|
492
|
+
}
|
package/public-api.d.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export * from './lib/animations';
|
|
2
|
+
export * from './lib/base';
|
|
1
3
|
export * from './lib/directives';
|
|
4
|
+
export * from './lib/modules';
|
|
2
5
|
export * from './lib/paperless.module';
|
|
6
|
+
export * from './lib/pipes';
|
|
7
|
+
export * from './lib/stencil.module';
|
|
3
8
|
export * from './lib/stencil/components';
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
-
import { ValueAccessor } from '../base';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class PaginationDirective extends ValueAccessor {
|
|
6
|
-
constructor(el) {
|
|
7
|
-
super(el);
|
|
8
|
-
}
|
|
9
|
-
writeValue(value) {
|
|
10
|
-
this.el.nativeElement.page = this.lastValue =
|
|
11
|
-
value == null ? '' : value;
|
|
12
|
-
}
|
|
13
|
-
registerOnChange(fn) {
|
|
14
|
-
super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
-
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.target.page)" } }, providers: [
|
|
19
|
-
{
|
|
20
|
-
provide: NG_VALUE_ACCESSOR,
|
|
21
|
-
useExisting: PaginationDirective,
|
|
22
|
-
multi: true,
|
|
23
|
-
},
|
|
24
|
-
], usesInheritance: true, ngImport: i0 });
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaginationDirective, decorators: [{
|
|
26
|
-
type: Directive,
|
|
27
|
-
args: [{
|
|
28
|
-
/* tslint:disable-next-line:directive-selector */
|
|
29
|
-
selector: 'p-pagination',
|
|
30
|
-
host: {
|
|
31
|
-
'(pageChange)': 'handleChangeEvent($event.target.page)',
|
|
32
|
-
},
|
|
33
|
-
providers: [
|
|
34
|
-
{
|
|
35
|
-
provide: NG_VALUE_ACCESSOR,
|
|
36
|
-
useExisting: PaginationDirective,
|
|
37
|
-
multi: true,
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
|
-
}]
|
|
41
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9kaXJlY3RpdmVzL3BhZ2luYXRpb24uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWMsTUFBTSxlQUFlLENBQUM7QUFDdEQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFbkQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7QUFnQnhDLE1BQU0sT0FBTyxtQkFBb0IsU0FBUSxhQUFhO0lBQ2xELFlBQVksRUFBYztRQUN0QixLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDZCxDQUFDO0lBRVEsVUFBVSxDQUFDLEtBQVU7UUFDMUIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxTQUFTO1lBQ3ZDLEtBQUssSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO0lBQ25DLENBQUM7SUFFUSxnQkFBZ0IsQ0FBQyxFQUE4QjtRQUNwRCxLQUFLLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLEVBQUUsQ0FBQyxLQUFLLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3JGLENBQUM7O2dIQVpRLG1CQUFtQjtvR0FBbkIsbUJBQW1CLHVIQVJqQjtRQUNQO1lBQ0ksT0FBTyxFQUFFLGlCQUFpQjtZQUMxQixXQUFXLEVBQUUsbUJBQW1CO1lBQ2hDLEtBQUssRUFBRSxJQUFJO1NBQ2Q7S0FDSjsyRkFFUSxtQkFBbUI7a0JBZC9CLFNBQVM7bUJBQUM7b0JBQ1AsaURBQWlEO29CQUNqRCxRQUFRLEVBQUUsY0FBYztvQkFDeEIsSUFBSSxFQUFFO3dCQUNGLGNBQWMsRUFBRSx1Q0FBdUM7cUJBQzFEO29CQUNELFNBQVMsRUFBRTt3QkFDUDs0QkFDSSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLHFCQUFxQjs0QkFDaEMsS0FBSyxFQUFFLElBQUk7eUJBQ2Q7cUJBQ0o7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBWYWx1ZUFjY2Vzc29yIH0gZnJvbSAnLi4vYmFzZSc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIC8qIHRzbGludDpkaXNhYmxlLW5leHQtbGluZTpkaXJlY3RpdmUtc2VsZWN0b3IgKi9cbiAgICBzZWxlY3RvcjogJ3AtcGFnaW5hdGlvbicsXG4gICAgaG9zdDoge1xuICAgICAgICAnKHBhZ2VDaGFuZ2UpJzogJ2hhbmRsZUNoYW5nZUV2ZW50KCRldmVudC50YXJnZXQucGFnZSknLFxuICAgIH0sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IFBhZ2luYXRpb25EaXJlY3RpdmUsXG4gICAgICAgICAgICBtdWx0aTogdHJ1ZSxcbiAgICAgICAgfSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBQYWdpbmF0aW9uRGlyZWN0aXZlIGV4dGVuZHMgVmFsdWVBY2Nlc3NvciB7XG4gICAgY29uc3RydWN0b3IoZWw6IEVsZW1lbnRSZWYpIHtcbiAgICAgICAgc3VwZXIoZWwpO1xuICAgIH1cblxuICAgIG92ZXJyaWRlIHdyaXRlVmFsdWUodmFsdWU6IGFueSkge1xuICAgICAgICB0aGlzLmVsLm5hdGl2ZUVsZW1lbnQucGFnZSA9IHRoaXMubGFzdFZhbHVlID1cbiAgICAgICAgICAgIHZhbHVlID09IG51bGwgPyAnJyA6IHZhbHVlO1xuICAgIH1cblxuICAgIG92ZXJyaWRlIHJlZ2lzdGVyT25DaGFuZ2UoZm46IChfOiBudW1iZXIgfCBudWxsKSA9PiB2b2lkKSB7XG4gICAgICAgIHN1cGVyLnJlZ2lzdGVyT25DaGFuZ2UoKHZhbHVlKSA9PiBmbih2YWx1ZSA9PT0gJycgPyBudWxsIDogcGFyc2VJbnQodmFsdWUsIDEwKSkpO1xuICAgIH1cbn1cbiJdfQ==
|