zek 16.0.24 → 16.0.27

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.
@@ -53,6 +53,7 @@ declare abstract class AbstractValidatorDirective implements Validator, OnChange
53
53
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractValidatorDirective, never>;
54
54
  static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractValidatorDirective, never, never, {}, {}, never, never, false, never>;
55
55
  }
56
+ export declare const RANGE_VALIDATOR: any;
56
57
  export declare class RangeValidator extends AbstractValidatorDirective {
57
58
  range: [number, number] | null;
58
59
  /** @internal */
@@ -70,14 +71,14 @@ export declare class RangeValidator extends AbstractValidatorDirective {
70
71
  */
71
72
  export declare const MATCH_VALIDATOR: any;
72
73
  export declare class MatchValidator extends AbstractValidatorDirective {
73
- equals?: string | null;
74
+ match: string;
74
75
  /** @internal */
75
76
  inputName: string;
76
77
  /** @internal */
77
78
  normalizeInput: (input: string) => string;
78
79
  /** @internal */
79
- createValidator: (target: string) => ValidatorFn;
80
+ createValidator: (input: string) => ValidatorFn;
80
81
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchValidator, never>;
81
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchValidator, "input[match][formControlName],input[match][formControl],input[match][ngModel]", never, { "equals": { "alias": "equals"; "required": false; }; }, {}, never, never, false, never>;
82
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchValidator, "[match][formControlName],match][formControl],[match][ngModel]", never, { "match": { "alias": "match"; "required": false; }; }, {}, never, never, false, never>;
82
83
  }
83
84
  export {};
@@ -52,4 +52,4 @@ export declare class Validators {
52
52
  * See `Validators.range` for additional information.
53
53
  */
54
54
  export declare function rangeValidator(range: Array<number>): ValidatorFn;
55
- export declare function matchValidator(target: string): ValidatorFn;
55
+ export declare function matchValidator(input: string): ValidatorFn;
package/lib/tokens.d.ts CHANGED
@@ -3,3 +3,4 @@ export declare const API_BASE_URL: InjectionToken<string>;
3
3
  export declare const DATE_FORMAT: InjectionToken<string>;
4
4
  export declare const LANGUAGE: InjectionToken<string>;
5
5
  export declare const RECAPTCHA_SITE_KEY: InjectionToken<string>;
6
+ export declare const GOOGLE_CLIENT_ID: InjectionToken<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "16.0.24",
3
+ "version": "16.0.27",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.0.0",
6
6
  "@angular/core": "^16.0.0"