iptdevs-design-system 3.1.916 → 3.1.918
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/atoms/datalist/datalist.component.mjs +13 -7
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +17 -6
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +17 -6
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/components/atoms/datalist/datalist.component.d.ts +5 -2
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DatalistComponent {
|
|
4
|
+
export declare class DatalistComponent implements OnInit {
|
|
5
5
|
datalistId: string;
|
|
6
6
|
datalistData: any[];
|
|
7
7
|
placeHolder: string;
|
|
@@ -11,7 +11,10 @@ export declare class DatalistComponent {
|
|
|
11
11
|
label: string;
|
|
12
12
|
isChanged: EventEmitter<string>;
|
|
13
13
|
clicked: boolean;
|
|
14
|
+
uniqueDatalistId: string;
|
|
15
|
+
private static idCounter;
|
|
14
16
|
constructor(fb: FormBuilder);
|
|
17
|
+
ngOnInit(): void;
|
|
15
18
|
optionChanged(event: any): void;
|
|
16
19
|
click(value: MouseEvent): void;
|
|
17
20
|
setDataListValue(): any;
|
|
@@ -108,6 +108,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
108
108
|
searchTransferByReference(params: ISearchTransferRq): Observable<any>;
|
|
109
109
|
updateTransferData(params: IUpdateTransferRq): Observable<any>;
|
|
110
110
|
obtainListStudentPaymentStatus(params: IObtainCourseByCoodDiffParamRq): Observable<any>;
|
|
111
|
+
exportListStudentPaymentStatus(params: IObtainCourseByCoodDiffParamRq): Observable<any>;
|
|
111
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
112
113
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
113
114
|
}
|