@carefirst/library 7.2.1 → 8.0.0
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": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"author": "FCS Dev Team",
|
|
5
5
|
"private": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"dayjs": "^1.11.
|
|
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
|
}
|
|
@@ -468,7 +468,7 @@ declare class FormInputComponent implements OnChanges {
|
|
|
468
468
|
autoCapitalize?: (typeof inputsC.autoCapitalize)[number];
|
|
469
469
|
type?: (typeof inputsC.type)[number];
|
|
470
470
|
noClearButton?: boolean | string | undefined;
|
|
471
|
-
control?: FormControl | null;
|
|
471
|
+
control?: FormControl<string | null> | FormControl<string> | null;
|
|
472
472
|
textCenter?: boolean | string | undefined;
|
|
473
473
|
maxLength?: number | string;
|
|
474
474
|
greyBackground?: boolean | string | undefined;
|
|
@@ -526,7 +526,7 @@ declare class FormInputCurrencyComponent implements OnChanges {
|
|
|
526
526
|
labelPlacement?: (typeof inputsC.labelPlacement)[number];
|
|
527
527
|
placeholder?: string;
|
|
528
528
|
noClearButton?: boolean | string | undefined;
|
|
529
|
-
control?: FormControl | null;
|
|
529
|
+
control?: FormControl<string | null> | FormControl<string> | null;
|
|
530
530
|
customErrorMessage: string | null;
|
|
531
531
|
currency?: string;
|
|
532
532
|
showCurrency: boolean;
|
|
@@ -591,15 +591,15 @@ declare namespace input_interface_d {
|
|
|
591
591
|
declare const inputSelectC: {
|
|
592
592
|
readonly labelPlacement: readonly ["fixed", "floating", "stacked", "start", "end"];
|
|
593
593
|
};
|
|
594
|
-
declare class FormInputSelectComponent<T
|
|
594
|
+
declare class FormInputSelectComponent<T> implements OnChanges {
|
|
595
595
|
label: string;
|
|
596
596
|
options: FormInputSelectOptionsI<T>[];
|
|
597
597
|
labelPlacement?: (typeof inputSelectC.labelPlacement)[number];
|
|
598
598
|
placeholder?: string | undefined;
|
|
599
|
-
control?: FormControl | null;
|
|
599
|
+
control?: FormControl<T | null> | FormControl<T> | null;
|
|
600
600
|
customErrorMessage: string | null;
|
|
601
|
-
value:
|
|
602
|
-
readonly valueChange: EventEmitter<
|
|
601
|
+
value: T | undefined;
|
|
602
|
+
readonly valueChange: EventEmitter<T | undefined>;
|
|
603
603
|
inputLabelPlacement: typeof this.labelPlacement;
|
|
604
604
|
/**----------------------------------------------------------------
|
|
605
605
|
* @name ngOnChanges
|
|
@@ -607,8 +607,8 @@ declare class FormInputSelectComponent<T, Q extends T> implements OnChanges {
|
|
|
607
607
|
* @param {SimpleChanges} changes
|
|
608
608
|
*/
|
|
609
609
|
ngOnChanges(changes: SimpleChanges): void;
|
|
610
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any
|
|
611
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent<any
|
|
610
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any>, never>;
|
|
611
|
+
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
612
|
}
|
|
613
613
|
|
|
614
614
|
declare class FormInputStringDateComponent implements OnChanges {
|
|
@@ -619,7 +619,7 @@ declare class FormInputStringDateComponent implements OnChanges {
|
|
|
619
619
|
labelPlacement?: (typeof inputsC.labelPlacement)[number];
|
|
620
620
|
placeholder?: string;
|
|
621
621
|
noClearButton?: boolean | string | undefined;
|
|
622
|
-
control?: FormControl | null;
|
|
622
|
+
control?: FormControl<string | null> | FormControl<string> | null;
|
|
623
623
|
customErrorMessage: string | null;
|
|
624
624
|
value: string | undefined;
|
|
625
625
|
readonly valueChange: EventEmitter<string | undefined>;
|
|
@@ -674,7 +674,7 @@ declare class FormInputTextAreaComponent implements OnChanges {
|
|
|
674
674
|
labelPlacement?: (typeof inputTextAreaC.labelPlacement)[number];
|
|
675
675
|
placeholder?: string | undefined;
|
|
676
676
|
autoCapitalize?: (typeof inputTextAreaC.autoCapitalize)[number];
|
|
677
|
-
control?: FormControl | null;
|
|
677
|
+
control?: FormControl<string | null> | FormControl<string> | null;
|
|
678
678
|
textCenter?: boolean | string | undefined;
|
|
679
679
|
minHeight?: string | 'none';
|
|
680
680
|
maxHeight?: string | 'none';
|
|
@@ -722,7 +722,7 @@ declare class FormInputSearchComponent implements OnChanges {
|
|
|
722
722
|
placeholder?: string | undefined;
|
|
723
723
|
autoCapitalize?: (typeof inputsC.autoCapitalize)[number];
|
|
724
724
|
clearButton?: boolean | string | undefined;
|
|
725
|
-
control?: FormControl | null;
|
|
725
|
+
control?: FormControl<string | null> | FormControl<string> | null;
|
|
726
726
|
textCenter?: boolean | string | undefined;
|
|
727
727
|
customErrorMessage: string | null;
|
|
728
728
|
debounce?: number | undefined;
|