@paperless/angular 2.19.7 → 2.20.0

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.
@@ -13,14 +13,16 @@ import * as i10 from "./directives/p-toggle.directive";
13
13
  import * as i11 from "./pipes/currency.pipe";
14
14
  import * as i12 from "./pipes/date.pipe";
15
15
  import * as i13 from "./pipes/safe.pipe";
16
- import * as i14 from "@angular/common";
17
- import * as i15 from "./stencil.module";
18
- import * as i16 from "./modules/table/table.module";
19
- import * as i17 from "./modules/toast/toast.module";
20
- import * as i18 from "./modules/overlay/overlay.module";
16
+ import * as i14 from "./pipes/select-autocomplete.pipe";
17
+ import * as i15 from "./pipes/select-select-all.pipe";
18
+ import * as i16 from "@angular/common";
19
+ import * as i17 from "./stencil.module";
20
+ import * as i18 from "./modules/table/table.module";
21
+ import * as i19 from "./modules/toast/toast.module";
22
+ import * as i20 from "./modules/overlay/overlay.module";
21
23
  export declare class PaperlessModule {
22
24
  static forRoot(): ModuleWithProviders<PaperlessModule>;
23
25
  static ɵfac: i0.ɵɵFactoryDeclaration<PaperlessModule, never>;
24
- static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.FieldNumberDirective, typeof i8.RadioDirective, typeof i9.CheckboxDirective, typeof i10.ToggleDirective, typeof i11.CustomCurrencyPipe, typeof i12.CustomDatePipe, typeof i13.SafePipe], [typeof i14.CommonModule, typeof i15.StencilModule, typeof i16.TableModule, typeof i17.ToastModule, typeof i18.OverlayModule], [typeof i15.StencilModule, typeof i16.TableModule, typeof i17.ToastModule, typeof i18.OverlayModule, typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.FieldNumberDirective, typeof i8.RadioDirective, typeof i9.CheckboxDirective, typeof i10.ToggleDirective, typeof i11.CustomCurrencyPipe, typeof i12.CustomDatePipe, typeof i13.SafePipe]>;
26
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.FieldNumberDirective, typeof i8.RadioDirective, typeof i9.CheckboxDirective, typeof i10.ToggleDirective, typeof i11.CustomCurrencyPipe, typeof i12.CustomDatePipe, typeof i13.SafePipe, typeof i14.SelectAutocompletePipe, typeof i15.SelectSelectAllPipe], [typeof i16.CommonModule, typeof i17.StencilModule, typeof i18.TableModule, typeof i19.ToastModule, typeof i20.OverlayModule], [typeof i17.StencilModule, typeof i18.TableModule, typeof i19.ToastModule, typeof i20.OverlayModule, typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.FieldNumberDirective, typeof i8.RadioDirective, typeof i9.CheckboxDirective, typeof i10.ToggleDirective, typeof i11.CustomCurrencyPipe, typeof i12.CustomDatePipe, typeof i13.SafePipe, typeof i14.SelectAutocompletePipe, typeof i15.SelectSelectAllPipe]>;
25
27
  static ɵinj: i0.ɵɵInjectorDeclaration<PaperlessModule>;
26
28
  }
@@ -1,7 +1,10 @@
1
1
  import { CustomCurrencyPipe } from './currency.pipe';
2
2
  import { CustomDatePipe } from './date.pipe';
3
3
  import { SafePipe } from './safe.pipe';
4
+ import { SelectAutocompletePipe } from './select-autocomplete.pipe';
4
5
  export * from './currency.pipe';
5
6
  export * from './date.pipe';
6
7
  export * from './safe.pipe';
7
- export declare const PIPES: (typeof CustomCurrencyPipe | typeof CustomDatePipe | typeof SafePipe)[];
8
+ export * from './select-autocomplete.pipe';
9
+ export * from './select-select-all.pipe';
10
+ export declare const PIPES: (typeof CustomCurrencyPipe | typeof CustomDatePipe | typeof SafePipe | typeof SelectAutocompletePipe)[];
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SelectAutocompletePipe implements PipeTransform {
4
+ transform(value: number): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectAutocompletePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SelectAutocompletePipe, "pSelectAutocomplete", false>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SelectSelectAllPipe implements PipeTransform {
4
+ transform(value: number): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectSelectAllPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SelectSelectAllPipe, "pSelectSelectAll", false>;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "2.19.7",
3
+ "version": "2.20.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Employes/Paperless.git"