iptdevs-design-system 3.1.389 → 3.1.390
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/cod-self-managed/cod-form-self-managed/cod-self-managed.component.mjs +4 -4
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +10 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +17 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +17 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +4 -0
- package/lib/core/models/user/user-rq.model.d.ts +4 -0
- package/lib/core/services/budget-service/budget-service.d.ts +3 -1
- package/lib/core/services/user-service/user-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -900,6 +900,11 @@ class UserService extends IPTGeneralService {
|
|
|
900
900
|
let serviceUrl = this.SERVICE_URL + 'get/obtain/teachers/available/to/teach';
|
|
901
901
|
return this.http.get(serviceUrl);
|
|
902
902
|
}
|
|
903
|
+
searchUser(param) {
|
|
904
|
+
let serviceUrl = this.SERVICE_URL + 'post/search/user';
|
|
905
|
+
this.generateRequestParams(param);
|
|
906
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
907
|
+
}
|
|
903
908
|
}
|
|
904
909
|
UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
905
910
|
UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
@@ -5642,6 +5647,15 @@ class BudgetService extends IPTGeneralService {
|
|
|
5642
5647
|
this.generateRequestParams(params);
|
|
5643
5648
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
5644
5649
|
}
|
|
5650
|
+
getAllCommonExpenses() {
|
|
5651
|
+
let serviceUrl = this.SERVICE_URL + 'get/common/expenses/all';
|
|
5652
|
+
return this.http.get(serviceUrl);
|
|
5653
|
+
}
|
|
5654
|
+
createCommmonExpenses(param) {
|
|
5655
|
+
let serviceUrl = this.SERVICE_URL + 'post/common/expenses/create';
|
|
5656
|
+
this.generateRequestParams(param);
|
|
5657
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
5658
|
+
}
|
|
5645
5659
|
}
|
|
5646
5660
|
BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5647
5661
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|
|
@@ -6161,7 +6175,7 @@ class CodSelfManagedComponent {
|
|
|
6161
6175
|
}
|
|
6162
6176
|
ngOnInit() {
|
|
6163
6177
|
this.items = [
|
|
6164
|
-
{ label: 'Datos
|
|
6178
|
+
{ label: 'Datos', id: '1' },
|
|
6165
6179
|
{ label: 'Planes', id: '2' },
|
|
6166
6180
|
{ label: 'Pago', id: '3' },
|
|
6167
6181
|
{ label: 'Confirmation', id: '4' }
|
|
@@ -6176,10 +6190,10 @@ class CodSelfManagedComponent {
|
|
|
6176
6190
|
}
|
|
6177
6191
|
}
|
|
6178
6192
|
CodSelfManagedComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CodSelfManagedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6179
|
-
CodSelfManagedComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: CodSelfManagedComponent, selector: "ipt-cod-self-managed", ngImport: i0, template: "<h3>Matricula</h3
|
|
6193
|
+
CodSelfManagedComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: CodSelfManagedComponent, selector: "ipt-cod-self-managed", ngImport: i0, template: "<!-- <h3>Matricula</h3> -->\n\n<p-steps [model]=\"items\" [(activeIndex)]=\"currentStep\" (activeIndexChange)=\"currentStep = $event\" ></p-steps>\n<div class=\"container-steps\">\n \n <div *ngIf=\"currentStep === 0\">\n <app-cod-self-form-step-one (completed)=\"changeStep($event)\"></app-cod-self-form-step-one>\n </div>\n\n <div *ngIf=\"currentStep === 1\">\n <app-cod-self-form-step-two (completed)=\"changeStep($event)\"></app-cod-self-form-step-two>\n </div>\n\n <div *ngIf=\"currentStep === 2\">\n <app-cod-self-form-step-three (completed)=\"changeStep($event)\"></app-cod-self-form-step-three>\n </div>\n\n <div *ngIf=\"currentStep === 3\">\n <app-cod-self-form-step-four (completed)=\"changeStep($event)\"></app-cod-self-form-step-four>\n </div>\n\n</div>\n\n\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.Steps, selector: "p-steps", inputs: ["activeIndex", "model", "readonly", "style", "styleClass"], outputs: ["activeIndexChange"] }, { kind: "component", type: CodSelfFormStepOneComponent, selector: "app-cod-self-form-step-one", outputs: ["completed"] }, { kind: "component", type: CodSelfFormStepTwoComponent, selector: "app-cod-self-form-step-two" }, { kind: "component", type: CodSelfFormStepThreeComponent, selector: "app-cod-self-form-step-three" }, { kind: "component", type: CodSelfFormStepFourComponent, selector: "app-cod-self-form-step-four" }] });
|
|
6180
6194
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CodSelfManagedComponent, decorators: [{
|
|
6181
6195
|
type: Component,
|
|
6182
|
-
args: [{ selector: 'ipt-cod-self-managed', template: "<h3>Matricula</h3
|
|
6196
|
+
args: [{ selector: 'ipt-cod-self-managed', template: "<!-- <h3>Matricula</h3> -->\n\n<p-steps [model]=\"items\" [(activeIndex)]=\"currentStep\" (activeIndexChange)=\"currentStep = $event\" ></p-steps>\n<div class=\"container-steps\">\n \n <div *ngIf=\"currentStep === 0\">\n <app-cod-self-form-step-one (completed)=\"changeStep($event)\"></app-cod-self-form-step-one>\n </div>\n\n <div *ngIf=\"currentStep === 1\">\n <app-cod-self-form-step-two (completed)=\"changeStep($event)\"></app-cod-self-form-step-two>\n </div>\n\n <div *ngIf=\"currentStep === 2\">\n <app-cod-self-form-step-three (completed)=\"changeStep($event)\"></app-cod-self-form-step-three>\n </div>\n\n <div *ngIf=\"currentStep === 3\">\n <app-cod-self-form-step-four (completed)=\"changeStep($event)\"></app-cod-self-form-step-four>\n </div>\n\n</div>\n\n\n" }]
|
|
6183
6197
|
}] });
|
|
6184
6198
|
|
|
6185
6199
|
class codSelfManagedModule {
|