@carefirst/library 3.2.7 → 3.2.9
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/esm2022/lib/components/form-input-select/form-input-select.component.mjs +1 -1
- package/esm2022/lib/components/notification/notification.component.mjs +6 -3
- package/fesm2022/carefirst-library.mjs +5 -2
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/form-input-select/form-input-select.component.d.ts +5 -5
- package/lib/components/notification/notification.component.d.ts +3 -2
- package/package.json +6 -6
@@ -5,18 +5,18 @@ import * as i0 from "@angular/core";
|
|
5
5
|
declare const inputSelectC: {
|
6
6
|
readonly labelPlacement: readonly ["fixed", "floating", "stacked", "start", "end"];
|
7
7
|
};
|
8
|
-
export declare class FormInputSelectComponent<T> implements OnChanges {
|
8
|
+
export declare class FormInputSelectComponent<T, Q extends T> implements OnChanges {
|
9
9
|
label: string;
|
10
10
|
options: FormInputSelectOptionsI<T>[];
|
11
11
|
labelPlacement?: (typeof inputSelectC.labelPlacement)[number];
|
12
12
|
placeholder?: string | undefined;
|
13
13
|
control?: FormControl | null;
|
14
14
|
customErrorMessage: string | null;
|
15
|
-
value:
|
16
|
-
valueChange: EventEmitter<
|
15
|
+
value: Q | undefined;
|
16
|
+
valueChange: EventEmitter<Q | undefined>;
|
17
17
|
inputLabelPlacement: typeof this.labelPlacement;
|
18
18
|
ngOnChanges(changes: SimpleChanges): void;
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any>, never>;
|
20
|
-
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>;
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any, any>, never>;
|
20
|
+
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>;
|
21
21
|
}
|
22
22
|
export {};
|
@@ -2,8 +2,9 @@ import { EventEmitter } from '@angular/core';
|
|
2
2
|
import type { NotificationPayloadI } from '../../interfaces/notification.interface';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class NotificationComponent {
|
5
|
-
data
|
5
|
+
data: NotificationPayloadI | undefined;
|
6
|
+
dataChange: EventEmitter<NotificationPayloadI | undefined>;
|
6
7
|
buttonClick: EventEmitter<string | number>;
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "cf-notification", never, { "data": { "alias": "data"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "cf-notification", never, { "data": { "alias": "data"; "required": false; }; }, { "dataChange": "dataChange"; "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
|
9
10
|
}
|
package/package.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@carefirst/library",
|
3
|
-
"version": "3.2.
|
3
|
+
"version": "3.2.9",
|
4
4
|
"author": "Jacques Francois Coetzee",
|
5
5
|
"private": false,
|
6
6
|
"peerDependencies": {
|
7
|
-
"@angular/common": "
|
8
|
-
"@angular/core": "
|
9
|
-
"@ionic/angular": "
|
10
|
-
"dayjs": "
|
11
|
-
"password-validator": "
|
7
|
+
"@angular/common": "~17.3.0 || ~18.0.0",
|
8
|
+
"@angular/core": "~17.3.0 || ~18.0.0",
|
9
|
+
"@ionic/angular": "~8.1.0 || ~8.2.0",
|
10
|
+
"dayjs": "~1.11.10",
|
11
|
+
"password-validator": "~5.3.0"
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
14
|
"tslib": "^2.3.0"
|