monkey-front-core 0.0.148 → 0.0.149
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/index.mjs +3 -1
- package/esm2020/lib/core/directives/monkeyecx-directives-module.mjs +19 -6
- package/esm2020/lib/core/directives/monkeyecx-popover-options.directive.mjs +39 -0
- package/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +198 -0
- package/esm2020/lib/monkey-front-core.module.mjs +6 -6
- package/fesm2015/monkey-front-core.mjs +265 -20
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +261 -20
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/directives/index.d.ts +2 -0
- package/lib/core/directives/monkeyecx-directives-module.d.ts +5 -1
- package/lib/core/directives/monkeyecx-popover-options.directive.d.ts +19 -0
- package/lib/core/directives/monkeyecx-popover.directive.d.ts +38 -0
- package/lib/monkey-front-core.module.d.ts +4 -4
- package/monkey-front-core-0.0.149.tgz +0 -0
- package/package.json +2 -1
- package/monkey-front-core-0.0.148.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Pipe, Component, ViewEncapsulation, Input, Injectable, NgModule, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self,
|
|
2
|
+
import { Pipe, Component, ViewEncapsulation, Input, Injectable, NgModule, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self, InjectionToken, Inject, Optional, NgZone, ErrorHandler, SkipSelf } from '@angular/core';
|
|
3
3
|
import * as i1 from 'monkey-style-guide';
|
|
4
4
|
import { MonkeyButtonModule, MonkeyIconModule, MonkeyInputModule, MonkeyModalModule, MonkeyUtils, MonkeyStyleGuideModule, MonkeyStyleGuideModalService, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService } from 'monkey-style-guide';
|
|
5
5
|
import * as i2 from '@angular/common';
|
|
@@ -10,14 +10,17 @@ import * as moment_ from 'moment';
|
|
|
10
10
|
import * as i1$2 from 'ngx-cookie-service';
|
|
11
11
|
import * as i1$3 from '@angular/router';
|
|
12
12
|
import { NavigationStart, NavigationEnd, NavigationError, NavigationCancel } from '@angular/router';
|
|
13
|
-
import { BehaviorSubject, throwError, interval, concat, of, Subject } from 'rxjs';
|
|
13
|
+
import { BehaviorSubject, Subscription, throwError, interval, concat, of, Subject } from 'rxjs';
|
|
14
14
|
import { filter, take, takeWhile, map, catchError, first, takeUntil, mergeMap, finalize } from 'rxjs/operators';
|
|
15
15
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
16
|
+
import { TemplatePortal } from '@angular/cdk/portal';
|
|
17
|
+
import * as i1$4 from '@angular/cdk/overlay';
|
|
18
|
+
import { OverlayModule } from '@angular/cdk/overlay';
|
|
16
19
|
import { __decorate } from 'tslib';
|
|
17
|
-
import * as i1$
|
|
20
|
+
import * as i1$5 from '@angular/common/http';
|
|
18
21
|
import { HttpParams, HttpErrorResponse, HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
19
22
|
import { datadogRum } from '@datadog/browser-rum';
|
|
20
|
-
import * as i1$
|
|
23
|
+
import * as i1$6 from '@angular/service-worker';
|
|
21
24
|
import { ServiceWorkerModule } from '@angular/service-worker';
|
|
22
25
|
import { initialize } from 'launchdarkly-js-client-sdk';
|
|
23
26
|
|
|
@@ -1841,6 +1844,235 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1841
1844
|
args: ['input', ['$event']]
|
|
1842
1845
|
}] } });
|
|
1843
1846
|
|
|
1847
|
+
const POPOVER_OPTIONS = new InjectionToken('POPOVER_OPTIONS');
|
|
1848
|
+
class MonkeyEcxPopoverOptionsDirective {
|
|
1849
|
+
set options(options) {
|
|
1850
|
+
Object.entries(options).forEach(([k, v]) => {
|
|
1851
|
+
this[k] = v;
|
|
1852
|
+
});
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
MonkeyEcxPopoverOptionsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1856
|
+
MonkeyEcxPopoverOptionsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverOptionsDirective, selector: "[monkeyecxPopoverOptions]", inputs: { options: ["monkeyecxPopoverOptions", "options"] }, providers: [
|
|
1857
|
+
{
|
|
1858
|
+
provide: POPOVER_OPTIONS,
|
|
1859
|
+
useExisting: forwardRef(() => {
|
|
1860
|
+
// eslint-disable-next-line no-use-before-define
|
|
1861
|
+
return MonkeyEcxPopoverOptionsDirective;
|
|
1862
|
+
})
|
|
1863
|
+
}
|
|
1864
|
+
], ngImport: i0 });
|
|
1865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, decorators: [{
|
|
1866
|
+
type: Directive,
|
|
1867
|
+
args: [{
|
|
1868
|
+
selector: '[monkeyecxPopoverOptions]',
|
|
1869
|
+
providers: [
|
|
1870
|
+
{
|
|
1871
|
+
provide: POPOVER_OPTIONS,
|
|
1872
|
+
useExisting: forwardRef(() => {
|
|
1873
|
+
// eslint-disable-next-line no-use-before-define
|
|
1874
|
+
return MonkeyEcxPopoverOptionsDirective;
|
|
1875
|
+
})
|
|
1876
|
+
}
|
|
1877
|
+
]
|
|
1878
|
+
}]
|
|
1879
|
+
}], propDecorators: { options: [{
|
|
1880
|
+
type: Input,
|
|
1881
|
+
args: ['monkeyecxPopoverOptions']
|
|
1882
|
+
}] } });
|
|
1883
|
+
|
|
1884
|
+
class MonkeyEcxPopoverDirective {
|
|
1885
|
+
constructor(tpl, vcr, el, zone, _viewContainerRef, _cd, overlay, overlayPositionBuilder, options) {
|
|
1886
|
+
this.tpl = tpl;
|
|
1887
|
+
this.vcr = vcr;
|
|
1888
|
+
this.el = el;
|
|
1889
|
+
this.zone = zone;
|
|
1890
|
+
this._viewContainerRef = _viewContainerRef;
|
|
1891
|
+
this._cd = _cd;
|
|
1892
|
+
this.overlay = overlay;
|
|
1893
|
+
this.overlayPositionBuilder = overlayPositionBuilder;
|
|
1894
|
+
this.options = options;
|
|
1895
|
+
this.minwidth = false;
|
|
1896
|
+
this.backdrop = true;
|
|
1897
|
+
this.watch = false;
|
|
1898
|
+
this.dir = 'ltr';
|
|
1899
|
+
this.contextmenu = false;
|
|
1900
|
+
this.subs = new Subscription();
|
|
1901
|
+
// not to do
|
|
1902
|
+
}
|
|
1903
|
+
get popover() {
|
|
1904
|
+
return this._popover;
|
|
1905
|
+
}
|
|
1906
|
+
set popover(show) {
|
|
1907
|
+
this._popover = show;
|
|
1908
|
+
if (show) {
|
|
1909
|
+
this.createPopover();
|
|
1910
|
+
}
|
|
1911
|
+
else if (this.overlayRef) {
|
|
1912
|
+
this.overlayRef.dispose();
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
get target() {
|
|
1916
|
+
return this._target;
|
|
1917
|
+
}
|
|
1918
|
+
set target(target) {
|
|
1919
|
+
this._target = target;
|
|
1920
|
+
}
|
|
1921
|
+
getDirPositions(dir) {
|
|
1922
|
+
const revert = {
|
|
1923
|
+
start: 'end', end: 'start', bottom: 'top', top: 'bottom', center: 'center'
|
|
1924
|
+
};
|
|
1925
|
+
const centerY = (pos) => {
|
|
1926
|
+
return {
|
|
1927
|
+
originX: 'center', originY: pos, overlayX: 'center', overlayY: revert[pos]
|
|
1928
|
+
};
|
|
1929
|
+
};
|
|
1930
|
+
const centerX = (pos) => {
|
|
1931
|
+
return {
|
|
1932
|
+
originX: revert[pos], originY: 'center', overlayX: pos, overlayY: 'center'
|
|
1933
|
+
};
|
|
1934
|
+
};
|
|
1935
|
+
const ltr = (axis) => {
|
|
1936
|
+
return {
|
|
1937
|
+
originX: 'start', originY: axis, overlayX: 'start', overlayY: revert[axis]
|
|
1938
|
+
};
|
|
1939
|
+
};
|
|
1940
|
+
const rtl = (axis) => {
|
|
1941
|
+
return {
|
|
1942
|
+
originX: 'end', originY: axis, overlayX: 'end', overlayY: revert[axis]
|
|
1943
|
+
};
|
|
1944
|
+
};
|
|
1945
|
+
const side = (axis, axis2) => {
|
|
1946
|
+
return {
|
|
1947
|
+
originX: axis, originY: axis2, overlayX: revert[axis], overlayY: axis2
|
|
1948
|
+
};
|
|
1949
|
+
};
|
|
1950
|
+
const cmp = dir || this.options?.dir || this.dir;
|
|
1951
|
+
if (cmp === 'ct') {
|
|
1952
|
+
return [centerY('top'), centerY('bottom'), centerX('start'), centerX('end')];
|
|
1953
|
+
}
|
|
1954
|
+
if (cmp === 'cr') {
|
|
1955
|
+
return [centerX('end'), centerX('start'), centerY('top'), centerY('bottom')];
|
|
1956
|
+
}
|
|
1957
|
+
if (cmp === 'cc') {
|
|
1958
|
+
return [centerX('center')];
|
|
1959
|
+
}
|
|
1960
|
+
if (cmp === 'ltr') {
|
|
1961
|
+
return [ltr('bottom'), ltr('top')];
|
|
1962
|
+
}
|
|
1963
|
+
if (cmp === 'rtl') {
|
|
1964
|
+
return [rtl('bottom'), rtl('top')];
|
|
1965
|
+
}
|
|
1966
|
+
if (cmp === 'tltr') {
|
|
1967
|
+
return [ltr('top'), ltr('bottom')];
|
|
1968
|
+
}
|
|
1969
|
+
if (cmp === 'trtl') {
|
|
1970
|
+
return [rtl('top'), rtl('bottom')];
|
|
1971
|
+
}
|
|
1972
|
+
if (cmp === 'rt') {
|
|
1973
|
+
return [side('end', 'top'), side('end', 'bottom'), ltr('top')];
|
|
1974
|
+
}
|
|
1975
|
+
if (cmp === 'rb') {
|
|
1976
|
+
return [side('end', 'bottom'), side('end', 'top'), ltr('bottom'), rtl('bottom')];
|
|
1977
|
+
}
|
|
1978
|
+
if (cmp === 'lt') {
|
|
1979
|
+
return [side('start', 'top'), side('start', 'bottom'), rtl('top')];
|
|
1980
|
+
}
|
|
1981
|
+
if (cmp === 'lb') {
|
|
1982
|
+
return [side('start', 'bottom'), side('start', 'top'), rtl('bottom')];
|
|
1983
|
+
}
|
|
1984
|
+
return [];
|
|
1985
|
+
}
|
|
1986
|
+
createPopover(origin, options) {
|
|
1987
|
+
this.templatePortal = new TemplatePortal(this.tpl, this._viewContainerRef);
|
|
1988
|
+
this.positionStrategy = this.overlayPositionBuilder
|
|
1989
|
+
.flexibleConnectedTo(origin || this.target)
|
|
1990
|
+
.withPush(true)
|
|
1991
|
+
.withGrowAfterOpen(true)
|
|
1992
|
+
.withPositions(this.getDirPositions(options?.dir));
|
|
1993
|
+
this.overlayRef = this.overlay.create({
|
|
1994
|
+
positionStrategy: this.positionStrategy,
|
|
1995
|
+
disposeOnNavigation: true,
|
|
1996
|
+
direction: 'ltr',
|
|
1997
|
+
hasBackdrop: this.backdrop,
|
|
1998
|
+
scrollStrategy: this.overlay.scrollStrategies.reposition({}),
|
|
1999
|
+
backdropClass: 'cdk-overlay-transparent-backdrop',
|
|
2000
|
+
width: (this.options?.minwidth || this.minwidth) ? (this.target.offsetWidth - 2) : undefined,
|
|
2001
|
+
maxHeight: '95%',
|
|
2002
|
+
height: this.height
|
|
2003
|
+
});
|
|
2004
|
+
let resizeObserver;
|
|
2005
|
+
const subs = this.overlayRef.backdropClick().subscribe((e) => {
|
|
2006
|
+
this.popover = false;
|
|
2007
|
+
subs.unsubscribe();
|
|
2008
|
+
resizeObserver?.disconnect();
|
|
2009
|
+
this.zone.run(() => {
|
|
2010
|
+
if (this.closed) {
|
|
2011
|
+
this.closed(e);
|
|
2012
|
+
}
|
|
2013
|
+
});
|
|
2014
|
+
});
|
|
2015
|
+
const attached = this.overlayRef.attach(this.templatePortal);
|
|
2016
|
+
if (this.watch) {
|
|
2017
|
+
try {
|
|
2018
|
+
if ('ResizeObserver' in window) {
|
|
2019
|
+
resizeObserver = new ResizeObserver(([{ contentRect }]) => {
|
|
2020
|
+
this.overlayRef.updatePosition();
|
|
2021
|
+
})
|
|
2022
|
+
.observe(attached.rootNodes[0]);
|
|
2023
|
+
}
|
|
2024
|
+
}
|
|
2025
|
+
catch (e) {
|
|
2026
|
+
// not to do
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
ngOnDestroy() {
|
|
2031
|
+
this.popover = false;
|
|
2032
|
+
this.subs.unsubscribe();
|
|
2033
|
+
}
|
|
2034
|
+
}
|
|
2035
|
+
MonkeyEcxPopoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i1$4.Overlay }, { token: i1$4.OverlayPositionBuilder }, { token: POPOVER_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2036
|
+
MonkeyEcxPopoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: { popover: ["monkeyecxPopover", "popover"], closed: ["monkeyecxPopoverClosed", "closed"], target: ["monkeyecxPopoverTarget", "target"], minwidth: ["monkeyecxPopoverMinwidth", "minwidth"], backdrop: ["monkeyecxPopoverBackdrop", "backdrop"], watch: ["monkeyecxPopoverWatch", "watch"], dir: ["monkeyecxPopoverDir", "dir"], contextmenu: ["monkeyecxPopoverContextmenu", "contextmenu"], height: ["monkeyecxPopoverHeight", "height"] }, ngImport: i0 });
|
|
2037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, decorators: [{
|
|
2038
|
+
type: Directive,
|
|
2039
|
+
args: [{
|
|
2040
|
+
selector: '[monkeyecxPopover]'
|
|
2041
|
+
}]
|
|
2042
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ViewContainerRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Overlay }, { type: i1$4.OverlayPositionBuilder }, { type: undefined, decorators: [{
|
|
2043
|
+
type: Inject,
|
|
2044
|
+
args: [POPOVER_OPTIONS]
|
|
2045
|
+
}, {
|
|
2046
|
+
type: Optional
|
|
2047
|
+
}] }]; }, propDecorators: { popover: [{
|
|
2048
|
+
type: Input,
|
|
2049
|
+
args: ['monkeyecxPopover']
|
|
2050
|
+
}], closed: [{
|
|
2051
|
+
type: Input,
|
|
2052
|
+
args: ['monkeyecxPopoverClosed']
|
|
2053
|
+
}], target: [{
|
|
2054
|
+
type: Input,
|
|
2055
|
+
args: ['monkeyecxPopoverTarget']
|
|
2056
|
+
}], minwidth: [{
|
|
2057
|
+
type: Input,
|
|
2058
|
+
args: ['monkeyecxPopoverMinwidth']
|
|
2059
|
+
}], backdrop: [{
|
|
2060
|
+
type: Input,
|
|
2061
|
+
args: ['monkeyecxPopoverBackdrop']
|
|
2062
|
+
}], watch: [{
|
|
2063
|
+
type: Input,
|
|
2064
|
+
args: ['monkeyecxPopoverWatch']
|
|
2065
|
+
}], dir: [{
|
|
2066
|
+
type: Input,
|
|
2067
|
+
args: ['monkeyecxPopoverDir']
|
|
2068
|
+
}], contextmenu: [{
|
|
2069
|
+
type: Input,
|
|
2070
|
+
args: ['monkeyecxPopoverContextmenu']
|
|
2071
|
+
}], height: [{
|
|
2072
|
+
type: Input,
|
|
2073
|
+
args: ['monkeyecxPopoverHeight']
|
|
2074
|
+
}] } });
|
|
2075
|
+
|
|
1844
2076
|
class MonkeyEcxRequestPagedHandling {
|
|
1845
2077
|
constructor(url, pagedParams, links, samePage = false) {
|
|
1846
2078
|
this.samePage = false;
|
|
@@ -2342,14 +2574,14 @@ class MonkeyEcxService {
|
|
|
2342
2574
|
}));
|
|
2343
2575
|
}
|
|
2344
2576
|
}
|
|
2345
|
-
MonkeyEcxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, deps: [{ token: i1$
|
|
2577
|
+
MonkeyEcxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, deps: [{ token: i1$5.HttpClient }, { token: MonkeyEcxHandlingService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2346
2578
|
MonkeyEcxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, providedIn: 'root' });
|
|
2347
2579
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, decorators: [{
|
|
2348
2580
|
type: Injectable,
|
|
2349
2581
|
args: [{
|
|
2350
2582
|
providedIn: 'root',
|
|
2351
2583
|
}]
|
|
2352
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
2584
|
+
}], ctorParameters: function () { return [{ type: i1$5.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
|
|
2353
2585
|
|
|
2354
2586
|
let window$1;
|
|
2355
2587
|
const text = {
|
|
@@ -2564,14 +2796,14 @@ class MonkeyEcxServiceWorkerConfigService {
|
|
|
2564
2796
|
this.verify();
|
|
2565
2797
|
}
|
|
2566
2798
|
}
|
|
2567
|
-
MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$
|
|
2799
|
+
MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$6.SwUpdate }, { token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2568
2800
|
MonkeyEcxServiceWorkerConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, providedIn: 'root' });
|
|
2569
2801
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, decorators: [{
|
|
2570
2802
|
type: Injectable,
|
|
2571
2803
|
args: [{
|
|
2572
2804
|
providedIn: 'root'
|
|
2573
2805
|
}]
|
|
2574
|
-
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$
|
|
2806
|
+
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$6.SwUpdate }, { type: i1.MonkeyStyleGuideModalService }]; } });
|
|
2575
2807
|
|
|
2576
2808
|
/* eslint-disable no-console */
|
|
2577
2809
|
class MonkeyEcxSecurityConsoleConfigService extends MonkeyEcxCommonsService {
|
|
@@ -3175,15 +3407,19 @@ MonkeyEcxDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0
|
|
|
3175
3407
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3176
3408
|
MonkeyEcxOnlyNumbersDirective,
|
|
3177
3409
|
MonkeyEcxSecurityDirective,
|
|
3178
|
-
MonkeyEcxTooltipDirective
|
|
3410
|
+
MonkeyEcxTooltipDirective,
|
|
3411
|
+
MonkeyEcxPopoverDirective,
|
|
3412
|
+
MonkeyEcxPopoverOptionsDirective], imports: [CommonModule, OverlayModule], exports: [MonkeyEcxDragDropDirective,
|
|
3179
3413
|
MonkeyEcxFormatCurrency,
|
|
3180
3414
|
MonkeyEcxFeatureDirective,
|
|
3181
3415
|
MonkeyEcxFormatUpper,
|
|
3182
3416
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3183
3417
|
MonkeyEcxOnlyNumbersDirective,
|
|
3184
3418
|
MonkeyEcxSecurityDirective,
|
|
3185
|
-
MonkeyEcxTooltipDirective
|
|
3186
|
-
|
|
3419
|
+
MonkeyEcxTooltipDirective,
|
|
3420
|
+
MonkeyEcxPopoverDirective,
|
|
3421
|
+
MonkeyEcxPopoverOptionsDirective] });
|
|
3422
|
+
MonkeyEcxDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, imports: [[CommonModule, OverlayModule]] });
|
|
3187
3423
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, decorators: [{
|
|
3188
3424
|
type: NgModule,
|
|
3189
3425
|
args: [{
|
|
@@ -3195,8 +3431,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3195
3431
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3196
3432
|
MonkeyEcxOnlyNumbersDirective,
|
|
3197
3433
|
MonkeyEcxSecurityDirective,
|
|
3198
|
-
MonkeyEcxTooltipDirective
|
|
3434
|
+
MonkeyEcxTooltipDirective,
|
|
3435
|
+
MonkeyEcxPopoverDirective,
|
|
3436
|
+
MonkeyEcxPopoverOptionsDirective
|
|
3199
3437
|
],
|
|
3438
|
+
imports: [CommonModule, OverlayModule],
|
|
3200
3439
|
exports: [
|
|
3201
3440
|
MonkeyEcxDragDropDirective,
|
|
3202
3441
|
MonkeyEcxFormatCurrency,
|
|
@@ -3205,7 +3444,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3205
3444
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3206
3445
|
MonkeyEcxOnlyNumbersDirective,
|
|
3207
3446
|
MonkeyEcxSecurityDirective,
|
|
3208
|
-
MonkeyEcxTooltipDirective
|
|
3447
|
+
MonkeyEcxTooltipDirective,
|
|
3448
|
+
MonkeyEcxPopoverDirective,
|
|
3449
|
+
MonkeyEcxPopoverOptionsDirective
|
|
3209
3450
|
]
|
|
3210
3451
|
}]
|
|
3211
3452
|
}] });
|
|
@@ -4399,13 +4640,13 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4399
4640
|
}
|
|
4400
4641
|
}
|
|
4401
4642
|
|
|
4402
|
-
class
|
|
4643
|
+
class MonkeyFrontCoreModule {
|
|
4403
4644
|
}
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$
|
|
4645
|
+
MonkeyFrontCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4646
|
+
MonkeyFrontCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, imports: [CommonModule,
|
|
4647
|
+
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$6.ServiceWorkerModule, ClosedToMaintenanceModule,
|
|
4407
4648
|
VersionChangedModule] });
|
|
4408
|
-
|
|
4649
|
+
MonkeyFrontCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, providers: [
|
|
4409
4650
|
MonkeyStyleGuideModalService,
|
|
4410
4651
|
MonkeyStyleGuideSettingsService,
|
|
4411
4652
|
MonkeyStyleGuideSnackbarService
|
|
@@ -4421,7 +4662,7 @@ MonkeyFrontCoreModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
|
|
|
4421
4662
|
ClosedToMaintenanceModule,
|
|
4422
4663
|
VersionChangedModule
|
|
4423
4664
|
]] });
|
|
4424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type:
|
|
4665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, decorators: [{
|
|
4425
4666
|
type: NgModule,
|
|
4426
4667
|
args: [{
|
|
4427
4668
|
imports: [
|
|
@@ -4452,5 +4693,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
4452
4693
|
* Generated bundle index. Do not edit.
|
|
4453
4694
|
*/
|
|
4454
4695
|
|
|
4455
|
-
export { ClosedToMaintenanceComponent, ClosedToMaintenanceModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPipesModule, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService,
|
|
4696
|
+
export { ClosedToMaintenanceComponent, ClosedToMaintenanceModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
4456
4697
|
//# sourceMappingURL=monkey-front-core.mjs.map
|