iptdevs-design-system 3.1.30 → 3.1.32
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/core/services/placement-service/placement.service.mjs +23 -0
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/iptdevs-design-system.mjs +20 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +20 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/placement-service/placement.service.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -5171,6 +5171,25 @@ const validateCoupunts = (control) => {
|
|
|
5171
5171
|
const value = control.value.trim();
|
|
5172
5172
|
};
|
|
5173
5173
|
|
|
5174
|
+
class PlacementService extends IPTGeneralService {
|
|
5175
|
+
constructor(http) {
|
|
5176
|
+
super();
|
|
5177
|
+
this.http = http;
|
|
5178
|
+
this.SERVICE_URL = 'placement/api/';
|
|
5179
|
+
this.SERVICE_URL = this.baseUrl() + this.SERVICE_URL;
|
|
5180
|
+
}
|
|
5181
|
+
getAllPlacementTestUsers() {
|
|
5182
|
+
let serviceUrl = this.SERVICE_URL + 'get/possible/students';
|
|
5183
|
+
return this.http.get(serviceUrl);
|
|
5184
|
+
}
|
|
5185
|
+
}
|
|
5186
|
+
PlacementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5187
|
+
PlacementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, providedIn: 'root' });
|
|
5188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, decorators: [{
|
|
5189
|
+
type: Injectable,
|
|
5190
|
+
args: [{ providedIn: 'root' }]
|
|
5191
|
+
}], ctorParameters: function () { return [{ type: i1$2.HttpClient }]; } });
|
|
5192
|
+
|
|
5174
5193
|
class Session {
|
|
5175
5194
|
}
|
|
5176
5195
|
|
|
@@ -5189,5 +5208,5 @@ class IUserFullDataRs {
|
|
|
5189
5208
|
* Generated bundle index. Do not edit.
|
|
5190
5209
|
*/
|
|
5191
5210
|
|
|
5192
|
-
export { AcademicService, ActivityService, AsideButtonComponent, AttendanceService, BaseService, BudgetService, ButtonComponent, CalculateQuotesService, CalendarService, CertificateService, CheckboxComponent, ClassroomService, CodDocumentsSectionComponent, CodFormComponent, CodFormControls, CodFormStepFiveComponent, CodFormStepFourComponent, CodFormStepOneComponent, CodFormStepThreeComponent, CodFormStepTwoComponent, CodFormSteps, CodModule, CommercialService, CommunicatorService, ComponentsModule, CopiesService, CoreModule, CourseService, CreateUserFormComponent, DatalistComponent, DesignSystemModule, IUserFullDataRs, InputComponent, LevelButtonComponent, LevelTextComponent, LoaderComponent, LocalStorageCODService, LoginFormComponent, MarketingService, NotesService, ParameterService, QuestionTypeComponent, RadioComponent, RedirectGuard, SelectComponent, Session, SidenavComponent, StorageService, StudentService, SwitchService, TestService, TextLinkComponent, UserEktService, UserLoginRs, UserRs, UserService, validateCoupunts };
|
|
5211
|
+
export { AcademicService, ActivityService, AsideButtonComponent, AttendanceService, BaseService, BudgetService, ButtonComponent, CalculateQuotesService, CalendarService, CertificateService, CheckboxComponent, ClassroomService, CodDocumentsSectionComponent, CodFormComponent, CodFormControls, CodFormStepFiveComponent, CodFormStepFourComponent, CodFormStepOneComponent, CodFormStepThreeComponent, CodFormStepTwoComponent, CodFormSteps, CodModule, CommercialService, CommunicatorService, ComponentsModule, CopiesService, CoreModule, CourseService, CreateUserFormComponent, DatalistComponent, DesignSystemModule, IUserFullDataRs, InputComponent, LevelButtonComponent, LevelTextComponent, LoaderComponent, LocalStorageCODService, LoginFormComponent, MarketingService, NotesService, ParameterService, PlacementService, QuestionTypeComponent, RadioComponent, RedirectGuard, SelectComponent, Session, SidenavComponent, StorageService, StudentService, SwitchService, TestService, TextLinkComponent, UserEktService, UserLoginRs, UserRs, UserService, validateCoupunts };
|
|
5193
5212
|
//# sourceMappingURL=iptdevs-design-system.mjs.map
|