@carefirst/library 2.0.11 → 2.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. package/esm2022/lib/components/alert/alert.component.mjs +3 -3
  2. package/esm2022/lib/components/badge/badge.component.mjs +3 -3
  3. package/esm2022/lib/components/button/button.component.mjs +3 -3
  4. package/esm2022/lib/components/calendar/calendar.component.mjs +3 -3
  5. package/esm2022/lib/components/chat-bubble/chat-bubble.component.mjs +3 -3
  6. package/esm2022/lib/components/form-input/form-input.component.mjs +3 -3
  7. package/esm2022/lib/components/form-input-select/form-input-select.component.mjs +3 -3
  8. package/esm2022/lib/components/form-input-text-area/form-input-text-area.component.mjs +3 -3
  9. package/esm2022/lib/components/form-validation/form-validation.component.mjs +3 -3
  10. package/esm2022/lib/components/icon/icon.component.mjs +5 -5
  11. package/esm2022/lib/components/logo/logo.component.mjs +3 -3
  12. package/esm2022/lib/components/mix-p/mix-p.component.mjs +41 -0
  13. package/esm2022/lib/components/notification/notification.component.mjs +3 -3
  14. package/esm2022/lib/components/page/page.component.mjs +5 -5
  15. package/esm2022/lib/components/spacer/spacer.component.mjs +3 -3
  16. package/esm2022/lib/components/spinner/spinner.component.mjs +3 -3
  17. package/esm2022/lib/components/verification-code/verification-code.component.mjs +3 -3
  18. package/esm2022/lib/directives/button-loader.directive.mjs +6 -6
  19. package/esm2022/lib/interfaces/icon.interface.mjs +2 -1
  20. package/esm2022/lib/library.module.mjs +12 -7
  21. package/esm2022/lib/utils/form-validators-utility.mjs +2 -2
  22. package/esm2022/public-api.mjs +2 -1
  23. package/fesm2022/carefirst-library.mjs +108 -65
  24. package/fesm2022/carefirst-library.mjs.map +1 -1
  25. package/lib/components/mix-p/mix-p.component.d.ts +16 -0
  26. package/lib/interfaces/icon.interface.d.ts +1 -1
  27. package/lib/library.module.d.ts +5 -4
  28. package/package.json +1 -1
  29. package/public-api.d.ts +1 -0
@@ -0,0 +1,16 @@
1
+ import { type OnChanges, type SimpleChanges, type OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MixPComponent implements OnInit, OnChanges {
4
+ mobile: string;
5
+ desktop: string;
6
+ pClass: string;
7
+ private inputMobile;
8
+ private inputDesktop;
9
+ private getScreenWidth;
10
+ ngOnInit(): void;
11
+ ngOnChanges(changes: SimpleChanges): void;
12
+ onWindowResize(): void;
13
+ updateClass(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<MixPComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<MixPComponent, "cf-mix-p", never, { "mobile": { "alias": "mobile"; "required": false; }; "desktop": { "alias": "desktop"; "required": false; }; }, {}, never, ["*"], false, never>;
16
+ }
@@ -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"];
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"];
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];
@@ -16,11 +16,12 @@ import * as i14 from "./components/chat-bubble/chat-bubble.component";
16
16
  import * as i15 from "./components/badge/badge.component";
17
17
  import * as i16 from "./components/spinner/spinner.component";
18
18
  import * as i17 from "./components/verification-code/verification-code.component";
19
- import * as i18 from "@ionic/angular";
20
- import * as i19 from "@angular/common";
21
- import * as i20 from "@angular/forms";
19
+ import * as i18 from "./components/mix-p/mix-p.component";
20
+ import * as i19 from "@ionic/angular";
21
+ import * as i20 from "@angular/common";
22
+ import * as i21 from "@angular/forms";
22
23
  export declare class CareFirstLibraryModule {
23
24
  static ɵfac: i0.ɵɵFactoryDeclaration<CareFirstLibraryModule, never>;
24
- static ɵmod: i0.ɵɵNgModuleDeclaration<CareFirstLibraryModule, [typeof i1.PageComponent, typeof i2.ButtonComponent, typeof i3.SpacerComponent, typeof i4.IconComponent, typeof i5.ButtonLoaderDirective, typeof i6.NotificationComponent, typeof i7.AlertComponent, typeof i8.LogoComponent, typeof i9.CalendarComponent, typeof i10.FormValidationComponent, typeof i11.FormInputComponent, typeof i12.FormInputSelectComponent, typeof i13.FormInputTextAreaComponent, typeof i14.ChatBubbleComponent, typeof i15.BadgeComponent, typeof i16.SpinnerComponent, typeof i17.VerificationCodeComponent], [typeof i18.IonicModule, typeof i19.CommonModule, typeof i20.ReactiveFormsModule], [typeof i1.PageComponent, typeof i2.ButtonComponent, typeof i3.SpacerComponent, typeof i4.IconComponent, typeof i5.ButtonLoaderDirective, typeof i6.NotificationComponent, typeof i7.AlertComponent, typeof i8.LogoComponent, typeof i9.CalendarComponent, typeof i10.FormValidationComponent, typeof i11.FormInputComponent, typeof i12.FormInputSelectComponent, typeof i13.FormInputTextAreaComponent, typeof i14.ChatBubbleComponent, typeof i15.BadgeComponent, typeof i16.SpinnerComponent, typeof i17.VerificationCodeComponent]>;
25
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CareFirstLibraryModule, [typeof i1.PageComponent, typeof i2.ButtonComponent, typeof i3.SpacerComponent, typeof i4.IconComponent, typeof i5.ButtonLoaderDirective, typeof i6.NotificationComponent, typeof i7.AlertComponent, typeof i8.LogoComponent, typeof i9.CalendarComponent, typeof i10.FormValidationComponent, typeof i11.FormInputComponent, typeof i12.FormInputSelectComponent, typeof i13.FormInputTextAreaComponent, typeof i14.ChatBubbleComponent, typeof i15.BadgeComponent, typeof i16.SpinnerComponent, typeof i17.VerificationCodeComponent, typeof i18.MixPComponent], [typeof i19.IonicModule, typeof i20.CommonModule, typeof i21.ReactiveFormsModule], [typeof i1.PageComponent, typeof i2.ButtonComponent, typeof i3.SpacerComponent, typeof i4.IconComponent, typeof i5.ButtonLoaderDirective, typeof i6.NotificationComponent, typeof i7.AlertComponent, typeof i8.LogoComponent, typeof i9.CalendarComponent, typeof i10.FormValidationComponent, typeof i11.FormInputComponent, typeof i12.FormInputSelectComponent, typeof i13.FormInputTextAreaComponent, typeof i14.ChatBubbleComponent, typeof i15.BadgeComponent, typeof i16.SpinnerComponent, typeof i17.VerificationCodeComponent, typeof i18.MixPComponent]>;
25
26
  static ɵinj: i0.ɵɵInjectorDeclaration<CareFirstLibraryModule>;
26
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -17,6 +17,7 @@ export * from './lib/components/chat-bubble/chat-bubble.component';
17
17
  export * from './lib/components/badge/badge.component';
18
18
  export * from './lib/components/spinner/spinner.component';
19
19
  export * from './lib/components/verification-code/verification-code.component';
20
+ export * from './lib/components/mix-p/mix-p.component';
20
21
  export * as CFAlertI from './lib/interfaces/alert.interface';
21
22
  export * as CFIconI from './lib/interfaces/icon.interface';
22
23
  export * as CFSpacerI from './lib/interfaces/spacer.interface';