herum-shared 0.1.38 → 0.1.46
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 +186 -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 +111 -109
- package/fesm2022/herum-shared-atoms.mjs.map +1 -1
- package/fesm2022/herum-shared-constants.mjs +205 -162
- 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 +9090 -924
- package/fesm2022/herum-shared.mjs.map +1 -1
- package/fetched-message/index.d.ts +11 -11
- package/index.d.ts +1673 -281
- package/molecules/index.d.ts +11 -8
- 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
|
|
|
@@ -138,6 +147,9 @@ const dateRangeTimeRangeWithoutSecondsPlaceHolder = `${dateTimeWithoutSecondsPla
|
|
|
138
147
|
const resourceIdPlaceholder = "$resourceId";
|
|
139
148
|
const defaultCloseTime = new Date('01-01-2999');
|
|
140
149
|
const defaultOpenTime = new Date('01-01-1999');
|
|
150
|
+
const legacyCorrectAnswerPropertyPath = `.Quiz.Questions[].Answers[].IsCorrect`;
|
|
151
|
+
const correctAnswerPropertyPath = `.Quiz.Questions[].ClosedContent.Answers[].IsCorrect`;
|
|
152
|
+
const matchingSourceIndexPropertyPath = `.Quiz.Questions[].MatchingContent.sources[].index`;
|
|
141
153
|
const openStatus = {
|
|
142
154
|
openingTime: new Date(),
|
|
143
155
|
closingTime: defaultCloseTime,
|
|
@@ -154,56 +166,64 @@ const defaultAuthorizationObject = {
|
|
|
154
166
|
view() {
|
|
155
167
|
return cloneDeep({
|
|
156
168
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
157
|
-
authorizationType:
|
|
169
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
158
170
|
...openStatus
|
|
159
171
|
});
|
|
160
172
|
},
|
|
161
173
|
edit() {
|
|
162
174
|
return cloneDeep({
|
|
163
175
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
164
|
-
authorizationType:
|
|
176
|
+
authorizationType: MicroResourceAuthorizationType.update,
|
|
165
177
|
...closeStatus
|
|
166
178
|
});
|
|
167
179
|
},
|
|
168
180
|
fill() {
|
|
169
181
|
return cloneDeep({
|
|
170
182
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}]`,
|
|
171
|
-
authorizationType:
|
|
183
|
+
authorizationType: MicroResourceAuthorizationType.fill,
|
|
172
184
|
...openStatus
|
|
173
185
|
});
|
|
174
186
|
},
|
|
175
187
|
resourceGrade() {
|
|
176
188
|
return cloneDeep({
|
|
177
189
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].Grade.Grade`,
|
|
178
|
-
authorizationType:
|
|
190
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
179
191
|
...closeStatus
|
|
180
192
|
});
|
|
181
193
|
},
|
|
182
194
|
questionGrade() {
|
|
183
195
|
return cloneDeep({
|
|
184
196
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].Grade`,
|
|
185
|
-
authorizationType:
|
|
197
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
186
198
|
...closeStatus
|
|
187
199
|
});
|
|
188
200
|
},
|
|
189
201
|
areAnswersCorrect() {
|
|
190
202
|
return cloneDeep({
|
|
191
203
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].AreAnswersCorrect`,
|
|
192
|
-
authorizationType:
|
|
204
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
193
205
|
...closeStatus
|
|
194
206
|
});
|
|
195
207
|
},
|
|
196
208
|
answerNotes() {
|
|
197
209
|
return cloneDeep({
|
|
198
210
|
propertyPath: `ResourceSubscriptions[${resourceIdPlaceholder}].QuizData.UserQuestionsData[].AnswerNotes[]`,
|
|
199
|
-
authorizationType:
|
|
211
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
200
212
|
...closeStatus
|
|
201
213
|
});
|
|
202
214
|
},
|
|
203
215
|
isCorrect() {
|
|
204
216
|
return cloneDeep({
|
|
205
|
-
propertyPath: `[${resourceIdPlaceholder}]
|
|
206
|
-
authorizationType:
|
|
217
|
+
propertyPath: `[${resourceIdPlaceholder}]${correctAnswerPropertyPath}`,
|
|
218
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
219
|
+
...closeStatus,
|
|
220
|
+
collectionItemType: 'Resources'
|
|
221
|
+
});
|
|
222
|
+
},
|
|
223
|
+
matchingSourceIndex() {
|
|
224
|
+
return cloneDeep({
|
|
225
|
+
propertyPath: `[${resourceIdPlaceholder}]${matchingSourceIndexPropertyPath}`,
|
|
226
|
+
authorizationType: MicroResourceAuthorizationType.view,
|
|
207
227
|
...closeStatus,
|
|
208
228
|
collectionItemType: 'Resources'
|
|
209
229
|
});
|
|
@@ -212,15 +232,21 @@ const defaultAuthorizationObject = {
|
|
|
212
232
|
function getQuizDefaultAuthorizations() {
|
|
213
233
|
return [defaultAuthorizationObject.view(), defaultAuthorizationObject.fill(), ...getPublishAuthorization()];
|
|
214
234
|
}
|
|
235
|
+
function getResourceDefaultAuthorizations() {
|
|
236
|
+
return [defaultAuthorizationObject.view()];
|
|
237
|
+
}
|
|
215
238
|
function getPublishAuthorization() {
|
|
216
|
-
return [defaultAuthorizationObject.resourceGrade(), defaultAuthorizationObject.questionGrade(), defaultAuthorizationObject.areAnswersCorrect(), defaultAuthorizationObject.answerNotes(), defaultAuthorizationObject.isCorrect()];
|
|
239
|
+
return [defaultAuthorizationObject.resourceGrade(), defaultAuthorizationObject.questionGrade(), defaultAuthorizationObject.areAnswersCorrect(), defaultAuthorizationObject.answerNotes(), defaultAuthorizationObject.isCorrect(), defaultAuthorizationObject.matchingSourceIndex()];
|
|
217
240
|
}
|
|
218
241
|
function getMediaDefaultAuthorizations() {
|
|
219
242
|
return [defaultAuthorizationObject.view(), defaultAuthorizationObject.edit()];
|
|
220
243
|
}
|
|
221
244
|
function getPropertyPathsOfPublishAuthorization() {
|
|
222
245
|
return ([defaultAuthorizationObject.resourceGrade().propertyPath, defaultAuthorizationObject.questionGrade().propertyPath,
|
|
223
|
-
defaultAuthorizationObject.areAnswersCorrect().propertyPath, defaultAuthorizationObject.answerNotes().propertyPath, defaultAuthorizationObject.isCorrect().propertyPath]);
|
|
246
|
+
defaultAuthorizationObject.areAnswersCorrect().propertyPath, defaultAuthorizationObject.answerNotes().propertyPath, defaultAuthorizationObject.isCorrect().propertyPath, defaultAuthorizationObject.matchingSourceIndex().propertyPath]);
|
|
247
|
+
}
|
|
248
|
+
function normalizeQuizAuthorizationPropertyPath(propertyPath) {
|
|
249
|
+
return propertyPath?.replace(legacyCorrectAnswerPropertyPath, correctAnswerPropertyPath);
|
|
224
250
|
}
|
|
225
251
|
const viewPermissionLabel = 'צפייה';
|
|
226
252
|
|
|
@@ -233,6 +259,88 @@ const defaultTrackTextChangesStyle = {
|
|
|
233
259
|
tooltipButtonsContainer: 'display: flex; justify-content: space-between; height: fit-content;'
|
|
234
260
|
};
|
|
235
261
|
|
|
262
|
+
const dialogsSubmitActionButtons = {
|
|
263
|
+
save: 'שמור',
|
|
264
|
+
approve: 'אשר',
|
|
265
|
+
delete: 'מחק',
|
|
266
|
+
add: 'הוסף',
|
|
267
|
+
submit: 'הגש',
|
|
268
|
+
pageNavigation: 'צא מהדף',
|
|
269
|
+
understand: 'הבנתי'
|
|
270
|
+
};
|
|
271
|
+
const dialogsCloseActionButtons = {
|
|
272
|
+
pageNavigation: 'הישאר'
|
|
273
|
+
};
|
|
274
|
+
const dialogsTitles = {
|
|
275
|
+
serverError: 'התרחשה שגיאה בשרת',
|
|
276
|
+
userError: 'באסה...',
|
|
277
|
+
cancelAttachedCollections: 'ביטול שיוך מארזים',
|
|
278
|
+
attachCollections: 'שיוך מארזי למידה לכל המשתמשים',
|
|
279
|
+
deleteResources: 'מחיקת משאבים',
|
|
280
|
+
deleteResource: 'מחיקת משאב',
|
|
281
|
+
deleteCollegeResource: 'מחיקת תיק יישום',
|
|
282
|
+
deleteCollection: 'מחיקת מארז',
|
|
283
|
+
addResource: 'הוספת משאב חדש',
|
|
284
|
+
addUser: 'הוספת משתמש',
|
|
285
|
+
editResource: 'עריכת משאב',
|
|
286
|
+
updateResources: 'עדכון משאבים',
|
|
287
|
+
editUser: 'עריכת משתמש',
|
|
288
|
+
editTeacher: 'עריכת מורה',
|
|
289
|
+
editStudent: 'עריכת חניך',
|
|
290
|
+
editCollectionPriority: 'שינוי עדיפות למארז',
|
|
291
|
+
editCollection: 'עריכת מארז למידה',
|
|
292
|
+
editCollections: 'עריכת מארזים למשתמש',
|
|
293
|
+
deleteGroups: 'מחיקת קבוצות',
|
|
294
|
+
timeoutError: 'הבקשה כבדה מידי',
|
|
295
|
+
pageNavigation: 'יציאה מהדף',
|
|
296
|
+
quizSubmission: 'הגשת מבחן',
|
|
297
|
+
notAuthorized: 'אין גישה',
|
|
298
|
+
addExistingUser: 'אדם זה כבר משוייך',
|
|
299
|
+
addedStructWithExistingUsers: 'שיוך גוף עם אנשים קיימים',
|
|
300
|
+
resetQuiz: 'איפוס המבחן לחניך',
|
|
301
|
+
removeUserFromPage: 'הסרת יוזר מעמוד',
|
|
302
|
+
removeUserFromStruct: 'הסרת יוזר מגוף',
|
|
303
|
+
studentStartedLesson: "התחלת שיעור פרונטלי",
|
|
304
|
+
realTimeError: "תקלה בתכונות זמן אמת",
|
|
305
|
+
realTimeUnavailable: "פיצ'ר זמן אמת לא זמין"
|
|
306
|
+
};
|
|
307
|
+
const dialogsDescriptions = {
|
|
308
|
+
defaultInsurance: 'האם הינך בטוח כי ברצונך לבצע שינוים אלו?',
|
|
309
|
+
unsavedChanges: 'האם הינך בטוח כי ברצונך לצאת? השינויים שבוצעו לא ישמרו',
|
|
310
|
+
serverError: 'נראה שנתקלנו בתקלה, יש לנסות לרענן את הדף',
|
|
311
|
+
timeoutError: 'הרגת אותנו... יש לנסות בקשה פשוטה יותר',
|
|
312
|
+
criticalServerError: 'נראה שנתקלנו בתקלה, יש לבצע התחברות מחדש',
|
|
313
|
+
forbiddenServerError: 'נראה שאין לך הרשאות לביצוע פעולה זו. ',
|
|
314
|
+
cancelAttachedCollections: 'האם אתה בטוח שברצונך למחוק מארזים אלו ממשתמשים נבחרים?',
|
|
315
|
+
attachCollections: 'האם את\ה בטוח\ה שברצונך לשייך את המארזים למשתמשים הנבחרים?',
|
|
316
|
+
editCollectionPriority: 'האם את/ה בטוח/ה שברצונך לשנות את עדיפות המארז הנבחר?',
|
|
317
|
+
deleteResources: 'האם את/ה בטוח/ה שברצונך למחוק משאבים אלו?',
|
|
318
|
+
deleteResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה?',
|
|
319
|
+
deleteCollegeResource: 'האם את/ה בטוח/ה שברצונך למחוק תיק יישום זה?',
|
|
320
|
+
updateMicroResourcesOpeningTime: 'האם ברצונך לעדכן את זמני הפתיחה של כלל המשאבים לזמני פתיחת המטלה?',
|
|
321
|
+
editUser: 'האם את/ה בטוח/ה שברצונך לערוך משתמש זה?',
|
|
322
|
+
deleteGroups: 'האם אתה בטוח שברצונך למחוק קבוצות אלו?',
|
|
323
|
+
deleteCollection: 'האם את/ה בטוח/ה שברצונך למחוק מארז זה?',
|
|
324
|
+
deleteLastResource: 'האם את/ה בטוח/ה שברצונך למחוק משאב זה ? המחיקה תוביל למחיקת המארז',
|
|
325
|
+
addExistingUser: 'האם תרצה להחליף את התפקיד שלו לתפקיד זה?',
|
|
326
|
+
addedStructWithExistingUsers: 'חלק מהאנשים ששייכת מהגוף כבר משוייכים לעמוד',
|
|
327
|
+
quizPartialSubmission: 'לתשומת ליבך חלק מהשאלות לא נענו במלואן. האם ברצונך להמשיך ולהגיש את המבחן?',
|
|
328
|
+
notAuthorized: 'איי איי איי, אין לך גישה לעמוד הזה',
|
|
329
|
+
resetQuiz: 'איפוס המבחן לחניך ימחק את כל התשובות והציון. לא ניתן יהיה לשחזר מידע זה לאחר האיפוס.',
|
|
330
|
+
removeUserFromPage: 'הסרת המשתמש מהעמוד תמחק את כל הנתונים שלו- כולל נתוני המבחנים אם ישנם, באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?',
|
|
331
|
+
removeUserFromStruct: 'הסרת המשתמש מהגוף תמחק את כל הנתונים שלו באופן שאינו ניתן לשחזור. האם למחוק את המשתמש?',
|
|
332
|
+
studentStartedLesson: "חניך/ה יקר/ה, את/ה מצטרפ/ת לשיעור פרונטאלי. ",
|
|
333
|
+
realTimeError: "באסה, לא הצלחנו לחבר אותך לתכונות ההשתלטות, ניתן לרענן את הדף לניסיון חוזר",
|
|
334
|
+
realTimeUnavailable: "נראה שמישהו התחבר למשתמש במחשב אחר, ניתן לנסות לרענן את הדף לחידוש החיבור"
|
|
335
|
+
};
|
|
336
|
+
const dialogsNotes = {
|
|
337
|
+
resetQuiz: '*שימו לב: אם מועד המענה למבחן הסתיים, יש לעדכן את הרשאת מענה לחניך.'
|
|
338
|
+
};
|
|
339
|
+
const insuranceDialogPageNavigationData = {
|
|
340
|
+
title: dialogsTitles.pageNavigation, description: dialogsDescriptions.unsavedChanges, submitActionButton: dialogsSubmitActionButtons.pageNavigation,
|
|
341
|
+
closeActionButton: dialogsCloseActionButtons.pageNavigation
|
|
342
|
+
};
|
|
343
|
+
|
|
236
344
|
const uploadsProgressMetadataTypes = {
|
|
237
345
|
story: 'story',
|
|
238
346
|
pdf: 'pdf',
|
|
@@ -271,6 +379,8 @@ const uploadsManagerKeys = {
|
|
|
271
379
|
resource: 'משאב',
|
|
272
380
|
collection: 'מארז',
|
|
273
381
|
};
|
|
382
|
+
const maxImageHeight = 3000;
|
|
383
|
+
const maxImageWidth = 3000;
|
|
274
384
|
|
|
275
385
|
const toastsTemplatesKeys = {
|
|
276
386
|
chromeBrowserVersion: 'chromeBrowserVersion',
|
|
@@ -290,16 +400,6 @@ const toastStates = {
|
|
|
290
400
|
preEnter: 'pre-enter',
|
|
291
401
|
enter: 'enter'
|
|
292
402
|
};
|
|
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
403
|
const statusCodes = {
|
|
304
404
|
'genericError': (wordToReplace) => `פעולת ${wordToReplace} נכשלה. אנא בצעו את הפעולה פעם נוספת`,
|
|
305
405
|
'401': (wordToReplace) => `פעולת ${wordToReplace} נכשלה. אנא התחבר לאתר מחדש.`,
|
|
@@ -317,26 +417,23 @@ const toastsKeys = {
|
|
|
317
417
|
skipToast: 'skipToast'
|
|
318
418
|
};
|
|
319
419
|
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
|
-
});
|
|
420
|
+
const toastsTemplates = {
|
|
421
|
+
[toastsTemplatesKeys.chromeBrowserVersion]: {
|
|
422
|
+
title: 'גרסאת כרום',
|
|
423
|
+
information: 'לתשומת ליבך, ביה"ס הדיגיטלי עובד הכי טוב בגרסאות כרום 97 ומעלה.'
|
|
424
|
+
},
|
|
425
|
+
[toastsTemplatesKeys.addOrUpdateNotebookSuccess]: {
|
|
426
|
+
title: `פעולת עדכון מחברת`,
|
|
427
|
+
success: `פעולת עדכון מחברת הצליחה`
|
|
428
|
+
},
|
|
429
|
+
[toastsTemplatesKeys.addOrUpdateNotebookError]: {
|
|
430
|
+
title: `פעולת עדכון מחברת`,
|
|
431
|
+
error: `פעולת עדכון מחברת נכשלה`
|
|
432
|
+
},
|
|
433
|
+
[toastsTemplatesKeys.hadrachaToolBarError]: {
|
|
434
|
+
title: `פעולת סרגל כלים`,
|
|
435
|
+
error: `יש לבחור משאבים לפני ביצוע הפעולה.`
|
|
436
|
+
}
|
|
340
437
|
};
|
|
341
438
|
|
|
342
439
|
const errorHeadersToSet = {
|
|
@@ -346,6 +443,7 @@ const errorHeadersToSet = {
|
|
|
346
443
|
[uploadsManagerKeys.reportUploadProgressId]: uploadsManagerKeys.reportUploadProgressIdHeader,
|
|
347
444
|
[toastsKeys.skipToast]: toastsKeys.skipToastHeader
|
|
348
445
|
};
|
|
446
|
+
const globalErrorHandlingHeader = 'Global-Error-Handling';
|
|
349
447
|
|
|
350
448
|
const videoPreviewSupportedMimes = ['mp4', 'webm', 'ogg'];
|
|
351
449
|
const audioPreviewSupportedMimes = ['mpeg', 'wav', 'x-wav', 'ogg'];
|
|
@@ -357,7 +455,7 @@ const filesSuffixes = {
|
|
|
357
455
|
[uploadsProgressMetadataTypes.video]: ['video', 'mp4', 'mkv', 'avi', 'mov', 'wmv', 'flv', '3gp', 'webm']
|
|
358
456
|
};
|
|
359
457
|
const resourcesFilesSuffixes = {
|
|
360
|
-
Story: '
|
|
458
|
+
Story: 'index_lms.html',
|
|
361
459
|
Pdf: '.pdf',
|
|
362
460
|
Video: '.mp4',
|
|
363
461
|
Presentation: '.pptx'
|
|
@@ -379,10 +477,43 @@ const femaleAvatarPath = 'assets/shared/icons/femaleAvatar.svg';
|
|
|
379
477
|
const initialMediaSettings = {
|
|
380
478
|
currentTime: 0,
|
|
381
479
|
isPlaying: false,
|
|
480
|
+
leftVolume: 1,
|
|
481
|
+
rightVolume: 1,
|
|
382
482
|
playbackSpeed: 1,
|
|
383
483
|
id: null
|
|
384
484
|
};
|
|
385
485
|
|
|
486
|
+
const keyboardKeys = {
|
|
487
|
+
space: 32,
|
|
488
|
+
right: 39,
|
|
489
|
+
left: 37,
|
|
490
|
+
enter: 13
|
|
491
|
+
};
|
|
492
|
+
|
|
493
|
+
const radioButtonTypes = {
|
|
494
|
+
disabled: 'disabled',
|
|
495
|
+
error: 'error',
|
|
496
|
+
checked: 'checked',
|
|
497
|
+
completed: 'completed'
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
const regexExpressions = {
|
|
501
|
+
digitsOnly: /^[0-9]*$/,
|
|
502
|
+
templateInterpolation: /{{(.+?)}}/g,
|
|
503
|
+
sevenDigitsLength: /^\d{7}$/,
|
|
504
|
+
militaryIdLength: /^\d{7,9}$/,
|
|
505
|
+
curlyBraces: /{ }/g,
|
|
506
|
+
squareBrackets: /\[(.*?)\]/,
|
|
507
|
+
chromeVersion: /Chrome\/(\d+)\./,
|
|
508
|
+
fullDateTime: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}:\d{2}$/,
|
|
509
|
+
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}$/,
|
|
510
|
+
rangeDateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}-\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
511
|
+
dateTimeWithoutSeconds: /^\d{2}\/\d{2}\/\d{4} \d{2}:\d{2}$/,
|
|
512
|
+
chromeVersionRegex: /Chrome\/([0-9.]+)/,
|
|
513
|
+
removeSpacesRegex: /\s+/g,
|
|
514
|
+
phoneNumberTenDigits: /^\d{10}$/
|
|
515
|
+
};
|
|
516
|
+
|
|
386
517
|
const resourceFileTypes = {
|
|
387
518
|
directory: 'Directory'
|
|
388
519
|
};
|
|
@@ -393,7 +524,8 @@ const resourceTypes = {
|
|
|
393
524
|
quiz: 'Quiz',
|
|
394
525
|
exercise: 'Exercise',
|
|
395
526
|
video: 'Video',
|
|
396
|
-
learningUnit: 'learningUnit'
|
|
527
|
+
learningUnit: 'learningUnit',
|
|
528
|
+
text: 'text'
|
|
397
529
|
};
|
|
398
530
|
|
|
399
531
|
const routes = {
|
|
@@ -517,22 +649,7 @@ function getSignUpFormFieldsByFields(fieldNames) {
|
|
|
517
649
|
return filteredSignUpFormFields;
|
|
518
650
|
}
|
|
519
651
|
|
|
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
|
-
};
|
|
652
|
+
const structHierarchyTreeMaxHeight = 2;
|
|
536
653
|
|
|
537
654
|
const svgsStrings = {
|
|
538
655
|
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 +679,7 @@ const svgsStrings = {
|
|
|
562
679
|
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
680
|
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
681
|
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="
|
|
682
|
+
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
683
|
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
684
|
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
685
|
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 +689,9 @@ const svgsStrings = {
|
|
|
572
689
|
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
690
|
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
691
|
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>',
|
|
692
|
+
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>',
|
|
693
|
+
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>',
|
|
694
|
+
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
695
|
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
696
|
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
697
|
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 +700,7 @@ const svgsStrings = {
|
|
|
580
700
|
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
701
|
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
702
|
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>',
|
|
703
|
+
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
704
|
};
|
|
584
705
|
|
|
585
706
|
const system = {
|
|
@@ -588,111 +709,12 @@ const system = {
|
|
|
588
709
|
hadracha: "hadracha"
|
|
589
710
|
};
|
|
590
711
|
|
|
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
712
|
const tableRowHeights = {
|
|
616
713
|
switchCell: 40,
|
|
617
714
|
doubleLines: 60,
|
|
618
715
|
default: 25
|
|
619
716
|
};
|
|
620
717
|
|
|
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
718
|
const calendarActiveColorCssVariable = '--active-calendar-color';
|
|
697
719
|
const calendarHoverColorCssVariable = '--hover-calendar-color';
|
|
698
720
|
const calendarLibrarySelector = 'mat-calendar';
|
|
@@ -705,9 +727,30 @@ const secondInMilliseconds = 1000;
|
|
|
705
727
|
const minuteInMilliseconds = 60 * secondInMilliseconds;
|
|
706
728
|
const timePattern = 'HH:mm:ss';
|
|
707
729
|
|
|
730
|
+
const sixMonthsInDays = 180;
|
|
731
|
+
|
|
732
|
+
const additionTagName = 'ins';
|
|
733
|
+
const deletionTagName = 'del';
|
|
734
|
+
const editorContainerElementId = 'editor-container';
|
|
735
|
+
const mouseEnterHandlerKey = 'mouseEnterHandler';
|
|
736
|
+
const mouseLeaveHandlerKey = 'mouseLeaveHandler';
|
|
737
|
+
const mouseEnter = 'mouseenter';
|
|
738
|
+
const mouseLeave = 'mouseleave';
|
|
739
|
+
|
|
740
|
+
const validatorsNames = {
|
|
741
|
+
invalidIDNumber: 'invalidIDNumber',
|
|
742
|
+
isUniqueIdValidator: 'isUniqueIdValidator',
|
|
743
|
+
pattern: 'pattern',
|
|
744
|
+
required: 'required'
|
|
745
|
+
};
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* @file Automatically generated by barrelsby.
|
|
749
|
+
*/
|
|
750
|
+
|
|
708
751
|
/**
|
|
709
752
|
* Generated bundle index. Do not edit.
|
|
710
753
|
*/
|
|
711
754
|
|
|
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,
|
|
755
|
+
export { activeDragPath, additionTagName, anySubFileTypeWildCard, assignmentMetadata, attributes, audioAndVideoPreviewSupportedMimes, audioAndVideoPreviewSupportedSuffixes, audioPreviewSupportedMimes, audioPreviewSupportedSuffixes, calendarActiveColorCssVariable, calendarHoverColorCssVariable, calendarLibraryBodyCellSelector, calendarLibrarySelector, checkboxTypes, collectionFormKeys, collectionFormValues, correctAnswerPropertyPath, 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, legacyCorrectAnswerPropertyPath, maleAvatarPath, matchingSourceIndexPropertyPath, maxImageHeight, maxImageWidth, minDateError, minuteInMilliseconds, mouseEnter, mouseEnterHandlerKey, mouseLeave, mouseLeaveHandlerKey, normalizeQuizAuthorizationPropertyPath, 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
756
|
//# sourceMappingURL=herum-shared-constants.mjs.map
|