bpm-core 0.0.135 → 0.0.137
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/fesm2022/bpm-core.mjs +77 -24
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/input/input.component.d.ts +1 -0
- package/lib/components/shared-components/form-field/search-employee/search-employee.component.d.ts +6 -1
- package/lib/components/shared-components/form-field/select/select.component.d.ts +1 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +1 -1
- package/lib/services/core.service.ts.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
}
|
package/lib/components/shared-components/form-field/search-employee/search-employee.component.d.ts
CHANGED
|
@@ -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 '
|
|
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";
|
|
@@ -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
|
|
12
|
+
export declare const Shareds: (typeof ReactiveFormsModule | typeof TranslatePipe | typeof FormLabelComponent | typeof NgClass | typeof ValidationErrorsComponent | typeof InfoItemComponent)[];
|
|
@@ -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;
|