monkey-front-components 0.0.413 → 0.0.415
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/base/base-component.mjs +324 -324
- package/esm2020/lib/components/base/base-dynamic-array.mjs +221 -221
- package/esm2020/lib/components/base/base-dynamic.mjs +102 -102
- package/esm2020/lib/components/base/base-scroll-component.mjs +55 -55
- package/esm2020/lib/components/base/base-validators.mjs +18 -18
- package/esm2020/lib/components/base/index.mjs +5 -5
- package/esm2020/lib/components/dynamic/button/button.component.mjs +52 -52
- package/esm2020/lib/components/dynamic/button/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/dynamic-directive.mjs +95 -95
- package/esm2020/lib/components/dynamic/dynamic.module.mjs +84 -84
- package/esm2020/lib/components/dynamic/file-upload/file-upload.component.mjs +53 -53
- package/esm2020/lib/components/dynamic/file-upload/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/form/dynamic-form-array.component.mjs +72 -72
- package/esm2020/lib/components/dynamic/form/dynamic-form.component.mjs +46 -46
- package/esm2020/lib/components/dynamic/form/index.mjs +2 -2
- package/esm2020/lib/components/dynamic/index.mjs +8 -8
- package/esm2020/lib/components/dynamic/input/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/input/input.component.mjs +65 -65
- package/esm2020/lib/components/dynamic/input-phone/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/input-phone/input-phone.component.mjs +65 -65
- package/esm2020/lib/components/dynamic/radio/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/radio/radio.component.mjs +33 -33
- package/esm2020/lib/components/dynamic/select/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/select/select.component.mjs +80 -80
- package/esm2020/lib/components/dynamic/select-search/index.mjs +1 -1
- package/esm2020/lib/components/dynamic/select-search/select-search.component.mjs +86 -86
- package/esm2020/lib/components/index.mjs +3 -3
- package/esm2020/lib/components/shared/filter/filter.component.mjs +119 -119
- package/esm2020/lib/components/shared/filter/filter.module.mjs +63 -63
- package/esm2020/lib/components/shared/filter/index.mjs +2 -2
- package/esm2020/lib/components/shared/filter/menu/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/menu/menu.component.mjs +120 -120
- package/esm2020/lib/components/shared/filter/menu/menu.module.mjs +70 -70
- package/esm2020/lib/components/shared/filter/options/children/children.component.mjs +50 -50
- package/esm2020/lib/components/shared/filter/options/children/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/options/currency/currency.component.mjs +46 -46
- package/esm2020/lib/components/shared/filter/options/currency/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/options/date-range/date-range.component.mjs +65 -65
- package/esm2020/lib/components/shared/filter/options/date-range/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/options/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/options/input/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/options/input/input.component.mjs +46 -46
- package/esm2020/lib/components/shared/filter/options/options.component.mjs +68 -68
- package/esm2020/lib/components/shared/filter/options/options.module.mjs +95 -95
- package/esm2020/lib/components/shared/filter/options/status/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/options/status/status.component.mjs +66 -66
- package/esm2020/lib/components/shared/filter/selected/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/children/children.component.mjs +57 -57
- package/esm2020/lib/components/shared/filter/selected/item/children/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/currency/currency.component.mjs +29 -29
- package/esm2020/lib/components/shared/filter/selected/item/currency/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/date-range/date-range.component.mjs +42 -42
- package/esm2020/lib/components/shared/filter/selected/item/date-range/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.mjs +33 -33
- package/esm2020/lib/components/shared/filter/selected/item/date-with-action/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/index.mjs +7 -7
- package/esm2020/lib/components/shared/filter/selected/item/input/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/input/input.component.mjs +28 -28
- package/esm2020/lib/components/shared/filter/selected/item/item.component.mjs +74 -74
- package/esm2020/lib/components/shared/filter/selected/item/status/index.mjs +1 -1
- package/esm2020/lib/components/shared/filter/selected/item/status/status.component.mjs +39 -39
- package/esm2020/lib/components/shared/filter/selected/selected.component.mjs +80 -80
- package/esm2020/lib/components/shared/filter/selected/selected.module.mjs +90 -90
- package/esm2020/lib/components/shared/index.mjs +4 -4
- package/esm2020/lib/components/shared/password-strength/index.mjs +2 -2
- package/esm2020/lib/components/shared/password-strength/password-strength.component.mjs +85 -85
- package/esm2020/lib/components/shared/password-strength/password-strength.mjs +1 -1
- package/esm2020/lib/components/shared/password-strength/password-strength.module.mjs +50 -50
- package/esm2020/lib/components/shared/products/filter/filter.component.mjs +36 -36
- package/esm2020/lib/components/shared/products/index.mjs +2 -2
- package/esm2020/lib/components/shared/products/products.component.mjs +91 -91
- package/esm2020/lib/components/shared/products/products.module.mjs +22 -22
- package/esm2020/lib/components/shared/products/providers/index.mjs +1 -1
- package/esm2020/lib/components/shared/products/providers/products.model.mjs +37 -37
- package/esm2020/lib/components/shared/progress-bar/index.mjs +3 -3
- package/esm2020/lib/components/shared/progress-bar/progress-bar.component.mjs +28 -28
- package/esm2020/lib/components/shared/progress-bar/progress-bar.module.mjs +18 -18
- package/esm2020/lib/components/shared/progress-bar/progress-bar.service.mjs +49 -49
- package/esm2020/lib/interfaces/field-config.mjs +1 -1
- package/esm2020/lib/interfaces/index.mjs +1 -1
- package/esm2020/monkey-front-components.mjs +4 -4
- package/esm2020/public-api.mjs +4 -4
- package/fesm2015/monkey-front-components.mjs +2776 -2776
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +2758 -2758
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/lib/components/base/base-component.d.ts +52 -52
- package/lib/components/base/base-dynamic-array.d.ts +34 -34
- package/lib/components/base/base-dynamic.d.ts +25 -25
- package/lib/components/base/base-scroll-component.d.ts +16 -16
- package/lib/components/base/base-validators.d.ts +1 -1
- package/lib/components/base/index.d.ts +5 -5
- package/lib/components/dynamic/button/button.component.d.ts +17 -17
- package/lib/components/dynamic/button/index.d.ts +1 -1
- package/lib/components/dynamic/dynamic-directive.d.ts +22 -22
- package/lib/components/dynamic/dynamic.module.d.ts +20 -20
- package/lib/components/dynamic/file-upload/file-upload.component.d.ts +17 -17
- package/lib/components/dynamic/file-upload/index.d.ts +1 -1
- package/lib/components/dynamic/form/dynamic-form-array.component.d.ts +16 -16
- package/lib/components/dynamic/form/dynamic-form.component.d.ts +14 -14
- package/lib/components/dynamic/form/index.d.ts +2 -2
- package/lib/components/dynamic/index.d.ts +8 -8
- package/lib/components/dynamic/input/index.d.ts +1 -1
- package/lib/components/dynamic/input/input.component.d.ts +20 -20
- package/lib/components/dynamic/input-phone/index.d.ts +1 -1
- package/lib/components/dynamic/input-phone/input-phone.component.d.ts +20 -20
- package/lib/components/dynamic/radio/index.d.ts +1 -1
- package/lib/components/dynamic/radio/radio.component.d.ts +11 -11
- package/lib/components/dynamic/select/index.d.ts +1 -1
- package/lib/components/dynamic/select/select.component.d.ts +16 -16
- package/lib/components/dynamic/select-search/index.d.ts +1 -1
- package/lib/components/dynamic/select-search/select-search.component.d.ts +18 -18
- package/lib/components/index.d.ts +3 -3
- package/lib/components/shared/filter/filter.component.d.ts +32 -32
- package/lib/components/shared/filter/filter.module.d.ts +14 -14
- package/lib/components/shared/filter/index.d.ts +2 -2
- package/lib/components/shared/filter/menu/index.d.ts +1 -1
- package/lib/components/shared/filter/menu/menu.component.d.ts +24 -24
- package/lib/components/shared/filter/menu/menu.module.d.ts +14 -14
- package/lib/components/shared/filter/options/children/children.component.d.ts +17 -17
- package/lib/components/shared/filter/options/children/index.d.ts +1 -1
- package/lib/components/shared/filter/options/currency/currency.component.d.ts +17 -17
- package/lib/components/shared/filter/options/currency/index.d.ts +1 -1
- package/lib/components/shared/filter/options/date-range/date-range.component.d.ts +24 -24
- package/lib/components/shared/filter/options/date-range/index.d.ts +1 -1
- package/lib/components/shared/filter/options/index.d.ts +1 -1
- package/lib/components/shared/filter/options/input/index.d.ts +1 -1
- package/lib/components/shared/filter/options/input/input.component.d.ts +17 -17
- package/lib/components/shared/filter/options/options.component.d.ts +20 -20
- package/lib/components/shared/filter/options/options.module.d.ts +18 -18
- package/lib/components/shared/filter/options/status/index.d.ts +1 -1
- package/lib/components/shared/filter/options/status/status.component.d.ts +19 -19
- package/lib/components/shared/filter/selected/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/children/children.component.d.ts +16 -16
- package/lib/components/shared/filter/selected/item/children/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/currency/currency.component.d.ts +11 -11
- package/lib/components/shared/filter/selected/item/currency/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/date-range/date-range.component.d.ts +12 -12
- package/lib/components/shared/filter/selected/item/date-range/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.d.ts +11 -11
- package/lib/components/shared/filter/selected/item/date-with-action/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/index.d.ts +7 -7
- package/lib/components/shared/filter/selected/item/input/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/input/input.component.d.ts +11 -11
- package/lib/components/shared/filter/selected/item/item.component.d.ts +20 -20
- package/lib/components/shared/filter/selected/item/status/index.d.ts +1 -1
- package/lib/components/shared/filter/selected/item/status/status.component.d.ts +13 -13
- package/lib/components/shared/filter/selected/selected.component.d.ts +18 -18
- package/lib/components/shared/filter/selected/selected.module.d.ts +21 -21
- package/lib/components/shared/index.d.ts +4 -4
- package/lib/components/shared/password-strength/index.d.ts +2 -2
- package/lib/components/shared/password-strength/password-strength.component.d.ts +23 -23
- package/lib/components/shared/password-strength/password-strength.d.ts +5 -5
- package/lib/components/shared/password-strength/password-strength.module.d.ts +12 -12
- package/lib/components/shared/products/filter/filter.component.d.ts +12 -12
- package/lib/components/shared/products/index.d.ts +2 -2
- package/lib/components/shared/products/products.component.d.ts +20 -20
- package/lib/components/shared/products/products.module.d.ts +11 -11
- package/lib/components/shared/products/providers/index.d.ts +1 -1
- package/lib/components/shared/products/providers/products.model.d.ts +13 -13
- package/lib/components/shared/progress-bar/index.d.ts +3 -3
- package/lib/components/shared/progress-bar/progress-bar.component.d.ts +12 -12
- package/lib/components/shared/progress-bar/progress-bar.module.d.ts +8 -8
- package/lib/components/shared/progress-bar/progress-bar.service.d.ts +14 -14
- package/lib/interfaces/field-config.d.ts +54 -54
- package/lib/interfaces/index.d.ts +1 -1
- package/monkey-front-components-0.0.415.tgz +0 -0
- package/monkey-front-components.d.ts +5 -5
- package/package.json +5 -5
- package/public-api.d.ts +1 -1
- package/monkey-front-components-0.0.413.tgz +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemChildrenComponent implements OnChanges {
|
|
5
|
-
private elRef;
|
|
6
|
-
option: MonkeyEcxFilterMenu;
|
|
7
|
-
onShow: EventEmitter<any>;
|
|
8
|
-
onRemove: EventEmitter<any>;
|
|
9
|
-
_child: any;
|
|
10
|
-
constructor(elRef: ElementRef);
|
|
11
|
-
private validateValue;
|
|
12
|
-
private onHandleSelectedValue;
|
|
13
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemChildrenComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemChildrenComponent, "mecx-filter-selected-item-children", never, { "option": "option"; }, { "onShow": "onShow"; "onRemove": "onRemove"; }, never, never>;
|
|
16
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemChildrenComponent implements OnChanges {
|
|
5
|
+
private elRef;
|
|
6
|
+
option: MonkeyEcxFilterMenu;
|
|
7
|
+
onShow: EventEmitter<any>;
|
|
8
|
+
onRemove: EventEmitter<any>;
|
|
9
|
+
_child: any;
|
|
10
|
+
constructor(elRef: ElementRef);
|
|
11
|
+
private validateValue;
|
|
12
|
+
private onHandleSelectedValue;
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemChildrenComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemChildrenComponent, "mecx-filter-selected-item-children", never, { "option": "option"; }, { "onShow": "onShow"; "onRemove": "onRemove"; }, never, never>;
|
|
16
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './children.component';
|
|
1
|
+
export * from './children.component';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemCurrencyComponent implements OnChanges {
|
|
5
|
-
option: MonkeyEcxFilterMenu;
|
|
6
|
-
_value: any;
|
|
7
|
-
private onHandleSelectedValue;
|
|
8
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemCurrencyComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemCurrencyComponent, "mecx-filter-selected-item-currency", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
-
}
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemCurrencyComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
_value: any;
|
|
7
|
+
private onHandleSelectedValue;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemCurrencyComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemCurrencyComponent, "mecx-filter-selected-item-currency", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './currency.component';
|
|
1
|
+
export * from './currency.component';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemDateRangeComponent implements OnChanges {
|
|
5
|
-
option: MonkeyEcxFilterMenu | MonkeyEcxFilterMenuChildren;
|
|
6
|
-
_startDate: string;
|
|
7
|
-
_endDate: string;
|
|
8
|
-
private onHandleSelectedValue;
|
|
9
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateRangeComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateRangeComponent, "mecx-filter-selected-item-date-range", never, { "option": "option"; }, {}, never, never>;
|
|
12
|
-
}
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemDateRangeComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu | MonkeyEcxFilterMenuChildren;
|
|
6
|
+
_startDate: string;
|
|
7
|
+
_endDate: string;
|
|
8
|
+
private onHandleSelectedValue;
|
|
9
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateRangeComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateRangeComponent, "mecx-filter-selected-item-date-range", never, { "option": "option"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './date-range.component';
|
|
1
|
+
export * from './date-range.component';
|
package/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemDateWithActionComponent implements OnChanges {
|
|
5
|
-
option: MonkeyEcxFilterMenuChildren;
|
|
6
|
-
_date: string;
|
|
7
|
-
private onHandleSelectedValue;
|
|
8
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateWithActionComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateWithActionComponent, "mecx-filter-selected-item-date-with-action", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
-
}
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemDateWithActionComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenuChildren;
|
|
6
|
+
_date: string;
|
|
7
|
+
private onHandleSelectedValue;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateWithActionComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateWithActionComponent, "mecx-filter-selected-item-date-with-action", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './date-with-action.component';
|
|
1
|
+
export * from './date-with-action.component';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from './children';
|
|
2
|
-
export * from './currency';
|
|
3
|
-
export * from './date-range';
|
|
4
|
-
export * from './date-with-action';
|
|
5
|
-
export * from './input';
|
|
6
|
-
export * from './item.component';
|
|
7
|
-
export * from './status';
|
|
1
|
+
export * from './children';
|
|
2
|
+
export * from './currency';
|
|
3
|
+
export * from './date-range';
|
|
4
|
+
export * from './date-with-action';
|
|
5
|
+
export * from './input';
|
|
6
|
+
export * from './item.component';
|
|
7
|
+
export * from './status';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './input.component';
|
|
1
|
+
export * from './input.component';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemInputComponent implements OnChanges {
|
|
5
|
-
option: MonkeyEcxFilterMenu;
|
|
6
|
-
_value: any;
|
|
7
|
-
private onHandleSelectedValue;
|
|
8
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemInputComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemInputComponent, "mecx-filter-selected-item-input", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
-
}
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemInputComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
_value: any;
|
|
7
|
+
private onHandleSelectedValue;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemInputComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemInputComponent, "mecx-filter-selected-item-input", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemComponent {
|
|
5
|
-
set option(value: MonkeyEcxFilterMenu);
|
|
6
|
-
onClose: EventEmitter<any>;
|
|
7
|
-
onSubmit: EventEmitter<any>;
|
|
8
|
-
_option: MonkeyEcxFilterMenu;
|
|
9
|
-
_showMenu: boolean;
|
|
10
|
-
_actionElement: HTMLElement;
|
|
11
|
-
closeMenu: () => void;
|
|
12
|
-
constructor();
|
|
13
|
-
onHandleShowMenu(): void;
|
|
14
|
-
onHandleClose(): void;
|
|
15
|
-
onHandleSubmit(event: any): void;
|
|
16
|
-
onHandleRemove(): void;
|
|
17
|
-
onHandleShowFromChildren(event: any): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemComponent, "mecx-filter-selected-item", never, { "option": "option"; }, { "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
|
|
20
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemComponent {
|
|
5
|
+
set option(value: MonkeyEcxFilterMenu);
|
|
6
|
+
onClose: EventEmitter<any>;
|
|
7
|
+
onSubmit: EventEmitter<any>;
|
|
8
|
+
_option: MonkeyEcxFilterMenu;
|
|
9
|
+
_showMenu: boolean;
|
|
10
|
+
_actionElement: HTMLElement;
|
|
11
|
+
closeMenu: () => void;
|
|
12
|
+
constructor();
|
|
13
|
+
onHandleShowMenu(): void;
|
|
14
|
+
onHandleClose(): void;
|
|
15
|
+
onHandleSubmit(event: any): void;
|
|
16
|
+
onHandleRemove(): void;
|
|
17
|
+
onHandleShowFromChildren(event: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemComponent, "mecx-filter-selected-item", never, { "option": "option"; }, { "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
|
|
20
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './status.component';
|
|
1
|
+
export * from './status.component';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedItemStatusComponent implements OnChanges {
|
|
5
|
-
option: MonkeyEcxFilterMenu;
|
|
6
|
-
labelMoreValues: string;
|
|
7
|
-
_selectedValue: string;
|
|
8
|
-
_labelMoreValues: string;
|
|
9
|
-
private onHandleSelectedValue;
|
|
10
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemStatusComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemStatusComponent, "mecx-filter-selected-item-status", never, { "option": "option"; "labelMoreValues": "labelMoreValues"; }, {}, never, never>;
|
|
13
|
-
}
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemStatusComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
labelMoreValues: string;
|
|
7
|
+
_selectedValue: string;
|
|
8
|
+
_labelMoreValues: string;
|
|
9
|
+
private onHandleSelectedValue;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemStatusComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemStatusComponent, "mecx-filter-selected-item-status", never, { "option": "option"; "labelMoreValues": "labelMoreValues"; }, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedComponent implements OnChanges {
|
|
5
|
-
model: MonkeyEcxFilterMenu[];
|
|
6
|
-
onOpenFilters: EventEmitter<any>;
|
|
7
|
-
onClose: EventEmitter<any>;
|
|
8
|
-
onSubmit: EventEmitter<any>;
|
|
9
|
-
_model: MonkeyEcxFilterMenu[];
|
|
10
|
-
constructor();
|
|
11
|
-
private validateValue;
|
|
12
|
-
private onHandleSelectedValue;
|
|
13
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
-
onHandleClose(): void;
|
|
15
|
-
onHandleSubmit(event: any): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedComponent, "mecx-filter-selected", never, { "model": "model"; }, { "onOpenFilters": "onOpenFilters"; "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
|
|
18
|
-
}
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedComponent implements OnChanges {
|
|
5
|
+
model: MonkeyEcxFilterMenu[];
|
|
6
|
+
onOpenFilters: EventEmitter<any>;
|
|
7
|
+
onClose: EventEmitter<any>;
|
|
8
|
+
onSubmit: EventEmitter<any>;
|
|
9
|
+
_model: MonkeyEcxFilterMenu[];
|
|
10
|
+
constructor();
|
|
11
|
+
private validateValue;
|
|
12
|
+
private onHandleSelectedValue;
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
onHandleClose(): void;
|
|
15
|
+
onHandleSubmit(event: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedComponent, "mecx-filter-selected", never, { "model": "model"; }, { "onOpenFilters": "onOpenFilters"; "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
|
|
18
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./selected.component";
|
|
3
|
-
import * as i2 from "./item/children/children.component";
|
|
4
|
-
import * as i3 from "./item/item.component";
|
|
5
|
-
import * as i4 from "./item/currency/currency.component";
|
|
6
|
-
import * as i5 from "./item/date-range/date-range.component";
|
|
7
|
-
import * as i6 from "./item/date-with-action/date-with-action.component";
|
|
8
|
-
import * as i7 from "./item/input/input.component";
|
|
9
|
-
import * as i8 from "./item/status/status.component";
|
|
10
|
-
import * as i9 from "@angular/common";
|
|
11
|
-
import * as i10 from "@angular/forms";
|
|
12
|
-
import * as i11 from "../options/options.module";
|
|
13
|
-
import * as i12 from "monkey-style-guide";
|
|
14
|
-
import * as i13 from "monkey-front-core";
|
|
15
|
-
import * as i14 from "@angular/router";
|
|
16
|
-
import * as i15 from "@ngx-translate/core";
|
|
17
|
-
export declare class MECXFilterSelectedModule {
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterSelectedModule, [typeof i1.MECXFilterSelectedComponent, typeof i2.MECXFilterSelectedItemChildrenComponent, typeof i3.MECXFilterSelectedItemComponent, typeof i4.MECXFilterSelectedItemCurrencyComponent, typeof i5.MECXFilterSelectedItemDateRangeComponent, typeof i6.MECXFilterSelectedItemDateWithActionComponent, typeof i7.MECXFilterSelectedItemInputComponent, typeof i8.MECXFilterSelectedItemStatusComponent], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i11.MECXFilterOptionsModule, typeof i12.MonkeyBadgeModule, typeof i12.MonkeyButtonModule, typeof i12.MonkeyCheckboxModule, typeof i12.MonkeyDateRangePickerModule, typeof i13.MonkeyEcxDirectivesModule, typeof i13.MonkeyEcxPipesModule, typeof i12.MonkeyIconModule, typeof i12.MonkeyInputModule, typeof i12.MonkeyOptionModule, typeof i12.MonkeySelectModule, typeof i10.ReactiveFormsModule, typeof i14.RouterModule, typeof i15.TranslateModule], [typeof i1.MECXFilterSelectedComponent]>;
|
|
20
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterSelectedModule>;
|
|
21
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./selected.component";
|
|
3
|
+
import * as i2 from "./item/children/children.component";
|
|
4
|
+
import * as i3 from "./item/item.component";
|
|
5
|
+
import * as i4 from "./item/currency/currency.component";
|
|
6
|
+
import * as i5 from "./item/date-range/date-range.component";
|
|
7
|
+
import * as i6 from "./item/date-with-action/date-with-action.component";
|
|
8
|
+
import * as i7 from "./item/input/input.component";
|
|
9
|
+
import * as i8 from "./item/status/status.component";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "../options/options.module";
|
|
13
|
+
import * as i12 from "monkey-style-guide";
|
|
14
|
+
import * as i13 from "monkey-front-core";
|
|
15
|
+
import * as i14 from "@angular/router";
|
|
16
|
+
import * as i15 from "@ngx-translate/core";
|
|
17
|
+
export declare class MECXFilterSelectedModule {
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedModule, never>;
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterSelectedModule, [typeof i1.MECXFilterSelectedComponent, typeof i2.MECXFilterSelectedItemChildrenComponent, typeof i3.MECXFilterSelectedItemComponent, typeof i4.MECXFilterSelectedItemCurrencyComponent, typeof i5.MECXFilterSelectedItemDateRangeComponent, typeof i6.MECXFilterSelectedItemDateWithActionComponent, typeof i7.MECXFilterSelectedItemInputComponent, typeof i8.MECXFilterSelectedItemStatusComponent], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i11.MECXFilterOptionsModule, typeof i12.MonkeyBadgeModule, typeof i12.MonkeyButtonModule, typeof i12.MonkeyCheckboxModule, typeof i12.MonkeyDateRangePickerModule, typeof i13.MonkeyEcxDirectivesModule, typeof i13.MonkeyEcxPipesModule, typeof i12.MonkeyIconModule, typeof i12.MonkeyInputModule, typeof i12.MonkeyOptionModule, typeof i12.MonkeySelectModule, typeof i10.ReactiveFormsModule, typeof i14.RouterModule, typeof i15.TranslateModule], [typeof i1.MECXFilterSelectedComponent]>;
|
|
20
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterSelectedModule>;
|
|
21
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './filter';
|
|
2
|
-
export * from './password-strength';
|
|
3
|
-
export * from './progress-bar';
|
|
4
|
-
export * from './products';
|
|
1
|
+
export * from './filter';
|
|
2
|
+
export * from './password-strength';
|
|
3
|
+
export * from './progress-bar';
|
|
4
|
+
export * from './products';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './password-strength.component';
|
|
2
|
-
export * from './password-strength.module';
|
|
1
|
+
export * from './password-strength.component';
|
|
2
|
+
export * from './password-strength.module';
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { OnChanges, EventEmitter } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxConfigService } from 'monkey-front-core';
|
|
3
|
-
import { PasswordStrength } from './password-strength';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MECXPasswordStrengthComponent implements OnChanges {
|
|
6
|
-
private configService;
|
|
7
|
-
passwordToCheck: string | null;
|
|
8
|
-
i18n: any;
|
|
9
|
-
onHandleSubmitReady: EventEmitter<any>;
|
|
10
|
-
_validatorsPasswordPass: Array<PasswordStrength>;
|
|
11
|
-
_stepPassword: number;
|
|
12
|
-
private validatorsPassword;
|
|
13
|
-
constructor(configService: MonkeyEcxConfigService);
|
|
14
|
-
private handleColor;
|
|
15
|
-
private passwordStrengthValidator;
|
|
16
|
-
private onHandleReady;
|
|
17
|
-
private onHandleChages;
|
|
18
|
-
private onHandlePasswordStrengthKeys;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
ngOnChanges(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXPasswordStrengthComponent, "mecx-password-strength", never, { "passwordToCheck": "passwordToCheck"; "i18n": "i18n"; }, { "onHandleSubmitReady": "onHandleSubmitReady"; }, never, never>;
|
|
23
|
-
}
|
|
1
|
+
import { OnChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxConfigService } from 'monkey-front-core';
|
|
3
|
+
import { PasswordStrength } from './password-strength';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MECXPasswordStrengthComponent implements OnChanges {
|
|
6
|
+
private configService;
|
|
7
|
+
passwordToCheck: string | null;
|
|
8
|
+
i18n: any;
|
|
9
|
+
onHandleSubmitReady: EventEmitter<any>;
|
|
10
|
+
_validatorsPasswordPass: Array<PasswordStrength>;
|
|
11
|
+
_stepPassword: number;
|
|
12
|
+
private validatorsPassword;
|
|
13
|
+
constructor(configService: MonkeyEcxConfigService);
|
|
14
|
+
private handleColor;
|
|
15
|
+
private passwordStrengthValidator;
|
|
16
|
+
private onHandleReady;
|
|
17
|
+
private onHandleChages;
|
|
18
|
+
private onHandlePasswordStrengthKeys;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnChanges(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXPasswordStrengthComponent, "mecx-password-strength", never, { "passwordToCheck": "passwordToCheck"; "i18n": "i18n"; }, { "onHandleSubmitReady": "onHandleSubmitReady"; }, never, never>;
|
|
23
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export interface PasswordStrength {
|
|
2
|
-
regex: string;
|
|
3
|
-
validate: boolean;
|
|
4
|
-
percent: number;
|
|
5
|
-
}
|
|
1
|
+
export interface PasswordStrength {
|
|
2
|
+
regex: string;
|
|
3
|
+
validate: boolean;
|
|
4
|
+
percent: number;
|
|
5
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./password-strength.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "monkey-front-core";
|
|
6
|
-
import * as i5 from "monkey-style-guide";
|
|
7
|
-
import * as i6 from "@ngx-translate/core";
|
|
8
|
-
export declare class MECXPasswordStrengthModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXPasswordStrengthModule, [typeof i1.MECXPasswordStrengthComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MonkeyEcxPipesModule, typeof i4.MonkeyEcxDirectivesModule, typeof i5.MonkeyButtonModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyIconModule, typeof i6.TranslateModule], [typeof i1.MECXPasswordStrengthComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXPasswordStrengthModule>;
|
|
12
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./password-strength.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "monkey-front-core";
|
|
6
|
+
import * as i5 from "monkey-style-guide";
|
|
7
|
+
import * as i6 from "@ngx-translate/core";
|
|
8
|
+
export declare class MECXPasswordStrengthModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXPasswordStrengthModule, [typeof i1.MECXPasswordStrengthComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MonkeyEcxPipesModule, typeof i4.MonkeyEcxDirectivesModule, typeof i5.MonkeyButtonModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyIconModule, typeof i6.TranslateModule], [typeof i1.MECXPasswordStrengthComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MECXPasswordStrengthModule>;
|
|
12
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MECXProductsFilterComponent {
|
|
4
|
-
isLoading: boolean;
|
|
5
|
-
onChangeFilter: EventEmitter<any>;
|
|
6
|
-
_search: string;
|
|
7
|
-
constructor();
|
|
8
|
-
onSearchFilter(event: string): void;
|
|
9
|
-
onClearFilter(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsFilterComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsFilterComponent, "mecx-products-filter", never, { "isLoading": "isLoading"; }, { "onChangeFilter": "onChangeFilter"; }, never, never>;
|
|
12
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MECXProductsFilterComponent {
|
|
4
|
+
isLoading: boolean;
|
|
5
|
+
onChangeFilter: EventEmitter<any>;
|
|
6
|
+
_search: string;
|
|
7
|
+
constructor();
|
|
8
|
+
onSearchFilter(event: string): void;
|
|
9
|
+
onClearFilter(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsFilterComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsFilterComponent, "mecx-products-filter", never, { "isLoading": "isLoading"; }, { "onChangeFilter": "onChangeFilter"; }, never, never>;
|
|
12
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './products.component';
|
|
2
|
-
export * from './products.module';
|
|
1
|
+
export * from './products.component';
|
|
2
|
+
export * from './products.module';
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxTokenStorageService } from 'monkey-front-core';
|
|
3
|
-
import { BaseComponent } from '../../base/base-component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MECXProductsComponent extends BaseComponent implements OnInit {
|
|
6
|
-
private tokenStorage;
|
|
7
|
-
onAccess: EventEmitter<any>;
|
|
8
|
-
_products: any[];
|
|
9
|
-
_filteredProducts: any[];
|
|
10
|
-
_filter: string;
|
|
11
|
-
_hasMoreProducts: boolean;
|
|
12
|
-
constructor(tokenStorage: MonkeyEcxTokenStorageService);
|
|
13
|
-
onImgError(img: HTMLImageElement): void;
|
|
14
|
-
private onHandleProducts;
|
|
15
|
-
private onHandleMe;
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
onHandleChangeFilter(event: string): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsComponent, "mecx-products", never, {}, { "onAccess": "onAccess"; }, never, never>;
|
|
20
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxTokenStorageService } from 'monkey-front-core';
|
|
3
|
+
import { BaseComponent } from '../../base/base-component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MECXProductsComponent extends BaseComponent implements OnInit {
|
|
6
|
+
private tokenStorage;
|
|
7
|
+
onAccess: EventEmitter<any>;
|
|
8
|
+
_products: any[];
|
|
9
|
+
_filteredProducts: any[];
|
|
10
|
+
_filter: string;
|
|
11
|
+
_hasMoreProducts: boolean;
|
|
12
|
+
constructor(tokenStorage: MonkeyEcxTokenStorageService);
|
|
13
|
+
onImgError(img: HTMLImageElement): void;
|
|
14
|
+
private onHandleProducts;
|
|
15
|
+
private onHandleMe;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onHandleChangeFilter(event: string): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsComponent, "mecx-products", never, {}, { "onAccess": "onAccess"; }, never, never>;
|
|
20
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./products.component";
|
|
3
|
-
import * as i2 from "./filter/filter.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@ngx-translate/core";
|
|
6
|
-
import * as i5 from "monkey-style-guide";
|
|
7
|
-
export declare class MECXProductsModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProductsModule, [typeof i1.MECXProductsComponent, typeof i2.MECXProductsFilterComponent], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyButtonModule], [typeof i1.MECXProductsComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXProductsModule>;
|
|
11
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./products.component";
|
|
3
|
+
import * as i2 from "./filter/filter.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
import * as i5 from "monkey-style-guide";
|
|
7
|
+
export declare class MECXProductsModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProductsModule, [typeof i1.MECXProductsComponent, typeof i2.MECXProductsFilterComponent], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyButtonModule], [typeof i1.MECXProductsComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MECXProductsModule>;
|
|
11
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './products.model';
|
|
1
|
+
export * from './products.model';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export declare class ProductsModel {
|
|
2
|
-
url: string;
|
|
3
|
-
token: string;
|
|
4
|
-
username: string;
|
|
5
|
-
ownerGovernmentId: string;
|
|
6
|
-
ownerName: string;
|
|
7
|
-
product: string;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
logo: string;
|
|
11
|
-
constructor(data?: any);
|
|
12
|
-
private handleLogo;
|
|
13
|
-
}
|
|
1
|
+
export declare class ProductsModel {
|
|
2
|
+
url: string;
|
|
3
|
+
token: string;
|
|
4
|
+
username: string;
|
|
5
|
+
ownerGovernmentId: string;
|
|
6
|
+
ownerName: string;
|
|
7
|
+
product: string;
|
|
8
|
+
name: string;
|
|
9
|
+
type: string;
|
|
10
|
+
logo: string;
|
|
11
|
+
constructor(data?: any);
|
|
12
|
+
private handleLogo;
|
|
13
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './progress-bar.component';
|
|
2
|
-
export * from './progress-bar.module';
|
|
3
|
-
export * from './progress-bar.service';
|
|
1
|
+
export * from './progress-bar.component';
|
|
2
|
+
export * from './progress-bar.module';
|
|
3
|
+
export * from './progress-bar.service';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponent } from '../../base/base-component';
|
|
3
|
-
import { MECXProgressBarService } from './progress-bar.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MECXProgressBarComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
6
|
-
private progressBarService;
|
|
7
|
-
visible: boolean;
|
|
8
|
-
constructor(progressBarService: MECXProgressBarService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProgressBarComponent, "mecx-progress-bar", never, {}, {}, never, never>;
|
|
12
|
-
}
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponent } from '../../base/base-component';
|
|
3
|
+
import { MECXProgressBarService } from './progress-bar.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MECXProgressBarComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
6
|
+
private progressBarService;
|
|
7
|
+
visible: boolean;
|
|
8
|
+
constructor(progressBarService: MECXProgressBarService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProgressBarComponent, "mecx-progress-bar", never, {}, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./progress-bar.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class MECXProgressBarModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProgressBarModule, [typeof i1.MECXProgressBarComponent], [typeof i2.CommonModule], [typeof i1.MECXProgressBarComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXProgressBarModule>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./progress-bar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class MECXProgressBarModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProgressBarModule, [typeof i1.MECXProgressBarComponent], [typeof i2.CommonModule], [typeof i1.MECXProgressBarComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MECXProgressBarModule>;
|
|
8
|
+
}
|