monkey-front-components 0.0.429 → 0.0.430
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/options.component.mjs +23 -15
- package/fesm2015/monkey-front-components.mjs +22 -14
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +20 -14
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/lib/components/shared/filter/options/options.component.d.ts +5 -3
- package/monkey-front-components-0.0.430.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-components-0.0.429.tgz +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { EventEmitter, AfterViewInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, AfterViewInit } from '@angular/core';
|
|
2
2
|
import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
+
import { BaseComponent } from '../../../base';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterOptionsComponent implements AfterViewInit {
|
|
5
|
+
export declare class MECXFilterOptionsComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
5
6
|
option: MonkeyEcxFilterMenu;
|
|
6
7
|
closeDirectly: boolean;
|
|
7
8
|
onClose: EventEmitter<any>;
|
|
@@ -15,11 +16,12 @@ export declare class MECXFilterOptionsComponent implements AfterViewInit {
|
|
|
15
16
|
constructor();
|
|
16
17
|
private onHandleLoading;
|
|
17
18
|
private onHandleLoadValues;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngAfterViewInit(): void;
|
|
18
21
|
onHandleChildrenAction(child: MonkeyEcxFilterMenuChildren): void;
|
|
19
22
|
onHandleSubmitChildren(event: any): void;
|
|
20
23
|
onHandleSubmit(event: any): void;
|
|
21
24
|
onHandleShowMenu(): void;
|
|
22
|
-
ngAfterViewInit(): void;
|
|
23
25
|
onHandleLoadMoreValues(): void;
|
|
24
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsComponent, never>;
|
|
25
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsComponent, "mecx-filter-options", never, { "option": "option"; "closeDirectly": "closeDirectly"; }, { "onClose": "onClose"; "onRemove": "onRemove"; "onSubmit": "onSubmit"; "onShowFromChildren": "onShowFromChildren"; }, never, never>;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monkey-front-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.430",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "13.1.1",
|
|
6
6
|
"@angular/core": "13.1.1",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"rxjs": "^6.6.3",
|
|
10
10
|
"@ngx-translate/core": "^13.0.0",
|
|
11
11
|
"monkey-style-guide": "2.0.172",
|
|
12
|
-
"monkey-front-core": "0.0.
|
|
12
|
+
"monkey-front-core": "0.0.281",
|
|
13
13
|
"ngx-mask": "^12.0.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"monkey-style-guide": "2.0.172",
|
|
17
|
-
"monkey-front-core": "0.0.
|
|
17
|
+
"monkey-front-core": "0.0.281",
|
|
18
18
|
"tslib": "^2.3.0"
|
|
19
19
|
},
|
|
20
20
|
"module": "fesm2015/monkey-front-components.mjs",
|
|
Binary file
|