ngx-techlify-checksheet 18.2.0 → 18.5.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.
@@ -9,6 +9,7 @@ export declare class ChecksheetFormButtonComponent {
9
9
  private router;
10
10
  submittableType: string;
11
11
  submittableId: number;
12
+ basePath: string[];
12
13
  saved: EventEmitter<any>;
13
14
  constructor(matDialog: MatDialog, alertService: AlertService, router: Router);
14
15
  /**
@@ -24,5 +25,5 @@ export declare class ChecksheetFormButtonComponent {
24
25
  */
25
26
  onSaved(checksheet: any): void;
26
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetFormButtonComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetFormButtonComponent, "app-checksheet-form-button", never, { "submittableType": { "alias": "submittableType"; "required": false; }; "submittableId": { "alias": "submittableId"; "required": false; }; }, { "saved": "saved"; }, never, never, false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetFormButtonComponent, "app-checksheet-form-button", never, { "submittableType": { "alias": "submittableType"; "required": false; }; "submittableId": { "alias": "submittableId"; "required": false; }; "basePath": { "alias": "basePath"; "required": false; }; }, { "saved": "saved"; }, never, never, false, never>;
28
29
  }
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { UntypedFormBuilder } from '@angular/forms';
3
3
  import { RequestHelperService, TechlifyListingControllerInterface, TimelineValue, AlertService } from 'ngx-techlify-core';
4
4
  import { ChecksheetService } from '../checksheet.service';
5
- import { ActivatedRoute } from "@angular/router";
5
+ import { ActivatedRoute, Router } from "@angular/router";
6
6
  import { Sort } from "@angular/material/sort";
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class ChecksheetListComponent extends TechlifyListingControllerInterface implements OnInit {
@@ -11,11 +11,13 @@ export declare class ChecksheetListComponent extends TechlifyListingControllerIn
11
11
  private service;
12
12
  private requestHelperService;
13
13
  private activatedRoute;
14
+ private router;
14
15
  submittableId: number;
15
16
  submittableType: string;
17
+ basePath: string[];
16
18
  displayedColumns: any[];
17
19
  with: string;
18
- constructor(alertService: AlertService, fb: UntypedFormBuilder, service: ChecksheetService, requestHelperService: RequestHelperService, activatedRoute: ActivatedRoute);
20
+ constructor(alertService: AlertService, fb: UntypedFormBuilder, service: ChecksheetService, requestHelperService: RequestHelperService, activatedRoute: ActivatedRoute, router: Router);
19
21
  ngOnInit(): void;
20
22
  private createForm;
21
23
  loadData(): void;
@@ -28,6 +30,7 @@ export declare class ChecksheetListComponent extends TechlifyListingControllerIn
28
30
  private subscribeToFormChanges;
29
31
  private subscribeToRouteChanges;
30
32
  onSortChange(sort: Sort): void;
33
+ navigateTo(pathSegments: string[]): Promise<boolean>;
31
34
  static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetListComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetListComponent, "app-checksheet-list", never, { "submittableId": { "alias": "submittableId"; "required": false; }; "submittableType": { "alias": "submittableType"; "required": false; }; }, {}, never, never, false, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetListComponent, "app-checksheet-list", never, { "submittableId": { "alias": "submittableId"; "required": false; }; "submittableType": { "alias": "submittableType"; "required": false; }; "basePath": { "alias": "basePath"; "required": false; }; }, {}, never, never, false, never>;
33
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-techlify-checksheet",
3
- "version": "18.2.0",
3
+ "version": "18.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18",
6
6
  "@angular/core": ">=18",