monkey-front-core 0.0.209 → 0.0.212
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/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +30 -16
- package/esm2020/lib/core/services/config/monkeyecx-i18n-config.service.mjs +19 -20
- package/fesm2015/monkey-front-core.mjs +43 -32
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +44 -34
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/directives/monkeyecx-popover.directive.d.ts +8 -3
- package/monkey-front-core-0.0.212.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.209.tgz +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ConnectedPosition, FlexibleConnectedPositionStrategyOrigin, Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
|
|
2
2
|
import { ChangeDetectorRef, ElementRef, NgZone, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
3
4
|
import type { PopoverDir, MonkeyEcxPopoverOptions } from './monkeyecx-popover-options.directive';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MonkeyEcxPopoverDirective implements OnDestroy {
|
|
@@ -11,11 +12,12 @@ export declare class MonkeyEcxPopoverDirective implements OnDestroy {
|
|
|
11
12
|
private _cd;
|
|
12
13
|
private overlay;
|
|
13
14
|
private overlayPositionBuilder;
|
|
15
|
+
private router;
|
|
14
16
|
private options;
|
|
15
17
|
private _popover;
|
|
16
18
|
get popover(): boolean;
|
|
17
19
|
set popover(show: boolean);
|
|
18
|
-
closed: (e
|
|
20
|
+
closed: (e?: MouseEvent) => void;
|
|
19
21
|
private _target;
|
|
20
22
|
get target(): HTMLElement;
|
|
21
23
|
set target(target: HTMLElement);
|
|
@@ -29,10 +31,13 @@ export declare class MonkeyEcxPopoverDirective implements OnDestroy {
|
|
|
29
31
|
private positionStrategy;
|
|
30
32
|
private templatePortal;
|
|
31
33
|
private subs;
|
|
32
|
-
|
|
34
|
+
private eventsSubs;
|
|
35
|
+
private resizeObserver;
|
|
36
|
+
constructor(tpl: TemplateRef<any>, vcr: ViewContainerRef, el: ElementRef, zone: NgZone, _viewContainerRef: ViewContainerRef, _cd: ChangeDetectorRef, overlay: Overlay, overlayPositionBuilder: OverlayPositionBuilder, router: Router, options: MonkeyEcxPopoverOptions);
|
|
37
|
+
private onHandleClose;
|
|
33
38
|
getDirPositions(dir?: PopoverDir): ConnectedPosition[];
|
|
34
39
|
createPopover(origin?: FlexibleConnectedPositionStrategyOrigin, options?: MonkeyEcxPopoverOptions): void;
|
|
35
40
|
ngOnDestroy(): void;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxPopoverDirective, [null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxPopoverDirective, [null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
37
42
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxPopoverDirective, "[monkeyecxPopover]", never, { "popover": "monkeyecxPopover"; "closed": "monkeyecxPopoverClosed"; "target": "monkeyecxPopoverTarget"; "minwidth": "monkeyecxPopoverMinwidth"; "backdrop": "monkeyecxPopoverBackdrop"; "watch": "monkeyecxPopoverWatch"; "dir": "monkeyecxPopoverDir"; "contextmenu": "monkeyecxPopoverContextmenu"; "height": "monkeyecxPopoverHeight"; }, {}, never>;
|
|
38
43
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|