@ethlete/core 3.8.0 → 3.9.0

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.
@@ -9,10 +9,12 @@ export declare class AnimatableDirective implements OnInit {
9
9
  private readonly _elementRef;
10
10
  private readonly _animationStart$;
11
11
  private readonly _animationEnd$;
12
+ private readonly _animationCancelled$;
12
13
  set animatedElement(value: string | HTMLElement | null | undefined);
13
14
  private _animatedElement$;
14
15
  readonly animationStart$: Observable<void>;
15
16
  readonly animationEnd$: Observable<void>;
17
+ readonly animationCancelled$: Observable<void>;
16
18
  private readonly _hostActiveAnimationCount$;
17
19
  private readonly _totalActiveAnimationCount$;
18
20
  readonly isAnimating$: Observable<boolean>;
@@ -0,0 +1,15 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const DEBUG_TOKEN: InjectionToken<DebugDirective>;
4
+ export declare class DebugDirective {
5
+ private readonly _destroy$;
6
+ private set sDebug(value);
7
+ private _debug;
8
+ readonly debug: import("@angular/core").Signal<boolean>;
9
+ readonly debug$: import("rxjs").Observable<boolean>;
10
+ readonly startDebug$: import("rxjs").Observable<boolean>;
11
+ readonly stopDebug$: import("rxjs").Observable<boolean>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DebugDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DebugDirective, "[etDebug]", ["etDebug"], { "sDebug": { "alias": "etDebug"; "required": false; }; }, {}, never, never, true, never>;
14
+ static ngAcceptInputType_sDebug: unknown;
15
+ }
@@ -0,0 +1 @@
1
+ export * from './debug.directive';
@@ -4,6 +4,7 @@ export * from './animated-lifecycle/public-api';
4
4
  export * from './animated-overlay/public-api';
5
5
  export * from './click-outside/public-api';
6
6
  export * from './cursor-drag-scroll/public-api';
7
+ export * from './debug/public-api';
7
8
  export * from './delayable/public-api';
8
9
  export * from './is-active-element/public-api';
9
10
  export * from './is-element/public-api';
@@ -1,2 +1,3 @@
1
1
  import { FormGroup } from '@angular/forms';
2
2
  export declare const cloneFormGroup: <T extends FormGroup<any>>(formGroup: T) => T;
3
+ export declare const getFormGroupValue: <T extends FormGroup<any>>(formGroup: T) => Record<string, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/core",
3
- "version": "3.8.0",
3
+ "version": "3.9.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },