master-control 0.3.55 → 0.3.57

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.
@@ -0,0 +1,26 @@
1
+ import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
2
+ import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FilePreviewComponent implements OnInit, OnDestroy {
5
+ private sanitizer;
6
+ field: import("@angular/core").InputSignal<any>;
7
+ file: import("@angular/core").InputSignal<File | null>;
8
+ closed: EventEmitter<void>;
9
+ fileDataUrl: any;
10
+ fileObjectUrl: any;
11
+ textContent: any;
12
+ safeFileUrl: SafeResourceUrl | null;
13
+ constructor(sanitizer: DomSanitizer);
14
+ isImage(): any;
15
+ isPdf(): any;
16
+ isText(): any;
17
+ isUnsupported(): any;
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ loadFileContent(): void;
21
+ onBackdropClick(event: Event): void;
22
+ closePreview(): void;
23
+ downloadFile(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilePreviewComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilePreviewComponent, "lib-file-preview", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "file": { "alias": "file"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, never, true, never>;
26
+ }
@@ -33,6 +33,7 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
33
33
  hoveredIndex: number;
34
34
  searchTimeout: any;
35
35
  horizontalLineObj: any;
36
+ previewFile: File | null;
36
37
  constructor(ngZone: NgZone, masterService: MasterService);
37
38
  ngOnInit(): void;
38
39
  ngOnChanges(changes: SimpleChanges): void;
@@ -77,6 +78,11 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
77
78
  getCookieValue(name: string): string;
78
79
  validateMedicalQuestions(): void;
79
80
  valueChangeForMultiselect(question: any): void;
81
+ onDocumentFilePreview(event: {
82
+ file: File;
83
+ index: number;
84
+ }): void;
85
+ closeFilePreview(): void;
80
86
  static ɵfac: i0.ɵɵFactoryDeclaration<MedialQuestionsComponent, never>;
81
87
  static ɵcmp: i0.ɵɵComponentDeclaration<MedialQuestionsComponent, "lib-medial-questions", never, { "medialQuestionResponse": { "alias": "medialQuestionResponse"; "required": false; "isSignal": true; }; "personUWOpenQuoteResponse": { "alias": "personUWOpenQuoteResponse"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
82
88
  }
@@ -1,10 +1,14 @@
1
- import { ElementRef, EventEmitter } from '@angular/core';
1
+ import { ElementRef, EventEmitter, ComponentRef, EnvironmentInjector, ApplicationRef } from '@angular/core';
2
2
  import { MasterControlService } from '../master-control.service';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
+ import { FilePreviewComponent } from '../file-preview/file-preview.component';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class UploadComponent implements ControlValueAccessor {
6
7
  masterService: MasterControlService;
7
- constructor(masterService: MasterControlService);
8
+ appRef: ApplicationRef;
9
+ injector: EnvironmentInjector;
10
+ documentUploaderField: import("@angular/core").InputSignal<any>;
11
+ constructor(masterService: MasterControlService, appRef: ApplicationRef, injector: EnvironmentInjector);
8
12
  field: any;
9
13
  reactiveFormControlobject: any;
10
14
  fileInput: ElementRef<HTMLInputElement>;
@@ -13,6 +17,11 @@ export declare class UploadComponent implements ControlValueAccessor {
13
17
  file: File;
14
18
  index: number;
15
19
  }>;
20
+ filePreview: EventEmitter<{
21
+ file: File;
22
+ index: number;
23
+ }>;
24
+ filePreviewRef: ComponentRef<FilePreviewComponent> | null;
16
25
  uploadedFiles: File[];
17
26
  value: any;
18
27
  _onChange: any;
@@ -26,6 +35,9 @@ export declare class UploadComponent implements ControlValueAccessor {
26
35
  removeFile(index: any, event?: Event): void;
27
36
  hasFiles(): any;
28
37
  triggerFileInput(): void;
38
+ previewFile(file: File, index: number): void;
39
+ closeFilePreview(): void;
40
+ ngOnDestroy(): void;
29
41
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadComponent, "lib-upload", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; "fileRemoved": "fileRemoved"; }, never, never, true, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadComponent, "lib-upload", never, { "documentUploaderField": { "alias": "documentUploaderField"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; "fileRemoved": "fileRemoved"; "filePreview": "filePreview"; }, never, never, true, never>;
31
43
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "master-control",
3
- "version": "0.3.55",
3
+ "version": "0.3.57",
4
4
  "description": "medical questions changes",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.2.0",
package/public-api.d.ts CHANGED
@@ -64,4 +64,5 @@ export * from './lib/info-textbox/info-textbox.component';
64
64
  export * from './lib/textbox-with-underscore/textbox-with-underscore.component';
65
65
  export * from './lib/label-with-image/label-with-image.component';
66
66
  export * from './lib/underscore-mob-number/underscore-mob-number.component';
67
- export * from './lib/motor-glow-plan-details/motor-glow-plan-details.component';
67
+ export * from './lib/directives/customized.tooltip.directive';
68
+ export * from './lib/file-preview/file-preview.component';
@@ -1,23 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { Component, EventEmitter, input, Output } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "@angular/common";
5
- export class MotorGlowPlanDetailsComponent {
6
- field = input.required();
7
- editPlanClick = new EventEmitter();
8
- constructor() { }
9
- onEditPlanClicked() {
10
- this.editPlanClick.emit();
11
- }
12
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MotorGlowPlanDetailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: MotorGlowPlanDetailsComponent, isStandalone: true, selector: "lib-motor-glow-plan-details", inputs: { field: { classPropertyName: "field", publicName: "field", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { editPlanClick: "editPlanClick" }, ngImport: i0, template: "<div class=\"yellow-background\" *ngIf=\"field().isVisible\">\r\n <div class=\"row\" style=\"padding-bottom: 16px;\">\r\n <div class=\"col-6\" style=\"padding-bottom: 8px;\">\r\n <span class=\"label-font\">Sum Assured</span>\r\n </div>\r\n <div class=\"col-6 d-flex justify-content-end\" (click)=\"onEditPlanClicked()\">\r\n <span class=\"label-font\">Edit plan <span> <img style=\"height: 12px; width: 12px; transform: translate(2px, -2px);\" src=\"https://cdn.godigit.com/digitPlusAssets/retail-life-icon/svgicon/edit-icon.svg\" alt=\"edit icon\"> </span></span>\r\n </div>\r\n <div class=\"col-12\">\r\n <span class=\"value-font\">{{field()?.configData?.sumAssuedValue ? field()?.configData?.sumAssuedValue : '25' }}</span>\r\n </div>\r\n </div>\r\n <div class=\"row\" style=\"padding-bottom: 16px;\">\r\n <div class=\"col-12\" style=\"padding-bottom: 8px;\"><span class=\"label-font\">Policy Term (PT)</span></div>\r\n <div class=\"col-12 value-font\"><span>{{field()?.configData?.ptYears ? field()?.configData?.ptYears : '5' }} yrs <span class=\"year-label\">(Till {{field()?.configData?.ptValidTill ? field()?.configData?.ptValidTill : '2029' }})</span></span></div>\r\n\r\n </div>\r\n <div class=\"row\" style=\"padding-bottom: 16px;\">\r\n <div class=\"col-12\" style=\"padding-bottom: 8px;\"><span class=\"label-font\">Premium</span></div>\r\n <div class=\"col-12\"><span class=\"premium-color\">\u20B9 {{field()?.configData?.premiumAmount ? field()?.configData?.premiumAmount : '12,025' }}/ {{field()?.configData?.premiumFrequency ? field()?.configData?.premiumFrequency : 'year' }}</span></div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-12\"> <span class=\"eligibility-font\">Eligible for maximum Sum Assured of \u20B9{{field()?.configData?.maxSAValue ? field()?.configData?.maxSAValue : '25' }} Lakh.</span></div>\r\n </div>\r\n\r\n</div>\r\n", styles: [".yellow-background{background-color:#fb03;padding:16px;border-radius:8px}.label-font{color:#444;font-family:Mulish!important;letter-spacing:0px;font-size:12px;font-weight:700;line-height:16px}.value-font{font-size:14px;font-weight:700;font-family:Mulish!important;letter-spacing:0px;color:#444}.eligibility-font{color:#444;font-size:12px;font-family:Mulish!important;letter-spacing:0px;font-weight:400;line-height:16px}.premium-color{color:#169f7d;font-family:Mulish!important;letter-spacing:0px;font-weight:700;line-height:20px;font-size:14px}.year-label{color:#8f8f8f;font-family:Mulish!important;letter-spacing:0px;font-weight:400;line-height:20px;font-size:14px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
14
- }
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MotorGlowPlanDetailsComponent, decorators: [{
16
- type: Component,
17
- args: [{ selector: 'lib-motor-glow-plan-details', standalone: true, imports: [
18
- CommonModule
19
- ], template: "<div class=\"yellow-background\" *ngIf=\"field().isVisible\">\r\n <div class=\"row\" style=\"padding-bottom: 16px;\">\r\n <div class=\"col-6\" style=\"padding-bottom: 8px;\">\r\n <span class=\"label-font\">Sum Assured</span>\r\n </div>\r\n <div class=\"col-6 d-flex justify-content-end\" (click)=\"onEditPlanClicked()\">\r\n <span class=\"label-font\">Edit plan <span> <img style=\"height: 12px; width: 12px; transform: translate(2px, -2px);\" src=\"https://cdn.godigit.com/digitPlusAssets/retail-life-icon/svgicon/edit-icon.svg\" alt=\"edit icon\"> </span></span>\r\n </div>\r\n <div class=\"col-12\">\r\n <span class=\"value-font\">{{field()?.configData?.sumAssuedValue ? field()?.configData?.sumAssuedValue : '25' }}</span>\r\n </div>\r\n </div>\r\n <div class=\"row\" style=\"padding-bottom: 16px;\">\r\n <div class=\"col-12\" style=\"padding-bottom: 8px;\"><span class=\"label-font\">Policy Term (PT)</span></div>\r\n <div class=\"col-12 value-font\"><span>{{field()?.configData?.ptYears ? field()?.configData?.ptYears : '5' }} yrs <span class=\"year-label\">(Till {{field()?.configData?.ptValidTill ? field()?.configData?.ptValidTill : '2029' }})</span></span></div>\r\n\r\n </div>\r\n <div class=\"row\" style=\"padding-bottom: 16px;\">\r\n <div class=\"col-12\" style=\"padding-bottom: 8px;\"><span class=\"label-font\">Premium</span></div>\r\n <div class=\"col-12\"><span class=\"premium-color\">\u20B9 {{field()?.configData?.premiumAmount ? field()?.configData?.premiumAmount : '12,025' }}/ {{field()?.configData?.premiumFrequency ? field()?.configData?.premiumFrequency : 'year' }}</span></div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-12\"> <span class=\"eligibility-font\">Eligible for maximum Sum Assured of \u20B9{{field()?.configData?.maxSAValue ? field()?.configData?.maxSAValue : '25' }} Lakh.</span></div>\r\n </div>\r\n\r\n</div>\r\n", styles: [".yellow-background{background-color:#fb03;padding:16px;border-radius:8px}.label-font{color:#444;font-family:Mulish!important;letter-spacing:0px;font-size:12px;font-weight:700;line-height:16px}.value-font{font-size:14px;font-weight:700;font-family:Mulish!important;letter-spacing:0px;color:#444}.eligibility-font{color:#444;font-size:12px;font-family:Mulish!important;letter-spacing:0px;font-weight:400;line-height:16px}.premium-color{color:#169f7d;font-family:Mulish!important;letter-spacing:0px;font-weight:700;line-height:20px;font-size:14px}.year-label{color:#8f8f8f;font-family:Mulish!important;letter-spacing:0px;font-weight:400;line-height:20px;font-size:14px}\n"] }]
20
- }], ctorParameters: () => [], propDecorators: { editPlanClick: [{
21
- type: Output
22
- }] } });
23
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW90b3ItZ2xvdy1wbGFuLWRldGFpbHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbWFzdGVyLWNvbnRyb2wvc3JjL2xpYi9tb3Rvci1nbG93LXBsYW4tZGV0YWlscy9tb3Rvci1nbG93LXBsYW4tZGV0YWlscy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tYXN0ZXItY29udHJvbC9zcmMvbGliL21vdG9yLWdsb3ctcGxhbi1kZXRhaWxzL21vdG9yLWdsb3ctcGxhbi1kZXRhaWxzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFXdkUsTUFBTSxPQUFPLDZCQUE2QjtJQUN4QyxLQUFLLEdBQVEsS0FBSyxDQUFDLFFBQVEsRUFBTyxDQUFDO0lBQ3hCLGFBQWEsR0FBRyxJQUFJLFlBQVksRUFBTyxDQUFDO0lBQ25ELGdCQUFlLENBQUM7SUFFaEIsaUJBQWlCO1FBQ2YsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUM1QixDQUFDO3dHQVBVLDZCQUE2Qjs0RkFBN0IsNkJBQTZCLHVRQ1oxQyxzNERBMEJBLHF0QkRuQkksWUFBWTs7NEZBS0gsNkJBQTZCO2tCQVR6QyxTQUFTOytCQUNFLDZCQUE2QixjQUMzQixJQUFJLFdBQ1A7d0JBQ1AsWUFBWTtxQkFDYjt3REFNVSxhQUFhO3NCQUF0QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIGlucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLW1vdG9yLWdsb3ctcGxhbi1kZXRhaWxzJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGltcG9ydHM6IFtcclxuICAgIENvbW1vbk1vZHVsZVxyXG4gIF0sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL21vdG9yLWdsb3ctcGxhbi1kZXRhaWxzLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vbW90b3ItZ2xvdy1wbGFuLWRldGFpbHMuY29tcG9uZW50LmNzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIE1vdG9yR2xvd1BsYW5EZXRhaWxzQ29tcG9uZW50IHtcclxuICBmaWVsZDogYW55ID0gaW5wdXQucmVxdWlyZWQ8YW55PigpO1xyXG4gICBAT3V0cHV0KCkgZWRpdFBsYW5DbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIGNvbnN0cnVjdG9yKCkge31cclxuXHJcbiAgb25FZGl0UGxhbkNsaWNrZWQoKSB7XHJcbiAgICB0aGlzLmVkaXRQbGFuQ2xpY2suZW1pdCgpO1xyXG4gIH1cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwieWVsbG93LWJhY2tncm91bmRcIiAqbmdJZj1cImZpZWxkKCkuaXNWaXNpYmxlXCI+XHJcbiAgPGRpdiBjbGFzcz1cInJvd1wiIHN0eWxlPVwicGFkZGluZy1ib3R0b206IDE2cHg7XCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiY29sLTZcIiBzdHlsZT1cInBhZGRpbmctYm90dG9tOiA4cHg7XCI+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwibGFiZWwtZm9udFwiPlN1bSBBc3N1cmVkPC9zcGFuPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwiY29sLTYgZC1mbGV4IGp1c3RpZnktY29udGVudC1lbmRcIiAoY2xpY2spPVwib25FZGl0UGxhbkNsaWNrZWQoKVwiPlxyXG4gICAgICA8c3BhbiBjbGFzcz1cImxhYmVsLWZvbnRcIj5FZGl0IHBsYW4gPHNwYW4+IDxpbWcgc3R5bGU9XCJoZWlnaHQ6IDEycHg7IHdpZHRoOiAxMnB4OyB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgycHgsIC0ycHgpO1wiIHNyYz1cImh0dHBzOi8vY2RuLmdvZGlnaXQuY29tL2RpZ2l0UGx1c0Fzc2V0cy9yZXRhaWwtbGlmZS1pY29uL3N2Z2ljb24vZWRpdC1pY29uLnN2Z1wiIGFsdD1cImVkaXQgaWNvblwiPiA8L3NwYW4+PC9zcGFuPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwiY29sLTEyXCI+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwidmFsdWUtZm9udFwiPnt7ZmllbGQoKT8uY29uZmlnRGF0YT8uc3VtQXNzdWVkVmFsdWUgPyBmaWVsZCgpPy5jb25maWdEYXRhPy5zdW1Bc3N1ZWRWYWx1ZSA6ICcyNScgfX08L3NwYW4+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuICA8ZGl2IGNsYXNzPVwicm93XCIgc3R5bGU9XCJwYWRkaW5nLWJvdHRvbTogMTZweDtcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJjb2wtMTJcIiBzdHlsZT1cInBhZGRpbmctYm90dG9tOiA4cHg7XCI+PHNwYW4gY2xhc3M9XCJsYWJlbC1mb250XCI+UG9saWN5IFRlcm0gKFBUKTwvc3Bhbj48L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJjb2wtMTIgdmFsdWUtZm9udFwiPjxzcGFuPnt7ZmllbGQoKT8uY29uZmlnRGF0YT8ucHRZZWFycyA/IGZpZWxkKCk/LmNvbmZpZ0RhdGE/LnB0WWVhcnMgOiAnNScgfX0geXJzIDxzcGFuIGNsYXNzPVwieWVhci1sYWJlbFwiPihUaWxsIHt7ZmllbGQoKT8uY29uZmlnRGF0YT8ucHRWYWxpZFRpbGwgPyBmaWVsZCgpPy5jb25maWdEYXRhPy5wdFZhbGlkVGlsbCA6ICcyMDI5JyB9fSk8L3NwYW4+PC9zcGFuPjwvZGl2PlxyXG5cclxuICA8L2Rpdj5cclxuICA8ZGl2IGNsYXNzPVwicm93XCIgc3R5bGU9XCJwYWRkaW5nLWJvdHRvbTogMTZweDtcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJjb2wtMTJcIiBzdHlsZT1cInBhZGRpbmctYm90dG9tOiA4cHg7XCI+PHNwYW4gY2xhc3M9XCJsYWJlbC1mb250XCI+UHJlbWl1bTwvc3Bhbj48L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJjb2wtMTJcIj48c3BhbiBjbGFzcz1cInByZW1pdW0tY29sb3JcIj7igrkge3tmaWVsZCgpPy5jb25maWdEYXRhPy5wcmVtaXVtQW1vdW50ID8gZmllbGQoKT8uY29uZmlnRGF0YT8ucHJlbWl1bUFtb3VudCA6ICcxMiwwMjUnIH19LyB7e2ZpZWxkKCk/LmNvbmZpZ0RhdGE/LnByZW1pdW1GcmVxdWVuY3kgPyBmaWVsZCgpPy5jb25maWdEYXRhPy5wcmVtaXVtRnJlcXVlbmN5IDogJ3llYXInIH19PC9zcGFuPjwvZGl2PlxyXG4gIDwvZGl2PlxyXG4gIDxkaXYgY2xhc3M9XCJyb3dcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJjb2wtMTJcIj4gPHNwYW4gY2xhc3M9XCJlbGlnaWJpbGl0eS1mb250XCI+RWxpZ2libGUgZm9yIG1heGltdW0gU3VtIEFzc3VyZWQgb2Yg4oK5e3tmaWVsZCgpPy5jb25maWdEYXRhPy5tYXhTQVZhbHVlID8gZmllbGQoKT8uY29uZmlnRGF0YT8ubWF4U0FWYWx1ZSA6ICcyNScgfX0gTGFraC48L3NwYW4+PC9kaXY+XHJcbiAgPC9kaXY+XHJcblxyXG48L2Rpdj5cclxuIl19
@@ -1,10 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MotorGlowPlanDetailsComponent {
4
- field: any;
5
- editPlanClick: EventEmitter<any>;
6
- constructor();
7
- onEditPlanClicked(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<MotorGlowPlanDetailsComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<MotorGlowPlanDetailsComponent, "lib-motor-glow-plan-details", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, { "editPlanClick": "editPlanClick"; }, never, never, true, never>;
10
- }
Binary file