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
|
|
|
@@ -1855,6 +1858,239 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1855
1858
|
args: ['input', ['$event']]
|
|
1856
1859
|
}] } });
|
|
1857
1860
|
|
|
1861
|
+
const POPOVER_OPTIONS = new InjectionToken('POPOVER_OPTIONS');
|
|
1862
|
+
class MonkeyEcxPopoverOptionsDirective {
|
|
1863
|
+
set options(options) {
|
|
1864
|
+
Object.entries(options).forEach(([k, v]) => {
|
|
1865
|
+
this[k] = v;
|
|
1866
|
+
});
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
MonkeyEcxPopoverOptionsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1870
|
+
MonkeyEcxPopoverOptionsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverOptionsDirective, selector: "[monkeyecxPopoverOptions]", inputs: { options: ["monkeyecxPopoverOptions", "options"] }, providers: [
|
|
1871
|
+
{
|
|
1872
|
+
provide: POPOVER_OPTIONS,
|
|
1873
|
+
useExisting: forwardRef(() => {
|
|
1874
|
+
// eslint-disable-next-line no-use-before-define
|
|
1875
|
+
return MonkeyEcxPopoverOptionsDirective;
|
|
1876
|
+
})
|
|
1877
|
+
}
|
|
1878
|
+
], ngImport: i0 });
|
|
1879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, decorators: [{
|
|
1880
|
+
type: Directive,
|
|
1881
|
+
args: [{
|
|
1882
|
+
selector: '[monkeyecxPopoverOptions]',
|
|
1883
|
+
providers: [
|
|
1884
|
+
{
|
|
1885
|
+
provide: POPOVER_OPTIONS,
|
|
1886
|
+
useExisting: forwardRef(() => {
|
|
1887
|
+
// eslint-disable-next-line no-use-before-define
|
|
1888
|
+
return MonkeyEcxPopoverOptionsDirective;
|
|
1889
|
+
})
|
|
1890
|
+
}
|
|
1891
|
+
]
|
|
1892
|
+
}]
|
|
1893
|
+
}], propDecorators: { options: [{
|
|
1894
|
+
type: Input,
|
|
1895
|
+
args: ['monkeyecxPopoverOptions']
|
|
1896
|
+
}] } });
|
|
1897
|
+
|
|
1898
|
+
class MonkeyEcxPopoverDirective {
|
|
1899
|
+
constructor(tpl, vcr, el, zone, _viewContainerRef, _cd, overlay, overlayPositionBuilder, options) {
|
|
1900
|
+
this.tpl = tpl;
|
|
1901
|
+
this.vcr = vcr;
|
|
1902
|
+
this.el = el;
|
|
1903
|
+
this.zone = zone;
|
|
1904
|
+
this._viewContainerRef = _viewContainerRef;
|
|
1905
|
+
this._cd = _cd;
|
|
1906
|
+
this.overlay = overlay;
|
|
1907
|
+
this.overlayPositionBuilder = overlayPositionBuilder;
|
|
1908
|
+
this.options = options;
|
|
1909
|
+
this.minwidth = false;
|
|
1910
|
+
this.backdrop = true;
|
|
1911
|
+
this.watch = false;
|
|
1912
|
+
this.dir = 'ltr';
|
|
1913
|
+
this.contextmenu = false;
|
|
1914
|
+
this.subs = new Subscription();
|
|
1915
|
+
// not to do
|
|
1916
|
+
}
|
|
1917
|
+
get popover() {
|
|
1918
|
+
return this._popover;
|
|
1919
|
+
}
|
|
1920
|
+
set popover(show) {
|
|
1921
|
+
this._popover = show;
|
|
1922
|
+
if (show) {
|
|
1923
|
+
this.createPopover();
|
|
1924
|
+
}
|
|
1925
|
+
else if (this.overlayRef) {
|
|
1926
|
+
this.overlayRef.dispose();
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
get target() {
|
|
1930
|
+
return this._target;
|
|
1931
|
+
}
|
|
1932
|
+
set target(target) {
|
|
1933
|
+
this._target = target;
|
|
1934
|
+
}
|
|
1935
|
+
getDirPositions(dir) {
|
|
1936
|
+
var _a;
|
|
1937
|
+
const revert = {
|
|
1938
|
+
start: 'end', end: 'start', bottom: 'top', top: 'bottom', center: 'center'
|
|
1939
|
+
};
|
|
1940
|
+
const centerY = (pos) => {
|
|
1941
|
+
return {
|
|
1942
|
+
originX: 'center', originY: pos, overlayX: 'center', overlayY: revert[pos]
|
|
1943
|
+
};
|
|
1944
|
+
};
|
|
1945
|
+
const centerX = (pos) => {
|
|
1946
|
+
return {
|
|
1947
|
+
originX: revert[pos], originY: 'center', overlayX: pos, overlayY: 'center'
|
|
1948
|
+
};
|
|
1949
|
+
};
|
|
1950
|
+
const ltr = (axis) => {
|
|
1951
|
+
return {
|
|
1952
|
+
originX: 'start', originY: axis, overlayX: 'start', overlayY: revert[axis]
|
|
1953
|
+
};
|
|
1954
|
+
};
|
|
1955
|
+
const rtl = (axis) => {
|
|
1956
|
+
return {
|
|
1957
|
+
originX: 'end', originY: axis, overlayX: 'end', overlayY: revert[axis]
|
|
1958
|
+
};
|
|
1959
|
+
};
|
|
1960
|
+
const side = (axis, axis2) => {
|
|
1961
|
+
return {
|
|
1962
|
+
originX: axis, originY: axis2, overlayX: revert[axis], overlayY: axis2
|
|
1963
|
+
};
|
|
1964
|
+
};
|
|
1965
|
+
const cmp = dir || ((_a = this.options) === null || _a === void 0 ? void 0 : _a.dir) || this.dir;
|
|
1966
|
+
if (cmp === 'ct') {
|
|
1967
|
+
return [centerY('top'), centerY('bottom'), centerX('start'), centerX('end')];
|
|
1968
|
+
}
|
|
1969
|
+
if (cmp === 'cr') {
|
|
1970
|
+
return [centerX('end'), centerX('start'), centerY('top'), centerY('bottom')];
|
|
1971
|
+
}
|
|
1972
|
+
if (cmp === 'cc') {
|
|
1973
|
+
return [centerX('center')];
|
|
1974
|
+
}
|
|
1975
|
+
if (cmp === 'ltr') {
|
|
1976
|
+
return [ltr('bottom'), ltr('top')];
|
|
1977
|
+
}
|
|
1978
|
+
if (cmp === 'rtl') {
|
|
1979
|
+
return [rtl('bottom'), rtl('top')];
|
|
1980
|
+
}
|
|
1981
|
+
if (cmp === 'tltr') {
|
|
1982
|
+
return [ltr('top'), ltr('bottom')];
|
|
1983
|
+
}
|
|
1984
|
+
if (cmp === 'trtl') {
|
|
1985
|
+
return [rtl('top'), rtl('bottom')];
|
|
1986
|
+
}
|
|
1987
|
+
if (cmp === 'rt') {
|
|
1988
|
+
return [side('end', 'top'), side('end', 'bottom'), ltr('top')];
|
|
1989
|
+
}
|
|
1990
|
+
if (cmp === 'rb') {
|
|
1991
|
+
return [side('end', 'bottom'), side('end', 'top'), ltr('bottom'), rtl('bottom')];
|
|
1992
|
+
}
|
|
1993
|
+
if (cmp === 'lt') {
|
|
1994
|
+
return [side('start', 'top'), side('start', 'bottom'), rtl('top')];
|
|
1995
|
+
}
|
|
1996
|
+
if (cmp === 'lb') {
|
|
1997
|
+
return [side('start', 'bottom'), side('start', 'top'), rtl('bottom')];
|
|
1998
|
+
}
|
|
1999
|
+
return [];
|
|
2000
|
+
}
|
|
2001
|
+
createPopover(origin, options) {
|
|
2002
|
+
var _a;
|
|
2003
|
+
this.templatePortal = new TemplatePortal(this.tpl, this._viewContainerRef);
|
|
2004
|
+
this.positionStrategy = this.overlayPositionBuilder
|
|
2005
|
+
.flexibleConnectedTo(origin || this.target)
|
|
2006
|
+
.withPush(true)
|
|
2007
|
+
.withGrowAfterOpen(true)
|
|
2008
|
+
.withPositions(this.getDirPositions(options === null || options === void 0 ? void 0 : options.dir));
|
|
2009
|
+
this.overlayRef = this.overlay.create({
|
|
2010
|
+
positionStrategy: this.positionStrategy,
|
|
2011
|
+
disposeOnNavigation: true,
|
|
2012
|
+
direction: 'ltr',
|
|
2013
|
+
hasBackdrop: this.backdrop,
|
|
2014
|
+
scrollStrategy: this.overlay.scrollStrategies.reposition({}),
|
|
2015
|
+
backdropClass: 'cdk-overlay-transparent-backdrop',
|
|
2016
|
+
width: (((_a = this.options) === null || _a === void 0 ? void 0 : _a.minwidth) || this.minwidth) ? (this.target.offsetWidth - 2) : undefined,
|
|
2017
|
+
maxHeight: '95%',
|
|
2018
|
+
height: this.height
|
|
2019
|
+
});
|
|
2020
|
+
let resizeObserver;
|
|
2021
|
+
const subs = this.overlayRef.backdropClick().subscribe((e) => {
|
|
2022
|
+
this.popover = false;
|
|
2023
|
+
subs.unsubscribe();
|
|
2024
|
+
resizeObserver === null || resizeObserver === void 0 ? void 0 : resizeObserver.disconnect();
|
|
2025
|
+
this.zone.run(() => {
|
|
2026
|
+
if (this.closed) {
|
|
2027
|
+
this.closed(e);
|
|
2028
|
+
}
|
|
2029
|
+
});
|
|
2030
|
+
});
|
|
2031
|
+
const attached = this.overlayRef.attach(this.templatePortal);
|
|
2032
|
+
if (this.watch) {
|
|
2033
|
+
try {
|
|
2034
|
+
if ('ResizeObserver' in window) {
|
|
2035
|
+
resizeObserver = new ResizeObserver(([{ contentRect }]) => {
|
|
2036
|
+
this.overlayRef.updatePosition();
|
|
2037
|
+
})
|
|
2038
|
+
.observe(attached.rootNodes[0]);
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
catch (e) {
|
|
2042
|
+
// not to do
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
ngOnDestroy() {
|
|
2047
|
+
this.popover = false;
|
|
2048
|
+
this.subs.unsubscribe();
|
|
2049
|
+
}
|
|
2050
|
+
}
|
|
2051
|
+
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 });
|
|
2052
|
+
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 });
|
|
2053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, decorators: [{
|
|
2054
|
+
type: Directive,
|
|
2055
|
+
args: [{
|
|
2056
|
+
selector: '[monkeyecxPopover]'
|
|
2057
|
+
}]
|
|
2058
|
+
}], ctorParameters: function () {
|
|
2059
|
+
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: [{
|
|
2060
|
+
type: Inject,
|
|
2061
|
+
args: [POPOVER_OPTIONS]
|
|
2062
|
+
}, {
|
|
2063
|
+
type: Optional
|
|
2064
|
+
}] }];
|
|
2065
|
+
}, propDecorators: { popover: [{
|
|
2066
|
+
type: Input,
|
|
2067
|
+
args: ['monkeyecxPopover']
|
|
2068
|
+
}], closed: [{
|
|
2069
|
+
type: Input,
|
|
2070
|
+
args: ['monkeyecxPopoverClosed']
|
|
2071
|
+
}], target: [{
|
|
2072
|
+
type: Input,
|
|
2073
|
+
args: ['monkeyecxPopoverTarget']
|
|
2074
|
+
}], minwidth: [{
|
|
2075
|
+
type: Input,
|
|
2076
|
+
args: ['monkeyecxPopoverMinwidth']
|
|
2077
|
+
}], backdrop: [{
|
|
2078
|
+
type: Input,
|
|
2079
|
+
args: ['monkeyecxPopoverBackdrop']
|
|
2080
|
+
}], watch: [{
|
|
2081
|
+
type: Input,
|
|
2082
|
+
args: ['monkeyecxPopoverWatch']
|
|
2083
|
+
}], dir: [{
|
|
2084
|
+
type: Input,
|
|
2085
|
+
args: ['monkeyecxPopoverDir']
|
|
2086
|
+
}], contextmenu: [{
|
|
2087
|
+
type: Input,
|
|
2088
|
+
args: ['monkeyecxPopoverContextmenu']
|
|
2089
|
+
}], height: [{
|
|
2090
|
+
type: Input,
|
|
2091
|
+
args: ['monkeyecxPopoverHeight']
|
|
2092
|
+
}] } });
|
|
2093
|
+
|
|
1858
2094
|
class MonkeyEcxRequestPagedHandling {
|
|
1859
2095
|
constructor(url, pagedParams, links, samePage = false) {
|
|
1860
2096
|
this.samePage = false;
|
|
@@ -2339,14 +2575,14 @@ class MonkeyEcxService {
|
|
|
2339
2575
|
}));
|
|
2340
2576
|
}
|
|
2341
2577
|
}
|
|
2342
|
-
MonkeyEcxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, deps: [{ token: i1$
|
|
2578
|
+
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 });
|
|
2343
2579
|
MonkeyEcxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, providedIn: 'root' });
|
|
2344
2580
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, decorators: [{
|
|
2345
2581
|
type: Injectable,
|
|
2346
2582
|
args: [{
|
|
2347
2583
|
providedIn: 'root',
|
|
2348
2584
|
}]
|
|
2349
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
2585
|
+
}], ctorParameters: function () { return [{ type: i1$5.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
|
|
2350
2586
|
|
|
2351
2587
|
let window$1;
|
|
2352
2588
|
const text = {
|
|
@@ -2560,14 +2796,14 @@ class MonkeyEcxServiceWorkerConfigService {
|
|
|
2560
2796
|
this.verify();
|
|
2561
2797
|
}
|
|
2562
2798
|
}
|
|
2563
|
-
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 });
|
|
2564
2800
|
MonkeyEcxServiceWorkerConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, providedIn: 'root' });
|
|
2565
2801
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, decorators: [{
|
|
2566
2802
|
type: Injectable,
|
|
2567
2803
|
args: [{
|
|
2568
2804
|
providedIn: 'root'
|
|
2569
2805
|
}]
|
|
2570
|
-
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$
|
|
2806
|
+
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$6.SwUpdate }, { type: i1.MonkeyStyleGuideModalService }]; } });
|
|
2571
2807
|
|
|
2572
2808
|
/* eslint-disable no-console */
|
|
2573
2809
|
class MonkeyEcxSecurityConsoleConfigService extends MonkeyEcxCommonsService {
|
|
@@ -3170,15 +3406,19 @@ MonkeyEcxDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0
|
|
|
3170
3406
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3171
3407
|
MonkeyEcxOnlyNumbersDirective,
|
|
3172
3408
|
MonkeyEcxSecurityDirective,
|
|
3173
|
-
MonkeyEcxTooltipDirective
|
|
3409
|
+
MonkeyEcxTooltipDirective,
|
|
3410
|
+
MonkeyEcxPopoverDirective,
|
|
3411
|
+
MonkeyEcxPopoverOptionsDirective], imports: [CommonModule, OverlayModule], exports: [MonkeyEcxDragDropDirective,
|
|
3174
3412
|
MonkeyEcxFormatCurrency,
|
|
3175
3413
|
MonkeyEcxFeatureDirective,
|
|
3176
3414
|
MonkeyEcxFormatUpper,
|
|
3177
3415
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3178
3416
|
MonkeyEcxOnlyNumbersDirective,
|
|
3179
3417
|
MonkeyEcxSecurityDirective,
|
|
3180
|
-
MonkeyEcxTooltipDirective
|
|
3181
|
-
|
|
3418
|
+
MonkeyEcxTooltipDirective,
|
|
3419
|
+
MonkeyEcxPopoverDirective,
|
|
3420
|
+
MonkeyEcxPopoverOptionsDirective] });
|
|
3421
|
+
MonkeyEcxDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, imports: [[CommonModule, OverlayModule]] });
|
|
3182
3422
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, decorators: [{
|
|
3183
3423
|
type: NgModule,
|
|
3184
3424
|
args: [{
|
|
@@ -3190,8 +3430,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3190
3430
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3191
3431
|
MonkeyEcxOnlyNumbersDirective,
|
|
3192
3432
|
MonkeyEcxSecurityDirective,
|
|
3193
|
-
MonkeyEcxTooltipDirective
|
|
3433
|
+
MonkeyEcxTooltipDirective,
|
|
3434
|
+
MonkeyEcxPopoverDirective,
|
|
3435
|
+
MonkeyEcxPopoverOptionsDirective
|
|
3194
3436
|
],
|
|
3437
|
+
imports: [CommonModule, OverlayModule],
|
|
3195
3438
|
exports: [
|
|
3196
3439
|
MonkeyEcxDragDropDirective,
|
|
3197
3440
|
MonkeyEcxFormatCurrency,
|
|
@@ -3200,7 +3443,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3200
3443
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3201
3444
|
MonkeyEcxOnlyNumbersDirective,
|
|
3202
3445
|
MonkeyEcxSecurityDirective,
|
|
3203
|
-
MonkeyEcxTooltipDirective
|
|
3446
|
+
MonkeyEcxTooltipDirective,
|
|
3447
|
+
MonkeyEcxPopoverDirective,
|
|
3448
|
+
MonkeyEcxPopoverOptionsDirective
|
|
3204
3449
|
]
|
|
3205
3450
|
}]
|
|
3206
3451
|
}] });
|
|
@@ -4346,13 +4591,13 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4346
4591
|
}
|
|
4347
4592
|
}
|
|
4348
4593
|
|
|
4349
|
-
class
|
|
4594
|
+
class MonkeyFrontCoreModule {
|
|
4350
4595
|
}
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$
|
|
4596
|
+
MonkeyFrontCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4597
|
+
MonkeyFrontCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, imports: [CommonModule,
|
|
4598
|
+
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$6.ServiceWorkerModule, ClosedToMaintenanceModule,
|
|
4354
4599
|
VersionChangedModule] });
|
|
4355
|
-
|
|
4600
|
+
MonkeyFrontCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, providers: [
|
|
4356
4601
|
MonkeyStyleGuideModalService,
|
|
4357
4602
|
MonkeyStyleGuideSettingsService,
|
|
4358
4603
|
MonkeyStyleGuideSnackbarService
|
|
@@ -4368,7 +4613,7 @@ MonkeyFrontCoreModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
|
|
|
4368
4613
|
ClosedToMaintenanceModule,
|
|
4369
4614
|
VersionChangedModule
|
|
4370
4615
|
]] });
|
|
4371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type:
|
|
4616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, decorators: [{
|
|
4372
4617
|
type: NgModule,
|
|
4373
4618
|
args: [{
|
|
4374
4619
|
imports: [
|
|
@@ -4399,5 +4644,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
4399
4644
|
* Generated bundle index. Do not edit.
|
|
4400
4645
|
*/
|
|
4401
4646
|
|
|
4402
|
-
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,
|
|
4647
|
+
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 };
|
|
4403
4648
|
//# sourceMappingURL=monkey-front-core.mjs.map
|