herum-shared 0.1.38 → 0.1.39
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/assets/shared/audio-images/purple-pause.svg +4 -0
- package/assets/shared/audio-images/purple-play.svg +3 -0
- package/atoms/index.d.ts +55 -55
- package/constants/index.d.ts +181 -136
- package/dialogs/index.d.ts +4 -3
- package/environment/index.d.ts +2 -35
- package/fesm2022/herum-shared-animations.mjs +4 -0
- package/fesm2022/herum-shared-animations.mjs.map +1 -1
- package/fesm2022/herum-shared-atoms.mjs +110 -108
- package/fesm2022/herum-shared-atoms.mjs.map +1 -1
- package/fesm2022/herum-shared-constants.mjs +188 -159
- package/fesm2022/herum-shared-constants.mjs.map +1 -1
- package/fesm2022/herum-shared-decorators.mjs +4 -0
- package/fesm2022/herum-shared-decorators.mjs.map +1 -1
- package/fesm2022/herum-shared-dialogs.mjs +7 -4
- package/fesm2022/herum-shared-dialogs.mjs.map +1 -1
- package/fesm2022/herum-shared-directives.mjs +5 -1
- package/fesm2022/herum-shared-directives.mjs.map +1 -1
- package/fesm2022/herum-shared-environment.mjs +4 -0
- package/fesm2022/herum-shared-environment.mjs.map +1 -1
- package/fesm2022/herum-shared-errors.mjs +5 -1
- package/fesm2022/herum-shared-errors.mjs.map +1 -1
- package/fesm2022/herum-shared-fetched-message.mjs +39 -30
- package/fesm2022/herum-shared-fetched-message.mjs.map +1 -1
- package/fesm2022/herum-shared-molecules.mjs +57 -28
- package/fesm2022/herum-shared-molecules.mjs.map +1 -1
- package/fesm2022/herum-shared-mongo.mjs +414 -150
- package/fesm2022/herum-shared-mongo.mjs.map +1 -1
- package/fesm2022/herum-shared-objectsExample.mjs +5 -1
- package/fesm2022/herum-shared-objectsExample.mjs.map +1 -1
- package/fesm2022/herum-shared-pipes.mjs +64 -60
- package/fesm2022/herum-shared-pipes.mjs.map +1 -1
- package/fesm2022/herum-shared-services.mjs +144 -321
- package/fesm2022/herum-shared-services.mjs.map +1 -1
- package/fesm2022/herum-shared-static-services.mjs +4 -0
- package/fesm2022/herum-shared-static-services.mjs.map +1 -1
- package/fesm2022/herum-shared-table.mjs +61 -48
- package/fesm2022/herum-shared-table.mjs.map +1 -1
- package/fesm2022/herum-shared-testsObjects.mjs +89 -119
- package/fesm2022/herum-shared-testsObjects.mjs.map +1 -1
- package/fesm2022/herum-shared-tokens.mjs +4 -0
- package/fesm2022/herum-shared-tokens.mjs.map +1 -1
- package/fesm2022/herum-shared-utils.mjs +43 -39
- package/fesm2022/herum-shared-utils.mjs.map +1 -1
- package/fesm2022/herum-shared-validators.mjs +4 -0
- package/fesm2022/herum-shared-validators.mjs.map +1 -1
- package/fesm2022/herum-shared.mjs +9031 -890
- package/fesm2022/herum-shared.mjs.map +1 -1
- package/fetched-message/index.d.ts +11 -11
- package/index.d.ts +1654 -274
- package/molecules/index.d.ts +12 -9
- package/mongo/index.d.ts +125 -66
- package/objectsExample/index.d.ts +3 -1
- package/package.json +2 -5
- package/pipes/index.d.ts +25 -21
- package/services/index.d.ts +56 -67
- package/styles/_mixin.scss +2 -2
- package/styles/dialogs.scss +0 -5
- package/styles/variables/_colors.scss +5 -109
- package/styles/variables/_sizes.scss +2 -9
- package/table/index.d.ts +25 -18
- package/testsObjects/index.d.ts +3 -3
- package/tokens/index.d.ts +6 -4
- package/utils/index.d.ts +14 -10
- package/fesm2022/herum-shared-herum-types.mjs +0 -107
- package/fesm2022/herum-shared-herum-types.mjs.map +0 -1
- package/herum-types/index.d.ts +0 -200
- package/styles/variables/_colors.college.scss +0 -65
package/index.d.ts
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, OnChanges, OnDestroy, ElementRef, SimpleChanges, AfterViewInit, OnInit, ChangeDetectorRef, QueryList, TemplateRef, Renderer2, PipeTransform } from '@angular/core';
|
|
3
|
-
import { ResourceGradeUpdate,
|
|
2
|
+
import { EventEmitter, OnChanges, OnDestroy, ElementRef, SimpleChanges, AfterViewInit, OnInit, NgZone, ChangeDetectorRef, QueryList, TemplateRef, Renderer2, PipeTransform, SimpleChange, ErrorHandler, RendererFactory2, InjectionToken } from '@angular/core';
|
|
3
|
+
import { ResourceGradeUpdate, Resource, QuizData, Question, Answer, ModifiedResource, MicroResourceAuthorizationType, MicroResourceFrontData, QuizGradeData } from 'herum-types/Resource';
|
|
4
|
+
import * as rxjs from 'rxjs';
|
|
4
5
|
import { Subject, BehaviorSubject, Observable } from 'rxjs';
|
|
5
|
-
import { GlobalKeyboardListenerService, KeyPressService, TrackTextChangesService, UtilsService, CommonGraphqlRequestsService } from 'herum-shared/services';
|
|
6
|
-
import {
|
|
6
|
+
import { GlobalKeyboardListenerService as GlobalKeyboardListenerService$1, KeyPressService as KeyPressService$1, TrackTextChangesService as TrackTextChangesService$1, UtilsService as UtilsService$1, CommonGraphqlRequestsService as CommonGraphqlRequestsService$1, ToastsService as ToastsService$1, LoaderManagerService as LoaderManagerService$1, AuthService as AuthService$1, DbActionsInnerIdManagerService as DbActionsInnerIdManagerService$1 } from 'herum-shared/services';
|
|
7
|
+
import { MediaSettings, IdentifiedEntity, ViewModelType, AudioVisualConfiguration, TreeNode, NodeMenuItem, SystemTreeNodeData, TimeRange, DateTimePicker, FileData, RecursiveTitledOption, MenuItem, SignUpField, DisplayIdentifiedEntity, TreeNodeAssignmentsData, Step, KeyValue, ProgressOverView, SignInFormData, SignUpFormData, ClosedList, GlobalKeyboardEvent, SystemIdentifier, ModelInfo } from 'herum-types/Shared';
|
|
8
|
+
import { ResourceSubscription, UserAnswer, UserQuestionData, User, CollectionSubscription, AnswerNote, SecurityQuestion } from 'herum-types/User';
|
|
9
|
+
import { IMediaPlayer, ISystemTrackTextChangesService, ISystemUserService } from 'herum-types/interfaces';
|
|
10
|
+
import { UserPreview, ResourcePreview } from 'herum-types/Previews';
|
|
11
|
+
import { TextChange, TextChangeStyle } from 'herum-types/TrackTextChanges';
|
|
12
|
+
import { AnimationItem } from 'lottie-web';
|
|
13
|
+
import { EnvironmentConfig as EnvironmentConfig$1, AuthenticationPaths as AuthenticationPaths$1, MongoUpdates as MongoUpdates$1 } from 'herum-shared/environment';
|
|
7
14
|
import * as i40 from '@angular/forms';
|
|
8
15
|
import { FormControl, FormGroup, FormBuilder, ControlValueAccessor, NgControl, ControlContainer, ValidatorFn, AsyncValidatorFn } from '@angular/forms';
|
|
9
16
|
import * as i4 from 'herum-shared/atoms';
|
|
@@ -28,17 +35,121 @@ import * as i51 from '@angular/material/slider';
|
|
|
28
35
|
import * as i52 from '@angular/cdk/drag-drop';
|
|
29
36
|
import * as i54 from '@angular/material/core';
|
|
30
37
|
import { DateAdapter } from '@angular/material/core';
|
|
31
|
-
import { HttpClient, HttpRequest, HttpErrorResponse } from '@angular/common/http';
|
|
38
|
+
import { HttpClient, HttpHeaders, HttpRequest, HttpErrorResponse } from '@angular/common/http';
|
|
32
39
|
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
40
|
+
import { DialogConfig, FetchedMessage } from 'herum-types/Dialogs';
|
|
33
41
|
import * as i6 from 'herum-shared/molecules';
|
|
42
|
+
import { HerumTableParams, AlignDir, HoveredHerumRowTable, BaseRowData } from 'herum-types/Table';
|
|
34
43
|
import * as i55 from 'herum-shared/directives';
|
|
35
44
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
36
45
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
46
|
+
import { CollectionBase, Collection } from 'herum-types/Collection';
|
|
37
47
|
import { SplitGutterInteractionEvent } from 'angular-split';
|
|
38
|
-
import * as
|
|
48
|
+
import * as i16 from 'ag-grid-angular';
|
|
39
49
|
import { ICellRendererAngularComp, AgFilterComponent } from 'ag-grid-angular';
|
|
40
50
|
import { ICellRendererParams, ColDef, GridApi, ColumnApi, GridReadyEvent, ModelUpdatedEvent, IFilterParams, IDoesFilterPassParams } from 'ag-grid-community';
|
|
51
|
+
import { Router } from '@angular/router';
|
|
52
|
+
import { GraphQlQuery, GQLVariable, GraphQLFilter, GraphQlOffsetPaging, GraphQLOrder } from 'herum-types/GraphQL';
|
|
53
|
+
import { AuthenticationResponse } from 'herum-types/Auth';
|
|
54
|
+
import { Group } from 'herum-types/Group';
|
|
55
|
+
import { LessonResourceSubscription, Lesson, MicroResourceAuthorizationBase, LessonStudentSubscription, BackendMicroResourceAuthorization } from 'herum-types/Lessons';
|
|
56
|
+
import { UsersLessonPermissionsDalResponse, DbActionResponse } from 'herum-types/GenericUpdates';
|
|
57
|
+
import { HadrachaPage } from 'herum-types/HadrachaPage';
|
|
58
|
+
import { Toast, ToastTemplate, ToastStatus, ToastContext, ToastState, CommonDependentsToast, ToastHttpResponseDependencies } from 'herum-types/Toast';
|
|
59
|
+
import { UploadProgressStatus, UploadProgressType, FailedDependentsRequestsContext, ComplexObservableArrowFunctions, DependentMetadata, ObservableArrowFunction, UploadProgressMetadata } from 'herum-types/uploads-manager';
|
|
41
60
|
import * as _angular_animations from '@angular/animations';
|
|
61
|
+
import { PermissionTemplate } from 'herum-types/Permission';
|
|
62
|
+
import { validatorsNames as validatorsNames$1 } from 'herum-shared/constants';
|
|
63
|
+
|
|
64
|
+
type MongoUpdates = {
|
|
65
|
+
CollectionCategories: {
|
|
66
|
+
Metadata: string;
|
|
67
|
+
};
|
|
68
|
+
Collections: {
|
|
69
|
+
Collections: string;
|
|
70
|
+
HadrachaPages: string;
|
|
71
|
+
HadrachaPage: string;
|
|
72
|
+
LessonTemplates: string;
|
|
73
|
+
Lessons: string;
|
|
74
|
+
Groups: string;
|
|
75
|
+
Playlists: string;
|
|
76
|
+
Resources: string;
|
|
77
|
+
PartialResources: string;
|
|
78
|
+
Structs: string;
|
|
79
|
+
StructsPaginatedLessons: string;
|
|
80
|
+
Users: string;
|
|
81
|
+
PartialUsers: string;
|
|
82
|
+
User: string;
|
|
83
|
+
Tags: string;
|
|
84
|
+
ClosedLists: string;
|
|
85
|
+
Subjects: string;
|
|
86
|
+
CommonQuestionSections: string;
|
|
87
|
+
};
|
|
88
|
+
Methods: {
|
|
89
|
+
AddOrUpdate: string;
|
|
90
|
+
ModelInfo: string;
|
|
91
|
+
Attach: string;
|
|
92
|
+
Delete: string;
|
|
93
|
+
ListItemDeletion: string;
|
|
94
|
+
Create: string;
|
|
95
|
+
Basic: string;
|
|
96
|
+
Update: string;
|
|
97
|
+
ListItem: string;
|
|
98
|
+
};
|
|
99
|
+
Submethods: {
|
|
100
|
+
AndAttach: string;
|
|
101
|
+
Duplicate: string;
|
|
102
|
+
};
|
|
103
|
+
Options: {
|
|
104
|
+
Bulk: string;
|
|
105
|
+
SetFile: string;
|
|
106
|
+
SetFiles: string;
|
|
107
|
+
ResourceFiles: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
type AuthenticationPaths = {
|
|
112
|
+
tryLogin: string;
|
|
113
|
+
signUp: string;
|
|
114
|
+
isValidSessionId: string;
|
|
115
|
+
isUniqueUser: string;
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
type EnvironmentConfig = {
|
|
119
|
+
mongoUpdates?: MongoUpdates;
|
|
120
|
+
environment: {
|
|
121
|
+
production: boolean;
|
|
122
|
+
envName: string;
|
|
123
|
+
siteServerPath: string;
|
|
124
|
+
filesDisplayServerPath?: string;
|
|
125
|
+
s3ServerPath: string;
|
|
126
|
+
userAction: string;
|
|
127
|
+
lessonSocketBackend: string;
|
|
128
|
+
keyboardEventsLocalSocketPath: string;
|
|
129
|
+
systemIdentifier: string;
|
|
130
|
+
};
|
|
131
|
+
graphQLConfiguration: {
|
|
132
|
+
serverBasePath: string;
|
|
133
|
+
minDifferentBeforeNextPage: number;
|
|
134
|
+
};
|
|
135
|
+
pagesRouteWithoutHeader: Array<string>;
|
|
136
|
+
resourcePaths: {
|
|
137
|
+
resourceSubscriptionUpdate: string;
|
|
138
|
+
resourceUpdateAuthorizations: string;
|
|
139
|
+
};
|
|
140
|
+
authenticationPaths: AuthenticationPaths;
|
|
141
|
+
buckets: {
|
|
142
|
+
GeneralFiles: string;
|
|
143
|
+
Story: string;
|
|
144
|
+
Pdf: string;
|
|
145
|
+
Video: string;
|
|
146
|
+
Presentation: string;
|
|
147
|
+
PreviewImage: string;
|
|
148
|
+
Paka: string;
|
|
149
|
+
ResourceFile: string;
|
|
150
|
+
Audio: string;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
42
153
|
|
|
43
154
|
interface IHerumInterface {
|
|
44
155
|
srcPath: string;
|
|
@@ -46,6 +157,7 @@ interface IHerumInterface {
|
|
|
46
157
|
onGradeUpdate: EventEmitter<ResourceGradeUpdate>;
|
|
47
158
|
}
|
|
48
159
|
|
|
160
|
+
type Interval = ReturnType<typeof setInterval>;
|
|
49
161
|
declare class HerumVideoPlayerComponent implements OnChanges, OnDestroy, IHerumInterface, IMediaPlayer {
|
|
50
162
|
private globalKeyboardListener;
|
|
51
163
|
private keyPressService;
|
|
@@ -58,9 +170,9 @@ declare class HerumVideoPlayerComponent implements OnChanges, OnDestroy, IHerumI
|
|
|
58
170
|
isBlock: boolean;
|
|
59
171
|
id: string;
|
|
60
172
|
getTimeUpdate: number;
|
|
61
|
-
onGradeUpdate: EventEmitter<
|
|
173
|
+
onGradeUpdate: EventEmitter<ResourceGradeUpdate>;
|
|
62
174
|
isLoadingChange: EventEmitter<boolean>;
|
|
63
|
-
mediaSettingsUpdate: EventEmitter<
|
|
175
|
+
mediaSettingsUpdate: EventEmitter<MediaSettings>;
|
|
64
176
|
mediaSettingsUpdateByRequest: EventEmitter<number>;
|
|
65
177
|
videoPlayer: ElementRef;
|
|
66
178
|
_onKeyDown(event: KeyboardEvent): void;
|
|
@@ -77,9 +189,9 @@ declare class HerumVideoPlayerComponent implements OnChanges, OnDestroy, IHerumI
|
|
|
77
189
|
canPlay: boolean;
|
|
78
190
|
isToUpdateGrade$: Subject<void>;
|
|
79
191
|
destroySubject$: Subject<null>;
|
|
80
|
-
updateGradeInterval:
|
|
81
|
-
updateCurrentTimeInterval:
|
|
82
|
-
constructor(globalKeyboardListener: GlobalKeyboardListenerService, keyPressService: KeyPressService);
|
|
192
|
+
updateGradeInterval: Interval;
|
|
193
|
+
updateCurrentTimeInterval: Interval;
|
|
194
|
+
constructor(globalKeyboardListener: GlobalKeyboardListenerService$1, keyPressService: KeyPressService$1);
|
|
83
195
|
ngOnChanges(changes: SimpleChanges): void;
|
|
84
196
|
private resetVideoState;
|
|
85
197
|
private setGradeInterval;
|
|
@@ -163,7 +275,7 @@ declare class TrackTextChangesComponent implements AfterViewInit, OnChanges {
|
|
|
163
275
|
isReadOnly: boolean;
|
|
164
276
|
fontSize: number;
|
|
165
277
|
showComments: boolean;
|
|
166
|
-
changesEmitter: EventEmitter<
|
|
278
|
+
changesEmitter: EventEmitter<TextChange[]>;
|
|
167
279
|
editor: ElementRef;
|
|
168
280
|
trackChangesEnabled: boolean;
|
|
169
281
|
currentSelection: {
|
|
@@ -193,9 +305,10 @@ declare class TrackTextChangesComponent implements AfterViewInit, OnChanges {
|
|
|
193
305
|
markerTimeoutId: any;
|
|
194
306
|
textChangeStyle: TextChangeStyle;
|
|
195
307
|
commentTextHoverColor: string;
|
|
196
|
-
constructor(trackTextChangesService: TrackTextChangesService);
|
|
308
|
+
constructor(trackTextChangesService: TrackTextChangesService$1);
|
|
197
309
|
ngOnChanges(changes: SimpleChanges): void;
|
|
198
310
|
ngAfterViewInit(): void;
|
|
311
|
+
_onPaste(event: ClipboardEvent): void;
|
|
199
312
|
_onKeyDown(event: KeyboardEvent): void;
|
|
200
313
|
/**
|
|
201
314
|
* handles text selection to show the tooltip for comments.
|
|
@@ -248,7 +361,6 @@ declare class TrackTextChangesComponent implements AfterViewInit, OnChanges {
|
|
|
248
361
|
private addEventListenerToMarkerAndTooltip;
|
|
249
362
|
private removeEventListenerFromMarkersAndTooltips;
|
|
250
363
|
private isUpdateAdditionWhileSelectionIsNextToInsTag;
|
|
251
|
-
private updateAddition;
|
|
252
364
|
private updateAdditionWhileSelectionIsInsideInsTag;
|
|
253
365
|
private updateAdditionWhileSelectionIsNextToInsTag;
|
|
254
366
|
/**
|
|
@@ -275,6 +387,8 @@ declare class TrackTextChangesComponent implements AfterViewInit, OnChanges {
|
|
|
275
387
|
* @param selection The current selection.
|
|
276
388
|
*/
|
|
277
389
|
private handleDeletion;
|
|
390
|
+
private getDeletionTagsUpdateData;
|
|
391
|
+
private updateDeletionTags;
|
|
278
392
|
deleteChange(changeToDelete: TextChange): void;
|
|
279
393
|
/**
|
|
280
394
|
* Creates a <del> tag element for deleted text.
|
|
@@ -343,7 +457,7 @@ declare class TrackTextChangesComponent implements AfterViewInit, OnChanges {
|
|
|
343
457
|
* @returns True if inside the tag; otherwise, false.
|
|
344
458
|
*/
|
|
345
459
|
private isInsideTag;
|
|
346
|
-
private
|
|
460
|
+
private getSiblingSameTag;
|
|
347
461
|
/**
|
|
348
462
|
* Records a change in the changes list.
|
|
349
463
|
* @param change A partial change object.
|
|
@@ -375,7 +489,7 @@ declare class HerumPdfViewerComponent implements OnChanges, IHerumInterface {
|
|
|
375
489
|
srcPath: string;
|
|
376
490
|
isResourceInWideMode: boolean;
|
|
377
491
|
resourceId: string;
|
|
378
|
-
onGradeUpdate: EventEmitter<
|
|
492
|
+
onGradeUpdate: EventEmitter<ResourceGradeUpdate>;
|
|
379
493
|
pdfFrame: ElementRef;
|
|
380
494
|
ngOnChanges(): void;
|
|
381
495
|
private updateGrade;
|
|
@@ -389,7 +503,7 @@ declare class HerumStoryViewerComponent implements OnChanges, IHerumInterface {
|
|
|
389
503
|
srcPath: string;
|
|
390
504
|
isResourceInWideMode: boolean;
|
|
391
505
|
resourceId: string;
|
|
392
|
-
onGradeUpdate: EventEmitter<
|
|
506
|
+
onGradeUpdate: EventEmitter<ResourceGradeUpdate>;
|
|
393
507
|
constructor();
|
|
394
508
|
ngOnChanges(): void;
|
|
395
509
|
private updateGrade;
|
|
@@ -400,7 +514,7 @@ declare class HerumStoryViewerComponent implements OnChanges, IHerumInterface {
|
|
|
400
514
|
declare class HerumPresentationViewerComponent implements OnInit, IHerumInterface {
|
|
401
515
|
srcPath: string;
|
|
402
516
|
resourceId: string;
|
|
403
|
-
onGradeUpdate: EventEmitter<
|
|
517
|
+
onGradeUpdate: EventEmitter<ResourceGradeUpdate>;
|
|
404
518
|
constructor();
|
|
405
519
|
ngOnInit(): void;
|
|
406
520
|
private updateGrade;
|
|
@@ -410,12 +524,15 @@ declare class HerumPresentationViewerComponent implements OnInit, IHerumInterfac
|
|
|
410
524
|
|
|
411
525
|
declare class HerumLoaderComponent {
|
|
412
526
|
private environmentConfig;
|
|
527
|
+
private ngZone;
|
|
413
528
|
loaderText: string;
|
|
414
529
|
lottieRef: ElementRef;
|
|
415
530
|
isHadracha: boolean;
|
|
416
|
-
|
|
531
|
+
loaderAnimation: AnimationItem;
|
|
532
|
+
constructor(environmentConfig: EnvironmentConfig$1, ngZone: NgZone);
|
|
417
533
|
ngOnInit(): void;
|
|
418
534
|
ngAfterViewInit(): void;
|
|
535
|
+
ngOnDestroy(): void;
|
|
419
536
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumLoaderComponent, never>;
|
|
420
537
|
static ɵcmp: i0.ɵɵComponentDeclaration<HerumLoaderComponent, "herum-loader", never, { "loaderText": { "alias": "loaderText"; "required": false; }; }, {}, never, never, false, never>;
|
|
421
538
|
}
|
|
@@ -438,9 +555,9 @@ declare class HerumQuizComponent implements OnChanges {
|
|
|
438
555
|
get previousButtonText(): "לשאלה הקודמת" | "חזרה לשאלה הראשונה";
|
|
439
556
|
get isValidQuiz(): boolean;
|
|
440
557
|
get isLastQuestion(): boolean;
|
|
441
|
-
getCorrectAnswersCount(question: Question):
|
|
558
|
+
getCorrectAnswersCount(question: Question): number;
|
|
442
559
|
_nextQuestion(isSkipped?: boolean): void;
|
|
443
|
-
_getUserAnswers(questionId: string):
|
|
560
|
+
_getUserAnswers(questionId: string): UserAnswer[];
|
|
444
561
|
_selectQuestion(questionIndex: number): void;
|
|
445
562
|
_onAnswersChange(userAnswers: UserAnswer[], questionId: string): void;
|
|
446
563
|
private updateQuizUserAnswer;
|
|
@@ -463,7 +580,9 @@ declare class QuizHeaderComponent {
|
|
|
463
580
|
private isQuestionAnswered;
|
|
464
581
|
private isUserAnsweredCorrect;
|
|
465
582
|
get questionsContainerWidth(): any;
|
|
466
|
-
get questionsState():
|
|
583
|
+
get questionsState(): {
|
|
584
|
+
index: number;
|
|
585
|
+
}[];
|
|
467
586
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuizHeaderComponent, never>;
|
|
468
587
|
static ɵcmp: i0.ɵɵComponentDeclaration<QuizHeaderComponent, "quiz-header", never, { "quizData": { "alias": "quizData"; "required": false; }; }, { "onSelectQuestion": "onSelectQuestion"; "onReturnToGradePage": "onReturnToGradePage"; }, never, never, false, never>;
|
|
469
588
|
}
|
|
@@ -472,7 +591,7 @@ declare class QuizTwoAnswersQuestionComponent {
|
|
|
472
591
|
question: Question;
|
|
473
592
|
userAnswers: UserAnswer[];
|
|
474
593
|
isSubmitted: boolean;
|
|
475
|
-
onAnswersChange: EventEmitter<
|
|
594
|
+
onAnswersChange: EventEmitter<UserAnswer[]>;
|
|
476
595
|
selectedAnswer: string;
|
|
477
596
|
_onAnswersChange(answer: Answer): void;
|
|
478
597
|
_getAnswerClass(answer: Answer): string;
|
|
@@ -483,7 +602,6 @@ declare class QuizTwoAnswersQuestionComponent {
|
|
|
483
602
|
|
|
484
603
|
declare class QuizOneAnswerQuestionComponent implements OnInit, OnChanges {
|
|
485
604
|
private changeDetectorRef;
|
|
486
|
-
private environmentConfig;
|
|
487
605
|
instructionTitle: string;
|
|
488
606
|
question: Question;
|
|
489
607
|
userAnswers: UserAnswer[];
|
|
@@ -491,7 +609,7 @@ declare class QuizOneAnswerQuestionComponent implements OnInit, OnChanges {
|
|
|
491
609
|
areAnswersRevealed: boolean;
|
|
492
610
|
areAnswersBlocked: boolean;
|
|
493
611
|
isCheckingMode: boolean;
|
|
494
|
-
onAnswersChange: EventEmitter<
|
|
612
|
+
onAnswersChange: EventEmitter<UserAnswer[]>;
|
|
495
613
|
convertedOptions: {
|
|
496
614
|
id: string;
|
|
497
615
|
name: string;
|
|
@@ -500,7 +618,7 @@ declare class QuizOneAnswerQuestionComponent implements OnInit, OnChanges {
|
|
|
500
618
|
destroySubject$: Subject<null>;
|
|
501
619
|
answerNotes: string[];
|
|
502
620
|
correctAnswer: IdentifiedEntity;
|
|
503
|
-
constructor(changeDetectorRef: ChangeDetectorRef
|
|
621
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
504
622
|
ngOnChanges(changes: SimpleChanges): void;
|
|
505
623
|
private getAnswerNotes;
|
|
506
624
|
private convertToOptions;
|
|
@@ -535,15 +653,14 @@ declare class QuizGradeSheetComponent {
|
|
|
535
653
|
resourceSubscription: ResourceSubscription;
|
|
536
654
|
quizData: QuizData;
|
|
537
655
|
get isUserPassTheQuiz(): boolean;
|
|
538
|
-
get questionCount():
|
|
539
|
-
get quizName():
|
|
656
|
+
get questionCount(): number;
|
|
657
|
+
get quizName(): string;
|
|
540
658
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuizGradeSheetComponent, never>;
|
|
541
659
|
static ɵcmp: i0.ɵɵComponentDeclaration<QuizGradeSheetComponent, "quiz-grade-sheet", never, { "resourceSubscription": { "alias": "resourceSubscription"; "required": false; }; "quizData": { "alias": "quizData"; "required": false; }; }, {}, never, never, false, never>;
|
|
542
660
|
}
|
|
543
661
|
|
|
544
662
|
declare class QuizMultiAnswerQuestionComponent {
|
|
545
663
|
private fb;
|
|
546
|
-
private environmentConfig;
|
|
547
664
|
question: Question;
|
|
548
665
|
quizData: QuizData;
|
|
549
666
|
userAnswers: UserAnswer[];
|
|
@@ -551,7 +668,7 @@ declare class QuizMultiAnswerQuestionComponent {
|
|
|
551
668
|
areAnswersRevealed: boolean;
|
|
552
669
|
areAnswersBlocked: boolean;
|
|
553
670
|
correctAnswerCount: number;
|
|
554
|
-
onAnswersChange: EventEmitter<
|
|
671
|
+
onAnswersChange: EventEmitter<UserAnswer[]>;
|
|
555
672
|
onValidationChange: EventEmitter<boolean>;
|
|
556
673
|
checkboxes: QueryList<HerumCheckboxComponent$1>;
|
|
557
674
|
isValid: boolean;
|
|
@@ -559,17 +676,17 @@ declare class QuizMultiAnswerQuestionComponent {
|
|
|
559
676
|
answersForm: FormGroup;
|
|
560
677
|
destroySubject$: Subject<null>;
|
|
561
678
|
answerTypeAttributes: string[];
|
|
562
|
-
constructor(fb: FormBuilder
|
|
679
|
+
constructor(fb: FormBuilder);
|
|
563
680
|
ngOnChanges(changes: SimpleChanges): void;
|
|
564
681
|
private setAnswerTypeAttributes;
|
|
565
682
|
_onAnswerClicked(index: number): void;
|
|
566
|
-
_isAnswerChecked(answerId: string):
|
|
683
|
+
_isAnswerChecked(answerId: string): boolean;
|
|
567
684
|
getTypeCheckbox(answerId: string): string;
|
|
568
685
|
private iAnswerCorrect;
|
|
569
686
|
_onAnswersChange(answer: Answer, isChosen: boolean): void;
|
|
570
687
|
private getFormControlValue;
|
|
571
688
|
get controlNamePrefix(): string;
|
|
572
|
-
get isBlocked():
|
|
689
|
+
get isBlocked(): boolean;
|
|
573
690
|
ngOnDestroy(): void;
|
|
574
691
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuizMultiAnswerQuestionComponent, never>;
|
|
575
692
|
static ɵcmp: i0.ɵɵComponentDeclaration<QuizMultiAnswerQuestionComponent, "quiz-multi-answer-question", never, { "question": { "alias": "question"; "required": false; }; "quizData": { "alias": "quizData"; "required": false; }; "userAnswers": { "alias": "userAnswers"; "required": false; }; "isCheckingMode": { "alias": "isCheckingMode"; "required": false; }; "areAnswersRevealed": { "alias": "areAnswersRevealed"; "required": false; }; "areAnswersBlocked": { "alias": "areAnswersBlocked"; "required": false; }; "correctAnswerCount": { "alias": "correctAnswerCount"; "required": false; }; }, { "onAnswersChange": "onAnswersChange"; "onValidationChange": "onValidationChange"; }, never, never, false, never>;
|
|
@@ -692,10 +809,11 @@ declare class AudioPlayerComponent implements OnInit, IMediaPlayer {
|
|
|
692
809
|
audioFile: File;
|
|
693
810
|
mediaSettings: MediaSettings;
|
|
694
811
|
bucketName: string;
|
|
812
|
+
theme: 'default' | 'purple';
|
|
695
813
|
periodicCurrentTime: EventEmitter<number>;
|
|
696
814
|
isLoadingChange: EventEmitter<boolean>;
|
|
697
815
|
timingUpdateByRequest: EventEmitter<any>;
|
|
698
|
-
mediaSettingsUpdate: EventEmitter<
|
|
816
|
+
mediaSettingsUpdate: EventEmitter<MediaSettings>;
|
|
699
817
|
audioCanvas: ElementRef<HTMLCanvasElement>;
|
|
700
818
|
slider: ElementRef<HTMLInputElement>;
|
|
701
819
|
audioContainer: ElementRef;
|
|
@@ -719,9 +837,12 @@ declare class AudioPlayerComponent implements OnInit, IMediaPlayer {
|
|
|
719
837
|
timeupdate: () => void;
|
|
720
838
|
};
|
|
721
839
|
destroySubject$: Subject<null>;
|
|
722
|
-
|
|
840
|
+
abortController: AbortController;
|
|
841
|
+
private mediaSettingsOnFlight;
|
|
842
|
+
constructor(visualizationService: AudioVisualizationService, globalKeyboardListener: GlobalKeyboardListenerService$1, keyPressService: KeyPressService$1, utilsService: UtilsService$1, audioVisualConfiguration: AudioVisualConfiguration);
|
|
723
843
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
724
844
|
private syncStateBasedOnMediaSettingsInput;
|
|
845
|
+
private initAudioFile;
|
|
725
846
|
private resetAudio;
|
|
726
847
|
ngOnInit(): void;
|
|
727
848
|
ngAfterViewInit(): void;
|
|
@@ -790,11 +911,14 @@ declare class AudioPlayerComponent implements OnInit, IMediaPlayer {
|
|
|
790
911
|
private updatePlaybackSpeed;
|
|
791
912
|
private emitMediaSettingsUpdate;
|
|
792
913
|
private removeAudioElementEventListeners;
|
|
914
|
+
private readonly iconMap;
|
|
915
|
+
get playIcon(): string;
|
|
916
|
+
get pauseIcon(): string;
|
|
793
917
|
get speedOptions(): number[];
|
|
794
918
|
get currentTimeLabel(): string;
|
|
795
919
|
ngOnDestroy(): void;
|
|
796
920
|
static ɵfac: i0.ɵɵFactoryDeclaration<AudioPlayerComponent, never>;
|
|
797
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AudioPlayerComponent, "herum-audio-player", never, { "showVolumeSliders": { "alias": "showVolumeSliders"; "required": false; }; "isPreview": { "alias": "isPreview"; "required": false; }; "getTimeUpdate": { "alias": "getTimeUpdate"; "required": false; }; "playbackSpeed": { "alias": "playbackSpeed"; "required": false; }; "isBlock": { "alias": "isBlock"; "required": false; }; "currentTime": { "alias": "currentTime"; "required": false; }; "isAudioPlaying": { "alias": "isAudioPlaying"; "required": false; }; "width": { "alias": "width"; "required": false; }; "id": { "alias": "id"; "required": false; }; "audioFile": { "alias": "audioFile"; "required": false; }; "mediaSettings": { "alias": "mediaSettings"; "required": false; }; "bucketName": { "alias": "bucketName"; "required": false; }; }, { "periodicCurrentTime": "periodicCurrentTime"; "isLoadingChange": "isLoadingChange"; "timingUpdateByRequest": "timingUpdateByRequest"; "mediaSettingsUpdate": "mediaSettingsUpdate"; }, never, never, false, never>;
|
|
921
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AudioPlayerComponent, "herum-audio-player", never, { "showVolumeSliders": { "alias": "showVolumeSliders"; "required": false; }; "isPreview": { "alias": "isPreview"; "required": false; }; "getTimeUpdate": { "alias": "getTimeUpdate"; "required": false; }; "playbackSpeed": { "alias": "playbackSpeed"; "required": false; }; "isBlock": { "alias": "isBlock"; "required": false; }; "currentTime": { "alias": "currentTime"; "required": false; }; "isAudioPlaying": { "alias": "isAudioPlaying"; "required": false; }; "width": { "alias": "width"; "required": false; }; "id": { "alias": "id"; "required": false; }; "audioFile": { "alias": "audioFile"; "required": false; }; "mediaSettings": { "alias": "mediaSettings"; "required": false; }; "bucketName": { "alias": "bucketName"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "periodicCurrentTime": "periodicCurrentTime"; "isLoadingChange": "isLoadingChange"; "timingUpdateByRequest": "timingUpdateByRequest"; "mediaSettingsUpdate": "mediaSettingsUpdate"; }, never, never, false, never>;
|
|
798
922
|
}
|
|
799
923
|
|
|
800
924
|
declare class HerumMiniTableComponent {
|
|
@@ -827,21 +951,19 @@ declare class HerumMiniTableComponent {
|
|
|
827
951
|
}
|
|
828
952
|
|
|
829
953
|
declare class HerumHierarchyTreeComponent implements OnChanges {
|
|
830
|
-
private environmentConfig;
|
|
831
954
|
treeNode: TreeNode;
|
|
832
955
|
showAssignmentsDetails: boolean;
|
|
833
956
|
nodeMenuItems: NodeMenuItem<SystemTreeNodeData>[];
|
|
834
|
-
onMenuItemSelected: EventEmitter<
|
|
835
|
-
onNodeSelected: EventEmitter<
|
|
836
|
-
onCreateNewChildren: EventEmitter<
|
|
957
|
+
onMenuItemSelected: EventEmitter<NodeMenuItem<SystemTreeNodeData>>;
|
|
958
|
+
onNodeSelected: EventEmitter<TreeNode>;
|
|
959
|
+
onCreateNewChildren: EventEmitter<TreeNode>;
|
|
837
960
|
topParent: TreeNode;
|
|
838
961
|
left: number;
|
|
839
962
|
top: number;
|
|
840
963
|
elementRef: ElementRef;
|
|
841
|
-
constructor(environmentConfig: EnvironmentConfig);
|
|
842
964
|
ngOnChanges(): void;
|
|
843
965
|
_onNodeSelected(node: TreeNode): void;
|
|
844
|
-
_displayNode(node: TreeNode):
|
|
966
|
+
_displayNode(node: TreeNode): boolean;
|
|
845
967
|
isLastHierarchy(treeNode: TreeNode): boolean;
|
|
846
968
|
_onCreateNewStruct(node: TreeNode): void;
|
|
847
969
|
_onMenuItemSelected(item: NodeMenuItem<SystemTreeNodeData>): void;
|
|
@@ -864,7 +986,7 @@ declare class HerumTextualVerticalTreeComponent implements OnInit {
|
|
|
864
986
|
hierarchySvg: string;
|
|
865
987
|
resourceSvg: string;
|
|
866
988
|
selectedTypeToShow: string;
|
|
867
|
-
onNodeSelected: EventEmitter<
|
|
989
|
+
onNodeSelected: EventEmitter<TreeNode>;
|
|
868
990
|
constructor();
|
|
869
991
|
ngOnInit(): void;
|
|
870
992
|
_onStructSelection(treeNode: TreeNode): void;
|
|
@@ -896,7 +1018,7 @@ declare class HerumDateTimePickerSelectComponent implements ControlValueAccessor
|
|
|
896
1018
|
heightTimePicker: string;
|
|
897
1019
|
showButtonText: boolean;
|
|
898
1020
|
buttonMode: boolean;
|
|
899
|
-
dateTimeValueChange: EventEmitter<
|
|
1021
|
+
dateTimeValueChange: EventEmitter<DateTimePicker>;
|
|
900
1022
|
onClick(event: MouseEvent): void;
|
|
901
1023
|
onResize(): void;
|
|
902
1024
|
dropContainer: ElementRef;
|
|
@@ -952,7 +1074,7 @@ declare class HerumDateTimePickerSelectComponent implements ControlValueAccessor
|
|
|
952
1074
|
declare class HerumTimeRangeSelectComponent {
|
|
953
1075
|
showSeconds: boolean;
|
|
954
1076
|
selectedTime: TimeRange;
|
|
955
|
-
timeChange: EventEmitter<
|
|
1077
|
+
timeChange: EventEmitter<TimeRange>;
|
|
956
1078
|
startLabel: string;
|
|
957
1079
|
endLabel: string;
|
|
958
1080
|
_startTimeChange(startTime: string): void;
|
|
@@ -970,7 +1092,7 @@ declare class AudioSliderComponent {
|
|
|
970
1092
|
id: string;
|
|
971
1093
|
sliderChange: EventEmitter<number>;
|
|
972
1094
|
ngAfterViewInit(): void;
|
|
973
|
-
updateSliderBackground(): void;
|
|
1095
|
+
updateSliderBackground(isFirstUpdate?: boolean): void;
|
|
974
1096
|
static ɵfac: i0.ɵɵFactoryDeclaration<AudioSliderComponent, never>;
|
|
975
1097
|
static ɵcmp: i0.ɵɵComponentDeclaration<AudioSliderComponent, "audio-slider", never, { "sliderValue": { "alias": "sliderValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "color": { "alias": "color"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "sliderChange": "sliderChange"; }, never, never, false, never>;
|
|
976
1098
|
}
|
|
@@ -985,7 +1107,7 @@ declare class QuizOpenAnswerQuestionComponent {
|
|
|
985
1107
|
isCheckingMode: boolean;
|
|
986
1108
|
selectedTextChange: TextChange;
|
|
987
1109
|
freeTextCorrectAnswerChange: EventEmitter<string>;
|
|
988
|
-
notesChange: EventEmitter<
|
|
1110
|
+
notesChange: EventEmitter<TextChange[]>;
|
|
989
1111
|
freeTextCorrectAnswerControl: FormControl<string>;
|
|
990
1112
|
notes: TextChange[];
|
|
991
1113
|
destroySubject$: Subject<null>;
|
|
@@ -1041,7 +1163,7 @@ declare class UserActionDirective {
|
|
|
1041
1163
|
private http;
|
|
1042
1164
|
private environmentConfig;
|
|
1043
1165
|
description: string;
|
|
1044
|
-
constructor(el: ElementRef, http: HttpClient, environmentConfig: EnvironmentConfig);
|
|
1166
|
+
constructor(el: ElementRef, http: HttpClient, environmentConfig: EnvironmentConfig$1);
|
|
1045
1167
|
onClick(event: any): void;
|
|
1046
1168
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserActionDirective, never>;
|
|
1047
1169
|
static ɵdir: i0.ɵɵDirectiveDeclaration<UserActionDirective, "[userAction]", never, { "description": { "alias": "userAction"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1057,7 +1179,7 @@ declare class InsuranceDialogComponent {
|
|
|
1057
1179
|
dialogRef: MatDialogRef<InsuranceDialogComponent>;
|
|
1058
1180
|
data: DialogConfig;
|
|
1059
1181
|
private environmentConfig;
|
|
1060
|
-
constructor(dialogRef: MatDialogRef<InsuranceDialogComponent>, data: DialogConfig, environmentConfig: EnvironmentConfig);
|
|
1182
|
+
constructor(dialogRef: MatDialogRef<InsuranceDialogComponent>, data: DialogConfig, environmentConfig: EnvironmentConfig$1);
|
|
1061
1183
|
_onSubmit(): void;
|
|
1062
1184
|
_onClose(): void;
|
|
1063
1185
|
get systemIdentifier(): string;
|
|
@@ -1107,7 +1229,7 @@ declare class UsersProfilePreviewComponent {
|
|
|
1107
1229
|
declare class HerumBreadcrumbsComponent {
|
|
1108
1230
|
items: IdentifiedEntity[];
|
|
1109
1231
|
itemToSet: IdentifiedEntity;
|
|
1110
|
-
itemEmitter: EventEmitter<
|
|
1232
|
+
itemEmitter: EventEmitter<IdentifiedEntity[]>;
|
|
1111
1233
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1112
1234
|
_onClick(itemIndex: number, isLastItem: boolean): void;
|
|
1113
1235
|
private handleItemInput;
|
|
@@ -1135,8 +1257,7 @@ declare class HerumButtonComponent {
|
|
|
1135
1257
|
static ɵcmp: i0.ɵɵComponentDeclaration<HerumButtonComponent, "herum-button", never, { "type": { "alias": "type"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "roundedCorners": { "alias": "roundedCorners"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1136
1258
|
}
|
|
1137
1259
|
|
|
1138
|
-
declare class HerumCheckboxComponent implements ControlValueAccessor
|
|
1139
|
-
private environmentConfig;
|
|
1260
|
+
declare class HerumCheckboxComponent implements ControlValueAccessor {
|
|
1140
1261
|
type: 'checked' | 'indeterminate' | 'error' | 'disabled' | 'unchecked';
|
|
1141
1262
|
isChecked: boolean;
|
|
1142
1263
|
isBlocked: boolean;
|
|
@@ -1146,8 +1267,6 @@ declare class HerumCheckboxComponent implements ControlValueAccessor, OnInit {
|
|
|
1146
1267
|
error: string;
|
|
1147
1268
|
checkboxClasses: string;
|
|
1148
1269
|
params: HerumTableParams;
|
|
1149
|
-
constructor(environmentConfig: EnvironmentConfig);
|
|
1150
|
-
ngOnInit(): void;
|
|
1151
1270
|
_onClick(): void;
|
|
1152
1271
|
getCheckboxClasses(): string;
|
|
1153
1272
|
onChange: (value: any) => void;
|
|
@@ -1297,6 +1416,8 @@ declare class HerumInputFieldComponent implements OnInit, ControlValueAccessor {
|
|
|
1297
1416
|
destroySubject$: Subject<null>;
|
|
1298
1417
|
constructor(ngControl: NgControl, cdr: ChangeDetectorRef);
|
|
1299
1418
|
ngOnInit(): void;
|
|
1419
|
+
ngOnChanges(changes: SimpleChange): void;
|
|
1420
|
+
private resetState;
|
|
1300
1421
|
private initInputSubject$;
|
|
1301
1422
|
private setInputsByFormControl;
|
|
1302
1423
|
clearInput(): void;
|
|
@@ -1349,8 +1470,8 @@ declare class HerumMultiSelectComponent implements ControlValueAccessor {
|
|
|
1349
1470
|
isDropDownInPositionFixed: boolean;
|
|
1350
1471
|
dropDownDirection: 'upwards' | 'downwards';
|
|
1351
1472
|
isMultiHeads: boolean;
|
|
1352
|
-
selectedOptions: EventEmitter<
|
|
1353
|
-
selectedRecursiveOptions: EventEmitter<
|
|
1473
|
+
selectedOptions: EventEmitter<IdentifiedEntity[]>;
|
|
1474
|
+
selectedRecursiveOptions: EventEmitter<RecursiveTitledOption>;
|
|
1354
1475
|
filterInput: HerumInputFieldComponent;
|
|
1355
1476
|
dropContainer: ElementRef;
|
|
1356
1477
|
filteredOptions: IdentifiedEntity[];
|
|
@@ -1374,10 +1495,10 @@ declare class HerumMultiSelectComponent implements ControlValueAccessor {
|
|
|
1374
1495
|
_select(option: IdentifiedEntity): void;
|
|
1375
1496
|
_selectRecursive(selectedRecursiveOptions: RecursiveTitledOption): void;
|
|
1376
1497
|
private removeSelectedOption;
|
|
1377
|
-
getLimitedList():
|
|
1498
|
+
getLimitedList(): IdentifiedEntity[];
|
|
1378
1499
|
_getHiddenOptions(): string;
|
|
1379
1500
|
showAll(): void;
|
|
1380
|
-
isOptionSelected(option: IdentifiedEntity):
|
|
1501
|
+
isOptionSelected(option: IdentifiedEntity): IdentifiedEntity;
|
|
1381
1502
|
toggleDropdown(): void;
|
|
1382
1503
|
closeDropdown(event: MouseEvent): void;
|
|
1383
1504
|
private resetFiltering;
|
|
@@ -1424,7 +1545,7 @@ declare class HerumOptionsListComponent {
|
|
|
1424
1545
|
selectedOptions: IdentifiedEntity[];
|
|
1425
1546
|
isContentInsideExpendablePanel: boolean;
|
|
1426
1547
|
isInternalMode: boolean;
|
|
1427
|
-
selectedOptionsEmitter: EventEmitter<
|
|
1548
|
+
selectedOptionsEmitter: EventEmitter<IdentifiedEntity>;
|
|
1428
1549
|
_onSelect(option: IdentifiedEntity): void;
|
|
1429
1550
|
isOptionSelected(option: IdentifiedEntity): boolean;
|
|
1430
1551
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumOptionsListComponent, never>;
|
|
@@ -1476,7 +1597,7 @@ declare class HerumPaginatorComponent {
|
|
|
1476
1597
|
declare class HerumPanelLinksComponent {
|
|
1477
1598
|
selectedLink: IdentifiedEntity;
|
|
1478
1599
|
links: IdentifiedEntity[];
|
|
1479
|
-
linkEmitter: EventEmitter<
|
|
1600
|
+
linkEmitter: EventEmitter<IdentifiedEntity>;
|
|
1480
1601
|
_onClick(link: IdentifiedEntity): void;
|
|
1481
1602
|
_isActiveLink(linkId: string): boolean;
|
|
1482
1603
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumPanelLinksComponent, never>;
|
|
@@ -1517,8 +1638,8 @@ declare class HerumRecursiveHierarchyOptionsListComponent {
|
|
|
1517
1638
|
options: IdentifiedEntity[];
|
|
1518
1639
|
selectedOptions: IdentifiedEntity[];
|
|
1519
1640
|
recursiveTitledOption: RecursiveTitledOption;
|
|
1520
|
-
selectedOptionsEmitter: EventEmitter<
|
|
1521
|
-
selectedRecursiveOptionsEmitter: EventEmitter<
|
|
1641
|
+
selectedOptionsEmitter: EventEmitter<IdentifiedEntity>;
|
|
1642
|
+
selectedRecursiveOptionsEmitter: EventEmitter<RecursiveTitledOption>;
|
|
1522
1643
|
_onSelect(option: RecursiveTitledOption): void;
|
|
1523
1644
|
_isOptionSelected(option: IdentifiedEntity): boolean;
|
|
1524
1645
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumRecursiveHierarchyOptionsListComponent, never>;
|
|
@@ -1541,7 +1662,7 @@ declare class HerumSelectComponent implements ControlValueAccessor {
|
|
|
1541
1662
|
dropDownDirection: 'upwards' | 'downwards';
|
|
1542
1663
|
filterPlaceholder: string;
|
|
1543
1664
|
debounceTime: number;
|
|
1544
|
-
selectedOptionEmitter: EventEmitter<
|
|
1665
|
+
selectedOptionEmitter: EventEmitter<IdentifiedEntity>;
|
|
1545
1666
|
filterTextEmitter: EventEmitter<string>;
|
|
1546
1667
|
filterInput: HerumInputFieldComponent;
|
|
1547
1668
|
dropContainer: ElementRef;
|
|
@@ -1736,7 +1857,7 @@ declare class HerumUploadFileComponent implements ControlValueAccessor {
|
|
|
1736
1857
|
ngAfterViewInit(): void;
|
|
1737
1858
|
_onPreventDefault(event: DragEvent): void;
|
|
1738
1859
|
_onDrop(event: DragEvent): void;
|
|
1739
|
-
_onUploadFile(
|
|
1860
|
+
_onUploadFile(fileList: FileList): void;
|
|
1740
1861
|
private setExistingFile;
|
|
1741
1862
|
private isFileTypeAllowed;
|
|
1742
1863
|
private directoryValidation;
|
|
@@ -1782,7 +1903,6 @@ declare class HerumVideoSelectComponent implements OnInit, ControlValueAccessor
|
|
|
1782
1903
|
}
|
|
1783
1904
|
|
|
1784
1905
|
declare class HerumRadioButtonComponent implements ControlValueAccessor {
|
|
1785
|
-
private environmentConfig;
|
|
1786
1906
|
options: IdentifiedEntity[];
|
|
1787
1907
|
isValid: boolean;
|
|
1788
1908
|
errorMsg: string;
|
|
@@ -1798,7 +1918,6 @@ declare class HerumRadioButtonComponent implements ControlValueAccessor {
|
|
|
1798
1918
|
isSelectedOptionFocused: boolean;
|
|
1799
1919
|
isOptionFocused: boolean;
|
|
1800
1920
|
focusedIdOption: string;
|
|
1801
|
-
constructor(environmentConfig: EnvironmentConfig);
|
|
1802
1921
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1803
1922
|
_onSelect(option: IdentifiedEntity): void;
|
|
1804
1923
|
getRadioButtonClasses(id: string): string;
|
|
@@ -1827,7 +1946,7 @@ declare class RoundedVerticalMenuComponent implements OnInit, OnChanges {
|
|
|
1827
1946
|
menuItems: MenuItemWithDisabled[];
|
|
1828
1947
|
currentItem?: MenuItemWithDisabled;
|
|
1829
1948
|
currentUser: User;
|
|
1830
|
-
itemSelected: EventEmitter<
|
|
1949
|
+
itemSelected: EventEmitter<MenuItem>;
|
|
1831
1950
|
ngOnInit(): void;
|
|
1832
1951
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1833
1952
|
_onSelectItem(item: MenuItemWithDisabled): void;
|
|
@@ -1839,14 +1958,14 @@ declare class RoundedVerticalMenuComponent implements OnInit, OnChanges {
|
|
|
1839
1958
|
declare class TrackTextChangesNotesComponent {
|
|
1840
1959
|
textChanges: TextChange[];
|
|
1841
1960
|
enableDeleteNote: boolean;
|
|
1842
|
-
deleteNoteChange: EventEmitter<
|
|
1843
|
-
hoverNote: EventEmitter<
|
|
1961
|
+
deleteNoteChange: EventEmitter<TextChange[]>;
|
|
1962
|
+
hoverNote: EventEmitter<TextChange>;
|
|
1844
1963
|
noteTypesToDisplay: string[];
|
|
1845
1964
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1846
1965
|
private setNoteTypesToDisplay;
|
|
1847
1966
|
_onDeleteTextChange(textChangeToDelete: TextChange): void;
|
|
1848
1967
|
_onHoverNote(hoveredTextChange: TextChange): void;
|
|
1849
|
-
_trackNote(index: number, textChange: TextChange):
|
|
1968
|
+
_trackNote(index: number, textChange: TextChange): string | number;
|
|
1850
1969
|
get deleteSvgString(): string;
|
|
1851
1970
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrackTextChangesNotesComponent, never>;
|
|
1852
1971
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrackTextChangesNotesComponent, "track-text-changes-notes", never, { "textChanges": { "alias": "textChanges"; "required": false; }; "enableDeleteNote": { "alias": "enableDeleteNote"; "required": false; }; }, { "deleteNoteChange": "deleteNoteChange"; "hoverNote": "hoverNote"; }, never, never, false, never>;
|
|
@@ -1858,14 +1977,14 @@ declare class UserProfileImageComponent {
|
|
|
1858
1977
|
user: User | UserPreview;
|
|
1859
1978
|
isLoadingUser: boolean;
|
|
1860
1979
|
isUserClickAble: boolean;
|
|
1861
|
-
userClicked: EventEmitter<
|
|
1980
|
+
userClicked: EventEmitter<UserPreview | User>;
|
|
1862
1981
|
imagePath: string;
|
|
1863
1982
|
isLoadingImage: boolean;
|
|
1864
1983
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1865
1984
|
_onUserClicked(): void;
|
|
1866
1985
|
_useFallbackProfileImage(event: Event): void;
|
|
1867
1986
|
_loadComplete(): void;
|
|
1868
|
-
get userProfileImage():
|
|
1987
|
+
get userProfileImage(): string;
|
|
1869
1988
|
get fallbackProfileImage(): string;
|
|
1870
1989
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileImageComponent, never>;
|
|
1871
1990
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileImageComponent, "user-profile-image", never, { "imageSize": { "alias": "imageSize"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "user": { "alias": "user"; "required": false; }; "isLoadingUser": { "alias": "isLoadingUser"; "required": false; }; "isUserClickAble": { "alias": "isUserClickAble"; "required": false; }; }, { "userClicked": "userClicked"; }, never, ["*"], false, never>;
|
|
@@ -1928,7 +2047,7 @@ declare class EllipsisPipe implements PipeTransform {
|
|
|
1928
2047
|
}
|
|
1929
2048
|
|
|
1930
2049
|
declare class UserIdentifiedEntitiesToBackendModelsPipe implements PipeTransform {
|
|
1931
|
-
transform(user: User):
|
|
2050
|
+
transform(user: User): User;
|
|
1932
2051
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserIdentifiedEntitiesToBackendModelsPipe, never>;
|
|
1933
2052
|
static ɵpipe: i0.ɵɵPipeDeclaration<UserIdentifiedEntitiesToBackendModelsPipe, "userIdentifiedEntitiesToBackendModels", false>;
|
|
1934
2053
|
}
|
|
@@ -2012,7 +2131,7 @@ declare class HerumAutocompleteComponent implements ControlValueAccessor {
|
|
|
2012
2131
|
selectedOption: DisplayIdentifiedEntity | null;
|
|
2013
2132
|
isBlurred: boolean;
|
|
2014
2133
|
filterTextEmitter: EventEmitter<string>;
|
|
2015
|
-
selectedOptionEmitter: EventEmitter<
|
|
2134
|
+
selectedOptionEmitter: EventEmitter<DisplayIdentifiedEntity>;
|
|
2016
2135
|
filterInput: HerumInputFieldComponent$1;
|
|
2017
2136
|
containerRef: ElementRef<HTMLDivElement>;
|
|
2018
2137
|
onWindowClick(event: MouseEvent): void;
|
|
@@ -2048,9 +2167,9 @@ declare class HerumClosedListMultiSelectComponent {
|
|
|
2048
2167
|
size: 'fit' | 'default' | 'big' | 'responsive';
|
|
2049
2168
|
dropDownDirection: 'upwards' | 'downwards';
|
|
2050
2169
|
selectedClosedListOptionalValues: IdentifiedEntity[];
|
|
2051
|
-
selectedClosedListValueEmitter: EventEmitter<
|
|
2170
|
+
selectedClosedListValueEmitter: EventEmitter<IdentifiedEntity[]>;
|
|
2052
2171
|
closedListValues: IdentifiedEntity[];
|
|
2053
|
-
constructor(commonGraphqlRequestsService: CommonGraphqlRequestsService);
|
|
2172
|
+
constructor(commonGraphqlRequestsService: CommonGraphqlRequestsService$1);
|
|
2054
2173
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2055
2174
|
private setClosedListValues;
|
|
2056
2175
|
_selectedOptionsEmitter(selectedClosedListValue: IdentifiedEntity[]): void;
|
|
@@ -2079,11 +2198,11 @@ declare class HerumClosedListSelectComponent implements ControlValueAccessor {
|
|
|
2079
2198
|
isLoadingInput: boolean;
|
|
2080
2199
|
dropDownDirection: 'upwards' | 'downwards';
|
|
2081
2200
|
filterPlaceholder: string;
|
|
2082
|
-
selectedClosedListValueEmitter: EventEmitter<
|
|
2201
|
+
selectedClosedListValueEmitter: EventEmitter<IdentifiedEntity>;
|
|
2083
2202
|
filterTextEmitter: EventEmitter<string>;
|
|
2084
2203
|
closedListValues: IdentifiedEntity[];
|
|
2085
2204
|
selectedClosedListOptionalValue: IdentifiedEntity;
|
|
2086
|
-
constructor(commonGraphqlRequestsService: CommonGraphqlRequestsService);
|
|
2205
|
+
constructor(commonGraphqlRequestsService: CommonGraphqlRequestsService$1);
|
|
2087
2206
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2088
2207
|
private setClosedListValues;
|
|
2089
2208
|
private handleClosedListValueId;
|
|
@@ -2181,12 +2300,13 @@ declare class HerumDropZoneComponent {
|
|
|
2181
2300
|
};
|
|
2182
2301
|
isValidUpload: boolean;
|
|
2183
2302
|
isSupportedFileType: boolean;
|
|
2303
|
+
isImagesSizeValid: boolean;
|
|
2184
2304
|
parsedAllowedFileTypes: string;
|
|
2185
2305
|
errorMessages: {
|
|
2186
2306
|
condition: () => boolean;
|
|
2187
2307
|
message: string;
|
|
2188
2308
|
}[];
|
|
2189
|
-
constructor(environmentConfig: EnvironmentConfig);
|
|
2309
|
+
constructor(environmentConfig: EnvironmentConfig$1);
|
|
2190
2310
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2191
2311
|
_onRemoveFile(index: number, event: MouseEvent): void;
|
|
2192
2312
|
_onRemoveImage(): void;
|
|
@@ -2197,6 +2317,7 @@ declare class HerumDropZoneComponent {
|
|
|
2197
2317
|
_onClickFileInput(): void;
|
|
2198
2318
|
private uploadFiles;
|
|
2199
2319
|
private supportedFilesValidation;
|
|
2320
|
+
private imagesSizeValidation;
|
|
2200
2321
|
private filesTypeValidation;
|
|
2201
2322
|
private isExceededFilesLength;
|
|
2202
2323
|
getIconPath(file: File): string;
|
|
@@ -2220,11 +2341,11 @@ declare class HerumFilesViewerComponent {
|
|
|
2220
2341
|
private environmentConfig;
|
|
2221
2342
|
fileData: FileData;
|
|
2222
2343
|
showDeleteFileButton: boolean;
|
|
2223
|
-
downloadFile: EventEmitter<
|
|
2224
|
-
deleteFile: EventEmitter<
|
|
2344
|
+
downloadFile: EventEmitter<FileData>;
|
|
2345
|
+
deleteFile: EventEmitter<FileData>;
|
|
2225
2346
|
srcPath: string;
|
|
2226
2347
|
fileType: string;
|
|
2227
|
-
constructor(environmentConfig: EnvironmentConfig);
|
|
2348
|
+
constructor(environmentConfig: EnvironmentConfig$1);
|
|
2228
2349
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2229
2350
|
_onDeleteFile(): void;
|
|
2230
2351
|
_downloadFile(): void;
|
|
@@ -2242,10 +2363,10 @@ declare class HerumHierarchyTreeNodeComponent {
|
|
|
2242
2363
|
showAssignmentsDetails: boolean;
|
|
2243
2364
|
nodeMenuItems: NodeMenuItem<SystemTreeNodeData>[];
|
|
2244
2365
|
onNodeSelected: EventEmitter<boolean>;
|
|
2245
|
-
onMenuItemSelected: EventEmitter<
|
|
2366
|
+
onMenuItemSelected: EventEmitter<NodeMenuItem<SystemTreeNodeData>>;
|
|
2246
2367
|
onExpand: EventEmitter<boolean>;
|
|
2247
2368
|
isExpand: boolean;
|
|
2248
|
-
constructor(changeDetectorRef: ChangeDetectorRef, environmentConfig: EnvironmentConfig);
|
|
2369
|
+
constructor(changeDetectorRef: ChangeDetectorRef, environmentConfig: EnvironmentConfig$1);
|
|
2249
2370
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2250
2371
|
_isTruncatedTitleElement(element: HTMLElement): boolean;
|
|
2251
2372
|
_onExpand(): void;
|
|
@@ -2276,7 +2397,7 @@ declare class HerumMultiProgressBarComponent implements OnInit {
|
|
|
2276
2397
|
}[];
|
|
2277
2398
|
constructor();
|
|
2278
2399
|
ngOnInit(): void;
|
|
2279
|
-
getBorderRadius(sectionIndex: number, progressBarIndex: number): "none" | "
|
|
2400
|
+
getBorderRadius(sectionIndex: number, progressBarIndex: number): "none" | "left" | "right" | "both";
|
|
2280
2401
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumMultiProgressBarComponent, never>;
|
|
2281
2402
|
static ɵcmp: i0.ɵɵComponentDeclaration<HerumMultiProgressBarComponent, "herum-multi-progress-bar", never, { "progressBarsSections": { "alias": "progressBarsSections"; "required": false; }; }, {}, never, never, false, never>;
|
|
2282
2403
|
}
|
|
@@ -2346,7 +2467,7 @@ declare class HerumUserProfileComponent {
|
|
|
2346
2467
|
titleSize: 'big' | 'medium' | 'small';
|
|
2347
2468
|
imageSize: 'image-default-size' | 'image-small-size';
|
|
2348
2469
|
get userFullName(): string;
|
|
2349
|
-
get fullHierarchyName():
|
|
2470
|
+
get fullHierarchyName(): string;
|
|
2350
2471
|
get assignmentStateDisplayName(): "" | "שיבוץ זמני" | "אכ\"א" | "אג\"ת";
|
|
2351
2472
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumUserProfileComponent, never>;
|
|
2352
2473
|
static ɵcmp: i0.ɵɵComponentDeclaration<HerumUserProfileComponent, "herum-user-profile", never, { "userData": { "alias": "userData"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "titleSize": { "alias": "titleSize"; "required": false; }; "imageSize": { "alias": "imageSize"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -2397,7 +2518,7 @@ declare class ErrorMessageDialogComponent implements OnInit {
|
|
|
2397
2518
|
data: any;
|
|
2398
2519
|
private environmentConfig;
|
|
2399
2520
|
errorImagePath: string;
|
|
2400
|
-
constructor(dialogRef: MatDialogRef<ErrorMessageDialogComponent>, data: any, environmentConfig: EnvironmentConfig);
|
|
2521
|
+
constructor(dialogRef: MatDialogRef<ErrorMessageDialogComponent>, data: any, environmentConfig: EnvironmentConfig$1);
|
|
2401
2522
|
ngOnInit(): void;
|
|
2402
2523
|
_onSubmit(): void;
|
|
2403
2524
|
_onClose(): void;
|
|
@@ -2535,8 +2656,6 @@ declare class HerumTableComponent implements OnChanges, AfterViewInit {
|
|
|
2535
2656
|
rowData: (unknown & BaseRowData)[];
|
|
2536
2657
|
columnDefs: ColDef[];
|
|
2537
2658
|
selectedRowsIds: string[];
|
|
2538
|
-
tableFixedHeight: string;
|
|
2539
|
-
tableMaxHeight: number;
|
|
2540
2659
|
noResults: number;
|
|
2541
2660
|
overlayNoRowsTemplate: string;
|
|
2542
2661
|
rowsSelectionType: 'multiple' | 'single';
|
|
@@ -2550,7 +2669,7 @@ declare class HerumTableComponent implements OnChanges, AfterViewInit {
|
|
|
2550
2669
|
cellMouseOver: EventEmitter<any>;
|
|
2551
2670
|
onPaginationChanged: EventEmitter<any>;
|
|
2552
2671
|
tableContainer: ElementRef;
|
|
2553
|
-
onResize(): void;
|
|
2672
|
+
onResize(event: any): void;
|
|
2554
2673
|
windowWidth: number;
|
|
2555
2674
|
context: any;
|
|
2556
2675
|
childComponentsReferences: HoveredHerumRowTable[];
|
|
@@ -2599,11 +2718,10 @@ declare class HerumTableComponent implements OnChanges, AfterViewInit {
|
|
|
2599
2718
|
private setRowheightStyleProperty;
|
|
2600
2719
|
private getMaxRowHeightFromColumns;
|
|
2601
2720
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumTableComponent, never>;
|
|
2602
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HerumTableComponent, "herum-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "columnDefs": { "alias": "columnDefs"; "required": false; }; "selectedRowsIds": { "alias": "selectedRowsIds"; "required": false; }; "
|
|
2721
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HerumTableComponent, "herum-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "columnDefs": { "alias": "columnDefs"; "required": false; }; "selectedRowsIds": { "alias": "selectedRowsIds"; "required": false; }; "noResults": { "alias": "noResults"; "required": false; }; "overlayNoRowsTemplate": { "alias": "overlayNoRowsTemplate"; "required": false; }; "rowsSelectionType": { "alias": "rowsSelectionType"; "required": false; }; "usePagination": { "alias": "usePagination"; "required": false; }; "suppressRowClickSelection": { "alias": "suppressRowClickSelection"; "required": false; }; "showExportToExcel": { "alias": "showExportToExcel"; "required": false; }; }, { "onCheckedRow": "onCheckedRow"; "onUncheckedRow": "onUncheckedRow"; "selectedRowByChild": "selectedRowByChild"; "cellValueChangeByChild": "cellValueChangeByChild"; "cellMouseOver": "cellMouseOver"; "onPaginationChanged": "onPaginationChanged"; }, never, never, false, never>;
|
|
2603
2722
|
}
|
|
2604
2723
|
|
|
2605
2724
|
declare class HerumAgGridFilterComponent implements AgFilterComponent, OnInit {
|
|
2606
|
-
private envConfig;
|
|
2607
2725
|
private static readonly rowHeight;
|
|
2608
2726
|
private model;
|
|
2609
2727
|
private uniqueCheck;
|
|
@@ -2619,7 +2737,6 @@ declare class HerumAgGridFilterComponent implements AgFilterComponent, OnInit {
|
|
|
2619
2737
|
onFilterValuesChanged$: Observable<string[]>;
|
|
2620
2738
|
destroySubject$: Subject<null>;
|
|
2621
2739
|
selectedFilter: FormControl;
|
|
2622
|
-
constructor(envConfig: EnvironmentConfig);
|
|
2623
2740
|
ngOnInit(): void;
|
|
2624
2741
|
agInit(params: IFilterParams): void;
|
|
2625
2742
|
private handleChekedValuesWhenfiltering;
|
|
@@ -2645,9 +2762,21 @@ declare class HerumAgGridFilterComponent implements AgFilterComponent, OnInit {
|
|
|
2645
2762
|
static ɵcmp: i0.ɵɵComponentDeclaration<HerumAgGridFilterComponent, "app-herum-ag-grid-filter", never, {}, {}, never, never, false, never>;
|
|
2646
2763
|
}
|
|
2647
2764
|
|
|
2765
|
+
declare class TextWithIconCell implements ICellRendererAngularComp {
|
|
2766
|
+
params: HerumTableParams;
|
|
2767
|
+
text: string;
|
|
2768
|
+
iconSrc: string;
|
|
2769
|
+
textStyle: {};
|
|
2770
|
+
agInit(params: HerumTableParams): void;
|
|
2771
|
+
refresh(params: HerumTableParams): boolean;
|
|
2772
|
+
private setParams;
|
|
2773
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextWithIconCell, never>;
|
|
2774
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextWithIconCell, "app-text-with-icon-cell", never, {}, {}, never, never, false, never>;
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2648
2777
|
declare class TableModule {
|
|
2649
2778
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
2650
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof CheckboxCellComponent, typeof ChipsCellComponent, typeof CopyableCellComponent, typeof DeleteRowComponent, typeof EditRowComponent, typeof InputCellComponent, typeof RowActionButtonsComponent, typeof SwitchCellComponent, typeof HerumTableComponent, typeof HerumAgGridFilterComponent], [typeof i2.CommonModule, typeof i4.AtomsModule, typeof i40.FormsModule, typeof i40.ReactiveFormsModule, typeof i46.MatTooltipModule, typeof
|
|
2779
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof CheckboxCellComponent, typeof ChipsCellComponent, typeof CopyableCellComponent, typeof DeleteRowComponent, typeof EditRowComponent, typeof InputCellComponent, typeof RowActionButtonsComponent, typeof SwitchCellComponent, typeof HerumTableComponent, typeof HerumAgGridFilterComponent, typeof TextWithIconCell], [typeof i2.CommonModule, typeof i4.AtomsModule, typeof i40.FormsModule, typeof i40.ReactiveFormsModule, typeof i46.MatTooltipModule, typeof i16.AgGridModule, typeof i4$1.PipesModule, typeof i42.ClipboardModule], [typeof CheckboxCellComponent, typeof ChipsCellComponent, typeof CopyableCellComponent, typeof DeleteRowComponent, typeof EditRowComponent, typeof InputCellComponent, typeof RowActionButtonsComponent, typeof SwitchCellComponent, typeof HerumTableComponent, typeof HerumAgGridFilterComponent, typeof TextWithIconCell, typeof i16.AgGridModule]>;
|
|
2651
2780
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
2652
2781
|
}
|
|
2653
2782
|
|
|
@@ -2657,8 +2786,6 @@ declare class HerumSharedModule {
|
|
|
2657
2786
|
static ɵinj: i0.ɵɵInjectorDeclaration<HerumSharedModule>;
|
|
2658
2787
|
}
|
|
2659
2788
|
|
|
2660
|
-
declare const openClose: _angular_animations.AnimationTriggerMetadata;
|
|
2661
|
-
|
|
2662
2789
|
declare class HerumFormControl extends FormControl {
|
|
2663
2790
|
errorMessages: {
|
|
2664
2791
|
[key: string]: string;
|
|
@@ -2674,182 +2801,6 @@ declare class HerumFormControl extends FormControl {
|
|
|
2674
2801
|
private setCurrentErrorMessage;
|
|
2675
2802
|
}
|
|
2676
2803
|
|
|
2677
|
-
declare class FetchedMessageService {
|
|
2678
|
-
private http;
|
|
2679
|
-
private dialog;
|
|
2680
|
-
private environmentConfig;
|
|
2681
|
-
private recipient;
|
|
2682
|
-
private messageKey;
|
|
2683
|
-
constructor(http: HttpClient, dialog: MatDialog, environmentConfig: EnvironmentConfig);
|
|
2684
|
-
handleFetchedMessage(recipient: Object, messageKey: string, condition?: boolean): void;
|
|
2685
|
-
private setMessageKey;
|
|
2686
|
-
private setRecipient;
|
|
2687
|
-
fetchedMessageData(): Observable<Object>;
|
|
2688
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FetchedMessageService, never>;
|
|
2689
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FetchedMessageService>;
|
|
2690
|
-
}
|
|
2691
|
-
|
|
2692
|
-
declare class ErrorsHandlerService {
|
|
2693
|
-
private dialog;
|
|
2694
|
-
private http;
|
|
2695
|
-
private utilsService;
|
|
2696
|
-
private environmentConfig;
|
|
2697
|
-
isErrorPopupCurrentlyOpened: boolean;
|
|
2698
|
-
failedReportUploadProgressRequests: HttpRequest<any>[];
|
|
2699
|
-
failedDependentsRequestsContext: FailedDependentsRequestsContext;
|
|
2700
|
-
dependentRequestId$: Subject<string>;
|
|
2701
|
-
reportUploadProgressRequest$: Subject<string>;
|
|
2702
|
-
commonDependentsErrorToast$: Subject<CommonDependentsToast>;
|
|
2703
|
-
errorToast$: Subject<ToastHttpResponseDependencies>;
|
|
2704
|
-
constructor(dialog: MatDialog, http: HttpClient, utilsService: UtilsService, environmentConfig: EnvironmentConfig);
|
|
2705
|
-
handleError(errorStatus: number, errorData?: any): void;
|
|
2706
|
-
setFailedReportUploadProgressRequests(failedReportUploadProgressRequest: HttpRequest<any>): void;
|
|
2707
|
-
private handleUnauthorizedError;
|
|
2708
|
-
private handleConflictError;
|
|
2709
|
-
private handleForbiddenError;
|
|
2710
|
-
private handleTimeoutError;
|
|
2711
|
-
private handleInternalServerError;
|
|
2712
|
-
private handleDependentRequestError;
|
|
2713
|
-
private handleReportUploadProgressRequestError;
|
|
2714
|
-
private isErrorToastNeeded;
|
|
2715
|
-
private handleErrorToast;
|
|
2716
|
-
setChainedFailedObservableFunctions(dependentId: string, error: HttpErrorResponse, failedComplexObservableArrowFunctions: ComplexObservableArrowFunctions, initialValue?: any): void;
|
|
2717
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsHandlerService, never>;
|
|
2718
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorsHandlerService>;
|
|
2719
|
-
}
|
|
2720
|
-
|
|
2721
|
-
declare class DependentsService {
|
|
2722
|
-
private errorsHandlerService;
|
|
2723
|
-
dependentMetadata: DependentMetadata;
|
|
2724
|
-
constructor(errorsHandlerService: ErrorsHandlerService);
|
|
2725
|
-
chainObservableFunctions(complexFunctions: ComplexObservableArrowFunctions, initialValue?: any): any;
|
|
2726
|
-
private setInitialObservable;
|
|
2727
|
-
private handleInitialComplexFunction;
|
|
2728
|
-
private handleInitialFunction;
|
|
2729
|
-
private chainObservables;
|
|
2730
|
-
private handleCurrentChainedComplexObservable;
|
|
2731
|
-
handleCurrentChainedObservable(complexFunctions: ComplexObservableArrowFunctions, currentFunction: ObservableArrowFunction, result: any, functionsIndex: number): any;
|
|
2732
|
-
private calculateNumberOfObservableFunctions;
|
|
2733
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DependentsService, never>;
|
|
2734
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DependentsService>;
|
|
2735
|
-
}
|
|
2736
|
-
|
|
2737
|
-
declare class ToastsService {
|
|
2738
|
-
private errorsHandlerService;
|
|
2739
|
-
private utilsService;
|
|
2740
|
-
private environmentConfig;
|
|
2741
|
-
toast$: BehaviorSubject<Toast>;
|
|
2742
|
-
toastId: number;
|
|
2743
|
-
toastsTemplates: {
|
|
2744
|
-
[key: string]: ToastTemplate;
|
|
2745
|
-
};
|
|
2746
|
-
constructor(errorsHandlerService: ErrorsHandlerService, utilsService: UtilsService, environmentConfig: EnvironmentConfig);
|
|
2747
|
-
createToastBasedOnHttpResponse(toastHttpResponseDependencies: ToastHttpResponseDependencies): void;
|
|
2748
|
-
findErrorMessageByStatusCode(statusCode: string, mongoMethodDisplayedName: string): string;
|
|
2749
|
-
showErrorToast(toastContextKey: string): void;
|
|
2750
|
-
showSuccessToast(toastContextKey: string): void;
|
|
2751
|
-
showInformationToast(toastContextKey: string): void;
|
|
2752
|
-
showOnDemandToast(toastContextKey: string, status: ToastStatus, toastStorageKey?: string): void;
|
|
2753
|
-
private hasToastAlreadyShownAndShouldShowOnce;
|
|
2754
|
-
showToast(title: string, content: string, status: ToastStatus): void;
|
|
2755
|
-
private setToastStatus;
|
|
2756
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToastsService, never>;
|
|
2757
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ToastsService>;
|
|
2758
|
-
}
|
|
2759
|
-
|
|
2760
|
-
declare class UploadsManagerService {
|
|
2761
|
-
private errorsHandlerService;
|
|
2762
|
-
private dependentsService;
|
|
2763
|
-
private http;
|
|
2764
|
-
private toastsService;
|
|
2765
|
-
uploadsManagerTitle$: BehaviorSubject<string>;
|
|
2766
|
-
uploadsProgressMetadata$: BehaviorSubject<UploadProgressMetadata[]>;
|
|
2767
|
-
constructor(errorsHandlerService: ErrorsHandlerService, dependentsService: DependentsService, http: HttpClient, toastsService: ToastsService);
|
|
2768
|
-
private setSubscriptions;
|
|
2769
|
-
private updateUploadProgressStatus;
|
|
2770
|
-
retryFailedUploads(): Observable<any>[];
|
|
2771
|
-
retryFailedUpload(uploadProgressId: string): Observable<any>;
|
|
2772
|
-
private handleFailedDependentRequest;
|
|
2773
|
-
private handleFailedReportUploadRequest;
|
|
2774
|
-
addOrUpdateUploadProgressMetadata(uploadProgressMetadata: UploadProgressMetadata): void;
|
|
2775
|
-
getUploadProgressById(uploadProgressId: string): UploadProgressMetadata;
|
|
2776
|
-
createNewToastBasedOnHttpRequest(commonDependentsToast: CommonDependentsToast): void;
|
|
2777
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UploadsManagerService, never>;
|
|
2778
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UploadsManagerService>;
|
|
2779
|
-
}
|
|
2780
|
-
|
|
2781
|
-
declare class HerumToastsComponent {
|
|
2782
|
-
private toastsService;
|
|
2783
|
-
private changeDetectorRef;
|
|
2784
|
-
toastElements: QueryList<ElementRef>;
|
|
2785
|
-
toasts: Toast[];
|
|
2786
|
-
minimumOpacity: number;
|
|
2787
|
-
transformDuration: number;
|
|
2788
|
-
leavingDuration: number;
|
|
2789
|
-
gap: number;
|
|
2790
|
-
constructor(toastsService: ToastsService, changeDetectorRef: ChangeDetectorRef);
|
|
2791
|
-
ngOnInit(): void;
|
|
2792
|
-
handleNewToast(toast: Toast): void;
|
|
2793
|
-
private reduceToastHeights;
|
|
2794
|
-
_onHideToast(currentToast: Toast, lowToasts: boolean): void;
|
|
2795
|
-
private removeToast;
|
|
2796
|
-
private setToastLinearOpacity;
|
|
2797
|
-
_toastStatusIcon(toastStatus: ToastStatus): string;
|
|
2798
|
-
get successStatus(): any;
|
|
2799
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HerumToastsComponent, never>;
|
|
2800
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HerumToastsComponent, "herum-toasts", never, {}, {}, never, never, false, never>;
|
|
2801
|
-
}
|
|
2802
|
-
|
|
2803
|
-
declare class HerumUploadsManagerComponent {
|
|
2804
|
-
private uploadsManagerService;
|
|
2805
|
-
destroySubject$: Subject<null>;
|
|
2806
|
-
isContainerOpen: boolean;
|
|
2807
|
-
loadingStatus: UploadProgressStatus;
|
|
2808
|
-
errorStatus: UploadProgressStatus;
|
|
2809
|
-
successStatus: UploadProgressStatus;
|
|
2810
|
-
uploadsProgressMetadata: UploadProgressMetadata[];
|
|
2811
|
-
averageProgressSum: number;
|
|
2812
|
-
hasUploadProgressFinished: boolean;
|
|
2813
|
-
numberOfFailedLoaders: number;
|
|
2814
|
-
successProgressBarColor: string;
|
|
2815
|
-
progressBarColor: string;
|
|
2816
|
-
showConfirmationNativeMessage(event: any): void;
|
|
2817
|
-
constructor(uploadsManagerService: UploadsManagerService);
|
|
2818
|
-
ngOnInit(): void;
|
|
2819
|
-
private setSuccessProgressBarColor;
|
|
2820
|
-
private uploadsProgressMetadataSubscription;
|
|
2821
|
-
_onRetryFailedUploads(): void;
|
|
2822
|
-
_onRetryFailedUpload(uploadProgressId: string): void;
|
|
2823
|
-
_onClose(): void;
|
|
2824
|
-
_onToggleUploadsContainer(): void;
|
|
2825
|
-
_isTruncatedTitleElement(element: HTMLElement): boolean;
|
|
2826
|
-
_getUploadProgressDescription(uploadProgressMetadata: UploadProgressMetadata): string;
|
|
2827
|
-
_isUploadProgressStatusError(uploadProgressStatus: UploadProgressStatus): boolean;
|
|
2828
|
-
_getFileIcon(uploadProgressType: UploadProgressType): string;
|
|
2829
|
-
_getUploadStatusIcon(uploadProgressType: UploadProgressType): string;
|
|
2830
|
-
_trackByFn(index: number, uploadProgressMetadata: UploadProgressMetadata): any;
|
|
2831
|
-
get containerTitle$(): Observable<string>;
|
|
2832
|
-
calculateAverageProgressSum(uploadsProgressMetadata: UploadProgressMetadata[]): number;
|
|
2833
|
-
calculateHasUploadProgressFinished(uploadsProgressMetadata: UploadProgressMetadata[]): boolean;
|
|
2834
|
-
calculateNumberOfFailedLoaders(uploadsProgressMetadata: UploadProgressMetadata[]): number;
|
|
2835
|
-
calculateProgressBarColor(uploadsProgressMetadata: UploadProgressMetadata[]): string;
|
|
2836
|
-
ngOnDestroy(): void;
|
|
2837
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HerumUploadsManagerComponent, never>;
|
|
2838
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HerumUploadsManagerComponent, "herum-uploads-manager", never, {}, {}, never, never, false, never>;
|
|
2839
|
-
}
|
|
2840
|
-
|
|
2841
|
-
declare class MongoMoleculesModule {
|
|
2842
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MongoMoleculesModule, never>;
|
|
2843
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MongoMoleculesModule, [typeof HerumToastsComponent, typeof HerumUploadsManagerComponent], [typeof i2.CommonModule, typeof i4$1.PipesModule, typeof i4.AtomsModule], [typeof HerumToastsComponent, typeof HerumUploadsManagerComponent]>;
|
|
2844
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MongoMoleculesModule>;
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
declare class MongoModule {
|
|
2848
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MongoModule, never>;
|
|
2849
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MongoModule, never, [typeof i2.CommonModule, typeof MongoMoleculesModule], [typeof MongoMoleculesModule]>;
|
|
2850
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MongoModule>;
|
|
2851
|
-
}
|
|
2852
|
-
|
|
2853
2804
|
declare namespace AudioConfigurationConstants {
|
|
2854
2805
|
const maxValue = 100;
|
|
2855
2806
|
const defaultSecondsSkip = 15;
|
|
@@ -2912,5 +2863,1434 @@ declare const deleteButtonStyle: {
|
|
|
2912
2863
|
cursor: string;
|
|
2913
2864
|
};
|
|
2914
2865
|
|
|
2915
|
-
|
|
2916
|
-
|
|
2866
|
+
declare const NestedConditionSigniture = "filters";
|
|
2867
|
+
declare class GraphQLService {
|
|
2868
|
+
private httpClient;
|
|
2869
|
+
private environmentConfig;
|
|
2870
|
+
constructor(httpClient: HttpClient, environmentConfig: EnvironmentConfig$1);
|
|
2871
|
+
executeQuery(gqlQuery: GraphQlQuery, isListQuery?: boolean, isOffsetPagination?: boolean): Observable<any>;
|
|
2872
|
+
getFreeTextCondition(freeText: string, orConditionKeys: string[]): {
|
|
2873
|
+
and: any[];
|
|
2874
|
+
};
|
|
2875
|
+
generateFilterStringDynamically(ids: string[], key: string, type: ('String' | 'Number')): {
|
|
2876
|
+
filters: any[];
|
|
2877
|
+
variables: GQLVariable[];
|
|
2878
|
+
};
|
|
2879
|
+
convertToResolverNameFormat(mongoCollectionName: string): string;
|
|
2880
|
+
generateQuery(resolverName: string, formatExample: any, condition?: GraphQLFilter, first?: number, after?: string, offsetPaging?: GraphQlOffsetPaging, variablesStringForQuerySigniture?: string, order?: GraphQLOrder, conditionPaths?: {
|
|
2881
|
+
[path: string]: GraphQLFilter;
|
|
2882
|
+
}, orderPaths?: {
|
|
2883
|
+
[path: string]: GraphQLOrder;
|
|
2884
|
+
}, offsetPagingPaths?: {
|
|
2885
|
+
[path: string]: GraphQlOffsetPaging;
|
|
2886
|
+
}, isListQuery?: boolean, isOffsetPagination?: boolean, useTotalCount?: boolean): string;
|
|
2887
|
+
private generateConditionString;
|
|
2888
|
+
private generatePagingString;
|
|
2889
|
+
private generateOffsetPagingString;
|
|
2890
|
+
private getKeysString;
|
|
2891
|
+
private generateVariablesObjectForBody;
|
|
2892
|
+
private generateVariablesStringForQuerySigniture;
|
|
2893
|
+
generateOrderString<T extends {}>(order: T): string;
|
|
2894
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GraphQLService, never>;
|
|
2895
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GraphQLService>;
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
declare class AuthService {
|
|
2899
|
+
private http;
|
|
2900
|
+
private router;
|
|
2901
|
+
private gql;
|
|
2902
|
+
private environmentConfig;
|
|
2903
|
+
sessionId$: BehaviorSubject<string>;
|
|
2904
|
+
isTeacher$: Subject<boolean>;
|
|
2905
|
+
constructor(http: HttpClient, router: Router, gql: GraphQLService, environmentConfig: EnvironmentConfig$1);
|
|
2906
|
+
tryLogin(signInFormData: SignInFormData): Observable<AuthenticationResponse>;
|
|
2907
|
+
getUserIdentificationQuestions(personalId: string): Observable<Object>;
|
|
2908
|
+
signUp(signUpData: SignUpFormData): Observable<AuthenticationResponse>;
|
|
2909
|
+
logout(): void;
|
|
2910
|
+
clearSession(): void;
|
|
2911
|
+
isValidSessionId(sessionId: string): Observable<boolean>;
|
|
2912
|
+
isTeacher(): Observable<boolean>;
|
|
2913
|
+
setIdentificationQuestions(password: string, questions: {
|
|
2914
|
+
question: string;
|
|
2915
|
+
answer: string;
|
|
2916
|
+
}[]): Observable<Object>;
|
|
2917
|
+
resetPassword(securityQuestions: SecurityQuestion[], personalId: string, newPassword: string): Observable<Object>;
|
|
2918
|
+
securityCheck(securityQuestions: SecurityQuestion[], personalId: string): Observable<Object>;
|
|
2919
|
+
handleNewSessionId(authenticationResponse: AuthenticationResponse): AuthenticationResponse;
|
|
2920
|
+
private updateSessionId;
|
|
2921
|
+
private generateStringForAuthenticationHash;
|
|
2922
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
2923
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
declare class CommonGraphqlRequestsService {
|
|
2927
|
+
private gql;
|
|
2928
|
+
private environmentConfig;
|
|
2929
|
+
constructor(gql: GraphQLService, environmentConfig: EnvironmentConfig$1);
|
|
2930
|
+
getGroupsByIds(ids: string[], formatExample: Group): Observable<Group[]>;
|
|
2931
|
+
getClosedLists(names?: string[]): Observable<ClosedList[] | ClosedList>;
|
|
2932
|
+
getUsersByIds(usersIds: string[], formatExample: User): Observable<User[]>;
|
|
2933
|
+
getPermissionsTemplates(): Observable<any>;
|
|
2934
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonGraphqlRequestsService, never>;
|
|
2935
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommonGraphqlRequestsService>;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
declare const innerUniqListItemKey = "_id";
|
|
2939
|
+
declare const emptyValueFlagForCreationUniqListItem = "null";
|
|
2940
|
+
declare class DbActionsInnerIdManagerService {
|
|
2941
|
+
determineIfInnerIdIsNeeded(value: any[]): void;
|
|
2942
|
+
deleteInnerIdFieldIfExist(itemToAttach: {
|
|
2943
|
+
[key: string]: any;
|
|
2944
|
+
}, itemValue: {
|
|
2945
|
+
[key: string]: any;
|
|
2946
|
+
}): void;
|
|
2947
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbActionsInnerIdManagerService, never>;
|
|
2948
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DbActionsInnerIdManagerService>;
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
declare class GlobalErrorHandler implements ErrorHandler {
|
|
2952
|
+
private http;
|
|
2953
|
+
private environmentConfig;
|
|
2954
|
+
private lastErrorKey;
|
|
2955
|
+
private lastErrorAt;
|
|
2956
|
+
constructor(http: HttpClient, environmentConfig: EnvironmentConfig$1);
|
|
2957
|
+
handleError(error: Error): void;
|
|
2958
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalErrorHandler, never>;
|
|
2959
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalErrorHandler>;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
declare class GlobalKeyboardListenerService {
|
|
2963
|
+
private environmentConfig;
|
|
2964
|
+
globalKeyboardEvents$: Subject<GlobalKeyboardEvent>;
|
|
2965
|
+
connection: WebSocket;
|
|
2966
|
+
constructor(environmentConfig: EnvironmentConfig$1);
|
|
2967
|
+
initGlobalSocket(): void;
|
|
2968
|
+
get globalKeysToChromeKeysNames(): {
|
|
2969
|
+
'NUMPAD 0': string;
|
|
2970
|
+
'NUMPAD 1': string;
|
|
2971
|
+
'NUMPAD 2': string;
|
|
2972
|
+
'NUMPAD 3': string;
|
|
2973
|
+
'NUMPAD 4': string;
|
|
2974
|
+
'NUMPAD 5': string;
|
|
2975
|
+
'NUMPAD 6': string;
|
|
2976
|
+
'NUMPAD 7': string;
|
|
2977
|
+
'NUMPAD 8': string;
|
|
2978
|
+
'NUMPAD 9': string;
|
|
2979
|
+
};
|
|
2980
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalKeyboardListenerService, never>;
|
|
2981
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalKeyboardListenerService>;
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
declare class KeyPressService {
|
|
2985
|
+
shouldPreventMacroKeyPress(event: KeyboardEvent, macroKeysPress: number[]): boolean;
|
|
2986
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeyPressService, never>;
|
|
2987
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KeyPressService>;
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
declare class LoaderManagerService {
|
|
2991
|
+
loadersIds: string[];
|
|
2992
|
+
loadingDescription: string;
|
|
2993
|
+
addLoader(loaderId: string, description?: string): void;
|
|
2994
|
+
changeDescription(description: string): void;
|
|
2995
|
+
clear(): void;
|
|
2996
|
+
removeLoaderId(loaderIdToRemove: string): void;
|
|
2997
|
+
get isFullScreenLoading(): boolean;
|
|
2998
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderManagerService, never>;
|
|
2999
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoaderManagerService>;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
declare const freeTextAnswerField: string;
|
|
3003
|
+
type studentInnerAuthorizationSubscription = {
|
|
3004
|
+
user?: {
|
|
3005
|
+
id: string;
|
|
3006
|
+
};
|
|
3007
|
+
innerAuthorizations?: BackendMicroResourceAuthorization[];
|
|
3008
|
+
};
|
|
3009
|
+
declare class MicroResourcesService {
|
|
3010
|
+
private http;
|
|
3011
|
+
private environmentConfig;
|
|
3012
|
+
constructor(http: HttpClient, environmentConfig: EnvironmentConfig$1);
|
|
3013
|
+
getAssignmentUpdateTimings(selectedResource: Partial<Resource & LessonResourceSubscription>, openingTime: Date, closingTime: Date): {
|
|
3014
|
+
propertyPath: string;
|
|
3015
|
+
collectionItemType: string;
|
|
3016
|
+
openingTime: Date;
|
|
3017
|
+
closingTime: Date;
|
|
3018
|
+
authorizationType: MicroResourceAuthorizationType;
|
|
3019
|
+
}[];
|
|
3020
|
+
getPublishGradeTimings(selectedResource: Partial<Resource & LessonResourceSubscription>, openingTime?: Date, closingTime?: Date): {
|
|
3021
|
+
authorizationType: MicroResourceAuthorizationType;
|
|
3022
|
+
closingTime: Date;
|
|
3023
|
+
collectionItemType: string;
|
|
3024
|
+
openingTime: Date;
|
|
3025
|
+
propertyPath: string;
|
|
3026
|
+
}[];
|
|
3027
|
+
updateUserMicroResourceAuthorizationLocally(currentLesson: Lesson, studentId: string, microResourceAuthorizations: MicroResourceAuthorizationBase[], selectedResource: ResourcePreview): void;
|
|
3028
|
+
updateUserMicroResourceVisibility(microResource: MicroResourceFrontData, resource: Resource & LessonResourceSubscription, lesson: Lesson, user: LessonStudentSubscription): rxjs.Observable<UsersLessonPermissionsDalResponse>;
|
|
3029
|
+
updateUserMicroResourceAuthorization(studentId: string, lesson: Lesson, resource: ResourcePreview, authorizations: MicroResourceAuthorizationBase[]): rxjs.Observable<UsersLessonPermissionsDalResponse>;
|
|
3030
|
+
resolvePropertyPath(path: string | ((question: (Question | UserQuestionData)[]) => string), questions: (Question | UserQuestionData)[]): string;
|
|
3031
|
+
isTimePass(date: string | number | Date): boolean;
|
|
3032
|
+
isAuthenticated(microResource: MicroResourceAuthorizationBase): boolean;
|
|
3033
|
+
isQuestionAssignment(resourceSubscription: ResourceSubscription, questionType: string): boolean;
|
|
3034
|
+
isQuestionPendingForCheck(resourceSubscription: ResourceSubscription, questionData: UserQuestionData): boolean;
|
|
3035
|
+
buildQuestionPropertyPath(id: string, field: string): string;
|
|
3036
|
+
isPublishGradeAuthenticated(innerAuthorizations: BackendMicroResourceAuthorization[], resource: Resource): boolean;
|
|
3037
|
+
hasFillAuthorizationClosingTimePassed(innerAuthorizations: BackendMicroResourceAuthorization[], resource: Resource): boolean;
|
|
3038
|
+
getAuthorization(innerAuthorizations: BackendMicroResourceAuthorization[], defaultAuthorizationObject: BackendMicroResourceAuthorization, microResourceAuthorizationType: MicroResourceAuthorizationType, resource: Resource): BackendMicroResourceAuthorization;
|
|
3039
|
+
createMultiResourceDefaultAuthorizations<T extends studentInnerAuthorizationSubscription>(students: T[], pageId: string, resourcesIdsToDefaultAuthorizations: {
|
|
3040
|
+
[key: string]: BackendMicroResourceAuthorization[];
|
|
3041
|
+
}, authorizations?: BackendMicroResourceAuthorization[]): rxjs.Observable<Object[]>;
|
|
3042
|
+
copyResourceStudentsAuthorizations<T extends studentInnerAuthorizationSubscription>(students: T[], pageId: string, authSourceResourceId: string, authTargetResourceId: string, useDefaultGradePermissions: boolean): rxjs.Observable<Object[]>;
|
|
3043
|
+
removeResourceAuthorizations(page: HadrachaPage, resourcesIdsToRemove: string[]): rxjs.Observable<Object[]>;
|
|
3044
|
+
getGradeDisplayText(gradeData: QuizGradeData): string;
|
|
3045
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroResourcesService, never>;
|
|
3046
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MicroResourcesService>;
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
declare class UtilsService {
|
|
3050
|
+
private environmentConfig;
|
|
3051
|
+
private http;
|
|
3052
|
+
constructor(environmentConfig: EnvironmentConfig$1, http: HttpClient);
|
|
3053
|
+
getModelInfo(model: string): Observable<any>;
|
|
3054
|
+
getUrlFromFileData(fileData: Partial<FileData>): string;
|
|
3055
|
+
fetchFiles(fileId: string, resourceType: string, bucket?: string): Promise<Response>;
|
|
3056
|
+
initAudioFile(fileId: string, bucketName?: string, signal?: AbortSignal): Promise<File>;
|
|
3057
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
|
|
3058
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
|
|
3059
|
+
}
|
|
3060
|
+
|
|
3061
|
+
declare class ResourceDataBuilderService {
|
|
3062
|
+
private utilsService;
|
|
3063
|
+
constructor(utilsService: UtilsService);
|
|
3064
|
+
buildFilePath(resource: Resource): string;
|
|
3065
|
+
buildDirectoryPath(resource: Resource): string;
|
|
3066
|
+
private getVersionPathParameter;
|
|
3067
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDataBuilderService, never>;
|
|
3068
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDataBuilderService>;
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
declare class SystemStylingService {
|
|
3072
|
+
private document;
|
|
3073
|
+
private rendererFactory;
|
|
3074
|
+
private renderer;
|
|
3075
|
+
constructor(document: Document, rendererFactory: RendererFactory2);
|
|
3076
|
+
setHerumStyling(): void;
|
|
3077
|
+
setCollegeStyling(): void;
|
|
3078
|
+
setHadrachaStyling(): void;
|
|
3079
|
+
private setCssVariable;
|
|
3080
|
+
private setFavicon;
|
|
3081
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SystemStylingService, never>;
|
|
3082
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SystemStylingService>;
|
|
3083
|
+
}
|
|
3084
|
+
declare function systemStylingFactory(systemName: string, systemStylingService: SystemStylingService): () => void;
|
|
3085
|
+
|
|
3086
|
+
declare class ToastsService {
|
|
3087
|
+
toast$: BehaviorSubject<Toast>;
|
|
3088
|
+
toastId: number;
|
|
3089
|
+
toastsTemplates: {
|
|
3090
|
+
[key: string]: ToastTemplate;
|
|
3091
|
+
};
|
|
3092
|
+
findErrorMessageByStatusCode(statusCode: string, mongoMethodDisplayedName: string): string;
|
|
3093
|
+
showErrorToast(toastContextKey: string): void;
|
|
3094
|
+
showSuccessToast(toastContextKey: string): void;
|
|
3095
|
+
showInformationToast(toastContextKey: string): void;
|
|
3096
|
+
showOnDemandToast(toastContextKey: string, status: ToastStatus, toastStorageKey?: string): void;
|
|
3097
|
+
private hasToastAlreadyShownAndShouldShowOnce;
|
|
3098
|
+
showToast(title: string, content: string, status: ToastStatus): void;
|
|
3099
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastsService, never>;
|
|
3100
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToastsService>;
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
declare class TrackTextChangesService {
|
|
3104
|
+
private systemContextTrackTextChangesService;
|
|
3105
|
+
constructor(systemContextTrackTextChangesService: ISystemTrackTextChangesService);
|
|
3106
|
+
getStyle(): TextChangeStyle;
|
|
3107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrackTextChangesService, never>;
|
|
3108
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TrackTextChangesService>;
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
declare const SYSTEM_IDENTIFIER: InjectionToken<SystemIdentifier>;
|
|
3112
|
+
declare const SYSTEM_USER_SERVICE: InjectionToken<ISystemUserService>;
|
|
3113
|
+
declare const SYSTEM_TRACK_TEXT_CHANGES_SERVICE: InjectionToken<ISystemUserService>;
|
|
3114
|
+
declare const SYSTEM_AUDIO_VISUAL_CONFIGURATION: InjectionToken<AudioVisualConfiguration>;
|
|
3115
|
+
|
|
3116
|
+
declare const assignmentMetadata: {
|
|
3117
|
+
state: number;
|
|
3118
|
+
name: string;
|
|
3119
|
+
};
|
|
3120
|
+
|
|
3121
|
+
declare const checkboxTypes: {
|
|
3122
|
+
unchecked: string;
|
|
3123
|
+
indeterminate: string;
|
|
3124
|
+
checked: string;
|
|
3125
|
+
error: string;
|
|
3126
|
+
disabled: string;
|
|
3127
|
+
};
|
|
3128
|
+
|
|
3129
|
+
declare const collectionFormKeys: {
|
|
3130
|
+
files: string;
|
|
3131
|
+
name: string;
|
|
3132
|
+
description: string;
|
|
3133
|
+
subjects: string;
|
|
3134
|
+
isPublic: string;
|
|
3135
|
+
groupsPermissions: string;
|
|
3136
|
+
groupsViewPermissions: string;
|
|
3137
|
+
tags: string;
|
|
3138
|
+
};
|
|
3139
|
+
declare const collectionFormValues: {
|
|
3140
|
+
public: string;
|
|
3141
|
+
private: string;
|
|
3142
|
+
};
|
|
3143
|
+
declare const resourceKeys: {
|
|
3144
|
+
previewImage: string;
|
|
3145
|
+
minimumGradeToPass: string;
|
|
3146
|
+
isIncludedInAverageGrade: string;
|
|
3147
|
+
};
|
|
3148
|
+
declare const resourceFormKeys: {
|
|
3149
|
+
title: string;
|
|
3150
|
+
resourceType: string;
|
|
3151
|
+
description: string;
|
|
3152
|
+
files: string;
|
|
3153
|
+
positionInCollection: string;
|
|
3154
|
+
exercise: string;
|
|
3155
|
+
};
|
|
3156
|
+
declare const generalKeys: {
|
|
3157
|
+
id: string;
|
|
3158
|
+
subjects: string;
|
|
3159
|
+
newFileRequest: string;
|
|
3160
|
+
file: string;
|
|
3161
|
+
additionalFiles: string;
|
|
3162
|
+
resourceFile: string;
|
|
3163
|
+
ids: string;
|
|
3164
|
+
resourceType: string;
|
|
3165
|
+
groups: string;
|
|
3166
|
+
quiz: string;
|
|
3167
|
+
request: string;
|
|
3168
|
+
newValue: string;
|
|
3169
|
+
storyPrefix: string;
|
|
3170
|
+
};
|
|
3171
|
+
declare const types: {
|
|
3172
|
+
string: string;
|
|
3173
|
+
object: string;
|
|
3174
|
+
number: string;
|
|
3175
|
+
boolean: string;
|
|
3176
|
+
function: string;
|
|
3177
|
+
};
|
|
3178
|
+
declare const inputs: {
|
|
3179
|
+
resource: string;
|
|
3180
|
+
collection: string;
|
|
3181
|
+
resourceSubscriptions: string;
|
|
3182
|
+
};
|
|
3183
|
+
declare const readynessDisplayName: {
|
|
3184
|
+
high: string;
|
|
3185
|
+
medium: string;
|
|
3186
|
+
low: string;
|
|
3187
|
+
};
|
|
3188
|
+
declare const signUpFormKeys: {
|
|
3189
|
+
readonly firstName: "firstName";
|
|
3190
|
+
readonly lastName: "lastName";
|
|
3191
|
+
readonly personalId: "personalId";
|
|
3192
|
+
readonly militaryId: "militaryId";
|
|
3193
|
+
readonly groups: "groups";
|
|
3194
|
+
readonly referringUser: "referringUser";
|
|
3195
|
+
readonly militaryStatus: "militaryStatus";
|
|
3196
|
+
readonly gender: "gender";
|
|
3197
|
+
readonly civilProfession: "civilProfession";
|
|
3198
|
+
readonly sections: "sections";
|
|
3199
|
+
readonly sagahs: "sagahs";
|
|
3200
|
+
readonly subjectAreas: "subjectAreas";
|
|
3201
|
+
readonly phoneNumber: "phoneNumber";
|
|
3202
|
+
readonly militaryEmail: "militaryEmail";
|
|
3203
|
+
};
|
|
3204
|
+
declare const signUpFormFields: Record<keyof typeof signUpFormKeys, SignUpField>;
|
|
3205
|
+
declare const formsErrorMessages: {
|
|
3206
|
+
requiredField: string;
|
|
3207
|
+
personalIdIsUsed: string;
|
|
3208
|
+
militaryIdIsUsed: string;
|
|
3209
|
+
notValidPersonalId: string;
|
|
3210
|
+
notValidMilitarylId: string;
|
|
3211
|
+
};
|
|
3212
|
+
declare const formStatuses: {
|
|
3213
|
+
valid: string;
|
|
3214
|
+
invalid: string;
|
|
3215
|
+
disabled: string;
|
|
3216
|
+
pending: string;
|
|
3217
|
+
};
|
|
3218
|
+
declare const defaultPlaceholder: string;
|
|
3219
|
+
declare const attributes: {
|
|
3220
|
+
preventMacroKeysPressEvent: string;
|
|
3221
|
+
contenteditable: string;
|
|
3222
|
+
};
|
|
3223
|
+
declare const keyboardAsciiCodes: {
|
|
3224
|
+
[key: string]: number;
|
|
3225
|
+
};
|
|
3226
|
+
declare const sideBarSizeButtonId: string;
|
|
3227
|
+
declare const previewImageKey: string;
|
|
3228
|
+
declare const defaultGrade: number;
|
|
3229
|
+
declare const anySubFileTypeWildCard: string;
|
|
3230
|
+
declare const resourceColumnPrefix = "resource_";
|
|
3231
|
+
|
|
3232
|
+
declare const defaultUserId = "1";
|
|
3233
|
+
|
|
3234
|
+
declare const datePlaceHolder: string;
|
|
3235
|
+
declare const timePlaceHolder: string;
|
|
3236
|
+
declare const timeWithoutSecondsPlaceHolder: string;
|
|
3237
|
+
declare const dateTimePlaceHolder: string;
|
|
3238
|
+
declare const dateTimeWithoutSecondsPlaceHolder: string;
|
|
3239
|
+
declare const dateRangePlaceHolder: string;
|
|
3240
|
+
declare const dateRangeTimeRangePlaceHolder: string;
|
|
3241
|
+
declare const dateRangeTimeRangeWithoutSecondsPlaceHolder: string;
|
|
3242
|
+
|
|
3243
|
+
declare const resourceIdPlaceholder = "$resourceId";
|
|
3244
|
+
declare const defaultCloseTime: Date;
|
|
3245
|
+
declare const defaultOpenTime: Date;
|
|
3246
|
+
declare const defaultAuthorizationObject: {
|
|
3247
|
+
view(): BackendMicroResourceAuthorization;
|
|
3248
|
+
edit(): BackendMicroResourceAuthorization;
|
|
3249
|
+
fill(): BackendMicroResourceAuthorization;
|
|
3250
|
+
resourceGrade(): BackendMicroResourceAuthorization;
|
|
3251
|
+
questionGrade(): BackendMicroResourceAuthorization;
|
|
3252
|
+
areAnswersCorrect(): BackendMicroResourceAuthorization;
|
|
3253
|
+
answerNotes(): BackendMicroResourceAuthorization;
|
|
3254
|
+
isCorrect(): BackendMicroResourceAuthorization;
|
|
3255
|
+
};
|
|
3256
|
+
declare function getQuizDefaultAuthorizations(): BackendMicroResourceAuthorization[];
|
|
3257
|
+
declare function getResourceDefaultAuthorizations(): BackendMicroResourceAuthorization[];
|
|
3258
|
+
declare function getPublishAuthorization(): BackendMicroResourceAuthorization[];
|
|
3259
|
+
declare function getMediaDefaultAuthorizations(): BackendMicroResourceAuthorization[];
|
|
3260
|
+
declare function getPropertyPathsOfPublishAuthorization(): string[];
|
|
3261
|
+
declare const viewPermissionLabel: string;
|
|
3262
|
+
|
|
3263
|
+
declare const defaultTrackTextChangesStyle: {
|
|
3264
|
+
ins: string;
|
|
3265
|
+
del: string;
|
|
3266
|
+
commentMarker: string;
|
|
3267
|
+
tooltip: string;
|
|
3268
|
+
tooltipText: string;
|
|
3269
|
+
tooltipButtonsContainer: string;
|
|
3270
|
+
};
|
|
3271
|
+
|
|
3272
|
+
declare const dialogsSubmitActionButtons: {
|
|
3273
|
+
save: string;
|
|
3274
|
+
approve: string;
|
|
3275
|
+
delete: string;
|
|
3276
|
+
add: string;
|
|
3277
|
+
submit: string;
|
|
3278
|
+
pageNavigation: string;
|
|
3279
|
+
understand: string;
|
|
3280
|
+
};
|
|
3281
|
+
declare const dialogsCloseActionButtons: {
|
|
3282
|
+
pageNavigation: string;
|
|
3283
|
+
};
|
|
3284
|
+
declare const dialogsTitles: {
|
|
3285
|
+
serverError: string;
|
|
3286
|
+
userError: string;
|
|
3287
|
+
cancelAttachedCollections: string;
|
|
3288
|
+
attachCollections: string;
|
|
3289
|
+
deleteResources: string;
|
|
3290
|
+
deleteResource: string;
|
|
3291
|
+
deleteCollegeResource: string;
|
|
3292
|
+
deleteCollection: string;
|
|
3293
|
+
addResource: string;
|
|
3294
|
+
addUser: string;
|
|
3295
|
+
editResource: string;
|
|
3296
|
+
updateResources: string;
|
|
3297
|
+
editUser: string;
|
|
3298
|
+
editTeacher: string;
|
|
3299
|
+
editStudent: string;
|
|
3300
|
+
editCollectionPriority: string;
|
|
3301
|
+
editCollection: string;
|
|
3302
|
+
editCollections: string;
|
|
3303
|
+
deleteGroups: string;
|
|
3304
|
+
timeoutError: string;
|
|
3305
|
+
pageNavigation: string;
|
|
3306
|
+
quizSubmission: string;
|
|
3307
|
+
notAuthorized: string;
|
|
3308
|
+
addExistingUser: string;
|
|
3309
|
+
addedStructWithExistingUsers: string;
|
|
3310
|
+
resetQuiz: string;
|
|
3311
|
+
removeUserFromPage: string;
|
|
3312
|
+
removeUserFromStruct: string;
|
|
3313
|
+
studentStartedLesson: string;
|
|
3314
|
+
realTimeError: string;
|
|
3315
|
+
realTimeUnavailable: string;
|
|
3316
|
+
};
|
|
3317
|
+
declare const dialogsDescriptions: {
|
|
3318
|
+
defaultInsurance: string;
|
|
3319
|
+
unsavedChanges: string;
|
|
3320
|
+
serverError: string;
|
|
3321
|
+
timeoutError: string;
|
|
3322
|
+
criticalServerError: string;
|
|
3323
|
+
forbiddenServerError: string;
|
|
3324
|
+
cancelAttachedCollections: string;
|
|
3325
|
+
attachCollections: string;
|
|
3326
|
+
editCollectionPriority: string;
|
|
3327
|
+
deleteResources: string;
|
|
3328
|
+
deleteResource: string;
|
|
3329
|
+
deleteCollegeResource: string;
|
|
3330
|
+
updateMicroResourcesOpeningTime: string;
|
|
3331
|
+
editUser: string;
|
|
3332
|
+
deleteGroups: string;
|
|
3333
|
+
deleteCollection: string;
|
|
3334
|
+
deleteLastResource: string;
|
|
3335
|
+
addExistingUser: string;
|
|
3336
|
+
addedStructWithExistingUsers: string;
|
|
3337
|
+
quizPartialSubmission: string;
|
|
3338
|
+
notAuthorized: string;
|
|
3339
|
+
resetQuiz: string;
|
|
3340
|
+
removeUserFromPage: string;
|
|
3341
|
+
removeUserFromStruct: string;
|
|
3342
|
+
studentStartedLesson: string;
|
|
3343
|
+
realTimeError: string;
|
|
3344
|
+
realTimeUnavailable: string;
|
|
3345
|
+
};
|
|
3346
|
+
declare const dialogsNotes: {
|
|
3347
|
+
resetQuiz: string;
|
|
3348
|
+
};
|
|
3349
|
+
declare const insuranceDialogPageNavigationData: DialogConfig;
|
|
3350
|
+
|
|
3351
|
+
declare const errorHeadersToSet: {
|
|
3352
|
+
[key: string]: string;
|
|
3353
|
+
};
|
|
3354
|
+
declare const globalErrorHandlingHeader: string;
|
|
3355
|
+
|
|
3356
|
+
declare const videoPreviewSupportedMimes: string[];
|
|
3357
|
+
declare const audioPreviewSupportedMimes: string[];
|
|
3358
|
+
declare const audioAndVideoPreviewSupportedMimes: string[];
|
|
3359
|
+
|
|
3360
|
+
declare const filesSuffixes: {
|
|
3361
|
+
[key: string]: string[];
|
|
3362
|
+
};
|
|
3363
|
+
declare const resourcesFilesSuffixes: {
|
|
3364
|
+
Story: string;
|
|
3365
|
+
Pdf: string;
|
|
3366
|
+
Video: string;
|
|
3367
|
+
Presentation: string;
|
|
3368
|
+
};
|
|
3369
|
+
declare const videoPreviewSupportedSuffixes: string[];
|
|
3370
|
+
declare const audioPreviewSupportedSuffixes: string[];
|
|
3371
|
+
declare const audioAndVideoPreviewSupportedSuffixes: string[];
|
|
3372
|
+
|
|
3373
|
+
declare const timestampError: string;
|
|
3374
|
+
declare const formatError: string;
|
|
3375
|
+
declare const minDateError: string;
|
|
3376
|
+
declare const startEndDateError: string;
|
|
3377
|
+
|
|
3378
|
+
declare const activeDragPath: string;
|
|
3379
|
+
declare const dragPath: string;
|
|
3380
|
+
declare const maleAvatarPath: string;
|
|
3381
|
+
declare const femaleAvatarPath: string;
|
|
3382
|
+
|
|
3383
|
+
declare const initialMediaSettings: MediaSettings;
|
|
3384
|
+
|
|
3385
|
+
declare const keyboardKeys: {
|
|
3386
|
+
space: number;
|
|
3387
|
+
right: number;
|
|
3388
|
+
left: number;
|
|
3389
|
+
enter: number;
|
|
3390
|
+
};
|
|
3391
|
+
|
|
3392
|
+
declare const radioButtonTypes: {
|
|
3393
|
+
disabled: string;
|
|
3394
|
+
error: string;
|
|
3395
|
+
checked: string;
|
|
3396
|
+
completed: string;
|
|
3397
|
+
};
|
|
3398
|
+
|
|
3399
|
+
declare const regexExpressions: {
|
|
3400
|
+
digitsOnly: RegExp;
|
|
3401
|
+
templateInterpolation: RegExp;
|
|
3402
|
+
sevenDigitsLength: RegExp;
|
|
3403
|
+
militaryIdLength: RegExp;
|
|
3404
|
+
curlyBraces: RegExp;
|
|
3405
|
+
squareBrackets: RegExp;
|
|
3406
|
+
chromeVersion: RegExp;
|
|
3407
|
+
fullDateTime: RegExp;
|
|
3408
|
+
fullRangeDateTime: RegExp;
|
|
3409
|
+
rangeDateTimeWithoutSeconds: RegExp;
|
|
3410
|
+
dateTimeWithoutSeconds: RegExp;
|
|
3411
|
+
chromeVersionRegex: RegExp;
|
|
3412
|
+
removeSpacesRegex: RegExp;
|
|
3413
|
+
phoneNumberTenDigits: RegExp;
|
|
3414
|
+
};
|
|
3415
|
+
|
|
3416
|
+
declare const resourceFileTypes: {
|
|
3417
|
+
directory: string;
|
|
3418
|
+
};
|
|
3419
|
+
|
|
3420
|
+
declare const resourceTypes: {
|
|
3421
|
+
story: string;
|
|
3422
|
+
pdf: string;
|
|
3423
|
+
quiz: string;
|
|
3424
|
+
exercise: string;
|
|
3425
|
+
video: string;
|
|
3426
|
+
learningUnit: string;
|
|
3427
|
+
text: string;
|
|
3428
|
+
};
|
|
3429
|
+
|
|
3430
|
+
declare const routes: {
|
|
3431
|
+
login: string;
|
|
3432
|
+
catalog: string;
|
|
3433
|
+
};
|
|
3434
|
+
|
|
3435
|
+
declare const herumClosedListMultiSelectType = "herum-closed-list-multi-select";
|
|
3436
|
+
declare const signUpFormFieldsData: ({
|
|
3437
|
+
name: "personalId";
|
|
3438
|
+
label: string;
|
|
3439
|
+
type: string;
|
|
3440
|
+
typeInput: string;
|
|
3441
|
+
placeholder: string;
|
|
3442
|
+
errorMsg?: undefined;
|
|
3443
|
+
options?: undefined;
|
|
3444
|
+
size?: undefined;
|
|
3445
|
+
dropDownDirection?: undefined;
|
|
3446
|
+
closedListName?: undefined;
|
|
3447
|
+
disabled?: undefined;
|
|
3448
|
+
} | {
|
|
3449
|
+
name: "militaryId";
|
|
3450
|
+
label: string;
|
|
3451
|
+
type: string;
|
|
3452
|
+
typeInput: string;
|
|
3453
|
+
placeholder: string;
|
|
3454
|
+
errorMsg?: undefined;
|
|
3455
|
+
options?: undefined;
|
|
3456
|
+
size?: undefined;
|
|
3457
|
+
dropDownDirection?: undefined;
|
|
3458
|
+
closedListName?: undefined;
|
|
3459
|
+
disabled?: undefined;
|
|
3460
|
+
} | {
|
|
3461
|
+
name: "firstName";
|
|
3462
|
+
label: string;
|
|
3463
|
+
type: string;
|
|
3464
|
+
typeInput: string;
|
|
3465
|
+
errorMsg: string;
|
|
3466
|
+
placeholder: string;
|
|
3467
|
+
options?: undefined;
|
|
3468
|
+
size?: undefined;
|
|
3469
|
+
dropDownDirection?: undefined;
|
|
3470
|
+
closedListName?: undefined;
|
|
3471
|
+
disabled?: undefined;
|
|
3472
|
+
} | {
|
|
3473
|
+
name: "lastName";
|
|
3474
|
+
label: string;
|
|
3475
|
+
type: string;
|
|
3476
|
+
typeInput: string;
|
|
3477
|
+
errorMsg: string;
|
|
3478
|
+
placeholder: string;
|
|
3479
|
+
options?: undefined;
|
|
3480
|
+
size?: undefined;
|
|
3481
|
+
dropDownDirection?: undefined;
|
|
3482
|
+
closedListName?: undefined;
|
|
3483
|
+
disabled?: undefined;
|
|
3484
|
+
} | {
|
|
3485
|
+
name: "militaryStatus";
|
|
3486
|
+
label: string;
|
|
3487
|
+
type: string;
|
|
3488
|
+
options: {
|
|
3489
|
+
name: string;
|
|
3490
|
+
id: string;
|
|
3491
|
+
}[];
|
|
3492
|
+
typeInput?: undefined;
|
|
3493
|
+
placeholder?: undefined;
|
|
3494
|
+
errorMsg?: undefined;
|
|
3495
|
+
size?: undefined;
|
|
3496
|
+
dropDownDirection?: undefined;
|
|
3497
|
+
closedListName?: undefined;
|
|
3498
|
+
disabled?: undefined;
|
|
3499
|
+
} | {
|
|
3500
|
+
name: "civilProfession";
|
|
3501
|
+
label: string;
|
|
3502
|
+
type: string;
|
|
3503
|
+
size: string;
|
|
3504
|
+
dropDownDirection: string;
|
|
3505
|
+
typeInput?: undefined;
|
|
3506
|
+
placeholder?: undefined;
|
|
3507
|
+
errorMsg?: undefined;
|
|
3508
|
+
options?: undefined;
|
|
3509
|
+
closedListName?: undefined;
|
|
3510
|
+
disabled?: undefined;
|
|
3511
|
+
} | {
|
|
3512
|
+
name: "sections";
|
|
3513
|
+
label: string;
|
|
3514
|
+
type: string;
|
|
3515
|
+
closedListName: string;
|
|
3516
|
+
size: string;
|
|
3517
|
+
dropDownDirection: string;
|
|
3518
|
+
typeInput?: undefined;
|
|
3519
|
+
placeholder?: undefined;
|
|
3520
|
+
errorMsg?: undefined;
|
|
3521
|
+
options?: undefined;
|
|
3522
|
+
disabled?: undefined;
|
|
3523
|
+
} | {
|
|
3524
|
+
name: "sagahs";
|
|
3525
|
+
label: string;
|
|
3526
|
+
type: string;
|
|
3527
|
+
closedListName: string;
|
|
3528
|
+
size: string;
|
|
3529
|
+
dropDownDirection: string;
|
|
3530
|
+
typeInput?: undefined;
|
|
3531
|
+
placeholder?: undefined;
|
|
3532
|
+
errorMsg?: undefined;
|
|
3533
|
+
options?: undefined;
|
|
3534
|
+
disabled?: undefined;
|
|
3535
|
+
} | {
|
|
3536
|
+
name: "subjectAreas";
|
|
3537
|
+
label: string;
|
|
3538
|
+
type: string;
|
|
3539
|
+
closedListName: string;
|
|
3540
|
+
size: string;
|
|
3541
|
+
dropDownDirection: string;
|
|
3542
|
+
typeInput?: undefined;
|
|
3543
|
+
placeholder?: undefined;
|
|
3544
|
+
errorMsg?: undefined;
|
|
3545
|
+
options?: undefined;
|
|
3546
|
+
disabled?: undefined;
|
|
3547
|
+
} | {
|
|
3548
|
+
name: "groups";
|
|
3549
|
+
label: string;
|
|
3550
|
+
type: string;
|
|
3551
|
+
options: any[];
|
|
3552
|
+
size: string;
|
|
3553
|
+
dropDownDirection: string;
|
|
3554
|
+
typeInput?: undefined;
|
|
3555
|
+
placeholder?: undefined;
|
|
3556
|
+
errorMsg?: undefined;
|
|
3557
|
+
closedListName?: undefined;
|
|
3558
|
+
disabled?: undefined;
|
|
3559
|
+
} | {
|
|
3560
|
+
name: "referringUser";
|
|
3561
|
+
label: string;
|
|
3562
|
+
type: string;
|
|
3563
|
+
typeInput: string;
|
|
3564
|
+
errorMsg: string;
|
|
3565
|
+
disabled: boolean;
|
|
3566
|
+
placeholder?: undefined;
|
|
3567
|
+
options?: undefined;
|
|
3568
|
+
size?: undefined;
|
|
3569
|
+
dropDownDirection?: undefined;
|
|
3570
|
+
closedListName?: undefined;
|
|
3571
|
+
} | {
|
|
3572
|
+
name: "phoneNumber";
|
|
3573
|
+
label: string;
|
|
3574
|
+
type: string;
|
|
3575
|
+
typeInput: string;
|
|
3576
|
+
errorMsg: string;
|
|
3577
|
+
placeholder: string;
|
|
3578
|
+
options?: undefined;
|
|
3579
|
+
size?: undefined;
|
|
3580
|
+
dropDownDirection?: undefined;
|
|
3581
|
+
closedListName?: undefined;
|
|
3582
|
+
disabled?: undefined;
|
|
3583
|
+
} | {
|
|
3584
|
+
name: "militaryEmail";
|
|
3585
|
+
label: string;
|
|
3586
|
+
type: string;
|
|
3587
|
+
typeInput: string;
|
|
3588
|
+
errorMsg: string;
|
|
3589
|
+
placeholder: string;
|
|
3590
|
+
options?: undefined;
|
|
3591
|
+
size?: undefined;
|
|
3592
|
+
dropDownDirection?: undefined;
|
|
3593
|
+
closedListName?: undefined;
|
|
3594
|
+
disabled?: undefined;
|
|
3595
|
+
} | {
|
|
3596
|
+
name: "gender";
|
|
3597
|
+
label: string;
|
|
3598
|
+
type: string;
|
|
3599
|
+
options: {
|
|
3600
|
+
name: string;
|
|
3601
|
+
id: number;
|
|
3602
|
+
}[];
|
|
3603
|
+
typeInput?: undefined;
|
|
3604
|
+
placeholder?: undefined;
|
|
3605
|
+
errorMsg?: undefined;
|
|
3606
|
+
size?: undefined;
|
|
3607
|
+
dropDownDirection?: undefined;
|
|
3608
|
+
closedListName?: undefined;
|
|
3609
|
+
disabled?: undefined;
|
|
3610
|
+
})[];
|
|
3611
|
+
declare function getSignUpFormFieldsByFields(fieldNames: string[]): ({
|
|
3612
|
+
name: "personalId";
|
|
3613
|
+
label: string;
|
|
3614
|
+
type: string;
|
|
3615
|
+
typeInput: string;
|
|
3616
|
+
placeholder: string;
|
|
3617
|
+
errorMsg?: undefined;
|
|
3618
|
+
options?: undefined;
|
|
3619
|
+
size?: undefined;
|
|
3620
|
+
dropDownDirection?: undefined;
|
|
3621
|
+
closedListName?: undefined;
|
|
3622
|
+
disabled?: undefined;
|
|
3623
|
+
} | {
|
|
3624
|
+
name: "militaryId";
|
|
3625
|
+
label: string;
|
|
3626
|
+
type: string;
|
|
3627
|
+
typeInput: string;
|
|
3628
|
+
placeholder: string;
|
|
3629
|
+
errorMsg?: undefined;
|
|
3630
|
+
options?: undefined;
|
|
3631
|
+
size?: undefined;
|
|
3632
|
+
dropDownDirection?: undefined;
|
|
3633
|
+
closedListName?: undefined;
|
|
3634
|
+
disabled?: undefined;
|
|
3635
|
+
} | {
|
|
3636
|
+
name: "firstName";
|
|
3637
|
+
label: string;
|
|
3638
|
+
type: string;
|
|
3639
|
+
typeInput: string;
|
|
3640
|
+
errorMsg: string;
|
|
3641
|
+
placeholder: string;
|
|
3642
|
+
options?: undefined;
|
|
3643
|
+
size?: undefined;
|
|
3644
|
+
dropDownDirection?: undefined;
|
|
3645
|
+
closedListName?: undefined;
|
|
3646
|
+
disabled?: undefined;
|
|
3647
|
+
} | {
|
|
3648
|
+
name: "lastName";
|
|
3649
|
+
label: string;
|
|
3650
|
+
type: string;
|
|
3651
|
+
typeInput: string;
|
|
3652
|
+
errorMsg: string;
|
|
3653
|
+
placeholder: string;
|
|
3654
|
+
options?: undefined;
|
|
3655
|
+
size?: undefined;
|
|
3656
|
+
dropDownDirection?: undefined;
|
|
3657
|
+
closedListName?: undefined;
|
|
3658
|
+
disabled?: undefined;
|
|
3659
|
+
} | {
|
|
3660
|
+
name: "militaryStatus";
|
|
3661
|
+
label: string;
|
|
3662
|
+
type: string;
|
|
3663
|
+
options: {
|
|
3664
|
+
name: string;
|
|
3665
|
+
id: string;
|
|
3666
|
+
}[];
|
|
3667
|
+
typeInput?: undefined;
|
|
3668
|
+
placeholder?: undefined;
|
|
3669
|
+
errorMsg?: undefined;
|
|
3670
|
+
size?: undefined;
|
|
3671
|
+
dropDownDirection?: undefined;
|
|
3672
|
+
closedListName?: undefined;
|
|
3673
|
+
disabled?: undefined;
|
|
3674
|
+
} | {
|
|
3675
|
+
name: "civilProfession";
|
|
3676
|
+
label: string;
|
|
3677
|
+
type: string;
|
|
3678
|
+
size: string;
|
|
3679
|
+
dropDownDirection: string;
|
|
3680
|
+
typeInput?: undefined;
|
|
3681
|
+
placeholder?: undefined;
|
|
3682
|
+
errorMsg?: undefined;
|
|
3683
|
+
options?: undefined;
|
|
3684
|
+
closedListName?: undefined;
|
|
3685
|
+
disabled?: undefined;
|
|
3686
|
+
} | {
|
|
3687
|
+
name: "sections";
|
|
3688
|
+
label: string;
|
|
3689
|
+
type: string;
|
|
3690
|
+
closedListName: string;
|
|
3691
|
+
size: string;
|
|
3692
|
+
dropDownDirection: string;
|
|
3693
|
+
typeInput?: undefined;
|
|
3694
|
+
placeholder?: undefined;
|
|
3695
|
+
errorMsg?: undefined;
|
|
3696
|
+
options?: undefined;
|
|
3697
|
+
disabled?: undefined;
|
|
3698
|
+
} | {
|
|
3699
|
+
name: "sagahs";
|
|
3700
|
+
label: string;
|
|
3701
|
+
type: string;
|
|
3702
|
+
closedListName: string;
|
|
3703
|
+
size: string;
|
|
3704
|
+
dropDownDirection: string;
|
|
3705
|
+
typeInput?: undefined;
|
|
3706
|
+
placeholder?: undefined;
|
|
3707
|
+
errorMsg?: undefined;
|
|
3708
|
+
options?: undefined;
|
|
3709
|
+
disabled?: undefined;
|
|
3710
|
+
} | {
|
|
3711
|
+
name: "subjectAreas";
|
|
3712
|
+
label: string;
|
|
3713
|
+
type: string;
|
|
3714
|
+
closedListName: string;
|
|
3715
|
+
size: string;
|
|
3716
|
+
dropDownDirection: string;
|
|
3717
|
+
typeInput?: undefined;
|
|
3718
|
+
placeholder?: undefined;
|
|
3719
|
+
errorMsg?: undefined;
|
|
3720
|
+
options?: undefined;
|
|
3721
|
+
disabled?: undefined;
|
|
3722
|
+
} | {
|
|
3723
|
+
name: "groups";
|
|
3724
|
+
label: string;
|
|
3725
|
+
type: string;
|
|
3726
|
+
options: any[];
|
|
3727
|
+
size: string;
|
|
3728
|
+
dropDownDirection: string;
|
|
3729
|
+
typeInput?: undefined;
|
|
3730
|
+
placeholder?: undefined;
|
|
3731
|
+
errorMsg?: undefined;
|
|
3732
|
+
closedListName?: undefined;
|
|
3733
|
+
disabled?: undefined;
|
|
3734
|
+
} | {
|
|
3735
|
+
name: "referringUser";
|
|
3736
|
+
label: string;
|
|
3737
|
+
type: string;
|
|
3738
|
+
typeInput: string;
|
|
3739
|
+
errorMsg: string;
|
|
3740
|
+
disabled: boolean;
|
|
3741
|
+
placeholder?: undefined;
|
|
3742
|
+
options?: undefined;
|
|
3743
|
+
size?: undefined;
|
|
3744
|
+
dropDownDirection?: undefined;
|
|
3745
|
+
closedListName?: undefined;
|
|
3746
|
+
} | {
|
|
3747
|
+
name: "phoneNumber";
|
|
3748
|
+
label: string;
|
|
3749
|
+
type: string;
|
|
3750
|
+
typeInput: string;
|
|
3751
|
+
errorMsg: string;
|
|
3752
|
+
placeholder: string;
|
|
3753
|
+
options?: undefined;
|
|
3754
|
+
size?: undefined;
|
|
3755
|
+
dropDownDirection?: undefined;
|
|
3756
|
+
closedListName?: undefined;
|
|
3757
|
+
disabled?: undefined;
|
|
3758
|
+
} | {
|
|
3759
|
+
name: "militaryEmail";
|
|
3760
|
+
label: string;
|
|
3761
|
+
type: string;
|
|
3762
|
+
typeInput: string;
|
|
3763
|
+
errorMsg: string;
|
|
3764
|
+
placeholder: string;
|
|
3765
|
+
options?: undefined;
|
|
3766
|
+
size?: undefined;
|
|
3767
|
+
dropDownDirection?: undefined;
|
|
3768
|
+
closedListName?: undefined;
|
|
3769
|
+
disabled?: undefined;
|
|
3770
|
+
} | {
|
|
3771
|
+
name: "gender";
|
|
3772
|
+
label: string;
|
|
3773
|
+
type: string;
|
|
3774
|
+
options: {
|
|
3775
|
+
name: string;
|
|
3776
|
+
id: number;
|
|
3777
|
+
}[];
|
|
3778
|
+
typeInput?: undefined;
|
|
3779
|
+
placeholder?: undefined;
|
|
3780
|
+
errorMsg?: undefined;
|
|
3781
|
+
size?: undefined;
|
|
3782
|
+
dropDownDirection?: undefined;
|
|
3783
|
+
closedListName?: undefined;
|
|
3784
|
+
disabled?: undefined;
|
|
3785
|
+
})[];
|
|
3786
|
+
|
|
3787
|
+
declare const structHierarchyTreeMaxHeight = 2;
|
|
3788
|
+
|
|
3789
|
+
declare const svgsStrings: {
|
|
3790
|
+
edit: string;
|
|
3791
|
+
garbage: string;
|
|
3792
|
+
greyUploadFile: string;
|
|
3793
|
+
uploadFile: string;
|
|
3794
|
+
downloadFile: string;
|
|
3795
|
+
'.mp4': string;
|
|
3796
|
+
'.pdf': string;
|
|
3797
|
+
'.pptx': string;
|
|
3798
|
+
bigVideo: string;
|
|
3799
|
+
bigPdf: string;
|
|
3800
|
+
bigAudio: string;
|
|
3801
|
+
responsiveUploadFile: string;
|
|
3802
|
+
cancel: string;
|
|
3803
|
+
X: string;
|
|
3804
|
+
chevron: string;
|
|
3805
|
+
smallChevron: string;
|
|
3806
|
+
search: string;
|
|
3807
|
+
clock: string;
|
|
3808
|
+
calendar: string;
|
|
3809
|
+
civilProfession: string;
|
|
3810
|
+
position: string;
|
|
3811
|
+
role: string;
|
|
3812
|
+
school: string;
|
|
3813
|
+
struct: string;
|
|
3814
|
+
id: string;
|
|
3815
|
+
clipboardText: string;
|
|
3816
|
+
audio: string;
|
|
3817
|
+
collection: string;
|
|
3818
|
+
exercise: string;
|
|
3819
|
+
genericFile: string;
|
|
3820
|
+
image: string;
|
|
3821
|
+
pdf: string;
|
|
3822
|
+
presentation: string;
|
|
3823
|
+
quiz: string;
|
|
3824
|
+
story: string;
|
|
3825
|
+
video: string;
|
|
3826
|
+
text: string;
|
|
3827
|
+
learningunit: string;
|
|
3828
|
+
generic: string;
|
|
3829
|
+
success: string;
|
|
3830
|
+
error: string;
|
|
3831
|
+
information: string;
|
|
3832
|
+
primaryPlay: string;
|
|
3833
|
+
hadrachaHierarchy: string;
|
|
3834
|
+
hadrachaHierarchyResource: string;
|
|
3835
|
+
link: string;
|
|
3836
|
+
messagePlus: string;
|
|
3837
|
+
check: string;
|
|
3838
|
+
};
|
|
3839
|
+
|
|
3840
|
+
declare const system: {
|
|
3841
|
+
college: string;
|
|
3842
|
+
herum: string;
|
|
3843
|
+
hadracha: string;
|
|
3844
|
+
};
|
|
3845
|
+
|
|
3846
|
+
declare const tableRowHeights: {
|
|
3847
|
+
switchCell: number;
|
|
3848
|
+
doubleLines: number;
|
|
3849
|
+
default: number;
|
|
3850
|
+
};
|
|
3851
|
+
|
|
3852
|
+
declare const calendarActiveColorCssVariable: string;
|
|
3853
|
+
declare const calendarHoverColorCssVariable: string;
|
|
3854
|
+
declare const calendarLibrarySelector: string;
|
|
3855
|
+
declare const calendarLibraryBodyCellSelector: string;
|
|
3856
|
+
declare const timerActiveColorCssVariable: string;
|
|
3857
|
+
declare const timerHoverColorCssVariable: string;
|
|
3858
|
+
declare const timerItemSizeColorCssVariable: string;
|
|
3859
|
+
declare const dayInMilliSeconds: number;
|
|
3860
|
+
declare const secondInMilliseconds: number;
|
|
3861
|
+
declare const minuteInMilliseconds: number;
|
|
3862
|
+
declare const timePattern: string;
|
|
3863
|
+
|
|
3864
|
+
declare const sixMonthsInDays = 180;
|
|
3865
|
+
|
|
3866
|
+
declare const toastsTemplatesKeys: {
|
|
3867
|
+
[key: string]: string;
|
|
3868
|
+
};
|
|
3869
|
+
declare const toastStatuses: {
|
|
3870
|
+
[toastStatus: string]: ToastStatus;
|
|
3871
|
+
};
|
|
3872
|
+
declare const getSignUpMethod: (authenticationPaths: AuthenticationPaths$1) => string;
|
|
3873
|
+
declare const toastStates: {
|
|
3874
|
+
[toastState: string]: ToastState;
|
|
3875
|
+
};
|
|
3876
|
+
declare const statusCodes: {
|
|
3877
|
+
[key: string]: (wordToReplace: string) => string;
|
|
3878
|
+
};
|
|
3879
|
+
declare const toastContext: ToastContext;
|
|
3880
|
+
declare const toastsKeys: {
|
|
3881
|
+
[key: string]: string;
|
|
3882
|
+
};
|
|
3883
|
+
declare const skipToastHeader: HttpHeaders;
|
|
3884
|
+
declare const toastsTemplates: {
|
|
3885
|
+
[toastsTemplatesKeys.chromeBrowserVersion]: {
|
|
3886
|
+
title: string;
|
|
3887
|
+
information: string;
|
|
3888
|
+
};
|
|
3889
|
+
[toastsTemplatesKeys.addOrUpdateNotebookSuccess]: {
|
|
3890
|
+
title: string;
|
|
3891
|
+
success: string;
|
|
3892
|
+
};
|
|
3893
|
+
[toastsTemplatesKeys.addOrUpdateNotebookError]: {
|
|
3894
|
+
title: string;
|
|
3895
|
+
error: string;
|
|
3896
|
+
};
|
|
3897
|
+
[toastsTemplatesKeys.hadrachaToolBarError]: {
|
|
3898
|
+
title: string;
|
|
3899
|
+
error: string;
|
|
3900
|
+
};
|
|
3901
|
+
};
|
|
3902
|
+
|
|
3903
|
+
declare const additionTagName: string;
|
|
3904
|
+
declare const deletionTagName: string;
|
|
3905
|
+
declare const editorContainerElementId: string;
|
|
3906
|
+
declare const mouseEnterHandlerKey: string;
|
|
3907
|
+
declare const mouseLeaveHandlerKey: string;
|
|
3908
|
+
declare const mouseEnter: string;
|
|
3909
|
+
declare const mouseLeave: string;
|
|
3910
|
+
|
|
3911
|
+
declare const uploadsProgressMetadataTypes: {
|
|
3912
|
+
[uploadsProgressMetadataType: string]: UploadProgressType;
|
|
3913
|
+
};
|
|
3914
|
+
declare const uploadStatuses: {
|
|
3915
|
+
[uploadsProgressStatus: string]: UploadProgressStatus;
|
|
3916
|
+
};
|
|
3917
|
+
declare const defaultUploadsManagerTitle: string;
|
|
3918
|
+
declare const uploadsManagerKeys: {
|
|
3919
|
+
dependentIdHeader: string;
|
|
3920
|
+
reportUploadProgressIdHeader: string;
|
|
3921
|
+
uploadsManagerTitleHeader: string;
|
|
3922
|
+
commonDependentsIdHeader: string;
|
|
3923
|
+
numberOfObservableArrowFunctionsHeader: string;
|
|
3924
|
+
dependentId: string;
|
|
3925
|
+
reportUploadProgressId: string;
|
|
3926
|
+
uploadsManagerTitle: string;
|
|
3927
|
+
commonDependentsId: string;
|
|
3928
|
+
numberOfObservableArrowFunctions: string;
|
|
3929
|
+
resourceUpload: string;
|
|
3930
|
+
collectionUpload: string;
|
|
3931
|
+
fileUpload: string;
|
|
3932
|
+
megaBytes: string;
|
|
3933
|
+
bytes: string;
|
|
3934
|
+
defaultUploadsManagerTitle: string;
|
|
3935
|
+
file: string;
|
|
3936
|
+
resource: string;
|
|
3937
|
+
collection: string;
|
|
3938
|
+
};
|
|
3939
|
+
declare const maxImageHeight = 3000;
|
|
3940
|
+
declare const maxImageWidth = 3000;
|
|
3941
|
+
|
|
3942
|
+
declare const validatorsNames: {
|
|
3943
|
+
invalidIDNumber: string;
|
|
3944
|
+
isUniqueIdValidator: string;
|
|
3945
|
+
pattern: string;
|
|
3946
|
+
required: string;
|
|
3947
|
+
};
|
|
3948
|
+
|
|
3949
|
+
declare const openClose: _angular_animations.AnimationTriggerMetadata;
|
|
3950
|
+
|
|
3951
|
+
declare const TableRowHeight: (value: number) => (constructor: any) => void;
|
|
3952
|
+
|
|
3953
|
+
declare const closedListExample: ClosedList;
|
|
3954
|
+
|
|
3955
|
+
declare const defaultUsers: User[];
|
|
3956
|
+
|
|
3957
|
+
declare const permissionsTemplatesExample: PermissionTemplate;
|
|
3958
|
+
|
|
3959
|
+
declare const selfIsTeacherExample: User;
|
|
3960
|
+
|
|
3961
|
+
declare const collectionModelInfo: {
|
|
3962
|
+
[key: string]: ModelInfo;
|
|
3963
|
+
};
|
|
3964
|
+
|
|
3965
|
+
declare const collectionId: string[];
|
|
3966
|
+
declare const mockedCollectionFile: File;
|
|
3967
|
+
declare const mockedCollectionFields: {
|
|
3968
|
+
[key: string]: any;
|
|
3969
|
+
};
|
|
3970
|
+
declare const collectionSplittedFields: {
|
|
3971
|
+
[key: string]: any;
|
|
3972
|
+
};
|
|
3973
|
+
declare const collectionFormattedAttachments: {
|
|
3974
|
+
[key: string]: any;
|
|
3975
|
+
}[];
|
|
3976
|
+
declare const mockedNewFileCollectionRequest: {
|
|
3977
|
+
DbBasicActionRequest: {
|
|
3978
|
+
data: any;
|
|
3979
|
+
ids: string[];
|
|
3980
|
+
};
|
|
3981
|
+
DbAttachmentActionRequests: {
|
|
3982
|
+
[key: string]: any;
|
|
3983
|
+
}[];
|
|
3984
|
+
};
|
|
3985
|
+
declare const userId: string;
|
|
3986
|
+
declare const structId: string;
|
|
3987
|
+
declare const mockedAssignedUserFields: {
|
|
3988
|
+
[key: string]: any;
|
|
3989
|
+
};
|
|
3990
|
+
declare const assignedUserSplittedFields: {
|
|
3991
|
+
[key: string]: any;
|
|
3992
|
+
};
|
|
3993
|
+
declare const mockedAssignedUserFormattedAttachments: {
|
|
3994
|
+
attachments: {
|
|
3995
|
+
[userId]: {
|
|
3996
|
+
assignmentMetadata: {
|
|
3997
|
+
state: number;
|
|
3998
|
+
name: string;
|
|
3999
|
+
};
|
|
4000
|
+
id: null;
|
|
4001
|
+
};
|
|
4002
|
+
};
|
|
4003
|
+
field: string;
|
|
4004
|
+
ids: string[];
|
|
4005
|
+
}[];
|
|
4006
|
+
declare const mockedUserFields: {
|
|
4007
|
+
[key: string]: any;
|
|
4008
|
+
};
|
|
4009
|
+
declare const mockedUpdatedUserFields: {
|
|
4010
|
+
[key: string]: any;
|
|
4011
|
+
};
|
|
4012
|
+
declare const mockedUpdatedUserRequest: {
|
|
4013
|
+
[key: string]: any;
|
|
4014
|
+
};
|
|
4015
|
+
declare const userSplittedFields: {
|
|
4016
|
+
[key: string]: any;
|
|
4017
|
+
};
|
|
4018
|
+
declare const userFormattedAttachments: {
|
|
4019
|
+
[key: string]: any;
|
|
4020
|
+
}[];
|
|
4021
|
+
declare const mockedNewGroupFields: {
|
|
4022
|
+
[key: string]: any;
|
|
4023
|
+
};
|
|
4024
|
+
declare const mockedNewGroupRequest: {
|
|
4025
|
+
[key: string]: any;
|
|
4026
|
+
};
|
|
4027
|
+
declare const mockedCollectioDeletedFields: {
|
|
4028
|
+
[key: string]: any;
|
|
4029
|
+
};
|
|
4030
|
+
declare const mockedCollectioDeletedFieldsRequest: {
|
|
4031
|
+
[key: string]: any;
|
|
4032
|
+
};
|
|
4033
|
+
|
|
4034
|
+
declare const groupsModelInfo: {
|
|
4035
|
+
[key: string]: ModelInfo;
|
|
4036
|
+
};
|
|
4037
|
+
|
|
4038
|
+
declare const structModelInfo: {
|
|
4039
|
+
[key: string]: ModelInfo;
|
|
4040
|
+
};
|
|
4041
|
+
|
|
4042
|
+
declare const testEnvironmentConfig: EnvironmentConfig$1;
|
|
4043
|
+
|
|
4044
|
+
declare const usersModelInfo: {
|
|
4045
|
+
[key: string]: ModelInfo;
|
|
4046
|
+
};
|
|
4047
|
+
|
|
4048
|
+
declare function formCollectionNameValidator(): ValidatorFn;
|
|
4049
|
+
|
|
4050
|
+
declare function validateIDNumber(): ValidatorFn;
|
|
4051
|
+
|
|
4052
|
+
declare function isUniqueIdValidator(path: string, fieldName: string, http: HttpClient, isEditMode?: boolean): AsyncValidatorFn;
|
|
4053
|
+
|
|
4054
|
+
declare const requiredErrorMessage: {
|
|
4055
|
+
[validatorsNames$1.required]: string;
|
|
4056
|
+
};
|
|
4057
|
+
declare const validatorsErrorMessages: {
|
|
4058
|
+
[key: string]: {
|
|
4059
|
+
[key: string]: string;
|
|
4060
|
+
};
|
|
4061
|
+
};
|
|
4062
|
+
|
|
4063
|
+
declare class FetchedMessageService {
|
|
4064
|
+
private http;
|
|
4065
|
+
private dialog;
|
|
4066
|
+
private environmentConfig;
|
|
4067
|
+
private recipient;
|
|
4068
|
+
private messageKey;
|
|
4069
|
+
constructor(http: HttpClient, dialog: MatDialog, environmentConfig: EnvironmentConfig$1);
|
|
4070
|
+
handleFetchedMessage(recipient: Object, messageKey: string, condition?: boolean): void;
|
|
4071
|
+
private setMessageKey;
|
|
4072
|
+
private setRecipient;
|
|
4073
|
+
fetchedMessageData(): Observable<Object>;
|
|
4074
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FetchedMessageService, never>;
|
|
4075
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FetchedMessageService>;
|
|
4076
|
+
}
|
|
4077
|
+
|
|
4078
|
+
declare class HerumToastsComponent implements OnInit, OnDestroy {
|
|
4079
|
+
private toastsService;
|
|
4080
|
+
private changeDetectorRef;
|
|
4081
|
+
toastElements: QueryList<ElementRef>;
|
|
4082
|
+
toasts: Toast[];
|
|
4083
|
+
minimumOpacity: number;
|
|
4084
|
+
transformDuration: number;
|
|
4085
|
+
leavingDuration: number;
|
|
4086
|
+
gap: number;
|
|
4087
|
+
destroySubject$: Subject<null>;
|
|
4088
|
+
constructor(toastsService: ToastsService$1, changeDetectorRef: ChangeDetectorRef);
|
|
4089
|
+
ngOnInit(): void;
|
|
4090
|
+
handleNewToast(toast: Toast): void;
|
|
4091
|
+
private reduceToastHeights;
|
|
4092
|
+
_onHideToast(currentToast: Toast, lowToasts: boolean): void;
|
|
4093
|
+
private removeToast;
|
|
4094
|
+
private setToastLinearOpacity;
|
|
4095
|
+
_toastStatusIcon(toastStatus: ToastStatus): string;
|
|
4096
|
+
get successStatus(): ToastStatus;
|
|
4097
|
+
ngOnDestroy(): void;
|
|
4098
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HerumToastsComponent, never>;
|
|
4099
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HerumToastsComponent, "herum-toasts", never, {}, {}, never, never, false, never>;
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4102
|
+
declare class MongoUtilsService {
|
|
4103
|
+
private environmentConfig;
|
|
4104
|
+
constructor(environmentConfig: EnvironmentConfig$1);
|
|
4105
|
+
getDisplayedNameForMongoMethodByUserActivity(urlRequest: string): string | undefined;
|
|
4106
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MongoUtilsService, never>;
|
|
4107
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MongoUtilsService>;
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
declare class ErrorsHandlerService {
|
|
4111
|
+
private dialog;
|
|
4112
|
+
private loaderService;
|
|
4113
|
+
private http;
|
|
4114
|
+
private auth;
|
|
4115
|
+
private mongoUtilsService;
|
|
4116
|
+
private environmentConfig;
|
|
4117
|
+
isErrorPopupCurrentlyOpened: boolean;
|
|
4118
|
+
failedReportUploadProgressRequests: HttpRequest<any>[];
|
|
4119
|
+
failedDependentsRequestsContext: FailedDependentsRequestsContext;
|
|
4120
|
+
dependentRequestId$: Subject<string>;
|
|
4121
|
+
reportUploadProgressRequest$: Subject<string>;
|
|
4122
|
+
commonDependentsErrorToast$: Subject<CommonDependentsToast>;
|
|
4123
|
+
errorToast$: Subject<ToastHttpResponseDependencies>;
|
|
4124
|
+
constructor(dialog: MatDialog, loaderService: LoaderManagerService$1, http: HttpClient, auth: AuthService$1, mongoUtilsService: MongoUtilsService, environmentConfig: EnvironmentConfig$1);
|
|
4125
|
+
handleError(errorStatus: number, errorData?: any): void;
|
|
4126
|
+
setFailedReportUploadProgressRequests(failedReportUploadProgressRequest: HttpRequest<any>): void;
|
|
4127
|
+
private handleUnauthorizedError;
|
|
4128
|
+
private handleConflictError;
|
|
4129
|
+
private handleForbiddenError;
|
|
4130
|
+
private handleTimeoutError;
|
|
4131
|
+
private handleInternalServerError;
|
|
4132
|
+
private handleDependentRequestError;
|
|
4133
|
+
private handleReportUploadProgressRequestError;
|
|
4134
|
+
private isErrorToastNeeded;
|
|
4135
|
+
private handleErrorToast;
|
|
4136
|
+
setChainedFailedObservableFunctions(dependentId: string, error: HttpErrorResponse, failedComplexObservableArrowFunctions: ComplexObservableArrowFunctions, initialValue?: any): void;
|
|
4137
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsHandlerService, never>;
|
|
4138
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorsHandlerService>;
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
declare class DependentsService {
|
|
4142
|
+
private errorsHandlerService;
|
|
4143
|
+
dependentMetadata: DependentMetadata;
|
|
4144
|
+
constructor(errorsHandlerService: ErrorsHandlerService);
|
|
4145
|
+
chainObservableFunctions(complexFunctions: ComplexObservableArrowFunctions, initialValue?: any): Observable<any>;
|
|
4146
|
+
private setInitialObservable;
|
|
4147
|
+
private handleInitialComplexFunction;
|
|
4148
|
+
private handleInitialFunction;
|
|
4149
|
+
private chainObservables;
|
|
4150
|
+
private handleCurrentChainedComplexObservable;
|
|
4151
|
+
handleCurrentChainedObservable(complexFunctions: ComplexObservableArrowFunctions, currentFunction: ObservableArrowFunction, result: any, functionsIndex: number): Observable<any>;
|
|
4152
|
+
private calculateNumberOfObservableFunctions;
|
|
4153
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DependentsService, never>;
|
|
4154
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DependentsService>;
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
declare class UploadsManagerService {
|
|
4158
|
+
private errorsHandlerService;
|
|
4159
|
+
private dependentsService;
|
|
4160
|
+
private http;
|
|
4161
|
+
private toastsService;
|
|
4162
|
+
uploadsManagerTitle$: BehaviorSubject<string>;
|
|
4163
|
+
uploadsProgressMetadata$: BehaviorSubject<UploadProgressMetadata[]>;
|
|
4164
|
+
constructor(errorsHandlerService: ErrorsHandlerService, dependentsService: DependentsService, http: HttpClient, toastsService: ToastsService$1);
|
|
4165
|
+
private setSubscriptions;
|
|
4166
|
+
private updateUploadProgressStatus;
|
|
4167
|
+
retryFailedUploads(): Observable<any>[];
|
|
4168
|
+
retryFailedUpload(uploadProgressId: string): Observable<any>;
|
|
4169
|
+
private handleFailedDependentRequest;
|
|
4170
|
+
private handleFailedReportUploadRequest;
|
|
4171
|
+
addOrUpdateUploadProgressMetadata(uploadProgressMetadata: UploadProgressMetadata): void;
|
|
4172
|
+
getUploadProgressById(uploadProgressId: string): UploadProgressMetadata;
|
|
4173
|
+
createNewToastBasedOnHttpRequest(commonDependentsToast: CommonDependentsToast): void;
|
|
4174
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadsManagerService, never>;
|
|
4175
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UploadsManagerService>;
|
|
4176
|
+
}
|
|
4177
|
+
|
|
4178
|
+
declare class HerumUploadsManagerComponent {
|
|
4179
|
+
private uploadsManagerService;
|
|
4180
|
+
destroySubject$: Subject<null>;
|
|
4181
|
+
isContainerOpen: boolean;
|
|
4182
|
+
loadingStatus: UploadProgressStatus;
|
|
4183
|
+
errorStatus: UploadProgressStatus;
|
|
4184
|
+
successStatus: UploadProgressStatus;
|
|
4185
|
+
uploadsProgressMetadata: UploadProgressMetadata[];
|
|
4186
|
+
averageProgressSum: number;
|
|
4187
|
+
hasUploadProgressFinished: boolean;
|
|
4188
|
+
numberOfFailedLoaders: number;
|
|
4189
|
+
successProgressBarColor: string;
|
|
4190
|
+
progressBarColor: string;
|
|
4191
|
+
showConfirmationNativeMessage(event: any): void;
|
|
4192
|
+
constructor(uploadsManagerService: UploadsManagerService);
|
|
4193
|
+
ngOnInit(): void;
|
|
4194
|
+
private setSuccessProgressBarColor;
|
|
4195
|
+
private uploadsProgressMetadataSubscription;
|
|
4196
|
+
_onRetryFailedUploads(): void;
|
|
4197
|
+
_onRetryFailedUpload(uploadProgressId: string): void;
|
|
4198
|
+
_onClose(): void;
|
|
4199
|
+
_onToggleUploadsContainer(): void;
|
|
4200
|
+
_isTruncatedTitleElement(element: HTMLElement): boolean;
|
|
4201
|
+
_getUploadProgressDescription(uploadProgressMetadata: UploadProgressMetadata): string;
|
|
4202
|
+
_isUploadProgressStatusError(uploadProgressStatus: UploadProgressStatus): boolean;
|
|
4203
|
+
_getFileIcon(uploadProgressType: UploadProgressType): string;
|
|
4204
|
+
_getUploadStatusIcon(uploadProgressType: UploadProgressType): string;
|
|
4205
|
+
_trackByFn(index: number, uploadProgressMetadata: UploadProgressMetadata): string;
|
|
4206
|
+
get containerTitle$(): Observable<string>;
|
|
4207
|
+
calculateAverageProgressSum(uploadsProgressMetadata: UploadProgressMetadata[]): number;
|
|
4208
|
+
calculateHasUploadProgressFinished(uploadsProgressMetadata: UploadProgressMetadata[]): boolean;
|
|
4209
|
+
calculateNumberOfFailedLoaders(uploadsProgressMetadata: UploadProgressMetadata[]): number;
|
|
4210
|
+
calculateProgressBarColor(uploadsProgressMetadata: UploadProgressMetadata[]): string;
|
|
4211
|
+
ngOnDestroy(): void;
|
|
4212
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HerumUploadsManagerComponent, never>;
|
|
4213
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HerumUploadsManagerComponent, "herum-uploads-manager", never, {}, {}, never, never, false, never>;
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
declare class HerumSharedMongoModule {
|
|
4217
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HerumSharedMongoModule, never>;
|
|
4218
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HerumSharedMongoModule, [typeof HerumToastsComponent, typeof HerumUploadsManagerComponent], [typeof i2.CommonModule, typeof i4$1.PipesModule, typeof i4.AtomsModule], [typeof HerumToastsComponent, typeof HerumUploadsManagerComponent]>;
|
|
4219
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HerumSharedMongoModule>;
|
|
4220
|
+
}
|
|
4221
|
+
|
|
4222
|
+
declare const getMongoMethodsDisplayedNamesMap: (mongoUpdates: MongoUpdates$1, authenticationPaths: AuthenticationPaths$1) => {
|
|
4223
|
+
[key: string]: string;
|
|
4224
|
+
};
|
|
4225
|
+
|
|
4226
|
+
declare class DbActionRequestsService {
|
|
4227
|
+
private http;
|
|
4228
|
+
private dbActionsInnerIdManagerService;
|
|
4229
|
+
private environmentConfig;
|
|
4230
|
+
constructor(http: HttpClient, dbActionsInnerIdManagerService: DbActionsInnerIdManagerService$1, environmentConfig: EnvironmentConfig$1);
|
|
4231
|
+
getFileRequest(request: any, file: File): FormData;
|
|
4232
|
+
addOrUpdateAndAttachBulkWithFile(mongoCollectionName: string, fields: {
|
|
4233
|
+
[key: string]: any;
|
|
4234
|
+
}, file: File, ids: string[], uploadsManagerTitle?: string, skipToast?: boolean): Observable<string>;
|
|
4235
|
+
setAddOrUpdateAndAttachBulkWithFileHeaders(headerToSet: any[]): HttpHeaders;
|
|
4236
|
+
AndAttachBulk(mongoCollectionName: string, fields: {
|
|
4237
|
+
[key: string]: any;
|
|
4238
|
+
}, ids: string[], method: 'create' | 'addOrUpdate', attachmentsToUpdate?: {
|
|
4239
|
+
[key: string]: any;
|
|
4240
|
+
}): Observable<DbActionResponse>;
|
|
4241
|
+
basicBulk(mongoCollectionName: string, fields: {
|
|
4242
|
+
[key: string]: any;
|
|
4243
|
+
}, ids: string[], requestType: string, skipToast?: boolean): Observable<Object>;
|
|
4244
|
+
private buildSourceCollectionRequestsData;
|
|
4245
|
+
private buildMirrorSourceCollectionRequestsData;
|
|
4246
|
+
private arrayOfIdObjectsToIdsArray;
|
|
4247
|
+
private buildBasicBulkObjectData;
|
|
4248
|
+
deleteMongoDocument(mongoCollectionName: string, ids: string[]): Observable<Object>;
|
|
4249
|
+
deletePreviewItemsFromList(mongoCollectionName: string, fields: {
|
|
4250
|
+
[key: string]: any;
|
|
4251
|
+
}, ids: string[]): Observable<Object>;
|
|
4252
|
+
getFormattedAttachments(ids: string[], objectsToAttach: {
|
|
4253
|
+
[key: string]: any;
|
|
4254
|
+
}, keysToAttachInDifferentModel: {
|
|
4255
|
+
[key: string]: any;
|
|
4256
|
+
}, modelInfo: {
|
|
4257
|
+
[key: string]: ModelInfo;
|
|
4258
|
+
}): any[];
|
|
4259
|
+
splitFieldByType(fields: {
|
|
4260
|
+
[key: string]: any;
|
|
4261
|
+
}, modelInfo: {
|
|
4262
|
+
[key: string]: ModelInfo;
|
|
4263
|
+
}): {
|
|
4264
|
+
keysToAttach: {
|
|
4265
|
+
[key: string]: any;
|
|
4266
|
+
};
|
|
4267
|
+
keysToUpdate: {
|
|
4268
|
+
[key: string]: any;
|
|
4269
|
+
};
|
|
4270
|
+
keysToAttachInDifferentModel: {
|
|
4271
|
+
[key: string]: any;
|
|
4272
|
+
};
|
|
4273
|
+
};
|
|
4274
|
+
getMongoCollectionModelInfo(mongoCollectionName: string): Observable<{
|
|
4275
|
+
[key: string]: ModelInfo;
|
|
4276
|
+
}>;
|
|
4277
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbActionRequestsService, never>;
|
|
4278
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DbActionRequestsService>;
|
|
4279
|
+
}
|
|
4280
|
+
|
|
4281
|
+
declare class DbActionToastService {
|
|
4282
|
+
private errorsHandlerService;
|
|
4283
|
+
private toastsService;
|
|
4284
|
+
private mongoUtilsService;
|
|
4285
|
+
toastsTemplates: {
|
|
4286
|
+
[key: string]: ToastTemplate;
|
|
4287
|
+
};
|
|
4288
|
+
constructor(errorsHandlerService: ErrorsHandlerService, toastsService: ToastsService$1, mongoUtilsService: MongoUtilsService);
|
|
4289
|
+
createToastBasedOnHttpResponse(toastHttpResponseDependencies: ToastHttpResponseDependencies): void;
|
|
4290
|
+
private setToastStatus;
|
|
4291
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbActionToastService, never>;
|
|
4292
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DbActionToastService>;
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
export { AnswerNotesToTextChangesPipe, AtomsModule, AudioConfigurationConstants, AudioPlayerComponent, AudioSliderComponent, AudioVisualizationService, AuthService, BlockedFormComponent, CheckboxCellComponent, ChipsCellComponent, CollectionSubscriptionToCollectionBasePipe, CollectionToCollectionBasePipe, CollegeAudioConfiguration, CollegeLoaderComponent, CommonGraphqlRequestsService, ConditionalFormControlNameDirective, CopyableCellComponent, DbActionRequestsService, DbActionToastService, DbActionsInnerIdManagerService, DeleteRowComponent, DependentsService, DialogsModule, DirectivesModule, DisplayedSubmissionsCounterPipe, EditRowComponent, EllipsisPipe, ErrorMessageDialogComponent, ErrorsHandlerService, ErrorsModule, FetchedMessageDialog, FetchedMessageModule, FetchedMessageService, GlobalErrorHandler, GlobalKeyboardListenerService, GraphQLService, HadrachaAudioConfiguration, HerumActiveLinkComponent, HerumActiveMenuComponent, HerumAgGridFilterComponent, HerumAutocompleteComponent, HerumBreadcrumbsComponent, HerumButtonComponent, HerumCheckboxComponent, HerumChipComponent, HerumCircularProgressBarComponent, HerumClosedListMultiSelectComponent, HerumClosedListSelectComponent, HerumDatePickerComponent, HerumDateTimeInputComponent, HerumDateTimePickerComponent, HerumDateTimePickerSelectComponent, HerumDownloadFileComponent, HerumDropZoneComponent, HerumEllipsisLoaderComponent, HerumExpendablePanelComponent, HerumFilesViewerComponent, HerumFilesViewerDialogComponent, HerumFormControl, HerumHierarchyTreeComponent, HerumHierarchyTreeNodeComponent, HerumHighlightDirective, HerumIconLabelComponent, HerumIndeterminateComponent, HerumInputFieldComponent, HerumListCentralizerComponent, HerumLoaderComponent, HerumLocalLoaderComponent, HerumLogoComponent, HerumMiniTableComponent, HerumMultiProgressBarComponent, HerumMultiSelectComponent, HerumNarrowCollectionMenuItemComponent, HerumNavigatorComponent, HerumNoResultMessageComponent, HerumOptionsListComponent, HerumPaginatorComponent, HerumPanelLinksComponent, HerumPdfViewerComponent, HerumPresentationViewerComponent, HerumProgressBarComponent, HerumQuizComponent, HerumQuizHeaderItemComponent, HerumRadioButtonComponent, HerumRecursiveHierarchyOptionsListComponent, HerumSelectComponent, HerumSharedModule, HerumSharedMongoModule, HerumSliderComponent, HerumSpinnerComponent, HerumStepNavigatorComponent, HerumStepperComponent, HerumStoryViewerComponent, HerumSwitchComponent, HerumTableComponent, HerumTextAreaComponent, HerumTextualVerticalTreeComponent, HerumTimePickerComponent, HerumTimeRangeSelectComponent, HerumTimeSelectComponent, HerumToastsComponent, HerumToggleButtonComponent, HerumToolTipDirective, HerumUploadFileComponent, HerumUploadsManagerComponent, HerumUserProfileComponent, HerumUserProgressComponent, HerumVideoPlayerComponent, HerumVideoRangeBarComponent, HerumVideoSelectComponent, InputCellComponent, InsuranceDialogComponent, KeyPressService, KeyValueListComponent, LabelsWithIconsListComponent, LoaderManagerService, MicroResourcesService, MoleculesModule, MongoUtilsService, NestedConditionSigniture, PipesModule, ProgressesOverViewComponent, QuizGradeSheetComponent, QuizHeaderComponent, QuizIntroComponent, QuizLoaderComponent, QuizMultiAnswerQuestionComponent, QuizOneAnswerQuestionComponent, QuizOpenAnswerQuestionComponent, QuizSubmissionComponent, QuizTwoAnswersQuestionComponent, RecursiveTreeComponent, ResourceDataBuilderService, ResourceSubscriptionToResourcePipe, ResourceToResourceSubscriptionPipe, RoundedVerticalMenuComponent, RowActionButtonsComponent, SYSTEM_AUDIO_VISUAL_CONFIGURATION, SYSTEM_IDENTIFIER, SYSTEM_TRACK_TEXT_CHANGES_SERVICE, SYSTEM_USER_SERVICE, SafeHtmlPipe, SafePipe, SliceBreadcrumbsPipe, StringArrayToSignUpFieldArrayPipe, SvgOnHoverDirective, SwitchCellComponent, SystemStylingService, TableModule, TableRowHeight, TextWithIconCell, TimeFormatPipe, ToIntegerPipe, ToastsService, TrackTextChangesComponent, TrackTextChangesNotesComponent, TrackTextChangesService, UploadsManagerService, UserActionDirective, UserIdentifiedEntitiesToBackendModelsPipe, UserProfileImageComponent, UsersProfilePreviewComponent, UtilsService, activeDragPath, additionTagName, anySubFileTypeWildCard, assignedUserSplittedFields, assignmentMetadata, attributes, audioAndVideoPreviewSupportedMimes, audioAndVideoPreviewSupportedSuffixes, audioPreviewSupportedMimes, audioPreviewSupportedSuffixes, buttonsContainerStyle, calendarActiveColorCssVariable, calendarHoverColorCssVariable, calendarLibraryBodyCellSelector, calendarLibrarySelector, checkboxTypes, closedListExample, collectionFormKeys, collectionFormValues, collectionFormattedAttachments, collectionId, collectionModelInfo, collectionSplittedFields, commentTextStyle, datePlaceHolder, dateRangePlaceHolder, dateRangeTimeRangePlaceHolder, dateRangeTimeRangeWithoutSecondsPlaceHolder, dateTimePlaceHolder, dateTimeWithoutSecondsPlaceHolder, dayInMilliSeconds, defaultAuthorizationObject, defaultCloseTime, defaultGrade, defaultOpenTime, defaultPlaceholder, defaultTrackTextChangesStyle, defaultUploadsManagerTitle, defaultUserId, defaultUsers, deleteButtonStyle, deletionTagName, dialogsCloseActionButtons, dialogsDescriptions, dialogsNotes, dialogsSubmitActionButtons, dialogsTitles, dragPath, editButtonStyle, editorContainerElementId, emptyValueFlagForCreationUniqListItem, errorHeadersToSet, femaleAvatarPath, filesSuffixes, formCollectionNameValidator, formStatuses, formatError, formsErrorMessages, freeTextAnswerField, generalKeys, getMediaDefaultAuthorizations, getMongoMethodsDisplayedNamesMap, getPropertyPathsOfPublishAuthorization, getPublishAuthorization, getQuizDefaultAuthorizations, getResourceDefaultAuthorizations, getSignUpFormFieldsByFields, getSignUpMethod, globalErrorHandlingHeader, groupsModelInfo, herumClosedListMultiSelectType, initialMediaSettings, innerUniqListItemKey, inputs, insuranceDialogPageNavigationData, isUniqueIdValidator, keyboardAsciiCodes, keyboardKeys, maleAvatarPath, maxImageHeight, maxImageWidth, minDateError, minuteInMilliseconds, mockedAssignedUserFields, mockedAssignedUserFormattedAttachments, mockedCollectioDeletedFields, mockedCollectioDeletedFieldsRequest, mockedCollectionFields, mockedCollectionFile, mockedNewFileCollectionRequest, mockedNewGroupFields, mockedNewGroupRequest, mockedUpdatedUserFields, mockedUpdatedUserRequest, mockedUserFields, mouseEnter, mouseEnterHandlerKey, mouseLeave, mouseLeaveHandlerKey, openClose, permissionsTemplatesExample, previewImageKey, radioButtonTypes, readynessDisplayName, regexExpressions, requiredErrorMessage, resourceColumnPrefix, resourceFileTypes, resourceFormKeys, resourceIdPlaceholder, resourceKeys, resourceTypes, resourcesFilesSuffixes, routes, secondInMilliseconds, selfIsTeacherExample, setDynamicElementStyle, sideBarSizeButtonId, signUpFormFields, signUpFormFieldsData, signUpFormKeys, sixMonthsInDays, skipToastHeader, speedOptions, startEndDateError, statusCodes, structHierarchyTreeMaxHeight, structId, structModelInfo, svgsStrings, system, systemStylingFactory, tableRowHeights, testEnvironmentConfig, timePattern, timePlaceHolder, timeWithoutSecondsPlaceHolder, timerActiveColorCssVariable, timerHoverColorCssVariable, timerItemSizeColorCssVariable, timestampError, toastContext, toastStates, toastStatuses, toastsKeys, toastsTemplates, toastsTemplatesKeys, tooltipStyle, types, uploadStatuses, uploadsManagerKeys, uploadsProgressMetadataTypes, userFormattedAttachments, userId, userSplittedFields, usersModelInfo, validateIDNumber, validatorsErrorMessages, validatorsNames, videoPreviewSupportedMimes, videoPreviewSupportedSuffixes, viewPermissionLabel };
|
|
4296
|
+
export type { EnvironmentConfig, IHerumInterface, studentInnerAuthorizationSubscription };
|