@paperless/angular 0.1.0-alpha.43 → 0.1.0-alpha.430

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.
Files changed (116) hide show
  1. package/README.md +9 -1
  2. package/esm2020/lib/animations/fade.mjs +22 -0
  3. package/esm2020/lib/animations/index.mjs +3 -0
  4. package/esm2020/lib/animations/slide.mjs +20 -0
  5. package/esm2020/lib/base/form.component.mjs +105 -0
  6. package/esm2020/lib/base/index.mjs +3 -1
  7. package/esm2020/lib/base/upload.component.mjs +57 -0
  8. package/esm2020/lib/base/value-accessor.mjs +8 -8
  9. package/esm2020/lib/directives/index.mjs +15 -4
  10. package/esm2020/lib/directives/p-datepicker.directive.mjs +37 -0
  11. package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
  12. package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
  13. package/esm2020/lib/directives/p-select.directive.mjs +37 -0
  14. package/esm2020/lib/modules/index.mjs +8 -0
  15. package/esm2020/lib/modules/overlay/index.mjs +4 -0
  16. package/esm2020/lib/modules/overlay/overlay.module.mjs +38 -0
  17. package/esm2020/lib/modules/overlay/overlay.ref.mjs +12 -0
  18. package/esm2020/lib/modules/overlay/services/index.mjs +4 -0
  19. package/esm2020/lib/modules/overlay/services/overlay.service.mjs +74 -0
  20. package/esm2020/lib/modules/table/base/index.mjs +2 -0
  21. package/esm2020/lib/modules/table/base/table.component.mjs +201 -0
  22. package/esm2020/lib/modules/table/components/index.mjs +8 -0
  23. package/esm2020/lib/modules/table/components/table/constants.mjs +3 -0
  24. package/esm2020/lib/modules/table/components/table/table.component.mjs +679 -0
  25. package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +167 -0
  26. package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +37 -0
  27. package/esm2020/lib/modules/table/directives/index.mjs +21 -0
  28. package/esm2020/lib/modules/table/directives/p-table-custom-filter.directive.mjs +13 -0
  29. package/esm2020/lib/modules/table/directives/p-table-filter-modal.directive.mjs +13 -0
  30. package/esm2020/lib/modules/table/directives/p-table-footer.directive.mjs +52 -0
  31. package/esm2020/lib/modules/table/directives/p-table-header.directive.mjs +60 -0
  32. package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +121 -0
  33. package/esm2020/lib/modules/table/directives/p-table.directive.mjs +78 -0
  34. package/esm2020/lib/modules/table/index.mjs +6 -0
  35. package/esm2020/lib/modules/table/table.module.mjs +29 -0
  36. package/esm2020/lib/modules/table/utils.mjs +25 -0
  37. package/esm2020/lib/modules/toast/components/index.mjs +4 -0
  38. package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +36 -0
  39. package/esm2020/lib/modules/toast/directives/index.mjs +4 -0
  40. package/esm2020/lib/modules/toast/directives/toast.directive.mjs +51 -0
  41. package/esm2020/lib/modules/toast/index.mjs +6 -0
  42. package/esm2020/lib/modules/toast/services/index.mjs +4 -0
  43. package/esm2020/lib/modules/toast/services/toast.service.mjs +53 -0
  44. package/esm2020/lib/modules/toast/toast.module.mjs +22 -0
  45. package/esm2020/lib/modules/toast/types.mjs +10 -0
  46. package/esm2020/lib/paperless.module.mjs +32 -11
  47. package/esm2020/lib/pipes/currency.pipe.mjs +20 -0
  48. package/esm2020/lib/pipes/date.pipe.mjs +20 -0
  49. package/esm2020/lib/pipes/index.mjs +8 -0
  50. package/esm2020/lib/pipes/safe.pipe.mjs +33 -0
  51. package/esm2020/lib/stencil/angular-component-lib/utils.mjs +6 -8
  52. package/esm2020/lib/stencil/components.mjs +919 -173
  53. package/esm2020/lib/stencil/index.mjs +31 -2
  54. package/esm2020/lib/stencil.module.mjs +17 -0
  55. package/esm2020/public-api.mjs +6 -1
  56. package/fesm2015/paperless-angular.mjs +3163 -341
  57. package/fesm2015/paperless-angular.mjs.map +1 -1
  58. package/fesm2020/paperless-angular.mjs +3176 -341
  59. package/fesm2020/paperless-angular.mjs.map +1 -1
  60. package/lib/animations/fade.d.ts +2 -0
  61. package/lib/animations/index.d.ts +2 -0
  62. package/lib/animations/slide.d.ts +2 -0
  63. package/lib/base/form.component.d.ts +15 -0
  64. package/lib/base/index.d.ts +2 -0
  65. package/lib/base/upload.component.d.ts +16 -0
  66. package/lib/base/value-accessor.d.ts +6 -6
  67. package/lib/directives/index.d.ts +6 -3
  68. package/lib/directives/p-datepicker.directive.d.ts +9 -0
  69. package/lib/directives/p-page-size-select.directive.d.ts +10 -0
  70. package/lib/directives/{pagination.directive.d.ts → p-pagination.directive.d.ts} +3 -3
  71. package/lib/directives/p-select.directive.d.ts +9 -0
  72. package/lib/modules/index.d.ts +5 -0
  73. package/lib/modules/overlay/index.d.ts +3 -0
  74. package/lib/modules/overlay/overlay.module.d.ts +12 -0
  75. package/lib/modules/overlay/overlay.ref.d.ts +9 -0
  76. package/lib/modules/overlay/services/index.d.ts +3 -0
  77. package/lib/modules/overlay/services/overlay.service.d.ts +24 -0
  78. package/lib/modules/table/base/index.d.ts +1 -0
  79. package/lib/modules/table/base/table.component.d.ts +58 -0
  80. package/lib/modules/table/components/index.d.ts +7 -0
  81. package/lib/modules/table/components/table/constants.d.ts +2 -0
  82. package/lib/modules/table/components/table/table.component.d.ts +248 -0
  83. package/lib/modules/table/components/table-cell/table-cell.component.d.ts +45 -0
  84. package/lib/modules/table/components/table-column/table-column.component.d.ts +17 -0
  85. package/lib/modules/table/directives/index.d.ts +12 -0
  86. package/lib/modules/table/directives/p-table-custom-filter.directive.d.ts +5 -0
  87. package/lib/modules/table/directives/p-table-filter-modal.directive.d.ts +5 -0
  88. package/lib/modules/table/directives/p-table-footer.directive.d.ts +11 -0
  89. package/lib/modules/table/directives/p-table-header.directive.d.ts +17 -0
  90. package/lib/modules/table/directives/p-table-ngx.directive.d.ts +27 -0
  91. package/lib/modules/table/directives/p-table.directive.d.ts +22 -0
  92. package/lib/modules/table/index.d.ts +5 -0
  93. package/lib/modules/table/table.module.d.ts +17 -0
  94. package/lib/modules/table/utils.d.ts +10 -0
  95. package/lib/modules/toast/components/index.d.ts +3 -0
  96. package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +17 -0
  97. package/lib/modules/toast/directives/index.d.ts +3 -0
  98. package/lib/modules/toast/directives/toast.directive.d.ts +16 -0
  99. package/lib/modules/toast/index.d.ts +5 -0
  100. package/lib/modules/toast/services/index.d.ts +3 -0
  101. package/lib/modules/toast/services/toast.service.d.ts +12 -0
  102. package/lib/modules/toast/toast.module.d.ts +10 -0
  103. package/lib/modules/toast/types.d.ts +31 -0
  104. package/lib/paperless.module.d.ts +15 -3
  105. package/lib/pipes/currency.pipe.d.ts +10 -0
  106. package/lib/pipes/date.pipe.d.ts +10 -0
  107. package/lib/pipes/index.d.ts +7 -0
  108. package/lib/pipes/safe.pipe.d.ts +10 -0
  109. package/lib/stencil/components.d.ts +432 -67
  110. package/lib/stencil/index.d.ts +1 -1
  111. package/lib/stencil.module.d.ts +7 -0
  112. package/package.json +8 -6
  113. package/paperless.css +436 -0
  114. package/public-api.d.ts +5 -0
  115. package/esm2020/lib/directives/pagination.directive.mjs +0 -42
  116. /package/{paperless-angular.d.ts → index.d.ts} +0 -0
