monkey-front-components 0.0.374 → 0.0.377
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/components/shared/filter/options/currency/currency.component.mjs +2 -2
- package/esm2020/lib/components/shared/filter/options/date-range/date-range.component.mjs +2 -2
- package/esm2020/lib/components/shared/filter/options/input/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/input/input.component.mjs +46 -0
- package/esm2020/lib/components/shared/filter/options/options.component.mjs +7 -6
- package/esm2020/lib/components/shared/filter/options/options.module.mjs +43 -38
- package/esm2020/lib/components/shared/filter/options/status/status.component.mjs +2 -2
- package/esm2020/lib/components/shared/filter/selected/item/index.mjs +2 -1
- package/esm2020/lib/components/shared/filter/selected/item/input/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/input/input.component.mjs +28 -0
- package/esm2020/lib/components/shared/filter/selected/item/item.component.mjs +11 -10
- package/esm2020/lib/components/shared/filter/selected/selected.module.mjs +37 -35
- package/fesm2015/monkey-front-components.mjs +152 -78
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +152 -78
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/lib/components/shared/filter/options/input/index.d.ts +1 -0
- package/lib/components/shared/filter/options/input/input.component.d.ts +17 -0
- package/lib/components/shared/filter/options/options.module.d.ts +13 -12
- package/lib/components/shared/filter/selected/item/index.d.ts +1 -0
- package/lib/components/shared/filter/selected/item/input/index.d.ts +1 -0
- package/lib/components/shared/filter/selected/item/input/input.component.d.ts +11 -0
- package/lib/components/shared/filter/selected/selected.module.d.ts +14 -13
- package/monkey-front-components-0.0.377.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-components-0.0.374.tgz +0 -0
|
@@ -3,7 +3,7 @@ import * as i0 from '@angular/core';
|
|
|
3
3
|
import { Directive, EventEmitter, Input, Output, Component, ViewEncapsulation, HostBinding, ViewChild, NgModule, Injectable } from '@angular/core';
|
|
4
4
|
import { takeUntil, debounceTime, filter } from 'rxjs/operators';
|
|
5
5
|
import * as i1$2 from 'monkey-style-guide';
|
|
6
|
-
import { MonkeyUtils, MonkeyInputModule, MonkeySelectModule, MonkeyRadioButtonModule, MonkeyOptionModule, MonkeyFileUploadModule, MonkeyButtonModule, MonkeyInputPhoneModule, MonkeyBadgeModule,
|
|
6
|
+
import { MonkeyUtils, MonkeyInputModule, MonkeySelectModule, MonkeyRadioButtonModule, MonkeyOptionModule, MonkeyFileUploadModule, MonkeyButtonModule, MonkeyInputPhoneModule, MonkeyBadgeModule, MonkeyCheckboxModule, MonkeyDateRangePickerModule, MonkeyIconModule } from 'monkey-style-guide';
|
|
7
7
|
import * as i1$4 from 'monkey-front-core';
|
|
8
8
|
import { MonkeyEcxCommonsService, ValidateUtils, Validators as Validators$1, MonkeyEcxUtils, MonkeyEcxDirectivesModule, MonkeyEcxPipesModule } from 'monkey-front-core';
|
|
9
9
|
import * as i1 from '@angular/forms';
|
|
@@ -1486,6 +1486,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1486
1486
|
type: Input
|
|
1487
1487
|
}] } });
|
|
1488
1488
|
|
|
1489
|
+
class MECXFilterSelectedItemInputComponent {
|
|
1490
|
+
constructor() {
|
|
1491
|
+
this.option = null;
|
|
1492
|
+
this._value = null;
|
|
1493
|
+
}
|
|
1494
|
+
onHandleSelectedValue({ value }) {
|
|
1495
|
+
this._value = value;
|
|
1496
|
+
}
|
|
1497
|
+
ngOnChanges(changes) {
|
|
1498
|
+
if (changes.option) {
|
|
1499
|
+
const { currentValue } = changes.option;
|
|
1500
|
+
if (currentValue && JSON.stringify(currentValue) !== '{}') {
|
|
1501
|
+
this.onHandleSelectedValue(currentValue);
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
MECXFilterSelectedItemInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedItemInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1507
|
+
MECXFilterSelectedItemInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: MECXFilterSelectedItemInputComponent, selector: "mecx-filter-selected-item-input", inputs: { option: "option" }, usesOnChanges: true, ngImport: i0, template: "{{ _value }}", styles: [""] });
|
|
1508
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedItemInputComponent, decorators: [{
|
|
1509
|
+
type: Component,
|
|
1510
|
+
args: [{ selector: 'mecx-filter-selected-item-input', template: "{{ _value }}", styles: [""] }]
|
|
1511
|
+
}], propDecorators: { option: [{
|
|
1512
|
+
type: Input
|
|
1513
|
+
}] } });
|
|
1514
|
+
|
|
1489
1515
|
class MECXFilterSelectedItemStatusComponent {
|
|
1490
1516
|
constructor() {
|
|
1491
1517
|
this.option = null;
|
|
@@ -1581,7 +1607,7 @@ class MECXFilterOptionsStatusComponent {
|
|
|
1581
1607
|
ngOnInit() {
|
|
1582
1608
|
const { eventHandle, onSubmit, option: { field } } = this;
|
|
1583
1609
|
this.eventSubscription = eventHandle
|
|
1584
|
-
.pipe(debounceTime(
|
|
1610
|
+
.pipe(debounceTime(800))
|
|
1585
1611
|
.subscribe((value) => {
|
|
1586
1612
|
onSubmit.next({ [field]: value });
|
|
1587
1613
|
});
|
|
@@ -1653,7 +1679,7 @@ class MECXFilterOptionsDateRangeComponent {
|
|
|
1653
1679
|
ngOnInit() {
|
|
1654
1680
|
const { eventHandle, onSubmit, option: { field } } = this;
|
|
1655
1681
|
this.eventSubscription = eventHandle
|
|
1656
|
-
.pipe(debounceTime(
|
|
1682
|
+
.pipe(debounceTime(800))
|
|
1657
1683
|
.subscribe((value) => {
|
|
1658
1684
|
onSubmit.next({ [field]: value });
|
|
1659
1685
|
});
|
|
@@ -1697,7 +1723,7 @@ class MECXFilterOptionsCurrencyComponent {
|
|
|
1697
1723
|
ngOnInit() {
|
|
1698
1724
|
const { eventHandle, onSubmit, option: { field } } = this;
|
|
1699
1725
|
this.eventSubscription = eventHandle
|
|
1700
|
-
.pipe(debounceTime(
|
|
1726
|
+
.pipe(debounceTime(800))
|
|
1701
1727
|
.subscribe((value) => {
|
|
1702
1728
|
onSubmit.next({ [field]: value });
|
|
1703
1729
|
});
|
|
@@ -1728,6 +1754,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1728
1754
|
type: Output
|
|
1729
1755
|
}] } });
|
|
1730
1756
|
|
|
1757
|
+
class MECXFilterOptionsInputComponent {
|
|
1758
|
+
constructor() {
|
|
1759
|
+
this.option = null;
|
|
1760
|
+
this.onSubmit = new EventEmitter();
|
|
1761
|
+
this._value = '';
|
|
1762
|
+
this.eventHandle = new EventEmitter();
|
|
1763
|
+
// not to do
|
|
1764
|
+
}
|
|
1765
|
+
ngOnInit() {
|
|
1766
|
+
const { eventHandle, onSubmit, option: { field } } = this;
|
|
1767
|
+
this.eventSubscription = eventHandle
|
|
1768
|
+
.pipe(debounceTime(800))
|
|
1769
|
+
.subscribe((value) => {
|
|
1770
|
+
onSubmit.next({ [field]: value });
|
|
1771
|
+
});
|
|
1772
|
+
}
|
|
1773
|
+
ngOnDestroy() {
|
|
1774
|
+
this.eventSubscription.unsubscribe();
|
|
1775
|
+
}
|
|
1776
|
+
ngOnChanges(changes) {
|
|
1777
|
+
if (changes.option) {
|
|
1778
|
+
const { currentValue } = changes.option;
|
|
1779
|
+
if (currentValue && JSON.stringify(currentValue) !== '{}') {
|
|
1780
|
+
this._value = currentValue?.value;
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1784
|
+
onChangeFilter(value) {
|
|
1785
|
+
this.eventHandle.next(value);
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
MECXFilterOptionsInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1789
|
+
MECXFilterOptionsInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: MECXFilterOptionsInputComponent, selector: "mecx-filter-options-input", inputs: { option: "option" }, outputs: { onSubmit: "onSubmit" }, usesOnChanges: true, ngImport: i0, template: "<monkey-input type=\"text\" maxLength=\"255\" [(value)]=\"_value\"\n (onChange)=\"onChangeFilter($event)\">\n</monkey-input>", styles: [":host{display:flex;flex-direction:column;max-width:232px;min-width:180px;padding:12px 12px 8px;color:#72717e}:host .title{color:#4b4a53;font-size:18px;line-height:21px;font-weight:500;text-align:left;margin-bottom:4px}\n"], components: [{ type: i1$2.MonkeyInputComponent, selector: "monkey-input", inputs: ["name", "label", "helperMessage", "placeholder", "icon", "type", "infoMessage", "errorMessage", "mask", "prefix", "maxLength", "onlyNumber", "onlyAlphaNumeric", "upperCase", "lowerCase", "capitalize", "currency", "percent", "maxDateToday", "value"], outputs: ["onChange"] }] });
|
|
1790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsInputComponent, decorators: [{
|
|
1791
|
+
type: Component,
|
|
1792
|
+
args: [{ selector: 'mecx-filter-options-input', template: "<monkey-input type=\"text\" maxLength=\"255\" [(value)]=\"_value\"\n (onChange)=\"onChangeFilter($event)\">\n</monkey-input>", styles: [":host{display:flex;flex-direction:column;max-width:232px;min-width:180px;padding:12px 12px 8px;color:#72717e}:host .title{color:#4b4a53;font-size:18px;line-height:21px;font-weight:500;text-align:left;margin-bottom:4px}\n"] }]
|
|
1793
|
+
}], ctorParameters: function () { return []; }, propDecorators: { option: [{
|
|
1794
|
+
type: Input
|
|
1795
|
+
}], onSubmit: [{
|
|
1796
|
+
type: Output
|
|
1797
|
+
}] } });
|
|
1798
|
+
|
|
1731
1799
|
class MECXFilterOptionsComponent {
|
|
1732
1800
|
constructor() {
|
|
1733
1801
|
this.option = null;
|
|
@@ -1767,10 +1835,10 @@ class MECXFilterOptionsComponent {
|
|
|
1767
1835
|
}
|
|
1768
1836
|
}
|
|
1769
1837
|
MECXFilterOptionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1770
|
-
MECXFilterOptionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: MECXFilterOptionsComponent, selector: "mecx-filter-options", inputs: { option: "option", closeDirectly: "closeDirectly" }, outputs: { onClose: "onClose", onRemove: "onRemove", onSubmit: "onSubmit", onShowFromChildren: "onShowFromChildren" }, ngImport: i0, template: "<div class=\"d-flex justify-content-between header\">\n <span class=\"title\">\n {{ option?.label | translate }}\n </span>\n <div class=\"close\" #actionElement (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"close-12\" color=\"#474747\"></monkey-icon>\n </div>\n</div>\n<ng-container *ngIf=\"option?.type as type\">\n <ng-container *ngIf=\"option?.children; else withoutChildren\">\n <mecx-filter-options-children [option]=\"option\" (onSubmit)=\"onHandleSubmitChildren($event)\"\n (onShow)=\"onShowFromChildren.next($event)\">\n </mecx-filter-options-children>\n </ng-container>\n <ng-template #withoutChildren>\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-options-status *ngSwitchCase=\"'status'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-status>\n <mecx-filter-options-date-range *ngSwitchCase=\"'date-range'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-date-range>\n <mecx-filter-options-currency *ngSwitchCase=\"'currency'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-currency>\n </ng-container>\n </ng-template>\n</ng-container>\n\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(actionElement); closed: closeMenu; dir: 'ltr'\">\n <div class=\"close-menu\">\n <monkey-button type=\"tertiary\" color=\"error\" (click)=\"onRemove.next()\" size=\"sm\">\n {{ 'BUTTONS.REMOVE' | translate }}\n </monkey-button>\n <monkey-button type=\"tertiary\" color=\"theme\" (click)=\"onClose.next()\" size=\"sm\">\n {{ 'BUTTONS.CLOSE' | translate }}\n </monkey-button>\n </div>\n</ng-container>", styles: [":host{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px}:host .header{border-bottom:1px solid #d6d6d6;padding:8px}:host .header .title{color:#4b4a53;font-style:normal;font-size:14px;line-height:16px;font-weight:500;text-align:left}:host .header .close{cursor:pointer;border-radius:120px;padding:4px}:host .header .close:hover{background-color:#6d6d6d0c}.close-menu{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px;padding:8px}.close-menu ::ng-deep monkey-button{width:100%}.close-menu ::ng-deep monkey-button button{width:100%}\n"], components: [{ type: i1$2.MonkeyIconComponent, selector: "monkey-icon", inputs: ["icon", "color", "contrast", "disabled"] }, { type: MECXFilterOptionsChildrenComponent, selector: "mecx-filter-options-children", inputs: ["option"], outputs: ["onSubmit", "onShow"] }, { type: MECXFilterOptionsStatusComponent, selector: "mecx-filter-options-status", inputs: ["option"], outputs: ["onSubmit"] }, { type: MECXFilterOptionsDateRangeComponent, selector: "mecx-filter-options-date-range", inputs: ["option"], outputs: ["onSubmit"] }, { type: MECXFilterOptionsCurrencyComponent, selector: "mecx-filter-options-currency", inputs: ["option"], outputs: ["onSubmit"] }, { type: i1$2.MonkeyButtonComponent, selector: "monkey-button", inputs: ["label", "icon", "iconPosition", "type", "color", "disabled", "size"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$4.MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: ["monkeyecxPopover", "monkeyecxPopoverClosed", "monkeyecxPopoverTarget", "monkeyecxPopoverMinwidth", "monkeyecxPopoverBackdrop", "monkeyecxPopoverWatch", "monkeyecxPopoverDir", "monkeyecxPopoverContextmenu", "monkeyecxPopoverHeight"] }], pipes: { "translate": i1$3.TranslatePipe } });
|
|
1838
|
+
MECXFilterOptionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: MECXFilterOptionsComponent, selector: "mecx-filter-options", inputs: { option: "option", closeDirectly: "closeDirectly" }, outputs: { onClose: "onClose", onRemove: "onRemove", onSubmit: "onSubmit", onShowFromChildren: "onShowFromChildren" }, ngImport: i0, template: "<div class=\"d-flex justify-content-between header\">\n <span class=\"title\">\n {{ option?.label | translate }}\n </span>\n <div class=\"close\" #actionElement (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"close-12\" color=\"#474747\"></monkey-icon>\n </div>\n</div>\n<ng-container *ngIf=\"option?.type as type\">\n <ng-container *ngIf=\"option?.children; else withoutChildren\">\n <mecx-filter-options-children [option]=\"option\" (onSubmit)=\"onHandleSubmitChildren($event)\"\n (onShow)=\"onShowFromChildren.next($event)\">\n </mecx-filter-options-children>\n </ng-container>\n <ng-template #withoutChildren>\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-options-status *ngSwitchCase=\"'status'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-status>\n <mecx-filter-options-date-range *ngSwitchCase=\"'date-range'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-date-range>\n <mecx-filter-options-currency *ngSwitchCase=\"'currency'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-currency>\n <mecx-filter-options-input *ngSwitchCase=\"'input'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-input>\n </ng-container>\n </ng-template>\n</ng-container>\n\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(actionElement); closed: closeMenu; dir: 'ltr'\">\n <div class=\"close-menu\">\n <monkey-button type=\"tertiary\" color=\"error\" (click)=\"onRemove.next()\" size=\"sm\">\n {{ 'BUTTONS.REMOVE' | translate }}\n </monkey-button>\n <monkey-button type=\"tertiary\" color=\"theme\" (click)=\"onClose.next()\" size=\"sm\">\n {{ 'BUTTONS.CLOSE' | translate }}\n </monkey-button>\n </div>\n</ng-container>", styles: [":host{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px}:host .header{border-bottom:1px solid #d6d6d6;padding:8px}:host .header .title{color:#4b4a53;font-style:normal;font-size:14px;line-height:16px;font-weight:500;text-align:left}:host .header .close{cursor:pointer;border-radius:120px;padding:4px}:host .header .close:hover{background-color:#6d6d6d0c}.close-menu{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px;padding:8px}.close-menu ::ng-deep monkey-button{width:100%}.close-menu ::ng-deep monkey-button button{width:100%}\n"], components: [{ type: i1$2.MonkeyIconComponent, selector: "monkey-icon", inputs: ["icon", "color", "contrast", "disabled"] }, { type: MECXFilterOptionsChildrenComponent, selector: "mecx-filter-options-children", inputs: ["option"], outputs: ["onSubmit", "onShow"] }, { type: MECXFilterOptionsStatusComponent, selector: "mecx-filter-options-status", inputs: ["option"], outputs: ["onSubmit"] }, { type: MECXFilterOptionsDateRangeComponent, selector: "mecx-filter-options-date-range", inputs: ["option"], outputs: ["onSubmit"] }, { type: MECXFilterOptionsCurrencyComponent, selector: "mecx-filter-options-currency", inputs: ["option"], outputs: ["onSubmit"] }, { type: MECXFilterOptionsInputComponent, selector: "mecx-filter-options-input", inputs: ["option"], outputs: ["onSubmit"] }, { type: i1$2.MonkeyButtonComponent, selector: "monkey-button", inputs: ["label", "icon", "iconPosition", "type", "color", "disabled", "size"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$4.MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: ["monkeyecxPopover", "monkeyecxPopoverClosed", "monkeyecxPopoverTarget", "monkeyecxPopoverMinwidth", "monkeyecxPopoverBackdrop", "monkeyecxPopoverWatch", "monkeyecxPopoverDir", "monkeyecxPopoverContextmenu", "monkeyecxPopoverHeight"] }], pipes: { "translate": i1$3.TranslatePipe } });
|
|
1771
1839
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsComponent, decorators: [{
|
|
1772
1840
|
type: Component,
|
|
1773
|
-
args: [{ selector: 'mecx-filter-options', template: "<div class=\"d-flex justify-content-between header\">\n <span class=\"title\">\n {{ option?.label | translate }}\n </span>\n <div class=\"close\" #actionElement (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"close-12\" color=\"#474747\"></monkey-icon>\n </div>\n</div>\n<ng-container *ngIf=\"option?.type as type\">\n <ng-container *ngIf=\"option?.children; else withoutChildren\">\n <mecx-filter-options-children [option]=\"option\" (onSubmit)=\"onHandleSubmitChildren($event)\"\n (onShow)=\"onShowFromChildren.next($event)\">\n </mecx-filter-options-children>\n </ng-container>\n <ng-template #withoutChildren>\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-options-status *ngSwitchCase=\"'status'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-status>\n <mecx-filter-options-date-range *ngSwitchCase=\"'date-range'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-date-range>\n <mecx-filter-options-currency *ngSwitchCase=\"'currency'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-currency>\n </ng-container>\n </ng-template>\n</ng-container>\n\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(actionElement); closed: closeMenu; dir: 'ltr'\">\n <div class=\"close-menu\">\n <monkey-button type=\"tertiary\" color=\"error\" (click)=\"onRemove.next()\" size=\"sm\">\n {{ 'BUTTONS.REMOVE' | translate }}\n </monkey-button>\n <monkey-button type=\"tertiary\" color=\"theme\" (click)=\"onClose.next()\" size=\"sm\">\n {{ 'BUTTONS.CLOSE' | translate }}\n </monkey-button>\n </div>\n</ng-container>", styles: [":host{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px}:host .header{border-bottom:1px solid #d6d6d6;padding:8px}:host .header .title{color:#4b4a53;font-style:normal;font-size:14px;line-height:16px;font-weight:500;text-align:left}:host .header .close{cursor:pointer;border-radius:120px;padding:4px}:host .header .close:hover{background-color:#6d6d6d0c}.close-menu{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px;padding:8px}.close-menu ::ng-deep monkey-button{width:100%}.close-menu ::ng-deep monkey-button button{width:100%}\n"] }]
|
|
1841
|
+
args: [{ selector: 'mecx-filter-options', template: "<div class=\"d-flex justify-content-between header\">\n <span class=\"title\">\n {{ option?.label | translate }}\n </span>\n <div class=\"close\" #actionElement (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"close-12\" color=\"#474747\"></monkey-icon>\n </div>\n</div>\n<ng-container *ngIf=\"option?.type as type\">\n <ng-container *ngIf=\"option?.children; else withoutChildren\">\n <mecx-filter-options-children [option]=\"option\" (onSubmit)=\"onHandleSubmitChildren($event)\"\n (onShow)=\"onShowFromChildren.next($event)\">\n </mecx-filter-options-children>\n </ng-container>\n <ng-template #withoutChildren>\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-options-status *ngSwitchCase=\"'status'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-status>\n <mecx-filter-options-date-range *ngSwitchCase=\"'date-range'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-date-range>\n <mecx-filter-options-currency *ngSwitchCase=\"'currency'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-currency>\n <mecx-filter-options-input *ngSwitchCase=\"'input'\" [option]=\"option\"\n (onSubmit)=\"onHandleSubmit($event)\">\n </mecx-filter-options-input>\n </ng-container>\n </ng-template>\n</ng-container>\n\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(actionElement); closed: closeMenu; dir: 'ltr'\">\n <div class=\"close-menu\">\n <monkey-button type=\"tertiary\" color=\"error\" (click)=\"onRemove.next()\" size=\"sm\">\n {{ 'BUTTONS.REMOVE' | translate }}\n </monkey-button>\n <monkey-button type=\"tertiary\" color=\"theme\" (click)=\"onClose.next()\" size=\"sm\">\n {{ 'BUTTONS.CLOSE' | translate }}\n </monkey-button>\n </div>\n</ng-container>", styles: [":host{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px}:host .header{border-bottom:1px solid #d6d6d6;padding:8px}:host .header .title{color:#4b4a53;font-style:normal;font-size:14px;line-height:16px;font-weight:500;text-align:left}:host .header .close{cursor:pointer;border-radius:120px;padding:4px}:host .header .close:hover{background-color:#6d6d6d0c}.close-menu{display:flex;flex-direction:column;background:#fafafa;border:1px solid #d6d6d6;box-sizing:border-box;box-shadow:0 4px 36px -8px #6d6d6d3a;border-radius:8px!important;margin:0 8px;padding:8px}.close-menu ::ng-deep monkey-button{width:100%}.close-menu ::ng-deep monkey-button button{width:100%}\n"] }]
|
|
1774
1842
|
}], ctorParameters: function () { return []; }, propDecorators: { option: [{
|
|
1775
1843
|
type: Input
|
|
1776
1844
|
}], closeDirectly: [{
|
|
@@ -1835,10 +1903,10 @@ class MECXFilterSelectedItemComponent {
|
|
|
1835
1903
|
}
|
|
1836
1904
|
}
|
|
1837
1905
|
MECXFilterSelectedItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1838
|
-
MECXFilterSelectedItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: MECXFilterSelectedItemComponent, selector: "mecx-filter-selected-item", inputs: { option: "option" }, outputs: { onClose: "onClose", onSubmit: "onSubmit" }, ngImport: i0, template: "<ng-container *ngIf=\"_option?.type as type\">\n <ng-container *ngIf=\"_option?.children; else withoutChildren\">\n <mecx-filter-selected-item-children [option]=\"_option\" (onShow)=\"onHandleShowMenu()\"\n (onRemove)=\"onHandleRemove()\">\n </mecx-filter-selected-item-children>\n </ng-container>\n <ng-template #withoutChildren>\n <div class=\"box\">\n <div class=\"data\">\n {{ _option.label | translate }}\n </div>\n <div class=\"value\" [id]=\"'mecx-filter-selected-item-'+_option?.field\"\n (click)=\"onHandleShowMenu()\">\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-selected-item-currency *ngSwitchCase=\"'currency'\" [option]=\"_option\">\n </mecx-filter-selected-item-currency>\n <mecx-filter-selected-item-date-range *ngSwitchCase=\"'date-range'\" [option]=\"_option\">\n </mecx-filter-selected-item-date-range>\n <mecx-filter-selected-item-status *ngSwitchCase=\"'status'\" [option]=\"_option\"\n [labelMoreValues]=\"'FIELD.AND-MORE' | translate\">\n </mecx-filter-selected-item-status>\n </ng-container>\n </div>\n <div class=\"action\" (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"arrow-right-14\" color=\"#4B4A53\"></monkey-icon>\n </div>\n </div>\n </ng-template>\n</ng-container>\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(_actionElement); closed: closeMenu; dir: 'ltr'\">\n <mecx-filter-options [option]=\"_option\" (onClose)=\"onHandleClose()\"\n (onRemove)=\"onHandleRemove()\" (onSubmit)=\"onHandleSubmit($event)\"\n (onShowFromChildren)=\"onHandleShowFromChildren($event)\">\n </mecx-filter-options>\n</ng-container>", styles: [":host{display:flex}:host .box{display:flex;justify-content:space-between;align-items:center;background:#ffffff;border:1px solid #d6d6d6;box-sizing:border-box;border-radius:120px;height:40px}:host .box .data{display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e}:host .box .value{cursor:pointer;display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e;background-color:#6d6d6d0a}:host .box .value:hover{background-color:#6d6d6d0c;font-weight:400;text-decoration:underline}:host .box .action{cursor:pointer;border-left:1px solid #d6d6d6;padding:8px;color:#908e9d;font-weight:500;font-size:18px;height:40px;align-items:center;display:flex}:host .box .action:hover{background-color:#6d6d6d0c;border-top-right-radius:120px;border-bottom-right-radius:120px}mecx-filter-options{margin:4px 0}\n"], components: [{ type: MECXFilterSelectedItemChildrenComponent, selector: "mecx-filter-selected-item-children", inputs: ["option"], outputs: ["onShow", "onRemove"] }, { type: MECXFilterSelectedItemCurrencyComponent, selector: "mecx-filter-selected-item-currency", inputs: ["option"] }, { type: MECXFilterSelectedItemDateRangeComponent, selector: "mecx-filter-selected-item-date-range", inputs: ["option"] }, { type: MECXFilterSelectedItemStatusComponent, selector: "mecx-filter-selected-item-status", inputs: ["option", "labelMoreValues"] }, { type: i1$2.MonkeyIconComponent, selector: "monkey-icon", inputs: ["icon", "color", "contrast", "disabled"] }, { type: MECXFilterOptionsComponent, selector: "mecx-filter-options", inputs: ["option", "closeDirectly"], outputs: ["onClose", "onRemove", "onSubmit", "onShowFromChildren"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$4.MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: ["monkeyecxPopover", "monkeyecxPopoverClosed", "monkeyecxPopoverTarget", "monkeyecxPopoverMinwidth", "monkeyecxPopoverBackdrop", "monkeyecxPopoverWatch", "monkeyecxPopoverDir", "monkeyecxPopoverContextmenu", "monkeyecxPopoverHeight"] }], pipes: { "translate": i1$3.TranslatePipe } });
|
|
1906
|
+
MECXFilterSelectedItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: MECXFilterSelectedItemComponent, selector: "mecx-filter-selected-item", inputs: { option: "option" }, outputs: { onClose: "onClose", onSubmit: "onSubmit" }, ngImport: i0, template: "<ng-container *ngIf=\"_option?.type as type\">\n <ng-container *ngIf=\"_option?.children; else withoutChildren\">\n <mecx-filter-selected-item-children [option]=\"_option\" (onShow)=\"onHandleShowMenu()\"\n (onRemove)=\"onHandleRemove()\">\n </mecx-filter-selected-item-children>\n </ng-container>\n <ng-template #withoutChildren>\n <div class=\"box\">\n <div class=\"data\">\n {{ _option.label | translate }}\n </div>\n <div class=\"value\" [id]=\"'mecx-filter-selected-item-'+_option?.field\"\n (click)=\"onHandleShowMenu()\">\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-selected-item-currency *ngSwitchCase=\"'currency'\" [option]=\"_option\">\n </mecx-filter-selected-item-currency>\n <mecx-filter-selected-item-input *ngSwitchCase=\"'input'\" [option]=\"_option\">\n </mecx-filter-selected-item-input>\n <mecx-filter-selected-item-date-range *ngSwitchCase=\"'date-range'\" [option]=\"_option\">\n </mecx-filter-selected-item-date-range>\n <mecx-filter-selected-item-status *ngSwitchCase=\"'status'\" [option]=\"_option\"\n [labelMoreValues]=\"'FIELD.AND-MORE' | translate\">\n </mecx-filter-selected-item-status>\n </ng-container>\n </div>\n <div class=\"action\" (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"arrow-right-14\" color=\"#4B4A53\"></monkey-icon>\n </div>\n </div>\n </ng-template>\n</ng-container>\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(_actionElement); closed: closeMenu; dir: 'ltr'\">\n <mecx-filter-options [option]=\"_option\" (onClose)=\"onHandleClose()\"\n (onRemove)=\"onHandleRemove()\" (onSubmit)=\"onHandleSubmit($event)\"\n (onShowFromChildren)=\"onHandleShowFromChildren($event)\">\n </mecx-filter-options>\n</ng-container>", styles: [":host{display:flex}:host .box{display:flex;justify-content:space-between;align-items:center;background:#ffffff;border:1px solid #d6d6d6;box-sizing:border-box;border-radius:120px;height:40px}:host .box .data{display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e}:host .box .value{cursor:pointer;display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e;background-color:#6d6d6d0a}:host .box .value:hover{background-color:#6d6d6d0c;font-weight:400;text-decoration:underline}:host .box .action{cursor:pointer;border-left:1px solid #d6d6d6;padding:8px;color:#908e9d;font-weight:500;font-size:18px;height:40px;align-items:center;display:flex}:host .box .action:hover{background-color:#6d6d6d0c;border-top-right-radius:120px;border-bottom-right-radius:120px}mecx-filter-options{margin:4px 0}\n"], components: [{ type: MECXFilterSelectedItemChildrenComponent, selector: "mecx-filter-selected-item-children", inputs: ["option"], outputs: ["onShow", "onRemove"] }, { type: MECXFilterSelectedItemCurrencyComponent, selector: "mecx-filter-selected-item-currency", inputs: ["option"] }, { type: MECXFilterSelectedItemInputComponent, selector: "mecx-filter-selected-item-input", inputs: ["option"] }, { type: MECXFilterSelectedItemDateRangeComponent, selector: "mecx-filter-selected-item-date-range", inputs: ["option"] }, { type: MECXFilterSelectedItemStatusComponent, selector: "mecx-filter-selected-item-status", inputs: ["option", "labelMoreValues"] }, { type: i1$2.MonkeyIconComponent, selector: "monkey-icon", inputs: ["icon", "color", "contrast", "disabled"] }, { type: MECXFilterOptionsComponent, selector: "mecx-filter-options", inputs: ["option", "closeDirectly"], outputs: ["onClose", "onRemove", "onSubmit", "onShowFromChildren"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$4.MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: ["monkeyecxPopover", "monkeyecxPopoverClosed", "monkeyecxPopoverTarget", "monkeyecxPopoverMinwidth", "monkeyecxPopoverBackdrop", "monkeyecxPopoverWatch", "monkeyecxPopoverDir", "monkeyecxPopoverContextmenu", "monkeyecxPopoverHeight"] }], pipes: { "translate": i1$3.TranslatePipe } });
|
|
1839
1907
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedItemComponent, decorators: [{
|
|
1840
1908
|
type: Component,
|
|
1841
|
-
args: [{ selector: 'mecx-filter-selected-item', template: "<ng-container *ngIf=\"_option?.type as type\">\n <ng-container *ngIf=\"_option?.children; else withoutChildren\">\n <mecx-filter-selected-item-children [option]=\"_option\" (onShow)=\"onHandleShowMenu()\"\n (onRemove)=\"onHandleRemove()\">\n </mecx-filter-selected-item-children>\n </ng-container>\n <ng-template #withoutChildren>\n <div class=\"box\">\n <div class=\"data\">\n {{ _option.label | translate }}\n </div>\n <div class=\"value\" [id]=\"'mecx-filter-selected-item-'+_option?.field\"\n (click)=\"onHandleShowMenu()\">\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-selected-item-currency *ngSwitchCase=\"'currency'\" [option]=\"_option\">\n </mecx-filter-selected-item-currency>\n <mecx-filter-selected-item-date-range *ngSwitchCase=\"'date-range'\" [option]=\"_option\">\n </mecx-filter-selected-item-date-range>\n <mecx-filter-selected-item-status *ngSwitchCase=\"'status'\" [option]=\"_option\"\n [labelMoreValues]=\"'FIELD.AND-MORE' | translate\">\n </mecx-filter-selected-item-status>\n </ng-container>\n </div>\n <div class=\"action\" (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"arrow-right-14\" color=\"#4B4A53\"></monkey-icon>\n </div>\n </div>\n </ng-template>\n</ng-container>\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(_actionElement); closed: closeMenu; dir: 'ltr'\">\n <mecx-filter-options [option]=\"_option\" (onClose)=\"onHandleClose()\"\n (onRemove)=\"onHandleRemove()\" (onSubmit)=\"onHandleSubmit($event)\"\n (onShowFromChildren)=\"onHandleShowFromChildren($event)\">\n </mecx-filter-options>\n</ng-container>", styles: [":host{display:flex}:host .box{display:flex;justify-content:space-between;align-items:center;background:#ffffff;border:1px solid #d6d6d6;box-sizing:border-box;border-radius:120px;height:40px}:host .box .data{display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e}:host .box .value{cursor:pointer;display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e;background-color:#6d6d6d0a}:host .box .value:hover{background-color:#6d6d6d0c;font-weight:400;text-decoration:underline}:host .box .action{cursor:pointer;border-left:1px solid #d6d6d6;padding:8px;color:#908e9d;font-weight:500;font-size:18px;height:40px;align-items:center;display:flex}:host .box .action:hover{background-color:#6d6d6d0c;border-top-right-radius:120px;border-bottom-right-radius:120px}mecx-filter-options{margin:4px 0}\n"] }]
|
|
1909
|
+
args: [{ selector: 'mecx-filter-selected-item', template: "<ng-container *ngIf=\"_option?.type as type\">\n <ng-container *ngIf=\"_option?.children; else withoutChildren\">\n <mecx-filter-selected-item-children [option]=\"_option\" (onShow)=\"onHandleShowMenu()\"\n (onRemove)=\"onHandleRemove()\">\n </mecx-filter-selected-item-children>\n </ng-container>\n <ng-template #withoutChildren>\n <div class=\"box\">\n <div class=\"data\">\n {{ _option.label | translate }}\n </div>\n <div class=\"value\" [id]=\"'mecx-filter-selected-item-'+_option?.field\"\n (click)=\"onHandleShowMenu()\">\n <ng-container [ngSwitch]=\"type\">\n <mecx-filter-selected-item-currency *ngSwitchCase=\"'currency'\" [option]=\"_option\">\n </mecx-filter-selected-item-currency>\n <mecx-filter-selected-item-input *ngSwitchCase=\"'input'\" [option]=\"_option\">\n </mecx-filter-selected-item-input>\n <mecx-filter-selected-item-date-range *ngSwitchCase=\"'date-range'\" [option]=\"_option\">\n </mecx-filter-selected-item-date-range>\n <mecx-filter-selected-item-status *ngSwitchCase=\"'status'\" [option]=\"_option\"\n [labelMoreValues]=\"'FIELD.AND-MORE' | translate\">\n </mecx-filter-selected-item-status>\n </ng-container>\n </div>\n <div class=\"action\" (click)=\"onHandleShowMenu()\">\n <monkey-icon icon=\"arrow-right-14\" color=\"#4B4A53\"></monkey-icon>\n </div>\n </div>\n </ng-template>\n</ng-container>\n<ng-container\n *monkeyecxPopover=\"_showMenu; target: $any(_actionElement); closed: closeMenu; dir: 'ltr'\">\n <mecx-filter-options [option]=\"_option\" (onClose)=\"onHandleClose()\"\n (onRemove)=\"onHandleRemove()\" (onSubmit)=\"onHandleSubmit($event)\"\n (onShowFromChildren)=\"onHandleShowFromChildren($event)\">\n </mecx-filter-options>\n</ng-container>", styles: [":host{display:flex}:host .box{display:flex;justify-content:space-between;align-items:center;background:#ffffff;border:1px solid #d6d6d6;box-sizing:border-box;border-radius:120px;height:40px}:host .box .data{display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e}:host .box .value{cursor:pointer;display:flex;align-items:center;padding:12px 8px;height:100%;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:center;color:#72717e;background-color:#6d6d6d0a}:host .box .value:hover{background-color:#6d6d6d0c;font-weight:400;text-decoration:underline}:host .box .action{cursor:pointer;border-left:1px solid #d6d6d6;padding:8px;color:#908e9d;font-weight:500;font-size:18px;height:40px;align-items:center;display:flex}:host .box .action:hover{background-color:#6d6d6d0c;border-top-right-radius:120px;border-bottom-right-radius:120px}mecx-filter-options{margin:4px 0}\n"] }]
|
|
1842
1910
|
}], ctorParameters: function () { return []; }, propDecorators: { option: [{
|
|
1843
1911
|
type: Input
|
|
1844
1912
|
}], onClose: [{
|
|
@@ -2148,75 +2216,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
2148
2216
|
class MECXFilterOptionsModule {
|
|
2149
2217
|
}
|
|
2150
2218
|
MECXFilterOptionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2151
|
-
MECXFilterOptionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsModule, declarations: [
|
|
2152
|
-
|
|
2153
|
-
MECXFilterOptionsDateRangeComponent,
|
|
2219
|
+
MECXFilterOptionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsModule, declarations: [MECXFilterOptionsChildrenComponent,
|
|
2220
|
+
MECXFilterOptionsComponent,
|
|
2154
2221
|
MECXFilterOptionsCurrencyComponent,
|
|
2155
|
-
|
|
2156
|
-
|
|
2222
|
+
MECXFilterOptionsDateRangeComponent,
|
|
2223
|
+
MECXFilterOptionsInputComponent,
|
|
2224
|
+
MECXFilterOptionsStatusComponent], imports: [CommonModule,
|
|
2225
|
+
FormsModule,
|
|
2157
2226
|
MonkeyBadgeModule,
|
|
2227
|
+
MonkeyButtonModule,
|
|
2228
|
+
MonkeyCheckboxModule,
|
|
2229
|
+
MonkeyDateRangePickerModule,
|
|
2230
|
+
MonkeyEcxDirectivesModule,
|
|
2158
2231
|
MonkeyIconModule,
|
|
2159
2232
|
MonkeyInputModule,
|
|
2160
|
-
MonkeyCheckboxModule,
|
|
2161
|
-
MonkeySelectModule,
|
|
2162
2233
|
MonkeyOptionModule,
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
ReactiveFormsModule, i1$3.TranslateModule], exports: [MECXFilterOptionsComponent,
|
|
2168
|
-
MECXFilterOptionsStatusComponent,
|
|
2169
|
-
MECXFilterOptionsDateRangeComponent,
|
|
2234
|
+
MonkeySelectModule,
|
|
2235
|
+
ReactiveFormsModule,
|
|
2236
|
+
RouterModule, i1$3.TranslateModule], exports: [MECXFilterOptionsChildrenComponent,
|
|
2237
|
+
MECXFilterOptionsComponent,
|
|
2170
2238
|
MECXFilterOptionsCurrencyComponent,
|
|
2171
|
-
|
|
2239
|
+
MECXFilterOptionsDateRangeComponent,
|
|
2240
|
+
MECXFilterOptionsInputComponent,
|
|
2241
|
+
MECXFilterOptionsStatusComponent] });
|
|
2172
2242
|
MECXFilterOptionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsModule, imports: [[
|
|
2173
|
-
|
|
2174
|
-
|
|
2243
|
+
CommonModule,
|
|
2244
|
+
FormsModule,
|
|
2175
2245
|
MonkeyBadgeModule,
|
|
2246
|
+
MonkeyButtonModule,
|
|
2247
|
+
MonkeyCheckboxModule,
|
|
2248
|
+
MonkeyDateRangePickerModule,
|
|
2249
|
+
MonkeyEcxDirectivesModule,
|
|
2176
2250
|
MonkeyIconModule,
|
|
2177
2251
|
MonkeyInputModule,
|
|
2178
|
-
MonkeyCheckboxModule,
|
|
2179
|
-
MonkeySelectModule,
|
|
2180
2252
|
MonkeyOptionModule,
|
|
2181
|
-
|
|
2182
|
-
RouterModule,
|
|
2183
|
-
CommonModule,
|
|
2184
|
-
FormsModule,
|
|
2253
|
+
MonkeySelectModule,
|
|
2185
2254
|
ReactiveFormsModule,
|
|
2255
|
+
RouterModule,
|
|
2186
2256
|
TranslateModule.forChild()
|
|
2187
2257
|
]] });
|
|
2188
2258
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterOptionsModule, decorators: [{
|
|
2189
2259
|
type: NgModule,
|
|
2190
2260
|
args: [{
|
|
2191
2261
|
declarations: [
|
|
2262
|
+
MECXFilterOptionsChildrenComponent,
|
|
2192
2263
|
MECXFilterOptionsComponent,
|
|
2193
|
-
MECXFilterOptionsStatusComponent,
|
|
2194
|
-
MECXFilterOptionsDateRangeComponent,
|
|
2195
2264
|
MECXFilterOptionsCurrencyComponent,
|
|
2196
|
-
|
|
2265
|
+
MECXFilterOptionsDateRangeComponent,
|
|
2266
|
+
MECXFilterOptionsInputComponent,
|
|
2267
|
+
MECXFilterOptionsStatusComponent
|
|
2197
2268
|
],
|
|
2198
2269
|
imports: [
|
|
2199
|
-
|
|
2200
|
-
|
|
2270
|
+
CommonModule,
|
|
2271
|
+
FormsModule,
|
|
2201
2272
|
MonkeyBadgeModule,
|
|
2273
|
+
MonkeyButtonModule,
|
|
2274
|
+
MonkeyCheckboxModule,
|
|
2275
|
+
MonkeyDateRangePickerModule,
|
|
2276
|
+
MonkeyEcxDirectivesModule,
|
|
2202
2277
|
MonkeyIconModule,
|
|
2203
2278
|
MonkeyInputModule,
|
|
2204
|
-
MonkeyCheckboxModule,
|
|
2205
|
-
MonkeySelectModule,
|
|
2206
2279
|
MonkeyOptionModule,
|
|
2207
|
-
|
|
2208
|
-
RouterModule,
|
|
2209
|
-
CommonModule,
|
|
2210
|
-
FormsModule,
|
|
2280
|
+
MonkeySelectModule,
|
|
2211
2281
|
ReactiveFormsModule,
|
|
2282
|
+
RouterModule,
|
|
2212
2283
|
TranslateModule.forChild()
|
|
2213
2284
|
],
|
|
2214
2285
|
exports: [
|
|
2286
|
+
MECXFilterOptionsChildrenComponent,
|
|
2215
2287
|
MECXFilterOptionsComponent,
|
|
2216
|
-
MECXFilterOptionsStatusComponent,
|
|
2217
|
-
MECXFilterOptionsDateRangeComponent,
|
|
2218
2288
|
MECXFilterOptionsCurrencyComponent,
|
|
2219
|
-
|
|
2289
|
+
MECXFilterOptionsDateRangeComponent,
|
|
2290
|
+
MECXFilterOptionsInputComponent,
|
|
2291
|
+
MECXFilterOptionsStatusComponent
|
|
2220
2292
|
]
|
|
2221
2293
|
}]
|
|
2222
2294
|
}] });
|
|
@@ -2284,42 +2356,43 @@ class MECXFilterSelectedModule {
|
|
|
2284
2356
|
}
|
|
2285
2357
|
MECXFilterSelectedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2286
2358
|
MECXFilterSelectedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedModule, declarations: [MECXFilterSelectedComponent,
|
|
2359
|
+
MECXFilterSelectedItemChildrenComponent,
|
|
2287
2360
|
MECXFilterSelectedItemComponent,
|
|
2288
2361
|
MECXFilterSelectedItemCurrencyComponent,
|
|
2289
2362
|
MECXFilterSelectedItemDateRangeComponent,
|
|
2290
|
-
MECXFilterSelectedItemStatusComponent,
|
|
2291
2363
|
MECXFilterSelectedItemDateWithActionComponent,
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2364
|
+
MECXFilterSelectedItemInputComponent,
|
|
2365
|
+
MECXFilterSelectedItemStatusComponent], imports: [CommonModule,
|
|
2366
|
+
FormsModule,
|
|
2367
|
+
MECXFilterOptionsModule,
|
|
2295
2368
|
MonkeyBadgeModule,
|
|
2369
|
+
MonkeyButtonModule,
|
|
2370
|
+
MonkeyCheckboxModule,
|
|
2371
|
+
MonkeyDateRangePickerModule,
|
|
2372
|
+
MonkeyEcxDirectivesModule,
|
|
2373
|
+
MonkeyEcxPipesModule,
|
|
2296
2374
|
MonkeyIconModule,
|
|
2297
2375
|
MonkeyInputModule,
|
|
2298
|
-
MonkeyCheckboxModule,
|
|
2299
|
-
MonkeySelectModule,
|
|
2300
2376
|
MonkeyOptionModule,
|
|
2301
|
-
|
|
2302
|
-
RouterModule,
|
|
2303
|
-
CommonModule,
|
|
2304
|
-
FormsModule,
|
|
2377
|
+
MonkeySelectModule,
|
|
2305
2378
|
ReactiveFormsModule,
|
|
2306
|
-
|
|
2379
|
+
RouterModule, i1$3.TranslateModule], exports: [MECXFilterSelectedComponent] });
|
|
2307
2380
|
MECXFilterSelectedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedModule, imports: [[
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2381
|
+
CommonModule,
|
|
2382
|
+
FormsModule,
|
|
2383
|
+
MECXFilterOptionsModule,
|
|
2311
2384
|
MonkeyBadgeModule,
|
|
2385
|
+
MonkeyButtonModule,
|
|
2386
|
+
MonkeyCheckboxModule,
|
|
2387
|
+
MonkeyDateRangePickerModule,
|
|
2388
|
+
MonkeyEcxDirectivesModule,
|
|
2389
|
+
MonkeyEcxPipesModule,
|
|
2312
2390
|
MonkeyIconModule,
|
|
2313
2391
|
MonkeyInputModule,
|
|
2314
|
-
MonkeyCheckboxModule,
|
|
2315
|
-
MonkeySelectModule,
|
|
2316
2392
|
MonkeyOptionModule,
|
|
2317
|
-
|
|
2318
|
-
RouterModule,
|
|
2319
|
-
CommonModule,
|
|
2320
|
-
FormsModule,
|
|
2393
|
+
MonkeySelectModule,
|
|
2321
2394
|
ReactiveFormsModule,
|
|
2322
|
-
|
|
2395
|
+
RouterModule,
|
|
2323
2396
|
TranslateModule.forChild()
|
|
2324
2397
|
]] });
|
|
2325
2398
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MECXFilterSelectedModule, decorators: [{
|
|
@@ -2327,29 +2400,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
2327
2400
|
args: [{
|
|
2328
2401
|
declarations: [
|
|
2329
2402
|
MECXFilterSelectedComponent,
|
|
2403
|
+
MECXFilterSelectedItemChildrenComponent,
|
|
2330
2404
|
MECXFilterSelectedItemComponent,
|
|
2331
2405
|
MECXFilterSelectedItemCurrencyComponent,
|
|
2332
2406
|
MECXFilterSelectedItemDateRangeComponent,
|
|
2333
|
-
MECXFilterSelectedItemStatusComponent,
|
|
2334
2407
|
MECXFilterSelectedItemDateWithActionComponent,
|
|
2335
|
-
|
|
2408
|
+
MECXFilterSelectedItemInputComponent,
|
|
2409
|
+
MECXFilterSelectedItemStatusComponent
|
|
2336
2410
|
],
|
|
2337
2411
|
imports: [
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2412
|
+
CommonModule,
|
|
2413
|
+
FormsModule,
|
|
2414
|
+
MECXFilterOptionsModule,
|
|
2341
2415
|
MonkeyBadgeModule,
|
|
2416
|
+
MonkeyButtonModule,
|
|
2417
|
+
MonkeyCheckboxModule,
|
|
2418
|
+
MonkeyDateRangePickerModule,
|
|
2419
|
+
MonkeyEcxDirectivesModule,
|
|
2420
|
+
MonkeyEcxPipesModule,
|
|
2342
2421
|
MonkeyIconModule,
|
|
2343
2422
|
MonkeyInputModule,
|
|
2344
|
-
MonkeyCheckboxModule,
|
|
2345
|
-
MonkeySelectModule,
|
|
2346
2423
|
MonkeyOptionModule,
|
|
2347
|
-
|
|
2348
|
-
RouterModule,
|
|
2349
|
-
CommonModule,
|
|
2350
|
-
FormsModule,
|
|
2424
|
+
MonkeySelectModule,
|
|
2351
2425
|
ReactiveFormsModule,
|
|
2352
|
-
|
|
2426
|
+
RouterModule,
|
|
2353
2427
|
TranslateModule.forChild()
|
|
2354
2428
|
],
|
|
2355
2429
|
exports: [MECXFilterSelectedComponent]
|