ngx-techlify-checksheet 18.0.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.
Files changed (76) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/@shared/file-upload-button/file-upload-button.component.mjs +50 -0
  3. package/esm2022/lib/@shared/index.mjs +2 -0
  4. package/esm2022/lib/@shared/material.module.mjs +171 -0
  5. package/esm2022/lib/@shared/shared.module.mjs +54 -0
  6. package/esm2022/lib/checksheet/checksheet-form/checksheet-form.component.mjs +161 -0
  7. package/esm2022/lib/checksheet/checksheet-form-button/checksheet-form-button.component.mjs +58 -0
  8. package/esm2022/lib/checksheet/checksheet-format-list/checksheet-format-list.component.mjs +123 -0
  9. package/esm2022/lib/checksheet/checksheet-format-question.service.mjs +18 -0
  10. package/esm2022/lib/checksheet/checksheet-format.service.mjs +24 -0
  11. package/esm2022/lib/checksheet/checksheet-list/checksheet-list.component.mjs +138 -0
  12. package/esm2022/lib/checksheet/checksheet-node-view/checksheet-node-view.component.mjs +59 -0
  13. package/esm2022/lib/checksheet/checksheet-question/checksheet-question.component.mjs +174 -0
  14. package/esm2022/lib/checksheet/checksheet-question-form/checksheet-question-form.component.mjs +148 -0
  15. package/esm2022/lib/checksheet/checksheet-question-list/checksheet-question-list.component.mjs +161 -0
  16. package/esm2022/lib/checksheet/checksheet-report/checksheet-report.component.mjs +242 -0
  17. package/esm2022/lib/checksheet/checksheet-review-button/checksheet-review-button.component.mjs +68 -0
  18. package/esm2022/lib/checksheet/checksheet-routing.module.mjs +44 -0
  19. package/esm2022/lib/checksheet/checksheet-submission-answer.service.mjs +18 -0
  20. package/esm2022/lib/checksheet/checksheet-submission-delete-button/checksheet-submission-delete-button.component.mjs +52 -0
  21. package/esm2022/lib/checksheet/checksheet-submission-file/checksheet-submission-file-delete-button/checksheet-submission-file-delete-button.component.mjs +55 -0
  22. package/esm2022/lib/checksheet/checksheet-submission-file/checksheet-submission-files/checksheet-submission-files.component.mjs +67 -0
  23. package/esm2022/lib/checksheet/checksheet-submission-file-upload/checksheet-submisison-file-upload.component.mjs +46 -0
  24. package/esm2022/lib/checksheet/checksheet-submission-file.service.mjs +18 -0
  25. package/esm2022/lib/checksheet/checksheet-submission-form/checksheet-submission-form.component.mjs +131 -0
  26. package/esm2022/lib/checksheet/checksheet-submission-form-button/checksheet-submission-form-button.component.mjs +58 -0
  27. package/esm2022/lib/checksheet/checksheet-submission-list/checksheet-submission-list.component.mjs +107 -0
  28. package/esm2022/lib/checksheet/checksheet-submission-review-button/checksheet-submission-review-button.component.mjs +68 -0
  29. package/esm2022/lib/checksheet/checksheet-submission-view/checksheet-submission-view.component.mjs +142 -0
  30. package/esm2022/lib/checksheet/checksheet-submission.service.mjs +36 -0
  31. package/esm2022/lib/checksheet/checksheet-submittable.type.mjs +2 -0
  32. package/esm2022/lib/checksheet/checksheet-view/checksheet-view.component.mjs +140 -0
  33. package/esm2022/lib/checksheet/checksheet.module.mjs +131 -0
  34. package/esm2022/lib/checksheet/checksheet.service.mjs +44 -0
  35. package/esm2022/lib/checksheet/mechanical-issue-form/mechanical-issue-form.component.mjs +73 -0
  36. package/esm2022/ngx-techlify-checksheet.mjs +5 -0
  37. package/esm2022/public-api.mjs +9 -0
  38. package/fesm2022/ngx-techlify-checksheet.mjs +2550 -0
  39. package/fesm2022/ngx-techlify-checksheet.mjs.map +1 -0
  40. package/index.d.ts +5 -0
  41. package/lib/@shared/file-upload-button/file-upload-button.component.d.ts +20 -0
  42. package/lib/@shared/index.d.ts +1 -0
  43. package/lib/@shared/material.module.d.ts +40 -0
  44. package/lib/@shared/shared.module.d.ts +14 -0
  45. package/lib/checksheet/checksheet-form/checksheet-form.component.d.ts +45 -0
  46. package/lib/checksheet/checksheet-form-button/checksheet-form-button.component.d.ts +29 -0
  47. package/lib/checksheet/checksheet-format-list/checksheet-format-list.component.d.ts +19 -0
  48. package/lib/checksheet/checksheet-format-question.service.d.ts +7 -0
  49. package/lib/checksheet/checksheet-format.service.d.ts +10 -0
  50. package/lib/checksheet/checksheet-list/checksheet-list.component.d.ts +31 -0
  51. package/lib/checksheet/checksheet-node-view/checksheet-node-view.component.d.ts +25 -0
  52. package/lib/checksheet/checksheet-question/checksheet-question.component.d.ts +34 -0
  53. package/lib/checksheet/checksheet-question-form/checksheet-question-form.component.d.ts +38 -0
  54. package/lib/checksheet/checksheet-question-list/checksheet-question-list.component.d.ts +26 -0
  55. package/lib/checksheet/checksheet-report/checksheet-report.component.d.ts +47 -0
  56. package/lib/checksheet/checksheet-review-button/checksheet-review-button.component.d.ts +32 -0
  57. package/lib/checksheet/checksheet-routing.module.d.ts +7 -0
  58. package/lib/checksheet/checksheet-submission-answer.service.d.ts +7 -0
  59. package/lib/checksheet/checksheet-submission-delete-button/checksheet-submission-delete-button.component.d.ts +24 -0
  60. package/lib/checksheet/checksheet-submission-file/checksheet-submission-file-delete-button/checksheet-submission-file-delete-button.component.d.ts +24 -0
  61. package/lib/checksheet/checksheet-submission-file/checksheet-submission-files/checksheet-submission-files.component.d.ts +17 -0
  62. package/lib/checksheet/checksheet-submission-file-upload/checksheet-submisison-file-upload.component.d.ts +13 -0
  63. package/lib/checksheet/checksheet-submission-file.service.d.ts +7 -0
  64. package/lib/checksheet/checksheet-submission-form/checksheet-submission-form.component.d.ts +27 -0
  65. package/lib/checksheet/checksheet-submission-form-button/checksheet-submission-form-button.component.d.ts +29 -0
  66. package/lib/checksheet/checksheet-submission-list/checksheet-submission-list.component.d.ts +24 -0
  67. package/lib/checksheet/checksheet-submission-review-button/checksheet-submission-review-button.component.d.ts +32 -0
  68. package/lib/checksheet/checksheet-submission-view/checksheet-submission-view.component.d.ts +37 -0
  69. package/lib/checksheet/checksheet-submission.service.d.ts +22 -0
  70. package/lib/checksheet/checksheet-submittable.type.d.ts +1 -0
  71. package/lib/checksheet/checksheet-view/checksheet-view.component.d.ts +37 -0
  72. package/lib/checksheet/checksheet.module.d.ts +34 -0
  73. package/lib/checksheet/checksheet.service.d.ts +25 -0
  74. package/lib/checksheet/mechanical-issue-form/mechanical-issue-form.component.d.ts +21 -0
  75. package/package.json +45 -0
  76. package/public-api.d.ts +5 -0
