@ethlete/core 3.0.0 → 3.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.
Files changed (36) hide show
  1. package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
  2. package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
  3. package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
  4. package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
  5. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
  6. package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
  7. package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
  8. package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
  9. package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
  10. package/esm2022/lib/directives/let/let.directive.mjs +3 -3
  11. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
  12. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
  13. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
  14. package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
  15. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
  16. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
  17. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
  18. package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
  19. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
  20. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
  21. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
  22. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
  23. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
  24. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
  25. package/esm2022/lib/services/click-observer.service.mjs +6 -6
  26. package/esm2022/lib/services/content-observer.service.mjs +6 -6
  27. package/esm2022/lib/services/focus-visible.service.mjs +3 -3
  28. package/esm2022/lib/services/resize-observer.service.mjs +6 -6
  29. package/esm2022/lib/services/router-state.service.mjs +3 -3
  30. package/esm2022/lib/services/viewport.service.mjs +3 -3
  31. package/esm2022/lib/validators/must-match.validator.mjs +10 -10
  32. package/fesm2022/ethlete-core.mjs +108 -108
  33. package/fesm2022/ethlete-core.mjs.map +1 -1
  34. package/lib/validators/must-match.validator.d.ts +4 -2
  35. package/lib/validators/public-api.d.ts +3 -1
  36. package/package.json +6 -6
@@ -1,3 +1,5 @@
1
- import { FormGroup } from '@angular/forms';
1
+ import { AbstractControl } from '@angular/forms';
2
2
  export declare const MUST_MATCH = "mustMatch";
3
- export declare const MustMatch: (controlName: string, matchingControlName: string) => (formGroup: FormGroup) => void;
3
+ export declare const MustMatch: (controlName: string, matchingControlName: string) => (formGroup: AbstractControl) => {
4
+ mustMatch: boolean;
5
+ } | null;
@@ -2,7 +2,9 @@ export * from './is-array-not-empty.validator';
2
2
  export * from './is-email.validator';
3
3
  export * from './must-match.validator';
4
4
  export declare const Validators: {
5
- readonly MustMatch: (controlName: string, matchingControlName: string) => (formGroup: import("@angular/forms").FormGroup<any>) => void;
5
+ readonly MustMatch: (controlName: string, matchingControlName: string) => (formGroup: import("@angular/forms").AbstractControl<any, any>) => {
6
+ mustMatch: boolean;
7
+ } | null;
6
8
  readonly IsEmail: (control: import("@angular/forms").AbstractControl<any, any>) => import("@angular/forms").ValidationErrors | null;
7
9
  readonly IsArrayNotEmpty: (control: import("@angular/forms").AbstractControl<any, any>) => import("@angular/forms").ValidationErrors | null;
8
10
  };
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@ethlete/core",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },
7
7
  "peerDependencies": {
8
8
  "@angular/common": "^15.2.1 || ^16.0.0",
9
9
  "@angular/core": "^15.2.1 || ^16.0.0",
10
- "@angular/platform-browser": "16.1.6",
10
+ "@angular/platform-browser": "16.1.7",
11
11
  "@ethlete/types": "1.3.0",
12
12
  "rxjs": "7.8.1",
13
- "@angular/cdk": "16.1.5",
14
- "@floating-ui/dom": "1.4.5",
15
- "@angular/router": "16.1.6",
16
- "@angular/forms": "16.1.6"
13
+ "@angular/cdk": "16.1.6",
14
+ "@floating-ui/dom": "1.5.1",
15
+ "@angular/router": "16.1.7",
16
+ "@angular/forms": "16.1.7"
17
17
  },
18
18
  "module": "fesm2022/ethlete-core.mjs",
19
19
  "typings": "index.d.ts",