monkey-front-components 0.0.303 → 0.0.306

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.
@@ -1,3 +1,4 @@
1
1
  export * from './filter';
2
2
  export * from './password-strength';
3
3
  export * from './progress-bar';
4
+ export * from './products';
@@ -0,0 +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
+ }
@@ -0,0 +1,2 @@
1
+ export * from './products.component';
2
+ export * from './products.module';
@@ -0,0 +1,19 @@
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
+ constructor(tokenStorage: MonkeyEcxTokenStorageService);
12
+ onImgError(img: HTMLImageElement): void;
13
+ private onHandleProducts;
14
+ private onHandleMe;
15
+ ngOnInit(): void;
16
+ onHandleChangeFilter(event: string): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsComponent, "mecx-products", never, {}, { "onAccess": "onAccess"; }, never, never>;
19
+ }
@@ -0,0 +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
+ }
@@ -0,0 +1 @@
1
+ export * from './products.model';
@@ -0,0 +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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-components",
3
- "version": "0.0.303",
3
+ "version": "0.0.306",
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.138",
12
- "monkey-front-core": "0.0.182",
12
+ "monkey-front-core": "0.0.183",
13
13
  "ngx-mask": "^12.0.0"
14
14
  },
15
15
  "dependencies": {
16
16
  "monkey-style-guide": "^2.0.138",
17
- "monkey-front-core": "0.0.182",
17
+ "monkey-front-core": "0.0.183",
18
18
  "tslib": "^2.3.0"
19
19
  },
20
20
  "module": "fesm2015/monkey-front-components.mjs",
Binary file