@@ -0,0 +1,24 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { UntypedFormBuilder } from '@angular/forms';
3
+ import { RequestHelperService, TechlifyListingControllerInterface, TimelineValue, AlertService } from 'ngx-techlify-core';
4
+ import { ChecksheetSubmissionService } from '../checksheet-submission.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ChecksheetSubmissionListComponent extends TechlifyListingControllerInterface implements OnInit {
7
+ private alertService;
8
+ private fb;
9
+ private checksheetSubmissionService;
10
+ private requestHelperService;
11
+ displayedColumns: any[];
12
+ with: string;
13
+ constructor(alertService: AlertService, fb: UntypedFormBuilder, checksheetSubmissionService: ChecksheetSubmissionService, requestHelperService: RequestHelperService);
14
+ ngOnInit(): void;
15
+ private createForm;
16
+ loadData(): void;
17
+ onDurationChange(timelineValue: TimelineValue): void;
18
+ /**
19
+ * Handle checksheet submission delete event.
20
+ */
21
+ onDeleted(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetSubmissionListComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetSubmissionListComponent, "app-checksheet-submission-list", never, {}, {}, never, never, false, never>;
24
+ }
@@ -0,0 +1,32 @@
1
+ import { EventEmitter, TemplateRef } from '@angular/core';
2
+ import { AlertService, CredentialsService, User } from 'ngx-techlify-core';
3
+ import { MatDialog } from '@angular/material/dialog';
4
+ import { ChecksheetSubmissionService } from '../checksheet-submission.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ChecksheetSubmissionReviewButtonComponent {
7
+ private matDialog;
8
+ private credentialsService;
9
+ private checksheetSubmissionService;
10
+ private alertService;
11
+ submission: any;
12
+ viewType: 'icon' | 'button';
13
+ requestParams: {
14
+ with: string;
15
+ };
16
+ reviewed: EventEmitter<any>;
17
+ user: User;
18
+ isWorking: boolean;
19
+ constructor(matDialog: MatDialog, credentialsService: CredentialsService, checksheetSubmissionService: ChecksheetSubmissionService, alertService: AlertService);
20
+ /**
21
+ * Show the review dialog.
22
+ *
23
+ * @param templateRef
24
+ */
25
+ openDialog(templateRef: TemplateRef<any>): void;
26
+ /**
27
+ * Review checksheet.
28
+ */
29
+ reviewChecksheet(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetSubmissionReviewButtonComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetSubmissionReviewButtonComponent, "app-checksheet-submission-review-button", never, { "submission": { "alias": "submission"; "required": false; }; "viewType": { "alias": "viewType"; "required": false; }; "requestParams": { "alias": "requestParams"; "required": false; }; }, { "reviewed": "reviewed"; }, never, never, false, never>;
32
+ }
@@ -0,0 +1,37 @@
1
+ import { Location } from '@angular/common';
2
+ import { OnInit } from '@angular/core';
3
+ import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
4
+ import { MatDialog } from '@angular/material/dialog';
5
+ import { ActivatedRoute } from '@angular/router';
6
+ import { AlertService, DataManager, ErrorHandlerService, FormValidatorService } from 'ngx-techlify-core';
7
+ import { NgxSpinnerService } from 'ngx-spinner';
8
+ import { ChecksheetService } from "../checksheet.service";
9
+ import * as i0 from "@angular/core";
10
+ export declare class ChecksheetSubmissionViewComponent implements OnInit {
11
+ private formValidatorService;
12
+ private fb;
13
+ private spinnerService;
14
+ private alertService;
15
+ location: Location;
16
+ private errorHandler;
17
+ private dataManager;
18
+ private dialog;
19
+ private route;
20
+ private service;
21
+ checksheetSubmissionForm: UntypedFormGroup;
22
+ submission: any;
23
+ selectedFormat: any;
24
+ submissionId: number;
25
+ constructor(formValidatorService: FormValidatorService, fb: UntypedFormBuilder, spinnerService: NgxSpinnerService, alertService: AlertService, location: Location, errorHandler: ErrorHandlerService, dataManager: DataManager, dialog: MatDialog, route: ActivatedRoute, service: ChecksheetService);
26
+ ngOnInit(): void;
27
+ redirectBack(): void;
28
+ /**Method to evaluate form fields*/
29
+ isFieldValid(field: string): any;
30
+ /**Method to find error in form fields*/
31
+ getErrorMessage(field: string): any;
32
+ submit(): Promise<void>;
33
+ onSaved(): void;
34
+ private createForm;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetSubmissionViewComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetSubmissionViewComponent, "app-checksheet-submission-view", never, {}, {}, never, never, false, never>;
37
+ }
@@ -0,0 +1,22 @@
1
+ import { HttpService, TechlifyServiceBaseClass } from 'ngx-techlify-core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChecksheetSubmissionService extends TechlifyServiceBaseClass {
5
+ constructor(httpService: HttpService);
6
+ /**
7
+ * Sent request to submit the checksheet submission.
8
+ *
9
+ * @param submissionId
10
+ * @param params
11
+ */
12
+ submit(submissionId: number, params?: any): Observable<any>;
13
+ /**
14
+ * Send request to submit the checksheet submission review.
15
+ *
16
+ * @param submissionId
17
+ * @param params
18
+ */
19
+ review(submissionId: number, params?: any): Observable<any>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetSubmissionService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChecksheetSubmissionService>;
22
+ }
@@ -0,0 +1 @@
1
+ export type ChecksheetSubmittableType = 'fixed-asset';
@@ -0,0 +1,37 @@
1
+ import { Location } from '@angular/common';
2
+ import { OnInit } from '@angular/core';
3
+ import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
4
+ import { MatDialog } from '@angular/material/dialog';
5
+ import { ActivatedRoute } from '@angular/router';
6
+ import { NgxSpinnerService } from 'ngx-spinner';
7
+ import { AlertService, DataManager, FormValidatorService, ErrorHandlerService } from 'ngx-techlify-core';
8
+ import { ChecksheetService } from '../checksheet.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class ChecksheetViewComponent implements OnInit {
11
+ private formValidatorService;
12
+ private fb;
13
+ private spinnerService;
14
+ private alertService;
15
+ location: Location;
16
+ private errorHandler;
17
+ private dataManager;
18
+ private dialog;
19
+ private route;
20
+ private checksheetSubmissionService;
21
+ checksheetSubmissionForm: UntypedFormGroup;
22
+ submission: any;
23
+ selectedFormat: any;
24
+ submissionId: number;
25
+ constructor(formValidatorService: FormValidatorService, fb: UntypedFormBuilder, spinnerService: NgxSpinnerService, alertService: AlertService, location: Location, errorHandler: ErrorHandlerService, dataManager: DataManager, dialog: MatDialog, route: ActivatedRoute, checksheetSubmissionService: ChecksheetService);
26
+ ngOnInit(): void;
27
+ private createForm;
28
+ redirectBack(): void;
29
+ /**Method to evaluate form fields*/
30
+ isFieldValid(field: string): any;
31
+ /**Method to find error in form fields*/
32
+ getErrorMessage(field: string): any;
33
+ submit(): Promise<void>;
34
+ onSaved(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetViewComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChecksheetViewComponent, "app-checksheet-view", never, {}, {}, never, never, false, never>;
37
+ }
@@ -0,0 +1,34 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./checksheet-format-list/checksheet-format-list.component";
3
+ import * as i2 from "./checksheet-form/checksheet-form.component";
4
+ import * as i3 from "./checksheet-question-form/checksheet-question-form.component";
5
+ import * as i4 from "./checksheet-question/checksheet-question.component";
6
+ import * as i5 from "./checksheet-question-list/checksheet-question-list.component";
7
+ import * as i6 from "./checksheet-list/checksheet-list.component";
8
+ import * as i7 from "./checksheet-submission-form/checksheet-submission-form.component";
9
+ import * as i8 from "./checksheet-view/checksheet-view.component";
10
+ import * as i9 from "./checksheet-node-view/checksheet-node-view.component";
11
+ import * as i10 from "./mechanical-issue-form/mechanical-issue-form.component";
12
+ import * as i11 from "./checksheet-report/checksheet-report.component";
13
+ import * as i12 from "./checksheet-form-button/checksheet-form-button.component";
14
+ import * as i13 from "./checksheet-submission-delete-button/checksheet-submission-delete-button.component";
15
+ import * as i14 from "./checksheet-review-button/checksheet-review-button.component";
16
+ import * as i15 from "./checksheet-submission-view/checksheet-submission-view.component";
17
+ import * as i16 from "./checksheet-submission-form-button/checksheet-submission-form-button.component";
18
+ import * as i17 from "./checksheet-submission-list/checksheet-submission-list.component";
19
+ import * as i18 from "./checksheet-submission-review-button/checksheet-submission-review-button.component";
20
+ import * as i19 from "@angular/common";
21
+ import * as i20 from "./checksheet-routing.module";
22
+ import * as i21 from "../@shared/shared.module";
23
+ import * as i22 from "ngx-infinite-scroll";
24
+ import * as i23 from "ngx-techlify-core";
25
+ import * as i24 from "ngx-editor";
26
+ import * as i25 from "@angular/material/radio";
27
+ import * as i26 from "@angular/material/progress-bar";
28
+ import * as i27 from "./checksheet-submission-file-upload/checksheet-submisison-file-upload.component";
29
+ import * as i28 from "./checksheet-submission-file/checksheet-submission-files/checksheet-submission-files.component";
30
+ export declare class ChecksheetModule {
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetModule, never>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChecksheetModule, [typeof i1.ChecksheetFormatListComponent, typeof i2.ChecksheetFormComponent, typeof i3.ChecksheetQuestionFormComponent, typeof i4.ChecksheetQuestionComponent, typeof i5.ChecksheetQuestionListComponent, typeof i6.ChecksheetListComponent, typeof i7.ChecksheetSubmissionFormComponent, typeof i8.ChecksheetViewComponent, typeof i9.ChecksheetNodeViewComponent, typeof i10.MechanicalIssueFormComponent, typeof i11.ChecksheetReportComponent, typeof i12.ChecksheetFormButtonComponent, typeof i13.ChecksheetSubmissionDeleteButtonComponent, typeof i14.ChecksheetReviewButtonComponent, typeof i15.ChecksheetSubmissionViewComponent, typeof i16.ChecksheetSubmissionFormButtonComponent, typeof i17.ChecksheetSubmissionListComponent, typeof i18.ChecksheetSubmissionReviewButtonComponent], [typeof i19.CommonModule, typeof i20.ChecksheetRoutingModule, typeof i21.SharedModule, typeof i22.InfiniteScrollModule, typeof i23.ActionPopupModule, typeof i23.SearchableSelectorModule, typeof i23.NoteModule, typeof i24.NgxEditorModule, typeof i25.MatRadioModule, typeof i23.EntityFilesViewAllModule, typeof i23.ExportExcelModule, typeof i26.MatProgressBarModule, typeof i23.TimelineFilterModule, typeof i27.ChecksheetSubmissionFileUploadComponent, typeof i28.ChecksheetSubmissionFilesComponent, typeof i21.SharedModule], [typeof i6.ChecksheetListComponent, typeof i12.ChecksheetFormButtonComponent]>;
33
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChecksheetModule>;
34
+ }
@@ -0,0 +1,25 @@
1
+ import { DataManager, HttpService, TechlifyServiceBaseClass } from 'ngx-techlify-core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChecksheetService extends TechlifyServiceBaseClass {
5
+ private dataManager;
6
+ constructor(httpService: HttpService, dataManager: DataManager);
7
+ /**
8
+ * Sent request to submit the Checksheet.
9
+ *
10
+ * @param submissionId
11
+ * @param params
12
+ */
13
+ submit(submissionId: number, params?: any): Observable<any>;
14
+ /**
15
+ * Send request to submit the Checksheet review.
16
+ *
17
+ * @param submissionId
18
+ * @param params
19
+ */
20
+ review(submissionId: number, params?: any): Observable<any>;
21
+ getMechanicalIssues(submissionId: any): Promise<any>;
22
+ createMechanicalIssues(submissionId: any, data: any): Promise<any>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChecksheetService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChecksheetService>;
25
+ }
@@ -0,0 +1,21 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { MatDialogRef } from '@angular/material/dialog';
3
+ import { NgxSpinnerService } from 'ngx-spinner';
4
+ import { ErrorHandlerService } from 'ngx-techlify-core';
5
+ import { ChecksheetService } from '../checksheet.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MechanicalIssueFormComponent implements OnInit {
8
+ dialogRef: MatDialogRef<MechanicalIssueFormComponent>;
9
+ data: any;
10
+ service: ChecksheetService;
11
+ private errorHandler;
12
+ private spinnerService;
13
+ submission: any;
14
+ mechanicalIssues: any;
15
+ constructor(dialogRef: MatDialogRef<MechanicalIssueFormComponent>, data: any, service: ChecksheetService, errorHandler: ErrorHandlerService, spinnerService: NgxSpinnerService);
16
+ ngOnInit(): void;
17
+ loadMechanicalIssues(): Promise<void>;
18
+ submit(): Promise<void>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MechanicalIssueFormComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<MechanicalIssueFormComponent, "app-mechanical-issue-form", never, {}, {}, never, never, false, never>;
21
+ }
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "ngx-techlify-checksheet",
3
+ "version": "18.0.0",
4
+ "peerDependencies": {
5
+ "@angular/common": ">=18",
6
+ "@angular/core": ">=18",
7
+ "@angular/animations": ">=18",
8
+ "@angular/compiler": ">=18",
9
+ "@angular/forms": ">=18",
10
+ "@angular/platform-browser": ">=18",
11
+ "@angular/platform-browser-dynamic": ">=18",
12
+ "@angular/router": ">=18",
13
+ "@angular/material": ">=18",
14
+ "@angular/cdk": ">=18",
15
+ "rxjs": ">=7.8.1",
16
+ "zone.js": ">=0.14.10",
17
+ "ngx-techlify-core": "^18.7.2"
18
+ },
19
+ "dependencies": {
20
+ "tslib": "^2.0.0",
21
+ "material-design-icons-iconfont": "^6.1.0",
22
+ "ngx-doc-viewer": "^15.0.0",
23
+ "ngx-infinite-scroll": "^18.0.0",
24
+ "@ngneat/until-destroy": "^9.2.3",
25
+ "jsondiffpatch": "^0.5.0",
26
+ "xlsx": "^0.18.5",
27
+ "ngx-editor": "^18.0.0",
28
+ "moment": "^2.29.4",
29
+ "ngx-toastr": "^18.0.0"
30
+ },
31
+ "module": "fesm2022/ngx-techlify-checksheet.mjs",
32
+ "typings": "index.d.ts",
33
+ "exports": {
34
+ "./package.json": {
35
+ "default": "./package.json"
36
+ },
37
+ ".": {
38
+ "types": "./index.d.ts",
39
+ "esm2022": "./esm2022/ngx-techlify-checksheet.mjs",
40
+ "esm": "./esm2022/ngx-techlify-checksheet.mjs",
41
+ "default": "./fesm2022/ngx-techlify-checksheet.mjs"
42
+ }
43
+ },
44
+ "sideEffects": false
45
+ }
@@ -0,0 +1,5 @@
1
+ export * from './lib/checksheet/checksheet.module';
2
+ export * from './lib/checksheet/checksheet-submission-list/checksheet-submission-list.component';
3
+ export * from './lib/checksheet/checksheet-submission-form-button/checksheet-submission-form-button.component';
4
+ export * from './lib/checksheet/checksheet-form-button/checksheet-form-button.component';
5
+ export * from './lib/checksheet/checksheet-list/checksheet-list.component';