herum-shared 0.1.37 → 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 -134
- 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 +198 -167
- 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 -40
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MicroResourceAuthorizationType } from 'herum-types/Resource';
|
|
2
2
|
import { cloneDeep } from 'lodash';
|
|
3
3
|
import { HttpHeaders } from '@angular/common/http';
|
|
4
4
|
|
|
@@ -7,6 +7,14 @@ const assignmentMetadata = {
|
|
|
7
7
|
name: 'שיבוץ זמני'
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
+
const checkboxTypes = {
|
|
11
|
+
unchecked: 'unchecked',
|
|
12
|
+
indeterminate: 'indeterminate',
|
|
13
|
+
checked: 'checked',
|
|
14
|
+
error: 'error',
|
|
15
|
+
disabled: 'disabled'
|
|
16
|
+
};
|
|
17
|
+
|
|
10
18
|
const collectionFormKeys = {
|
|
11
19
|
files: 'files',
|
|
12
20
|
name: 'name',
|
|
@@ -92,7 +100,7 @@ const signUpFormFields = Object.keys(signUpFormKeys).reduce((resultObject, curre
|
|
|
92
100
|
const formsErrorMessages = {
|
|
93
101
|
requiredField: 'שדה חובה למילוי',
|
|
94
102
|
personalIdIsUsed: 'מספר תעודת הזהות הינו בשימוש',
|
|
95
|
-
militaryIdIsUsed: 'המספר
|
|
103
|
+
militaryIdIsUsed: 'המספר האישי הינו בשימוש',
|
|
96
104
|
notValidPersonalId: 'תעודת זהות לא תקינה',
|
|
97
105
|
notValidMilitarylId: 'מספר אישי לא תקין'
|
|
98
106
|
};
|
|
@@ -123,6 +131,7 @@ const sideBarSizeButtonId = 'side-bar-size-button';
|
|
|
123
131
|
const previewImageKey = 'previewImage';
|
|
124
132
|
const defaultGrade = -1;
|
|
125
133
|
const anySubFileTypeWildCard = '/*';
|
|
134
|
+
const resourceColumnPrefix = 'resource_';
|
|
126
135
|
|
|
127
136
|
const defaultUserId = '1';
|
|
128
137
|
|
|
@@ -135,16 +144,6 @@ const dateRangePlaceHolder = `${datePlaceHolder}-${datePlaceHolder}`;
|
|
|
135
144
|
const dateRangeTimeRangePlaceHolder = `${dateTimePlaceHolder}-${dateTimePlaceHolder}`;
|
|
136
145
|
const dateRangeTimeRangeWithoutSecondsPlaceHolder = `${dateTimeWithoutSecondsPlaceHolder}-${dateTimeWithoutSecondsPlaceHolder}`;
|
|
137
146
|
|
|
138
|
-
const calendarActiveColorCssVariable = '--active-calendar-color';
|
|
139
|
-
const calendarHoverColorCssVariable = '--hover-calendar-color';
|
|
140
|
-
const calendarLibrarySelector = 'mat-calendar';
|
|
141
|
-
const calendarLibraryBodyCellSelector = 'td.mat-calendar-body-cell';
|
|
142
|
-
const timerActiveColorCssVariable = '--active-timer-color';
|
|
143
|
-
const timerHoverColorCssVariable = '--hover-timer-color';
|
|
144
|
-
const timerItemSizeColorCssVariable = '--hover-timer-color';
|
|
145
|
-
const dayInMilliSeconds = 60 * 60 * 24 * 1000;
|
|
146
|
-
const timePattern = 'HH:mm:ss';
|
|
147
|
-
|
|
148
147
|
const resourceIdPlaceholder = "$resourceId";
|
|
149
148
|
const defaultCloseTime = new Date('01-01-2999');
|
|
150
149
|
const defaultOpenTime = new Date('01-01-1999');
|
|
@@ -164,56 +163,56 @@ const defaultAuthorizationObject = {
|
|
|
164
163
|
view() {
|
|
165
164
|
return cloneDeep({
|
|
166
165
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
167
|
-
authorizationType:
|
|
166
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
168
167
|
...openStatus
|
|
169
168
|
});
|
|
170
169
|
},
|
|
171
170
|
edit() {
|
|
172
171
|
return cloneDeep({
|
|
173
172
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
174
|
-
authorizationType:
|
|
173
|
+
authorizationType: MicroResourceAuthorizationType.update,
|
|
175
174
|
...closeStatus
|
|
176
175
|
});
|
|
177
176
|
},
|
|
178
177
|
fill() {
|
|
179
178
|
return cloneDeep({
|
|
180
179
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
181
|
-
authorizationType:
|
|
180
|
+
authorizationType: MicroResourceAuthorizationType.fill,
|
|
182
181
|
...openStatus
|
|
183
182
|
});
|
|
184
183
|
},
|
|
185
184
|
resourceGrade() {
|
|
186
185
|
return cloneDeep({
|
|
187
186
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].Grade.Grade`,
|
|
188
|
-
authorizationType:
|
|
187
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
189
188
|
...closeStatus
|
|
190
189
|
});
|
|
191
190
|
},
|
|
192
191
|
questionGrade() {
|
|
193
192
|
return cloneDeep({
|
|
194
193
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].Grade`,
|
|
195
|
-
authorizationType:
|
|
194
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
196
195
|
...closeStatus
|
|
197
196
|
});
|
|
198
197
|
},
|
|
199
198
|
areAnswersCorrect() {
|
|
200
199
|
return cloneDeep({
|
|
201
200
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].AreAnswersCorrect`,
|
|
202
|
-
authorizationType:
|
|
201
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
203
202
|
...closeStatus
|
|
204
203
|
});
|
|
205
204
|
},
|
|
206
205
|
answerNotes() {
|
|
207
206
|
return cloneDeep({
|
|
208
207
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].AnswerNotes[]`,
|
|
209
|
-
authorizationType:
|
|
208
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
210
209
|
...closeStatus
|
|
211
210
|
});
|
|
212
211
|
},
|
|
213
212
|
isCorrect() {
|
|
214
213
|
return cloneDeep({
|
|
215
214
|
propertyPath: `[${resourceIdPlaceholder}].Quiz.Questions[].Answers[].IsCorrect`,
|
|
216
|
-
authorizationType:
|
|
215
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
217
216
|
...closeStatus,
|
|
218
217
|
collectionItemType: 'Resources'
|
|
219
218
|
});
|
|
@@ -222,6 +221,9 @@ const defaultAuthorizationObject = {
|
|
|
222
221
|
function getQuizDefaultAuthorizations() {
|
|
223
222
|
return [defaultAuthorizationObject.view(), defaultAuthorizationObject.fill(), ...getPublishAuthorization()];
|
|
224
223
|
}
|
|
224
|
+
function getResourceDefaultAuthorizations() {
|
|
225
|
+
return [defaultAuthorizationObject.view()];
|
|
226
|
+
}
|
|
225
227
|
function getPublishAuthorization() {
|
|
226
228
|
return [defaultAuthorizationObject.resourceGrade(), defaultAuthorizationObject.questionGrade(), defaultAuthorizationObject.areAnswersCorrect(), defaultAuthorizationObject.answerNotes(), defaultAuthorizationObject.isCorrect()];
|
|
227
229
|
}
|
|
@@ -243,6 +245,88 @@ const defaultTrackTextChangesStyle = {
|
|
|
243
245
|
tooltipButtonsContainer: 'display: flex; justify-content: space-between; height: fit-content;'
|
|
244
246
|
};
|
|
245
247
|
|
|
248
|
+
const dialogsSubmitActionButtons = {
|
|
249
|
+
save: 'שמור',
|
|
250
|
+
approve: 'אשר',
|
|
251
|
+
delete: 'מחק',
|
|
252
|
+
add: 'הוסף',
|
|
253
|
+
submit: 'הגש',
|
|
254
|
+
pageNavigation: 'צא מהדף',
|
|
255
|
+
understand: 'הבנתי'
|
|
256
|
+
};
|
|
257
|
+
const dialogsCloseActionButtons = {
|
|
258
|
+
pageNavigation: 'הישאר'
|
|
259
|
+
};
|
|
260
|
+
const dialogsTitles = {
|
|
261
|
+
serverError: 'התרחשה שגיאה בשרת',
|
|
262
|
+
userError: 'באסה...',
|
|
263
|
+
cancelAttachedCollections: 'ביטול שיוך מארזים',
|
|
264
|
+
attachCollections: 'שיוך מארזי למידה לכל המשתמשים',
|
|
265
|
+
deleteResources: 'מחיקת משאבים',
|
|
266
|
+
deleteResource: 'מחיקת משאב',
|
|
267
|
+
deleteCollegeResource: 'מחיקת תיק יישום',
|
|
268
|
+
deleteCollection: 'מחיקת מארז',
|
|
269
|
+
addResource: 'הוספת משאב חדש',
|
|
270
|
+
addUser: 'הוספת משתמש',
|
|
271
|
+
editResource: 'עריכת משאב',
|
|
272
|
+
updateResources: 'עדכון משאבים',
|
|
273
|
+
editUser: 'עריכת משתמש',
|
|
274
|
+
editTeacher: 'עריכת מורה',
|
|
275
|
+
editStudent: 'עריכת חניך',
|
|
276
|
+
editCollectionPriority: 'שינוי עדיפות למארז',
|
|
277
|
+
editCollection: 'עריכת מארז למידה',
|
|
278
|
+
editCollections: 'עריכת מארזים למשתמש',
|
|
279
|
+
deleteGroups: 'מחיקת קבוצות',
|
|
280
|
+
timeoutError: 'הבקשה כבדה מידי',
|
|
281
|
+
pageNavigation: 'יציאה מהדף',
|
|
282
|
+
quizSubmission: 'הגשת מבחן',
|
|
283
|
+
notAuthorized: 'אין גישה',
|
|
284
|
+
addExistingUser: 'אדם זה כבר משוייך',
|
|
285
|
+
addedStructWithExistingUsers: 'שיוך גוף עם אנשים קיימים',
|
|
286
|
+
resetQuiz: 'איפוס המבחן לחניך',
|
|
287
|
+
removeUserFromPage: 'הסרת יוזר מעמוד',
|
|
288
|
+
removeUserFromStruct: 'הסרת יוזר מגוף',
|
|
289
|
+
studentStartedLesson: "התחלת שיעור פרונטלי",
|
|
290
|
+
realTimeError: "תקלה בתכונות זמן אמת",
|
|
291
|
+
realTimeUnavailable: "פיצ'ר זמן אמת לא זמין"
|
|
292
|
+
};
|
|
293
|
+
const dialogsDescriptions = {
|
|
294
|
+
defaultInsurance: 'האם הינך בטוח כי ברצונך לבצע שינוים אלו?',
|
|
295
|
+
unsavedChanges: 'האם הינך בטוח כי ברצונך לצאת? השינויים שבוצעו לא ישמרו',
|
|
296
|
+
serverError: 'נראה שנתקלנו בתקלה, יש לנסות לרענן את הדף',
|
|
297
|
+
timeoutError: 'הרגת אותנו... יש לנסות בקשה פשוטה יותר',
|
|
298
|
+
criticalServerError: 'נראה שנתקלנו בתקלה, יש לבצע התחברות מחדש',
|
|
299
|
+
forbiddenServerError: 'נראה שאין לך הרשאות לביצוע פעולה זו. ',
|
|
300
|
+
cancelAttachedCollections: 'האם אתה בטוח שברצונך למחוק מארזים אלו ממשתמשים נבחרים?',
|
|
301
|
+
attachCollections: 'האם את\ה בטוח\ה שברצונך לשייך את המארזים למשתמשים הנבחרים?',
|
|
302
|
+
editCollectionPriority: 'האם את/ה בטוח/ה שברצונך לשנות את עדיפות המארז הנבחר?',
|
|
303
|
+
deleteResources: 'האם את/ה בטוח/ה שברצונך למחוק משאבים אלו?',
|
|
304
|
+
deleteResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה?',
|
|
305
|
+
deleteCollegeResource: 'האם את/ה בטוח/ה שברצונך למחוק תיק יישום זה?',
|
|
306
|
+
updateMicroResourcesOpeningTime: 'האם ברצונך לעדכן את זמני הפתיחה של כלל המשאבים לזמני פתיחת המטלה?',
|
|
307
|
+
editUser: 'האם את/ה בטוח/ה שברצונך לערוך משתמש זה?',
|
|
308
|
+
deleteGroups: 'האם אתה בטוח שברצונך למחוק קבוצות אלו?',
|
|
309
|
+
deleteCollection: 'האם את/ה בטוח/ה שברצונך למחוק מארז זה?',
|
|
310
|
+
deleteLastResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה ? המחיקה תוביל למחיקת המארז',
|
|
311
|
+
addExistingUser: 'האם תרצה להחליף את התפקיד שלו לתפקיד זה?',
|
|
312
|
+
addedStructWithExistingUsers: 'חלק מהאנשים ששייכת מהגוף כבר משוייכים לעמוד',
|
|
313
|
+
quizPartialSubmission: 'לתשומת ליבך חלק מהשאלות לא נענו במלואן. האם ברצונך להמשיך ולהגיש את המבחן?',
|
|
314
|
+
notAuthorized: 'איי איי איי, אין לך גישה לעמוד הזה',
|
|
315
|
+
resetQuiz: 'איפוס המבחן לחניך ימחק את כל התשובות והציון. לא ניתן יהיה לשחזר מידע זה לאחר האיפוס.',
|
|
316
|
+
removeUserFromPage: 'הסרת המשתמש מהעמוד תמחק את כל הנתונים שלו- כולל נתוני המבחנים אם ישנם, באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?',
|
|
317
|
+
removeUserFromStruct: 'הסרת המשתמש מהגוף תמחק את כל הנתונים שלו באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?',
|
|
318
|
+
studentStartedLesson: "חניך/ה יקר/ה, את/ה מצטרפ/ת לשיעור פרונטאלי. ",
|
|
319
|
+
realTimeError: "באסה, לא הצלחנו לחבר אותך לתכונות ההשתלטות, ניתן לרענן את הדף לניסיון חוזר",
|
|
320
|
+
realTimeUnavailable: "נראה שמישהו התחבר למשתמש במחשב אחר, ניתן לנסות לרענן את הדף לחידוש החיבור"
|
|
321
|
+
};
|
|
322
|
+
const dialogsNotes = {
|
|
323
|
+
resetQuiz: '*שימו לב: אם מועד המענה למבחן הסתיים, יש לעדכן את הרשאת מענה לחניך.'
|
|
324
|
+
};
|
|
325
|
+
const insuranceDialogPageNavigationData = {
|
|
326
|
+
title: dialogsTitles.pageNavigation, description: dialogsDescriptions.unsavedChanges, submitActionButton: dialogsSubmitActionButtons.pageNavigation,
|
|
327
|
+
closeActionButton: dialogsCloseActionButtons.pageNavigation
|
|
328
|
+
};
|
|
329
|
+
|
|
246
330
|
const uploadsProgressMetadataTypes = {
|
|
247
331
|
story: 'story',
|
|
248
332
|
pdf: 'pdf',
|
|
@@ -281,6 +365,8 @@ const uploadsManagerKeys = {
|
|
|
281
365
|
resource: 'משאב',
|
|
282
366
|
collection: 'מארז',
|
|
283
367
|
};
|
|
368
|
+
const maxImageHeight = 3000;
|
|
369
|
+
const maxImageWidth = 3000;
|
|
284
370
|
|
|
285
371
|
const toastsTemplatesKeys = {
|
|
286
372
|
chromeBrowserVersion: 'chromeBrowserVersion',
|
|
@@ -300,16 +386,6 @@ const toastStates = {
|
|
|
300
386
|
preEnter: 'pre-enter',
|
|
301
387
|
enter: 'enter'
|
|
302
388
|
};
|
|
303
|
-
const getMongoMethodsDisplayedNamesMap = (mongoUpdates, authenticationPaths) => ({
|
|
304
|
-
[mongoUpdates.Methods.Attach]: 'שיוך',
|
|
305
|
-
[mongoUpdates.Methods.Create]: 'יצירה',
|
|
306
|
-
[mongoUpdates.Methods.AddOrUpdate]: 'עדכון',
|
|
307
|
-
[mongoUpdates.Methods.Basic]: 'עדכון',
|
|
308
|
-
[mongoUpdates.Methods.Delete]: 'מחיקה',
|
|
309
|
-
[mongoUpdates.Submethods.Duplicate]: 'שכפול',
|
|
310
|
-
[mongoUpdates.Methods.ListItemDeletion]: 'מחיקה',
|
|
311
|
-
[getSignUpMethod(authenticationPaths)]: 'הרשמה'
|
|
312
|
-
});
|
|
313
389
|
const statusCodes = {
|
|
314
390
|
'genericError': (wordToReplace) => `פעולת ${wordToReplace} נכשלה. אנא בצעו את הפעולה פעם נוספת`,
|
|
315
391
|
'401': (wordToReplace) => `פעולת ${wordToReplace} נכשלה. אנא התחבר לאתר מחדש.`,
|
|
@@ -327,26 +403,23 @@ const toastsKeys = {
|
|
|
327
403
|
skipToast: 'skipToast'
|
|
328
404
|
};
|
|
329
405
|
const skipToastHeader = new HttpHeaders().set(toastsKeys.skipToastHeader, 'true');
|
|
330
|
-
const
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
error: `יש לבחור משאבים לפני ביצוע הפעולה.`
|
|
348
|
-
}
|
|
349
|
-
});
|
|
406
|
+
const toastsTemplates = {
|
|
407
|
+
[toastsTemplatesKeys.chromeBrowserVersion]: {
|
|
408
|
+
title: 'גרסאת כרום',
|
|
409
|
+
information: 'לתשומת ליבך, ביה"ס הדיגיטלי עובד הכי טוב בגרסאות כרום 97 ומעלה.'
|
|
410
|
+
},
|
|
411
|
+
[toastsTemplatesKeys.addOrUpdateNotebookSuccess]: {
|
|
412
|
+
title: `פעולת עדכון מחברת`,
|
|
413
|
+
success: `פעולת עדכון מחברת הצליחה`
|
|
414
|
+
},
|
|
415
|
+
[toastsTemplatesKeys.addOrUpdateNotebookError]: {
|
|
416
|
+
title: `פעולת עדכון מחברת`,
|
|
417
|
+
error: `פעולת עדכון מחברת נכשלה`
|
|
418
|
+
},
|
|
419
|
+
[toastsTemplatesKeys.hadrachaToolBarError]: {
|
|
420
|
+
title: `פעולת סרגל כלים`,
|
|
421
|
+
error: `יש לבחור משאבים לפני ביצוע הפעולה.`
|
|
422
|
+
}
|
|
350
423
|
};
|
|
351
424
|
|
|
352
425
|
const errorHeadersToSet = {
|
|
@@ -356,6 +429,7 @@ const errorHeadersToSet = {
|
|
|
356
429
|
[uploadsManagerKeys.reportUploadProgressId]: uploadsManagerKeys.reportUploadProgressIdHeader,
|
|
357
430
|
[toastsKeys.skipToast]: toastsKeys.skipToastHeader
|
|
358
431
|
};
|
|
432
|
+
const globalErrorHandlingHeader = 'Global-Error-Handling';
|
|
359
433
|
|
|
360
434
|
const videoPreviewSupportedMimes = ['mp4', 'webm', 'ogg'];
|
|
361
435
|
const audioPreviewSupportedMimes = ['mpeg', 'wav', 'x-wav', 'ogg'];
|
|
@@ -367,7 +441,7 @@ const filesSuffixes = {
|
|
|
367
441
|
[uploadsProgressMetadataTypes.video]: ['video', 'mp4', 'mkv', 'avi', 'mov', 'wmv', 'flv', '3gp', 'webm']
|
|
368
442
|
};
|
|
369
443
|
const resourcesFilesSuffixes = {
|
|
370
|
-
Story: '
|
|
444
|
+
Story: 'index_lms.html',
|
|
371
445
|
Pdf: '.pdf',
|
|
372
446
|
Video: '.mp4',
|
|
373
447
|
Presentation: '.pptx'
|
|
@@ -389,10 +463,43 @@ const femaleAvatarPath = 'assets/shared/icons/femaleAvatar.svg';
|
|
|
389
463
|
const initialMediaSettings = {
|
|
390
464
|
currentTime: 0,
|
|
391
465
|
isPlaying: false,
|
|
466
|
+
leftVolume: 1,
|
|
467
|
+
rightVolume: 1,
|
|
392
468
|
playbackSpeed: 1,
|
|
393
469
|
id: null
|
|
394
470
|
};
|
|
395
471
|
|
|
472
|
+
const keyboardKeys = {
|
|
473
|
+
space: 32,
|
|
474
|
+
right: 39,
|
|
475
|
+
left: 37,
|
|
476
|
+
enter: 13
|
|
477
|
+
};
|
|
478
|
+
|
|
479
|
+
const radioButtonTypes = {
|
|
480
|
+
disabled: 'disabled',
|
|
481
|
+
error: 'error',
|
|
482
|
+
checked: 'checked',
|
|
483
|
+
completed: 'completed'
|
|
484
|
+
};
|
|
485
|
+
|
|
486
|
+
const regexExpressions = {
|
|
487
|
+
digitsOnly: /^[0-9]*$/,
|
|
488
|
+
templateInterpolation: /{{(.+?)}}/g,
|
|
489
|
+
sevenDigitsLength: /^\d{7}$/,
|
|
490
|
+
militaryIdLength: /^\d{7,9}$/,
|
|
491
|
+
curlyBraces: /{ }/g,
|
|
492
|
+
squareBrackets: /\[(.*?)\]/,
|
|
493
|
+
chromeVersion: /Chrome\/(\d+)\./,
|
|
494
|
+
fullDateTime: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}$/,
|
|
495
|
+
fullRangeDateTime: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}-\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}$/,
|
|
496
|
+
rangeDateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}-\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
497
|
+
dateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
498
|
+
chromeVersionRegex: /Chrome\/([0-9.]+)/,
|
|
499
|
+
removeSpacesRegex: /\s+/g,
|
|
500
|
+
phoneNumberTenDigits: /^\d{10}$/
|
|
501
|
+
};
|
|
502
|
+
|
|
396
503
|
const resourceFileTypes = {
|
|
397
504
|
directory: 'Directory'
|
|
398
505
|
};
|
|
@@ -403,7 +510,8 @@ const resourceTypes = {
|
|
|
403
510
|
quiz: 'Quiz',
|
|
404
511
|
exercise: 'Exercise',
|
|
405
512
|
video: 'Video',
|
|
406
|
-
learningUnit: 'learningUnit'
|
|
513
|
+
learningUnit: 'learningUnit',
|
|
514
|
+
text: 'text'
|
|
407
515
|
};
|
|
408
516
|
|
|
409
517
|
const routes = {
|
|
@@ -527,22 +635,7 @@ function getSignUpFormFieldsByFields(fieldNames) {
|
|
|
527
635
|
return filteredSignUpFormFields;
|
|
528
636
|
}
|
|
529
637
|
|
|
530
|
-
const
|
|
531
|
-
GetOnlineUsers: 'GetOnlineUsers',
|
|
532
|
-
LessonStateUpdate: 'LessonStateUpdate',
|
|
533
|
-
StudentLessonStateUpdate: 'StudentLessonStateUpdate',
|
|
534
|
-
StartLesson: 'StartLesson',
|
|
535
|
-
SendMessage: 'SendMessage',
|
|
536
|
-
ConnectionMessage: 'ConnectionMessage',
|
|
537
|
-
OnlineUsers: 'OnlineUsers',
|
|
538
|
-
LessonUsers: 'LessonUsers',
|
|
539
|
-
LessonState: 'LessonState',
|
|
540
|
-
GetConnectedInControlUsers: 'GetConnectedInControlUsers',
|
|
541
|
-
ConnectedInControlUsers: 'ConnectedInControlUsers',
|
|
542
|
-
UserJoined: 'UserJoined',
|
|
543
|
-
ReceivedMessage: 'ReceivedMessage',
|
|
544
|
-
RemoveStudent: 'RemoveStudent'
|
|
545
|
-
};
|
|
638
|
+
const structHierarchyTreeMaxHeight = 2;
|
|
546
639
|
|
|
547
640
|
const svgsStrings = {
|
|
548
641
|
edit: '<svg xmlns="http://www.w3.org/2000/svg" width="17.002" height="16.25" viewBox="0 0 17.002 17.258"><path id="Path_784" data-name="Path 784" d="M105.89,340.545l.742-.742a3.146,3.146,0,0,1,4.45,4.45l-.742.742m-4.45-4.45a5.246,5.246,0,0,0,4.45,4.45m-4.45-4.45-6.818,6.818a10.889,10.889,0,0,0-.887.947,5.217,5.217,0,0,0-.6.969,10.97,10.97,0,0,0-.448,1.221l-.875,2.626m14.082-8.131-6.818,6.818a10.89,10.89,0,0,1-.947.887,5.217,5.217,0,0,1-.969.6,10.976,10.976,0,0,1-1.221.448l-2.626.875m0,0-.642.215a.85.85,0,0,1-1.074-1.074l.215-.642m1.5,1.5-1.5-1.5" transform="translate(-95.502 -338.16)" fill="none" stroke-width="1"/></svg>',
|
|
@@ -572,7 +665,7 @@ const svgsStrings = {
|
|
|
572
665
|
struct: '<svg id="user-scan" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path id="Path_2558" data-name="Path 2558" d="M10,9.185A2.185,2.185,0,1,0,12.185,7,2.185,2.185,0,0,0,10,9.185" transform="translate(-0.185 -0.13)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2559" data-name="Path 2559" d="M4,8.371V6.185A2.185,2.185,0,0,1,6.185,4H8.371" transform="translate(-0.074 -0.074)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2560" data-name="Path 2560" d="M4,16v2.185a2.185,2.185,0,0,0,2.185,2.185H8.371" transform="translate(-0.074 -0.297)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2561" data-name="Path 2561" d="M16,4h2.185a2.185,2.185,0,0,1,2.185,2.185V8.371" transform="translate(-0.297 -0.074)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2562" data-name="Path 2562" d="M16,20.371h2.185a2.185,2.185,0,0,0,2.185-2.185V16" transform="translate(-0.297 -0.297)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2563" data-name="Path 2563" d="M8,16.185A2.185,2.185,0,0,1,10.185,14h4.371a2.185,2.185,0,0,1,2.185,2.185" transform="translate(-0.371 -0.118)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>',
|
|
573
666
|
id: '<svg id="id_1_" data-name="id (1)" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path id="Path_2547" data-name="Path 2547" d="M3,4,3,6.775A2.814,2.814,0,0,1,5.85,4h11.4A2.814,2.814,0,0,1,20.1,6.775v9.251a2.814,2.814,0,0,1-2.85,2.775H5.85A2.814,2.814,0,0,1,3,16.026Z" transform="translate(0.449 0.599)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2548" data-name="Path 2548" d="M9.3,10.3,7,10.3A2.3,2.3,0,1,0,9.3,8,2.3,2.3,0,0,0,7,10.3" transform="translate(-0.21 -0.24)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2549" data-name="Path 2549" d="M15,8h2.3" transform="translate(-0.204 0)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2550" data-name="Path 2550" d="M15,12h2.3" transform="translate(-0.204)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2551" data-name="Path 2551" d="M7,16H18.5" transform="translate(-0.749 0)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>',
|
|
574
667
|
clipboardText: '<svg id="clipboard-text" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 18 18"><path id="Path_2572" data-name="Path 2572" d="M8,5H6.5A1.5,1.5,0,0,0,5,6.5v9A1.5,1.5,0,0,0,6.5,17H14a1.5,1.5,0,0,0,1.5-1.5v-9A1.5,1.5,0,0,0,14,5H12.5" transform="translate(-1.25 -1.25)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2574" data-name="Path 2574" d="M9,12h4.5" transform="translate(-2.25 -2.25)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2576" data-name="Path 2576" d="M9,12h4.5" transform="translate(-2.25 -5.25)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2575" data-name="Path 2575" d="M9,16h4.5" transform="translate(-2.25 -3.25)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>',
|
|
575
|
-
audio: '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 10.7143C1 10.2596 1.16857 9.82359 1.46863 9.5021C1.76869 9.18061 2.17565 9 2.6 9H3.4C3.82435 9 4.23131 9.18061 4.53137 9.5021C4.83143 9.82359 5 10.2596 5 10.7143V13.2857C5 13.7404 4.83143 14.1764 4.53137 14.4979C4.23131 14.8194 3.82435 15 3.4 15H2.6C2.17565 15 1.76869 14.8194 1.46863 14.4979C1.16857 14.1764 1 13.7404 1 13.2857V10.7143Z" stroke-width="
|
|
668
|
+
audio: '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 10.7143C1 10.2596 1.16857 9.82359 1.46863 9.5021C1.76869 9.18061 2.17565 9 2.6 9H3.4C3.82435 9 4.23131 9.18061 4.53137 9.5021C4.83143 9.82359 5 10.2596 5 10.7143V13.2857C5 13.7404 4.83143 14.1764 4.53137 14.4979C4.23131 14.8194 3.82435 15 3.4 15H2.6C2.17565 15 1.76869 14.8194 1.46863 14.4979C1.16857 14.1764 1 13.7404 1 13.2857V10.7143Z" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/><path d="M11 10.7143C11 10.2596 11.1686 9.82359 11.4686 9.5021C11.7687 9.18061 12.1757 9 12.6 9H13.4C13.8243 9 14.2313 9.18061 14.5314 9.5021C14.8314 9.82359 15 10.2596 15 10.7143V13.2857C15 13.7404 14.8314 14.1764 14.5314 14.4979C14.2313 14.8194 13.8243 15 13.4 15H12.6C12.1757 15 11.7687 14.8194 11.4686 14.4979C11.1686 14.1764 11 13.7404 11 13.2857V10.7143Z" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 11V8.27273C1 6.34388 1.7375 4.49403 3.05025 3.13013C4.36301 1.76623 6.14348 1 8 1C9.85652 1 11.637 1.76623 12.9497 3.13013C14.2625 4.49403 15 6.34388 15 8.27273V11" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
576
669
|
collection: '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="21" height="22" viewBox="0 0 21 18"><defs><clipPath id="clip-path"><rect id="Rectangle_2250" data-name="Rectangle 2250" width="16" height="18" fill="none" stroke-width="1"/></clipPath></defs><g id="Group_1560" data-name="Group 1560" transform="translate(4 4)"><path id="Path_2888" data-name="Path 2888" d="M0,0H24V24H0Z" transform="translate(-4 -4)" fill="none"/><g id="Group_1559" data-name="Group 1559" transform="translate(0 -1)" clip-path="url(#clip-path)"><path id="Path_2886" data-name="Path 2886" d="M15,1V17H3a2,2,0,0,1-2-2V3A2,2,0,0,1,3,1Z" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_2887" data-name="Path 2887" d="M15,13H3a2,2,0,0,0-2,2" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line id="Line_438" data-name="Line 438" x2="6" transform="translate(5 5)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>',
|
|
577
670
|
exercise: '<svg id="Group_882" data-name="Group 882" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16.005" height="16" viewBox="0 0 16.005 16"><defs><clipPath id="clip-path"><rect id="Rectangle_1679" data-name="Rectangle 1679" width="16.005" height="16" fill="none"/></clipPath></defs><g id="Group_881" data-name="Group 881" clip-path="url(#clip-path)"><path id="Path_1277" data-name="Path 1277" d="M9.829,10.33H3.638a.387.387,0,0,1,0-.774H9.829a.387.387,0,0,1,0,.774" /><path id="Path_1278" data-name="Path 1278" d="M7.894,13.039H3.638a.387.387,0,1,1,0-.774H7.894a.387.387,0,1,1,0,.774" /><path id="Path_1279" data-name="Path 1279" d="M15.916,6.88l-3.253,0c-1.712-.033-2.655-.049-3.315-.71-.68-.679-.68-1.647-.68-3.576V.658h.774V2.592c0,1.715,0,2.576.454,3.03.439.439,1.271.454,2.781.482l.151,0h3.088Z" /><path id="Path_1280" data-name="Path 1280" d="M12.21,16H3.79A3.794,3.794,0,0,1,0,12.21V3.79A3.794,3.794,0,0,1,3.79,0l6,.052A1.747,1.747,0,0,1,11.04.6l4.477,4.781A1.8,1.8,0,0,1,16,6.619l0,5.591A3.8,3.8,0,0,1,12.21,16M3.787.774A3.019,3.019,0,0,0,.774,3.79v8.42A3.019,3.019,0,0,0,3.79,15.226h8.42a3.02,3.02,0,0,0,3.017-3.016l0-5.592a1.03,1.03,0,0,0-.278-.707l-4.478-4.78A.971.971,0,0,0,9.781.826Z" /></g></svg>',
|
|
578
671
|
genericFile: '<svg class="generic-file-icon" xmlns="http://www.w3.org/2000/svg" width="13.165" height="16.641" viewBox="0 0 13.165 16.641"><g id="file-dots" transform="translate(-3.845 -2.107)"><path id="Path_1460" data-name="Path 1460" d="M15.427,18.641H6.738A1.738,1.738,0,0,1,5,16.9V4.738A1.738,1.738,0,0,1,6.738,3H12.82l4.345,4.345V16.9A1.738,1.738,0,0,1,15.427,18.641Z" transform="translate(-0.655 -0.393)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_1461" data-name="Path 1461" d="M9,14v.009" transform="translate(-1.18 -1.835)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_1462" data-name="Path 1462" d="M12,14v.009" transform="translate(-1.573 -1.835)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_1463" data-name="Path 1463" d="M15,14v.009" transform="translate(-1.966 -1.835)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>',
|
|
@@ -582,6 +675,9 @@ const svgsStrings = {
|
|
|
582
675
|
quiz: '<svg id="Group_888" data-name="Group 888" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14.476" height="16" viewBox="0 0 14.476 16"><defs><clipPath id="clip-path"><rect id="Rectangle_1682" data-name="Rectangle 1682" width="14.476" height="16" fill="none"/></clipPath></defs><g id="Group_887" data-name="Group 887" clip-path="url(#clip-path)"><path id="Path_1288" data-name="Path 1288" d="M9.524,16H4.953c-2.258,0-3.391,0-4.172-.781S0,13.305,0,11.048V6.476c0-2.257,0-3.39.781-4.171.715-.714,1.764-.771,3.407-.78l0,.762c-1.642.009-2.4.088-2.873.557C.762,3.4.762,4.429.762,6.476v4.572c0,2.047,0,3.075.558,3.633s1.585.557,3.633.557H9.524c2.047,0,3.075,0,3.632-.557s.558-1.586.558-3.633V6.476c0-2.047,0-3.074-.558-3.632-.468-.469-1.23-.548-2.872-.557l0-.762c1.643.009,2.693.066,3.407.78.781.781.781,1.914.781,4.171v4.572c0,2.257,0,3.39-.781,4.171S11.781,16,9.524,16" /><path id="Path_1289" data-name="Path 1289" d="M8,9.763H3.048a.286.286,0,1,1,0-.571H8a.286.286,0,1,1,0,.571" /><path id="Path_1290" data-name="Path 1290" d="M8,7.063H3.048a.286.286,0,1,1,0-.571H8a.286.286,0,1,1,0,.571" /><path id="Path_1291" data-name="Path 1291" d="M8,12.476H3.048a.286.286,0,1,1,0-.571H8a.286.286,0,1,1,0,.571" /><path id="Path_1292" data-name="Path 1292" d="M9.143,3.81H5.333A1.526,1.526,0,0,1,3.809,2.286V1.524A1.526,1.526,0,0,1,5.333,0h3.81a1.525,1.525,0,0,1,1.523,1.524v.762A1.525,1.525,0,0,1,9.143,3.81M5.333.762a.763.763,0,0,0-.762.762v.762a.763.763,0,0,0,.762.762h3.81A.762.762,0,0,0,9.9,2.286V1.524A.762.762,0,0,0,9.143.762Z" /><path id="Path_1293" data-name="Path 1293" d="M10.64,7.445a.182.182,0,0,1-.136-.061l-.347-.389a.182.182,0,0,1,.272-.243l.211.237.732-.82a.182.182,0,1,1,.272.243l-.868.972a.182.182,0,0,1-.136.061" /><path id="Path_1294" data-name="Path 1294" d="M10.64,10.146a.182.182,0,0,1-.136-.061L10.157,9.7a.182.182,0,0,1,.272-.243l.211.237.732-.82a.182.182,0,1,1,.272.243l-.868.972a.182.182,0,0,1-.136.061" /><path id="Path_1295" data-name="Path 1295" d="M10.64,12.859A.182.182,0,0,1,10.5,12.8l-.347-.389a.182.182,0,0,1,.272-.243l.211.237.732-.82a.182.182,0,1,1,.272.243l-.868.972a.182.182,0,0,1-.136.061" /></g></svg>',
|
|
583
676
|
story: '<svg xmlns="http://www.w3.org/2000/svg" width="20.554" height="17.009" viewBox="0 0 20.554 17.009"><g id="Group_952" data-name="Group 952" transform="translate(-0.5 -1.491)"> <g id="Group_951" data-name="Group 951"> <path id="Path_1356" data-name="Path 1356" d="M20.063,6.538,11.175,2.093a.889.889,0,0,0-.8,0L1.491,6.538a.886.886,0,0,0-.4.412,1.1,1.1,0,0,0-.1.384v5.124a.89.89,0,0,0,1.778,0V8.647l1.778.711v4.358a.89.89,0,0,0,.492.8,11.458,11.458,0,0,0,5.73,1.706,11.464,11.464,0,0,0,5.73-1.706.891.891,0,0,0,.492-.8V9.358l3-1.2a.891.891,0,0,0,.067-1.621Zm-4.842,6.629-.867.433a8.033,8.033,0,0,1-7.155,0l-.867-.433v-3.1l4.114,1.646a.887.887,0,0,0,.331.062.871.871,0,0,0,.331-.063l4.114-1.646ZM10.777,9.931,4.057,7.242l6.721-3.359L17.5,7.242,10.777,9.931ZM1.889,14.444A.889.889,0,0,0,1,15.333V17.11a.889.889,0,0,0,1.778,0V15.333A.889.889,0,0,0,1.889,14.444Z" stroke="#fff" stroke-width="1"/> </g></g></svg>',
|
|
584
677
|
video: '<svg id="Group_890" data-name="Group 890" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16"><defs><clipPath id="clip-path"><rect id="Rectangle_1683" data-name="Rectangle 1683" width="16" height="16" fill="none"/></clipPath></defs><g id="Group_889" data-name="Group 889" clip-path="url(#clip-path)"> <path id="Path_1296" data-name="Path 1296" d="M8,16a8,8,0,1,1,8-8,8.009,8.009,0,0,1-8,8M8,.762A7.238,7.238,0,1,0,15.238,8,7.246,7.246,0,0,0,8,.762" /> <path id="Path_1297" data-name="Path 1297" d="M6.912,11.431a.88.88,0,0,1-.549-.194c-.507-.38-.544-1.017-.618-2.284-.019-.333-.031-.66-.031-.953s.012-.62.031-.952c.074-1.268.111-1.9.617-2.286.574-.431,1.149-.08,2.02.449.22.133.433.27.619.4.212.149.444.329.678.519.854.7,1.369,1.116,1.369,1.869s-.515,1.171-1.367,1.867c-.236.192-.468.372-.682.521-.184.131-.4.267-.617.4a3.279,3.279,0,0,1-1.47.643M6.93,5.337a.18.18,0,0,0-.11.034c-.224.168-.258.752-.314,1.72-.018.317-.03.629-.03.909s.012.591.03.909c.056.967.09,1.551.315,1.72.145.108.436-.048,1.166-.491.2-.125.4-.25.575-.373.2-.141.417-.309.635-.488.81-.659,1.089-.906,1.089-1.277s-.28-.619-1.088-1.278c-.219-.178-.435-.346-.636-.487-.174-.123-.372-.249-.575-.373A3.108,3.108,0,0,0,6.93,5.337" /></g></svg>',
|
|
678
|
+
text: '<svg width="22" height="22" viewBox="0 0 18 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.1788 6H6.82125L6.75 8.5H7.375C7.6 7.13 7.82 7.01 9.4925 6.95625L9.85875 6.94375V14.5563C9.85875 15.1438 9.73375 15.2837 8.73625 15.375V16H12.2625V15.375C11.2587 15.2837 11.1337 15.145 11.1337 14.5575V6.94375L11.5063 6.95625C13.1788 7.01 13.3987 7.13125 13.6237 8.5H14.2487L14.1788 6Z"/><path d="M5.5 1C4.83696 1 4.20107 1.26339 3.73223 1.73223C3.26339 2.20107 3 2.83696 3 3.5V18.5C3 19.163 3.26339 19.7989 3.73223 20.2678C4.20107 20.7366 4.83696 21 5.5 21H15.5C16.163 21 16.7989 20.7366 17.2678 20.2678C17.7366 19.7989 18 19.163 18 18.5V3.5C18 2.83696 17.7366 2.20107 17.2678 1.73223C16.7989 1.26339 16.163 1 15.5 1H5.5ZM5.5 2.25H15.5C15.8315 2.25 16.1495 2.3817 16.3839 2.61612C16.6183 2.85054 16.75 3.16848 16.75 3.5V18.5C16.75 18.8315 16.6183 19.1495 16.3839 19.3839C16.1495 19.6183 15.8315 19.75 15.5 19.75H5.5C5.16848 19.75 4.85054 19.6183 4.61612 19.3839C4.3817 19.1495 4.25 18.8315 4.25 18.5V3.5C4.25 3.16848 4.3817 2.85054 4.61612 2.61612C4.85054 2.3817 5.16848 2.25 5.5 2.25Z"/></svg>',
|
|
679
|
+
learningunit: '<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 19L6.757 11.649C6.82844 11.4584 6.95632 11.2942 7.12357 11.1782C7.29082 11.0623 7.48948 11.0001 7.693 11H20M4 19H18.026C18.4913 18.9999 18.942 18.8375 19.3004 18.5409C19.6589 18.2443 19.9028 17.832 19.99 17.375L20.986 12.164C21.0098 12.0208 21.0022 11.8741 20.9636 11.7342C20.925 11.5943 20.8564 11.4644 20.7626 11.3536C20.6688 11.2429 20.5519 11.1539 20.4203 11.0928C20.2886 11.0317 20.1452 11.0001 20 11M4 19C3.46957 19 2.96086 18.7893 2.58579 18.4142C2.21071 18.0391 2 17.5304 2 17V6C2 5.46957 2.21071 4.96086 2.58579 4.58579C2.96086 4.21071 3.46957 4 4 4H8L11 7H18C18.5304 7 19.0391 7.21071 19.4142 7.58579C19.7893 7.96086 20 8.46957 20 9V11" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
680
|
+
generic: '<svg class="generic-file-icon" xmlns="http://www.w3.org/2000/svg" width="13.165" height="16.641" viewBox="0 0 13.165 16.641"><g id="file-dots" transform="translate(-3.845 -2.107)"><path id="Path_1460" data-name="Path 1460" d="M15.427,18.641H6.738A1.738,1.738,0,0,1,5,16.9V4.738A1.738,1.738,0,0,1,6.738,3H12.82l4.345,4.345V16.9A1.738,1.738,0,0,1,15.427,18.641Z" transform="translate(-0.655 -0.393)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_1461" data-name="Path 1461" d="M9,14v.009" transform="translate(-1.18 -1.835)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_1462" data-name="Path 1462" d="M12,14v.009" transform="translate(-1.573 -1.835)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path id="Path_1463" data-name="Path 1463" d="M15,14v.009" transform="translate(-1.966 -1.835)" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>',
|
|
585
681
|
success: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g id="success" transform="translate(-268 -524)"><g id="circle-check" transform="translate(268 524)"><path id="Path_1570" data-name="Path 1570" d="M0,0H24V24H0Z" fill="none"/><path id="Path_1571" data-name="Path 1571" d="M12,21.5A9.5,9.5,0,1,1,21.5,12,9.438,9.438,0,0,1,12,21.5ZM3.5,12A8.5,8.5,0,1,0,12,3.5,8.444,8.444,0,0,0,3.5,12Z"/> <path id="Path_1572" data-name="Path 1572" d="M11.25,14.5h-.094a.75.75,0,0,1-.473-.168l-2.156-1.75a.75.75,0,0,1,.945-1.165l1.683,1.366L14.47,9.47A.75.75,0,1,1,15.53,10.53l-3.75,3.75A.75.75,0,0,1,11.25,14.5Z"/></g></g></svg>',
|
|
586
682
|
error: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g id="Error" transform="translate(-310 -524)"><path id="Path_1570" data-name="Path 1570" d="M0,0H24V24H0Z" transform="translate(310 524)" fill="none"/><path id="Path_1571" data-name="Path 1571" d="M12,21.5A9.5,9.5,0,1,1,21.5,12,9.438,9.438,0,0,1,12,21.5ZM3.5,12A8.5,8.5,0,1,0,12,3.5,8.444,8.444,0,0,0,3.5,12Z" transform="translate(310 524)" fill="#ff0a4d"/><line id="Line_433" data-name="Line 433" x1="5" y2="5" transform="translate(319.5 533.5)" fill="none" stroke="#ff0a4d" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line id="Line_434" data-name="Line 434" x2="5" y2="5" transform="translate(319.5 533.5)" fill="none" stroke="#ff0a4d" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>',
|
|
587
683
|
information: '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.75 10.55V7.75M7.75 4.95H7.757M14.75 7.75C14.75 11.616 11.616 14.75 7.75 14.75C3.88401 14.75 0.75 11.616 0.75 7.75C0.75 3.88401 3.88401 0.75 7.75 0.75C11.616 0.75 14.75 3.88401 14.75 7.75Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
@@ -590,6 +686,7 @@ const svgsStrings = {
|
|
|
590
686
|
hadrachaHierarchyResource: '<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.8644 1V5C9.8644 5.26522 9.96966 5.51957 10.157 5.70711C10.3444 5.89464 10.5985 6 10.8634 6H14.8596M9.8644 1H2.87113C2.3412 1 1.83298 1.21071 1.45827 1.58579C1.08356 1.96086 0.873047 2.46957 0.873047 3V17C0.873047 17.5304 1.08356 18.0391 1.45827 18.4142C1.83298 18.7893 2.3412 19 2.87113 19H12.8615C13.3914 19 13.8997 18.7893 14.2744 18.4142C14.6491 18.0391 14.8596 17.5304 14.8596 17V6M9.8644 1L14.8596 6M4.8692 15H10.8634M4.8692 11H10.8634" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
591
687
|
link: '<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.99151 9.25504C7.31542 9.68851 7.72868 10.0472 8.20326 10.3067C8.67783 10.5663 9.20261 10.7206 9.74201 10.7593C10.2814 10.798 10.8228 10.72 11.3295 10.5309C11.8362 10.3417 12.2963 10.0456 12.6786 9.66275L14.9414 7.39769C15.6283 6.6857 16.0085 5.7321 15.9999 4.74229C15.9913 3.75247 15.5946 2.80563 14.8954 2.1057C14.1962 1.40577 13.2503 1.00874 12.2615 1.00014C11.2727 0.991541 10.32 1.37205 9.60877 2.05971L8.31145 3.35079M10.0085 7.74496C9.68458 7.31149 9.27132 6.95281 8.79674 6.69327C8.32217 6.43373 7.79739 6.27939 7.25799 6.24072C6.71859 6.20205 6.17719 6.27995 5.67051 6.46915C5.16383 6.65835 4.70373 6.95441 4.32141 7.33725L2.05864 9.60231C1.37167 10.3143 0.99155 11.2679 1.00014 12.2577C1.00874 13.2475 1.40536 14.1944 2.10458 14.8943C2.80381 15.5942 3.74969 15.9913 4.73851 15.9999C5.72732 16.0085 6.67996 15.628 7.39123 14.9403L8.681 13.6492" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
592
688
|
messagePlus: '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" ><g clip - path="url(#clip0_17_2752)"><path d="M8 9H16" stroke - linecap="round" stroke - linejoin="round"/>< path d="M8 13H14" stroke- linecap="round" stroke - linejoin="round" /> <path d="M12.01 18.594L8 21V18H6C5.20435 18 4.44129 17.6839 3.87868 17.1213C3.31607 16.5587 3 15.7956 3 15V7C3 6.20435 3.31607 5.44129 3.87868 4.87868C4.44129 4.31607 5.20435 4 6 4H18C18.7956 4 19.5587 4.31607 20.1213 4.87868C20.6839 5.44129 21 6.20435 21 7V12.5" stroke - linecap="round" stroke - linejoin="round" /> <path d="M16 19H22" stroke - linecap="round" stroke - linejoin="round" /> <path d="M19 16V22" stroke - linecap="round" stroke - linejoin="round" /> </g>< defs ><clipPath id="clip0_17_2752" ><rect width="24" height = "24" fill ="white" /></clipPath> </defs> </svg>',
|
|
689
|
+
check: '<svg viewBox="0 0 16 16" width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 5L4.66667 9L12 1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>'
|
|
593
690
|
};
|
|
594
691
|
|
|
595
692
|
const system = {
|
|
@@ -598,114 +695,48 @@ const system = {
|
|
|
598
695
|
hadracha: "hadracha"
|
|
599
696
|
};
|
|
600
697
|
|
|
601
|
-
const validatorsNames = {
|
|
602
|
-
invalidIDNumber: 'invalidIDNumber',
|
|
603
|
-
isUniqueIdValidator: 'isUniqueIdValidator',
|
|
604
|
-
pattern: 'pattern',
|
|
605
|
-
required: 'required'
|
|
606
|
-
};
|
|
607
|
-
|
|
608
|
-
const regexExpressions = {
|
|
609
|
-
digitsOnly: /^[0-9]*$/,
|
|
610
|
-
templateInterpolation: /{{(.+?)}}/g,
|
|
611
|
-
sevenDigitsLength: /^\d{7}$/,
|
|
612
|
-
militaryIdLength: /^\d{7,9}$/,
|
|
613
|
-
curlyBraces: /{ }/g,
|
|
614
|
-
squareBrackets: /\[(.*?)\]/,
|
|
615
|
-
chromeVersion: /Chrome\/(\d+)\./,
|
|
616
|
-
fullDateTime: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}$/,
|
|
617
|
-
fullRangeDateTime: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}-\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}$/,
|
|
618
|
-
rangeDateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}-\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
619
|
-
dateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
620
|
-
chromeVersionRegex: /Chrome\/([0-9.]+)/,
|
|
621
|
-
removeSpacesRegex: /\s+/g,
|
|
622
|
-
phoneNumberTenDigits: /^\d{10}$/
|
|
623
|
-
};
|
|
624
|
-
|
|
625
698
|
const tableRowHeights = {
|
|
626
699
|
switchCell: 40,
|
|
627
700
|
doubleLines: 60,
|
|
628
701
|
default: 25
|
|
629
702
|
};
|
|
630
703
|
|
|
631
|
-
const
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
const
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
editCollectionPriority: 'שינוי עדיפות למארז',
|
|
659
|
-
editCollection: 'עריכת מארז למידה',
|
|
660
|
-
editCollections: 'עריכת מארזים למשתמש',
|
|
661
|
-
deleteGroups: 'מחיקת קבוצות',
|
|
662
|
-
timeoutError: 'הבקשה כבדה מידי',
|
|
663
|
-
pageNavigation: 'יציאה מהדף',
|
|
664
|
-
quizSubmission: 'הגשת מבחן',
|
|
665
|
-
notAuthorized: 'אין גישה',
|
|
666
|
-
addExistingUser: 'אדם זה כבר משוייך',
|
|
667
|
-
addedStructWithExistingUsers: 'שיוך גוף עם אנשים קיימים',
|
|
668
|
-
resetQuiz: 'איפוס המבחן לחניך',
|
|
669
|
-
removeUserFromPage: 'הסרת יוזר מעמוד',
|
|
670
|
-
removeUserFromStruct: 'הסרת יוזר מגוף',
|
|
671
|
-
};
|
|
672
|
-
const dialogsDescriptions = {
|
|
673
|
-
defaultInsurance: 'האם הינך בטוח כי ברצונך לבצע שינוים אלו?',
|
|
674
|
-
unsavedChanges: 'האם הינך בטוח כי ברצונך לצאת? השינויים שבוצעו לא ישמרו',
|
|
675
|
-
serverError: 'נראה שנתקלנו בתקלה, יש לנסות לרענן את הדף',
|
|
676
|
-
timeoutError: 'הרגת אותנו... יש לנסות בקשה פשוטה יותר',
|
|
677
|
-
criticalServerError: 'נראה שנתקלנו בתקלה, יש לבצע התחברות מחדש',
|
|
678
|
-
forbiddenServerError: 'נראה שאין לך הרשאות לביצוע פעולה זו. ',
|
|
679
|
-
cancelAttachedCollections: 'האם אתה בטוח שברצונך למחוק מארזים אלו ממשתמשים נבחרים?',
|
|
680
|
-
attachCollections: 'האם את\ה בטוח\ה שברצונך לשייך את המארזים למשתמשים הנבחרים?',
|
|
681
|
-
editCollectionPriority: 'האם את/ה בטוח/ה שברצונך לשנות את עדיפות המארז הנבחר?',
|
|
682
|
-
deleteResources: 'האם את/ה בטוח/ה שברצונך למחוק משאבים אלו?',
|
|
683
|
-
deleteResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה?',
|
|
684
|
-
deleteCollegeResource: 'האם את/ה בטוח/ה שברצונך למחוק תיק יישום זה?',
|
|
685
|
-
updateMicroResourcesOpeningTime: 'האם ברצונך לעדכן את זמני הפתיחה של כלל המשאבים לזמני פתיחת המטלה?',
|
|
686
|
-
editUser: 'האם את/ה בטוח/ה שברצונך לערוך משתמש זה?',
|
|
687
|
-
deleteGroups: 'האם אתה בטוח שברצונך למחוק קבוצות אלו?',
|
|
688
|
-
deleteCollection: 'האם את/ה בטוח/ה שברצונך למחוק מארז זה?',
|
|
689
|
-
deleteLastResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה ? המחיקה תוביל למחיקת המארז',
|
|
690
|
-
addExistingUser: 'האם תרצה להחליף את התפקיד שלו לתפקיד זה?',
|
|
691
|
-
addedStructWithExistingUsers: 'חלק מהאנשים ששייכת מהגוף כבר משוייכים לעמוד',
|
|
692
|
-
quizPartialSubmission: 'לתשומת ליבך חלק מהשאלות לא נענו במלואן. האם ברצונך להמשיך ולהגיש את המבחן?',
|
|
693
|
-
notAuthorized: 'איי איי איי, אין לך גישה לעמוד הזה',
|
|
694
|
-
resetQuiz: 'איפוס המבחן לחניך ימחק את כל התשובות והציון. לא ניתן יהיה לשחזר מידע זה לאחר האיפוס.',
|
|
695
|
-
removeUserFromPage: 'הסרת המשתמש מהעמוד תמחק את כל הנתונים שלו- כולל נתוני המבחנים אם ישנם, באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?',
|
|
696
|
-
removeUserFromStruct: 'הסרת המשתמש מהגוף תמחק את כל הנתונים שלו באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?'
|
|
697
|
-
};
|
|
698
|
-
const dialogsNotes = {
|
|
699
|
-
resetQuiz: '*שימו לב: אם מועד המענה למבחן הסתיים, יש לעדכן את הרשאת מענה לחניך.'
|
|
700
|
-
};
|
|
701
|
-
const insuranceDialogPageNavigationData = {
|
|
702
|
-
title: dialogsTitles.pageNavigation, description: dialogsDescriptions.unsavedChanges, submitActionButton: dialogsSubmitActionButtons.pageNavigation,
|
|
703
|
-
closeActionButton: dialogsCloseActionButtons.pageNavigation
|
|
704
|
+
const calendarActiveColorCssVariable = '--active-calendar-color';
|
|
705
|
+
const calendarHoverColorCssVariable = '--hover-calendar-color';
|
|
706
|
+
const calendarLibrarySelector = 'mat-calendar';
|
|
707
|
+
const calendarLibraryBodyCellSelector = 'td.mat-calendar-body-cell';
|
|
708
|
+
const timerActiveColorCssVariable = '--active-timer-color';
|
|
709
|
+
const timerHoverColorCssVariable = '--hover-timer-color';
|
|
710
|
+
const timerItemSizeColorCssVariable = '--hover-timer-color';
|
|
711
|
+
const dayInMilliSeconds = 60 * 60 * 24 * 1000;
|
|
712
|
+
const secondInMilliseconds = 1000;
|
|
713
|
+
const minuteInMilliseconds = 60 * secondInMilliseconds;
|
|
714
|
+
const timePattern = 'HH:mm:ss';
|
|
715
|
+
|
|
716
|
+
const sixMonthsInDays = 180;
|
|
717
|
+
|
|
718
|
+
const additionTagName = 'ins';
|
|
719
|
+
const deletionTagName = 'del';
|
|
720
|
+
const editorContainerElementId = 'editor-container';
|
|
721
|
+
const mouseEnterHandlerKey = 'mouseEnterHandler';
|
|
722
|
+
const mouseLeaveHandlerKey = 'mouseLeaveHandler';
|
|
723
|
+
const mouseEnter = 'mouseenter';
|
|
724
|
+
const mouseLeave = 'mouseleave';
|
|
725
|
+
|
|
726
|
+
const validatorsNames = {
|
|
727
|
+
invalidIDNumber: 'invalidIDNumber',
|
|
728
|
+
isUniqueIdValidator: 'isUniqueIdValidator',
|
|
729
|
+
pattern: 'pattern',
|
|
730
|
+
required: 'required'
|
|
704
731
|
};
|
|
705
732
|
|
|
733
|
+
/**
|
|
734
|
+
* @file Automatically generated by barrelsby.
|
|
735
|
+
*/
|
|
736
|
+
|
|
706
737
|
/**
|
|
707
738
|
* Generated bundle index. Do not edit.
|
|
708
739
|
*/
|
|
709
740
|
|
|
710
|
-
export { activeDragPath, anySubFileTypeWildCard, assignmentMetadata, attributes, audioAndVideoPreviewSupportedMimes, audioAndVideoPreviewSupportedSuffixes, audioPreviewSupportedMimes, audioPreviewSupportedSuffixes, calendarActiveColorCssVariable, calendarHoverColorCssVariable, calendarLibraryBodyCellSelector, calendarLibrarySelector, collectionFormKeys, collectionFormValues, datePlaceHolder, dateRangePlaceHolder, dateRangeTimeRangePlaceHolder, dateRangeTimeRangeWithoutSecondsPlaceHolder, dateTimePlaceHolder, dateTimeWithoutSecondsPlaceHolder, dayInMilliSeconds, defaultAuthorizationObject, defaultCloseTime, defaultGrade, defaultOpenTime, defaultPlaceholder, defaultTrackTextChangesStyle, defaultUploadsManagerTitle, defaultUserId, dialogsCloseActionButtons, dialogsDescriptions, dialogsNotes, dialogsSubmitActionButtons, dialogsTitles, dragPath, errorHeadersToSet, femaleAvatarPath, filesSuffixes, formStatuses, formatError, formsErrorMessages, generalKeys, getMediaDefaultAuthorizations,
|
|
741
|
+
export { activeDragPath, additionTagName, anySubFileTypeWildCard, assignmentMetadata, attributes, audioAndVideoPreviewSupportedMimes, audioAndVideoPreviewSupportedSuffixes, audioPreviewSupportedMimes, audioPreviewSupportedSuffixes, calendarActiveColorCssVariable, calendarHoverColorCssVariable, calendarLibraryBodyCellSelector, calendarLibrarySelector, checkboxTypes, collectionFormKeys, collectionFormValues, datePlaceHolder, dateRangePlaceHolder, dateRangeTimeRangePlaceHolder, dateRangeTimeRangeWithoutSecondsPlaceHolder, dateTimePlaceHolder, dateTimeWithoutSecondsPlaceHolder, dayInMilliSeconds, defaultAuthorizationObject, defaultCloseTime, defaultGrade, defaultOpenTime, defaultPlaceholder, defaultTrackTextChangesStyle, defaultUploadsManagerTitle, defaultUserId, deletionTagName, dialogsCloseActionButtons, dialogsDescriptions, dialogsNotes, dialogsSubmitActionButtons, dialogsTitles, dragPath, editorContainerElementId, errorHeadersToSet, femaleAvatarPath, filesSuffixes, formStatuses, formatError, formsErrorMessages, generalKeys, getMediaDefaultAuthorizations, getPropertyPathsOfPublishAuthorization, getPublishAuthorization, getQuizDefaultAuthorizations, getResourceDefaultAuthorizations, getSignUpFormFieldsByFields, getSignUpMethod, globalErrorHandlingHeader, herumClosedListMultiSelectType, initialMediaSettings, inputs, insuranceDialogPageNavigationData, keyboardAsciiCodes, keyboardKeys, maleAvatarPath, maxImageHeight, maxImageWidth, minDateError, minuteInMilliseconds, mouseEnter, mouseEnterHandlerKey, mouseLeave, mouseLeaveHandlerKey, previewImageKey, radioButtonTypes, readynessDisplayName, regexExpressions, resourceColumnPrefix, resourceFileTypes, resourceFormKeys, resourceIdPlaceholder, resourceKeys, resourceTypes, resourcesFilesSuffixes, routes, secondInMilliseconds, sideBarSizeButtonId, signUpFormFields, signUpFormFieldsData, signUpFormKeys, sixMonthsInDays, skipToastHeader, startEndDateError, statusCodes, structHierarchyTreeMaxHeight, svgsStrings, system, tableRowHeights, timePattern, timePlaceHolder, timeWithoutSecondsPlaceHolder, timerActiveColorCssVariable, timerHoverColorCssVariable, timerItemSizeColorCssVariable, timestampError, toastContext, toastStates, toastStatuses, toastsKeys, toastsTemplates, toastsTemplatesKeys, types, uploadStatuses, uploadsManagerKeys, uploadsProgressMetadataTypes, validatorsNames, videoPreviewSupportedMimes, videoPreviewSupportedSuffixes, viewPermissionLabel };
|
|
711
742
|
//# sourceMappingURL=herum-shared-constants.mjs.map
|