@carefirst/library 2.0.29 → 2.0.31

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,8 +9,8 @@ declare const inputsC: {
9
9
  };
10
10
  export declare class FormInputComponent implements OnChanges {
11
11
  label: string;
12
- min: number | string;
13
- max: number | string;
12
+ min: string | number | undefined;
13
+ max: string | number | undefined;
14
14
  labelPlacement?: (typeof inputsC.labelPlacement)[number];
15
15
  placeholder?: string | undefined;
16
16
  inputmode?: (typeof inputsC.inputMode)[number];
@@ -31,6 +31,8 @@ export declare class FormInputComponent implements OnChanges {
31
31
  inputAutoCapitalize: typeof this.autoCapitalize;
32
32
  inputGreyBackground: boolean;
33
33
  showPassword: boolean;
34
+ dateValidatorMin: string | null;
35
+ dateValidatorMax: string | null;
34
36
  ngOnChanges(changes: SimpleChanges): void;
35
37
  togglePasswordShow(): void;
36
38
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
@@ -5,4 +5,5 @@ export declare class CFPFormValidators {
5
5
  static asEmail(canBeEmpty?: true): ValidatorFn;
6
6
  static isIn(list: (string | number)[]): ValidatorFn;
7
7
  static isSAIDNumber(canBeEmpty?: true): ValidatorFn;
8
+ static isValidDate(minDate: string | null, maxDate?: string | null): ValidatorFn;
8
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "2.0.29",
3
+ "version": "2.0.31",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {