@carefirst/library 5.1.1 → 5.2.1
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
@@ -43,7 +43,7 @@ declare class PageComponent implements OnChanges {
|
|
43
43
|
* @interface IconsT
|
44
44
|
* @description Short description
|
45
45
|
*/
|
46
|
-
declare const iconsC: readonly ["home", "cog", "profile", "scan", "person", "appointment", "clock", "calendar", "email", "phone", "sign-out", "sign-in", "close", "check-mark", "rating-star-blank", "rating-star-filled", "back-arrow", "bell", "lock", "show-password", "hide-password", "circle-check", "circle-alert", "circle-close", "direction-switch", "direction-switch-flat", "direction-switch-block", "chat-bubbles", "phone-down", "mic", "no-mic", "button-forward-arrow", "button-check-box", "social-media-whatsapp", "social-media-facebook", "social-media-linkedin", "social-media-instagram", "social-media-google-mail", "instant-video-service", "instant-telephonic-service", "scheduled-video-service", "scheduled-telephonic-service", "vital-scan-service", "skin-scan-service", "acne-scan-service", "open-back-arrow", "open-forward-arrow", "open-up-arrow", "open-down-arrow", "single-document", "lightning", "microsoft-365", "user-dependent", "plus", "minus", "close-box", "speech-bubble", "camera-switch", "retry", "download", "upload", "upload-document", "print", "search", "flame", "bank-cards", "bank-card", "swipe-bank-card", "coin", "sign-out-curved", "sign-in-curved", "calendar-blank", "wallet", "info", "three-dot-colon", "adjustment", "triangle-alert", "party-popper", "trophy"];
|
46
|
+
declare const iconsC: readonly ["home", "cog", "profile", "scan", "person", "appointment", "clock", "calendar", "email", "phone", "sign-out", "sign-in", "close", "check-mark", "rating-star-blank", "rating-star-filled", "back-arrow", "bell", "lock", "show-password", "hide-password", "circle-check", "circle-alert", "circle-close", "direction-switch", "direction-switch-flat", "direction-switch-block", "chat-bubbles", "phone-down", "mic", "no-mic", "button-forward-arrow", "button-check-box", "social-media-whatsapp", "social-media-facebook", "social-media-linkedin", "social-media-instagram", "social-media-google-mail", "instant-video-service", "instant-telephonic-service", "scheduled-video-service", "scheduled-telephonic-service", "vital-scan-service", "skin-scan-service", "acne-scan-service", "open-back-arrow", "open-forward-arrow", "open-up-arrow", "open-down-arrow", "single-document", "lightning", "microsoft-365", "user-dependent", "plus", "minus", "close-box", "speech-bubble", "camera-switch", "retry", "download", "upload", "upload-document", "print", "search", "flame", "bank-cards", "bank-card", "swipe-bank-card", "coin", "sign-out-curved", "sign-in-curved", "calendar-blank", "wallet", "info", "three-dot-colon", "adjustment", "triangle-alert", "party-popper", "trophy", "shield-check", "basic-phone", "google", "facebook", "m365"];
|
47
47
|
type IconsT = (typeof iconsC)[number];
|
48
48
|
/**==============================================
|
49
49
|
* @interface IconColorT
|
@@ -852,6 +852,7 @@ declare class VerificationCodeComponent implements OnChanges {
|
|
852
852
|
valueToVerify: string;
|
853
853
|
status: BehaviorSubject<CfCodeInputVerificationStatusesT>;
|
854
854
|
userFeedbackMessages?: CfCodeInputUserFeedbackMessagesI;
|
855
|
+
removeResendText?: true;
|
855
856
|
readonly outcome: EventEmitter<string>;
|
856
857
|
readonly resendClickEvent: EventEmitter<true>;
|
857
858
|
myInput1?: IonInput;
|
@@ -920,7 +921,7 @@ declare class VerificationCodeComponent implements OnChanges {
|
|
920
921
|
*/
|
921
922
|
ionViewWillLeave(): void;
|
922
923
|
static ɵfac: i0.ɵɵFactoryDeclaration<VerificationCodeComponent, never>;
|
923
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VerificationCodeComponent, "cf-verification-code", never, { "valueToVerify": { "alias": "valueToVerify"; "required": false; }; "status": { "alias": "status"; "required": false; }; "userFeedbackMessages": { "alias": "userFeedbackMessages"; "required": false; }; }, { "outcome": "outcome"; "resendClickEvent": "resendClickEvent"; }, never, never, false, 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>;
|
924
925
|
}
|
925
926
|
|
926
927
|
/**
|
package/package.json
CHANGED
package/public/styles/app.scss
CHANGED
@@ -118,11 +118,6 @@ ion-select::part(label) {
|
|
118
118
|
cf-btn,
|
119
119
|
cf-btn ion-button {
|
120
120
|
width: 100%;
|
121
|
-
max-width: 358px;
|
122
|
-
|
123
|
-
@media (min-width: breakpoint.$cf-screen-breakpoint) {
|
124
|
-
max-width: 420px;
|
125
|
-
}
|
126
121
|
}
|
127
122
|
|
128
123
|
/*===============================================
|