bpm-core 0.0.135 → 0.0.136

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.
@@ -85,6 +85,7 @@ export declare class InputComponent<Type> extends ControlValueAccessorDirective<
85
85
  filterFn: InputFilterFn;
86
86
  destroyRef: DestroyRef;
87
87
  ngOnInit(): void;
88
+ matSuffixClicked(): void;
88
89
  static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent<any>, never>;
89
90
  static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent<any>, "app-input", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "emitedChangedValue1": { "alias": "emitedChangedValue1"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "mapFn": { "alias": "mapFn"; "required": false; }; "filterFn": { "alias": "filterFn"; "required": false; }; }, {}, never, never, true, never>;
90
91
  }
@@ -9,6 +9,9 @@ export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorD
9
9
  floatLabel: any;
10
10
  error: string;
11
11
  selected: boolean;
12
+ ApiAlias: any;
13
+ parameters: any;
14
+ hasCustomAPI: boolean;
12
15
  /**
13
16
  * Emits the full details of the selected employee.
14
17
  */
@@ -19,6 +22,8 @@ export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorD
19
22
  userAlreadyExist: boolean;
20
23
  emitedDeletedValue: EventEmitter<any>;
21
24
  destroyRef: DestroyRef;
25
+ hasCustomApi: boolean;
26
+ customApiEmit: EventEmitter<any>;
22
27
  ngOnInit(): void;
23
28
  deleteRow(ind: number, rowData: any): void;
24
29
  onLoadOptions(event: any): void;
@@ -26,7 +31,7 @@ export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorD
26
31
  getImage(id: string): string;
27
32
  selectOption(object: any, ev: any): void;
28
33
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchEmployeeComponent<any>, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchEmployeeComponent<any>, "app-search-employee", never, { "valueName": { "alias": "valueName"; "required": false; }; "className": { "alias": "className"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "data": { "alias": "data"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "error": { "alias": "error"; "required": false; }; "showEdit": { "alias": "showEdit"; "required": false; }; "arrayList": { "alias": "arrayList"; "required": false; }; "isUniqueUsers": { "alias": "isUniqueUsers"; "required": false; }; }, { "selectedEmployee": "selectedEmployee"; "emitedDeletedValue": "emitedDeletedValue"; }, never, never, true, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchEmployeeComponent<any>, "app-search-employee", never, { "valueName": { "alias": "valueName"; "required": false; }; "className": { "alias": "className"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "data": { "alias": "data"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "error": { "alias": "error"; "required": false; }; "ApiAlias": { "alias": "ApiAlias"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "hasCustomAPI": { "alias": "hasCustomAPI"; "required": false; }; "showEdit": { "alias": "showEdit"; "required": false; }; "arrayList": { "alias": "arrayList"; "required": false; }; "isUniqueUsers": { "alias": "isUniqueUsers"; "required": false; }; "hasCustomApi": { "alias": "hasCustomApi"; "required": false; }; }, { "selectedEmployee": "selectedEmployee"; "emitedDeletedValue": "emitedDeletedValue"; "customApiEmit": "customApiEmit"; }, never, never, true, never>;
30
35
  }
31
36
  export interface searchEmp {
32
37
  personName?: string;
@@ -1,4 +1,4 @@
1
- import { BaseComponent } from './../base-component/base-component.component';
1
+ import { BaseComponent } from '../base-component/base-component.component';
2
2
  import { MatSelectChange } from '@angular/material/select';
3
3
  import { EventEmitter, SimpleChanges, ElementRef } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
@@ -60,6 +60,7 @@ export declare class CoreService {
60
60
  perspectiveApproves(details: any): Observable<any>;
61
61
  getAttachments(data: any, ...args: any): Observable<any>;
62
62
  searchEmployee(...args: any[]): Observable<any>;
63
+ customSearchEmployee(q: any, ApiAlias: any, args?: {}): Observable<any>;
63
64
  myRequests(details: any): Observable<any>;
64
65
  generalCallApi(body: any, type: string, options: any): Observable<any>;
65
66
  loggedInUserId(): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpm-core",
3
- "version": "0.0.135",
3
+ "version": "0.0.136",
4
4
  "bin": {
5
5
  "bpm-core": "./cli/index.js"
6
6
  },