catchup-library-web 2.3.7 → 2.4.0
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/dist/index.d.mts +15 -49
- package/dist/index.d.ts +15 -49
- package/dist/index.js +203 -107
- package/dist/index.mjs +198 -103
- package/package.json +1 -1
- package/src/components/labels/BlueLabel.tsx +17 -0
- package/src/components/labels/CoralLabel.tsx +17 -0
- package/src/components/labels/CyanLabel.tsx +17 -0
- package/src/components/labels/GrayLabel.tsx +17 -0
- package/src/components/labels/GreenLabel.tsx +17 -0
- package/src/components/labels/Label.tsx +30 -0
- package/src/components/labels/LimeLabel.tsx +17 -0
- package/src/components/labels/OrangeLabel.tsx +17 -0
- package/src/components/labels/PurpleLabel.tsx +17 -0
- package/src/components/labels/RedLabel.tsx +18 -0
- package/src/components/labels/TealLabel.tsx +17 -0
- package/src/index.ts +10 -9
- package/src/properties/LabelProperties.ts +9 -43
- package/src/utilization/AppUtilization.ts +2 -2
- package/src/components/labels/ActivityLabel.tsx +0 -11
- package/src/components/labels/ActivityTemplateLabel.tsx +0 -23
- package/src/components/labels/BrandLabel.tsx +0 -19
- package/src/components/labels/CategoryLabel.tsx +0 -23
- package/src/components/labels/CoterieLabel.tsx +0 -11
- package/src/components/labels/GradeLabel.tsx +0 -11
- package/src/components/labels/OutcomeLabel.tsx +0 -15
- package/src/components/labels/PersonalLabel.tsx +0 -23
- package/src/components/labels/PublishingHouseLabel.tsx +0 -23
package/dist/index.d.mts
CHANGED
|
@@ -393,65 +393,31 @@ declare const SelectionTab: ({ optionList, selectedId, handleSelectOnClick, sele
|
|
|
393
393
|
|
|
394
394
|
declare const SelectionTabFill: ({ optionList, selectedId, handleSelectOnClick, }: ISelectionTabProps) => react_jsx_runtime.JSX.Element;
|
|
395
395
|
|
|
396
|
-
interface
|
|
397
|
-
title: string;
|
|
398
|
-
icon: any;
|
|
399
|
-
font: string;
|
|
400
|
-
}
|
|
401
|
-
interface IBrandLabelProps {
|
|
402
|
-
title: string;
|
|
403
|
-
icon: any;
|
|
404
|
-
font: string;
|
|
405
|
-
}
|
|
406
|
-
interface ICategoryLabelProps {
|
|
407
|
-
title: string;
|
|
408
|
-
icon: any;
|
|
409
|
-
font: string;
|
|
410
|
-
}
|
|
411
|
-
interface ICoterieLabelProps {
|
|
412
|
-
title: string;
|
|
413
|
-
font: string;
|
|
414
|
-
}
|
|
415
|
-
interface IGradeLabelProps {
|
|
416
|
-
title: string;
|
|
417
|
-
font: string;
|
|
418
|
-
}
|
|
419
|
-
interface IOutcomeLabelProps {
|
|
420
|
-
title: string;
|
|
421
|
-
font: string;
|
|
422
|
-
}
|
|
423
|
-
interface IPersonalLabelProps {
|
|
424
|
-
title: string;
|
|
425
|
-
icon: any;
|
|
426
|
-
font: string;
|
|
427
|
-
}
|
|
428
|
-
interface IPublishingLabelProps {
|
|
429
|
-
title: string;
|
|
430
|
-
icon: any;
|
|
431
|
-
font: string;
|
|
432
|
-
}
|
|
433
|
-
interface IActivityLabelProps {
|
|
396
|
+
interface IFixedLabelProps {
|
|
434
397
|
title: string;
|
|
398
|
+
icon?: any;
|
|
435
399
|
font: string;
|
|
436
400
|
}
|
|
437
401
|
|
|
438
|
-
declare const
|
|
402
|
+
declare const TealLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
403
|
+
|
|
404
|
+
declare const PurpleLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
439
405
|
|
|
440
|
-
declare const
|
|
406
|
+
declare const GreenLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
441
407
|
|
|
442
|
-
declare const
|
|
408
|
+
declare const BlueLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
443
409
|
|
|
444
|
-
declare const
|
|
410
|
+
declare const OrangeLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
445
411
|
|
|
446
|
-
declare const
|
|
412
|
+
declare const RedLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
447
413
|
|
|
448
|
-
declare const
|
|
414
|
+
declare const LimeLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
449
415
|
|
|
450
|
-
declare const
|
|
416
|
+
declare const CoralLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
451
417
|
|
|
452
|
-
declare const
|
|
418
|
+
declare const CyanLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
453
419
|
|
|
454
|
-
declare const
|
|
420
|
+
declare const GrayLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
455
421
|
|
|
456
422
|
interface IInfoWithText {
|
|
457
423
|
value: string;
|
|
@@ -488,7 +454,7 @@ declare const retrieveLanguageOptionList: () => {
|
|
|
488
454
|
}[];
|
|
489
455
|
declare const getLanguageFromCode: (code: string) => "TURKISH" | "ENGLISH";
|
|
490
456
|
declare const getLanguageFromCurriculumType: (curriculumType: string) => "TURKISH" | "ENGLISH";
|
|
491
|
-
declare const getSystemLanguageFromCurriculumType: (curriculumType: string) => "
|
|
457
|
+
declare const getSystemLanguageFromCurriculumType: (curriculumType: string) => "TR" | "EN";
|
|
492
458
|
|
|
493
459
|
declare const decodeJWT: (token: string) => any;
|
|
494
460
|
declare const encodeJWT: (payload: object) => string;
|
|
@@ -955,4 +921,4 @@ declare const retrieveActivityMethodologyOptionList: () => {
|
|
|
955
921
|
text: string;
|
|
956
922
|
}[];
|
|
957
923
|
|
|
958
|
-
export { ActivityBodyContent, ActivityEmptyContent, ActivityEvaluationRubricContent,
|
|
924
|
+
export { ActivityBodyContent, ActivityEmptyContent, ActivityEvaluationRubricContent, ActivityPreviewByData, ActivitySolutionContent, ApproveButton, BaseCard, BaseImage, BaseLoading, BaseLoadingWithText, BaseModal, BasePDF, BaseTitle, BlueLabel, BlueVerticalDividerLine, CancelButton, CoralLabel, CreateButton, CyanLabel, DeleteButton, DividerLine, DropdownActivityContent, FillInTheBlanksActivityContent, FullCard, GrayLabel, GreenLabel, GroupingActivityContent, InfoWithText, InputGroup, InputWithSpecialExpression, LeftTextRightInputGroup, LimeLabel, MCMAActivityContent, MCSAActivityContent, MatchingActivityContent, ONE_DAY, ONE_HOUR, ONE_MONTH, ONE_WEEK, OpenEndedActivityContent, OrangeLabel, OrderingActivityContent, PageTravelGroup, PrimaryButton, ProgressBar, PurpleLabel, RedLabel, ScoreBar, SecondaryButton, SelectionBox, SelectionCheckbox, SelectionTab, SelectionTabFill, StatusError, SubTitle, THREE_MONTHS, TealLabel, TimedProgressBar, TrueFalseActivityContent, VerticalDividerLine, base64ToFile, calculateEndDateOfWeek, calculateLevenshteinDistance, calculateStartDateOfWeek, checkActivityAnswerState, constructActivityAnswerMap, constructActivityAnswerStateList, constructActivityData, constructActivityItemListBodyOnly, constructActivityItemListForSolution, constructActivityItemListMaterialOnly, constructActivityItemListSolutionOnly, constructActivityItemListWithAnswersForAI, constructActivityItemListWithSolutionForAI, constructAnswerBasedOnData, constructBaseNumericIndividualModel, constructBaseVerbalIndvidualModel, constructCategoryTreeFromParentCode, constructCombinedCorporateAssessmentAssignmentReportMap, constructCombinedOutcomeActivityScoreMapFromCombinedReport, constructInputWithSpecialExpressionList, constructMonthName, constructOutcomeActivityScoreList, constructUserProfileQueryParams, constructWeekName, convertDataURLtoFile, convertToBase64, convertToBodyMapString, convertToEvaluationRubricMapString, convertToSolutionMapString, convertTurkishCharactersToEnglish, decodeJWT, encodeJWT, filterCategoryVersionCodeOptionList, filterCategoryVersionCodeOptionListByGradeDTO, filterCategoryVersionCodeOptionListByInstitutionDTO, filterCoterieTypeByDistinctOptionList, filterCoterieTypeOptionList, filterCurriculumTypeOptionList, filterGradeLevelOptionList, filterUserRoleOptionList, findAISettingsFromCurrentProfile, findBestFitActivity, formatPriceWithCommas, getColorByIndex, getCurrentDateTime, getLanguageFromCode, getLanguageFromCurriculumType, getOneWeekLater, getSystemLanguageFromCurriculumType, ignoreMathematicalExpression, mergeObjects, parseBodyMapFromData, parseContentMapFromData, parseMaterialMapFromData, retrieveActivityAnswerFromAnswerList, retrieveActivityCountOptionList, retrieveActivityMethodologyOptionList, retrieveActivityTemplateDTOOptionList, retrieveAllEarnedBadgeDTOListByCoterieType, retrieveAllEarnedBadgeDTOListByCoterieTypeList, retrieveAnnouncementAudienceOptionList, retrieveAnnouncementTypeOptionList, retrieveBadgeRuleListByParams, retrieveBadgeRuleTextByParams, retrieveBranchDTOByUserProfileOptionList, retrieveBranchDTOOptionList, retrieveBrandDTOByUserProfileOptionList, retrieveBrandDTOOptionList, retrieveCampusDTOByUserProfileOptionList, retrieveCampusDTOOptionList, retrieveCategoryVersionCodeOptionList, retrieveClockTimeLeft, retrieveColorByScore, retrieveContentTypeOptionList, retrieveContestTypeOptionList, retrieveCoterieTypeFromStandardExamCoterieType, retrieveCoterieTypeOptionList, retrieveCountryCodeOptionList, retrieveCountryNameOptionList, retrieveCurrencyTypeOptionList, retrieveCurrentDefaultDataMap, retrieveCurriculumTypeOptionList, retrieveDateIntervalOptionList, retrieveDefaultUserRoleOptionList, retrieveDelayTypeOptionList, retrieveDifficultyByActivityTypeFromData, retrieveDifficultyOptionList, retrieveDiscountAmountTypeOptionList, retrieveDistinctCoterieTypeFromCorporatePersonalizedAssignmentApplicationDTO, retrieveDocumentTypeFromAcceptedFormat, retrieveDocumentTypeFromExtension, retrieveDurationInMinutesOptionList, retrieveDurationInSecondsOptionList, retrieveDurationTypeOptionList, retrieveEachTimeSpentInSeconds, retrieveEnableOptionList, retrieveExternalRegistrationDTOOptionList, retrieveFrequencyTypeOptionList, retrieveGenderOptionList, retrieveGradeDTOByUserProfileOptionList, retrieveGradeDTOOptionList, retrieveGradeLevelOptionList, retrieveInstitutionDTOByUserProfileOptionList, retrieveInstitutionDTOOptionList, retrieveInstitutionTypeByLevel, retrieveInstitutionTypeOptionList, retrieveLanguageOptionList, retrieveLastNOptionList, retrieveLeagueThresholdByLeagueType, retrieveLeagueThresholds, retrieveLeagueTypeOptionList, retrieveMonthNameByIndex, retrieveOpticalExamPartTypeOptionList, retrieveOpticalExamTypeOptionList, retrieveOtherBadgeDTOList, retrieveOutcomePlanTypeOptionList, retrievePhoneNumberAreaCodeList, retrieveProvinceNameOptionList, retrieveReportTypeOptionList, retrieveSeasonDTOByUserProfileOptionList, retrieveSeasonDTOOptionList, retrieveStandardExamCoterieTypeOptionListByStandardExamType, retrieveStandardExamTypeIcon, retrieveStandardExamTypeOptionList, retrieveStatusOptionList, retrieveTeachingMethodologyOptionList, retrieveTimeFilterOptionList, retrieveTimeFilterWithLastNOptionList, retrieveTokenUsageSubTypeOptionList, retrieveTokenUsageTypeOptionList, retrieveTotalTimeSpentInMinutes, retrieveTotalTimeSpentInSeconds, retrieveUserAuthorityGeneralOptionList, retrieveUserRoleOptionList, retrieveValidationRequirementList, shuffleArray, useScreenSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -393,65 +393,31 @@ declare const SelectionTab: ({ optionList, selectedId, handleSelectOnClick, sele
|
|
|
393
393
|
|
|
394
394
|
declare const SelectionTabFill: ({ optionList, selectedId, handleSelectOnClick, }: ISelectionTabProps) => react_jsx_runtime.JSX.Element;
|
|
395
395
|
|
|
396
|
-
interface
|
|
397
|
-
title: string;
|
|
398
|
-
icon: any;
|
|
399
|
-
font: string;
|
|
400
|
-
}
|
|
401
|
-
interface IBrandLabelProps {
|
|
402
|
-
title: string;
|
|
403
|
-
icon: any;
|
|
404
|
-
font: string;
|
|
405
|
-
}
|
|
406
|
-
interface ICategoryLabelProps {
|
|
407
|
-
title: string;
|
|
408
|
-
icon: any;
|
|
409
|
-
font: string;
|
|
410
|
-
}
|
|
411
|
-
interface ICoterieLabelProps {
|
|
412
|
-
title: string;
|
|
413
|
-
font: string;
|
|
414
|
-
}
|
|
415
|
-
interface IGradeLabelProps {
|
|
416
|
-
title: string;
|
|
417
|
-
font: string;
|
|
418
|
-
}
|
|
419
|
-
interface IOutcomeLabelProps {
|
|
420
|
-
title: string;
|
|
421
|
-
font: string;
|
|
422
|
-
}
|
|
423
|
-
interface IPersonalLabelProps {
|
|
424
|
-
title: string;
|
|
425
|
-
icon: any;
|
|
426
|
-
font: string;
|
|
427
|
-
}
|
|
428
|
-
interface IPublishingLabelProps {
|
|
429
|
-
title: string;
|
|
430
|
-
icon: any;
|
|
431
|
-
font: string;
|
|
432
|
-
}
|
|
433
|
-
interface IActivityLabelProps {
|
|
396
|
+
interface IFixedLabelProps {
|
|
434
397
|
title: string;
|
|
398
|
+
icon?: any;
|
|
435
399
|
font: string;
|
|
436
400
|
}
|
|
437
401
|
|
|
438
|
-
declare const
|
|
402
|
+
declare const TealLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
403
|
+
|
|
404
|
+
declare const PurpleLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
439
405
|
|
|
440
|
-
declare const
|
|
406
|
+
declare const GreenLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
441
407
|
|
|
442
|
-
declare const
|
|
408
|
+
declare const BlueLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
443
409
|
|
|
444
|
-
declare const
|
|
410
|
+
declare const OrangeLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
445
411
|
|
|
446
|
-
declare const
|
|
412
|
+
declare const RedLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
447
413
|
|
|
448
|
-
declare const
|
|
414
|
+
declare const LimeLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
449
415
|
|
|
450
|
-
declare const
|
|
416
|
+
declare const CoralLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
451
417
|
|
|
452
|
-
declare const
|
|
418
|
+
declare const CyanLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
453
419
|
|
|
454
|
-
declare const
|
|
420
|
+
declare const GrayLabel: ({ title, icon, font }: IFixedLabelProps) => react_jsx_runtime.JSX.Element;
|
|
455
421
|
|
|
456
422
|
interface IInfoWithText {
|
|
457
423
|
value: string;
|
|
@@ -488,7 +454,7 @@ declare const retrieveLanguageOptionList: () => {
|
|
|
488
454
|
}[];
|
|
489
455
|
declare const getLanguageFromCode: (code: string) => "TURKISH" | "ENGLISH";
|
|
490
456
|
declare const getLanguageFromCurriculumType: (curriculumType: string) => "TURKISH" | "ENGLISH";
|
|
491
|
-
declare const getSystemLanguageFromCurriculumType: (curriculumType: string) => "
|
|
457
|
+
declare const getSystemLanguageFromCurriculumType: (curriculumType: string) => "TR" | "EN";
|
|
492
458
|
|
|
493
459
|
declare const decodeJWT: (token: string) => any;
|
|
494
460
|
declare const encodeJWT: (payload: object) => string;
|
|
@@ -955,4 +921,4 @@ declare const retrieveActivityMethodologyOptionList: () => {
|
|
|
955
921
|
text: string;
|
|
956
922
|
}[];
|
|
957
923
|
|
|
958
|
-
export { ActivityBodyContent, ActivityEmptyContent, ActivityEvaluationRubricContent,
|
|
924
|
+
export { ActivityBodyContent, ActivityEmptyContent, ActivityEvaluationRubricContent, ActivityPreviewByData, ActivitySolutionContent, ApproveButton, BaseCard, BaseImage, BaseLoading, BaseLoadingWithText, BaseModal, BasePDF, BaseTitle, BlueLabel, BlueVerticalDividerLine, CancelButton, CoralLabel, CreateButton, CyanLabel, DeleteButton, DividerLine, DropdownActivityContent, FillInTheBlanksActivityContent, FullCard, GrayLabel, GreenLabel, GroupingActivityContent, InfoWithText, InputGroup, InputWithSpecialExpression, LeftTextRightInputGroup, LimeLabel, MCMAActivityContent, MCSAActivityContent, MatchingActivityContent, ONE_DAY, ONE_HOUR, ONE_MONTH, ONE_WEEK, OpenEndedActivityContent, OrangeLabel, OrderingActivityContent, PageTravelGroup, PrimaryButton, ProgressBar, PurpleLabel, RedLabel, ScoreBar, SecondaryButton, SelectionBox, SelectionCheckbox, SelectionTab, SelectionTabFill, StatusError, SubTitle, THREE_MONTHS, TealLabel, TimedProgressBar, TrueFalseActivityContent, VerticalDividerLine, base64ToFile, calculateEndDateOfWeek, calculateLevenshteinDistance, calculateStartDateOfWeek, checkActivityAnswerState, constructActivityAnswerMap, constructActivityAnswerStateList, constructActivityData, constructActivityItemListBodyOnly, constructActivityItemListForSolution, constructActivityItemListMaterialOnly, constructActivityItemListSolutionOnly, constructActivityItemListWithAnswersForAI, constructActivityItemListWithSolutionForAI, constructAnswerBasedOnData, constructBaseNumericIndividualModel, constructBaseVerbalIndvidualModel, constructCategoryTreeFromParentCode, constructCombinedCorporateAssessmentAssignmentReportMap, constructCombinedOutcomeActivityScoreMapFromCombinedReport, constructInputWithSpecialExpressionList, constructMonthName, constructOutcomeActivityScoreList, constructUserProfileQueryParams, constructWeekName, convertDataURLtoFile, convertToBase64, convertToBodyMapString, convertToEvaluationRubricMapString, convertToSolutionMapString, convertTurkishCharactersToEnglish, decodeJWT, encodeJWT, filterCategoryVersionCodeOptionList, filterCategoryVersionCodeOptionListByGradeDTO, filterCategoryVersionCodeOptionListByInstitutionDTO, filterCoterieTypeByDistinctOptionList, filterCoterieTypeOptionList, filterCurriculumTypeOptionList, filterGradeLevelOptionList, filterUserRoleOptionList, findAISettingsFromCurrentProfile, findBestFitActivity, formatPriceWithCommas, getColorByIndex, getCurrentDateTime, getLanguageFromCode, getLanguageFromCurriculumType, getOneWeekLater, getSystemLanguageFromCurriculumType, ignoreMathematicalExpression, mergeObjects, parseBodyMapFromData, parseContentMapFromData, parseMaterialMapFromData, retrieveActivityAnswerFromAnswerList, retrieveActivityCountOptionList, retrieveActivityMethodologyOptionList, retrieveActivityTemplateDTOOptionList, retrieveAllEarnedBadgeDTOListByCoterieType, retrieveAllEarnedBadgeDTOListByCoterieTypeList, retrieveAnnouncementAudienceOptionList, retrieveAnnouncementTypeOptionList, retrieveBadgeRuleListByParams, retrieveBadgeRuleTextByParams, retrieveBranchDTOByUserProfileOptionList, retrieveBranchDTOOptionList, retrieveBrandDTOByUserProfileOptionList, retrieveBrandDTOOptionList, retrieveCampusDTOByUserProfileOptionList, retrieveCampusDTOOptionList, retrieveCategoryVersionCodeOptionList, retrieveClockTimeLeft, retrieveColorByScore, retrieveContentTypeOptionList, retrieveContestTypeOptionList, retrieveCoterieTypeFromStandardExamCoterieType, retrieveCoterieTypeOptionList, retrieveCountryCodeOptionList, retrieveCountryNameOptionList, retrieveCurrencyTypeOptionList, retrieveCurrentDefaultDataMap, retrieveCurriculumTypeOptionList, retrieveDateIntervalOptionList, retrieveDefaultUserRoleOptionList, retrieveDelayTypeOptionList, retrieveDifficultyByActivityTypeFromData, retrieveDifficultyOptionList, retrieveDiscountAmountTypeOptionList, retrieveDistinctCoterieTypeFromCorporatePersonalizedAssignmentApplicationDTO, retrieveDocumentTypeFromAcceptedFormat, retrieveDocumentTypeFromExtension, retrieveDurationInMinutesOptionList, retrieveDurationInSecondsOptionList, retrieveDurationTypeOptionList, retrieveEachTimeSpentInSeconds, retrieveEnableOptionList, retrieveExternalRegistrationDTOOptionList, retrieveFrequencyTypeOptionList, retrieveGenderOptionList, retrieveGradeDTOByUserProfileOptionList, retrieveGradeDTOOptionList, retrieveGradeLevelOptionList, retrieveInstitutionDTOByUserProfileOptionList, retrieveInstitutionDTOOptionList, retrieveInstitutionTypeByLevel, retrieveInstitutionTypeOptionList, retrieveLanguageOptionList, retrieveLastNOptionList, retrieveLeagueThresholdByLeagueType, retrieveLeagueThresholds, retrieveLeagueTypeOptionList, retrieveMonthNameByIndex, retrieveOpticalExamPartTypeOptionList, retrieveOpticalExamTypeOptionList, retrieveOtherBadgeDTOList, retrieveOutcomePlanTypeOptionList, retrievePhoneNumberAreaCodeList, retrieveProvinceNameOptionList, retrieveReportTypeOptionList, retrieveSeasonDTOByUserProfileOptionList, retrieveSeasonDTOOptionList, retrieveStandardExamCoterieTypeOptionListByStandardExamType, retrieveStandardExamTypeIcon, retrieveStandardExamTypeOptionList, retrieveStatusOptionList, retrieveTeachingMethodologyOptionList, retrieveTimeFilterOptionList, retrieveTimeFilterWithLastNOptionList, retrieveTokenUsageSubTypeOptionList, retrieveTokenUsageTypeOptionList, retrieveTotalTimeSpentInMinutes, retrieveTotalTimeSpentInSeconds, retrieveUserAuthorityGeneralOptionList, retrieveUserRoleOptionList, retrieveValidationRequirementList, shuffleArray, useScreenSize };
|