master-control 0.4.96 → 0.4.98
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.
- package/esm2022/lib/annuity-calculator-radio/annuity-calculator-radio.component.mjs +46 -27
- package/esm2022/lib/annuity-premium-calculator/annuity-premium-calculator.component.mjs +19 -32
- package/esm2022/lib/master-control.component.mjs +2 -2
- package/esm2022/lib/pay-get-card/pay-get-card.component.mjs +3 -3
- package/fesm2022/master-control.mjs +65 -59
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/annuity-calculator-radio/annuity-calculator-radio.component.d.ts +8 -4
- package/lib/annuity-premium-calculator/annuity-premium-calculator.component.d.ts +1 -0
- package/master-control-0.4.98.tgz +0 -0
- package/package.json +1 -1
- package/master-control-0.4.96.tgz +0 -0
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { EventEmitter, ElementRef } from '@angular/core';
|
|
1
|
+
import { EventEmitter, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { MatRadioChange } from '@angular/material/radio';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AnnuityCalculatorRadioComponent implements ControlValueAccessor {
|
|
5
|
+
export declare class AnnuityCalculatorRadioComponent implements ControlValueAccessor, OnChanges {
|
|
6
6
|
private el;
|
|
7
7
|
constructor(el: ElementRef);
|
|
8
|
-
|
|
8
|
+
preSelectConfig: any;
|
|
9
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
+
private _applyPreSelection;
|
|
9
11
|
reactiveFormControlobject: any;
|
|
10
12
|
field: any;
|
|
11
13
|
inputValue: any;
|
|
@@ -14,6 +16,8 @@ export declare class AnnuityCalculatorRadioComponent implements ControlValueAcce
|
|
|
14
16
|
change: EventEmitter<any>;
|
|
15
17
|
growthRateChange: EventEmitter<any>;
|
|
16
18
|
value: any;
|
|
19
|
+
selectedCardIndex: number | null;
|
|
20
|
+
selectedCard: any;
|
|
17
21
|
writeValue(value: any): void;
|
|
18
22
|
registerOnChange(fn: any): void;
|
|
19
23
|
registerOnTouched(fn: any): void;
|
|
@@ -22,5 +26,5 @@ export declare class AnnuityCalculatorRadioComponent implements ControlValueAcce
|
|
|
22
26
|
toggleRadio(value: any, event: Event): void;
|
|
23
27
|
private updateArrowPosition;
|
|
24
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnuityCalculatorRadioComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnuityCalculatorRadioComponent, "lib-annuity-calculator-radio", never, { "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, { "change": "change"; "growthRateChange": "growthRateChange"; }, never, never, true, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnuityCalculatorRadioComponent, "lib-annuity-calculator-radio", never, { "preSelectConfig": { "alias": "preSelectConfig"; "required": false; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, { "change": "change"; "growthRateChange": "growthRateChange"; }, never, never, true, never>;
|
|
26
30
|
}
|
|
@@ -46,6 +46,7 @@ export declare class AnnuityPremiumCalculatorComponent {
|
|
|
46
46
|
calculateButtonClicked(): void;
|
|
47
47
|
generateSummaryClicked(): void;
|
|
48
48
|
selectedGrowthRate: any;
|
|
49
|
+
growthRatePreSelectConfig: any;
|
|
49
50
|
onGrowthRateRadioChange(event: any): void;
|
|
50
51
|
onGrowthRateCardChange(event: any): void;
|
|
51
52
|
growthRateSelected(): void;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|