@carefirst/library 7.2.1 → 8.0.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/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "7.2.1",
3
+ "version": "8.0.1",
4
4
  "author": "FCS Dev Team",
5
5
  "private": false,
6
6
  "peerDependencies": {
7
- "dayjs": "^1.11.18",
7
+ "dayjs": "^1.11.20",
8
8
  "password-validator": "^5.3.0"
9
9
  },
10
10
  "sideEffects": false,
@@ -19,6 +19,7 @@
19
19
  "default": "./fesm2022/carefirst-library.mjs"
20
20
  }
21
21
  },
22
+ "type": "module",
22
23
  "dependencies": {
23
24
  "tslib": "^2.3.0"
24
25
  }
@@ -363,7 +363,7 @@ ion-select {
363
363
 
364
364
  text-align: start;
365
365
  --border-radius: 8px !important; //--- important overrides the fill option
366
- --highlight-color-focused: var(--cf-app-color-primary);
366
+ --highlight-color-focused: var(--cf-app-color-primary) !important; //--- important overrides the ionic blue focus color
367
367
  --highlight-color-invalid: var(--cf-app-system-color-error-100) !important;
368
368
  --highlight-color-valid: var(--cf-app-color-primary);
369
369
  --placeholder-color: var(--cf-app-text-color-grey);
@@ -94,7 +94,6 @@ declare class ButtonComponent implements OnChanges {
94
94
  loading?: boolean | string | undefined;
95
95
  loadingText?: string;
96
96
  customColor?: string | undefined;
97
- get parentEvents(): string;
98
97
  inputType: typeof this.type;
99
98
  inputFontSize: typeof this.fontSize | undefined;
100
99
  inputDisabled: boolean;
@@ -468,7 +467,7 @@ declare class FormInputComponent implements OnChanges {
468
467
  autoCapitalize?: (typeof inputsC.autoCapitalize)[number];
469
468
  type?: (typeof inputsC.type)[number];
470
469
  noClearButton?: boolean | string | undefined;
471
- control?: FormControl | null;
470
+ control?: FormControl<string | null> | FormControl<string> | null;
472
471
  textCenter?: boolean | string | undefined;
473
472
  maxLength?: number | string;
474
473
  greyBackground?: boolean | string | undefined;
@@ -526,7 +525,7 @@ declare class FormInputCurrencyComponent implements OnChanges {
526
525
  labelPlacement?: (typeof inputsC.labelPlacement)[number];
527
526
  placeholder?: string;
528
527
  noClearButton?: boolean | string | undefined;
529
- control?: FormControl | null;
528
+ control?: FormControl<string | null> | FormControl<string> | null;
530
529
  customErrorMessage: string | null;
531
530
  currency?: string;
532
531
  showCurrency: boolean;
@@ -591,15 +590,15 @@ declare namespace input_interface_d {
591
590
  declare const inputSelectC: {
592
591
  readonly labelPlacement: readonly ["fixed", "floating", "stacked", "start", "end"];
593
592
  };
594
- declare class FormInputSelectComponent<T, Q extends T> implements OnChanges {
593
+ declare class FormInputSelectComponent<T> implements OnChanges {
595
594
  label: string;
596
595
  options: FormInputSelectOptionsI<T>[];
597
596
  labelPlacement?: (typeof inputSelectC.labelPlacement)[number];
598
597
  placeholder?: string | undefined;
599
- control?: FormControl | null;
598
+ control?: FormControl<T | null> | FormControl<T> | null;
600
599
  customErrorMessage: string | null;
601
- value: Q | undefined;
602
- readonly valueChange: EventEmitter<Q | undefined>;
600
+ value: T | undefined;
601
+ readonly valueChange: EventEmitter<T | undefined>;
603
602
  inputLabelPlacement: typeof this.labelPlacement;
604
603
  /**----------------------------------------------------------------
605
604
  * @name ngOnChanges
@@ -607,8 +606,8 @@ declare class FormInputSelectComponent<T, Q extends T> implements OnChanges {
607
606
  * @param {SimpleChanges} changes
608
607
  */
609
608
  ngOnChanges(changes: SimpleChanges): void;
610
- static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any, any>, never>;
611
- static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent<any, any>, "cf-form-input-select", never, { "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "control": { "alias": "control"; "required": false; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
609
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any>, never>;
610
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent<any>, "cf-form-input-select", never, { "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "control": { "alias": "control"; "required": false; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
612
611
  }
613
612
 
614
613
  declare class FormInputStringDateComponent implements OnChanges {
@@ -619,7 +618,7 @@ declare class FormInputStringDateComponent implements OnChanges {
619
618
  labelPlacement?: (typeof inputsC.labelPlacement)[number];
620
619
  placeholder?: string;
621
620
  noClearButton?: boolean | string | undefined;
622
- control?: FormControl | null;
621
+ control?: FormControl<string | null> | FormControl<string> | null;
623
622
  customErrorMessage: string | null;
624
623
  value: string | undefined;
625
624
  readonly valueChange: EventEmitter<string | undefined>;
@@ -674,7 +673,7 @@ declare class FormInputTextAreaComponent implements OnChanges {
674
673
  labelPlacement?: (typeof inputTextAreaC.labelPlacement)[number];
675
674
  placeholder?: string | undefined;
676
675
  autoCapitalize?: (typeof inputTextAreaC.autoCapitalize)[number];
677
- control?: FormControl | null;
676
+ control?: FormControl<string | null> | FormControl<string> | null;
678
677
  textCenter?: boolean | string | undefined;
679
678
  minHeight?: string | 'none';
680
679
  maxHeight?: string | 'none';
@@ -722,7 +721,7 @@ declare class FormInputSearchComponent implements OnChanges {
722
721
  placeholder?: string | undefined;
723
722
  autoCapitalize?: (typeof inputsC.autoCapitalize)[number];
724
723
  clearButton?: boolean | string | undefined;
725
- control?: FormControl | null;
724
+ control?: FormControl<string | null> | FormControl<string> | null;
726
725
  textCenter?: boolean | string | undefined;
727
726
  customErrorMessage: string | null;
728
727
  debounce?: number | undefined;