@paperless/angular 0.1.0-alpha.308 → 0.1.0-alpha.310

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.
@@ -1,6 +1,6 @@
1
1
  import { AbstractControl, FormArray, FormControl, FormGroup } from '@angular/forms';
2
2
  import * as i0 from "@angular/core";
3
- export declare abstract class FormBaseComponent {
3
+ export declare abstract class BaseFormComponent {
4
4
  markedDirty: boolean;
5
5
  scrollToFirstError(): void;
6
6
  markControlDirty(control: FormControl | FormGroup | FormArray | AbstractControl): void;
@@ -10,6 +10,6 @@ export declare abstract class FormBaseComponent {
10
10
  firstControlError(control: FormControl | AbstractControl | FormGroup | FormArray, showChildErrors?: boolean): string | undefined;
11
11
  resetControl(control: FormControl | FormGroup | FormArray | AbstractControl): void;
12
12
  resetForm(formGroup: FormGroup): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<FormBaseComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<FormBaseComponent, "ng-component", never, {}, {}, never, never, false, never>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormComponent, "ng-component", never, {}, {}, never, never, false, never>;
15
15
  }
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormControl, FormGroup } from '@angular/forms';
3
3
  import { QuickFilter } from '@paperless/core';
4
- import { FormBaseComponent } from './form.component';
4
+ import { BaseFormComponent } from './form.component';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare type TableQuickFilter = QuickFilter & {
7
7
  value: string;
@@ -15,7 +15,7 @@ export interface TableOptions {
15
15
  filters: any[];
16
16
  selectedRows: any[];
17
17
  }
18
- export declare abstract class BaseTableComponent extends FormBaseComponent implements OnInit {
18
+ export declare abstract class BaseTableComponent extends BaseFormComponent implements OnInit {
19
19
  protected quickFilters: any[];
20
20
  filterForm: FormGroup<any>;
21
21
  filterFormQuickFilterKey?: string;
@@ -295,7 +295,7 @@ export declare class PModal {
295
295
  protected el: HTMLElement;
296
296
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
297
297
  static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
298
- static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "scrollLock": "scrollLock"; "show": "show"; "showMobileClose": "showMobileClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
298
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "scrollLock": "scrollLock"; "show": "show"; "showClose": "showClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
299
299
  }
300
300
  export declare interface PModalBody extends Components.PModalBody {
301
301
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "0.1.0-alpha.308",
3
+ "version": "0.1.0-alpha.310",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0",
6
6
  "@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",