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
|
@@ -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
|
|
|
@@ -154,56 +163,56 @@ const defaultAuthorizationObject = {
|
|
|
154
163
|
view() {
|
|
155
164
|
return cloneDeep({
|
|
156
165
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
157
|
-
authorizationType:
|
|
166
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
158
167
|
...openStatus
|
|
159
168
|
});
|
|
160
169
|
},
|
|
161
170
|
edit() {
|
|
162
171
|
return cloneDeep({
|
|
163
172
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
164
|
-
authorizationType:
|
|
173
|
+
authorizationType: MicroResourceAuthorizationType.update,
|
|
165
174
|
...closeStatus
|
|
166
175
|
});
|
|
167
176
|
},
|
|
168
177
|
fill() {
|
|
169
178
|
return cloneDeep({
|
|
170
179
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
171
|
-
authorizationType:
|
|
180
|
+
authorizationType: MicroResourceAuthorizationType.fill,
|
|
172
181
|
...openStatus
|
|
173
182
|
});
|
|
174
183
|
},
|
|
175
184
|
resourceGrade() {
|
|
176
185
|
return cloneDeep({
|
|
177
186
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].Grade.Grade`,
|
|
178
|
-
authorizationType:
|
|
187
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
179
188
|
...closeStatus
|
|
180
189
|
});
|
|
181
190
|
},
|
|
182
191
|
questionGrade() {
|
|
183
192
|
return cloneDeep({
|
|
184
193
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].Grade`,
|
|
185
|
-
authorizationType:
|
|
194
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
186
195
|
...closeStatus
|
|
187
196
|
});
|
|
188
197
|
},
|
|
189
198
|
areAnswersCorrect() {
|
|
190
199
|
return cloneDeep({
|
|
191
200
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].AreAnswersCorrect`,
|
|
192
|
-
authorizationType:
|
|
201
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
193
202
|
...closeStatus
|
|
194
203
|
});
|
|
195
204
|
},
|
|
196
205
|
answerNotes() {
|
|
197
206
|
return cloneDeep({
|
|
198
207
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].AnswerNotes[]`,
|
|
199
|
-
authorizationType:
|
|
208
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
200
209
|
...closeStatus
|
|
201
210
|
});
|
|
202
211
|
},
|
|
203
212
|
isCorrect() {
|
|
204
213
|
return cloneDeep({
|
|
205
214
|
propertyPath: `[${resourceIdPlaceholder}].Quiz.Questions[].Answers[].IsCorrect`,
|
|
206
|
-
authorizationType:
|
|
215
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
207
216
|
...closeStatus,
|
|
208
217
|
collectionItemType: 'Resources'
|
|
209
218
|
});
|
|
@@ -212,6 +221,9 @@ const defaultAuthorizationObject = {
|
|
|
212
221
|
function getQuizDefaultAuthorizations() {
|
|
213
222
|
return [defaultAuthorizationObject.view(), defaultAuthorizationObject.fill(), ...getPublishAuthorization()];
|
|
214
223
|
}
|
|
224
|
+
function getResourceDefaultAuthorizations() {
|
|
225
|
+
return [defaultAuthorizationObject.view()];
|
|
226
|
+
}
|
|
215
227
|
function getPublishAuthorization() {
|
|
216
228
|
return [defaultAuthorizationObject.resourceGrade(), defaultAuthorizationObject.questionGrade(), defaultAuthorizationObject.areAnswersCorrect(), defaultAuthorizationObject.answerNotes(), defaultAuthorizationObject.isCorrect()];
|
|
217
229
|
}
|
|
@@ -233,6 +245,88 @@ const defaultTrackTextChangesStyle = {
|
|
|
233
245
|
tooltipButtonsContainer: 'display: flex; justify-content: space-between; height: fit-content;'
|
|
234
246
|
};
|
|
235
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
|
+
|
|
236
330
|
const uploadsProgressMetadataTypes = {
|
|
237
331
|
story: 'story',
|
|
238
332
|
pdf: 'pdf',
|
|
@@ -271,6 +365,8 @@ const uploadsManagerKeys = {
|
|
|
271
365
|
resource: 'משאב',
|
|
272
366
|
collection: 'מארז',
|
|
273
367
|
};
|
|
368
|
+
const maxImageHeight = 3000;
|
|
369
|
+
const maxImageWidth = 3000;
|
|
274
370
|
|
|
275
371
|
const toastsTemplatesKeys = {
|
|
276
372
|
chromeBrowserVersion: 'chromeBrowserVersion',
|
|
@@ -290,16 +386,6 @@ const toastStates = {
|
|
|
290
386
|
preEnter: 'pre-enter',
|
|
291
387
|
enter: 'enter'
|
|
292
388
|
};
|
|
293
|
-
const getMongoMethodsDisplayedNamesMap = (mongoUpdates, authenticationPaths) => ({
|
|
294
|
-
[mongoUpdates.Methods.Attach]: 'שיוך',
|
|
295
|
-
[mongoUpdates.Methods.Create]: 'יצירה',
|
|
296
|
-
[mongoUpdates.Methods.AddOrUpdate]: 'עדכון',
|
|
297
|
-
[mongoUpdates.Methods.Basic]: 'עדכון',
|
|
298
|
-
[mongoUpdates.Methods.Delete]: 'מחיקה',
|
|
299
|
-
[mongoUpdates.Submethods.Duplicate]: 'שכפול',
|
|
300
|
-
[mongoUpdates.Methods.ListItemDeletion]: 'מחיקה',
|
|
301
|
-
[getSignUpMethod(authenticationPaths)]: 'הרשמה'
|
|
302
|
-
});
|
|
303
389
|
const statusCodes = {
|
|
304
390
|
'genericError': (wordToReplace) => `פעולת ${wordToReplace} נכשלה. אנא בצעו את הפעולה פעם נוספת`,
|
|
305
391
|
'401': (wordToReplace) => `פעולת ${wordToReplace} נכשלה. אנא התחבר לאתר מחדש.`,
|
|
@@ -317,26 +403,23 @@ const toastsKeys = {
|
|
|
317
403
|
skipToast: 'skipToast'
|
|
318
404
|
};
|
|
319
405
|
const skipToastHeader = new HttpHeaders().set(toastsKeys.skipToastHeader, 'true');
|
|
320
|
-
const
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
error: `יש לבחור משאבים לפני ביצוע הפעולה.`
|
|
338
|
-
}
|
|
339
|
-
});
|
|
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
|
+
}
|
|
340
423
|
};
|
|
341
424
|
|
|
342
425
|
const errorHeadersToSet = {
|
|
@@ -346,6 +429,7 @@ const errorHeadersToSet = {
|
|
|
346
429
|
[uploadsManagerKeys.reportUploadProgressId]: uploadsManagerKeys.reportUploadProgressIdHeader,
|
|
347
430
|
[toastsKeys.skipToast]: toastsKeys.skipToastHeader
|
|
348
431
|
};
|
|
432
|
+
const globalErrorHandlingHeader = 'Global-Error-Handling';
|
|
349
433
|
|
|
350
434
|
const videoPreviewSupportedMimes = ['mp4', 'webm', 'ogg'];
|
|
351
435
|
const audioPreviewSupportedMimes = ['mpeg', 'wav', 'x-wav', 'ogg'];
|
|
@@ -357,7 +441,7 @@ const filesSuffixes = {
|
|
|
357
441
|
[uploadsProgressMetadataTypes.video]: ['video', 'mp4', 'mkv', 'avi', 'mov', 'wmv', 'flv', '3gp', 'webm']
|
|
358
442
|
};
|
|
359
443
|
const resourcesFilesSuffixes = {
|
|
360
|
-
Story: '
|
|
444
|
+
Story: 'index_lms.html',
|
|
361
445
|
Pdf: '.pdf',
|
|
362
446
|
Video: '.mp4',
|
|
363
447
|
Presentation: '.pptx'
|
|
@@ -379,10 +463,43 @@ const femaleAvatarPath = 'assets/shared/icons/femaleAvatar.svg';
|
|
|
379
463
|
const initialMediaSettings = {
|
|
380
464
|
currentTime: 0,
|
|
381
465
|
isPlaying: false,
|
|
466
|
+
leftVolume: 1,
|
|
467
|
+
rightVolume: 1,
|
|
382
468
|
playbackSpeed: 1,
|
|
383
469
|
id: null
|
|
384
470
|
};
|
|
385
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
|
+
|
|
386
503
|
const resourceFileTypes = {
|
|
387
504
|
directory: 'Directory'
|
|
388
505
|
};
|
|
@@ -393,7 +510,8 @@ const resourceTypes = {
|
|
|
393
510
|
quiz: 'Quiz',
|
|
394
511
|
exercise: 'Exercise',
|
|
395
512
|
video: 'Video',
|
|
396
|
-
learningUnit: 'learningUnit'
|
|
513
|
+
learningUnit: 'learningUnit',
|
|
514
|
+
text: 'text'
|
|
397
515
|
};
|
|
398
516
|
|
|
399
517
|
const routes = {
|
|
@@ -517,22 +635,7 @@ function getSignUpFormFieldsByFields(fieldNames) {
|
|
|
517
635
|
return filteredSignUpFormFields;
|
|
518
636
|
}
|
|
519
637
|
|
|
520
|
-
const
|
|
521
|
-
GetOnlineUsers: 'GetOnlineUsers',
|
|
522
|
-
LessonStateUpdate: 'LessonStateUpdate',
|
|
523
|
-
StudentLessonStateUpdate: 'StudentLessonStateUpdate',
|
|
524
|
-
StartLesson: 'StartLesson',
|
|
525
|
-
SendMessage: 'SendMessage',
|
|
526
|
-
ConnectionMessage: 'ConnectionMessage',
|
|
527
|
-
OnlineUsers: 'OnlineUsers',
|
|
528
|
-
LessonUsers: 'LessonUsers',
|
|
529
|
-
LessonState: 'LessonState',
|
|
530
|
-
GetConnectedInControlUsers: 'GetConnectedInControlUsers',
|
|
531
|
-
ConnectedInControlUsers: 'ConnectedInControlUsers',
|
|
532
|
-
UserJoined: 'UserJoined',
|
|
533
|
-
ReceivedMessage: 'ReceivedMessage',
|
|
534
|
-
RemoveStudent: 'RemoveStudent'
|
|
535
|
-
};
|
|
638
|
+
const structHierarchyTreeMaxHeight = 2;
|
|
536
639
|
|
|
537
640
|
const svgsStrings = {
|
|
538
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>',
|
|
@@ -562,7 +665,7 @@ const svgsStrings = {
|
|
|
562
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>',
|
|
563
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>',
|
|
564
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>',
|
|
565
|
-
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>',
|
|
566
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>',
|
|
567
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>',
|
|
568
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>',
|
|
@@ -572,6 +675,9 @@ const svgsStrings = {
|
|
|
572
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>',
|
|
573
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>',
|
|
574
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>',
|
|
575
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>',
|
|
576
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>',
|
|
577
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>',
|
|
@@ -580,6 +686,7 @@ const svgsStrings = {
|
|
|
580
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>',
|
|
581
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>',
|
|
582
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>'
|
|
583
690
|
};
|
|
584
691
|
|
|
585
692
|
const system = {
|
|
@@ -588,111 +695,12 @@ const system = {
|
|
|
588
695
|
hadracha: "hadracha"
|
|
589
696
|
};
|
|
590
697
|
|
|
591
|
-
const validatorsNames = {
|
|
592
|
-
invalidIDNumber: 'invalidIDNumber',
|
|
593
|
-
isUniqueIdValidator: 'isUniqueIdValidator',
|
|
594
|
-
pattern: 'pattern',
|
|
595
|
-
required: 'required'
|
|
596
|
-
};
|
|
597
|
-
|
|
598
|
-
const regexExpressions = {
|
|
599
|
-
digitsOnly: /^[0-9]*$/,
|
|
600
|
-
templateInterpolation: /{{(.+?)}}/g,
|
|
601
|
-
sevenDigitsLength: /^\d{7}$/,
|
|
602
|
-
militaryIdLength: /^\d{7,9}$/,
|
|
603
|
-
curlyBraces: /{ }/g,
|
|
604
|
-
squareBrackets: /\[(.*?)\]/,
|
|
605
|
-
chromeVersion: /Chrome\/(\d+)\./,
|
|
606
|
-
fullDateTime: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}$/,
|
|
607
|
-
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}$/,
|
|
608
|
-
rangeDateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}-\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
609
|
-
dateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
610
|
-
chromeVersionRegex: /Chrome\/([0-9.]+)/,
|
|
611
|
-
removeSpacesRegex: /\s+/g,
|
|
612
|
-
phoneNumberTenDigits: /^\d{10}$/
|
|
613
|
-
};
|
|
614
|
-
|
|
615
698
|
const tableRowHeights = {
|
|
616
699
|
switchCell: 40,
|
|
617
700
|
doubleLines: 60,
|
|
618
701
|
default: 25
|
|
619
702
|
};
|
|
620
703
|
|
|
621
|
-
const dialogsSubmitActionButtons = {
|
|
622
|
-
save: 'שמור',
|
|
623
|
-
approve: 'אשר',
|
|
624
|
-
delete: 'מחק',
|
|
625
|
-
add: 'הוסף',
|
|
626
|
-
submit: 'הגש',
|
|
627
|
-
pageNavigation: 'צא מהדף'
|
|
628
|
-
};
|
|
629
|
-
const dialogsCloseActionButtons = {
|
|
630
|
-
pageNavigation: 'הישאר'
|
|
631
|
-
};
|
|
632
|
-
const dialogsTitles = {
|
|
633
|
-
serverError: 'התרחשה שגיאה בשרת',
|
|
634
|
-
userError: 'באסה...',
|
|
635
|
-
cancelAttachedCollections: 'ביטול שיוך מארזים',
|
|
636
|
-
attachCollections: 'שיוך מארזי למידה לכל המשתמשים',
|
|
637
|
-
deleteResources: 'מחיקת משאבים',
|
|
638
|
-
deleteResource: 'מחיקת משאב',
|
|
639
|
-
deleteCollegeResource: 'מחיקת תיק יישום',
|
|
640
|
-
deleteCollection: 'מחיקת מארז',
|
|
641
|
-
addResource: 'הוספת משאב חדש',
|
|
642
|
-
addUser: 'הוספת משתמש',
|
|
643
|
-
editResource: 'עריכת משאב',
|
|
644
|
-
updateResources: 'עדכון משאבים',
|
|
645
|
-
editUser: 'עריכת משתמש',
|
|
646
|
-
editTeacher: 'עריכת מורה',
|
|
647
|
-
editStudent: 'עריכת חניך',
|
|
648
|
-
editCollectionPriority: 'שינוי עדיפות למארז',
|
|
649
|
-
editCollection: 'עריכת מארז למידה',
|
|
650
|
-
editCollections: 'עריכת מארזים למשתמש',
|
|
651
|
-
deleteGroups: 'מחיקת קבוצות',
|
|
652
|
-
timeoutError: 'הבקשה כבדה מידי',
|
|
653
|
-
pageNavigation: 'יציאה מהדף',
|
|
654
|
-
quizSubmission: 'הגשת מבחן',
|
|
655
|
-
notAuthorized: 'אין גישה',
|
|
656
|
-
addExistingUser: 'אדם זה כבר משוייך',
|
|
657
|
-
addedStructWithExistingUsers: 'שיוך גוף עם אנשים קיימים',
|
|
658
|
-
resetQuiz: 'איפוס המבחן לחניך',
|
|
659
|
-
removeUserFromPage: 'הסרת יוזר מעמוד',
|
|
660
|
-
removeUserFromStruct: 'הסרת יוזר מגוף',
|
|
661
|
-
};
|
|
662
|
-
const dialogsDescriptions = {
|
|
663
|
-
defaultInsurance: 'האם הינך בטוח כי ברצונך לבצע שינוים אלו?',
|
|
664
|
-
unsavedChanges: 'האם הינך בטוח כי ברצונך לצאת? השינויים שבוצעו לא ישמרו',
|
|
665
|
-
serverError: 'נראה שנתקלנו בתקלה, יש לנסות לרענן את הדף',
|
|
666
|
-
timeoutError: 'הרגת אותנו... יש לנסות בקשה פשוטה יותר',
|
|
667
|
-
criticalServerError: 'נראה שנתקלנו בתקלה, יש לבצע התחברות מחדש',
|
|
668
|
-
forbiddenServerError: 'נראה שאין לך הרשאות לביצוע פעולה זו. ',
|
|
669
|
-
cancelAttachedCollections: 'האם אתה בטוח שברצונך למחוק מארזים אלו ממשתמשים נבחרים?',
|
|
670
|
-
attachCollections: 'האם את\ה בטוח\ה שברצונך לשייך את המארזים למשתמשים הנבחרים?',
|
|
671
|
-
editCollectionPriority: 'האם את/ה בטוח/ה שברצונך לשנות את עדיפות המארז הנבחר?',
|
|
672
|
-
deleteResources: 'האם את/ה בטוח/ה שברצונך למחוק משאבים אלו?',
|
|
673
|
-
deleteResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה?',
|
|
674
|
-
deleteCollegeResource: 'האם את/ה בטוח/ה שברצונך למחוק תיק יישום זה?',
|
|
675
|
-
updateMicroResourcesOpeningTime: 'האם ברצונך לעדכן את זמני הפתיחה של כלל המשאבים לזמני פתיחת המטלה?',
|
|
676
|
-
editUser: 'האם את/ה בטוח/ה שברצונך לערוך משתמש זה?',
|
|
677
|
-
deleteGroups: 'האם אתה בטוח שברצונך למחוק קבוצות אלו?',
|
|
678
|
-
deleteCollection: 'האם את/ה בטוח/ה שברצונך למחוק מארז זה?',
|
|
679
|
-
deleteLastResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה ? המחיקה תוביל למחיקת המארז',
|
|
680
|
-
addExistingUser: 'האם תרצה להחליף את התפקיד שלו לתפקיד זה?',
|
|
681
|
-
addedStructWithExistingUsers: 'חלק מהאנשים ששייכת מהגוף כבר משוייכים לעמוד',
|
|
682
|
-
quizPartialSubmission: 'לתשומת ליבך חלק מהשאלות לא נענו במלואן. האם ברצונך להמשיך ולהגיש את המבחן?',
|
|
683
|
-
notAuthorized: 'איי איי איי, אין לך גישה לעמוד הזה',
|
|
684
|
-
resetQuiz: 'איפוס המבחן לחניך ימחק את כל התשובות והציון. לא ניתן יהיה לשחזר מידע זה לאחר האיפוס.',
|
|
685
|
-
removeUserFromPage: 'הסרת המשתמש מהעמוד תמחק את כל הנתונים שלו- כולל נתוני המבחנים אם ישנם, באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?',
|
|
686
|
-
removeUserFromStruct: 'הסרת המשתמש מהגוף תמחק את כל הנתונים שלו באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?'
|
|
687
|
-
};
|
|
688
|
-
const dialogsNotes = {
|
|
689
|
-
resetQuiz: '*שימו לב: אם מועד המענה למבחן הסתיים, יש לעדכן את הרשאת מענה לחניך.'
|
|
690
|
-
};
|
|
691
|
-
const insuranceDialogPageNavigationData = {
|
|
692
|
-
title: dialogsTitles.pageNavigation, description: dialogsDescriptions.unsavedChanges, submitActionButton: dialogsSubmitActionButtons.pageNavigation,
|
|
693
|
-
closeActionButton: dialogsCloseActionButtons.pageNavigation
|
|
694
|
-
};
|
|
695
|
-
|
|
696
704
|
const calendarActiveColorCssVariable = '--active-calendar-color';
|
|
697
705
|
const calendarHoverColorCssVariable = '--hover-calendar-color';
|
|
698
706
|
const calendarLibrarySelector = 'mat-calendar';
|
|
@@ -705,9 +713,30 @@ const secondInMilliseconds = 1000;
|
|
|
705
713
|
const minuteInMilliseconds = 60 * secondInMilliseconds;
|
|
706
714
|
const timePattern = 'HH:mm:ss';
|
|
707
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'
|
|
731
|
+
};
|
|
732
|
+
|
|
733
|
+
/**
|
|
734
|
+
* @file Automatically generated by barrelsby.
|
|
735
|
+
*/
|
|
736
|
+
|
|
708
737
|
/**
|
|
709
738
|
* Generated bundle index. Do not edit.
|
|
710
739
|
*/
|
|
711
740
|
|
|
712
|
-
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 };
|
|
713
742
|
//# sourceMappingURL=herum-shared-constants.mjs.map
|