@instructure/quiz-core 21.2.0 → 22.1.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/es/banks/api/banks.js +2 -2
- package/es/banks/components/AddBankEntryModal/presenter.js +29 -17
- package/es/banks/components/AddToBankModal/presenter.js +44 -32
- package/es/banks/components/AsyncSearch/index.js +81 -69
- package/es/banks/components/Bank/presenter.js +79 -67
- package/es/banks/components/Bank/styles.js +2 -2
- package/es/banks/components/Bank/theme.js +1 -1
- package/es/banks/components/BankEntriesList/presenter.js +23 -11
- package/es/banks/components/BankEntry/presenter.js +81 -69
- package/es/banks/components/BankEntry/styles.js +2 -2
- package/es/banks/components/BankEntry/theme.js +5 -5
- package/es/banks/components/BankEntryRow/presenter.js +49 -37
- package/es/banks/components/BankEntryRow/styles.js +0 -1
- package/es/banks/components/BankEntryRow/theme.js +4 -4
- package/es/banks/components/BankSearch/presenter.js +26 -14
- package/es/banks/components/Banks/presenter.js +102 -90
- package/es/banks/components/Banks/theme.js +2 -2
- package/es/banks/components/BanksList/presenter.js +74 -62
- package/es/banks/components/BanksList/theme.js +4 -4
- package/es/banks/components/CopyMoveBankEntryModal/presenter.js +138 -57
- package/es/banks/components/CreateBankModal/presenter.js +43 -31
- package/es/banks/components/EditBankModal/presenter.js +37 -25
- package/es/banks/components/HeaderBreadCrumb/index.js +19 -7
- package/es/banks/components/HeaderMenu/presenter.js +14 -2
- package/es/banks/components/NavWrapper/presenter.js +21 -9
- package/es/banks/components/NavWrapper/styles.js +2 -2
- package/es/banks/components/NavWrapper/theme.js +3 -3
- package/es/banks/components/SharingModal/ContextualIconButton/index.js +22 -10
- package/es/banks/components/SharingModal/RootAccountSharing.js +19 -7
- package/es/banks/components/SharingModal/ShareList/index.js +29 -17
- package/es/banks/components/SharingModal/presenter.js +120 -108
- package/es/banks/components/SharingModal/theme.js +1 -1
- package/es/building/api/quizEntries.js +2 -2
- package/es/building/components/layout/Sidebar/Sidebar.examples.js +21 -9
- package/es/building/components/layout/Sidebar/SidebarItem/presenter.js +14 -2
- package/es/building/components/layout/Sidebar/Stimulus/presenter.js +14 -2
- package/es/building/components/layout/Sidebar/presenter.js +40 -28
- package/es/building/components/layout/Sidebar/styles.js +2 -2
- package/es/building/components/layout/header/BuildingButtons/presenter.js +35 -23
- package/es/building/components/layout/header/BuildingButtons/styles.js +2 -2
- package/es/building/components/layout/header/BuildingButtons/theme.js +1 -1
- package/es/building/components/resources/ActionButtons/presenter.js +28 -16
- package/es/building/components/resources/ActionButtons/styles.js +2 -2
- package/es/building/components/resources/ActionButtons/theme.js +1 -1
- package/es/building/components/resources/AddToBankOptions/index.js +28 -16
- package/es/building/components/resources/AddToBankOptions/theme.js +2 -2
- package/es/building/components/resources/BanksTray/presenter.js +33 -21
- package/es/building/components/resources/DeleteStimulusModal/presenter.js +62 -50
- package/es/building/components/resources/ItemFeedbackModal/presenter.js +28 -16
- package/es/building/components/resources/MoveImmutableModal/presenter.js +28 -16
- package/es/building/components/resources/quiz/editButton/EditButton.js +21 -9
- package/es/building/components/resources/quiz/instructions/Edit/presenter.js +14 -2
- package/es/building/components/resources/quiz/instructions/Instructions/presenter.js +37 -25
- package/es/building/components/resources/quiz/instructions/Instructions/theme.js +1 -1
- package/es/building/components/resources/quiz/instructions/Show/index.js +19 -7
- package/es/building/components/resources/quiz/title/Edit/index.js +34 -22
- package/es/building/components/resources/quiz/title/Edit/styles.js +2 -2
- package/es/building/components/resources/quiz/title/Edit/theme.js +1 -1
- package/es/building/components/resources/quiz/title/Show/index.js +19 -7
- package/es/building/components/resources/quiz/title/Title/presenter.js +37 -25
- package/es/building/components/resources/quiz/title/Title/styles.js +2 -2
- package/es/building/components/resources/quiz/title/Title/theme.js +3 -3
- package/es/building/components/resources/quizEntry/QuizEntry/presenter.js +59 -47
- package/es/building/components/resources/quizEntry/QuizEntry/quizEntryPresenterWrapper.js +14 -2
- package/es/building/components/resources/quizEntry/QuizEntry/theme.js +1 -1
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js +54 -42
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/theme.js +3 -3
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/index.js +14 -2
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/theme.js +2 -2
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/presenter.js +43 -31
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/styles.js +2 -2
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Header/index.js +63 -51
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Header/theme.js +2 -2
- package/es/building/components/resources/quizEntry/QuizEntryEdit/presenter.js +112 -100
- package/es/building/components/resources/quizEntry/QuizEntryShow/presenter.js +50 -38
- package/es/building/components/resources/quizEntry/QuizEntryShow/styles.js +2 -2
- package/es/building/components/resources/quizEntry/QuizEntryShow/theme.js +5 -5
- package/es/common/api/callHandlers.js +2 -2
- package/es/common/components/AccessCodeTextInput/index.js +20 -8
- package/es/common/components/ConfirmationModal/index.js +2 -2
- package/es/common/components/ConfirmationModal/presenter.js +40 -28
- package/es/common/components/ImportModal/ImportFileSelector/index.js +14 -2
- package/es/common/components/ImportModal/ImportFileSelector/theme.js +4 -4
- package/es/common/components/ImportModal/presenter.js +58 -46
- package/es/common/components/LearnosityCalculator/index.js +22 -10
- package/es/common/components/MaskedTextInput/index.js +16 -4
- package/es/common/components/Pin/presenter.js +19 -7
- package/es/common/components/PreviewFrame/index.js +14 -2
- package/es/common/components/PrintFontSizeModal/presenter.js +26 -14
- package/es/common/components/PrintFontSizeModal/theme.js +1 -1
- package/es/common/components/RceConfigProvider/presenter.js +2 -2
- package/es/common/components/SDKApp/index.js +21 -9
- package/es/common/components/alerts/presenter.js +22 -10
- package/es/common/components/layout/Page/index.js +14 -2
- package/es/common/components/layout/Page/styles.js +2 -2
- package/es/common/components/layout/header/Calculator/presenter.js +14 -2
- package/es/common/components/layout/header/HeaderMenuButton/presenter.js +22 -10
- package/es/common/components/layout/header/HeaderMenuButton/theme.js +1 -1
- package/es/common/components/layout/header/Timer/presenter.js +29 -17
- package/es/common/components/layout/header/Timer/theme.js +3 -3
- package/es/common/components/layout/navbar/SecondaryNavBarButton/index.js +14 -2
- package/es/common/components/layout/navbar/index.js +40 -28
- package/es/common/components/layout/navbar/styles.js +2 -2
- package/es/common/components/layout/navbar/theme.js +1 -1
- package/es/common/components/layout/sidebar/PositionSummary/index.js +16 -4
- package/es/common/components/layout/sidebar/PositionSummary/theme.js +2 -2
- package/es/common/components/layout/sidebar/Sidebar/Pin.js +19 -7
- package/es/common/components/layout/sidebar/Sidebar/index.js +36 -24
- package/es/common/components/layout/sidebar/Sidebar/styles.js +2 -2
- package/es/common/components/layout/sidebar/Sidebar/theme.js +10 -10
- package/es/common/components/layout/sidebar/SidebarItem/presenter.js +20 -8
- package/es/common/components/layout/sidebar/SidebarItem/styles.js +2 -2
- package/es/common/components/layout/sidebar/SidebarItem/theme.js +5 -5
- package/es/common/components/layout/sidebar/Stimulus/Collection/presenter.js +30 -15
- package/es/common/components/layout/sidebar/Stimulus/Collection/styles.js +2 -2
- package/es/common/components/layout/sidebar/Stimulus/Collection/theme.js +1 -1
- package/es/common/components/layout/sidebar/Stimulus/Summary/presenter.js +22 -10
- package/es/common/components/layout/sidebar/Stimulus/Summary/theme.js +2 -2
- package/es/common/components/layout/sidebar/Stimulus/Title/index.js +14 -2
- package/es/common/components/layout/sidebar/Stimulus/presenter.js +117 -45
- package/es/common/components/layout/sidebar/Stimulus/styles.js +2 -26
- package/es/common/components/layout/sidebar/Stimulus/theme.js +2 -11
- package/es/common/components/resources/BankSelection/presenter.js +51 -16
- package/es/common/components/resources/WarningWrapper/index.js +20 -8
- package/es/common/components/resources/WarningWrapper/theme.js +1 -1
- package/es/common/components/resources/entry/EntrySave/presenter.js +37 -25
- package/es/common/components/resources/item/ItemEdit/presenter.js +27 -15
- package/es/common/components/resources/item/ItemOverride/presenter.js +21 -9
- package/es/common/components/resources/item/ItemShow/index.js +14 -2
- package/es/common/components/resources/positionBox/PositionBox.js +14 -2
- package/es/common/components/resources/positionBox/theme.js +2 -2
- package/es/common/components/resources/quiz/AddContent/Body/presenter.js +47 -35
- package/es/common/components/resources/quiz/AddContent/Body/theme.js +1 -1
- package/es/common/components/resources/quiz/AddContent/Button/index.js +19 -7
- package/es/common/components/resources/quiz/AddContent/Button/styles.js +2 -2
- package/es/common/components/resources/quiz/AddContent/Button/theme.js +4 -4
- package/es/common/components/resources/quiz/AddContent/Modal/presenter.js +14 -2
- package/es/common/components/resources/quiz/AddContent/Popover/presenter.js +45 -33
- package/es/common/components/resources/quiz/AddContent/Popover/theme.js +1 -1
- package/es/common/components/resources/quiz/info/QuizInfo.js +14 -2
- package/es/common/components/resources/quiz/instructions/Instructions.js +14 -2
- package/es/common/components/resources/quiz/title/Title.js +14 -2
- package/es/common/components/resources/quizSessionResult/Header/index.js +21 -9
- package/es/common/components/resources/quizSessionResult/Info/index.js +19 -7
- package/es/common/components/resources/sessionItemResult/ResultStimulus/index.js +19 -7
- package/es/common/components/resources/sessionItemResult/ResultStimulus/styles.js +2 -2
- package/es/common/components/resources/sessionItemResult/ResultStimulus/theme.js +4 -4
- package/es/common/components/resources/sessionItemResult/SessionItemResult/presenter.js +38 -26
- package/es/common/components/resources/sessionItemResult/SessionItemResult/styles.js +2 -2
- package/es/common/components/resources/sessionItemResult/SessionItemResult/theme.js +4 -4
- package/es/common/components/resources/sessionItemResult/SessionItemResultsList/index.js +23 -11
- package/es/common/components/resources/sessionItemResult/SessionItemResultsList/theme.js +1 -1
- package/es/common/components/resources/stimulus/Stimulus/presenter.js +32 -20
- package/es/common/components/resources/stimulus/Stimulus/styles.js +2 -2
- package/es/common/components/resources/stimulus/Stimulus/theme.js +1 -1
- package/es/common/components/resources/stimulus/StimulusEdit/presenter.js +129 -115
- package/es/common/components/resources/stimulus/StimulusEdit/theme.js +1 -1
- package/es/common/components/resources/stimulus/StimulusEditInfo/presenter.js +31 -18
- package/es/common/components/resources/stimulus/StimulusEditInfo/theme.js +1 -1
- package/es/common/components/resources/stimulus/StimulusShow/index.js +19 -7
- package/es/common/components/resources/stimulus/StimulusShowInfo/index.js +14 -2
- package/es/common/components/shared/Card/CardContent/index.js +16 -4
- package/es/common/components/shared/Card/CardContent/theme.js +2 -2
- package/es/common/components/shared/Card/CardWrapper/index.js +16 -4
- package/es/common/components/shared/ExpandButton/index.js +14 -2
- package/es/common/components/shared/ExpandButton/styles.js +2 -2
- package/es/common/components/shared/FormattedDuration/index.js +16 -4
- package/es/common/components/shared/GenericAsyncSearch/GenericAsyncSearch.js +69 -50
- package/es/common/components/shared/IfFeature/presenter.js +14 -2
- package/es/common/components/shared/InteractionTypes/presenter.js +38 -26
- package/es/common/components/shared/InteractionTypes/theme.js +1 -1
- package/es/common/components/shared/PaginatedCollection/presenter.js +19 -7
- package/es/common/components/shared/PaginatedCollection/theme.js +1 -1
- package/es/common/components/shared/Paginator/index.js +17 -5
- package/es/common/components/shared/PrintTrigger/presenter.js +43 -31
- package/es/common/components/shared/TagDisplay/index.js +14 -2
- package/es/common/components/shared/TagSelect/presenter.js +55 -43
- package/es/common/components/shared/TagSuggestSelect/presenter.js +30 -18
- package/es/common/components/shared/TagWrapper/presenter.js +19 -7
- package/es/common/components/shared/TimeUnitsInput/index.js +53 -41
- package/es/common/components/shared/drag_and_drop/DragAndDropZone/index.js +18 -6
- package/es/common/components/shared/drag_and_drop/DragAndDropZone/styles.js +2 -2
- package/es/common/components/shared/drag_and_drop/DragAndDropZone/theme.js +5 -5
- package/es/common/components/shared/drag_and_drop/DragHandle/presenter.js +31 -19
- package/es/common/components/shared/errors/Errors.js +19 -7
- package/es/common/components/shared/errors/theme.js +1 -1
- package/es/common/components/shared/file_selector/FileSelector.js +18 -6
- package/es/common/components/shared/file_selector/theme.js +2 -2
- package/es/common/components/shared/functionality/componentWithOutsideClick.js +24 -13
- package/es/common/components/shared/functionality/componentWithOutsideClickEmotion.js +18 -6
- package/es/common/components/shared/functionality/makeEditable.js +23 -11
- package/es/common/components/shared/functionality/makeScrollable.js +25 -13
- package/es/common/components/shared/overlay/index.js +14 -2
- package/es/common/components/shared/overlay/theme.js +1 -1
- package/es/common/components/shared/return_button/ReturnButton.js +14 -2
- package/es/common/components/shared/spinner/Spinner.js +21 -9
- package/es/common/kinesis/StreamQueue.js +2 -2
- package/es/common/records/Alert.js +14 -2
- package/es/common/records/Bank.js +14 -2
- package/es/common/records/BankEntry.js +17 -5
- package/es/common/records/Item.js +14 -2
- package/es/common/records/ItemAnalysis.js +14 -2
- package/es/common/records/QtiImport.js +14 -2
- package/es/common/records/Quiz.js +19 -7
- package/es/common/records/QuizAnalysis.js +14 -2
- package/es/common/records/QuizEntry.js +65 -42
- package/es/common/records/QuizSession.js +14 -2
- package/es/common/records/QuizSessionEvent.js +14 -2
- package/es/common/records/QuizSessionResult.js +14 -2
- package/es/common/records/Response.js +14 -2
- package/es/common/records/SessionItem.js +23 -5
- package/es/common/records/SessionItemResult.js +14 -2
- package/es/common/records/Stimulus.js +14 -2
- package/es/common/records/baseRecord.js +16 -4
- package/es/common/records/reduxRecord.js +14 -2
- package/es/common/reducers/modifications.js +2 -2
- package/es/common/util/ExhaustivePaginatedFetcher.js +23 -12
- package/es/common/util/Fetcher.js +2 -2
- package/es/common/util/PaginatedFetcher.js +24 -13
- package/es/common/util/ThunkQueue.js +3 -3
- package/es/common/util/jsonify.js +2 -2
- package/es/common/util/withDynamoPagination.js +20 -8
- package/es/messages/StorageExhaustionError.js +18 -6
- package/es/messages/postMessageService.js +2 -2
- package/es/moderating/components/events/Event.js +14 -2
- package/es/moderating/components/events/PageBlurredEvent.js +14 -2
- package/es/moderating/components/events/PageFocusedEvent.js +14 -2
- package/es/moderating/components/events/RCEEvent.js +14 -2
- package/es/moderating/components/events/ResponseEvent.js +17 -5
- package/es/moderating/components/events/SessionStartEvent.js +14 -2
- package/es/moderating/components/events/SessionSubmitEvent.js +14 -2
- package/es/moderating/components/events/theme.js +1 -1
- package/es/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/ExtraAttemptsInput/index.js +20 -8
- package/es/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/index.js +30 -18
- package/es/moderating/components/resources/AccommodationsModal/ExtraTimeMultiplier/index.js +33 -21
- package/es/moderating/components/resources/AccommodationsModal/ExtraTimeSettings/index.js +27 -15
- package/es/moderating/components/resources/AccommodationsModal/ReduceAnswerChoicesSettings/index.js +24 -12
- package/es/moderating/components/resources/AccommodationsModal/index.js +46 -34
- package/es/moderating/components/resources/ElapsedTime.js +14 -2
- package/es/moderating/components/resources/ModerateTable/presenter.js +78 -66
- package/es/moderating/components/resources/ModerateTable/styles.js +2 -2
- package/es/moderating/components/resources/ModerateTable/theme.js +1 -1
- package/es/moderating/components/resources/ModerateTableRow/presenter.js +44 -32
- package/es/moderating/components/resources/OutstandingQuizzesModal/presenter.js +42 -30
- package/es/moderating/components/sidebar/ModerateTray/presenter.js +52 -40
- package/es/moderating/components/sidebar/ResetQuiz/presenter.js +27 -15
- package/es/reporting/components/Caption/index.js +14 -2
- package/es/reporting/components/MetricsListItem/index.js +16 -4
- package/es/reporting/components/charts/CentileDistribution/presenter.js +28 -16
- package/es/reporting/components/charts/Distribution/presenter.js +35 -23
- package/es/reporting/components/charts/Distribution/theme.js +4 -4
- package/es/reporting/components/charts/Legend/index.js +18 -6
- package/es/reporting/components/charts/Legend/styles.js +2 -2
- package/es/reporting/components/charts/Legend/theme.js +3 -3
- package/es/reporting/components/charts/QuintileDistribution/presenter.js +31 -19
- package/es/reporting/components/charts/QuintileDistribution/theme.js +1 -1
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/index.js +22 -10
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/theme.js +8 -8
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/presenter.js +33 -21
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/theme.js +4 -4
- package/es/reporting/components/quizAnalysis/QuizAnalysisOverview.js +20 -8
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +14 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +14 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/presenter.js +21 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/presenter.js +21 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/presenter.js +36 -24
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/theme.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/presenter.js +19 -7
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/CategorizationType.js +25 -13
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingType.js +21 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +46 -34
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/OrderingType.js +27 -15
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/presenter.js +28 -16
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/presenter.js +59 -47
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/presenter.js +41 -29
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/presenter.js +28 -16
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/index.js +25 -13
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/index.js +21 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/presenter.js +42 -30
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/presenter.js +27 -15
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/presenter.js +23 -11
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +52 -40
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/theme.js +5 -5
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/presenter.js +65 -53
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/theme.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/presenter.js +34 -22
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js +34 -22
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/presenter.js +14 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/theme.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/presenter.js +63 -51
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/theme.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +36 -24
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/presenter.js +58 -46
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/theme.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/presenter.js +20 -8
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/theme.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +74 -62
- package/es/reporting/components/resources/OutcomeAnalysis/presenter.js +14 -2
- package/es/reporting/components/resources/QuizAndItemAnalysis/presenter.js +34 -22
- package/es/reporting/components/resources/QuizAndItemAnalysis/theme.js +1 -1
- package/es/reporting/components/resources/ReportCard/index.js +14 -2
- package/es/reporting/components/resources/ReportList/index.js +14 -2
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/presenter.js +57 -45
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/styles.js +2 -2
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/theme.js +1 -1
- package/es/reporting/components/resources/common/AnalysisUpdateDate/index.js +14 -2
- package/es/taking/api/taking.js +1 -1
- package/lib/banks/api/banks.js +2 -2
- package/lib/banks/components/AddBankEntryModal/index.js +2 -2
- package/lib/banks/components/AddBankEntryModal/presenter.js +31 -19
- package/lib/banks/components/AddToBankModal/index.js +2 -2
- package/lib/banks/components/AddToBankModal/presenter.js +46 -34
- package/lib/banks/components/AsyncSearch/index.js +83 -71
- package/lib/banks/components/Bank/index.js +2 -2
- package/lib/banks/components/Bank/presenter.js +81 -69
- package/lib/banks/components/Bank/styles.js +2 -2
- package/lib/banks/components/Bank/theme.js +1 -1
- package/lib/banks/components/BankEntriesList/presenter.js +23 -11
- package/lib/banks/components/BankEntry/presenter.js +81 -69
- package/lib/banks/components/BankEntry/styles.js +2 -2
- package/lib/banks/components/BankEntry/theme.js +5 -5
- package/lib/banks/components/BankEntryRow/index.js +2 -2
- package/lib/banks/components/BankEntryRow/presenter.js +51 -39
- package/lib/banks/components/BankEntryRow/styles.js +0 -1
- package/lib/banks/components/BankEntryRow/theme.js +4 -4
- package/lib/banks/components/BankSearch/presenter.js +26 -14
- package/lib/banks/components/Banks/index.js +2 -2
- package/lib/banks/components/Banks/presenter.js +104 -92
- package/lib/banks/components/Banks/theme.js +2 -2
- package/lib/banks/components/BanksList/presenter.js +76 -64
- package/lib/banks/components/BanksList/theme.js +4 -4
- package/lib/banks/components/CopyMoveBankEntryModal/index.js +2 -2
- package/lib/banks/components/CopyMoveBankEntryModal/presenter.js +140 -59
- package/lib/banks/components/CreateBankModal/index.js +2 -2
- package/lib/banks/components/CreateBankModal/presenter.js +45 -33
- package/lib/banks/components/EditBankModal/index.js +2 -2
- package/lib/banks/components/EditBankModal/presenter.js +39 -27
- package/lib/banks/components/HeaderBreadCrumb/index.js +21 -9
- package/lib/banks/components/HeaderMenu/index.js +2 -2
- package/lib/banks/components/HeaderMenu/presenter.js +14 -2
- package/lib/banks/components/NavWrapper/presenter.js +21 -9
- package/lib/banks/components/NavWrapper/styles.js +2 -2
- package/lib/banks/components/NavWrapper/theme.js +3 -3
- package/lib/banks/components/SharingModal/ContextualIconButton/index.js +24 -12
- package/lib/banks/components/SharingModal/RootAccountSharing.js +21 -9
- package/lib/banks/components/SharingModal/ShareList/index.js +29 -17
- package/lib/banks/components/SharingModal/presenter.js +122 -110
- package/lib/banks/components/SharingModal/theme.js +1 -1
- package/lib/building/api/quizEntries.js +2 -2
- package/lib/building/components/layout/Sidebar/Sidebar.examples.js +21 -9
- package/lib/building/components/layout/Sidebar/SidebarItem/presenter.js +14 -2
- package/lib/building/components/layout/Sidebar/Stimulus/presenter.js +14 -2
- package/lib/building/components/layout/Sidebar/presenter.js +40 -28
- package/lib/building/components/layout/Sidebar/styles.js +2 -2
- package/lib/building/components/layout/header/BuildingButtons/index.js +2 -2
- package/lib/building/components/layout/header/BuildingButtons/presenter.js +35 -23
- package/lib/building/components/layout/header/BuildingButtons/styles.js +2 -2
- package/lib/building/components/layout/header/BuildingButtons/theme.js +1 -1
- package/lib/building/components/resources/ActionButtons/presenter.js +28 -16
- package/lib/building/components/resources/ActionButtons/styles.js +2 -2
- package/lib/building/components/resources/ActionButtons/theme.js +1 -1
- package/lib/building/components/resources/AddToBankOptions/index.js +28 -16
- package/lib/building/components/resources/AddToBankOptions/theme.js +2 -2
- package/lib/building/components/resources/BanksTray/presenter.js +35 -23
- package/lib/building/components/resources/DeleteStimulusModal/presenter.js +64 -52
- package/lib/building/components/resources/ItemFeedbackModal/presenter.js +28 -16
- package/lib/building/components/resources/MoveImmutableModal/presenter.js +30 -18
- package/lib/building/components/resources/quiz/editButton/EditButton.js +23 -11
- package/lib/building/components/resources/quiz/instructions/Edit/presenter.js +14 -2
- package/lib/building/components/resources/quiz/instructions/Instructions/presenter.js +37 -25
- package/lib/building/components/resources/quiz/instructions/Instructions/theme.js +1 -1
- package/lib/building/components/resources/quiz/instructions/Show/index.js +19 -7
- package/lib/building/components/resources/quiz/title/Edit/index.js +34 -22
- package/lib/building/components/resources/quiz/title/Edit/styles.js +2 -2
- package/lib/building/components/resources/quiz/title/Edit/theme.js +1 -1
- package/lib/building/components/resources/quiz/title/Show/index.js +19 -7
- package/lib/building/components/resources/quiz/title/Title/presenter.js +37 -25
- package/lib/building/components/resources/quiz/title/Title/styles.js +2 -2
- package/lib/building/components/resources/quiz/title/Title/theme.js +3 -3
- package/lib/building/components/resources/quizEntry/QuizEntry/presenter.js +59 -47
- package/lib/building/components/resources/quizEntry/QuizEntry/quizEntryPresenterWrapper.js +14 -2
- package/lib/building/components/resources/quizEntry/QuizEntry/theme.js +1 -1
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js +54 -42
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/theme.js +3 -3
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/index.js +14 -2
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/theme.js +2 -2
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/presenter.js +43 -31
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/styles.js +2 -2
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Header/index.js +63 -51
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Header/theme.js +2 -2
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/index.js +2 -2
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/presenter.js +114 -102
- package/lib/building/components/resources/quizEntry/QuizEntryShow/presenter.js +50 -38
- package/lib/building/components/resources/quizEntry/QuizEntryShow/styles.js +2 -2
- package/lib/building/components/resources/quizEntry/QuizEntryShow/theme.js +5 -5
- package/lib/common/api/callHandlers.js +2 -2
- package/lib/common/components/AccessCodeTextInput/index.js +22 -10
- package/lib/common/components/ApiFeatureFlagInitializer/index.js +2 -2
- package/lib/common/components/ConfirmationModal/index.js +2 -2
- package/lib/common/components/ConfirmationModal/presenter.js +42 -30
- package/lib/common/components/ImportModal/ImportFileSelector/index.js +14 -2
- package/lib/common/components/ImportModal/ImportFileSelector/theme.js +4 -4
- package/lib/common/components/ImportModal/presenter.js +58 -46
- package/lib/common/components/LearnosityCalculator/index.js +24 -12
- package/lib/common/components/MaskedTextInput/index.js +18 -6
- package/lib/common/components/Pin/presenter.js +21 -9
- package/lib/common/components/PreviewFrame/index.js +16 -4
- package/lib/common/components/PrintFontSizeModal/presenter.js +26 -14
- package/lib/common/components/PrintFontSizeModal/theme.js +1 -1
- package/lib/common/components/RceConfigProvider/presenter.js +4 -4
- package/lib/common/components/SDKApp/index.js +21 -9
- package/lib/common/components/alerts/presenter.js +22 -10
- package/lib/common/components/layout/Page/index.js +14 -2
- package/lib/common/components/layout/Page/styles.js +2 -2
- package/lib/common/components/layout/header/Calculator/presenter.js +16 -4
- package/lib/common/components/layout/header/HeaderMenuButton/presenter.js +22 -10
- package/lib/common/components/layout/header/HeaderMenuButton/theme.js +1 -1
- package/lib/common/components/layout/header/Timer/presenter.js +31 -19
- package/lib/common/components/layout/header/Timer/theme.js +3 -3
- package/lib/common/components/layout/navbar/SecondaryNavBarButton/index.js +14 -2
- package/lib/common/components/layout/navbar/index.js +40 -28
- package/lib/common/components/layout/navbar/styles.js +2 -2
- package/lib/common/components/layout/navbar/theme.js +1 -1
- package/lib/common/components/layout/sidebar/PositionSummary/index.js +16 -4
- package/lib/common/components/layout/sidebar/PositionSummary/theme.js +2 -2
- package/lib/common/components/layout/sidebar/Sidebar/Pin.js +21 -9
- package/lib/common/components/layout/sidebar/Sidebar/index.js +36 -24
- package/lib/common/components/layout/sidebar/Sidebar/styles.js +2 -2
- package/lib/common/components/layout/sidebar/Sidebar/theme.js +10 -10
- package/lib/common/components/layout/sidebar/SidebarItem/presenter.js +20 -8
- package/lib/common/components/layout/sidebar/SidebarItem/styles.js +2 -2
- package/lib/common/components/layout/sidebar/SidebarItem/theme.js +5 -5
- package/lib/common/components/layout/sidebar/Stimulus/Collection/presenter.js +30 -15
- package/lib/common/components/layout/sidebar/Stimulus/Collection/styles.js +2 -2
- package/lib/common/components/layout/sidebar/Stimulus/Collection/theme.js +1 -1
- package/lib/common/components/layout/sidebar/Stimulus/Summary/presenter.js +22 -10
- package/lib/common/components/layout/sidebar/Stimulus/Summary/theme.js +2 -2
- package/lib/common/components/layout/sidebar/Stimulus/Title/index.js +14 -2
- package/lib/common/components/layout/sidebar/Stimulus/presenter.js +117 -45
- package/lib/common/components/layout/sidebar/Stimulus/styles.js +2 -26
- package/lib/common/components/layout/sidebar/Stimulus/theme.js +2 -11
- package/lib/common/components/resources/BankSelection/presenter.js +53 -18
- package/lib/common/components/resources/WarningWrapper/index.js +20 -8
- package/lib/common/components/resources/WarningWrapper/theme.js +1 -1
- package/lib/common/components/resources/entry/EntrySave/presenter.js +39 -27
- package/lib/common/components/resources/item/ItemEdit/index.js +2 -2
- package/lib/common/components/resources/item/ItemEdit/presenter.js +29 -17
- package/lib/common/components/resources/item/ItemOverride/index.js +2 -2
- package/lib/common/components/resources/item/ItemOverride/presenter.js +23 -11
- package/lib/common/components/resources/item/ItemShow/index.js +16 -4
- package/lib/common/components/resources/positionBox/PositionBox.js +14 -2
- package/lib/common/components/resources/positionBox/theme.js +2 -2
- package/lib/common/components/resources/quiz/AddContent/Body/presenter.js +47 -35
- package/lib/common/components/resources/quiz/AddContent/Body/theme.js +1 -1
- package/lib/common/components/resources/quiz/AddContent/Button/index.js +19 -7
- package/lib/common/components/resources/quiz/AddContent/Button/styles.js +2 -2
- package/lib/common/components/resources/quiz/AddContent/Button/theme.js +4 -4
- package/lib/common/components/resources/quiz/AddContent/Modal/presenter.js +16 -4
- package/lib/common/components/resources/quiz/AddContent/Popover/presenter.js +45 -33
- package/lib/common/components/resources/quiz/AddContent/Popover/theme.js +1 -1
- package/lib/common/components/resources/quiz/info/QuizInfo.js +16 -4
- package/lib/common/components/resources/quiz/instructions/Instructions.js +14 -2
- package/lib/common/components/resources/quiz/title/Title.js +14 -2
- package/lib/common/components/resources/quizSessionResult/Header/index.js +21 -9
- package/lib/common/components/resources/quizSessionResult/Info/index.js +19 -7
- package/lib/common/components/resources/sessionItemResult/ResultStimulus/index.js +19 -7
- package/lib/common/components/resources/sessionItemResult/ResultStimulus/styles.js +2 -2
- package/lib/common/components/resources/sessionItemResult/ResultStimulus/theme.js +4 -4
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/presenter.js +38 -26
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/styles.js +2 -2
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/theme.js +4 -4
- package/lib/common/components/resources/sessionItemResult/SessionItemResultsList/index.js +23 -11
- package/lib/common/components/resources/sessionItemResult/SessionItemResultsList/theme.js +1 -1
- package/lib/common/components/resources/stimulus/Stimulus/presenter.js +32 -20
- package/lib/common/components/resources/stimulus/Stimulus/styles.js +2 -2
- package/lib/common/components/resources/stimulus/Stimulus/theme.js +1 -1
- package/lib/common/components/resources/stimulus/StimulusEdit/index.js +2 -2
- package/lib/common/components/resources/stimulus/StimulusEdit/presenter.js +129 -115
- package/lib/common/components/resources/stimulus/StimulusEdit/theme.js +1 -1
- package/lib/common/components/resources/stimulus/StimulusEditInfo/index.js +2 -2
- package/lib/common/components/resources/stimulus/StimulusEditInfo/presenter.js +31 -18
- package/lib/common/components/resources/stimulus/StimulusEditInfo/theme.js +1 -1
- package/lib/common/components/resources/stimulus/StimulusShow/index.js +19 -7
- package/lib/common/components/resources/stimulus/StimulusShowInfo/index.js +16 -4
- package/lib/common/components/shared/Card/CardContent/index.js +16 -4
- package/lib/common/components/shared/Card/CardContent/theme.js +2 -2
- package/lib/common/components/shared/Card/CardWrapper/index.js +16 -4
- package/lib/common/components/shared/ExpandButton/index.js +14 -2
- package/lib/common/components/shared/ExpandButton/styles.js +2 -2
- package/lib/common/components/shared/FormattedDuration/index.js +18 -6
- package/lib/common/components/shared/GenericAsyncSearch/GenericAsyncSearch.js +71 -52
- package/lib/common/components/shared/IfFeature/presenter.js +14 -2
- package/lib/common/components/shared/InteractionTypes/presenter.js +38 -26
- package/lib/common/components/shared/InteractionTypes/theme.js +1 -1
- package/lib/common/components/shared/PaginatedCollection/presenter.js +21 -9
- package/lib/common/components/shared/PaginatedCollection/theme.js +1 -1
- package/lib/common/components/shared/Paginator/index.js +17 -5
- package/lib/common/components/shared/PrintTrigger/index.js +2 -2
- package/lib/common/components/shared/PrintTrigger/presenter.js +45 -33
- package/lib/common/components/shared/TagDisplay/index.js +14 -2
- package/lib/common/components/shared/TagSelect/presenter.js +57 -45
- package/lib/common/components/shared/TagSuggestSelect/presenter.js +32 -20
- package/lib/common/components/shared/TagWrapper/presenter.js +21 -9
- package/lib/common/components/shared/TimeUnitsInput/index.js +55 -43
- package/lib/common/components/shared/drag_and_drop/DragAndDropZone/index.js +18 -6
- package/lib/common/components/shared/drag_and_drop/DragAndDropZone/styles.js +2 -2
- package/lib/common/components/shared/drag_and_drop/DragAndDropZone/theme.js +5 -5
- package/lib/common/components/shared/drag_and_drop/DragHandle/presenter.js +33 -21
- package/lib/common/components/shared/errors/Errors.js +19 -7
- package/lib/common/components/shared/errors/theme.js +1 -1
- package/lib/common/components/shared/file_selector/FileSelector.js +18 -6
- package/lib/common/components/shared/file_selector/theme.js +2 -2
- package/lib/common/components/shared/functionality/componentWithOutsideClick.js +24 -13
- package/lib/common/components/shared/functionality/componentWithOutsideClickEmotion.js +18 -6
- package/lib/common/components/shared/functionality/makeEditable.js +25 -13
- package/lib/common/components/shared/functionality/makeScrollable.js +27 -15
- package/lib/common/components/shared/overlay/index.js +16 -4
- package/lib/common/components/shared/overlay/theme.js +1 -1
- package/lib/common/components/shared/return_button/ReturnButton.js +16 -4
- package/lib/common/components/shared/spinner/Spinner.js +21 -9
- package/lib/common/kinesis/StreamQueue.js +2 -2
- package/lib/common/records/Alert.js +14 -2
- package/lib/common/records/Bank.js +14 -2
- package/lib/common/records/BankEntry.js +17 -5
- package/lib/common/records/Item.js +14 -2
- package/lib/common/records/ItemAnalysis.js +14 -2
- package/lib/common/records/QtiImport.js +14 -2
- package/lib/common/records/Quiz.js +19 -7
- package/lib/common/records/QuizAnalysis.js +14 -2
- package/lib/common/records/QuizEntry.js +67 -44
- package/lib/common/records/QuizSession.js +14 -2
- package/lib/common/records/QuizSessionEvent.js +14 -2
- package/lib/common/records/QuizSessionResult.js +14 -2
- package/lib/common/records/Response.js +14 -2
- package/lib/common/records/SessionItem.js +23 -5
- package/lib/common/records/SessionItemResult.js +14 -2
- package/lib/common/records/Stimulus.js +14 -2
- package/lib/common/records/baseRecord.js +16 -4
- package/lib/common/records/reduxRecord.js +14 -2
- package/lib/common/reducers/modifications.js +2 -2
- package/lib/common/util/ExhaustivePaginatedFetcher.js +23 -12
- package/lib/common/util/Fetcher.js +2 -2
- package/lib/common/util/PaginatedFetcher.js +24 -13
- package/lib/common/util/ThunkQueue.js +3 -3
- package/lib/common/util/componentForItem.js +2 -2
- package/lib/common/util/interactionTypeRecordForItem.js +2 -2
- package/lib/common/util/jsonify.js +2 -2
- package/lib/common/util/withDynamoPagination.js +20 -8
- package/lib/index.js +2 -2
- package/lib/messages/StorageExhaustionError.js +18 -6
- package/lib/messages/postMessageService.js +2 -2
- package/lib/moderating/components/events/Event.js +16 -4
- package/lib/moderating/components/events/PageBlurredEvent.js +16 -4
- package/lib/moderating/components/events/PageFocusedEvent.js +16 -4
- package/lib/moderating/components/events/RCEEvent.js +16 -4
- package/lib/moderating/components/events/ResponseEvent.js +19 -7
- package/lib/moderating/components/events/SessionStartEvent.js +16 -4
- package/lib/moderating/components/events/SessionSubmitEvent.js +16 -4
- package/lib/moderating/components/events/theme.js +1 -1
- package/lib/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/ExtraAttemptsInput/index.js +22 -10
- package/lib/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/index.js +32 -20
- package/lib/moderating/components/resources/AccommodationsModal/ExtraTimeMultiplier/index.js +35 -23
- package/lib/moderating/components/resources/AccommodationsModal/ExtraTimeSettings/index.js +29 -17
- package/lib/moderating/components/resources/AccommodationsModal/ReduceAnswerChoicesSettings/index.js +26 -14
- package/lib/moderating/components/resources/AccommodationsModal/index.js +48 -36
- package/lib/moderating/components/resources/ElapsedTime.js +16 -4
- package/lib/moderating/components/resources/ModerateTable/presenter.js +78 -66
- package/lib/moderating/components/resources/ModerateTable/styles.js +2 -2
- package/lib/moderating/components/resources/ModerateTable/theme.js +1 -1
- package/lib/moderating/components/resources/ModerateTableRow/presenter.js +44 -32
- package/lib/moderating/components/resources/OutstandingQuizzesModal/presenter.js +44 -32
- package/lib/moderating/components/sidebar/ModerateTray/presenter.js +54 -42
- package/lib/moderating/components/sidebar/ResetQuiz/presenter.js +29 -17
- package/lib/reporting/components/Caption/index.js +14 -2
- package/lib/reporting/components/MetricsListItem/index.js +16 -4
- package/lib/reporting/components/charts/CentileDistribution/presenter.js +28 -16
- package/lib/reporting/components/charts/Distribution/presenter.js +35 -23
- package/lib/reporting/components/charts/Distribution/theme.js +4 -4
- package/lib/reporting/components/charts/Legend/index.js +18 -6
- package/lib/reporting/components/charts/Legend/styles.js +2 -2
- package/lib/reporting/components/charts/Legend/theme.js +3 -3
- package/lib/reporting/components/charts/QuintileDistribution/presenter.js +31 -19
- package/lib/reporting/components/charts/QuintileDistribution/theme.js +1 -1
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/index.js +22 -10
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/theme.js +8 -8
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/presenter.js +35 -23
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/theme.js +4 -4
- package/lib/reporting/components/quizAnalysis/QuizAnalysisOverview.js +22 -10
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +14 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +14 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/presenter.js +23 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/presenter.js +23 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/presenter.js +36 -24
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/theme.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/presenter.js +19 -7
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/CategorizationType.js +27 -15
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingType.js +23 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +46 -34
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/OrderingType.js +29 -17
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/presenter.js +30 -18
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/presenter.js +59 -47
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/presenter.js +41 -29
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/presenter.js +30 -18
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/index.js +25 -13
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/index.js +23 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/presenter.js +44 -32
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/presenter.js +29 -17
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/presenter.js +23 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +52 -40
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/theme.js +5 -5
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/presenter.js +65 -53
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/theme.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/presenter.js +34 -22
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js +34 -22
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/presenter.js +14 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/theme.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/presenter.js +63 -51
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/theme.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +36 -24
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/presenter.js +58 -46
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/theme.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/presenter.js +22 -10
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/theme.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +76 -64
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisStatePresenter.js +2 -2
- package/lib/reporting/components/resources/OutcomeAnalysis/presenter.js +16 -4
- package/lib/reporting/components/resources/QuizAndItemAnalysis/presenter.js +34 -22
- package/lib/reporting/components/resources/QuizAndItemAnalysis/theme.js +1 -1
- package/lib/reporting/components/resources/ReportCard/index.js +14 -2
- package/lib/reporting/components/resources/ReportList/index.js +14 -2
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/presenter.js +59 -47
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/styles.js +2 -2
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/theme.js +1 -1
- package/lib/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportStatePresenter.js +2 -2
- package/lib/reporting/components/resources/common/AnalysisUpdateDate/index.js +16 -4
- package/lib/taking/api/taking.js +3 -3
- package/package.json +56 -56
|
@@ -23,96 +23,173 @@ var _Bank = _interopRequireDefault(require("../../../common/records/Bank"));
|
|
|
23
23
|
var _presenter = _interopRequireDefault(require("../../../common/components/resources/BankSelection/presenter"));
|
|
24
24
|
var _quizCommon = require("@instructure/quiz-common");
|
|
25
25
|
var _featureCheck = require("../../../common/util/featureCheck");
|
|
26
|
-
function _getRequireWildcardCache(
|
|
27
|
-
function _interopRequireWildcard(
|
|
28
|
-
function _callSuper(
|
|
29
|
-
function
|
|
26
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
27
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
28
|
+
function _callSuper(_this, derived, args) {
|
|
29
|
+
function isNativeReflectConstruct() {
|
|
30
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
31
|
+
if (Reflect.construct.sham) return false;
|
|
32
|
+
if (typeof Proxy === "function") return true;
|
|
33
|
+
try {
|
|
34
|
+
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
35
|
+
} catch (e) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
derived = (0, _getPrototypeOf2["default"])(derived);
|
|
40
|
+
return (0, _possibleConstructorReturn2["default"])(_this, isNativeReflectConstruct() ? Reflect.construct(derived, args || [], (0, _getPrototypeOf2["default"])(_this).constructor) : derived.apply(_this, args));
|
|
41
|
+
}
|
|
30
42
|
var CopyMoveBankEntryModal = exports.CopyMoveBankEntryModal = /*#__PURE__*/function (_Component) {
|
|
31
|
-
function CopyMoveBankEntryModal() {
|
|
32
|
-
var
|
|
43
|
+
function CopyMoveBankEntryModal(props) {
|
|
44
|
+
var _this2;
|
|
33
45
|
(0, _classCallCheck2["default"])(this, CopyMoveBankEntryModal);
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
(0, _defineProperty2["default"])(
|
|
46
|
+
_this2 = _callSuper(this, CopyMoveBankEntryModal, [props]);
|
|
47
|
+
/**
|
|
48
|
+
* @type {React.RefObject<RadioInput> | null}
|
|
49
|
+
*/
|
|
50
|
+
(0, _defineProperty2["default"])(_this2, "radioInputRef", null);
|
|
51
|
+
/**
|
|
52
|
+
* @type {React.RefObject<TextInput> | null}
|
|
53
|
+
*/
|
|
54
|
+
(0, _defineProperty2["default"])(_this2, "textInputRef", null);
|
|
55
|
+
(0, _defineProperty2["default"])(_this2, "state", {
|
|
39
56
|
bankType: 'existing',
|
|
40
57
|
newBankTitle: '',
|
|
41
|
-
selectedBank: null
|
|
58
|
+
selectedBank: null,
|
|
59
|
+
radioValidationError: null,
|
|
60
|
+
selectValidationError: null
|
|
61
|
+
});
|
|
62
|
+
(0, _defineProperty2["default"])(_this2, "setBankInputRef", function (ref) {
|
|
63
|
+
_this2.bankSelectionInputRef = ref;
|
|
42
64
|
});
|
|
43
|
-
(0, _defineProperty2["default"])(
|
|
44
|
-
if (
|
|
45
|
-
|
|
65
|
+
(0, _defineProperty2["default"])(_this2, "copyOrMove", function (newBankId) {
|
|
66
|
+
if (_this2.props.keepCopy) {
|
|
67
|
+
_this2.copyBankEntry(newBankId);
|
|
46
68
|
} else {
|
|
47
|
-
|
|
69
|
+
_this2.moveBankEntry(newBankId);
|
|
70
|
+
}
|
|
71
|
+
_this2.closeAction();
|
|
72
|
+
});
|
|
73
|
+
(0, _defineProperty2["default"])(_this2, "clearValidationErrors", function () {
|
|
74
|
+
_this2.setState({
|
|
75
|
+
radioValidationError: null,
|
|
76
|
+
selectValidationError: null
|
|
77
|
+
});
|
|
78
|
+
});
|
|
79
|
+
(0, _defineProperty2["default"])(_this2, "validateAction", function () {
|
|
80
|
+
var _this2$state = _this2.state,
|
|
81
|
+
bankType = _this2$state.bankType,
|
|
82
|
+
newBankTitle = _this2$state.newBankTitle,
|
|
83
|
+
selectedBank = _this2$state.selectedBank;
|
|
84
|
+
if (!bankType) {
|
|
85
|
+
var _this2$radioInputRef;
|
|
86
|
+
(_this2$radioInputRef = _this2.radioInputRef) === null || _this2$radioInputRef === void 0 || (_this2$radioInputRef = _this2$radioInputRef.current) === null || _this2$radioInputRef === void 0 || _this2$radioInputRef.focus();
|
|
87
|
+
_this2.setState({
|
|
88
|
+
radioValidationError: [{
|
|
89
|
+
text: (0, _formatMessage["default"])('Please choose a Copy/Move option'),
|
|
90
|
+
type: 'newError'
|
|
91
|
+
}]
|
|
92
|
+
});
|
|
93
|
+
return false;
|
|
94
|
+
}
|
|
95
|
+
if (bankType === 'existing' && !selectedBank) {
|
|
96
|
+
_this2.bankSelectionInputRef.focus();
|
|
97
|
+
_this2.setState({
|
|
98
|
+
selectValidationError: [{
|
|
99
|
+
text: (0, _formatMessage["default"])('Please select a bank'),
|
|
100
|
+
type: 'newError'
|
|
101
|
+
}]
|
|
102
|
+
});
|
|
103
|
+
return false;
|
|
48
104
|
}
|
|
49
|
-
|
|
105
|
+
if (bankType === 'new' && (!newBankTitle || !newBankTitle.trim())) {
|
|
106
|
+
var _this2$textInputRef;
|
|
107
|
+
(_this2$textInputRef = _this2.textInputRef) === null || _this2$textInputRef === void 0 || (_this2$textInputRef = _this2$textInputRef.current) === null || _this2$textInputRef === void 0 || _this2$textInputRef.focus();
|
|
108
|
+
_this2.setState({
|
|
109
|
+
selectValidationError: [{
|
|
110
|
+
text: (0, _formatMessage["default"])('Please enter a new bank title'),
|
|
111
|
+
type: 'newError'
|
|
112
|
+
}]
|
|
113
|
+
});
|
|
114
|
+
return false;
|
|
115
|
+
}
|
|
116
|
+
return true;
|
|
50
117
|
});
|
|
51
|
-
(0, _defineProperty2["default"])(
|
|
52
|
-
if (
|
|
118
|
+
(0, _defineProperty2["default"])(_this2, "continueAction", function () {
|
|
119
|
+
if (!_this2.validateAction()) {
|
|
120
|
+
return;
|
|
121
|
+
}
|
|
122
|
+
if (_this2.state.bankType === 'new') {
|
|
53
123
|
var newBank = _Bank["default"].create({
|
|
54
|
-
title:
|
|
55
|
-
language:
|
|
124
|
+
title: _this2.state.newBankTitle,
|
|
125
|
+
language: _this2.context.locale
|
|
56
126
|
});
|
|
57
|
-
|
|
58
|
-
|
|
127
|
+
_this2.props.createBank(newBank).then(function (bankData) {
|
|
128
|
+
_this2.copyOrMove(bankData.id);
|
|
59
129
|
});
|
|
60
130
|
} else {
|
|
61
|
-
|
|
131
|
+
_this2.copyOrMove(_this2.state.selectedBank.id);
|
|
62
132
|
}
|
|
63
133
|
});
|
|
64
|
-
(0, _defineProperty2["default"])(
|
|
134
|
+
(0, _defineProperty2["default"])(_this2, "initiateMove", function (newBankId) {
|
|
65
135
|
if ((0, _featureCheck.featureOn)('instfs_bank_entry_movement_endpoints')) {
|
|
66
|
-
return
|
|
136
|
+
return _this2.props.moveBankEntry(_this2.props.sourceBankId, _this2.props.sourceBankEntryId, newBankId);
|
|
67
137
|
} else {
|
|
68
|
-
return
|
|
138
|
+
return _this2.props.updateBankEntry(_this2.props.sourceBankId, _this2.props.sourceBankEntryId, {
|
|
69
139
|
bankId: newBankId
|
|
70
140
|
});
|
|
71
141
|
}
|
|
72
142
|
});
|
|
73
|
-
(0, _defineProperty2["default"])(
|
|
74
|
-
return
|
|
75
|
-
|
|
143
|
+
(0, _defineProperty2["default"])(_this2, "moveBankEntry", function (newBankId) {
|
|
144
|
+
return _this2.initiateMove(newBankId).then(function (bankEntry) {
|
|
145
|
+
_this2.props.disassociateBankEntry(_this2.props.sourceBankId, _this2.props.sourceBankEntryId);
|
|
76
146
|
return bankEntry;
|
|
77
|
-
}).then(
|
|
147
|
+
}).then(_this2.props.onAdd);
|
|
78
148
|
});
|
|
79
|
-
(0, _defineProperty2["default"])(
|
|
149
|
+
(0, _defineProperty2["default"])(_this2, "initiateCopy", function (newBankId) {
|
|
80
150
|
if ((0, _featureCheck.featureOn)('instfs_bank_entry_movement_endpoints')) {
|
|
81
|
-
return
|
|
151
|
+
return _this2.props.copyBankEntry(_this2.props.sourceBankId, _this2.props.sourceBankEntryId, newBankId);
|
|
82
152
|
} else {
|
|
83
|
-
return
|
|
84
|
-
return
|
|
153
|
+
return _this2.props.createEntry().then(function (entry) {
|
|
154
|
+
return _this2.props.createBankEntry(newBankId, _this2.props.entryType, entry.id);
|
|
85
155
|
});
|
|
86
156
|
}
|
|
87
157
|
});
|
|
88
|
-
(0, _defineProperty2["default"])(
|
|
89
|
-
return
|
|
158
|
+
(0, _defineProperty2["default"])(_this2, "copyBankEntry", function (newBankId) {
|
|
159
|
+
return _this2.initiateCopy(newBankId).then(_this2.props.onAdd);
|
|
90
160
|
});
|
|
91
|
-
(0, _defineProperty2["default"])(
|
|
92
|
-
|
|
93
|
-
|
|
161
|
+
(0, _defineProperty2["default"])(_this2, "closeAction", function () {
|
|
162
|
+
_this2.clearValidationErrors();
|
|
163
|
+
if (_this2.props.modalTrigger) {
|
|
164
|
+
_this2.props.modalTrigger.focus();
|
|
94
165
|
}
|
|
95
|
-
|
|
166
|
+
_this2.props.closeModal();
|
|
96
167
|
});
|
|
97
|
-
(0, _defineProperty2["default"])(
|
|
98
|
-
|
|
168
|
+
(0, _defineProperty2["default"])(_this2, "onBankSelection", function (e, option) {
|
|
169
|
+
_this2.clearValidationErrors();
|
|
170
|
+
_this2.setState({
|
|
99
171
|
selectedBank: new _Bank["default"](option)
|
|
100
172
|
});
|
|
101
173
|
});
|
|
102
|
-
(0, _defineProperty2["default"])(
|
|
103
|
-
|
|
174
|
+
(0, _defineProperty2["default"])(_this2, "onKeepCopyChange", function (e) {
|
|
175
|
+
_this2.props.uiSet(_quizCommon.COPY_MOVE_BANK_ENTRY_MODAL_KEEP_COPY, e.target.checked);
|
|
104
176
|
});
|
|
105
|
-
(0, _defineProperty2["default"])(
|
|
106
|
-
|
|
177
|
+
(0, _defineProperty2["default"])(_this2, "handleRadioChange", function (event, value) {
|
|
178
|
+
_this2.clearValidationErrors();
|
|
179
|
+
_this2.setState({
|
|
107
180
|
bankType: value
|
|
108
181
|
});
|
|
109
182
|
});
|
|
110
|
-
(0, _defineProperty2["default"])(
|
|
111
|
-
|
|
183
|
+
(0, _defineProperty2["default"])(_this2, "onTitleChange", function (e) {
|
|
184
|
+
_this2.clearValidationErrors();
|
|
185
|
+
_this2.setState({
|
|
112
186
|
newBankTitle: e.target.value
|
|
113
187
|
});
|
|
114
188
|
});
|
|
115
|
-
|
|
189
|
+
_this2.radioInputRef = _react["default"].createRef();
|
|
190
|
+
_this2.textInputRef = _react["default"].createRef();
|
|
191
|
+
_this2.bankSelectionInputRef = _react["default"].createRef();
|
|
192
|
+
return _this2;
|
|
116
193
|
}
|
|
117
194
|
(0, _inherits2["default"])(CopyMoveBankEntryModal, _Component);
|
|
118
195
|
return (0, _createClass2["default"])(CopyMoveBankEntryModal, [{
|
|
@@ -126,14 +203,9 @@ var CopyMoveBankEntryModal = exports.CopyMoveBankEntryModal = /*#__PURE__*/funct
|
|
|
126
203
|
}, {
|
|
127
204
|
key: "addToBankButton",
|
|
128
205
|
value: function addToBankButton() {
|
|
129
|
-
var _this$state = this.state,
|
|
130
|
-
bankType = _this$state.bankType,
|
|
131
|
-
newBankTitle = _this$state.newBankTitle;
|
|
132
|
-
var disabled = bankType === 'existing' && !this.state.selectedBank || bankType === 'new' && (!newBankTitle || !newBankTitle.trim());
|
|
133
206
|
return /*#__PURE__*/_react["default"].createElement(_uiButtons.Button, {
|
|
134
207
|
color: "primary",
|
|
135
208
|
onClick: this.continueAction,
|
|
136
|
-
disabled: disabled,
|
|
137
209
|
margin: _quizCommon.XSMALL_SIDE_MARGIN,
|
|
138
210
|
"data-automation": "sdk-add-to-bank-button"
|
|
139
211
|
}, (0, _formatMessage["default"])('Add'));
|
|
@@ -143,16 +215,22 @@ var CopyMoveBankEntryModal = exports.CopyMoveBankEntryModal = /*#__PURE__*/funct
|
|
|
143
215
|
value: function renderBankTypeContent() {
|
|
144
216
|
if (this.state.bankType === 'existing') {
|
|
145
217
|
return /*#__PURE__*/_react["default"].createElement(_presenter["default"], {
|
|
218
|
+
inputRef: this.setBankInputRef,
|
|
146
219
|
onBankSelection: this.onBankSelection,
|
|
147
220
|
selectedBank: this.state.selectedBank,
|
|
148
|
-
"data-automation": "sdk-bank-selection"
|
|
221
|
+
"data-automation": "sdk-bank-selection",
|
|
222
|
+
externalError: this.state.selectValidationError,
|
|
223
|
+
isRequired: true
|
|
149
224
|
});
|
|
150
225
|
}
|
|
151
226
|
return /*#__PURE__*/_react["default"].createElement(_quizCommon.TextInput, {
|
|
152
227
|
onChange: this.onTitleChange,
|
|
153
228
|
value: this.state.newBankTitle,
|
|
154
229
|
renderLabel: (0, _formatMessage["default"])('New Bank Title'),
|
|
155
|
-
type: "text"
|
|
230
|
+
type: "text",
|
|
231
|
+
messages: this.state.selectValidationError,
|
|
232
|
+
ref: this.textInputRef,
|
|
233
|
+
isRequired: true
|
|
156
234
|
});
|
|
157
235
|
}
|
|
158
236
|
}, {
|
|
@@ -162,10 +240,13 @@ var CopyMoveBankEntryModal = exports.CopyMoveBankEntryModal = /*#__PURE__*/funct
|
|
|
162
240
|
onChange: this.handleRadioChange,
|
|
163
241
|
name: (0, _formatMessage["default"])('Bank Type'),
|
|
164
242
|
defaultValue: this.state.bankType,
|
|
165
|
-
description: /*#__PURE__*/_react["default"].createElement(_uiA11yContent.ScreenReaderContent, null, (0, _formatMessage["default"])('Bank Type'))
|
|
243
|
+
description: /*#__PURE__*/_react["default"].createElement(_uiA11yContent.ScreenReaderContent, null, (0, _formatMessage["default"])('Bank Type')),
|
|
244
|
+
messages: this.state.radioValidationError,
|
|
245
|
+
isRequired: true
|
|
166
246
|
}, /*#__PURE__*/_react["default"].createElement(_uiRadioInput.RadioInput, {
|
|
167
247
|
value: "existing",
|
|
168
|
-
label: (0, _formatMessage["default"])('Existing item bank')
|
|
248
|
+
label: (0, _formatMessage["default"])('Existing item bank'),
|
|
249
|
+
ref: this.radioInputRef
|
|
169
250
|
}), /*#__PURE__*/_react["default"].createElement(_uiRadioInput.RadioInput, {
|
|
170
251
|
value: "new",
|
|
171
252
|
label: (0, _formatMessage["default"])('New item bank')
|
|
@@ -18,8 +18,8 @@ var _errorsShowing = require("../../../common/actions/errorsShowing");
|
|
|
18
18
|
var _modalHelpers = require("../../../common/util/modalHelpers");
|
|
19
19
|
var _alerts = require("../../../common/actions/alerts");
|
|
20
20
|
var _featureCheck = require("../../../common/util/featureCheck");
|
|
21
|
-
function _getRequireWildcardCache(
|
|
22
|
-
function _interopRequireWildcard(
|
|
21
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
22
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
23
|
function mapStateToProps(state) {
|
|
24
24
|
var temporaryBank = new _Bank["default"](state.getIn(['modifications', 'banks', _quizCommon.TEMPORARY_BANK_ID]));
|
|
25
25
|
var errorsMap = state.get('errorsShowing', (0, _immutable.Map)());
|
|
@@ -24,59 +24,71 @@ var _instUIMessages = require("../../../common/util/instUIMessages");
|
|
|
24
24
|
var _quizCommon = require("@instructure/quiz-common");
|
|
25
25
|
var _CreateBankModal;
|
|
26
26
|
/** @jsx jsx */
|
|
27
|
-
function _getRequireWildcardCache(
|
|
28
|
-
function _interopRequireWildcard(
|
|
29
|
-
function _callSuper(
|
|
30
|
-
function
|
|
27
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
28
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
29
|
+
function _callSuper(_this, derived, args) {
|
|
30
|
+
function isNativeReflectConstruct() {
|
|
31
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
32
|
+
if (Reflect.construct.sham) return false;
|
|
33
|
+
if (typeof Proxy === "function") return true;
|
|
34
|
+
try {
|
|
35
|
+
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
36
|
+
} catch (e) {
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
derived = (0, _getPrototypeOf2["default"])(derived);
|
|
41
|
+
return (0, _possibleConstructorReturn2["default"])(_this, isNativeReflectConstruct() ? Reflect.construct(derived, args || [], (0, _getPrototypeOf2["default"])(_this).constructor) : derived.apply(_this, args));
|
|
42
|
+
}
|
|
31
43
|
var CreateBankModal = exports.CreateBankModal = /*#__PURE__*/function (_Component) {
|
|
32
44
|
function CreateBankModal(props) {
|
|
33
|
-
var
|
|
45
|
+
var _this2;
|
|
34
46
|
(0, _classCallCheck2["default"])(this, CreateBankModal);
|
|
35
|
-
|
|
36
|
-
(0, _defineProperty2["default"])(
|
|
47
|
+
_this2 = _callSuper(this, CreateBankModal, [props]);
|
|
48
|
+
(0, _defineProperty2["default"])(_this2, "state", {
|
|
37
49
|
shareWithCourse: false
|
|
38
50
|
});
|
|
39
|
-
(0, _defineProperty2["default"])(
|
|
40
|
-
|
|
41
|
-
if (
|
|
42
|
-
var courseUuid =
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
51
|
+
(0, _defineProperty2["default"])(_this2, "continueAction", function () {
|
|
52
|
+
_this2.props.showError(_this2.props.errorKey);
|
|
53
|
+
if (_this2.props.temporaryBank.isValid()) {
|
|
54
|
+
var courseUuid = _this2.state.shareWithCourse ? _this2.props.itemBanksScope.uuid : null;
|
|
55
|
+
_this2.props.createBank(_this2.props.temporaryBank, courseUuid);
|
|
56
|
+
_this2.props.onCreateBank();
|
|
57
|
+
_this2.closeAction();
|
|
46
58
|
} else {
|
|
47
|
-
var
|
|
48
|
-
(
|
|
59
|
+
var _this2$bankNameInput$;
|
|
60
|
+
(_this2$bankNameInput$ = _this2.bankNameInput.current) === null || _this2$bankNameInput$ === void 0 || _this2$bankNameInput$.focus();
|
|
49
61
|
}
|
|
50
62
|
});
|
|
51
|
-
(0, _defineProperty2["default"])(
|
|
52
|
-
|
|
53
|
-
|
|
63
|
+
(0, _defineProperty2["default"])(_this2, "closeAction", function () {
|
|
64
|
+
_this2.props.hideError(_this2.props.errorKey);
|
|
65
|
+
_this2.setState({
|
|
54
66
|
shareWithCourse: false
|
|
55
67
|
});
|
|
56
|
-
|
|
57
|
-
if (
|
|
58
|
-
|
|
68
|
+
_this2.props.clearModifications('banks', _this2.props.temporaryBank.id);
|
|
69
|
+
if (_this2.props.modalTrigger) {
|
|
70
|
+
_this2.props.modalTrigger.focus();
|
|
59
71
|
}
|
|
60
|
-
|
|
72
|
+
_this2.props.closeModal();
|
|
61
73
|
});
|
|
62
|
-
(0, _defineProperty2["default"])(
|
|
63
|
-
|
|
64
|
-
|
|
74
|
+
(0, _defineProperty2["default"])(_this2, "onNameChange", function (e) {
|
|
75
|
+
_this2.props.showError(_this2.props.errorKey);
|
|
76
|
+
_this2.props.changeBank(_this2.props.temporaryBank.id, {
|
|
65
77
|
title: e.target.value
|
|
66
78
|
});
|
|
67
79
|
});
|
|
68
|
-
(0, _defineProperty2["default"])(
|
|
69
|
-
if (
|
|
70
|
-
return (0, _instUIMessages.toErrors)(
|
|
80
|
+
(0, _defineProperty2["default"])(_this2, "getErrors", function () {
|
|
81
|
+
if (_this2.props.displayError) {
|
|
82
|
+
return (0, _instUIMessages.toErrors)(_this2.props.temporaryBank.errorsFor('title').toJS());
|
|
71
83
|
}
|
|
72
84
|
});
|
|
73
|
-
(0, _defineProperty2["default"])(
|
|
74
|
-
|
|
85
|
+
(0, _defineProperty2["default"])(_this2, "toggleCheckbox", function (event) {
|
|
86
|
+
_this2.setState({
|
|
75
87
|
shareWithCourse: event.target.checked
|
|
76
88
|
});
|
|
77
89
|
});
|
|
78
|
-
|
|
79
|
-
return
|
|
90
|
+
_this2.bankNameInput = _react["default"].createRef();
|
|
91
|
+
return _this2;
|
|
80
92
|
}
|
|
81
93
|
(0, _inherits2["default"])(CreateBankModal, _Component);
|
|
82
94
|
return (0, _createClass2["default"])(CreateBankModal, [{
|
|
@@ -15,8 +15,8 @@ var _quizCommon = require("@instructure/quiz-common");
|
|
|
15
15
|
var _modifications = require("../../../common/actions/modifications");
|
|
16
16
|
var _errorsShowing = require("../../../common/actions/errorsShowing");
|
|
17
17
|
var _modalHelpers = require("../../../common/util/modalHelpers");
|
|
18
|
-
function _getRequireWildcardCache(
|
|
19
|
-
function _interopRequireWildcard(
|
|
18
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
19
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
20
20
|
function mapStateToProps(state, props) {
|
|
21
21
|
var errorsMap = state.get('errorsShowing', (0, _immutable.Map)());
|
|
22
22
|
var errorKey = "".concat(props.workingBank.id, "_edit_bank");
|
|
@@ -22,46 +22,58 @@ var _quizCommon = require("@instructure/quiz-common");
|
|
|
22
22
|
var _Bank = _interopRequireDefault(require("../../../common/records/Bank"));
|
|
23
23
|
var _EditBankModal;
|
|
24
24
|
/** @jsx jsx */
|
|
25
|
-
function _getRequireWildcardCache(
|
|
26
|
-
function _interopRequireWildcard(
|
|
27
|
-
function _callSuper(
|
|
28
|
-
function
|
|
25
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
26
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
27
|
+
function _callSuper(_this, derived, args) {
|
|
28
|
+
function isNativeReflectConstruct() {
|
|
29
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
30
|
+
if (Reflect.construct.sham) return false;
|
|
31
|
+
if (typeof Proxy === "function") return true;
|
|
32
|
+
try {
|
|
33
|
+
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
34
|
+
} catch (e) {
|
|
35
|
+
return false;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
derived = (0, _getPrototypeOf2["default"])(derived);
|
|
39
|
+
return (0, _possibleConstructorReturn2["default"])(_this, isNativeReflectConstruct() ? Reflect.construct(derived, args || [], (0, _getPrototypeOf2["default"])(_this).constructor) : derived.apply(_this, args));
|
|
40
|
+
}
|
|
29
41
|
var EditBankModal = exports.EditBankModal = /*#__PURE__*/function (_Component) {
|
|
30
42
|
function EditBankModal(props) {
|
|
31
|
-
var
|
|
43
|
+
var _this2;
|
|
32
44
|
(0, _classCallCheck2["default"])(this, EditBankModal);
|
|
33
|
-
|
|
34
|
-
(0, _defineProperty2["default"])(
|
|
35
|
-
|
|
36
|
-
if (
|
|
37
|
-
|
|
38
|
-
|
|
45
|
+
_this2 = _callSuper(this, EditBankModal, [props]);
|
|
46
|
+
(0, _defineProperty2["default"])(_this2, "continueAction", function () {
|
|
47
|
+
_this2.props.showError(_this2.props.errorKey);
|
|
48
|
+
if (_this2.props.workingBank.isValid()) {
|
|
49
|
+
_this2.props.updateBank(_this2.props.workingBank);
|
|
50
|
+
_this2.closeAction();
|
|
39
51
|
} else {
|
|
40
|
-
var
|
|
41
|
-
(
|
|
52
|
+
var _this2$bankNameInput$;
|
|
53
|
+
(_this2$bankNameInput$ = _this2.bankNameInput.current) === null || _this2$bankNameInput$ === void 0 || _this2$bankNameInput$.focus();
|
|
42
54
|
}
|
|
43
55
|
});
|
|
44
|
-
(0, _defineProperty2["default"])(
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
if (
|
|
48
|
-
|
|
56
|
+
(0, _defineProperty2["default"])(_this2, "closeAction", function () {
|
|
57
|
+
_this2.props.hideError(_this2.props.errorKey);
|
|
58
|
+
_this2.props.clearModifications('banks', _this2.props.workingBank.id);
|
|
59
|
+
if (_this2.props.modalTrigger) {
|
|
60
|
+
_this2.props.modalTrigger.focus();
|
|
49
61
|
}
|
|
50
|
-
|
|
62
|
+
_this2.props.closeModal();
|
|
51
63
|
});
|
|
52
|
-
(0, _defineProperty2["default"])(
|
|
53
|
-
|
|
54
|
-
|
|
64
|
+
(0, _defineProperty2["default"])(_this2, "onNameChange", function (e) {
|
|
65
|
+
_this2.props.showError(_this2.props.errorKey);
|
|
66
|
+
_this2.props.changeBank(_this2.props.workingBank.id, {
|
|
55
67
|
title: e.target.value
|
|
56
68
|
});
|
|
57
69
|
});
|
|
58
|
-
(0, _defineProperty2["default"])(
|
|
59
|
-
if (
|
|
60
|
-
return (0, _instUIMessages.toErrors)(
|
|
70
|
+
(0, _defineProperty2["default"])(_this2, "getErrors", function () {
|
|
71
|
+
if (_this2.props.displayError) {
|
|
72
|
+
return (0, _instUIMessages.toErrors)(_this2.props.workingBank.errorsFor('title').toJS());
|
|
61
73
|
}
|
|
62
74
|
});
|
|
63
|
-
|
|
64
|
-
return
|
|
75
|
+
_this2.bankNameInput = _react["default"].createRef();
|
|
76
|
+
return _this2;
|
|
65
77
|
}
|
|
66
78
|
(0, _inherits2["default"])(EditBankModal, _Component);
|
|
67
79
|
return (0, _createClass2["default"])(EditBankModal, [{
|
|
@@ -16,22 +16,34 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
16
16
|
var _formatMessage = _interopRequireDefault(require("@instructure/quiz-i18n/es/format-message"));
|
|
17
17
|
var _uiBreadcrumb = require("@instructure/ui-breadcrumb");
|
|
18
18
|
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
19
|
-
function _getRequireWildcardCache(
|
|
20
|
-
function _interopRequireWildcard(
|
|
21
|
-
function _callSuper(
|
|
22
|
-
function
|
|
19
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
20
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
|
+
function _callSuper(_this, derived, args) {
|
|
22
|
+
function isNativeReflectConstruct() {
|
|
23
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
24
|
+
if (Reflect.construct.sham) return false;
|
|
25
|
+
if (typeof Proxy === "function") return true;
|
|
26
|
+
try {
|
|
27
|
+
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
28
|
+
} catch (e) {
|
|
29
|
+
return false;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
derived = (0, _getPrototypeOf2["default"])(derived);
|
|
33
|
+
return (0, _possibleConstructorReturn2["default"])(_this, isNativeReflectConstruct() ? Reflect.construct(derived, args || [], (0, _getPrototypeOf2["default"])(_this).constructor) : derived.apply(_this, args));
|
|
34
|
+
}
|
|
23
35
|
var HeaderBreadCrumb = exports.HeaderBreadCrumb = /*#__PURE__*/function (_Component) {
|
|
24
36
|
function HeaderBreadCrumb() {
|
|
25
|
-
var
|
|
37
|
+
var _this2;
|
|
26
38
|
(0, _classCallCheck2["default"])(this, HeaderBreadCrumb);
|
|
27
39
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
28
40
|
args[_key] = arguments[_key];
|
|
29
41
|
}
|
|
30
|
-
|
|
31
|
-
(0, _defineProperty2["default"])(
|
|
32
|
-
|
|
42
|
+
_this2 = _callSuper(this, HeaderBreadCrumb, [].concat(args));
|
|
43
|
+
(0, _defineProperty2["default"])(_this2, "setItemBanksRef", function (node) {
|
|
44
|
+
_this2.itemBanksRef = node;
|
|
33
45
|
});
|
|
34
|
-
return
|
|
46
|
+
return _this2;
|
|
35
47
|
}
|
|
36
48
|
(0, _inherits2["default"])(HeaderBreadCrumb, _Component);
|
|
37
49
|
return (0, _createClass2["default"])(HeaderBreadCrumb, [{
|
|
@@ -10,8 +10,8 @@ var _reactRedux = require("../../../common/react-redux");
|
|
|
10
10
|
var modalActions = _interopRequireWildcard(require("../../../common/actions/modal"));
|
|
11
11
|
var _ImportModal = require("../../../common/components/ImportModal");
|
|
12
12
|
var _presenter = _interopRequireDefault(require("./presenter"));
|
|
13
|
-
function _getRequireWildcardCache(
|
|
14
|
-
function _interopRequireWildcard(
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
15
|
function mapStateToProps(state, props) {
|
|
16
16
|
return {};
|
|
17
17
|
}
|
|
@@ -28,8 +28,20 @@ var _theme = _interopRequireDefault(require("./theme"));
|
|
|
28
28
|
var _formatMessage = _interopRequireDefault(require("@instructure/quiz-i18n/es/format-message"));
|
|
29
29
|
var _dec, _class, _HeaderMenu;
|
|
30
30
|
/** @jsx jsx */
|
|
31
|
-
function _callSuper(
|
|
32
|
-
function
|
|
31
|
+
function _callSuper(_this, derived, args) {
|
|
32
|
+
function isNativeReflectConstruct() {
|
|
33
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
34
|
+
if (Reflect.construct.sham) return false;
|
|
35
|
+
if (typeof Proxy === "function") return true;
|
|
36
|
+
try {
|
|
37
|
+
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
38
|
+
} catch (e) {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
derived = (0, _getPrototypeOf2["default"])(derived);
|
|
43
|
+
return (0, _possibleConstructorReturn2["default"])(_this, isNativeReflectConstruct() ? Reflect.construct(derived, args || [], (0, _getPrototypeOf2["default"])(_this).constructor) : derived.apply(_this, args));
|
|
44
|
+
}
|
|
33
45
|
var HeaderMenu = exports.HeaderMenu = (_dec = (0, _quizCommon.withStyleOverrides)(_styles["default"], _theme["default"]), _dec(_class = (_HeaderMenu = /*#__PURE__*/function (_Component) {
|
|
34
46
|
function HeaderMenu() {
|
|
35
47
|
(0, _classCallCheck2["default"])(this, HeaderMenu);
|