@carefirst/library 2.0.23 → 2.0.25
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/alert/alert.component.mjs +3 -3
- package/esm2022/lib/components/badge/badge.component.mjs +3 -3
- package/esm2022/lib/components/button/button.component.mjs +3 -3
- package/esm2022/lib/components/calendar/calendar.component.mjs +3 -3
- package/esm2022/lib/components/chat-bubble/chat-bubble.component.mjs +3 -3
- package/esm2022/lib/components/form-input/form-input.component.mjs +3 -3
- package/esm2022/lib/components/form-input-select/form-input-select.component.mjs +3 -3
- package/esm2022/lib/components/form-input-text-area/form-input-text-area.component.mjs +3 -3
- package/esm2022/lib/components/form-validation/form-validation.component.mjs +3 -3
- package/esm2022/lib/components/icon/icon.component.mjs +5 -5
- package/esm2022/lib/components/logo/logo.component.mjs +3 -3
- package/esm2022/lib/components/mix-p/mix-p.component.mjs +3 -3
- package/esm2022/lib/components/notification/notification.component.mjs +3 -3
- package/esm2022/lib/components/page/page.component.mjs +3 -3
- package/esm2022/lib/components/spacer/spacer.component.mjs +3 -3
- package/esm2022/lib/components/spinner/spinner.component.mjs +3 -3
- package/esm2022/lib/components/verification-code/verification-code.component.mjs +3 -3
- package/esm2022/lib/directives/button-loader.directive.mjs +6 -6
- package/esm2022/lib/interfaces/icon.interface.mjs +3 -1
- package/esm2022/lib/library.module.mjs +4 -4
- package/fesm2022/carefirst-library.mjs +64 -62
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/interfaces/icon.interface.d.ts +1 -1
- package/package.json +1 -1
- package/public/styles/app.scss +9 -0
- package/public/styles/colors.scss +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
export 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", "lock", "show-password", "hide-password", "circle-check", "circle-alert", "direction-switch", "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", "open-back-arrow", "open-forward-arrow", "open-up-arrow", "open-down-arrow", "single-document", "lightning", "microsoft-365", "user-dependent", "plus", "close-box", "speech-bubble"];
|
1
|
+
export 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", "lock", "show-password", "hide-password", "circle-check", "circle-alert", "direction-switch", "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", "open-back-arrow", "open-forward-arrow", "open-up-arrow", "open-down-arrow", "single-document", "lightning", "microsoft-365", "user-dependent", "plus", "close-box", "speech-bubble", "camera-switch"];
|
2
2
|
export type IconsT = (typeof iconsC)[number];
|
3
3
|
export declare const iconColorC: readonly ["primary", "secondary", "success", "warning", "error", "white", "accent"];
|
4
4
|
export type IconColorT = (typeof iconColorC)[number];
|
package/package.json
CHANGED
package/public/styles/app.scss
CHANGED
@@ -57,9 +57,18 @@ cf-btn ion-button {
|
|
57
57
|
max-width: 420px;
|
58
58
|
}
|
59
59
|
}
|
60
|
+
|
60
61
|
/*===============================================
|
61
62
|
=============== CF Notifications ===============
|
62
63
|
===============================================*/
|
63
64
|
cf-notification {
|
64
65
|
width: 100%;
|
65
66
|
}
|
67
|
+
|
68
|
+
/*===============================================
|
69
|
+
=================== CF Icons ===================
|
70
|
+
===============================================*/
|
71
|
+
cf-icon {
|
72
|
+
display: block;
|
73
|
+
width: fit-content;
|
74
|
+
}
|
@@ -5,7 +5,7 @@
|
|
5
5
|
--cf-app-color-primary: #000;
|
6
6
|
--cf-app-color-secondary: #80858a;
|
7
7
|
--cf-app-color-accent: #3fa3db;
|
8
|
-
--cf-app-background-dark:
|
8
|
+
--cf-app-background-dark: #252525;
|
9
9
|
--cf-app-background-light: #fff;
|
10
10
|
//--- System Colors
|
11
11
|
--cf-app-system-color-success: #63ad0e;
|