bpm-core 0.0.134 → 0.0.135

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.
@@ -9,9 +9,6 @@ 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;
15
12
  /**
16
13
  * Emits the full details of the selected employee.
17
14
  */
@@ -22,8 +19,6 @@ export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorD
22
19
  userAlreadyExist: boolean;
23
20
  emitedDeletedValue: EventEmitter<any>;
24
21
  destroyRef: DestroyRef;
25
- hasCustomApi: boolean;
26
- customApiEmit: EventEmitter<any>;
27
22
  ngOnInit(): void;
28
23
  deleteRow(ind: number, rowData: any): void;
29
24
  onLoadOptions(event: any): void;
@@ -31,7 +26,7 @@ export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorD
31
26
  getImage(id: string): string;
32
27
  selectOption(object: any, ev: any): void;
33
28
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchEmployeeComponent<any>, 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>;
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>;
35
30
  }
36
31
  export interface searchEmp {
37
32
  personName?: string;
@@ -9,4 +9,4 @@ import { NgClass } from "@angular/common";
9
9
  import { TranslatePipe } from "../../../pipes/translate.pipe";
10
10
  export declare const MatDatePickerImports: (typeof MatDatepickerToggle | typeof MatDatepickerInput | typeof MatDatepickerModule)[];
11
11
  export declare const MatFormImports: (typeof MatFormFieldModule | typeof MatFormField | typeof MatInput)[];
12
- export declare const Shareds: (typeof ReactiveFormsModule | typeof TranslatePipe | typeof FormLabelComponent | typeof NgClass | typeof ValidationErrorsComponent | typeof InfoItemComponent)[];
12
+ export declare const Shareds: (typeof FormLabelComponent | typeof ValidationErrorsComponent | typeof InfoItemComponent | typeof ReactiveFormsModule | typeof NgClass | typeof TranslatePipe)[];
@@ -60,7 +60,6 @@ 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>;
64
63
  myRequests(details: any): Observable<any>;
65
64
  generalCallApi(body: any, type: string, options: any): Observable<any>;
66
65
  loggedInUserId(): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpm-core",
3
- "version": "0.0.134",
3
+ "version": "0.0.135",
4
4
  "bin": {
5
5
  "bpm-core": "./cli/index.js"
6
6
  },
@@ -16,7 +16,8 @@
16
16
  "prettier": "^3.6.2",
17
17
  "change-case": "^5.4.4",
18
18
  "ejs": "^3.1.10",
19
- "commander": "^13.0.0"
19
+ "commander": "^13.0.0",
20
+ "chalk": "^4.1.0"
20
21
  },
21
22
  "sideEffects": false,
22
23
  "module": "fesm2022/bpm-core.mjs",