@@ -1,2 +1,2 @@
1
1
  import * as d from './components';
2
- export declare const DIRECTIVES: (typeof d.PAvatar | typeof d.PButton | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | 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.PLoader | typeof d.PModal | typeof d.PModalBackdrop | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavigationItem | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PStatus | typeof d.PTooltip)[];
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,25 +1,27 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "0.1.0-alpha.43",
3
+ "version": "0.1.0-alpha.430",
4
4
  "peerDependencies": {
5
- "@angular/common": "^13.3.0",
6
- "@angular/core": "^13.3.0"
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
- "tslib": "^2.3.0"
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",
13
15
  "esm2020": "esm2020/paperless-angular.mjs",
14
16
  "fesm2020": "fesm2020/paperless-angular.mjs",
15
17
  "fesm2015": "fesm2015/paperless-angular.mjs",
16
- "typings": "paperless-angular.d.ts",
18
+ "typings": "index.d.ts",
17
19
  "exports": {
18
20
  "./package.json": {
19
21
  "default": "./package.json"
20
22
  },
21
23
  ".": {
22
- "types": "./paperless-angular.d.ts",
24
+ "types": "./index.d.ts",
23
25
  "esm2020": "./esm2020/paperless-angular.mjs",
24
26
  "es2020": "./fesm2020/paperless-angular.mjs",
25
27
  "es2015": "./fesm2015/paperless-angular.mjs",
package/paperless.css ADDED
@@ -0,0 +1,436 @@
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
+ .transform {
110
+ 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
111
+ }
112
+
113
+ .justify-start {
114
+ justify-content: flex-start !important
115
+ }
116
+
117
+ .justify-end {
118
+ justify-content: flex-end !important
119
+ }
120
+
121
+ .justify-center {
122
+ justify-content: center !important
123
+ }
124
+
125
+ .gap-4 {
126
+ gap: 1rem !important
127
+ }
128
+
129
+ .rounded {
130
+ border-radius: 0.25rem !important
131
+ }
132
+
133
+ .font-semibold {
134
+ font-weight: 600 !important
135
+ }
136
+
137
+ .text-storm-dark {
138
+ --tw-text-opacity: 1 !important;
139
+ color: rgb(39 40 56 / var(--tw-text-opacity)) !important
140
+ }
141
+
142
+ .filter {
143
+ 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
144
+ }
145
+
146
+ .transition {
147
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
148
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
149
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
150
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
151
+ transition-duration: 150ms !important
152
+ }
153
+
154
+ .ease-in {
155
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important
156
+ }
157
+
158
+ .ease-out {
159
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
160
+ }
161
+
162
+ @media (min-width: 40rem) {
163
+ .tablet\:w-1\/12 {
164
+ width: 8.333333% !important
165
+ }
166
+
167
+ .tablet\:w-10\/12 {
168
+ width: 83.333333% !important
169
+ }
170
+
171
+ .tablet\:w-11\/12 {
172
+ width: 91.666667% !important
173
+ }
174
+
175
+ .tablet\:w-2\/12 {
176
+ width: 16.666667% !important
177
+ }
178
+
179
+ .tablet\:w-3\/12 {
180
+ width: 25% !important
181
+ }
182
+
183
+ .tablet\:w-4\/12 {
184
+ width: 33.333333% !important
185
+ }
186
+
187
+ .tablet\:w-5\/12 {
188
+ width: 41.666667% !important
189
+ }
190
+
191
+ .tablet\:w-6\/12 {
192
+ width: 50% !important
193
+ }
194
+
195
+ .tablet\:w-7\/12 {
196
+ width: 58.333333% !important
197
+ }
198
+
199
+ .tablet\:w-8\/12 {
200
+ width: 66.666667% !important
201
+ }
202
+
203
+ .tablet\:w-9\/12 {
204
+ width: 75% !important
205
+ }
206
+ }
207
+
208
+ @media (min-width: 64rem) {
209
+ .desktop-xs\:w-1\/12 {
210
+ width: 8.333333% !important
211
+ }
212
+
213
+ .desktop-xs\:w-10\/12 {
214
+ width: 83.333333% !important
215
+ }
216
+
217
+ .desktop-xs\:w-11\/12 {
218
+ width: 91.666667% !important
219
+ }
220
+
221
+ .desktop-xs\:w-2\/12 {
222
+ width: 16.666667% !important
223
+ }
224
+
225
+ .desktop-xs\:w-3\/12 {
226
+ width: 25% !important
227
+ }
228
+
229
+ .desktop-xs\:w-4\/12 {
230
+ width: 33.333333% !important
231
+ }
232
+
233
+ .desktop-xs\:w-5\/12 {
234
+ width: 41.666667% !important
235
+ }
236
+
237
+ .desktop-xs\:w-6\/12 {
238
+ width: 50% !important
239
+ }
240
+
241
+ .desktop-xs\:w-7\/12 {
242
+ width: 58.333333% !important
243
+ }
244
+
245
+ .desktop-xs\:w-8\/12 {
246
+ width: 66.666667% !important
247
+ }
248
+
249
+ .desktop-xs\:w-9\/12 {
250
+ width: 75% !important
251
+ }
252
+ }
253
+
254
+ @media (min-width: 80rem) {
255
+ .desktop-sm\:w-1\/12 {
256
+ width: 8.333333% !important
257
+ }
258
+
259
+ .desktop-sm\:w-10\/12 {
260
+ width: 83.333333% !important
261
+ }
262
+
263
+ .desktop-sm\:w-11\/12 {
264
+ width: 91.666667% !important
265
+ }
266
+
267
+ .desktop-sm\:w-2\/12 {
268
+ width: 16.666667% !important
269
+ }
270
+
271
+ .desktop-sm\:w-3\/12 {
272
+ width: 25% !important
273
+ }
274
+
275
+ .desktop-sm\:w-4\/12 {
276
+ width: 33.333333% !important
277
+ }
278
+
279
+ .desktop-sm\:w-5\/12 {
280
+ width: 41.666667% !important
281
+ }
282
+
283
+ .desktop-sm\:w-6\/12 {
284
+ width: 50% !important
285
+ }
286
+
287
+ .desktop-sm\:w-7\/12 {
288
+ width: 58.333333% !important
289
+ }
290
+
291
+ .desktop-sm\:w-8\/12 {
292
+ width: 66.666667% !important
293
+ }
294
+
295
+ .desktop-sm\:w-9\/12 {
296
+ width: 75% !important
297
+ }
298
+ }
299
+
300
+ @media (min-width: 85.375rem) {
301
+ .desktop\:w-1\/12 {
302
+ width: 8.333333% !important
303
+ }
304
+
305
+ .desktop\:w-10\/12 {
306
+ width: 83.333333% !important
307
+ }
308
+
309
+ .desktop\:w-11\/12 {
310
+ width: 91.666667% !important
311
+ }
312
+
313
+ .desktop\:w-2\/12 {
314
+ width: 16.666667% !important
315
+ }
316
+
317
+ .desktop\:w-3\/12 {
318
+ width: 25% !important
319
+ }
320
+
321
+ .desktop\:w-4\/12 {
322
+ width: 33.333333% !important
323
+ }
324
+
325
+ .desktop\:w-5\/12 {
326
+ width: 41.666667% !important
327
+ }
328
+
329
+ .desktop\:w-6\/12 {
330
+ width: 50% !important
331
+ }
332
+
333
+ .desktop\:w-7\/12 {
334
+ width: 58.333333% !important
335
+ }
336
+
337
+ .desktop\:w-8\/12 {
338
+ width: 66.666667% !important
339
+ }
340
+
341
+ .desktop\:w-9\/12 {
342
+ width: 75% !important
343
+ }
344
+ }
345
+
346
+ @media (min-width: 90rem) {
347
+ .desktop-lg\:w-1\/12 {
348
+ width: 8.333333% !important
349
+ }
350
+
351
+ .desktop-lg\:w-10\/12 {
352
+ width: 83.333333% !important
353
+ }
354
+
355
+ .desktop-lg\:w-11\/12 {
356
+ width: 91.666667% !important
357
+ }
358
+
359
+ .desktop-lg\:w-2\/12 {
360
+ width: 16.666667% !important
361
+ }
362
+
363
+ .desktop-lg\:w-3\/12 {
364
+ width: 25% !important
365
+ }
366
+
367
+ .desktop-lg\:w-4\/12 {
368
+ width: 33.333333% !important
369
+ }
370
+
371
+ .desktop-lg\:w-5\/12 {
372
+ width: 41.666667% !important
373
+ }
374
+
375
+ .desktop-lg\:w-6\/12 {
376
+ width: 50% !important
377
+ }
378
+
379
+ .desktop-lg\:w-7\/12 {
380
+ width: 58.333333% !important
381
+ }
382
+
383
+ .desktop-lg\:w-8\/12 {
384
+ width: 66.666667% !important
385
+ }
386
+
387
+ .desktop-lg\:w-9\/12 {
388
+ width: 75% !important
389
+ }
390
+ }
391
+
392
+ @media (min-width: 120rem) {
393
+ .desktop-xl\:w-1\/12 {
394
+ width: 8.333333% !important
395
+ }
396
+
397
+ .desktop-xl\:w-10\/12 {
398
+ width: 83.333333% !important
399
+ }
400
+
401
+ .desktop-xl\:w-11\/12 {
402
+ width: 91.666667% !important
403
+ }
404
+
405
+ .desktop-xl\:w-2\/12 {
406
+ width: 16.666667% !important
407
+ }
408
+
409
+ .desktop-xl\:w-3\/12 {
410
+ width: 25% !important
411
+ }
412
+
413
+ .desktop-xl\:w-4\/12 {
414
+ width: 33.333333% !important
415
+ }
416
+
417
+ .desktop-xl\:w-5\/12 {
418
+ width: 41.666667% !important
419
+ }
420
+
421
+ .desktop-xl\:w-6\/12 {
422
+ width: 50% !important
423
+ }
424
+
425
+ .desktop-xl\:w-7\/12 {
426
+ width: 58.333333% !important
427
+ }
428
+
429
+ .desktop-xl\:w-8\/12 {
430
+ width: 66.666667% !important
431
+ }
432
+
433
+ .desktop-xl\:w-9\/12 {
434
+ width: 75% !important
435
+ }
436
+ }
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: "13.3.11", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
18
- PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", 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: "13.3.11", 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9wYXBlcmxlc3Mvc3JjL2xpYi9kaXJlY3RpdmVzL3BhZ2luYXRpb24uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWMsTUFBTSxlQUFlLENBQUM7QUFDdEQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFbkQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7QUFnQnhDLE1BQU0sT0FBTyxtQkFBb0IsU0FBUSxhQUFhO0lBQ2xELFlBQVksRUFBYztRQUN0QixLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDZCxDQUFDO0lBRVEsVUFBVSxDQUFDLEtBQVU7UUFDMUIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxTQUFTO1lBQ3ZDLEtBQUssSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO0lBQ25DLENBQUM7SUFFUSxnQkFBZ0IsQ0FBQyxFQUE4QjtRQUNwRCxLQUFLLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLEVBQUUsQ0FBQyxLQUFLLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3JGLENBQUM7O2lIQVpRLG1CQUFtQjtxR0FBbkIsbUJBQW1CLHVIQVJqQjtRQUNQO1lBQ0ksT0FBTyxFQUFFLGlCQUFpQjtZQUMxQixXQUFXLEVBQUUsbUJBQW1CO1lBQ2hDLEtBQUssRUFBRSxJQUFJO1NBQ2Q7S0FDSjs0RkFFUSxtQkFBbUI7a0JBZC9CLFNBQVM7bUJBQUM7b0JBQ1AsaURBQWlEO29CQUNqRCxRQUFRLEVBQUUsY0FBYztvQkFDeEIsSUFBSSxFQUFFO3dCQUNGLGNBQWMsRUFBRSx1Q0FBdUM7cUJBQzFEO29CQUNELFNBQVMsRUFBRTt3QkFDUDs0QkFDSSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLHFCQUFxQjs0QkFDaEMsS0FBSyxFQUFFLElBQUk7eUJBQ2Q7cUJBQ0o7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBWYWx1ZUFjY2Vzc29yIH0gZnJvbSAnLi4vYmFzZSc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIC8qIHRzbGludDpkaXNhYmxlLW5leHQtbGluZTpkaXJlY3RpdmUtc2VsZWN0b3IgKi9cbiAgICBzZWxlY3RvcjogJ3AtcGFnaW5hdGlvbicsXG4gICAgaG9zdDoge1xuICAgICAgICAnKHBhZ2VDaGFuZ2UpJzogJ2hhbmRsZUNoYW5nZUV2ZW50KCRldmVudC50YXJnZXQucGFnZSknLFxuICAgIH0sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IFBhZ2luYXRpb25EaXJlY3RpdmUsXG4gICAgICAgICAgICBtdWx0aTogdHJ1ZSxcbiAgICAgICAgfSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBQYWdpbmF0aW9uRGlyZWN0aXZlIGV4dGVuZHMgVmFsdWVBY2Nlc3NvciB7XG4gICAgY29uc3RydWN0b3IoZWw6IEVsZW1lbnRSZWYpIHtcbiAgICAgICAgc3VwZXIoZWwpO1xuICAgIH1cblxuICAgIG92ZXJyaWRlIHdyaXRlVmFsdWUodmFsdWU6IGFueSkge1xuICAgICAgICB0aGlzLmVsLm5hdGl2ZUVsZW1lbnQucGFnZSA9IHRoaXMubGFzdFZhbHVlID1cbiAgICAgICAgICAgIHZhbHVlID09IG51bGwgPyAnJyA6IHZhbHVlO1xuICAgIH1cblxuICAgIG92ZXJyaWRlIHJlZ2lzdGVyT25DaGFuZ2UoZm46IChfOiBudW1iZXIgfCBudWxsKSA9PiB2b2lkKSB7XG4gICAgICAgIHN1cGVyLnJlZ2lzdGVyT25DaGFuZ2UoKHZhbHVlKSA9PiBmbih2YWx1ZSA9PT0gJycgPyBudWxsIDogcGFyc2VJbnQodmFsdWUsIDEwKSkpO1xuICAgIH1cbn1cbiJdfQ==
File without changes