@carefirst/library 5.3.0 → 5.3.2
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/index.d.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
2
|
import { OnChanges, EventEmitter, SimpleChanges, TemplateRef, Renderer2, ViewContainerRef, ElementRef, OnInit } from '@angular/core';
|
3
|
+
import { IonContentCustomEvent, ScrollDetail } from '@ionic/core';
|
3
4
|
import * as i22 from '@ionic/angular';
|
4
5
|
import { IonPopover, IonInput, InputCustomEvent } from '@ionic/angular';
|
5
6
|
import * as i24 from '@angular/forms';
|
@@ -18,7 +19,7 @@ declare class PageComponent implements OnChanges {
|
|
18
19
|
buttonsVertical?: boolean | string | undefined;
|
19
20
|
stickyButtonOn?: boolean | string | undefined;
|
20
21
|
noStickyButtonFade?: boolean | string | undefined;
|
21
|
-
readonly scrollEvent: EventEmitter<
|
22
|
+
readonly scrollEvent: EventEmitter<IonContentCustomEvent<ScrollDetail>>;
|
22
23
|
inputCenterH: boolean;
|
23
24
|
inputCenterV: boolean;
|
24
25
|
inputHeaderInheritanceOff: boolean;
|
@@ -833,26 +834,12 @@ declare namespace verificationCode_interface_d {
|
|
833
834
|
export type { verificationCode_interface_d_CfCodeInputUserFeedbackMessagesI as CfCodeInputUserFeedbackMessagesI, verificationCode_interface_d_CfCodeInputVerificationStatusesT as CfCodeInputVerificationStatusesT };
|
834
835
|
}
|
835
836
|
|
836
|
-
/**
|
837
|
-
* Carefirst library - Verification Code Input
|
838
|
-
*
|
839
|
-
* @file verification-code.component
|
840
|
-
* @description Contains all the logic for generating a CareFirst Verification Code Input
|
841
|
-
* @author Arno Jansen van Vuuren
|
842
|
-
* @since 2024 - 03 - 07
|
843
|
-
* @usage <cf-verification-code
|
844
|
-
valueToVerify=`string`
|
845
|
-
(outcome)=`omits code value`
|
846
|
-
(resendClickEvent)=`resend click event`
|
847
|
-
[status]=`BehaviorSubject<'initial' | 'invalid'>`>
|
848
|
-
</cf-verification-code>
|
849
|
-
*/
|
850
|
-
|
851
837
|
declare class VerificationCodeComponent implements OnChanges {
|
852
838
|
valueToVerify: string;
|
853
839
|
status: BehaviorSubject<CfCodeInputVerificationStatusesT>;
|
854
840
|
userFeedbackMessages?: CfCodeInputUserFeedbackMessagesI;
|
855
841
|
removeResendText?: boolean;
|
842
|
+
commsSentCount: i0.ModelSignal<number>;
|
856
843
|
readonly outcome: EventEmitter<string>;
|
857
844
|
readonly resendClickEvent: EventEmitter<true>;
|
858
845
|
myInput1?: IonInput;
|
@@ -863,7 +850,6 @@ declare class VerificationCodeComponent implements OnChanges {
|
|
863
850
|
validationCodeError: boolean;
|
864
851
|
verificationCodeInputArr: (number | null)[];
|
865
852
|
loading: boolean;
|
866
|
-
commsSentCount: number;
|
867
853
|
commsInputCount: number;
|
868
854
|
commsInputCountExceeded: boolean;
|
869
855
|
validationCode: string | undefined;
|
@@ -921,7 +907,7 @@ declare class VerificationCodeComponent implements OnChanges {
|
|
921
907
|
*/
|
922
908
|
ionViewWillLeave(): void;
|
923
909
|
static ɵfac: i0.ɵɵFactoryDeclaration<VerificationCodeComponent, never>;
|
924
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VerificationCodeComponent, "cf-verification-code", never, { "valueToVerify": { "alias": "valueToVerify"; "required": false; }; "status": { "alias": "status"; "required": false; }; "userFeedbackMessages": { "alias": "userFeedbackMessages"; "required": false; }; "removeResendText": { "alias": "removeResendText"; "required": false; }; }, { "outcome": "outcome"; "resendClickEvent": "resendClickEvent"; }, never, never, false, never>;
|
910
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VerificationCodeComponent, "cf-verification-code", never, { "valueToVerify": { "alias": "valueToVerify"; "required": false; }; "status": { "alias": "status"; "required": false; }; "userFeedbackMessages": { "alias": "userFeedbackMessages"; "required": false; }; "removeResendText": { "alias": "removeResendText"; "required": false; }; "commsSentCount": { "alias": "commsSentCount"; "required": false; "isSignal": true; }; }, { "commsSentCount": "commsSentCountChange"; "outcome": "outcome"; "resendClickEvent": "resendClickEvent"; }, never, never, false, never>;
|
925
911
|
}
|
926
912
|
|
927
913
|
/**
|