@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.
- package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
- package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
- package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
- package/esm2022/lib/directives/let/let.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
- package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
- package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
- package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
- package/esm2022/lib/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +3 -3
- package/esm2022/lib/services/resize-observer.service.mjs +6 -6
- package/esm2022/lib/services/router-state.service.mjs +3 -3
- package/esm2022/lib/services/viewport.service.mjs +3 -3
- package/esm2022/lib/validators/must-match.validator.mjs +10 -10
- package/fesm2022/ethlete-core.mjs +108 -108
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/validators/must-match.validator.d.ts +4 -2
- package/lib/validators/public-api.d.ts +3 -1
- package/package.json +6 -6
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
2
|
export declare const MUST_MATCH = "mustMatch";
|
|
3
|
-
export declare const MustMatch: (controlName: string, matchingControlName: string) => (formGroup:
|
|
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").
|
|
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.
|
|
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.
|
|
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.
|
|
14
|
-
"@floating-ui/dom": "1.
|
|
15
|
-
"@angular/router": "16.1.
|
|
16
|
-
"@angular/forms": "16.1.
|
|
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",
|