@ethlete/core 2.0.0 → 2.1.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.
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +41 -0
- package/esm2022/lib/directives/is-active-element/public-api.mjs +2 -0
- package/esm2022/lib/directives/public-api.mjs +2 -1
- package/fesm2022/ethlete-core.mjs +38 -1
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/is-active-element/is-active-element.directive.d.ts +12 -0
- package/lib/directives/is-active-element/public-api.d.ts +1 -0
- package/lib/directives/public-api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { ElementRef, InjectionToken } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const IS_ACTIVE_ELEMENT: InjectionToken<IsActiveElementDirective>;
|
|
5
|
+
export declare class IsActiveElementDirective {
|
|
6
|
+
readonly elementRef: ElementRef<HTMLElement>;
|
|
7
|
+
get isActiveElement(): boolean;
|
|
8
|
+
set isActiveElement(value: BooleanInput);
|
|
9
|
+
private _isActiveElement;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IsActiveElementDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IsActiveElementDirective, "[etIsActiveElement]", never, { "isActiveElement": { "alias": "etIsActiveElement"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './is-active-element.directive';
|
|
@@ -4,6 +4,7 @@ export * from './animated-overlay/public-api';
|
|
|
4
4
|
export * from './click-outside/public-api';
|
|
5
5
|
export * from './cursor-drag-scroll/public-api';
|
|
6
6
|
export * from './delayable/public-api';
|
|
7
|
+
export * from './is-active-element/public-api';
|
|
7
8
|
export * from './let/public-api';
|
|
8
9
|
export * from './observe-content/public-api';
|
|
9
10
|
export * from './observe-resize/public-api';
|