@instructure/quiz-core 22.10.2 → 22.11.1-rc.165
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/bankEntries.js +269 -176
- package/es/banks/api/banks.js +399 -368
- package/es/banks/api/copyingBanksPoller.js +194 -81
- package/es/banks/api/tagAssociations.js +200 -80
- package/es/banks/components/AddBankEntryModal/index.js +15 -12
- package/es/banks/components/AddBankEntryModal/presenter.js +179 -113
- package/es/banks/components/AddToBankModal/index.js +18 -11
- package/es/banks/components/AddToBankModal/presenter.js +250 -191
- package/es/banks/components/AsyncSearch/index.js +516 -387
- package/es/banks/components/Bank/index.js +43 -31
- package/es/banks/components/Bank/presenter.js +688 -477
- package/es/banks/components/Bank/styles.js +85 -36
- package/es/banks/components/Bank/theme.js +13 -15
- package/es/banks/components/BankEntriesList/index.js +10 -7
- package/es/banks/components/BankEntriesList/presenter.js +138 -61
- package/es/banks/components/BankEntriesList/styles.js +7 -7
- package/es/banks/components/BankEntriesList/theme.js +6 -6
- package/es/banks/components/BankEntry/index.js +75 -43
- package/es/banks/components/BankEntry/presenter.js +935 -704
- package/es/banks/components/BankEntry/styles.js +115 -66
- package/es/banks/components/BankEntry/theme.js +24 -27
- package/es/banks/components/BankEntryRow/index.js +44 -25
- package/es/banks/components/BankEntryRow/presenter.js +508 -410
- package/es/banks/components/BankEntryRow/styles.js +47 -47
- package/es/banks/components/BankEntryRow/theme.js +20 -23
- package/es/banks/components/BankSearch/index.js +29 -20
- package/es/banks/components/BankSearch/presenter.js +242 -174
- package/es/banks/components/BankSearch/styles.js +15 -15
- package/es/banks/components/BankSearch/theme.js +7 -7
- package/es/banks/components/Banks/index.js +32 -26
- package/es/banks/components/Banks/presenter.js +591 -503
- package/es/banks/components/Banks/styles.js +27 -27
- package/es/banks/components/Banks/theme.js +12 -14
- package/es/banks/components/BanksList/index.js +19 -13
- package/es/banks/components/BanksList/presenter.js +684 -485
- package/es/banks/components/BanksList/styles.js +43 -43
- package/es/banks/components/BanksList/theme.js +18 -21
- package/es/banks/components/CopyMoveBankEntryModal/index.js +25 -15
- package/es/banks/components/CopyMoveBankEntryModal/presenter.js +345 -286
- package/es/banks/components/CreateBankModal/index.js +34 -23
- package/es/banks/components/CreateBankModal/presenter.js +241 -174
- package/es/banks/components/EditBankModal/index.js +24 -18
- package/es/banks/components/EditBankModal/presenter.js +198 -130
- package/es/banks/components/HeaderBreadCrumb/index.js +61 -68
- package/es/banks/components/HeaderMenu/index.js +5 -5
- package/es/banks/components/HeaderMenu/presenter.js +177 -95
- package/es/banks/components/HeaderMenu/styles.js +12 -12
- package/es/banks/components/HeaderMenu/theme.js +7 -8
- package/es/banks/components/NavWrapper/externalStyles.js +5 -5
- package/es/banks/components/NavWrapper/index.js +7 -4
- package/es/banks/components/NavWrapper/presenter.js +241 -159
- package/es/banks/components/NavWrapper/styles.js +52 -28
- package/es/banks/components/NavWrapper/theme.js +13 -17
- package/es/banks/components/SharingModal/ContextualIconButton/index.js +187 -54
- package/es/banks/components/SharingModal/RootAccountSharing.js +161 -80
- package/es/banks/components/SharingModal/ShareList/index.js +193 -121
- package/es/banks/components/SharingModal/ShareList/styles.js +7 -7
- package/es/banks/components/SharingModal/index.js +21 -15
- package/es/banks/components/SharingModal/presenter.js +777 -527
- package/es/banks/components/SharingModal/styles.js +11 -11
- package/es/banks/components/SharingModal/theme.js +8 -10
- package/es/building/api/items.js +426 -181
- package/es/building/api/qtiImports.js +86 -88
- package/es/building/api/quizEntries.js +503 -250
- package/es/building/api/quizzes.js +165 -180
- package/es/building/api/stimuli.js +61 -61
- package/es/building/components/QTIImportModal/index.js +25 -22
- package/es/building/components/layout/Sidebar/SidebarItem/index.js +33 -35
- package/es/building/components/layout/Sidebar/SidebarItem/presenter.js +239 -130
- package/es/building/components/layout/Sidebar/SidebarItem/styles.js +7 -7
- package/es/building/components/layout/Sidebar/SidebarItem/theme.js +3 -3
- package/es/building/components/layout/Sidebar/Stimulus/index.js +41 -39
- package/es/building/components/layout/Sidebar/Stimulus/presenter.js +249 -138
- package/es/building/components/layout/Sidebar/Stimulus/styles.js +7 -7
- package/es/building/components/layout/Sidebar/Stimulus/theme.js +3 -3
- package/es/building/components/layout/Sidebar/index.js +26 -30
- package/es/building/components/layout/Sidebar/presenter.js +292 -212
- package/es/building/components/layout/Sidebar/styles.js +51 -27
- package/es/building/components/layout/Sidebar/theme.js +6 -6
- package/es/building/components/layout/header/BuildingButtons/index.js +24 -21
- package/es/building/components/layout/header/BuildingButtons/presenter.js +454 -369
- package/es/building/components/layout/header/BuildingButtons/styles.js +48 -23
- package/es/building/components/layout/header/BuildingButtons/theme.js +10 -12
- package/es/building/components/layout/header/SDKBuildingButtons/index.js +5 -5
- package/es/building/components/resources/ActionButtons/index.js +8 -8
- package/es/building/components/resources/ActionButtons/presenter.js +230 -154
- package/es/building/components/resources/ActionButtons/styles.js +53 -29
- package/es/building/components/resources/ActionButtons/theme.js +8 -9
- package/es/building/components/resources/AddToBankOptions/index.js +301 -93
- package/es/building/components/resources/AddToBankOptions/styles.js +9 -9
- package/es/building/components/resources/AddToBankOptions/theme.js +7 -8
- package/es/building/components/resources/BanksTray/index.js +27 -12
- package/es/building/components/resources/BanksTray/presenter.js +255 -192
- package/es/building/components/resources/DeleteStimulusModal/index.js +31 -22
- package/es/building/components/resources/DeleteStimulusModal/presenter.js +357 -278
- package/es/building/components/resources/DeleteStimulusModal/styles.js +20 -20
- package/es/building/components/resources/DeleteStimulusModal/theme.js +9 -10
- package/es/building/components/resources/ItemFeedbackModal/index.js +27 -14
- package/es/building/components/resources/ItemFeedbackModal/presenter.js +202 -125
- package/es/building/components/resources/ItemFeedbackModal/styles.js +12 -12
- package/es/building/components/resources/ItemFeedbackModal/theme.js +6 -6
- package/es/building/components/resources/MoveImmutableModal/index.js +23 -19
- package/es/building/components/resources/MoveImmutableModal/presenter.js +166 -102
- package/es/building/components/resources/quiz/editButton/EditButton.js +160 -56
- package/es/building/components/resources/quiz/instructions/Edit/index.js +7 -4
- package/es/building/components/resources/quiz/instructions/Edit/presenter.js +154 -79
- package/es/building/components/resources/quiz/instructions/Edit/styles.js +19 -19
- package/es/building/components/resources/quiz/instructions/Edit/theme.js +7 -7
- package/es/building/components/resources/quiz/instructions/Instructions/index.js +9 -9
- package/es/building/components/resources/quiz/instructions/Instructions/presenter.js +254 -187
- package/es/building/components/resources/quiz/instructions/Instructions/styles.js +41 -29
- package/es/building/components/resources/quiz/instructions/Instructions/theme.js +11 -13
- package/es/building/components/resources/quiz/instructions/Show/index.js +139 -70
- package/es/building/components/resources/quiz/instructions/Show/styles.js +27 -27
- package/es/building/components/resources/quiz/instructions/Show/theme.js +7 -9
- package/es/building/components/resources/quiz/title/Edit/index.js +225 -165
- package/es/building/components/resources/quiz/title/Show/index.js +137 -69
- package/es/building/components/resources/quiz/title/Show/styles.js +14 -14
- package/es/building/components/resources/quiz/title/Show/theme.js +6 -6
- package/es/building/components/resources/quiz/title/Title/index.js +10 -10
- package/es/building/components/resources/quiz/title/Title/presenter.js +259 -193
- package/es/building/components/resources/quiz/title/Title/styles.js +61 -36
- package/es/building/components/resources/quiz/title/Title/theme.js +14 -17
- package/es/building/components/resources/quizEntry/QuizEntry/index.js +57 -49
- package/es/building/components/resources/quizEntry/QuizEntry/presenter.js +533 -372
- package/es/building/components/resources/quizEntry/QuizEntry/quizEntryPresenterWrapper.js +94 -36
- package/es/building/components/resources/quizEntry/QuizEntry/styles.js +32 -20
- package/es/building/components/resources/quizEntry/QuizEntry/theme.js +9 -12
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/index.js +18 -18
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js +288 -218
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/styles.js +28 -28
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/theme.js +18 -21
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/index.js +179 -97
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/styles.js +17 -17
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/theme.js +10 -13
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/index.js +14 -16
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/presenter.js +351 -230
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/styles.js +73 -24
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/theme.js +7 -10
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Header/index.js +534 -341
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Header/styles.js +17 -18
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Header/theme.js +8 -10
- package/es/building/components/resources/quizEntry/QuizEntryEdit/index.js +76 -59
- package/es/building/components/resources/quizEntry/QuizEntryEdit/presenter.js +682 -435
- package/es/building/components/resources/quizEntry/QuizEntryEdit/styles.js +17 -17
- package/es/building/components/resources/quizEntry/QuizEntryEdit/theme.js +7 -10
- package/es/building/components/resources/quizEntry/QuizEntryShow/index.js +46 -24
- package/es/building/components/resources/quizEntry/QuizEntryShow/presenter.js +462 -320
- package/es/building/components/resources/quizEntry/QuizEntryShow/styles.js +131 -82
- package/es/building/components/resources/quizEntry/QuizEntryShow/theme.js +22 -26
- package/es/common/actions/addInteractionTypes.js +5 -5
- package/es/common/actions/alerts.js +45 -52
- package/es/common/actions/analyses.js +45 -45
- package/es/common/actions/bankEntries.js +11 -11
- package/es/common/actions/bankSearch.js +28 -28
- package/es/common/actions/banks.js +48 -48
- package/es/common/actions/config.js +13 -13
- package/es/common/actions/dragAndDrop.js +5 -5
- package/es/common/actions/editing.js +15 -15
- package/es/common/actions/errorsShowing.js +17 -17
- package/es/common/actions/features.js +9 -9
- package/es/common/actions/grading.js +12 -12
- package/es/common/actions/items.js +5 -5
- package/es/common/actions/modal.js +56 -56
- package/es/common/actions/moderation.js +8 -8
- package/es/common/actions/modifications.js +410 -438
- package/es/common/actions/outcomes.js +17 -17
- package/es/common/actions/postMessage.js +5 -5
- package/es/common/actions/printing.js +9 -9
- package/es/common/actions/qtiImports.js +8 -8
- package/es/common/actions/quizEntries.js +37 -37
- package/es/common/actions/quizExport.js +6 -6
- package/es/common/actions/quizSessionEvents.js +6 -6
- package/es/common/actions/quizSessionResults.js +6 -6
- package/es/common/actions/quizSessions.js +78 -73
- package/es/common/actions/quizzes.js +43 -43
- package/es/common/actions/rce.js +18 -19
- package/es/common/actions/regrading.js +13 -13
- package/es/common/actions/reporting.js +21 -21
- package/es/common/actions/scrolling.js +10 -10
- package/es/common/actions/sessionItemResults.js +6 -6
- package/es/common/actions/sessionItems.js +6 -6
- package/es/common/actions/sharedBanks.js +32 -20
- package/es/common/actions/sharingModal.js +7 -0
- package/es/common/actions/sidebar.js +11 -11
- package/es/common/actions/stimuli.js +5 -5
- package/es/common/actions/tagAssociations.js +74 -74
- package/es/common/actions/taking.js +147 -149
- package/es/common/actions/ui.js +57 -57
- package/es/common/actions/upload.js +30 -30
- package/es/common/api/callHandlers.js +142 -97
- package/es/common/api/camelizeHelpers.js +7 -10
- package/es/common/api/features.js +11 -11
- package/es/common/api/fileUpload.js +24 -25
- package/es/common/api/getPersistenceActions.js +88 -88
- package/es/common/api/helpers.js +251 -126
- package/es/common/api/interactionTypes.js +8 -8
- package/es/common/api/quizSessions.js +197 -145
- package/es/common/api/quizzes.js +24 -25
- package/es/common/api/schema.js +45 -37
- package/es/common/components/AccessCodeTextInput/index.js +134 -54
- package/es/common/components/ApiFeatureFlagInitializer/index.js +21 -18
- package/es/common/components/ConfirmationModal/index.js +41 -13
- package/es/common/components/ConfirmationModal/presenter.js +179 -123
- package/es/common/components/ImportModal/ImportFileSelector/index.js +213 -126
- package/es/common/components/ImportModal/ImportFileSelector/styles.js +25 -25
- package/es/common/components/ImportModal/ImportFileSelector/theme.js +14 -16
- package/es/common/components/ImportModal/index.js +45 -36
- package/es/common/components/ImportModal/presenter.js +439 -357
- package/es/common/components/ImportModal/styles.js +7 -7
- package/es/common/components/ImportModal/theme.js +6 -6
- package/es/common/components/LearnosityCalculator/index.js +340 -153
- package/es/common/components/MaskedTextInput/index.js +162 -62
- package/es/common/components/Pin/index.js +1 -1
- package/es/common/components/Pin/presenter.js +123 -57
- package/es/common/components/PreviewFrame/index.js +113 -43
- package/es/common/components/PrintFontSizeModal/index.js +1 -1
- package/es/common/components/PrintFontSizeModal/presenter.js +244 -168
- package/es/common/components/PrintFontSizeModal/styles.js +11 -11
- package/es/common/components/PrintFontSizeModal/theme.js +8 -10
- package/es/common/components/RceConfigProvider/index.js +8 -8
- package/es/common/components/RceConfigProvider/presenter.js +394 -187
- package/es/common/components/RceConfigProvider/rceConfigErrorHandler.js +18 -18
- package/es/common/components/RceConfigProvider/rceConfigErrorMessages.js +16 -16
- package/es/common/components/RceConfigProvider/rceConfigFetcher.js +158 -42
- package/es/common/components/RceConfigProvider/rceConfigMapper.js +38 -23
- package/es/common/components/RceConfigProvider/rceConfigUtils.js +5 -5
- package/es/common/components/SDKApp/index.js +273 -177
- package/es/common/components/SDKApp/styles.js +7 -7
- package/es/common/components/SDKHeaderCalculator.js +11 -12
- package/es/common/components/SDKMenuButton.js +5 -5
- package/es/common/components/SDKNavBar.js +5 -5
- package/es/common/components/SDKTimer.js +11 -12
- package/es/common/components/TimingAlerts/index.js +1 -0
- package/es/common/components/TimingAlerts/presenter.js +42 -0
- package/es/common/components/alerts/index.js +11 -11
- package/es/common/components/alerts/presenter.js +175 -96
- package/es/common/components/alerts/styles.js +32 -20
- package/es/common/components/alerts/theme.js +10 -11
- package/es/common/components/layout/Page/index.js +169 -84
- package/es/common/components/layout/Page/styles.js +84 -35
- package/es/common/components/layout/Page/theme.js +8 -11
- package/es/common/components/layout/header/Calculator/index.js +8 -8
- package/es/common/components/layout/header/Calculator/presenter.js +180 -69
- package/es/common/components/layout/header/HeaderMenuButton/index.js +17 -14
- package/es/common/components/layout/header/HeaderMenuButton/presenter.js +137 -63
- package/es/common/components/layout/header/HeaderMenuButton/styles.js +34 -23
- package/es/common/components/layout/header/HeaderMenuButton/theme.js +9 -11
- package/es/common/components/layout/header/Timer/index.js +17 -17
- package/es/common/components/layout/header/Timer/presenter.js +255 -181
- package/es/common/components/layout/header/Timer/styles.js +25 -25
- package/es/common/components/layout/header/Timer/theme.js +15 -18
- package/es/common/components/layout/navbar/SecondaryNavBarButton/index.js +123 -41
- package/es/common/components/layout/navbar/externalStyles.js +7 -7
- package/es/common/components/layout/navbar/index.js +232 -123
- package/es/common/components/layout/navbar/styles.js +34 -9
- package/es/common/components/layout/navbar/theme.js +7 -8
- package/es/common/components/layout/sidebar/PositionSummary/index.js +146 -53
- package/es/common/components/layout/sidebar/PositionSummary/styles.js +26 -26
- package/es/common/components/layout/sidebar/PositionSummary/theme.js +12 -15
- package/es/common/components/layout/sidebar/Sidebar/Pin.js +115 -50
- package/es/common/components/layout/sidebar/Sidebar/externalStyles.js +10 -10
- package/es/common/components/layout/sidebar/Sidebar/index.js +434 -339
- package/es/common/components/layout/sidebar/Sidebar/styles.js +160 -111
- package/es/common/components/layout/sidebar/Sidebar/theme.js +31 -36
- package/es/common/components/layout/sidebar/SidebarItem/index.js +14 -14
- package/es/common/components/layout/sidebar/SidebarItem/presenter.js +268 -196
- package/es/common/components/layout/sidebar/SidebarItem/styles.js +82 -57
- package/es/common/components/layout/sidebar/SidebarItem/theme.js +23 -26
- package/es/common/components/layout/sidebar/Stimulus/Collection/index.js +2 -2
- package/es/common/components/layout/sidebar/Stimulus/Collection/presenter.js +221 -150
- package/es/common/components/layout/sidebar/Stimulus/Collection/styles.js +71 -46
- package/es/common/components/layout/sidebar/Stimulus/Collection/theme.js +8 -10
- package/es/common/components/layout/sidebar/Stimulus/Summary/index.js +2 -2
- package/es/common/components/layout/sidebar/Stimulus/Summary/presenter.js +208 -137
- package/es/common/components/layout/sidebar/Stimulus/Summary/styles.js +28 -28
- package/es/common/components/layout/sidebar/Stimulus/Summary/theme.js +11 -13
- package/es/common/components/layout/sidebar/Stimulus/Title/index.js +138 -58
- package/es/common/components/layout/sidebar/Stimulus/Title/styles.js +10 -10
- package/es/common/components/layout/sidebar/Stimulus/index.js +17 -14
- package/es/common/components/layout/sidebar/Stimulus/presenter.js +302 -228
- package/es/common/components/layout/sidebar/Stimulus/styles.js +7 -7
- package/es/common/components/layout/sidebar/Stimulus/theme.js +7 -10
- package/es/common/components/resources/BankSelection/index.js +14 -8
- package/es/common/components/resources/BankSelection/presenter.js +269 -114
- package/es/common/components/resources/WarningWrapper/index.js +213 -125
- package/es/common/components/resources/WarningWrapper/styles.js +26 -26
- package/es/common/components/resources/WarningWrapper/theme.js +11 -13
- package/es/common/components/resources/entry/EntrySave/index.js +11 -11
- package/es/common/components/resources/entry/EntrySave/presenter.js +386 -194
- package/es/common/components/resources/item/ItemEdit/index.js +60 -45
- package/es/common/components/resources/item/ItemEdit/presenter.js +299 -200
- package/es/common/components/resources/item/ItemOverride/index.js +17 -17
- package/es/common/components/resources/item/ItemOverride/presenter.js +181 -78
- package/es/common/components/resources/item/ItemShow/index.js +156 -47
- package/es/common/components/resources/positionBox/PositionBox.js +133 -49
- package/es/common/components/resources/positionBox/styles.js +35 -23
- package/es/common/components/resources/positionBox/theme.js +12 -14
- package/es/common/components/resources/quiz/AddContent/Body/index.js +12 -12
- package/es/common/components/resources/quiz/AddContent/Body/presenter.js +150 -157
- package/es/common/components/resources/quiz/AddContent/Body/styles.js +36 -22
- package/es/common/components/resources/quiz/AddContent/Body/theme.js +9 -13
- package/es/common/components/resources/quiz/AddContent/Button/index.js +179 -97
- package/es/common/components/resources/quiz/AddContent/Button/styles.js +74 -49
- package/es/common/components/resources/quiz/AddContent/Button/theme.js +20 -24
- package/es/common/components/resources/quiz/AddContent/Modal/index.js +19 -18
- package/es/common/components/resources/quiz/AddContent/Modal/presenter.js +101 -74
- package/es/common/components/resources/quiz/AddContent/Popover/index.js +24 -20
- package/es/common/components/resources/quiz/AddContent/Popover/presenter.js +185 -134
- package/es/common/components/resources/quiz/AddContent/Popover/styles.js +28 -28
- package/es/common/components/resources/quiz/AddContent/Popover/theme.js +7 -8
- package/es/common/components/resources/quiz/info/QuizInfo.js +148 -39
- package/es/common/components/resources/quiz/instructions/Instructions.js +125 -48
- package/es/common/components/resources/quiz/instructions/styles.js +28 -28
- package/es/common/components/resources/quiz/instructions/theme.js +8 -9
- package/es/common/components/resources/quiz/title/Title.js +124 -46
- package/es/common/components/resources/quiz/title/styles.js +17 -17
- package/es/common/components/resources/quiz/title/theme.js +8 -9
- package/es/common/components/resources/quizSessionResult/Header/index.js +157 -79
- package/es/common/components/resources/quizSessionResult/Header/styles.js +27 -27
- package/es/common/components/resources/quizSessionResult/Header/theme.js +9 -10
- package/es/common/components/resources/quizSessionResult/Info/index.js +390 -291
- package/es/common/components/resources/quizSessionResult/Info/styles.js +55 -56
- package/es/common/components/resources/quizSessionResult/Info/theme.js +12 -13
- package/es/common/components/resources/sessionItemResult/ResultStimulus/index.js +174 -91
- package/es/common/components/resources/sessionItemResult/ResultStimulus/styles.js +128 -78
- package/es/common/components/resources/sessionItemResult/ResultStimulus/theme.js +28 -32
- package/es/common/components/resources/sessionItemResult/SessionItemResult/index.js +8 -5
- package/es/common/components/resources/sessionItemResult/SessionItemResult/presenter.js +416 -325
- package/es/common/components/resources/sessionItemResult/SessionItemResult/styles.js +73 -48
- package/es/common/components/resources/sessionItemResult/SessionItemResult/theme.js +27 -30
- package/es/common/components/resources/sessionItemResult/SessionItemResultsList/index.js +159 -82
- package/es/common/components/resources/sessionItemResult/SessionItemResultsList/styles.js +15 -15
- package/es/common/components/resources/sessionItemResult/SessionItemResultsList/theme.js +11 -14
- package/es/common/components/resources/stimulus/Stimulus/index.js +28 -19
- package/es/common/components/resources/stimulus/Stimulus/presenter.js +331 -211
- package/es/common/components/resources/stimulus/Stimulus/styles.js +102 -53
- package/es/common/components/resources/stimulus/Stimulus/theme.js +12 -15
- package/es/common/components/resources/stimulus/StimulusEdit/index.js +42 -36
- package/es/common/components/resources/stimulus/StimulusEdit/presenter.js +671 -451
- package/es/common/components/resources/stimulus/StimulusEdit/styles.js +40 -40
- package/es/common/components/resources/stimulus/StimulusEdit/theme.js +13 -15
- package/es/common/components/resources/stimulus/StimulusEditInfo/index.js +16 -13
- package/es/common/components/resources/stimulus/StimulusEditInfo/presenter.js +282 -202
- package/es/common/components/resources/stimulus/StimulusEditInfo/styles.js +12 -12
- package/es/common/components/resources/stimulus/StimulusEditInfo/theme.js +9 -11
- package/es/common/components/resources/stimulus/StimulusShow/index.js +185 -108
- package/es/common/components/resources/stimulus/StimulusShow/styles.js +24 -24
- package/es/common/components/resources/stimulus/StimulusShow/theme.js +10 -12
- package/es/common/components/resources/stimulus/StimulusShowInfo/index.js +139 -69
- package/es/common/components/shared/Card/CardContent/index.js +143 -49
- package/es/common/components/shared/Card/CardContent/styles.js +29 -17
- package/es/common/components/shared/Card/CardContent/theme.js +14 -18
- package/es/common/components/shared/Card/CardWrapper/index.js +141 -47
- package/es/common/components/shared/Card/CardWrapper/styles.js +26 -14
- package/es/common/components/shared/Card/CardWrapper/theme.js +9 -11
- package/es/common/components/shared/Card/index.js +45 -19
- package/es/common/components/shared/ExpandButton/index.js +187 -65
- package/es/common/components/shared/ExpandButton/styles.js +37 -12
- package/es/common/components/shared/ExpandButton/theme.js +5 -5
- package/es/common/components/shared/FormattedDuration/index.js +186 -83
- package/es/common/components/shared/GenericAsyncSearch/GenericAsyncSearch.js +242 -184
- package/es/common/components/shared/IfFeature/index.js +4 -4
- package/es/common/components/shared/IfFeature/presenter.js +112 -39
- package/es/common/components/shared/InteractionTypes/index.js +2 -5
- package/es/common/components/shared/InteractionTypes/presenter.js +241 -166
- package/es/common/components/shared/InteractionTypes/styles.js +15 -15
- package/es/common/components/shared/InteractionTypes/theme.js +9 -11
- package/es/common/components/shared/PaginatedCollection/index.js +15 -12
- package/es/common/components/shared/PaginatedCollection/presenter.js +351 -161
- package/es/common/components/shared/PaginatedCollection/styles.js +10 -10
- package/es/common/components/shared/PaginatedCollection/theme.js +8 -10
- package/es/common/components/shared/Paginator/index.js +141 -60
- package/es/common/components/shared/Paginator/styles.js +7 -7
- package/es/common/components/shared/Paginator/theme.js +6 -6
- package/es/common/components/shared/PrintTrigger/index.js +31 -19
- package/es/common/components/shared/PrintTrigger/presenter.js +215 -125
- package/es/common/components/shared/TagDisplay/index.js +152 -71
- package/es/common/components/shared/TagDisplay/styles.js +7 -7
- package/es/common/components/shared/TagSelect/index.js +1 -1
- package/es/common/components/shared/TagSelect/presenter.js +327 -245
- package/es/common/components/shared/TagSuggestSelect/index.js +14 -9
- package/es/common/components/shared/TagSuggestSelect/presenter.js +158 -97
- package/es/common/components/shared/TagWrapper/index.js +1 -1
- package/es/common/components/shared/TagWrapper/presenter.js +128 -66
- package/es/common/components/shared/TimeUnitsInput/index.js +365 -311
- package/es/common/components/shared/drag_and_drop/DragAndDropZone/index.js +184 -107
- package/es/common/components/shared/drag_and_drop/DragAndDropZone/styles.js +65 -40
- package/es/common/components/shared/drag_and_drop/DragAndDropZone/theme.js +16 -18
- package/es/common/components/shared/drag_and_drop/DragHandle/index.js +20 -14
- package/es/common/components/shared/drag_and_drop/DragHandle/presenter.js +321 -255
- package/es/common/components/shared/drag_and_drop/dragAndDropUtils.js +258 -271
- package/es/common/components/shared/file_selector/FileSelector.js +143 -60
- package/es/common/components/shared/file_selector/styles.js +10 -10
- package/es/common/components/shared/file_selector/theme.js +9 -11
- package/es/common/components/shared/functionality/componentWithOutsideClick.js +148 -66
- package/es/common/components/shared/functionality/componentWithOutsideClickEmotion.js +165 -75
- package/es/common/components/shared/functionality/disableDraggingOverride.js +7 -7
- package/es/common/components/shared/functionality/makeEditable.js +170 -104
- package/es/common/components/shared/functionality/makeScrollable.js +269 -126
- package/es/common/components/shared/overlay/index.js +161 -82
- package/es/common/components/shared/overlay/styles.js +36 -24
- package/es/common/components/shared/overlay/theme.js +8 -10
- package/es/common/components/shared/return_button/ReturnButton.js +129 -59
- package/es/common/components/shared/spinner/Spinner.js +189 -99
- package/es/common/components/shared/spinner/styles.js +13 -13
- package/es/common/kinesis/QuizEventsLogger.js +305 -115
- package/es/common/kinesis/StreamQueue.js +214 -138
- package/es/common/kinesis/client.js +31 -33
- package/es/common/kinesis/config.js +34 -33
- package/es/common/kinesis/eventTypes.js +27 -30
- package/es/common/middleware/alertTimerMiddleware.js +13 -14
- package/es/common/middleware/crossDomainMessagingMiddleware.js +9 -9
- package/es/common/middleware/eventLoggerMiddleware.js +21 -24
- package/es/common/middleware/persistedStorageMiddleware.js +39 -34
- package/es/common/middleware/quizTimerWebSocketMiddleware.js +60 -62
- package/es/common/middleware/sharedBanksMiddleware.js +372 -0
- package/es/common/react-redux.js +5 -6
- package/es/common/records/Alert.js +70 -29
- package/es/common/records/Bank.js +178 -106
- package/es/common/records/BankEntry.js +179 -95
- package/es/common/records/Item.js +227 -137
- package/es/common/records/ItemAnalysis.js +241 -157
- package/es/common/records/QtiImport.js +106 -48
- package/es/common/records/Quiz.js +305 -181
- package/es/common/records/QuizAnalysis.js +175 -104
- package/es/common/records/QuizEntry.js +662 -482
- package/es/common/records/QuizSession.js +278 -200
- package/es/common/records/QuizSessionEvent.js +113 -49
- package/es/common/records/QuizSessionResult.js +140 -71
- package/es/common/records/Response.js +108 -46
- package/es/common/records/SessionItem.js +206 -129
- package/es/common/records/SessionItemResult.js +140 -73
- package/es/common/records/Stimulus.js +161 -85
- package/es/common/records/baseRecord.js +184 -94
- package/es/common/records/index.js +1 -1
- package/es/common/records/reduxRecord.js +94 -38
- package/es/common/reducers/alerts.js +11 -12
- package/es/common/reducers/analyses.js +44 -33
- package/es/common/reducers/bankEntries.js +16 -14
- package/es/common/reducers/bankSearch.js +24 -29
- package/es/common/reducers/banks.js +50 -40
- package/es/common/reducers/calls.js +17 -12
- package/es/common/reducers/config.js +14 -15
- package/es/common/reducers/dragAndDrop.js +9 -10
- package/es/common/reducers/editing.js +19 -7
- package/es/common/reducers/errorsShowing.js +13 -14
- package/es/common/reducers/features.js +11 -12
- package/es/common/reducers/grading.js +13 -14
- package/es/common/reducers/interactionTypes.js +11 -12
- package/es/common/reducers/items.js +12 -13
- package/es/common/reducers/modal.js +24 -25
- package/es/common/reducers/moderation.js +14 -15
- package/es/common/reducers/modifications.js +259 -181
- package/es/common/reducers/outcomes.js +19 -20
- package/es/common/reducers/printing.js +10 -11
- package/es/common/reducers/qtiImports.js +14 -15
- package/es/common/reducers/quizEntries.js +155 -154
- package/es/common/reducers/quizExport.js +9 -10
- package/es/common/reducers/quizSessionEvents.js +17 -17
- package/es/common/reducers/quizSessionResults.js +12 -13
- package/es/common/reducers/quizSessions.js +47 -37
- package/es/common/reducers/quizzes.js +47 -36
- package/es/common/reducers/rce.js +15 -16
- package/es/common/reducers/regrading.js +18 -19
- package/es/common/reducers/reporting.js +50 -37
- package/es/common/reducers/scrolling.js +11 -12
- package/es/common/reducers/sessionItemResults.js +12 -13
- package/es/common/reducers/sessionItems.js +12 -13
- package/es/common/reducers/sharedBanks.js +21 -20
- package/es/common/reducers/sharingModal.js +16 -0
- package/es/common/reducers/sidebar.js +13 -14
- package/es/common/reducers/stimuli.js +12 -13
- package/es/common/reducers/tagAssociations.js +136 -87
- package/es/common/reducers/taking.js +133 -119
- package/es/common/reducers/ui.js +30 -27
- package/es/common/reducers/upload.js +20 -21
- package/es/common/selectors/analyses.js +59 -26
- package/es/common/selectors/calculator.js +16 -15
- package/es/common/selectors/calls.js +10 -2
- package/es/common/selectors/config.js +11 -8
- package/es/common/selectors/interactionTypes.js +68 -34
- package/es/common/selectors/items.js +14 -7
- package/es/common/selectors/qtiImports.js +19 -16
- package/es/common/selectors/quizSessionResults.js +10 -7
- package/es/common/selectors/quizSessions.js +23 -18
- package/es/common/selectors/quizzes.js +161 -86
- package/es/common/selectors/rce.js +11 -5
- package/es/common/selectors/reporting.js +13 -9
- package/es/common/selectors/sessionItemResults.js +52 -22
- package/es/common/selectors/sessionItems.js +63 -30
- package/es/common/selectors/taking.js +52 -21
- package/es/common/selectors/ui.js +6 -3
- package/es/common/util/CustomPropTypes.js +53 -46
- package/es/common/util/ElementsForSelectors.js +33 -7
- package/es/common/util/ExhaustivePaginatedFetcher.js +398 -100
- package/es/common/util/Fetcher.js +503 -357
- package/es/common/util/MultiWeakMap.js +72 -49
- package/es/common/util/PaginatedFetcher.js +303 -75
- package/es/common/util/ThunkQueue.js +286 -97
- package/es/common/util/TimeRecordingService.js +93 -55
- package/es/common/util/TimerService.js +200 -156
- package/es/common/util/cachePreviousArgs.js +16 -15
- package/es/common/util/callHelpers.js +23 -23
- package/es/common/util/clickHandlers.js +15 -16
- package/es/common/util/componentForItem.js +16 -17
- package/es/common/util/crossDomainMessaging.js +5 -5
- package/es/common/util/debounceLatestPromise.js +54 -23
- package/es/common/util/featureCheck.js +17 -19
- package/es/common/util/fetchHelpers.js +6 -6
- package/es/common/util/fitbCopyHelper.js +33 -32
- package/es/common/util/formatTimespan.js +47 -47
- package/es/common/util/generateDisplayPositions.js +18 -18
- package/es/common/util/getClientIpAddress.js +159 -32
- package/es/common/util/httpHeaders.js +12 -12
- package/es/common/util/immutableHelpers.js +13 -16
- package/es/common/util/instUIMessages.js +8 -8
- package/es/common/util/interactionTypeMetadata.js +26 -34
- package/es/common/util/interactionTypePropsHelper.js +78 -78
- package/es/common/util/interactionTypeRecordForItem.js +14 -15
- package/es/common/util/jsonify.js +48 -24
- package/es/common/util/keyboardClickable.js +7 -7
- package/es/common/util/localStoreService.js +63 -39
- package/es/common/util/mathRenderingUtils.js +1 -2
- package/es/common/util/maxContent.js +7 -7
- package/es/common/util/modalHelpers.js +6 -3
- package/es/common/util/noop.js +1 -1
- package/es/common/util/persistedState.js +53 -34
- package/es/common/util/printUtils.js +36 -36
- package/es/common/util/rceChecker.js +130 -18
- package/es/common/util/renderAlerts.js +13 -15
- package/es/common/util/serializeEvent.js +36 -29
- package/es/common/util/sessionStore.js +77 -54
- package/es/common/util/useRemoteComponent.js +291 -0
- package/es/common/util/valMap.js +7 -7
- package/es/common/util/warningHelpers.js +146 -109
- package/es/common/util/windowChecks.js +15 -15
- package/es/common/util/withCachedArguments.js +21 -23
- package/es/common/util/withDynamoPagination.js +336 -102
- package/es/common/util/withStateCache.js +32 -32
- package/es/config.js +10 -16
- package/es/configureStore.js +112 -85
- package/es/grading/api/quizEntryRegrades.js +29 -30
- package/es/grading/api/updateResults.js +33 -28
- package/es/index.js +13 -17
- package/es/messages/LocalStorageAdapter.js +44 -29
- package/es/messages/LocalStorageLimits.js +80 -65
- package/es/messages/StorageExhaustionError.js +118 -30
- package/es/messages/postMessageService.js +104 -75
- package/es/messages/subjectHandlers/forwardMessage.js +5 -5
- package/es/messages/subjectHandlers/lti.capabilities.js +12 -12
- package/es/messages/subjectHandlers/lti.fetchWindowSize.js +14 -14
- package/es/messages/subjectHandlers/lti.frameResize.js +8 -8
- package/es/messages/subjectHandlers/lti.get_data.js +16 -18
- package/es/messages/subjectHandlers/lti.put_data.js +37 -33
- package/es/messages/subjectHandlers/requestFullWindowLaunch.js +7 -7
- package/es/messages/utils.js +5 -5
- package/es/moderating/api/quizSessionEvents.js +15 -11
- package/es/moderating/api/quizSessions.js +38 -38
- package/es/moderating/components/events/Event.js +174 -105
- package/es/moderating/components/events/PageBlurredEvent.js +104 -34
- package/es/moderating/components/events/PageFocusedEvent.js +104 -34
- package/es/moderating/components/events/RCEEvent.js +108 -37
- package/es/moderating/components/events/ResponseEvent.js +208 -112
- package/es/moderating/components/events/SessionStartEvent.js +109 -39
- package/es/moderating/components/events/SessionSubmitEvent.js +109 -39
- package/es/moderating/components/events/styles.js +23 -23
- package/es/moderating/components/events/theme.js +10 -11
- package/es/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/ExtraAttemptsInput/index.js +173 -109
- package/es/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/index.js +154 -95
- package/es/moderating/components/resources/AccommodationsModal/ExtraTimeMultiplier/index.js +202 -129
- package/es/moderating/components/resources/AccommodationsModal/ExtraTimeSettings/index.js +241 -141
- package/es/moderating/components/resources/AccommodationsModal/ReduceAnswerChoicesSettings/index.js +184 -78
- package/es/moderating/components/resources/AccommodationsModal/index.js +196 -140
- package/es/moderating/components/resources/ElapsedTime.js +129 -61
- package/es/moderating/components/resources/EventDetails.js +13 -15
- package/es/moderating/components/resources/ModerateTable/index.js +38 -26
- package/es/moderating/components/resources/ModerateTable/presenter.js +489 -390
- package/es/moderating/components/resources/ModerateTable/styles.js +47 -22
- package/es/moderating/components/resources/ModerateTable/theme.js +7 -8
- package/es/moderating/components/resources/ModerateTableRow/index.js +8 -8
- package/es/moderating/components/resources/ModerateTableRow/presenter.js +454 -358
- package/es/moderating/components/resources/ModerateTableRow/story.js +5 -7
- package/es/moderating/components/resources/ModerateTableRow/styles.js +23 -23
- package/es/moderating/components/resources/ModerateTableRow/theme.js +7 -7
- package/es/moderating/components/resources/OutstandingQuizzesModal/index.js +9 -6
- package/es/moderating/components/resources/OutstandingQuizzesModal/presenter.js +221 -151
- package/es/moderating/components/resources/RetryGradePassbackButton/index.js +6 -7
- package/es/moderating/components/resources/RetryGradePassbackButton/presenter.js +238 -73
- package/es/moderating/components/resources/util/extractSessionData.js +39 -24
- package/es/moderating/components/resources/util/renderEventSummary.js +24 -20
- package/es/moderating/components/sidebar/ModerateTray/index.js +12 -6
- package/es/moderating/components/sidebar/ModerateTray/presenter.js +291 -236
- package/es/moderating/components/sidebar/ResetQuiz/index.js +29 -27
- package/es/moderating/components/sidebar/ResetQuiz/presenter.js +286 -101
- package/es/reduxStore.js +16 -14
- package/es/reporting/api/fetchStudentAnalyses.js +143 -30
- package/es/reporting/api/getAnalysesExport.js +158 -49
- package/es/reporting/api/getAnalysesStatus.js +144 -34
- package/es/reporting/api/getItemAnalyses.js +141 -26
- package/es/reporting/api/getQuizAnalysis.js +141 -26
- package/es/reporting/api/itemAnalyses.js +12 -9
- package/es/reporting/api/quizAnalyses.js +15 -12
- package/es/reporting/components/Caption/index.js +133 -49
- package/es/reporting/components/Caption/styles.js +10 -10
- package/es/reporting/components/Caption/theme.js +7 -9
- package/es/reporting/components/MetricsListItem/index.js +176 -57
- package/es/reporting/components/MetricsListItem/styles.js +10 -10
- package/es/reporting/components/charts/CentileDistribution/index.js +1 -1
- package/es/reporting/components/charts/CentileDistribution/presenter.js +207 -138
- package/es/reporting/components/charts/CentileDistribution/styles.js +39 -27
- package/es/reporting/components/charts/CentileDistribution/theme.js +7 -9
- package/es/reporting/components/charts/Distribution/CentileDistribution.js +1 -1
- package/es/reporting/components/charts/Distribution/Distribution.js +1 -1
- package/es/reporting/components/charts/Distribution/QuintileDistribution.js +1 -1
- package/es/reporting/components/charts/Distribution/index.js +1 -1
- package/es/reporting/components/charts/Distribution/presenter.js +388 -302
- package/es/reporting/components/charts/Distribution/styles.js +20 -20
- package/es/reporting/components/charts/Distribution/theme.js +11 -12
- package/es/reporting/components/charts/Legend/index.js +180 -83
- package/es/reporting/components/charts/Legend/styles.js +66 -41
- package/es/reporting/components/charts/Legend/theme.js +14 -17
- package/es/reporting/components/charts/QuintileDistribution/index.js +1 -1
- package/es/reporting/components/charts/QuintileDistribution/presenter.js +208 -141
- package/es/reporting/components/charts/QuintileDistribution/styles.js +10 -10
- package/es/reporting/components/charts/QuintileDistribution/theme.js +8 -9
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/index.js +205 -112
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/styles.js +48 -31
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/theme.js +21 -26
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/index.js +5 -5
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/presenter.js +335 -253
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/styles.js +105 -95
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/theme.js +22 -25
- package/es/reporting/components/quizAnalysis/QuizAnalysisOverview.js +205 -131
- package/es/reporting/components/quizAnalysis/styles.js +35 -22
- package/es/reporting/components/quizAnalysis/theme.js +10 -13
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/index.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +142 -61
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/styles.js +12 -12
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/index.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +150 -68
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/styles.js +16 -16
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/presenter.js +91 -44
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/presenter.js +95 -48
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/presenter.js +173 -100
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/styles.js +89 -40
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/theme.js +7 -7
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/presenter.js +161 -89
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/styles.js +17 -17
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/theme.js +6 -6
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/CategorizationType.js +151 -68
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingType.js +97 -50
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +238 -174
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/styles.js +76 -51
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/theme.js +7 -7
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/OrderingType.js +152 -70
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/utils/matchingTypeOrderer.js +74 -34
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/presenter.js +128 -86
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/presenter.js +255 -218
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/styles.js +8 -8
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/theme.js +6 -6
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/presenter.js +180 -133
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/styles.js +8 -8
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/theme.js +6 -6
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/presenter.js +106 -63
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/index.js +178 -107
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/styles.js +34 -34
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/theme.js +8 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/index.js +98 -51
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/presenter.js +164 -93
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/presenter.js +139 -65
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/styles.js +38 -13
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/theme.js +6 -6
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/popoverContent.js +5 -5
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/presenter.js +118 -60
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/styles.js +9 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +211 -157
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/styles.js +139 -139
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/theme.js +11 -11
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/presenter.js +243 -189
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/styles.js +140 -91
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/theme.js +9 -10
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/presenter.js +149 -96
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/styles.js +14 -14
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/theme.js +5 -5
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ExportButton/index.js +27 -31
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/index.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js +189 -113
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/styles.js +13 -13
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/theme.js +6 -6
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/presenter.js +118 -38
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/styles.js +15 -15
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/theme.js +9 -9
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/index.js +17 -17
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/popoverContent.js +11 -11
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/presenter.js +349 -286
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/styles.js +98 -73
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/theme.js +14 -17
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/index.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/popoverContent.js +8 -8
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +238 -141
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/styles.js +38 -38
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/theme.js +14 -14
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/presenter.js +257 -200
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/styles.js +75 -50
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/theme.js +11 -12
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/presenter.js +160 -84
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/styles.js +18 -18
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/theme.js +10 -12
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/exportFormats.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/fetchReports.js +228 -51
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/fetchReportsStatus.js +166 -38
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +310 -264
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/styles.js +12 -12
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/theme.js +6 -6
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisState.js +27 -27
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisStatePresenter.js +421 -208
- package/es/reporting/components/resources/OutcomeAnalysis/index.js +20 -8
- package/es/reporting/components/resources/OutcomeAnalysis/presenter.js +125 -62
- package/es/reporting/components/resources/QuizAndItemAnalysis/index.js +28 -14
- package/es/reporting/components/resources/QuizAndItemAnalysis/presenter.js +372 -279
- package/es/reporting/components/resources/QuizAndItemAnalysis/styles.js +16 -16
- package/es/reporting/components/resources/QuizAndItemAnalysis/theme.js +11 -13
- package/es/reporting/components/resources/ReportCard/index.js +145 -67
- package/es/reporting/components/resources/ReportCard/styles.js +32 -20
- package/es/reporting/components/resources/ReportCard/theme.js +10 -11
- package/es/reporting/components/resources/ReportList/index.js +140 -55
- package/es/reporting/components/resources/ReportList/styles.js +17 -17
- package/es/reporting/components/resources/ReportList/theme.js +8 -8
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/index.js +1 -1
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/presenter.js +217 -156
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/styles.js +66 -42
- package/es/reporting/components/resources/StudentAnalysis/ReportCard/theme.js +11 -13
- package/es/reporting/components/resources/StudentAnalysis/fetchReport.js +174 -45
- package/es/reporting/components/resources/StudentAnalysis/fetchReportStatus.js +166 -38
- package/es/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportState.js +23 -23
- package/es/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportStatePresenter.js +418 -213
- package/es/reporting/components/resources/common/AnalysisUpdateDate/index.js +116 -50
- package/es/reporting/components/resources/common/ExportButton/index.js +17 -18
- package/es/reporting/components/resources/common/errorCodes.js +19 -19
- package/es/reporting/components/resources/common/errorMessages.js +18 -18
- package/es/reporting/components/resources/common/exportReports.js +174 -50
- package/es/reporting/components/resources/common/generateReports.js +215 -72
- package/es/reporting/components/resources/common/propTypes.js +145 -133
- package/es/reporting/components/resources/common/utils.js +15 -15
- package/es/taking/api/taking.js +376 -258
- package/es/taking/learnosity/index.js +268 -115
- package/lib/banks/api/bankEntries.js +279 -193
- package/lib/banks/api/banks.js +411 -389
- package/lib/banks/api/copyingBanksPoller.js +196 -90
- package/lib/banks/api/tagAssociations.js +205 -92
- package/lib/banks/components/AddBankEntryModal/index.js +25 -30
- package/lib/banks/components/AddBankEntryModal/presenter.js +186 -129
- package/lib/banks/components/AddToBankModal/index.js +28 -31
- package/lib/banks/components/AddToBankModal/presenter.js +257 -207
- package/lib/banks/components/AsyncSearch/index.js +517 -397
- package/lib/banks/components/Bank/index.js +59 -57
- package/lib/banks/components/Bank/presenter.js +707 -505
- package/lib/banks/components/Bank/styles.js +85 -43
- package/lib/banks/components/Bank/theme.js +13 -21
- package/lib/banks/components/BankEntriesList/index.js +15 -20
- package/lib/banks/components/BankEntriesList/presenter.js +145 -75
- package/lib/banks/components/BankEntriesList/styles.js +7 -13
- package/lib/banks/components/BankEntriesList/theme.js +6 -12
- package/lib/banks/components/BankEntry/index.js +93 -68
- package/lib/banks/components/BankEntry/presenter.js +961 -737
- package/lib/banks/components/BankEntry/styles.js +115 -73
- package/lib/banks/components/BankEntry/theme.js +24 -33
- package/lib/banks/components/BankEntryRow/index.js +56 -46
- package/lib/banks/components/BankEntryRow/presenter.js +526 -437
- package/lib/banks/components/BankEntryRow/styles.js +47 -53
- package/lib/banks/components/BankEntryRow/theme.js +20 -29
- package/lib/banks/components/BankSearch/index.js +35 -33
- package/lib/banks/components/BankSearch/presenter.js +258 -197
- package/lib/banks/components/BankSearch/styles.js +15 -21
- package/lib/banks/components/BankSearch/theme.js +7 -13
- package/lib/banks/components/Banks/index.js +43 -45
- package/lib/banks/components/Banks/presenter.js +611 -532
- package/lib/banks/components/Banks/styles.js +27 -33
- package/lib/banks/components/Banks/theme.js +12 -20
- package/lib/banks/components/BanksList/index.js +29 -31
- package/lib/banks/components/BanksList/presenter.js +701 -511
- package/lib/banks/components/BanksList/styles.js +43 -49
- package/lib/banks/components/BanksList/theme.js +18 -27
- package/lib/banks/components/CopyMoveBankEntryModal/index.js +35 -35
- package/lib/banks/components/CopyMoveBankEntryModal/presenter.js +353 -303
- package/lib/banks/components/CreateBankModal/index.js +47 -45
- package/lib/banks/components/CreateBankModal/presenter.js +248 -190
- package/lib/banks/components/EditBankModal/index.js +34 -37
- package/lib/banks/components/EditBankModal/presenter.js +204 -145
- package/lib/banks/components/HeaderBreadCrumb/index.js +65 -82
- package/lib/banks/components/HeaderMenu/index.js +10 -19
- package/lib/banks/components/HeaderMenu/presenter.js +190 -115
- package/lib/banks/components/HeaderMenu/styles.js +12 -18
- package/lib/banks/components/HeaderMenu/theme.js +7 -14
- package/lib/banks/components/NavWrapper/externalStyles.js +5 -11
- package/lib/banks/components/NavWrapper/index.js +10 -14
- package/lib/banks/components/NavWrapper/presenter.js +252 -177
- package/lib/banks/components/NavWrapper/styles.js +53 -36
- package/lib/banks/components/NavWrapper/theme.js +13 -23
- package/lib/banks/components/SharingModal/ContextualIconButton/index.js +190 -66
- package/lib/banks/components/SharingModal/RootAccountSharing.js +169 -97
- package/lib/banks/components/SharingModal/ShareList/index.js +203 -138
- package/lib/banks/components/SharingModal/ShareList/styles.js +7 -13
- package/lib/banks/components/SharingModal/index.js +27 -28
- package/lib/banks/components/SharingModal/presenter.js +787 -546
- package/lib/banks/components/SharingModal/styles.js +11 -17
- package/lib/banks/components/SharingModal/theme.js +8 -16
- package/lib/building/api/items.js +434 -197
- package/lib/building/api/qtiImports.js +93 -101
- package/lib/building/api/quizEntries.js +532 -296
- package/lib/building/api/quizzes.js +201 -248
- package/lib/building/api/stimuli.js +67 -74
- package/lib/building/components/QTIImportModal/index.js +32 -36
- package/lib/building/components/layout/Sidebar/SidebarItem/index.js +47 -56
- package/lib/building/components/layout/Sidebar/SidebarItem/presenter.js +248 -146
- package/lib/building/components/layout/Sidebar/SidebarItem/styles.js +7 -13
- package/lib/building/components/layout/Sidebar/SidebarItem/theme.js +3 -9
- package/lib/building/components/layout/Sidebar/Stimulus/index.js +53 -58
- package/lib/building/components/layout/Sidebar/Stimulus/presenter.js +257 -153
- package/lib/building/components/layout/Sidebar/Stimulus/styles.js +7 -13
- package/lib/building/components/layout/Sidebar/Stimulus/theme.js +3 -9
- package/lib/building/components/layout/Sidebar/index.js +41 -52
- package/lib/building/components/layout/Sidebar/presenter.js +300 -227
- package/lib/building/components/layout/Sidebar/styles.js +51 -34
- package/lib/building/components/layout/Sidebar/theme.js +6 -12
- package/lib/building/components/layout/header/BuildingButtons/index.js +38 -45
- package/lib/building/components/layout/header/BuildingButtons/presenter.js +462 -384
- package/lib/building/components/layout/header/BuildingButtons/styles.js +48 -30
- package/lib/building/components/layout/header/BuildingButtons/theme.js +10 -18
- package/lib/building/components/layout/header/SDKBuildingButtons/index.js +9 -16
- package/lib/building/components/resources/ActionButtons/index.js +16 -23
- package/lib/building/components/resources/ActionButtons/presenter.js +239 -170
- package/lib/building/components/resources/ActionButtons/styles.js +53 -36
- package/lib/building/components/resources/ActionButtons/theme.js +8 -15
- package/lib/building/components/resources/AddToBankOptions/index.js +308 -107
- package/lib/building/components/resources/AddToBankOptions/styles.js +9 -15
- package/lib/building/components/resources/AddToBankOptions/theme.js +7 -14
- package/lib/building/components/resources/BanksTray/index.js +33 -24
- package/lib/building/components/resources/BanksTray/presenter.js +266 -212
- package/lib/building/components/resources/DeleteStimulusModal/index.js +40 -37
- package/lib/building/components/resources/DeleteStimulusModal/presenter.js +368 -298
- package/lib/building/components/resources/DeleteStimulusModal/styles.js +20 -26
- package/lib/building/components/resources/DeleteStimulusModal/theme.js +9 -16
- package/lib/building/components/resources/ItemFeedbackModal/index.js +38 -32
- package/lib/building/components/resources/ItemFeedbackModal/presenter.js +207 -137
- package/lib/building/components/resources/ItemFeedbackModal/styles.js +12 -18
- package/lib/building/components/resources/ItemFeedbackModal/theme.js +6 -12
- package/lib/building/components/resources/MoveImmutableModal/index.js +32 -35
- package/lib/building/components/resources/MoveImmutableModal/presenter.js +170 -115
- package/lib/building/components/resources/quiz/editButton/EditButton.js +165 -70
- package/lib/building/components/resources/quiz/instructions/Edit/index.js +9 -13
- package/lib/building/components/resources/quiz/instructions/Edit/presenter.js +165 -94
- package/lib/building/components/resources/quiz/instructions/Edit/styles.js +19 -25
- package/lib/building/components/resources/quiz/instructions/Edit/theme.js +7 -13
- package/lib/building/components/resources/quiz/instructions/Instructions/index.js +18 -25
- package/lib/building/components/resources/quiz/instructions/Instructions/presenter.js +260 -196
- package/lib/building/components/resources/quiz/instructions/Instructions/styles.js +41 -36
- package/lib/building/components/resources/quiz/instructions/Instructions/theme.js +11 -19
- package/lib/building/components/resources/quiz/instructions/Show/index.js +146 -81
- package/lib/building/components/resources/quiz/instructions/Show/styles.js +27 -33
- package/lib/building/components/resources/quiz/instructions/Show/theme.js +7 -15
- package/lib/building/components/resources/quiz/title/Edit/index.js +233 -178
- package/lib/building/components/resources/quiz/title/Show/index.js +145 -81
- package/lib/building/components/resources/quiz/title/Show/styles.js +14 -20
- package/lib/building/components/resources/quiz/title/Show/theme.js +6 -12
- package/lib/building/components/resources/quiz/title/Title/index.js +20 -27
- package/lib/building/components/resources/quiz/title/Title/presenter.js +266 -203
- package/lib/building/components/resources/quiz/title/Title/styles.js +61 -43
- package/lib/building/components/resources/quiz/title/Title/theme.js +14 -23
- package/lib/building/components/resources/quizEntry/QuizEntry/index.js +75 -74
- package/lib/building/components/resources/quizEntry/QuizEntry/presenter.js +551 -397
- package/lib/building/components/resources/quizEntry/QuizEntry/quizEntryPresenterWrapper.js +95 -44
- package/lib/building/components/resources/quizEntry/QuizEntry/styles.js +32 -27
- package/lib/building/components/resources/quizEntry/QuizEntry/theme.js +9 -18
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/index.js +25 -33
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js +300 -237
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/styles.js +28 -34
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/theme.js +18 -27
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/index.js +186 -111
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/styles.js +17 -23
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankShow/theme.js +10 -19
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/index.js +18 -28
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/presenter.js +364 -250
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/styles.js +73 -31
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/theme.js +7 -16
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Header/index.js +545 -359
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Header/styles.js +17 -24
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Header/theme.js +8 -16
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/index.js +90 -82
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/presenter.js +692 -454
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/styles.js +17 -23
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/theme.js +7 -16
- package/lib/building/components/resources/quizEntry/QuizEntryShow/index.js +57 -41
- package/lib/building/components/resources/quizEntry/QuizEntryShow/presenter.js +474 -339
- package/lib/building/components/resources/quizEntry/QuizEntryShow/styles.js +131 -89
- package/lib/building/components/resources/quizEntry/QuizEntryShow/theme.js +22 -32
- package/lib/common/actions/addInteractionTypes.js +7 -13
- package/lib/common/actions/alerts.js +53 -72
- package/lib/common/actions/analyses.js +57 -73
- package/lib/common/actions/bankEntries.js +12 -18
- package/lib/common/actions/bankSearch.js +29 -35
- package/lib/common/actions/banks.js +49 -55
- package/lib/common/actions/config.js +17 -25
- package/lib/common/actions/dragAndDrop.js +7 -13
- package/lib/common/actions/editing.js +19 -27
- package/lib/common/actions/errorsShowing.js +21 -29
- package/lib/common/actions/features.js +12 -19
- package/lib/common/actions/grading.js +16 -24
- package/lib/common/actions/items.js +7 -13
- package/lib/common/actions/modal.js +63 -74
- package/lib/common/actions/moderation.js +11 -18
- package/lib/common/actions/modifications.js +487 -563
- package/lib/common/actions/outcomes.js +22 -31
- package/lib/common/actions/postMessage.js +7 -13
- package/lib/common/actions/printing.js +12 -19
- package/lib/common/actions/qtiImports.js +11 -18
- package/lib/common/actions/quizEntries.js +44 -55
- package/lib/common/actions/quizExport.js +7 -13
- package/lib/common/actions/quizSessionEvents.js +7 -13
- package/lib/common/actions/quizSessionResults.js +7 -13
- package/lib/common/actions/quizSessions.js +83 -87
- package/lib/common/actions/quizzes.js +44 -50
- package/lib/common/actions/rce.js +19 -26
- package/lib/common/actions/regrading.js +17 -25
- package/lib/common/actions/reporting.js +27 -37
- package/lib/common/actions/scrolling.js +13 -20
- package/lib/common/actions/sessionItemResults.js +7 -13
- package/lib/common/actions/sessionItems.js +7 -13
- package/lib/common/actions/sharedBanks.js +32 -26
- package/lib/common/actions/sharingModal.js +7 -0
- package/lib/common/actions/sidebar.js +14 -21
- package/lib/common/actions/stimuli.js +7 -13
- package/lib/common/actions/tagAssociations.js +75 -81
- package/lib/common/actions/taking.js +149 -157
- package/lib/common/actions/ui.js +57 -63
- package/lib/common/actions/upload.js +31 -37
- package/lib/common/api/callHandlers.js +147 -107
- package/lib/common/api/camelizeHelpers.js +10 -19
- package/lib/common/api/features.js +14 -21
- package/lib/common/api/fileUpload.js +28 -37
- package/lib/common/api/getPersistenceActions.js +107 -113
- package/lib/common/api/helpers.js +253 -135
- package/lib/common/api/interactionTypes.js +11 -18
- package/lib/common/api/quizSessions.js +204 -159
- package/lib/common/api/quizzes.js +31 -40
- package/lib/common/api/schema.js +65 -62
- package/lib/common/components/AccessCodeTextInput/index.js +135 -64
- package/lib/common/components/ApiFeatureFlagInitializer/index.js +26 -31
- package/lib/common/components/ConfirmationModal/index.js +46 -25
- package/lib/common/components/ConfirmationModal/presenter.js +184 -137
- package/lib/common/components/ImportModal/ImportFileSelector/index.js +221 -141
- package/lib/common/components/ImportModal/ImportFileSelector/styles.js +25 -31
- package/lib/common/components/ImportModal/ImportFileSelector/theme.js +14 -22
- package/lib/common/components/ImportModal/index.js +55 -55
- package/lib/common/components/ImportModal/presenter.js +449 -374
- package/lib/common/components/ImportModal/styles.js +7 -13
- package/lib/common/components/ImportModal/theme.js +6 -12
- package/lib/common/components/LearnosityCalculator/index.js +341 -163
- package/lib/common/components/MaskedTextInput/index.js +169 -78
- package/lib/common/components/Pin/index.js +3 -9
- package/lib/common/components/Pin/presenter.js +126 -69
- package/lib/common/components/PreviewFrame/index.js +121 -60
- package/lib/common/components/PrintFontSizeModal/index.js +2 -9
- package/lib/common/components/PrintFontSizeModal/presenter.js +251 -182
- package/lib/common/components/PrintFontSizeModal/styles.js +11 -17
- package/lib/common/components/PrintFontSizeModal/theme.js +8 -16
- package/lib/common/components/RceConfigProvider/index.js +15 -22
- package/lib/common/components/RceConfigProvider/presenter.js +409 -211
- package/lib/common/components/RceConfigProvider/rceConfigErrorHandler.js +23 -30
- package/lib/common/components/RceConfigProvider/rceConfigErrorMessages.js +17 -24
- package/lib/common/components/RceConfigProvider/rceConfigFetcher.js +158 -49
- package/lib/common/components/RceConfigProvider/rceConfigMapper.js +40 -32
- package/lib/common/components/RceConfigProvider/rceConfigUtils.js +5 -11
- package/lib/common/components/SDKApp/index.js +289 -200
- package/lib/common/components/SDKApp/styles.js +7 -13
- package/lib/common/components/SDKHeaderCalculator.js +18 -26
- package/lib/common/components/SDKMenuButton.js +9 -16
- package/lib/common/components/SDKNavBar.js +10 -17
- package/lib/common/components/SDKTimer.js +18 -26
- package/lib/common/components/TimingAlerts/index.js +1 -0
- package/lib/common/components/TimingAlerts/presenter.js +42 -0
- package/lib/common/components/alerts/index.js +17 -24
- package/lib/common/components/alerts/presenter.js +182 -110
- package/lib/common/components/alerts/styles.js +32 -27
- package/lib/common/components/alerts/theme.js +10 -17
- package/lib/common/components/layout/Page/index.js +171 -93
- package/lib/common/components/layout/Page/styles.js +84 -42
- package/lib/common/components/layout/Page/theme.js +8 -17
- package/lib/common/components/layout/header/Calculator/index.js +16 -22
- package/lib/common/components/layout/header/Calculator/presenter.js +188 -86
- package/lib/common/components/layout/header/HeaderMenuButton/index.js +25 -30
- package/lib/common/components/layout/header/HeaderMenuButton/presenter.js +144 -77
- package/lib/common/components/layout/header/HeaderMenuButton/styles.js +34 -30
- package/lib/common/components/layout/header/HeaderMenuButton/theme.js +9 -17
- package/lib/common/components/layout/header/Timer/index.js +25 -32
- package/lib/common/components/layout/header/Timer/presenter.js +266 -201
- package/lib/common/components/layout/header/Timer/styles.js +25 -31
- package/lib/common/components/layout/header/Timer/theme.js +15 -24
- package/lib/common/components/layout/navbar/SecondaryNavBarButton/index.js +130 -55
- package/lib/common/components/layout/navbar/externalStyles.js +7 -13
- package/lib/common/components/layout/navbar/index.js +238 -136
- package/lib/common/components/layout/navbar/styles.js +35 -17
- package/lib/common/components/layout/navbar/theme.js +7 -14
- package/lib/common/components/layout/sidebar/PositionSummary/index.js +151 -65
- package/lib/common/components/layout/sidebar/PositionSummary/styles.js +26 -32
- package/lib/common/components/layout/sidebar/PositionSummary/theme.js +12 -21
- package/lib/common/components/layout/sidebar/Sidebar/Pin.js +119 -62
- package/lib/common/components/layout/sidebar/Sidebar/externalStyles.js +10 -16
- package/lib/common/components/layout/sidebar/Sidebar/index.js +448 -360
- package/lib/common/components/layout/sidebar/Sidebar/styles.js +161 -119
- package/lib/common/components/layout/sidebar/Sidebar/theme.js +32 -43
- package/lib/common/components/layout/sidebar/SidebarItem/index.js +21 -28
- package/lib/common/components/layout/sidebar/SidebarItem/presenter.js +275 -210
- package/lib/common/components/layout/sidebar/SidebarItem/styles.js +82 -64
- package/lib/common/components/layout/sidebar/SidebarItem/theme.js +23 -32
- package/lib/common/components/layout/sidebar/Stimulus/Collection/index.js +6 -13
- package/lib/common/components/layout/sidebar/Stimulus/Collection/presenter.js +228 -164
- package/lib/common/components/layout/sidebar/Stimulus/Collection/styles.js +72 -54
- package/lib/common/components/layout/sidebar/Stimulus/Collection/theme.js +8 -16
- package/lib/common/components/layout/sidebar/Stimulus/Summary/index.js +6 -13
- package/lib/common/components/layout/sidebar/Stimulus/Summary/presenter.js +213 -149
- package/lib/common/components/layout/sidebar/Stimulus/Summary/styles.js +28 -34
- package/lib/common/components/layout/sidebar/Stimulus/Summary/theme.js +11 -19
- package/lib/common/components/layout/sidebar/Stimulus/Title/index.js +146 -73
- package/lib/common/components/layout/sidebar/Stimulus/Title/styles.js +10 -16
- package/lib/common/components/layout/sidebar/Stimulus/index.js +22 -25
- package/lib/common/components/layout/sidebar/Stimulus/presenter.js +314 -247
- package/lib/common/components/layout/sidebar/Stimulus/styles.js +7 -13
- package/lib/common/components/layout/sidebar/Stimulus/theme.js +7 -16
- package/lib/common/components/resources/BankSelection/index.js +22 -24
- package/lib/common/components/resources/BankSelection/presenter.js +274 -128
- package/lib/common/components/resources/WarningWrapper/index.js +217 -136
- package/lib/common/components/resources/WarningWrapper/styles.js +26 -32
- package/lib/common/components/resources/WarningWrapper/theme.js +11 -19
- package/lib/common/components/resources/entry/EntrySave/index.js +18 -26
- package/lib/common/components/resources/entry/EntrySave/presenter.js +390 -207
- package/lib/common/components/resources/item/ItemEdit/index.js +77 -72
- package/lib/common/components/resources/item/ItemEdit/presenter.js +306 -216
- package/lib/common/components/resources/item/ItemOverride/index.js +27 -36
- package/lib/common/components/resources/item/ItemOverride/presenter.js +186 -92
- package/lib/common/components/resources/item/ItemShow/index.js +163 -63
- package/lib/common/components/resources/positionBox/PositionBox.js +141 -64
- package/lib/common/components/resources/positionBox/styles.js +35 -30
- package/lib/common/components/resources/positionBox/theme.js +12 -20
- package/lib/common/components/resources/quiz/AddContent/Body/index.js +19 -26
- package/lib/common/components/resources/quiz/AddContent/Body/presenter.js +156 -170
- package/lib/common/components/resources/quiz/AddContent/Body/styles.js +36 -29
- package/lib/common/components/resources/quiz/AddContent/Body/theme.js +9 -19
- package/lib/common/components/resources/quiz/AddContent/Button/index.js +183 -108
- package/lib/common/components/resources/quiz/AddContent/Button/styles.js +74 -56
- package/lib/common/components/resources/quiz/AddContent/Button/theme.js +20 -30
- package/lib/common/components/resources/quiz/AddContent/Modal/index.js +25 -30
- package/lib/common/components/resources/quiz/AddContent/Modal/presenter.js +106 -88
- package/lib/common/components/resources/quiz/AddContent/Popover/index.js +33 -36
- package/lib/common/components/resources/quiz/AddContent/Popover/presenter.js +189 -145
- package/lib/common/components/resources/quiz/AddContent/Popover/styles.js +28 -34
- package/lib/common/components/resources/quiz/AddContent/Popover/theme.js +7 -14
- package/lib/common/components/resources/quiz/info/QuizInfo.js +155 -55
- package/lib/common/components/resources/quiz/instructions/Instructions.js +136 -64
- package/lib/common/components/resources/quiz/instructions/styles.js +28 -34
- package/lib/common/components/resources/quiz/instructions/theme.js +8 -15
- package/lib/common/components/resources/quiz/title/Title.js +135 -62
- package/lib/common/components/resources/quiz/title/styles.js +17 -23
- package/lib/common/components/resources/quiz/title/theme.js +8 -15
- package/lib/common/components/resources/quizSessionResult/Header/index.js +163 -92
- package/lib/common/components/resources/quizSessionResult/Header/styles.js +27 -33
- package/lib/common/components/resources/quizSessionResult/Header/theme.js +9 -16
- package/lib/common/components/resources/quizSessionResult/Info/index.js +401 -309
- package/lib/common/components/resources/quizSessionResult/Info/styles.js +55 -62
- package/lib/common/components/resources/quizSessionResult/Info/theme.js +12 -19
- package/lib/common/components/resources/sessionItemResult/ResultStimulus/index.js +179 -103
- package/lib/common/components/resources/sessionItemResult/ResultStimulus/styles.js +128 -85
- package/lib/common/components/resources/sessionItemResult/ResultStimulus/theme.js +28 -38
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/index.js +14 -18
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/presenter.js +427 -343
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/styles.js +73 -55
- package/lib/common/components/resources/sessionItemResult/SessionItemResult/theme.js +27 -36
- package/lib/common/components/resources/sessionItemResult/SessionItemResultsList/index.js +169 -99
- package/lib/common/components/resources/sessionItemResult/SessionItemResultsList/styles.js +15 -21
- package/lib/common/components/resources/sessionItemResult/SessionItemResultsList/theme.js +11 -20
- package/lib/common/components/resources/stimulus/Stimulus/index.js +34 -32
- package/lib/common/components/resources/stimulus/Stimulus/presenter.js +340 -227
- package/lib/common/components/resources/stimulus/Stimulus/styles.js +102 -60
- package/lib/common/components/resources/stimulus/Stimulus/theme.js +12 -21
- package/lib/common/components/resources/stimulus/StimulusEdit/index.js +55 -58
- package/lib/common/components/resources/stimulus/StimulusEdit/presenter.js +688 -475
- package/lib/common/components/resources/stimulus/StimulusEdit/styles.js +40 -46
- package/lib/common/components/resources/stimulus/StimulusEdit/theme.js +13 -21
- package/lib/common/components/resources/stimulus/StimulusEditInfo/index.js +22 -28
- package/lib/common/components/resources/stimulus/StimulusEditInfo/presenter.js +291 -218
- package/lib/common/components/resources/stimulus/StimulusEditInfo/styles.js +12 -18
- package/lib/common/components/resources/stimulus/StimulusEditInfo/theme.js +9 -17
- package/lib/common/components/resources/stimulus/StimulusShow/index.js +194 -124
- package/lib/common/components/resources/stimulus/StimulusShow/styles.js +24 -30
- package/lib/common/components/resources/stimulus/StimulusShow/theme.js +10 -18
- package/lib/common/components/resources/stimulus/StimulusShowInfo/index.js +145 -84
- package/lib/common/components/shared/Card/CardContent/index.js +149 -62
- package/lib/common/components/shared/Card/CardContent/styles.js +29 -24
- package/lib/common/components/shared/Card/CardContent/theme.js +14 -24
- package/lib/common/components/shared/Card/CardWrapper/index.js +149 -62
- package/lib/common/components/shared/Card/CardWrapper/styles.js +26 -21
- package/lib/common/components/shared/Card/CardWrapper/theme.js +9 -17
- package/lib/common/components/shared/Card/index.js +49 -31
- package/lib/common/components/shared/ExpandButton/index.js +194 -79
- package/lib/common/components/shared/ExpandButton/styles.js +37 -19
- package/lib/common/components/shared/ExpandButton/theme.js +5 -11
- package/lib/common/components/shared/FormattedDuration/index.js +196 -104
- package/lib/common/components/shared/GenericAsyncSearch/GenericAsyncSearch.js +246 -197
- package/lib/common/components/shared/IfFeature/index.js +9 -16
- package/lib/common/components/shared/IfFeature/presenter.js +116 -50
- package/lib/common/components/shared/InteractionTypes/index.js +4 -14
- package/lib/common/components/shared/InteractionTypes/presenter.js +254 -186
- package/lib/common/components/shared/InteractionTypes/styles.js +15 -21
- package/lib/common/components/shared/InteractionTypes/theme.js +9 -17
- package/lib/common/components/shared/PaginatedCollection/index.js +21 -26
- package/lib/common/components/shared/PaginatedCollection/presenter.js +362 -179
- package/lib/common/components/shared/PaginatedCollection/styles.js +10 -16
- package/lib/common/components/shared/PaginatedCollection/theme.js +8 -16
- package/lib/common/components/shared/Paginator/index.js +147 -73
- package/lib/common/components/shared/Paginator/styles.js +7 -13
- package/lib/common/components/shared/Paginator/theme.js +6 -12
- package/lib/common/components/shared/PrintTrigger/index.js +42 -39
- package/lib/common/components/shared/PrintTrigger/presenter.js +223 -142
- package/lib/common/components/shared/TagDisplay/index.js +160 -86
- package/lib/common/components/shared/TagDisplay/styles.js +7 -13
- package/lib/common/components/shared/TagSelect/index.js +2 -9
- package/lib/common/components/shared/TagSelect/presenter.js +331 -258
- package/lib/common/components/shared/TagSuggestSelect/index.js +19 -21
- package/lib/common/components/shared/TagSuggestSelect/presenter.js +164 -112
- package/lib/common/components/shared/TagWrapper/index.js +2 -9
- package/lib/common/components/shared/TagWrapper/presenter.js +131 -78
- package/lib/common/components/shared/TimeUnitsInput/index.js +374 -327
- package/lib/common/components/shared/drag_and_drop/DragAndDropZone/index.js +186 -116
- package/lib/common/components/shared/drag_and_drop/DragAndDropZone/styles.js +65 -47
- package/lib/common/components/shared/drag_and_drop/DragAndDropZone/theme.js +16 -24
- package/lib/common/components/shared/drag_and_drop/DragHandle/index.js +30 -31
- package/lib/common/components/shared/drag_and_drop/DragHandle/presenter.js +326 -269
- package/lib/common/components/shared/drag_and_drop/dragAndDropUtils.js +273 -305
- package/lib/common/components/shared/file_selector/FileSelector.js +149 -73
- package/lib/common/components/shared/file_selector/styles.js +10 -16
- package/lib/common/components/shared/file_selector/theme.js +9 -17
- package/lib/common/components/shared/functionality/componentWithOutsideClick.js +151 -75
- package/lib/common/components/shared/functionality/componentWithOutsideClickEmotion.js +169 -85
- package/lib/common/components/shared/functionality/disableDraggingOverride.js +9 -15
- package/lib/common/components/shared/functionality/makeEditable.js +180 -122
- package/lib/common/components/shared/functionality/makeScrollable.js +276 -142
- package/lib/common/components/shared/overlay/index.js +168 -96
- package/lib/common/components/shared/overlay/styles.js +36 -31
- package/lib/common/components/shared/overlay/theme.js +8 -16
- package/lib/common/components/shared/return_button/ReturnButton.js +134 -73
- package/lib/common/components/shared/spinner/Spinner.js +193 -110
- package/lib/common/components/shared/spinner/styles.js +13 -19
- package/lib/common/kinesis/QuizEventsLogger.js +307 -124
- package/lib/common/kinesis/StreamQueue.js +216 -146
- package/lib/common/kinesis/client.js +35 -44
- package/lib/common/kinesis/config.js +35 -40
- package/lib/common/kinesis/eventTypes.js +33 -42
- package/lib/common/middleware/alertTimerMiddleware.js +15 -22
- package/lib/common/middleware/crossDomainMessagingMiddleware.js +11 -17
- package/lib/common/middleware/eventLoggerMiddleware.js +24 -33
- package/lib/common/middleware/persistedStorageMiddleware.js +42 -43
- package/lib/common/middleware/quizTimerWebSocketMiddleware.js +64 -72
- package/lib/common/middleware/sharedBanksMiddleware.js +372 -0
- package/lib/common/react-redux.js +6 -14
- package/lib/common/records/Alert.js +72 -38
- package/lib/common/records/Bank.js +181 -116
- package/lib/common/records/BankEntry.js +180 -103
- package/lib/common/records/Item.js +229 -146
- package/lib/common/records/ItemAnalysis.js +244 -167
- package/lib/common/records/QtiImport.js +108 -57
- package/lib/common/records/Quiz.js +312 -195
- package/lib/common/records/QuizAnalysis.js +176 -112
- package/lib/common/records/QuizEntry.js +663 -492
- package/lib/common/records/QuizSession.js +283 -212
- package/lib/common/records/QuizSessionEvent.js +114 -57
- package/lib/common/records/QuizSessionResult.js +141 -79
- package/lib/common/records/Response.js +113 -58
- package/lib/common/records/SessionItem.js +209 -139
- package/lib/common/records/SessionItemResult.js +141 -81
- package/lib/common/records/Stimulus.js +163 -94
- package/lib/common/records/baseRecord.js +186 -104
- package/lib/common/records/index.js +16 -118
- package/lib/common/records/reduxRecord.js +97 -48
- package/lib/common/reducers/alerts.js +13 -20
- package/lib/common/reducers/analyses.js +57 -53
- package/lib/common/reducers/bankEntries.js +20 -25
- package/lib/common/reducers/bankSearch.js +27 -38
- package/lib/common/reducers/banks.js +54 -51
- package/lib/common/reducers/calls.js +19 -20
- package/lib/common/reducers/config.js +17 -24
- package/lib/common/reducers/dragAndDrop.js +11 -18
- package/lib/common/reducers/editing.js +21 -16
- package/lib/common/reducers/errorsShowing.js +15 -22
- package/lib/common/reducers/features.js +13 -20
- package/lib/common/reducers/grading.js +15 -22
- package/lib/common/reducers/interactionTypes.js +14 -22
- package/lib/common/reducers/items.js +16 -24
- package/lib/common/reducers/modal.js +26 -33
- package/lib/common/reducers/moderation.js +17 -24
- package/lib/common/reducers/modifications.js +263 -192
- package/lib/common/reducers/outcomes.js +22 -29
- package/lib/common/reducers/printing.js +12 -19
- package/lib/common/reducers/qtiImports.js +18 -26
- package/lib/common/reducers/quizEntries.js +159 -165
- package/lib/common/reducers/quizExport.js +11 -18
- package/lib/common/reducers/quizSessionEvents.js +20 -26
- package/lib/common/reducers/quizSessionResults.js +15 -23
- package/lib/common/reducers/quizSessions.js +51 -48
- package/lib/common/reducers/quizzes.js +53 -49
- package/lib/common/reducers/rce.js +17 -24
- package/lib/common/reducers/regrading.js +21 -28
- package/lib/common/reducers/reporting.js +54 -48
- package/lib/common/reducers/scrolling.js +13 -20
- package/lib/common/reducers/sessionItemResults.js +15 -23
- package/lib/common/reducers/sessionItems.js +16 -24
- package/lib/common/reducers/sharedBanks.js +24 -30
- package/lib/common/reducers/sharingModal.js +16 -0
- package/lib/common/reducers/sidebar.js +15 -22
- package/lib/common/reducers/stimuli.js +16 -24
- package/lib/common/reducers/tagAssociations.js +138 -95
- package/lib/common/reducers/taking.js +135 -127
- package/lib/common/reducers/ui.js +33 -36
- package/lib/common/reducers/upload.js +22 -29
- package/lib/common/selectors/analyses.js +59 -32
- package/lib/common/selectors/calculator.js +20 -24
- package/lib/common/selectors/calls.js +12 -10
- package/lib/common/selectors/config.js +13 -17
- package/lib/common/selectors/interactionTypes.js +74 -46
- package/lib/common/selectors/items.js +19 -20
- package/lib/common/selectors/qtiImports.js +21 -25
- package/lib/common/selectors/quizSessionResults.js +14 -19
- package/lib/common/selectors/quizSessions.js +26 -29
- package/lib/common/selectors/quizzes.js +170 -101
- package/lib/common/selectors/rce.js +11 -11
- package/lib/common/selectors/reporting.js +15 -18
- package/lib/common/selectors/sessionItemResults.js +57 -36
- package/lib/common/selectors/sessionItems.js +69 -46
- package/lib/common/selectors/taking.js +58 -39
- package/lib/common/selectors/ui.js +6 -9
- package/lib/common/util/CustomPropTypes.js +57 -57
- package/lib/common/util/ElementsForSelectors.js +34 -16
- package/lib/common/util/ExhaustivePaginatedFetcher.js +399 -107
- package/lib/common/util/Fetcher.js +511 -371
- package/lib/common/util/MultiWeakMap.js +73 -56
- package/lib/common/util/PaginatedFetcher.js +307 -86
- package/lib/common/util/ThunkQueue.js +287 -104
- package/lib/common/util/TimeRecordingService.js +93 -62
- package/lib/common/util/TimerService.js +200 -163
- package/lib/common/util/cachePreviousArgs.js +18 -24
- package/lib/common/util/callHelpers.js +24 -30
- package/lib/common/util/clickHandlers.js +18 -26
- package/lib/common/util/componentForItem.js +17 -26
- package/lib/common/util/crossDomainMessaging.js +6 -12
- package/lib/common/util/debounceLatestPromise.js +55 -31
- package/lib/common/util/featureCheck.js +25 -37
- package/lib/common/util/fetchHelpers.js +7 -13
- package/lib/common/util/fitbCopyHelper.js +35 -39
- package/lib/common/util/formatTimespan.js +51 -61
- package/lib/common/util/generateDisplayPositions.js +19 -26
- package/lib/common/util/getClientIpAddress.js +160 -40
- package/lib/common/util/httpHeaders.js +13 -19
- package/lib/common/util/immutableHelpers.js +15 -23
- package/lib/common/util/instUIMessages.js +8 -14
- package/lib/common/util/interactionTypeMetadata.js +27 -43
- package/lib/common/util/interactionTypePropsHelper.js +80 -87
- package/lib/common/util/interactionTypeRecordForItem.js +15 -24
- package/lib/common/util/jsonify.js +48 -32
- package/lib/common/util/keyboardClickable.js +7 -13
- package/lib/common/util/localStoreService.js +63 -46
- package/lib/common/util/mathRenderingUtils.js +3 -9
- package/lib/common/util/maxContent.js +8 -15
- package/lib/common/util/modalHelpers.js +8 -11
- package/lib/common/util/noop.js +2 -9
- package/lib/common/util/persistedState.js +57 -45
- package/lib/common/util/printUtils.js +36 -42
- package/lib/common/util/rceChecker.js +132 -27
- package/lib/common/util/renderAlerts.js +19 -28
- package/lib/common/util/serializeEvent.js +42 -42
- package/lib/common/util/sessionStore.js +78 -61
- package/lib/common/util/useRemoteComponent.js +291 -0
- package/lib/common/util/valMap.js +8 -15
- package/lib/common/util/warningHelpers.js +150 -120
- package/lib/common/util/windowChecks.js +17 -23
- package/lib/common/util/withCachedArguments.js +21 -29
- package/lib/common/util/withDynamoPagination.js +337 -111
- package/lib/common/util/withStateCache.js +34 -40
- package/lib/config.js +14 -25
- package/lib/configureStore.js +161 -142
- package/lib/grading/api/quizEntryRegrades.js +34 -42
- package/lib/grading/api/updateResults.js +39 -41
- package/lib/index.js +161 -1653
- package/lib/messages/LocalStorageAdapter.js +45 -36
- package/lib/messages/LocalStorageLimits.js +81 -73
- package/lib/messages/StorageExhaustionError.js +118 -36
- package/lib/messages/postMessageService.js +110 -87
- package/lib/messages/subjectHandlers/forwardMessage.js +5 -11
- package/lib/messages/subjectHandlers/lti.capabilities.js +12 -18
- package/lib/messages/subjectHandlers/lti.fetchWindowSize.js +14 -20
- package/lib/messages/subjectHandlers/lti.frameResize.js +9 -15
- package/lib/messages/subjectHandlers/lti.get_data.js +17 -25
- package/lib/messages/subjectHandlers/lti.put_data.js +39 -42
- package/lib/messages/subjectHandlers/requestFullWindowLaunch.js +9 -16
- package/lib/messages/utils.js +6 -11
- package/lib/moderating/api/quizSessionEvents.js +19 -22
- package/lib/moderating/api/quizSessions.js +45 -55
- package/lib/moderating/components/events/Event.js +185 -125
- package/lib/moderating/components/events/PageBlurredEvent.js +109 -46
- package/lib/moderating/components/events/PageFocusedEvent.js +109 -46
- package/lib/moderating/components/events/RCEEvent.js +114 -50
- package/lib/moderating/components/events/ResponseEvent.js +219 -132
- package/lib/moderating/components/events/SessionStartEvent.js +116 -55
- package/lib/moderating/components/events/SessionSubmitEvent.js +116 -55
- package/lib/moderating/components/events/styles.js +23 -29
- package/lib/moderating/components/events/theme.js +10 -17
- package/lib/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/ExtraAttemptsInput/index.js +176 -121
- package/lib/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/index.js +156 -106
- package/lib/moderating/components/resources/AccommodationsModal/ExtraTimeMultiplier/index.js +205 -141
- package/lib/moderating/components/resources/AccommodationsModal/ExtraTimeSettings/index.js +246 -155
- package/lib/moderating/components/resources/AccommodationsModal/ReduceAnswerChoicesSettings/index.js +190 -93
- package/lib/moderating/components/resources/AccommodationsModal/index.js +203 -156
- package/lib/moderating/components/resources/ElapsedTime.js +132 -73
- package/lib/moderating/components/resources/EventDetails.js +16 -25
- package/lib/moderating/components/resources/ModerateTable/index.js +49 -45
- package/lib/moderating/components/resources/ModerateTable/presenter.js +503 -411
- package/lib/moderating/components/resources/ModerateTable/styles.js +47 -29
- package/lib/moderating/components/resources/ModerateTable/theme.js +7 -14
- package/lib/moderating/components/resources/ModerateTableRow/index.js +13 -21
- package/lib/moderating/components/resources/ModerateTableRow/presenter.js +465 -378
- package/lib/moderating/components/resources/ModerateTableRow/story.js +9 -17
- package/lib/moderating/components/resources/ModerateTableRow/styles.js +23 -29
- package/lib/moderating/components/resources/ModerateTableRow/theme.js +7 -13
- package/lib/moderating/components/resources/OutstandingQuizzesModal/index.js +16 -21
- package/lib/moderating/components/resources/OutstandingQuizzesModal/presenter.js +228 -167
- package/lib/moderating/components/resources/RetryGradePassbackButton/index.js +12 -20
- package/lib/moderating/components/resources/RetryGradePassbackButton/presenter.js +240 -82
- package/lib/moderating/components/resources/util/extractSessionData.js +41 -33
- package/lib/moderating/components/resources/util/renderEventSummary.js +29 -32
- package/lib/moderating/components/sidebar/ModerateTray/index.js +17 -19
- package/lib/moderating/components/sidebar/ModerateTray/presenter.js +299 -253
- package/lib/moderating/components/sidebar/ResetQuiz/index.js +38 -44
- package/lib/moderating/components/sidebar/ResetQuiz/presenter.js +291 -115
- package/lib/reduxStore.js +24 -32
- package/lib/reporting/api/fetchStudentAnalyses.js +146 -40
- package/lib/reporting/api/getAnalysesExport.js +163 -61
- package/lib/reporting/api/getAnalysesStatus.js +148 -45
- package/lib/reporting/api/getItemAnalyses.js +143 -35
- package/lib/reporting/api/getQuizAnalysis.js +143 -35
- package/lib/reporting/api/itemAnalyses.js +17 -21
- package/lib/reporting/api/quizAnalyses.js +20 -24
- package/lib/reporting/components/Caption/index.js +140 -63
- package/lib/reporting/components/Caption/styles.js +10 -16
- package/lib/reporting/components/Caption/theme.js +7 -15
- package/lib/reporting/components/MetricsListItem/index.js +183 -71
- package/lib/reporting/components/MetricsListItem/styles.js +10 -16
- package/lib/reporting/components/MetricsListItem/theme.js +0 -1
- package/lib/reporting/components/charts/CentileDistribution/index.js +2 -9
- package/lib/reporting/components/charts/CentileDistribution/presenter.js +216 -154
- package/lib/reporting/components/charts/CentileDistribution/styles.js +39 -34
- package/lib/reporting/components/charts/CentileDistribution/theme.js +7 -15
- package/lib/reporting/components/charts/Distribution/CentileDistribution.js +3 -10
- package/lib/reporting/components/charts/Distribution/Distribution.js +2 -9
- package/lib/reporting/components/charts/Distribution/QuintileDistribution.js +2 -9
- package/lib/reporting/components/charts/Distribution/index.js +2 -9
- package/lib/reporting/components/charts/Distribution/presenter.js +399 -319
- package/lib/reporting/components/charts/Distribution/styles.js +20 -26
- package/lib/reporting/components/charts/Distribution/theme.js +11 -18
- package/lib/reporting/components/charts/Legend/index.js +184 -94
- package/lib/reporting/components/charts/Legend/styles.js +66 -48
- package/lib/reporting/components/charts/Legend/theme.js +14 -23
- package/lib/reporting/components/charts/QuintileDistribution/index.js +2 -9
- package/lib/reporting/components/charts/QuintileDistribution/presenter.js +214 -154
- package/lib/reporting/components/charts/QuintileDistribution/styles.js +10 -16
- package/lib/reporting/components/charts/QuintileDistribution/theme.js +8 -15
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/index.js +213 -127
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/styles.js +48 -38
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/theme.js +21 -32
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/index.js +9 -16
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/presenter.js +350 -277
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/styles.js +105 -102
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/theme.js +22 -31
- package/lib/reporting/components/quizAnalysis/QuizAnalysisOverview.js +216 -151
- package/lib/reporting/components/quizAnalysis/styles.js +35 -29
- package/lib/reporting/components/quizAnalysis/theme.js +10 -19
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/index.js +2 -8
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +149 -75
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/styles.js +12 -18
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/index.js +2 -8
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +158 -83
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/styles.js +16 -22
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/presenter.js +98 -60
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/presenter.js +102 -64
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/presenter.js +180 -114
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/styles.js +89 -47
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/theme.js +7 -13
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/presenter.js +170 -105
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/styles.js +17 -23
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/theme.js +6 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/CategorizationType.js +159 -85
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingType.js +104 -66
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +248 -191
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/styles.js +76 -58
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/theme.js +7 -13
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/OrderingType.js +158 -85
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/index.js +3 -26
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/utils/matchingTypeOrderer.js +74 -41
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/presenter.js +134 -101
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/presenter.js +268 -238
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/styles.js +8 -14
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/theme.js +6 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/presenter.js +190 -150
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/styles.js +8 -14
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/theme.js +6 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/presenter.js +113 -79
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/index.js +183 -119
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/styles.js +34 -40
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/theme.js +8 -15
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/index.js +105 -67
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/presenter.js +175 -113
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/presenter.js +142 -77
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/styles.js +38 -20
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsPartsContainer/theme.js +6 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/popoverContent.js +6 -13
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/presenter.js +125 -74
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AfsTableWrapper/styles.js +9 -15
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +221 -174
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/styles.js +139 -145
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/theme.js +11 -17
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/presenter.js +254 -207
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/styles.js +140 -98
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/theme.js +9 -16
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/presenter.js +156 -110
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/styles.js +14 -20
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ExpandableCard/theme.js +5 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ExportButton/index.js +32 -42
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/index.js +2 -8
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js +199 -130
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/styles.js +13 -19
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/theme.js +6 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/index.js +1 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/presenter.js +125 -52
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/styles.js +15 -21
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/BlankIcon/theme.js +9 -15
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/index.js +21 -27
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/popoverContent.js +14 -21
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/presenter.js +366 -310
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/styles.js +98 -80
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/theme.js +14 -23
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/index.js +2 -8
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/popoverContent.js +10 -17
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +251 -161
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/styles.js +38 -44
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/theme.js +14 -20
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/index.js +4 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/presenter.js +269 -219
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/styles.js +75 -57
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/theme.js +11 -18
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/index.js +2 -8
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/presenter.js +169 -102
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/styles.js +18 -24
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/theme.js +10 -18
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/exportFormats.js +1 -7
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/fetchReports.js +229 -59
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/fetchReportsStatus.js +167 -46
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/index.js +4 -11
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +326 -289
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/styles.js +12 -18
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/theme.js +6 -12
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisState.js +40 -46
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisStatePresenter.js +427 -223
- package/lib/reporting/components/resources/OutcomeAnalysis/index.js +25 -20
- package/lib/reporting/components/resources/OutcomeAnalysis/presenter.js +131 -77
- package/lib/reporting/components/resources/QuizAndItemAnalysis/index.js +39 -32
- package/lib/reporting/components/resources/QuizAndItemAnalysis/presenter.js +381 -295
- package/lib/reporting/components/resources/QuizAndItemAnalysis/styles.js +16 -22
- package/lib/reporting/components/resources/QuizAndItemAnalysis/theme.js +11 -19
- package/lib/reporting/components/resources/ReportCard/index.js +154 -83
- package/lib/reporting/components/resources/ReportCard/styles.js +32 -27
- package/lib/reporting/components/resources/ReportCard/theme.js +10 -17
- package/lib/reporting/components/resources/ReportList/index.js +147 -69
- package/lib/reporting/components/resources/ReportList/styles.js +17 -23
- package/lib/reporting/components/resources/ReportList/theme.js +8 -14
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/index.js +3 -10
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/presenter.js +224 -172
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/styles.js +66 -49
- package/lib/reporting/components/resources/StudentAnalysis/ReportCard/theme.js +11 -19
- package/lib/reporting/components/resources/StudentAnalysis/fetchReport.js +175 -53
- package/lib/reporting/components/resources/StudentAnalysis/fetchReportStatus.js +168 -47
- package/lib/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportState.js +36 -43
- package/lib/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportStatePresenter.js +426 -230
- package/lib/reporting/components/resources/common/AnalysisUpdateDate/index.js +122 -65
- package/lib/reporting/components/resources/common/ExportButton/index.js +21 -29
- package/lib/reporting/components/resources/common/errorCodes.js +26 -32
- package/lib/reporting/components/resources/common/errorMessages.js +25 -32
- package/lib/reporting/components/resources/common/exportReports.js +177 -60
- package/lib/reporting/components/resources/common/generateReports.js +219 -83
- package/lib/reporting/components/resources/common/propTypes.js +185 -180
- package/lib/reporting/components/resources/common/utils.js +17 -23
- package/lib/taking/api/taking.js +404 -309
- package/lib/taking/learnosity/index.js +274 -131
- package/package.json +48 -32
- package/es/banks/components/BankEntryRow/BankEntryRow.examples.js +0 -40
- package/es/banks/components/BankSearch/BankSearch.stories.js +0 -50
- package/es/banks/components/NavWrapper/NavWrapper.examples.js +0 -14
- package/es/banks/components/SharingModal/ShareList/ShareList.examples.js +0 -21
- package/es/building/components/layout/Sidebar/Sidebar.examples.js +0 -113
- package/es/building/components/resources/quiz/instructions/Instructions/Instructions.examples.js +0 -22
- package/es/building/components/resources/quiz/title/Title/Title.examples.js +0 -39
- package/es/common/components/AccessCodeTextInput/AccessCodeTextInput.stories.js +0 -10
- package/es/common/components/MaskedTextInput/MaskedTextInput.stories.js +0 -19
- package/es/common/components/Pin/Pin.examples.js +0 -13
- package/es/common/components/PreviewFrame/examples.config.js +0 -11
- package/es/common/components/layout/sidebar/Sidebar/Sidebar.examples.js +0 -30
- package/es/common/components/resources/BankSelection/BankSelection.examples.js +0 -19
- package/es/common/components/resources/quizSessionResult/Info/Info.examples.js +0 -33
- package/es/common/components/resources/stimulus/StimulusShowInfo/StimulusShowInfo.examples.js +0 -11
- package/es/common/components/shared/FormattedDuration/FormattedDuration.examples.js +0 -15
- package/es/common/components/shared/TimeUnitsInput/TimeUnitsInput.examples.js +0 -18
- package/es/moderating/components/resources/AccommodationsModal/AccommodationsModal.examples.js +0 -16
- package/es/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/ExtraAttemptsInput/{}.examples.js +0 -21
- package/es/moderating/components/resources/AccommodationsModal/ExtraTimeSettings/ExtraTimeSettings.examples.js +0 -49
- package/es/moderating/components/resources/ModerateTableRow/ModerateTableRow.examples.js +0 -71
- package/es/moderating/components/resources/OutstandingQuizzesModal/OutstandingQuizzesModal.examples.js +0 -79
- package/es/moderating/components/sidebar/ModerateTray/ModerateTray.examples.js +0 -13
- package/es/reporting/components/charts/CentileDistribution/CentileDistribution.examples.js +0 -25
- package/es/reporting/components/charts/QuintileDistribution/QuintileDistribution.examples.js +0 -9
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/AnswerFrequencySummary.examples.js +0 -33
- package/es/reporting/components/itemAnalysis/ItemAnalysisRow/ItemAnalysisRow.examples.js +0 -48
- package/es/reporting/components/resources/QuizAndItemAnalysis/QuizAndItemAnalysis.examples.js +0 -174
- package/lib/banks/components/BankEntryRow/BankEntryRow.examples.js +0 -47
- package/lib/banks/components/BankSearch/BankSearch.stories.js +0 -57
- package/lib/banks/components/NavWrapper/NavWrapper.examples.js +0 -21
- package/lib/banks/components/SharingModal/ShareList/ShareList.examples.js +0 -27
- package/lib/building/components/layout/Sidebar/Sidebar.examples.js +0 -120
- package/lib/building/components/resources/quiz/instructions/Instructions/Instructions.examples.js +0 -29
- package/lib/building/components/resources/quiz/title/Title/Title.examples.js +0 -46
- package/lib/common/components/AccessCodeTextInput/AccessCodeTextInput.stories.js +0 -17
- package/lib/common/components/MaskedTextInput/MaskedTextInput.stories.js +0 -26
- package/lib/common/components/Pin/Pin.examples.js +0 -19
- package/lib/common/components/PreviewFrame/examples.config.js +0 -18
- package/lib/common/components/layout/sidebar/Sidebar/Sidebar.examples.js +0 -37
- package/lib/common/components/resources/BankSelection/BankSelection.examples.js +0 -25
- package/lib/common/components/resources/quizSessionResult/Info/Info.examples.js +0 -40
- package/lib/common/components/resources/stimulus/StimulusShowInfo/StimulusShowInfo.examples.js +0 -18
- package/lib/common/components/shared/FormattedDuration/FormattedDuration.examples.js +0 -22
- package/lib/common/components/shared/TimeUnitsInput/TimeUnitsInput.examples.js +0 -24
- package/lib/moderating/components/resources/AccommodationsModal/AccommodationsModal.examples.js +0 -22
- package/lib/moderating/components/resources/AccommodationsModal/ExtraAttemptSettings/ExtraAttemptsInput/{}.examples.js +0 -27
- package/lib/moderating/components/resources/AccommodationsModal/ExtraTimeSettings/ExtraTimeSettings.examples.js +0 -55
- package/lib/moderating/components/resources/ModerateTableRow/ModerateTableRow.examples.js +0 -78
- package/lib/moderating/components/resources/OutstandingQuizzesModal/OutstandingQuizzesModal.examples.js +0 -85
- package/lib/moderating/components/sidebar/ModerateTray/ModerateTray.examples.js +0 -19
- package/lib/package.json +0 -1
- package/lib/reporting/components/charts/CentileDistribution/CentileDistribution.examples.js +0 -31
- package/lib/reporting/components/charts/QuintileDistribution/QuintileDistribution.examples.js +0 -15
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/AnswerFrequencySummary.examples.js +0 -40
- package/lib/reporting/components/itemAnalysis/ItemAnalysisRow/ItemAnalysisRow.examples.js +0 -55
- package/lib/reporting/components/resources/QuizAndItemAnalysis/QuizAndItemAnalysis.examples.js +0 -181
package/lib/index.js
CHANGED
|
@@ -1,1653 +1,161 @@
|
|
|
1
|
-
"
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
addInfo: true,
|
|
163
|
-
addError: true,
|
|
164
|
-
screenreaderNotification: true,
|
|
165
|
-
removeAlert: true,
|
|
166
|
-
openModal: true,
|
|
167
|
-
closeModal: true,
|
|
168
|
-
modalActions: true,
|
|
169
|
-
setGradeByQuestionEnabled: true,
|
|
170
|
-
setActiveItem: true,
|
|
171
|
-
dismissGradeByQuestionBanner: true,
|
|
172
|
-
setRegradingPayload: true,
|
|
173
|
-
setScoreReconciliation: true,
|
|
174
|
-
toggleRegradingEditMode: true,
|
|
175
|
-
showError: true,
|
|
176
|
-
hideError: true,
|
|
177
|
-
clearErrorsShowing: true,
|
|
178
|
-
changeItemState: true,
|
|
179
|
-
changeQuizEntryPoints: true,
|
|
180
|
-
changeQuizEntryProperties: true,
|
|
181
|
-
clearModifications: true,
|
|
182
|
-
moveTemporaryQuizEntry: true,
|
|
183
|
-
changeQuizOutcomeAlignmentSetGuid: true,
|
|
184
|
-
changeFudgePoints: true,
|
|
185
|
-
sessionItemResultsModification: true,
|
|
186
|
-
previousQuestion: true,
|
|
187
|
-
editResponse: true,
|
|
188
|
-
previewResponse: true,
|
|
189
|
-
setCurrentSessionItemPosition: true,
|
|
190
|
-
clearFocusCurrentSessionItem: true,
|
|
191
|
-
setFocusTitleAndInstructions: true,
|
|
192
|
-
takingActionCreators: true,
|
|
193
|
-
scrollToItem: true,
|
|
194
|
-
reportRCEEvent: true,
|
|
195
|
-
toggleSidebar: true,
|
|
196
|
-
newHoverPosition: true,
|
|
197
|
-
set: true,
|
|
198
|
-
setActiveCalculatorId: true,
|
|
199
|
-
postToParent: true,
|
|
200
|
-
getResultInfo: true,
|
|
201
|
-
newActiveQuizSession: true,
|
|
202
|
-
clearActiveQuizSession: true,
|
|
203
|
-
getSessionItems: true,
|
|
204
|
-
startQuizExportJob: true,
|
|
205
|
-
getQuizById: true,
|
|
206
|
-
getActiveQuizId: true,
|
|
207
|
-
getQuizEntryById: true,
|
|
208
|
-
getQuizEntriesByQuizId: true,
|
|
209
|
-
isActiveQuizWorkingInstanceOneQuestionAtATime: true,
|
|
210
|
-
getActiveQuiz: true,
|
|
211
|
-
getItemById: true,
|
|
212
|
-
fileUploading: true,
|
|
213
|
-
isTimeUp: true,
|
|
214
|
-
getTimerData: true,
|
|
215
|
-
getResponseDataByPosition: true,
|
|
216
|
-
getActiveCalculatorId: true,
|
|
217
|
-
getRCEError: true,
|
|
218
|
-
getQuizSessionById: true,
|
|
219
|
-
getActiveQuizSession: true,
|
|
220
|
-
getBacktrackingIsAllowed: true,
|
|
221
|
-
isOneQuestionAtATime: true,
|
|
222
|
-
getGradingSessionItems: true,
|
|
223
|
-
getGradingSessionItemResults: true
|
|
224
|
-
};
|
|
225
|
-
Object.defineProperty(exports, "AccessCodeTextInput", {
|
|
226
|
-
enumerable: true,
|
|
227
|
-
get: function get() {
|
|
228
|
-
return _AccessCodeTextInput.AccessCodeTextInput;
|
|
229
|
-
}
|
|
230
|
-
});
|
|
231
|
-
Object.defineProperty(exports, "AccommodationModal", {
|
|
232
|
-
enumerable: true,
|
|
233
|
-
get: function get() {
|
|
234
|
-
return _AccommodationsModal.AccommodationModal;
|
|
235
|
-
}
|
|
236
|
-
});
|
|
237
|
-
Object.defineProperty(exports, "ActionButtons", {
|
|
238
|
-
enumerable: true,
|
|
239
|
-
get: function get() {
|
|
240
|
-
return _ActionButtons.ActionButtons;
|
|
241
|
-
}
|
|
242
|
-
});
|
|
243
|
-
Object.defineProperty(exports, "AddContentModal", {
|
|
244
|
-
enumerable: true,
|
|
245
|
-
get: function get() {
|
|
246
|
-
return _Modal.AddContentModal;
|
|
247
|
-
}
|
|
248
|
-
});
|
|
249
|
-
Object.defineProperty(exports, "AddContentPopover", {
|
|
250
|
-
enumerable: true,
|
|
251
|
-
get: function get() {
|
|
252
|
-
return _Popover.AddContentPopover;
|
|
253
|
-
}
|
|
254
|
-
});
|
|
255
|
-
Object.defineProperty(exports, "BankEntryPage", {
|
|
256
|
-
enumerable: true,
|
|
257
|
-
get: function get() {
|
|
258
|
-
return _BankEntry.BankEntry;
|
|
259
|
-
}
|
|
260
|
-
});
|
|
261
|
-
Object.defineProperty(exports, "BankPage", {
|
|
262
|
-
enumerable: true,
|
|
263
|
-
get: function get() {
|
|
264
|
-
return _Bank.Bank;
|
|
265
|
-
}
|
|
266
|
-
});
|
|
267
|
-
Object.defineProperty(exports, "BanksPage", {
|
|
268
|
-
enumerable: true,
|
|
269
|
-
get: function get() {
|
|
270
|
-
return _Banks.Banks;
|
|
271
|
-
}
|
|
272
|
-
});
|
|
273
|
-
Object.defineProperty(exports, "BanksTray", {
|
|
274
|
-
enumerable: true,
|
|
275
|
-
get: function get() {
|
|
276
|
-
return _BanksTray.BanksTray;
|
|
277
|
-
}
|
|
278
|
-
});
|
|
279
|
-
Object.defineProperty(exports, "BuildingButtons", {
|
|
280
|
-
enumerable: true,
|
|
281
|
-
get: function get() {
|
|
282
|
-
return _BuildingButtons.BuildingButtons;
|
|
283
|
-
}
|
|
284
|
-
});
|
|
285
|
-
Object.defineProperty(exports, "BuildingSidebar", {
|
|
286
|
-
enumerable: true,
|
|
287
|
-
get: function get() {
|
|
288
|
-
return _Sidebar2.BuildingSidebar;
|
|
289
|
-
}
|
|
290
|
-
});
|
|
291
|
-
Object.defineProperty(exports, "Calculator", {
|
|
292
|
-
enumerable: true,
|
|
293
|
-
get: function get() {
|
|
294
|
-
return _index.Calculator;
|
|
295
|
-
}
|
|
296
|
-
});
|
|
297
|
-
Object.defineProperty(exports, "Card", {
|
|
298
|
-
enumerable: true,
|
|
299
|
-
get: function get() {
|
|
300
|
-
return _Card.Card;
|
|
301
|
-
}
|
|
302
|
-
});
|
|
303
|
-
Object.defineProperty(exports, "CardContent", {
|
|
304
|
-
enumerable: true,
|
|
305
|
-
get: function get() {
|
|
306
|
-
return _CardContent.CardContent;
|
|
307
|
-
}
|
|
308
|
-
});
|
|
309
|
-
Object.defineProperty(exports, "CardWrapper", {
|
|
310
|
-
enumerable: true,
|
|
311
|
-
get: function get() {
|
|
312
|
-
return _CardWrapper.CardWrapper;
|
|
313
|
-
}
|
|
314
|
-
});
|
|
315
|
-
Object.defineProperty(exports, "CentileDistribution", {
|
|
316
|
-
enumerable: true,
|
|
317
|
-
get: function get() {
|
|
318
|
-
return _CentileDistribution.CentileDistribution;
|
|
319
|
-
}
|
|
320
|
-
});
|
|
321
|
-
Object.defineProperty(exports, "CustomPropTypes", {
|
|
322
|
-
enumerable: true,
|
|
323
|
-
get: function get() {
|
|
324
|
-
return _CustomPropTypes.CustomPropTypes;
|
|
325
|
-
}
|
|
326
|
-
});
|
|
327
|
-
Object.defineProperty(exports, "DeleteStimulusModal", {
|
|
328
|
-
enumerable: true,
|
|
329
|
-
get: function get() {
|
|
330
|
-
return _DeleteStimulusModal.DeleteStimulusModal;
|
|
331
|
-
}
|
|
332
|
-
});
|
|
333
|
-
Object.defineProperty(exports, "DropTargetCreator", {
|
|
334
|
-
enumerable: true,
|
|
335
|
-
get: function get() {
|
|
336
|
-
return _dragAndDropUtils.DropTargetCreator;
|
|
337
|
-
}
|
|
338
|
-
});
|
|
339
|
-
Object.defineProperty(exports, "Event", {
|
|
340
|
-
enumerable: true,
|
|
341
|
-
get: function get() {
|
|
342
|
-
return _Event.Event;
|
|
343
|
-
}
|
|
344
|
-
});
|
|
345
|
-
Object.defineProperty(exports, "ExtraAttemptSettings", {
|
|
346
|
-
enumerable: true,
|
|
347
|
-
get: function get() {
|
|
348
|
-
return _ExtraAttemptSettings.ExtraAttemptSettings;
|
|
349
|
-
}
|
|
350
|
-
});
|
|
351
|
-
Object.defineProperty(exports, "ExtraTimeSettings", {
|
|
352
|
-
enumerable: true,
|
|
353
|
-
get: function get() {
|
|
354
|
-
return _ExtraTimeSettings.ExtraTimeSettings;
|
|
355
|
-
}
|
|
356
|
-
});
|
|
357
|
-
Object.defineProperty(exports, "Fetcher", {
|
|
358
|
-
enumerable: true,
|
|
359
|
-
get: function get() {
|
|
360
|
-
return _Fetcher.Fetcher;
|
|
361
|
-
}
|
|
362
|
-
});
|
|
363
|
-
Object.defineProperty(exports, "FormattedTimer", {
|
|
364
|
-
enumerable: true,
|
|
365
|
-
get: function get() {
|
|
366
|
-
return _FormattedDuration.FormattedTimer;
|
|
367
|
-
}
|
|
368
|
-
});
|
|
369
|
-
Object.defineProperty(exports, "GenericAsyncSearch", {
|
|
370
|
-
enumerable: true,
|
|
371
|
-
get: function get() {
|
|
372
|
-
return _GenericAsyncSearch.GenericAsyncSearch;
|
|
373
|
-
}
|
|
374
|
-
});
|
|
375
|
-
Object.defineProperty(exports, "HOUR_IN_SECONDS", {
|
|
376
|
-
enumerable: true,
|
|
377
|
-
get: function get() {
|
|
378
|
-
return _FormattedDuration.HOUR_IN_SECONDS;
|
|
379
|
-
}
|
|
380
|
-
});
|
|
381
|
-
Object.defineProperty(exports, "HeaderMenuButton", {
|
|
382
|
-
enumerable: true,
|
|
383
|
-
get: function get() {
|
|
384
|
-
return _index2.HeaderMenuButton;
|
|
385
|
-
}
|
|
386
|
-
});
|
|
387
|
-
Object.defineProperty(exports, "IfFeature", {
|
|
388
|
-
enumerable: true,
|
|
389
|
-
get: function get() {
|
|
390
|
-
return _IfFeature.IfFeature;
|
|
391
|
-
}
|
|
392
|
-
});
|
|
393
|
-
Object.defineProperty(exports, "ItemFeedbackModal", {
|
|
394
|
-
enumerable: true,
|
|
395
|
-
get: function get() {
|
|
396
|
-
return _ItemFeedbackModal.ItemFeedbackModal;
|
|
397
|
-
}
|
|
398
|
-
});
|
|
399
|
-
Object.defineProperty(exports, "LearnosityCalculator", {
|
|
400
|
-
enumerable: true,
|
|
401
|
-
get: function get() {
|
|
402
|
-
return _LearnosityCalculator.LearnosityCalculator;
|
|
403
|
-
}
|
|
404
|
-
});
|
|
405
|
-
Object.defineProperty(exports, "Legend", {
|
|
406
|
-
enumerable: true,
|
|
407
|
-
get: function get() {
|
|
408
|
-
return _Legend.Legend;
|
|
409
|
-
}
|
|
410
|
-
});
|
|
411
|
-
Object.defineProperty(exports, "LocalStoreService", {
|
|
412
|
-
enumerable: true,
|
|
413
|
-
get: function get() {
|
|
414
|
-
return _localStoreService.LocalStoreService;
|
|
415
|
-
}
|
|
416
|
-
});
|
|
417
|
-
Object.defineProperty(exports, "MaskedTextInput", {
|
|
418
|
-
enumerable: true,
|
|
419
|
-
get: function get() {
|
|
420
|
-
return _MaskedTextInput.MaskedTextInput;
|
|
421
|
-
}
|
|
422
|
-
});
|
|
423
|
-
Object.defineProperty(exports, "ModerateTable", {
|
|
424
|
-
enumerable: true,
|
|
425
|
-
get: function get() {
|
|
426
|
-
return _ModerateTable.ModerateTable;
|
|
427
|
-
}
|
|
428
|
-
});
|
|
429
|
-
Object.defineProperty(exports, "MoveImmutableModal", {
|
|
430
|
-
enumerable: true,
|
|
431
|
-
get: function get() {
|
|
432
|
-
return _MoveImmutableModal.MoveImmutableModal;
|
|
433
|
-
}
|
|
434
|
-
});
|
|
435
|
-
Object.defineProperty(exports, "NewQuizAndItemAnalysis", {
|
|
436
|
-
enumerable: true,
|
|
437
|
-
get: function get() {
|
|
438
|
-
return _NewQuizAndItemAnalysis.NewQuizAndItemAnalysis;
|
|
439
|
-
}
|
|
440
|
-
});
|
|
441
|
-
Object.defineProperty(exports, "NewQuizAndItemAnalysisReportCard", {
|
|
442
|
-
enumerable: true,
|
|
443
|
-
get: function get() {
|
|
444
|
-
return _ReportCard2.NewQuizAndItemAnalysisReportCard;
|
|
445
|
-
}
|
|
446
|
-
});
|
|
447
|
-
Object.defineProperty(exports, "OutcomeAnalysis", {
|
|
448
|
-
enumerable: true,
|
|
449
|
-
get: function get() {
|
|
450
|
-
return _OutcomeAnalysis.OutcomeAnalysis;
|
|
451
|
-
}
|
|
452
|
-
});
|
|
453
|
-
Object.defineProperty(exports, "Page", {
|
|
454
|
-
enumerable: true,
|
|
455
|
-
get: function get() {
|
|
456
|
-
return _Page.Page;
|
|
457
|
-
}
|
|
458
|
-
});
|
|
459
|
-
Object.defineProperty(exports, "Paginator", {
|
|
460
|
-
enumerable: true,
|
|
461
|
-
get: function get() {
|
|
462
|
-
return _Paginator.Paginator;
|
|
463
|
-
}
|
|
464
|
-
});
|
|
465
|
-
Object.defineProperty(exports, "Pin", {
|
|
466
|
-
enumerable: true,
|
|
467
|
-
get: function get() {
|
|
468
|
-
return _Pin.Pin;
|
|
469
|
-
}
|
|
470
|
-
});
|
|
471
|
-
Object.defineProperty(exports, "PositionBox", {
|
|
472
|
-
enumerable: true,
|
|
473
|
-
get: function get() {
|
|
474
|
-
return _PositionBox.PositionBox;
|
|
475
|
-
}
|
|
476
|
-
});
|
|
477
|
-
Object.defineProperty(exports, "PreviewFrame", {
|
|
478
|
-
enumerable: true,
|
|
479
|
-
get: function get() {
|
|
480
|
-
return _PreviewFrame.PreviewFrame;
|
|
481
|
-
}
|
|
482
|
-
});
|
|
483
|
-
Object.defineProperty(exports, "PrintTrigger", {
|
|
484
|
-
enumerable: true,
|
|
485
|
-
get: function get() {
|
|
486
|
-
return _PrintTrigger.PrintTrigger;
|
|
487
|
-
}
|
|
488
|
-
});
|
|
489
|
-
Object.defineProperty(exports, "Provider", {
|
|
490
|
-
enumerable: true,
|
|
491
|
-
get: function get() {
|
|
492
|
-
return _reactRedux.Provider;
|
|
493
|
-
}
|
|
494
|
-
});
|
|
495
|
-
Object.defineProperty(exports, "QTIImportModal", {
|
|
496
|
-
enumerable: true,
|
|
497
|
-
get: function get() {
|
|
498
|
-
return _QTIImportModal.QTIImportModal;
|
|
499
|
-
}
|
|
500
|
-
});
|
|
501
|
-
Object.defineProperty(exports, "QuizAndItemAnalysis", {
|
|
502
|
-
enumerable: true,
|
|
503
|
-
get: function get() {
|
|
504
|
-
return _QuizAndItemAnalysis.QuizAndItemAnalysis;
|
|
505
|
-
}
|
|
506
|
-
});
|
|
507
|
-
Object.defineProperty(exports, "QuizEntryShow", {
|
|
508
|
-
enumerable: true,
|
|
509
|
-
get: function get() {
|
|
510
|
-
return _QuizEntryShow.QuizEntryShow;
|
|
511
|
-
}
|
|
512
|
-
});
|
|
513
|
-
Object.defineProperty(exports, "QuizEntryView", {
|
|
514
|
-
enumerable: true,
|
|
515
|
-
get: function get() {
|
|
516
|
-
return _QuizEntry.QuizEntry;
|
|
517
|
-
}
|
|
518
|
-
});
|
|
519
|
-
Object.defineProperty(exports, "QuizInfo", {
|
|
520
|
-
enumerable: true,
|
|
521
|
-
get: function get() {
|
|
522
|
-
return _QuizInfo.QuizInfo;
|
|
523
|
-
}
|
|
524
|
-
});
|
|
525
|
-
Object.defineProperty(exports, "QuizInstructions", {
|
|
526
|
-
enumerable: true,
|
|
527
|
-
get: function get() {
|
|
528
|
-
return _Instructions.QuizInstructions;
|
|
529
|
-
}
|
|
530
|
-
});
|
|
531
|
-
Object.defineProperty(exports, "QuizSessionResultHeader", {
|
|
532
|
-
enumerable: true,
|
|
533
|
-
get: function get() {
|
|
534
|
-
return _Header.QuizSessionResultHeader;
|
|
535
|
-
}
|
|
536
|
-
});
|
|
537
|
-
Object.defineProperty(exports, "QuizSessionResultInfo", {
|
|
538
|
-
enumerable: true,
|
|
539
|
-
get: function get() {
|
|
540
|
-
return _Info.Info;
|
|
541
|
-
}
|
|
542
|
-
});
|
|
543
|
-
Object.defineProperty(exports, "QuizTitle", {
|
|
544
|
-
enumerable: true,
|
|
545
|
-
get: function get() {
|
|
546
|
-
return _Title.QuizTitle;
|
|
547
|
-
}
|
|
548
|
-
});
|
|
549
|
-
Object.defineProperty(exports, "QuizzesSpinner", {
|
|
550
|
-
enumerable: true,
|
|
551
|
-
get: function get() {
|
|
552
|
-
return _Spinner.QuizzesSpinner;
|
|
553
|
-
}
|
|
554
|
-
});
|
|
555
|
-
Object.defineProperty(exports, "ReportCard", {
|
|
556
|
-
enumerable: true,
|
|
557
|
-
get: function get() {
|
|
558
|
-
return _ReportCard.ReportCard;
|
|
559
|
-
}
|
|
560
|
-
});
|
|
561
|
-
Object.defineProperty(exports, "ReportList", {
|
|
562
|
-
enumerable: true,
|
|
563
|
-
get: function get() {
|
|
564
|
-
return _ReportList.ReportList;
|
|
565
|
-
}
|
|
566
|
-
});
|
|
567
|
-
Object.defineProperty(exports, "ResultStimulus", {
|
|
568
|
-
enumerable: true,
|
|
569
|
-
get: function get() {
|
|
570
|
-
return _ResultStimulus.ResultStimulus;
|
|
571
|
-
}
|
|
572
|
-
});
|
|
573
|
-
Object.defineProperty(exports, "RetryGradePassbackButton", {
|
|
574
|
-
enumerable: true,
|
|
575
|
-
get: function get() {
|
|
576
|
-
return _RetryGradePassbackButton.RetryGradePassbackButton;
|
|
577
|
-
}
|
|
578
|
-
});
|
|
579
|
-
Object.defineProperty(exports, "ReturnButton", {
|
|
580
|
-
enumerable: true,
|
|
581
|
-
get: function get() {
|
|
582
|
-
return _ReturnButton.ReturnButton;
|
|
583
|
-
}
|
|
584
|
-
});
|
|
585
|
-
Object.defineProperty(exports, "SDKApp", {
|
|
586
|
-
enumerable: true,
|
|
587
|
-
get: function get() {
|
|
588
|
-
return _SDKApp.DragDroppableSDKApp;
|
|
589
|
-
}
|
|
590
|
-
});
|
|
591
|
-
Object.defineProperty(exports, "SDKBuildingButtons", {
|
|
592
|
-
enumerable: true,
|
|
593
|
-
get: function get() {
|
|
594
|
-
return _SDKBuildingButtons.SDKBuildingButtons;
|
|
595
|
-
}
|
|
596
|
-
});
|
|
597
|
-
Object.defineProperty(exports, "SDKHeaderCalculator", {
|
|
598
|
-
enumerable: true,
|
|
599
|
-
get: function get() {
|
|
600
|
-
return _SDKHeaderCalculator.SDKHeaderCalculator;
|
|
601
|
-
}
|
|
602
|
-
});
|
|
603
|
-
Object.defineProperty(exports, "SDKMenuButton", {
|
|
604
|
-
enumerable: true,
|
|
605
|
-
get: function get() {
|
|
606
|
-
return _SDKMenuButton.SDKMenuButton;
|
|
607
|
-
}
|
|
608
|
-
});
|
|
609
|
-
Object.defineProperty(exports, "SDKNavBar", {
|
|
610
|
-
enumerable: true,
|
|
611
|
-
get: function get() {
|
|
612
|
-
return _SDKNavBar.SDKNavBar;
|
|
613
|
-
}
|
|
614
|
-
});
|
|
615
|
-
Object.defineProperty(exports, "SDKTimer", {
|
|
616
|
-
enumerable: true,
|
|
617
|
-
get: function get() {
|
|
618
|
-
return _SDKTimer.SDKTimer;
|
|
619
|
-
}
|
|
620
|
-
});
|
|
621
|
-
Object.defineProperty(exports, "SecondaryNavBarButton", {
|
|
622
|
-
enumerable: true,
|
|
623
|
-
get: function get() {
|
|
624
|
-
return _SecondaryNavBarButton.SecondaryNavBarButton;
|
|
625
|
-
}
|
|
626
|
-
});
|
|
627
|
-
Object.defineProperty(exports, "SessionItemResultView", {
|
|
628
|
-
enumerable: true,
|
|
629
|
-
get: function get() {
|
|
630
|
-
return _SessionItemResult.SessionItemResult;
|
|
631
|
-
}
|
|
632
|
-
});
|
|
633
|
-
Object.defineProperty(exports, "SessionItemResultsList", {
|
|
634
|
-
enumerable: true,
|
|
635
|
-
get: function get() {
|
|
636
|
-
return _SessionItemResultsList.SessionItemResultsList;
|
|
637
|
-
}
|
|
638
|
-
});
|
|
639
|
-
Object.defineProperty(exports, "Sidebar", {
|
|
640
|
-
enumerable: true,
|
|
641
|
-
get: function get() {
|
|
642
|
-
return _Sidebar.Sidebar;
|
|
643
|
-
}
|
|
644
|
-
});
|
|
645
|
-
Object.defineProperty(exports, "SidebarItem", {
|
|
646
|
-
enumerable: true,
|
|
647
|
-
get: function get() {
|
|
648
|
-
return _SidebarItem.SidebarItem;
|
|
649
|
-
}
|
|
650
|
-
});
|
|
651
|
-
Object.defineProperty(exports, "StimulusShow", {
|
|
652
|
-
enumerable: true,
|
|
653
|
-
get: function get() {
|
|
654
|
-
return _StimulusShow.StimulusShow;
|
|
655
|
-
}
|
|
656
|
-
});
|
|
657
|
-
Object.defineProperty(exports, "StimulusView", {
|
|
658
|
-
enumerable: true,
|
|
659
|
-
get: function get() {
|
|
660
|
-
return _Stimulus.Stimulus;
|
|
661
|
-
}
|
|
662
|
-
});
|
|
663
|
-
Object.defineProperty(exports, "StudentAnalysisReportCard", {
|
|
664
|
-
enumerable: true,
|
|
665
|
-
get: function get() {
|
|
666
|
-
return _index3.StudentAnalysisReportCard;
|
|
667
|
-
}
|
|
668
|
-
});
|
|
669
|
-
Object.defineProperty(exports, "TagWrapper", {
|
|
670
|
-
enumerable: true,
|
|
671
|
-
get: function get() {
|
|
672
|
-
return _TagWrapper["default"];
|
|
673
|
-
}
|
|
674
|
-
});
|
|
675
|
-
Object.defineProperty(exports, "TimeRecordingService", {
|
|
676
|
-
enumerable: true,
|
|
677
|
-
get: function get() {
|
|
678
|
-
return _TimeRecordingService.TimeRecordingService;
|
|
679
|
-
}
|
|
680
|
-
});
|
|
681
|
-
Object.defineProperty(exports, "TimeUnitsInput", {
|
|
682
|
-
enumerable: true,
|
|
683
|
-
get: function get() {
|
|
684
|
-
return _TimeUnitsInput.TimeUnitsInput;
|
|
685
|
-
}
|
|
686
|
-
});
|
|
687
|
-
Object.defineProperty(exports, "Timer", {
|
|
688
|
-
enumerable: true,
|
|
689
|
-
get: function get() {
|
|
690
|
-
return _presenter.Timer;
|
|
691
|
-
}
|
|
692
|
-
});
|
|
693
|
-
Object.defineProperty(exports, "TimerService", {
|
|
694
|
-
enumerable: true,
|
|
695
|
-
get: function get() {
|
|
696
|
-
return _TimerService.TimerService;
|
|
697
|
-
}
|
|
698
|
-
});
|
|
699
|
-
Object.defineProperty(exports, "UndecoratedQuizEntryEdit", {
|
|
700
|
-
enumerable: true,
|
|
701
|
-
get: function get() {
|
|
702
|
-
return _presenter2.UndecoratedQuizEntryEdit;
|
|
703
|
-
}
|
|
704
|
-
});
|
|
705
|
-
Object.defineProperty(exports, "addError", {
|
|
706
|
-
enumerable: true,
|
|
707
|
-
get: function get() {
|
|
708
|
-
return _alerts.addError;
|
|
709
|
-
}
|
|
710
|
-
});
|
|
711
|
-
Object.defineProperty(exports, "addInfo", {
|
|
712
|
-
enumerable: true,
|
|
713
|
-
get: function get() {
|
|
714
|
-
return _alerts.addInfo;
|
|
715
|
-
}
|
|
716
|
-
});
|
|
717
|
-
Object.defineProperty(exports, "addSuccess", {
|
|
718
|
-
enumerable: true,
|
|
719
|
-
get: function get() {
|
|
720
|
-
return _alerts.addSuccess;
|
|
721
|
-
}
|
|
722
|
-
});
|
|
723
|
-
Object.defineProperty(exports, "applyComponentStyleOverride", {
|
|
724
|
-
enumerable: true,
|
|
725
|
-
get: function get() {
|
|
726
|
-
return _quizCommon.applyComponentStyleOverride;
|
|
727
|
-
}
|
|
728
|
-
});
|
|
729
|
-
Object.defineProperty(exports, "breakdownSeconds", {
|
|
730
|
-
enumerable: true,
|
|
731
|
-
get: function get() {
|
|
732
|
-
return _FormattedDuration.breakdownSeconds;
|
|
733
|
-
}
|
|
734
|
-
});
|
|
735
|
-
Object.defineProperty(exports, "changeFudgePoints", {
|
|
736
|
-
enumerable: true,
|
|
737
|
-
get: function get() {
|
|
738
|
-
return _modifications.changeFudgePoints;
|
|
739
|
-
}
|
|
740
|
-
});
|
|
741
|
-
Object.defineProperty(exports, "changeItemState", {
|
|
742
|
-
enumerable: true,
|
|
743
|
-
get: function get() {
|
|
744
|
-
return _modifications.changeItemState;
|
|
745
|
-
}
|
|
746
|
-
});
|
|
747
|
-
Object.defineProperty(exports, "changeQuizEntryPoints", {
|
|
748
|
-
enumerable: true,
|
|
749
|
-
get: function get() {
|
|
750
|
-
return _modifications.changeQuizEntryPoints;
|
|
751
|
-
}
|
|
752
|
-
});
|
|
753
|
-
Object.defineProperty(exports, "changeQuizEntryProperties", {
|
|
754
|
-
enumerable: true,
|
|
755
|
-
get: function get() {
|
|
756
|
-
return _modifications.changeQuizEntryProperties;
|
|
757
|
-
}
|
|
758
|
-
});
|
|
759
|
-
Object.defineProperty(exports, "changeQuizOutcomeAlignmentSetGuid", {
|
|
760
|
-
enumerable: true,
|
|
761
|
-
get: function get() {
|
|
762
|
-
return _modifications.changeQuizOutcomeAlignmentSetGuid;
|
|
763
|
-
}
|
|
764
|
-
});
|
|
765
|
-
Object.defineProperty(exports, "clearActiveQuizSession", {
|
|
766
|
-
enumerable: true,
|
|
767
|
-
get: function get() {
|
|
768
|
-
return _quizSessions3.clearActiveQuizSession;
|
|
769
|
-
}
|
|
770
|
-
});
|
|
771
|
-
Object.defineProperty(exports, "clearErrorsShowing", {
|
|
772
|
-
enumerable: true,
|
|
773
|
-
get: function get() {
|
|
774
|
-
return _errorsShowing.clearErrorsShowing;
|
|
775
|
-
}
|
|
776
|
-
});
|
|
777
|
-
Object.defineProperty(exports, "clearFocusCurrentSessionItem", {
|
|
778
|
-
enumerable: true,
|
|
779
|
-
get: function get() {
|
|
780
|
-
return takingActionCreators.clearFocusCurrentSessionItem;
|
|
781
|
-
}
|
|
782
|
-
});
|
|
783
|
-
Object.defineProperty(exports, "clearModifications", {
|
|
784
|
-
enumerable: true,
|
|
785
|
-
get: function get() {
|
|
786
|
-
return _modifications.clearModifications;
|
|
787
|
-
}
|
|
788
|
-
});
|
|
789
|
-
Object.defineProperty(exports, "closeModal", {
|
|
790
|
-
enumerable: true,
|
|
791
|
-
get: function get() {
|
|
792
|
-
return modalActions.closeModal;
|
|
793
|
-
}
|
|
794
|
-
});
|
|
795
|
-
Object.defineProperty(exports, "componentForItem", {
|
|
796
|
-
enumerable: true,
|
|
797
|
-
get: function get() {
|
|
798
|
-
return _componentForItem.componentForItem;
|
|
799
|
-
}
|
|
800
|
-
});
|
|
801
|
-
Object.defineProperty(exports, "config", {
|
|
802
|
-
enumerable: true,
|
|
803
|
-
get: function get() {
|
|
804
|
-
return _config.environment;
|
|
805
|
-
}
|
|
806
|
-
});
|
|
807
|
-
Object.defineProperty(exports, "confirmSessionStartPage", {
|
|
808
|
-
enumerable: true,
|
|
809
|
-
get: function get() {
|
|
810
|
-
return takingApiActions.confirmSessionStartPage;
|
|
811
|
-
}
|
|
812
|
-
});
|
|
813
|
-
Object.defineProperty(exports, "connect", {
|
|
814
|
-
enumerable: true,
|
|
815
|
-
get: function get() {
|
|
816
|
-
return _reactRedux.connect;
|
|
817
|
-
}
|
|
818
|
-
});
|
|
819
|
-
Object.defineProperty(exports, "createQuizEntryRegrade", {
|
|
820
|
-
enumerable: true,
|
|
821
|
-
get: function get() {
|
|
822
|
-
return _quizEntryRegrades.createQuizEntryRegrade;
|
|
823
|
-
}
|
|
824
|
-
});
|
|
825
|
-
Object.defineProperty(exports, "dismissGradeByQuestionBanner", {
|
|
826
|
-
enumerable: true,
|
|
827
|
-
get: function get() {
|
|
828
|
-
return _grading.dismissGradeByQuestionBanner;
|
|
829
|
-
}
|
|
830
|
-
});
|
|
831
|
-
Object.defineProperty(exports, "editResponse", {
|
|
832
|
-
enumerable: true,
|
|
833
|
-
get: function get() {
|
|
834
|
-
return takingActionCreators.editResponse;
|
|
835
|
-
}
|
|
836
|
-
});
|
|
837
|
-
Object.defineProperty(exports, "elementsForSelectors", {
|
|
838
|
-
enumerable: true,
|
|
839
|
-
get: function get() {
|
|
840
|
-
return _ElementsForSelectors.elementsForSelectors;
|
|
841
|
-
}
|
|
842
|
-
});
|
|
843
|
-
Object.defineProperty(exports, "ensureImagesLoaded", {
|
|
844
|
-
enumerable: true,
|
|
845
|
-
get: function get() {
|
|
846
|
-
return _printUtils.ensureImagesLoaded;
|
|
847
|
-
}
|
|
848
|
-
});
|
|
849
|
-
Object.defineProperty(exports, "ensureRCEContentIsLoaded", {
|
|
850
|
-
enumerable: true,
|
|
851
|
-
get: function get() {
|
|
852
|
-
return _rceChecker.ensureRCEContentIsLoaded;
|
|
853
|
-
}
|
|
854
|
-
});
|
|
855
|
-
Object.defineProperty(exports, "featureOn", {
|
|
856
|
-
enumerable: true,
|
|
857
|
-
get: function get() {
|
|
858
|
-
return _featureCheck.featureOn;
|
|
859
|
-
}
|
|
860
|
-
});
|
|
861
|
-
Object.defineProperty(exports, "fileUploading", {
|
|
862
|
-
enumerable: true,
|
|
863
|
-
get: function get() {
|
|
864
|
-
return _calls.fileUploading;
|
|
865
|
-
}
|
|
866
|
-
});
|
|
867
|
-
Object.defineProperty(exports, "formatTime", {
|
|
868
|
-
enumerable: true,
|
|
869
|
-
get: function get() {
|
|
870
|
-
return _formatTimespan.formatTime;
|
|
871
|
-
}
|
|
872
|
-
});
|
|
873
|
-
Object.defineProperty(exports, "formatTimespan", {
|
|
874
|
-
enumerable: true,
|
|
875
|
-
get: function get() {
|
|
876
|
-
return _formatTimespan.formatTimespan;
|
|
877
|
-
}
|
|
878
|
-
});
|
|
879
|
-
Object.defineProperty(exports, "generateDisplayPositions", {
|
|
880
|
-
enumerable: true,
|
|
881
|
-
get: function get() {
|
|
882
|
-
return _generateDisplayPositions.generateDisplayPositions;
|
|
883
|
-
}
|
|
884
|
-
});
|
|
885
|
-
Object.defineProperty(exports, "generateImportModalId", {
|
|
886
|
-
enumerable: true,
|
|
887
|
-
get: function get() {
|
|
888
|
-
return _ImportModal.generateImportModalId;
|
|
889
|
-
}
|
|
890
|
-
});
|
|
891
|
-
Object.defineProperty(exports, "getActiveCalculatorId", {
|
|
892
|
-
enumerable: true,
|
|
893
|
-
get: function get() {
|
|
894
|
-
return _ui2.getActiveCalculatorId;
|
|
895
|
-
}
|
|
896
|
-
});
|
|
897
|
-
Object.defineProperty(exports, "getActiveQuiz", {
|
|
898
|
-
enumerable: true,
|
|
899
|
-
get: function get() {
|
|
900
|
-
return _quizzes3.getActiveQuiz;
|
|
901
|
-
}
|
|
902
|
-
});
|
|
903
|
-
Object.defineProperty(exports, "getActiveQuizId", {
|
|
904
|
-
enumerable: true,
|
|
905
|
-
get: function get() {
|
|
906
|
-
return _quizzes3.getActiveQuizId;
|
|
907
|
-
}
|
|
908
|
-
});
|
|
909
|
-
Object.defineProperty(exports, "getActiveQuizSession", {
|
|
910
|
-
enumerable: true,
|
|
911
|
-
get: function get() {
|
|
912
|
-
return _quizSessions4.getActiveQuizSession;
|
|
913
|
-
}
|
|
914
|
-
});
|
|
915
|
-
Object.defineProperty(exports, "getActiveTheme", {
|
|
916
|
-
enumerable: true,
|
|
917
|
-
get: function get() {
|
|
918
|
-
return _quizCommon.getActiveTheme;
|
|
919
|
-
}
|
|
920
|
-
});
|
|
921
|
-
Object.defineProperty(exports, "getBacktrackingIsAllowed", {
|
|
922
|
-
enumerable: true,
|
|
923
|
-
get: function get() {
|
|
924
|
-
return _quizSessions4.getBacktrackingIsAllowed;
|
|
925
|
-
}
|
|
926
|
-
});
|
|
927
|
-
Object.defineProperty(exports, "getClientIpAddress", {
|
|
928
|
-
enumerable: true,
|
|
929
|
-
get: function get() {
|
|
930
|
-
return _getClientIpAddress.getClientIpAddress;
|
|
931
|
-
}
|
|
932
|
-
});
|
|
933
|
-
Object.defineProperty(exports, "getExistingQuiz", {
|
|
934
|
-
enumerable: true,
|
|
935
|
-
get: function get() {
|
|
936
|
-
return _quizzes2.getExistingQuiz;
|
|
937
|
-
}
|
|
938
|
-
});
|
|
939
|
-
Object.defineProperty(exports, "getGradingSessionItemResults", {
|
|
940
|
-
enumerable: true,
|
|
941
|
-
get: function get() {
|
|
942
|
-
return _sessionItemResults.getGradingSessionItemResults;
|
|
943
|
-
}
|
|
944
|
-
});
|
|
945
|
-
Object.defineProperty(exports, "getGradingSessionItems", {
|
|
946
|
-
enumerable: true,
|
|
947
|
-
get: function get() {
|
|
948
|
-
return _sessionItems.getGradingSessionItems;
|
|
949
|
-
}
|
|
950
|
-
});
|
|
951
|
-
Object.defineProperty(exports, "getItem", {
|
|
952
|
-
enumerable: true,
|
|
953
|
-
get: function get() {
|
|
954
|
-
return _items.getItem;
|
|
955
|
-
}
|
|
956
|
-
});
|
|
957
|
-
Object.defineProperty(exports, "getItemById", {
|
|
958
|
-
enumerable: true,
|
|
959
|
-
get: function get() {
|
|
960
|
-
return _items2.getItemById;
|
|
961
|
-
}
|
|
962
|
-
});
|
|
963
|
-
Object.defineProperty(exports, "getQuizById", {
|
|
964
|
-
enumerable: true,
|
|
965
|
-
get: function get() {
|
|
966
|
-
return _quizzes3.getQuizById;
|
|
967
|
-
}
|
|
968
|
-
});
|
|
969
|
-
Object.defineProperty(exports, "getQuizEntriesByQuizId", {
|
|
970
|
-
enumerable: true,
|
|
971
|
-
get: function get() {
|
|
972
|
-
return _quizzes3.getQuizEntriesByQuizId;
|
|
973
|
-
}
|
|
974
|
-
});
|
|
975
|
-
Object.defineProperty(exports, "getQuizEntry", {
|
|
976
|
-
enumerable: true,
|
|
977
|
-
get: function get() {
|
|
978
|
-
return _quizEntries.getQuizEntry;
|
|
979
|
-
}
|
|
980
|
-
});
|
|
981
|
-
Object.defineProperty(exports, "getQuizEntryById", {
|
|
982
|
-
enumerable: true,
|
|
983
|
-
get: function get() {
|
|
984
|
-
return _quizzes3.getQuizEntryById;
|
|
985
|
-
}
|
|
986
|
-
});
|
|
987
|
-
Object.defineProperty(exports, "getQuizSession", {
|
|
988
|
-
enumerable: true,
|
|
989
|
-
get: function get() {
|
|
990
|
-
return _quizSessions2.getQuizSession;
|
|
991
|
-
}
|
|
992
|
-
});
|
|
993
|
-
Object.defineProperty(exports, "getQuizSessionById", {
|
|
994
|
-
enumerable: true,
|
|
995
|
-
get: function get() {
|
|
996
|
-
return _quizSessions4.getQuizSessionById;
|
|
997
|
-
}
|
|
998
|
-
});
|
|
999
|
-
Object.defineProperty(exports, "getQuizSessionEvents", {
|
|
1000
|
-
enumerable: true,
|
|
1001
|
-
get: function get() {
|
|
1002
|
-
return _quizSessionEvents.getQuizSessionEvents;
|
|
1003
|
-
}
|
|
1004
|
-
});
|
|
1005
|
-
Object.defineProperty(exports, "getQuizSessions", {
|
|
1006
|
-
enumerable: true,
|
|
1007
|
-
get: function get() {
|
|
1008
|
-
return _quizSessions2.getQuizSessions;
|
|
1009
|
-
}
|
|
1010
|
-
});
|
|
1011
|
-
Object.defineProperty(exports, "getRCEError", {
|
|
1012
|
-
enumerable: true,
|
|
1013
|
-
get: function get() {
|
|
1014
|
-
return _rce2.getRCEError;
|
|
1015
|
-
}
|
|
1016
|
-
});
|
|
1017
|
-
Object.defineProperty(exports, "getResponseDataByPosition", {
|
|
1018
|
-
enumerable: true,
|
|
1019
|
-
get: function get() {
|
|
1020
|
-
return _taking3.getResponseDataByPosition;
|
|
1021
|
-
}
|
|
1022
|
-
});
|
|
1023
|
-
Object.defineProperty(exports, "getResultInfo", {
|
|
1024
|
-
enumerable: true,
|
|
1025
|
-
get: function get() {
|
|
1026
|
-
return _quizSessions3.getResultInfo;
|
|
1027
|
-
}
|
|
1028
|
-
});
|
|
1029
|
-
Object.defineProperty(exports, "getSessionItems", {
|
|
1030
|
-
enumerable: true,
|
|
1031
|
-
get: function get() {
|
|
1032
|
-
return _quizSessions3.getSessionItems;
|
|
1033
|
-
}
|
|
1034
|
-
});
|
|
1035
|
-
Object.defineProperty(exports, "getThemeByKey", {
|
|
1036
|
-
enumerable: true,
|
|
1037
|
-
get: function get() {
|
|
1038
|
-
return _quizCommon.getThemeByKey;
|
|
1039
|
-
}
|
|
1040
|
-
});
|
|
1041
|
-
Object.defineProperty(exports, "getTimerData", {
|
|
1042
|
-
enumerable: true,
|
|
1043
|
-
get: function get() {
|
|
1044
|
-
return _taking3.getTimerData;
|
|
1045
|
-
}
|
|
1046
|
-
});
|
|
1047
|
-
Object.defineProperty(exports, "hideError", {
|
|
1048
|
-
enumerable: true,
|
|
1049
|
-
get: function get() {
|
|
1050
|
-
return _errorsShowing.hideError;
|
|
1051
|
-
}
|
|
1052
|
-
});
|
|
1053
|
-
Object.defineProperty(exports, "httpHeaders", {
|
|
1054
|
-
enumerable: true,
|
|
1055
|
-
get: function get() {
|
|
1056
|
-
return _httpHeaders.httpHeaders;
|
|
1057
|
-
}
|
|
1058
|
-
});
|
|
1059
|
-
Object.defineProperty(exports, "interactionFileUpload", {
|
|
1060
|
-
enumerable: true,
|
|
1061
|
-
get: function get() {
|
|
1062
|
-
return _quizzes.interactionFileUpload;
|
|
1063
|
-
}
|
|
1064
|
-
});
|
|
1065
|
-
Object.defineProperty(exports, "isActiveQuizWorkingInstanceOneQuestionAtATime", {
|
|
1066
|
-
enumerable: true,
|
|
1067
|
-
get: function get() {
|
|
1068
|
-
return _quizzes3.isActiveQuizWorkingInstanceOneQuestionAtATime;
|
|
1069
|
-
}
|
|
1070
|
-
});
|
|
1071
|
-
Object.defineProperty(exports, "isOneQuestionAtATime", {
|
|
1072
|
-
enumerable: true,
|
|
1073
|
-
get: function get() {
|
|
1074
|
-
return _quizSessions4.isOneQuestionAtATime;
|
|
1075
|
-
}
|
|
1076
|
-
});
|
|
1077
|
-
Object.defineProperty(exports, "isTimeUp", {
|
|
1078
|
-
enumerable: true,
|
|
1079
|
-
get: function get() {
|
|
1080
|
-
return _taking3.isTimeUp;
|
|
1081
|
-
}
|
|
1082
|
-
});
|
|
1083
|
-
Object.defineProperty(exports, "makeEditable", {
|
|
1084
|
-
enumerable: true,
|
|
1085
|
-
get: function get() {
|
|
1086
|
-
return _makeEditable.makeEditable;
|
|
1087
|
-
}
|
|
1088
|
-
});
|
|
1089
|
-
Object.defineProperty(exports, "makeScrollable", {
|
|
1090
|
-
enumerable: true,
|
|
1091
|
-
get: function get() {
|
|
1092
|
-
return _makeScrollable.makeScrollable;
|
|
1093
|
-
}
|
|
1094
|
-
});
|
|
1095
|
-
exports.modalActions = void 0;
|
|
1096
|
-
Object.defineProperty(exports, "moveQuizEntry", {
|
|
1097
|
-
enumerable: true,
|
|
1098
|
-
get: function get() {
|
|
1099
|
-
return _quizEntries.moveQuizEntry;
|
|
1100
|
-
}
|
|
1101
|
-
});
|
|
1102
|
-
Object.defineProperty(exports, "moveTemporaryQuizEntry", {
|
|
1103
|
-
enumerable: true,
|
|
1104
|
-
get: function get() {
|
|
1105
|
-
return _modifications.moveTemporaryQuizEntry;
|
|
1106
|
-
}
|
|
1107
|
-
});
|
|
1108
|
-
Object.defineProperty(exports, "newActiveQuizSession", {
|
|
1109
|
-
enumerable: true,
|
|
1110
|
-
get: function get() {
|
|
1111
|
-
return _quizSessions3.newActiveQuizSession;
|
|
1112
|
-
}
|
|
1113
|
-
});
|
|
1114
|
-
Object.defineProperty(exports, "newHoverPosition", {
|
|
1115
|
-
enumerable: true,
|
|
1116
|
-
get: function get() {
|
|
1117
|
-
return _dragAndDrop.newHoverPosition;
|
|
1118
|
-
}
|
|
1119
|
-
});
|
|
1120
|
-
Object.defineProperty(exports, "nextQuestion", {
|
|
1121
|
-
enumerable: true,
|
|
1122
|
-
get: function get() {
|
|
1123
|
-
return takingApiActions.nextQuestion;
|
|
1124
|
-
}
|
|
1125
|
-
});
|
|
1126
|
-
Object.defineProperty(exports, "onPhone", {
|
|
1127
|
-
enumerable: true,
|
|
1128
|
-
get: function get() {
|
|
1129
|
-
return _windowChecks.onPhone;
|
|
1130
|
-
}
|
|
1131
|
-
});
|
|
1132
|
-
Object.defineProperty(exports, "openModal", {
|
|
1133
|
-
enumerable: true,
|
|
1134
|
-
get: function get() {
|
|
1135
|
-
return modalActions.openModal;
|
|
1136
|
-
}
|
|
1137
|
-
});
|
|
1138
|
-
Object.defineProperty(exports, "pinSessionItem", {
|
|
1139
|
-
enumerable: true,
|
|
1140
|
-
get: function get() {
|
|
1141
|
-
return _quizSessions.pinSessionItem;
|
|
1142
|
-
}
|
|
1143
|
-
});
|
|
1144
|
-
Object.defineProperty(exports, "postQuizSessionResults", {
|
|
1145
|
-
enumerable: true,
|
|
1146
|
-
get: function get() {
|
|
1147
|
-
return _updateResults.postQuizSessionResults;
|
|
1148
|
-
}
|
|
1149
|
-
});
|
|
1150
|
-
Object.defineProperty(exports, "postToParent", {
|
|
1151
|
-
enumerable: true,
|
|
1152
|
-
get: function get() {
|
|
1153
|
-
return _postMessage.postToParent;
|
|
1154
|
-
}
|
|
1155
|
-
});
|
|
1156
|
-
Object.defineProperty(exports, "previewResponse", {
|
|
1157
|
-
enumerable: true,
|
|
1158
|
-
get: function get() {
|
|
1159
|
-
return takingActionCreators.previewResponse;
|
|
1160
|
-
}
|
|
1161
|
-
});
|
|
1162
|
-
Object.defineProperty(exports, "previousQuestion", {
|
|
1163
|
-
enumerable: true,
|
|
1164
|
-
get: function get() {
|
|
1165
|
-
return takingActionCreators.previousQuestion;
|
|
1166
|
-
}
|
|
1167
|
-
});
|
|
1168
|
-
Object.defineProperty(exports, "printWithCss", {
|
|
1169
|
-
enumerable: true,
|
|
1170
|
-
get: function get() {
|
|
1171
|
-
return _printUtils.printWithCss;
|
|
1172
|
-
}
|
|
1173
|
-
});
|
|
1174
|
-
Object.defineProperty(exports, "propsForInteractionEdit", {
|
|
1175
|
-
enumerable: true,
|
|
1176
|
-
get: function get() {
|
|
1177
|
-
return _interactionTypePropsHelper.propsForInteractionEdit;
|
|
1178
|
-
}
|
|
1179
|
-
});
|
|
1180
|
-
Object.defineProperty(exports, "quizBuildingSession", {
|
|
1181
|
-
enumerable: true,
|
|
1182
|
-
get: function get() {
|
|
1183
|
-
return _quizzes.quizBuildingSession;
|
|
1184
|
-
}
|
|
1185
|
-
});
|
|
1186
|
-
Object.defineProperty(exports, "removeAlert", {
|
|
1187
|
-
enumerable: true,
|
|
1188
|
-
get: function get() {
|
|
1189
|
-
return _alerts.removeAlert;
|
|
1190
|
-
}
|
|
1191
|
-
});
|
|
1192
|
-
Object.defineProperty(exports, "reportRCEEvent", {
|
|
1193
|
-
enumerable: true,
|
|
1194
|
-
get: function get() {
|
|
1195
|
-
return _rce.reportRCEEvent;
|
|
1196
|
-
}
|
|
1197
|
-
});
|
|
1198
|
-
Object.defineProperty(exports, "saveQuizChange", {
|
|
1199
|
-
enumerable: true,
|
|
1200
|
-
get: function get() {
|
|
1201
|
-
return _quizzes.saveQuizChange;
|
|
1202
|
-
}
|
|
1203
|
-
});
|
|
1204
|
-
Object.defineProperty(exports, "screenreaderNotification", {
|
|
1205
|
-
enumerable: true,
|
|
1206
|
-
get: function get() {
|
|
1207
|
-
return _alerts.screenreaderNotification;
|
|
1208
|
-
}
|
|
1209
|
-
});
|
|
1210
|
-
Object.defineProperty(exports, "scrollToItem", {
|
|
1211
|
-
enumerable: true,
|
|
1212
|
-
get: function get() {
|
|
1213
|
-
return _scrolling.scrollToItem;
|
|
1214
|
-
}
|
|
1215
|
-
});
|
|
1216
|
-
Object.defineProperty(exports, "sessionItemResultsModification", {
|
|
1217
|
-
enumerable: true,
|
|
1218
|
-
get: function get() {
|
|
1219
|
-
return _modifications.sessionItemResultsModification;
|
|
1220
|
-
}
|
|
1221
|
-
});
|
|
1222
|
-
Object.defineProperty(exports, "sessionStore", {
|
|
1223
|
-
enumerable: true,
|
|
1224
|
-
get: function get() {
|
|
1225
|
-
return _sessionStore.sessionStore;
|
|
1226
|
-
}
|
|
1227
|
-
});
|
|
1228
|
-
Object.defineProperty(exports, "set", {
|
|
1229
|
-
enumerable: true,
|
|
1230
|
-
get: function get() {
|
|
1231
|
-
return _ui.set;
|
|
1232
|
-
}
|
|
1233
|
-
});
|
|
1234
|
-
Object.defineProperty(exports, "setActiveCalculatorId", {
|
|
1235
|
-
enumerable: true,
|
|
1236
|
-
get: function get() {
|
|
1237
|
-
return _ui.setActiveCalculatorId;
|
|
1238
|
-
}
|
|
1239
|
-
});
|
|
1240
|
-
Object.defineProperty(exports, "setActiveItem", {
|
|
1241
|
-
enumerable: true,
|
|
1242
|
-
get: function get() {
|
|
1243
|
-
return _grading.setActiveItem;
|
|
1244
|
-
}
|
|
1245
|
-
});
|
|
1246
|
-
Object.defineProperty(exports, "setActiveTheme", {
|
|
1247
|
-
enumerable: true,
|
|
1248
|
-
get: function get() {
|
|
1249
|
-
return _quizCommon.setActiveTheme;
|
|
1250
|
-
}
|
|
1251
|
-
});
|
|
1252
|
-
Object.defineProperty(exports, "setAllowClearMCSelection", {
|
|
1253
|
-
enumerable: true,
|
|
1254
|
-
get: function get() {
|
|
1255
|
-
return _quizzes.setAllowClearMCSelection;
|
|
1256
|
-
}
|
|
1257
|
-
});
|
|
1258
|
-
Object.defineProperty(exports, "setBacktracking", {
|
|
1259
|
-
enumerable: true,
|
|
1260
|
-
get: function get() {
|
|
1261
|
-
return _quizzes.setBacktracking;
|
|
1262
|
-
}
|
|
1263
|
-
});
|
|
1264
|
-
Object.defineProperty(exports, "setCalculatorType", {
|
|
1265
|
-
enumerable: true,
|
|
1266
|
-
get: function get() {
|
|
1267
|
-
return _quizzes.setCalculatorType;
|
|
1268
|
-
}
|
|
1269
|
-
});
|
|
1270
|
-
Object.defineProperty(exports, "setChoiceElimination", {
|
|
1271
|
-
enumerable: true,
|
|
1272
|
-
get: function get() {
|
|
1273
|
-
return _quizzes.setChoiceElimination;
|
|
1274
|
-
}
|
|
1275
|
-
});
|
|
1276
|
-
Object.defineProperty(exports, "setCurrentSessionItemPosition", {
|
|
1277
|
-
enumerable: true,
|
|
1278
|
-
get: function get() {
|
|
1279
|
-
return takingActionCreators.setCurrentSessionItemPosition;
|
|
1280
|
-
}
|
|
1281
|
-
});
|
|
1282
|
-
Object.defineProperty(exports, "setFakeStore", {
|
|
1283
|
-
enumerable: true,
|
|
1284
|
-
get: function get() {
|
|
1285
|
-
return _reduxStore.setFakeStore;
|
|
1286
|
-
}
|
|
1287
|
-
});
|
|
1288
|
-
Object.defineProperty(exports, "setFeatures", {
|
|
1289
|
-
enumerable: true,
|
|
1290
|
-
get: function get() {
|
|
1291
|
-
return _featureCheck.setFeatures;
|
|
1292
|
-
}
|
|
1293
|
-
});
|
|
1294
|
-
Object.defineProperty(exports, "setFilterIpAddress", {
|
|
1295
|
-
enumerable: true,
|
|
1296
|
-
get: function get() {
|
|
1297
|
-
return _quizzes.setFilterIpAddress;
|
|
1298
|
-
}
|
|
1299
|
-
});
|
|
1300
|
-
Object.defineProperty(exports, "setFocusTitleAndInstructions", {
|
|
1301
|
-
enumerable: true,
|
|
1302
|
-
get: function get() {
|
|
1303
|
-
return takingActionCreators.setFocusTitleAndInstructions;
|
|
1304
|
-
}
|
|
1305
|
-
});
|
|
1306
|
-
Object.defineProperty(exports, "setGradeByQuestionEnabled", {
|
|
1307
|
-
enumerable: true,
|
|
1308
|
-
get: function get() {
|
|
1309
|
-
return _grading.setGradeByQuestionEnabled;
|
|
1310
|
-
}
|
|
1311
|
-
});
|
|
1312
|
-
Object.defineProperty(exports, "setIpFiltersApi", {
|
|
1313
|
-
enumerable: true,
|
|
1314
|
-
get: function get() {
|
|
1315
|
-
return _quizzes.setIpFiltersApi;
|
|
1316
|
-
}
|
|
1317
|
-
});
|
|
1318
|
-
Object.defineProperty(exports, "setIpFiltersUi", {
|
|
1319
|
-
enumerable: true,
|
|
1320
|
-
get: function get() {
|
|
1321
|
-
return _quizzes.setIpFiltersUi;
|
|
1322
|
-
}
|
|
1323
|
-
});
|
|
1324
|
-
Object.defineProperty(exports, "setOneAtATimeType", {
|
|
1325
|
-
enumerable: true,
|
|
1326
|
-
get: function get() {
|
|
1327
|
-
return _quizzes.setOneAtATimeType;
|
|
1328
|
-
}
|
|
1329
|
-
});
|
|
1330
|
-
Object.defineProperty(exports, "setQuizDefaultRceSettings", {
|
|
1331
|
-
enumerable: true,
|
|
1332
|
-
get: function get() {
|
|
1333
|
-
return _quizzes.setQuizDefaultRceSettings;
|
|
1334
|
-
}
|
|
1335
|
-
});
|
|
1336
|
-
Object.defineProperty(exports, "setQuizDetectMultipleSessions", {
|
|
1337
|
-
enumerable: true,
|
|
1338
|
-
get: function get() {
|
|
1339
|
-
return _quizzes.setQuizDetectMultipleSessions;
|
|
1340
|
-
}
|
|
1341
|
-
});
|
|
1342
|
-
Object.defineProperty(exports, "setQuizDisableDocumentAccess", {
|
|
1343
|
-
enumerable: true,
|
|
1344
|
-
get: function get() {
|
|
1345
|
-
return _quizzes.setQuizDisableDocumentAccess;
|
|
1346
|
-
}
|
|
1347
|
-
});
|
|
1348
|
-
Object.defineProperty(exports, "setQuizHasTimeLimit", {
|
|
1349
|
-
enumerable: true,
|
|
1350
|
-
get: function get() {
|
|
1351
|
-
return _quizzes.setQuizHasTimeLimit;
|
|
1352
|
-
}
|
|
1353
|
-
});
|
|
1354
|
-
Object.defineProperty(exports, "setQuizShuffleAnswers", {
|
|
1355
|
-
enumerable: true,
|
|
1356
|
-
get: function get() {
|
|
1357
|
-
return _quizzes.setQuizShuffleAnswers;
|
|
1358
|
-
}
|
|
1359
|
-
});
|
|
1360
|
-
Object.defineProperty(exports, "setQuizShuffleQuestions", {
|
|
1361
|
-
enumerable: true,
|
|
1362
|
-
get: function get() {
|
|
1363
|
-
return _quizzes.setQuizShuffleQuestions;
|
|
1364
|
-
}
|
|
1365
|
-
});
|
|
1366
|
-
Object.defineProperty(exports, "setRegradingPayload", {
|
|
1367
|
-
enumerable: true,
|
|
1368
|
-
get: function get() {
|
|
1369
|
-
return _regrading.setRegradingPayload;
|
|
1370
|
-
}
|
|
1371
|
-
});
|
|
1372
|
-
Object.defineProperty(exports, "setRequireStudentAccessCode", {
|
|
1373
|
-
enumerable: true,
|
|
1374
|
-
get: function get() {
|
|
1375
|
-
return _quizzes.setRequireStudentAccessCode;
|
|
1376
|
-
}
|
|
1377
|
-
});
|
|
1378
|
-
Object.defineProperty(exports, "setResultsFeedback", {
|
|
1379
|
-
enumerable: true,
|
|
1380
|
-
get: function get() {
|
|
1381
|
-
return _quizzes.setResultsFeedback;
|
|
1382
|
-
}
|
|
1383
|
-
});
|
|
1384
|
-
Object.defineProperty(exports, "setResultsFeedbackEnabled", {
|
|
1385
|
-
enumerable: true,
|
|
1386
|
-
get: function get() {
|
|
1387
|
-
return _quizzes.setResultsFeedbackEnabled;
|
|
1388
|
-
}
|
|
1389
|
-
});
|
|
1390
|
-
Object.defineProperty(exports, "setScoreReconciliation", {
|
|
1391
|
-
enumerable: true,
|
|
1392
|
-
get: function get() {
|
|
1393
|
-
return _regrading.setScoreReconciliation;
|
|
1394
|
-
}
|
|
1395
|
-
});
|
|
1396
|
-
Object.defineProperty(exports, "setSessionTimeLimitInSecondsApi", {
|
|
1397
|
-
enumerable: true,
|
|
1398
|
-
get: function get() {
|
|
1399
|
-
return _quizzes.setSessionTimeLimitInSecondsApi;
|
|
1400
|
-
}
|
|
1401
|
-
});
|
|
1402
|
-
Object.defineProperty(exports, "setSessionTimeLimitInSecondsUi", {
|
|
1403
|
-
enumerable: true,
|
|
1404
|
-
get: function get() {
|
|
1405
|
-
return _quizzes.setSessionTimeLimitInSecondsUi;
|
|
1406
|
-
}
|
|
1407
|
-
});
|
|
1408
|
-
Object.defineProperty(exports, "setStudentAccessCodeApi", {
|
|
1409
|
-
enumerable: true,
|
|
1410
|
-
get: function get() {
|
|
1411
|
-
return _quizzes.setStudentAccessCodeApi;
|
|
1412
|
-
}
|
|
1413
|
-
});
|
|
1414
|
-
Object.defineProperty(exports, "setStudentAccessCodeUi", {
|
|
1415
|
-
enumerable: true,
|
|
1416
|
-
get: function get() {
|
|
1417
|
-
return _quizzes.setStudentAccessCodeUi;
|
|
1418
|
-
}
|
|
1419
|
-
});
|
|
1420
|
-
Object.defineProperty(exports, "setThemeByKey", {
|
|
1421
|
-
enumerable: true,
|
|
1422
|
-
get: function get() {
|
|
1423
|
-
return _quizCommon.setThemeByKey;
|
|
1424
|
-
}
|
|
1425
|
-
});
|
|
1426
|
-
Object.defineProperty(exports, "showError", {
|
|
1427
|
-
enumerable: true,
|
|
1428
|
-
get: function get() {
|
|
1429
|
-
return _errorsShowing.showError;
|
|
1430
|
-
}
|
|
1431
|
-
});
|
|
1432
|
-
Object.defineProperty(exports, "startQuizExportJob", {
|
|
1433
|
-
enumerable: true,
|
|
1434
|
-
get: function get() {
|
|
1435
|
-
return _quizExport.startQuizExportJob;
|
|
1436
|
-
}
|
|
1437
|
-
});
|
|
1438
|
-
Object.defineProperty(exports, "store", {
|
|
1439
|
-
enumerable: true,
|
|
1440
|
-
get: function get() {
|
|
1441
|
-
return _reduxStore.store;
|
|
1442
|
-
}
|
|
1443
|
-
});
|
|
1444
|
-
Object.defineProperty(exports, "submitOutstandingQuizSession", {
|
|
1445
|
-
enumerable: true,
|
|
1446
|
-
get: function get() {
|
|
1447
|
-
return _quizSessions2.submitOutstandingQuizSession;
|
|
1448
|
-
}
|
|
1449
|
-
});
|
|
1450
|
-
Object.defineProperty(exports, "submitQuiz", {
|
|
1451
|
-
enumerable: true,
|
|
1452
|
-
get: function get() {
|
|
1453
|
-
return takingApiActions.submitQuiz;
|
|
1454
|
-
}
|
|
1455
|
-
});
|
|
1456
|
-
Object.defineProperty(exports, "submitStudentAccessCode", {
|
|
1457
|
-
enumerable: true,
|
|
1458
|
-
get: function get() {
|
|
1459
|
-
return takingApiActions.submitStudentAccessCode;
|
|
1460
|
-
}
|
|
1461
|
-
});
|
|
1462
|
-
exports.takingApiActions = exports.takingActionCreators = void 0;
|
|
1463
|
-
Object.defineProperty(exports, "toErrors", {
|
|
1464
|
-
enumerable: true,
|
|
1465
|
-
get: function get() {
|
|
1466
|
-
return _instUIMessages.toErrors;
|
|
1467
|
-
}
|
|
1468
|
-
});
|
|
1469
|
-
Object.defineProperty(exports, "toggleRegradingEditMode", {
|
|
1470
|
-
enumerable: true,
|
|
1471
|
-
get: function get() {
|
|
1472
|
-
return _regrading.toggleRegradingEditMode;
|
|
1473
|
-
}
|
|
1474
|
-
});
|
|
1475
|
-
Object.defineProperty(exports, "toggleSidebar", {
|
|
1476
|
-
enumerable: true,
|
|
1477
|
-
get: function get() {
|
|
1478
|
-
return _sidebar.toggleSidebar;
|
|
1479
|
-
}
|
|
1480
|
-
});
|
|
1481
|
-
Object.defineProperty(exports, "unsetFakeStore", {
|
|
1482
|
-
enumerable: true,
|
|
1483
|
-
get: function get() {
|
|
1484
|
-
return _reduxStore.unsetFakeStore;
|
|
1485
|
-
}
|
|
1486
|
-
});
|
|
1487
|
-
Object.defineProperty(exports, "unsetFeatures", {
|
|
1488
|
-
enumerable: true,
|
|
1489
|
-
get: function get() {
|
|
1490
|
-
return _featureCheck.unsetFeatures;
|
|
1491
|
-
}
|
|
1492
|
-
});
|
|
1493
|
-
Object.defineProperty(exports, "withStyleOverrides", {
|
|
1494
|
-
enumerable: true,
|
|
1495
|
-
get: function get() {
|
|
1496
|
-
return _quizCommon.withStyleOverrides;
|
|
1497
|
-
}
|
|
1498
|
-
});
|
|
1499
|
-
Object.defineProperty(exports, "withTestFeatures", {
|
|
1500
|
-
enumerable: true,
|
|
1501
|
-
get: function get() {
|
|
1502
|
-
return _featureCheck.withTestFeatures;
|
|
1503
|
-
}
|
|
1504
|
-
});
|
|
1505
|
-
var _SDKApp = require("./common/components/SDKApp");
|
|
1506
|
-
var _ModerateTable = require("./moderating/components/resources/ModerateTable");
|
|
1507
|
-
var _index = require("./common/components/layout/header/Calculator/index");
|
|
1508
|
-
var _presenter = require("./common/components/layout/header/Timer/presenter");
|
|
1509
|
-
var _index2 = require("./common/components/layout/header/HeaderMenuButton/index");
|
|
1510
|
-
var _Popover = require("./common/components/resources/quiz/AddContent/Popover");
|
|
1511
|
-
var _ReportList = require("./reporting/components/resources/ReportList");
|
|
1512
|
-
var _ReportCard = require("./reporting/components/resources/ReportCard");
|
|
1513
|
-
var _QuizAndItemAnalysis = require("./reporting/components/resources/QuizAndItemAnalysis");
|
|
1514
|
-
var _NewQuizAndItemAnalysis = require("./reporting/components/resources/NewQuizAndItemAnalysis");
|
|
1515
|
-
var _ReportCard2 = require("./reporting/components/resources/NewQuizAndItemAnalysis/ReportCard");
|
|
1516
|
-
var _index3 = require("./reporting/components/resources/StudentAnalysis/ReportCard/index");
|
|
1517
|
-
var _Legend = require("./reporting/components/charts/Legend");
|
|
1518
|
-
var _ActionButtons = require("./building/components/resources/ActionButtons");
|
|
1519
|
-
var _BuildingButtons = require("./building/components/layout/header/BuildingButtons");
|
|
1520
|
-
var _AccommodationsModal = require("./moderating/components/resources/AccommodationsModal");
|
|
1521
|
-
var _ExtraAttemptSettings = require("./moderating/components/resources/AccommodationsModal/ExtraAttemptSettings");
|
|
1522
|
-
var _ExtraTimeSettings = require("./moderating/components/resources/AccommodationsModal/ExtraTimeSettings");
|
|
1523
|
-
var _PreviewFrame = require("./common/components/PreviewFrame");
|
|
1524
|
-
var _SDKHeaderCalculator = require("./common/components/SDKHeaderCalculator");
|
|
1525
|
-
var _Spinner = require("./common/components/shared/spinner/Spinner");
|
|
1526
|
-
var _PrintTrigger = require("./common/components/shared/PrintTrigger");
|
|
1527
|
-
var _IfFeature = require("./common/components/shared/IfFeature");
|
|
1528
|
-
var _presenter2 = require("./building/components/resources/quizEntry/QuizEntryEdit/presenter");
|
|
1529
|
-
var _ResultStimulus = require("./common/components/resources/sessionItemResult/ResultStimulus");
|
|
1530
|
-
var _Stimulus = require("./common/components/layout/sidebar/Stimulus");
|
|
1531
|
-
var _Sidebar = require("./common/components/layout/sidebar/Sidebar");
|
|
1532
|
-
var _SidebarItem = require("./common/components/layout/sidebar/SidebarItem");
|
|
1533
|
-
var _Banks = require("./banks/components/Banks");
|
|
1534
|
-
var _Bank = require("./banks/components/Bank");
|
|
1535
|
-
var _BankEntry = require("./banks/components/BankEntry");
|
|
1536
|
-
var _SDKBuildingButtons = require("./building/components/layout/header/SDKBuildingButtons");
|
|
1537
|
-
var _Paginator = require("./common/components/shared/Paginator");
|
|
1538
|
-
var _SDKMenuButton = require("./common/components/SDKMenuButton");
|
|
1539
|
-
var _SDKTimer = require("./common/components/SDKTimer");
|
|
1540
|
-
var _SDKNavBar = require("./common/components/SDKNavBar");
|
|
1541
|
-
var _SecondaryNavBarButton = require("./common/components/layout/navbar/SecondaryNavBarButton");
|
|
1542
|
-
var _CentileDistribution = require("./reporting/components/charts/Distribution/CentileDistribution");
|
|
1543
|
-
var _OutcomeAnalysis = require("./reporting/components/resources/OutcomeAnalysis");
|
|
1544
|
-
var _PositionBox = require("./common/components/resources/positionBox/PositionBox");
|
|
1545
|
-
var _Pin = require("./common/components/Pin");
|
|
1546
|
-
var _SessionItemResult = require("./common/components/resources/sessionItemResult/SessionItemResult");
|
|
1547
|
-
var _Card = require("./common/components/shared/Card");
|
|
1548
|
-
var _CardContent = require("./common/components/shared/Card/CardContent");
|
|
1549
|
-
var _CardWrapper = require("./common/components/shared/Card/CardWrapper");
|
|
1550
|
-
var _Page = require("./common/components/layout/Page");
|
|
1551
|
-
var _BanksTray = require("./building/components/resources/BanksTray");
|
|
1552
|
-
var _Sidebar2 = require("./building/components/layout/Sidebar");
|
|
1553
|
-
var _DeleteStimulusModal = require("./building/components/resources/DeleteStimulusModal");
|
|
1554
|
-
var _ItemFeedbackModal = require("./building/components/resources/ItemFeedbackModal");
|
|
1555
|
-
var _MoveImmutableModal = require("./building/components/resources/MoveImmutableModal");
|
|
1556
|
-
var _Modal = require("./common/components/resources/quiz/AddContent/Modal");
|
|
1557
|
-
var _QTIImportModal = require("./building/components/QTIImportModal");
|
|
1558
|
-
var _ReturnButton = require("./common/components/shared/return_button/ReturnButton");
|
|
1559
|
-
var _dragAndDropUtils = require("./common/components/shared/drag_and_drop/dragAndDropUtils");
|
|
1560
|
-
var _Event = require("./moderating/components/events/Event");
|
|
1561
|
-
var _QuizInfo = require("./common/components/resources/quiz/info/QuizInfo");
|
|
1562
|
-
var _LearnosityCalculator = require("./common/components/LearnosityCalculator");
|
|
1563
|
-
var _Instructions = require("./building/components/resources/quiz/instructions/Instructions");
|
|
1564
|
-
var _Title = require("./building/components/resources/quiz/title/Title");
|
|
1565
|
-
var _QuizEntryShow = require("./building/components/resources/quizEntry/QuizEntryShow");
|
|
1566
|
-
var _StimulusShow = require("./common/components/resources/stimulus/StimulusShow");
|
|
1567
|
-
var _Header = require("./common/components/resources/quizSessionResult/Header");
|
|
1568
|
-
var _Info = require("./common/components/resources/quizSessionResult/Info");
|
|
1569
|
-
var _SessionItemResultsList = require("./common/components/resources/sessionItemResult/SessionItemResultsList");
|
|
1570
|
-
var _TimeUnitsInput = require("./common/components/shared/TimeUnitsInput");
|
|
1571
|
-
var _QuizEntry = require("./building/components/resources/quizEntry/QuizEntry");
|
|
1572
|
-
var _reactRedux = require("./common/react-redux");
|
|
1573
|
-
var _FormattedDuration = require("./common/components/shared/FormattedDuration");
|
|
1574
|
-
var _TagWrapper = _interopRequireDefault(require("./common/components/shared/TagWrapper"));
|
|
1575
|
-
var _RetryGradePassbackButton = require("./moderating/components/resources/RetryGradePassbackButton");
|
|
1576
|
-
var _GenericAsyncSearch = require("./common/components/shared/GenericAsyncSearch/GenericAsyncSearch");
|
|
1577
|
-
var _MaskedTextInput = require("./common/components/MaskedTextInput");
|
|
1578
|
-
var _AccessCodeTextInput = require("./common/components/AccessCodeTextInput");
|
|
1579
|
-
var _localStoreService = require("./common/util/localStoreService");
|
|
1580
|
-
var _config = require("./config");
|
|
1581
|
-
var _Fetcher = require("./common/util/Fetcher");
|
|
1582
|
-
var _httpHeaders = require("./common/util/httpHeaders");
|
|
1583
|
-
var _reduxStore = require("./reduxStore");
|
|
1584
|
-
var _featureCheck = require("./common/util/featureCheck");
|
|
1585
|
-
var _makeEditable = require("./common/components/shared/functionality/makeEditable");
|
|
1586
|
-
var _CustomPropTypes = require("./common/util/CustomPropTypes");
|
|
1587
|
-
var _componentForItem = require("./common/util/componentForItem");
|
|
1588
|
-
var _interactionTypePropsHelper = require("./common/util/interactionTypePropsHelper");
|
|
1589
|
-
var _generateDisplayPositions = require("./common/util/generateDisplayPositions");
|
|
1590
|
-
var _makeScrollable = require("./common/components/shared/functionality/makeScrollable");
|
|
1591
|
-
var _formatTimespan = require("./common/util/formatTimespan");
|
|
1592
|
-
var _ImportModal = require("./common/components/ImportModal");
|
|
1593
|
-
var _TimerService = require("./common/util/TimerService");
|
|
1594
|
-
var _TimeRecordingService = require("./common/util/TimeRecordingService");
|
|
1595
|
-
var _windowChecks = require("./common/util/windowChecks");
|
|
1596
|
-
var _instUIMessages = require("./common/util/instUIMessages");
|
|
1597
|
-
var _ElementsForSelectors = require("./common/util/ElementsForSelectors");
|
|
1598
|
-
var _sessionStore = require("./common/util/sessionStore");
|
|
1599
|
-
var _printUtils = require("./common/util/printUtils");
|
|
1600
|
-
var _rceChecker = require("./common/util/rceChecker");
|
|
1601
|
-
var _quizCommon = require("@instructure/quiz-common");
|
|
1602
|
-
var _getClientIpAddress = require("./common/util/getClientIpAddress");
|
|
1603
|
-
var _quizEntryRegrades = require("./grading/api/quizEntryRegrades");
|
|
1604
|
-
var _quizEntries = require("./building/api/quizEntries");
|
|
1605
|
-
var _items = require("./building/api/items");
|
|
1606
|
-
var _quizzes = require("./building/api/quizzes");
|
|
1607
|
-
var _quizzes2 = require("./common/api/quizzes");
|
|
1608
|
-
var takingApiActions = _interopRequireWildcard(require("./taking/api/taking"));
|
|
1609
|
-
exports.takingApiActions = takingApiActions;
|
|
1610
|
-
var _quizSessions = require("./common/api/quizSessions");
|
|
1611
|
-
var _updateResults = require("./grading/api/updateResults");
|
|
1612
|
-
var _quizSessions2 = require("./moderating/api/quizSessions");
|
|
1613
|
-
var _quizSessionEvents = require("./moderating/api/quizSessionEvents");
|
|
1614
|
-
var _alerts = require("./common/actions/alerts");
|
|
1615
|
-
var modalActions = _interopRequireWildcard(require("./common/actions/modal"));
|
|
1616
|
-
exports.modalActions = modalActions;
|
|
1617
|
-
var _grading = require("./common/actions/grading");
|
|
1618
|
-
var _regrading = require("./common/actions/regrading");
|
|
1619
|
-
var _errorsShowing = require("./common/actions/errorsShowing");
|
|
1620
|
-
var _modifications = require("./common/actions/modifications");
|
|
1621
|
-
var takingActionCreators = _interopRequireWildcard(require("./common/actions/taking"));
|
|
1622
|
-
exports.takingActionCreators = takingActionCreators;
|
|
1623
|
-
var _scrolling = require("./common/actions/scrolling");
|
|
1624
|
-
var _rce = require("./common/actions/rce");
|
|
1625
|
-
var _sidebar = require("./common/actions/sidebar");
|
|
1626
|
-
var _dragAndDrop = require("./common/actions/dragAndDrop");
|
|
1627
|
-
var _ui = require("./common/actions/ui");
|
|
1628
|
-
var _postMessage = require("./common/actions/postMessage");
|
|
1629
|
-
var _quizSessions3 = require("./common/actions/quizSessions");
|
|
1630
|
-
var _quizExport = require("./common/actions/quizExport");
|
|
1631
|
-
var _quizzes3 = require("./common/selectors/quizzes");
|
|
1632
|
-
var _items2 = require("./common/selectors/items");
|
|
1633
|
-
var _calls = require("./common/selectors/calls");
|
|
1634
|
-
var _taking3 = require("./common/selectors/taking");
|
|
1635
|
-
var _ui2 = require("./common/selectors/ui");
|
|
1636
|
-
var _rce2 = require("./common/selectors/rce");
|
|
1637
|
-
var _quizSessions4 = require("./common/selectors/quizSessions");
|
|
1638
|
-
var _sessionItems = require("./common/selectors/sessionItems");
|
|
1639
|
-
var _sessionItemResults = require("./common/selectors/sessionItemResults");
|
|
1640
|
-
var _records = require("./common/records");
|
|
1641
|
-
Object.keys(_records).forEach(function (key) {
|
|
1642
|
-
if (key === "default" || key === "__esModule") return;
|
|
1643
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1644
|
-
if (key in exports && exports[key] === _records[key]) return;
|
|
1645
|
-
Object.defineProperty(exports, key, {
|
|
1646
|
-
enumerable: true,
|
|
1647
|
-
get: function get() {
|
|
1648
|
-
return _records[key];
|
|
1649
|
-
}
|
|
1650
|
-
});
|
|
1651
|
-
});
|
|
1652
|
-
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); }
|
|
1653
|
-
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; }
|
|
1
|
+
/* eslint "import/newline-after-import": "warn" */ /**
|
|
2
|
+
*
|
|
3
|
+
* In g/356542 we tried importing takingApiActions from here, and it caused a weird karma issue.
|
|
4
|
+
* Nothing from this file should be imported from within quiz-core!
|
|
5
|
+
* These exports are for other packages to use.
|
|
6
|
+
* We should look into configuring an import/no-restricted-paths eslint rule to prevent this.
|
|
7
|
+
*/ // Components
|
|
8
|
+
export { SDKApp } from './common/components/SDKApp';
|
|
9
|
+
export { TimingAlerts } from './common/components/TimingAlerts';
|
|
10
|
+
export { ModerateTable } from './moderating/components/resources/ModerateTable';
|
|
11
|
+
export { Calculator } from './common/components/layout/header/Calculator/index';
|
|
12
|
+
export { Timer } from './common/components/layout/header/Timer/presenter';
|
|
13
|
+
export { HeaderMenuButton } from './common/components/layout/header/HeaderMenuButton/index';
|
|
14
|
+
export { AddContentPopover } from './common/components/resources/quiz/AddContent/Popover';
|
|
15
|
+
export { ReportList } from './reporting/components/resources/ReportList';
|
|
16
|
+
export { ReportCard } from './reporting/components/resources/ReportCard';
|
|
17
|
+
export { QuizAndItemAnalysis } from './reporting/components/resources/QuizAndItemAnalysis';
|
|
18
|
+
export { NewQuizAndItemAnalysis } from './reporting/components/resources/NewQuizAndItemAnalysis';
|
|
19
|
+
export { NewQuizAndItemAnalysisReportCard } from './reporting/components/resources/NewQuizAndItemAnalysis/ReportCard';
|
|
20
|
+
export { StudentAnalysisReportCard } from './reporting/components/resources/StudentAnalysis/ReportCard/index';
|
|
21
|
+
export { Legend } from './reporting/components/charts/Legend';
|
|
22
|
+
export { ActionButtons } from './building/components/resources/ActionButtons';
|
|
23
|
+
export { BuildingButtons } from './building/components/layout/header/BuildingButtons';
|
|
24
|
+
export { AccommodationModal } from './moderating/components/resources/AccommodationsModal';
|
|
25
|
+
export { ExtraAttemptSettings } from './moderating/components/resources/AccommodationsModal/ExtraAttemptSettings';
|
|
26
|
+
export { ExtraTimeSettings } from './moderating/components/resources/AccommodationsModal/ExtraTimeSettings';
|
|
27
|
+
export { ReduceAnswerChoicesSettings } from './moderating/components/resources/AccommodationsModal/ReduceAnswerChoicesSettings';
|
|
28
|
+
export { PreviewFrame } from './common/components/PreviewFrame';
|
|
29
|
+
export { SDKHeaderCalculator } from './common/components/SDKHeaderCalculator';
|
|
30
|
+
export { Spinner } from './common/components/shared/spinner/Spinner';
|
|
31
|
+
export { PrintTrigger } from './common/components/shared/PrintTrigger';
|
|
32
|
+
export { IfFeature } from './common/components/shared/IfFeature';
|
|
33
|
+
export { UndecoratedQuizEntryEdit } from './building/components/resources/quizEntry/QuizEntryEdit/presenter';
|
|
34
|
+
export { ResultStimulus } from './common/components/resources/sessionItemResult/ResultStimulus';
|
|
35
|
+
export { Stimulus as StimulusView } from './common/components/layout/sidebar/Stimulus';
|
|
36
|
+
export { Sidebar } from './common/components/layout/sidebar/Sidebar';
|
|
37
|
+
export { SidebarItem } from './common/components/layout/sidebar/SidebarItem';
|
|
38
|
+
export { Banks as BanksPage } from './banks/components/Banks';
|
|
39
|
+
export { Bank as BankPage } from './banks/components/Bank';
|
|
40
|
+
export { BankEntry as BankEntryPage } from './banks/components/BankEntry';
|
|
41
|
+
export { SDKBuildingButtons } from './building/components/layout/header/SDKBuildingButtons';
|
|
42
|
+
export { Paginator } from './common/components/shared/Paginator';
|
|
43
|
+
export { SDKMenuButton } from './common/components/SDKMenuButton';
|
|
44
|
+
export { SDKTimer } from './common/components/SDKTimer';
|
|
45
|
+
export { SDKNavBar } from './common/components/SDKNavBar';
|
|
46
|
+
export { SecondaryNavBarButton } from './common/components/layout/navbar/SecondaryNavBarButton';
|
|
47
|
+
export { CentileDistribution } from './reporting/components/charts/Distribution/CentileDistribution';
|
|
48
|
+
export { OutcomeAnalysis } from './reporting/components/resources/OutcomeAnalysis';
|
|
49
|
+
export { PositionBox } from './common/components/resources/positionBox/PositionBox';
|
|
50
|
+
export { Pin } from './common/components/Pin';
|
|
51
|
+
export { SessionItemResult as SessionItemResultView } from './common/components/resources/sessionItemResult/SessionItemResult';
|
|
52
|
+
export { Card } from './common/components/shared/Card';
|
|
53
|
+
export { CardContent } from './common/components/shared/Card/CardContent';
|
|
54
|
+
export { CardWrapper } from './common/components/shared/Card/CardWrapper';
|
|
55
|
+
export { Page } from './common/components/layout/Page';
|
|
56
|
+
export { BanksTray } from './building/components/resources/BanksTray';
|
|
57
|
+
export { BuildingSidebar } from './building/components/layout/Sidebar';
|
|
58
|
+
export { DeleteStimulusModal } from './building/components/resources/DeleteStimulusModal';
|
|
59
|
+
export { ItemFeedbackModal } from './building/components/resources/ItemFeedbackModal';
|
|
60
|
+
export { MoveImmutableModal } from './building/components/resources/MoveImmutableModal';
|
|
61
|
+
export { AddContentModal } from './common/components/resources/quiz/AddContent/Modal';
|
|
62
|
+
export { QTIImportModal } from './building/components/QTIImportModal';
|
|
63
|
+
export { ReturnButton } from './common/components/shared/return_button/ReturnButton';
|
|
64
|
+
export { DropTargetCreator } from './common/components/shared/drag_and_drop/dragAndDropUtils';
|
|
65
|
+
export { Event } from './moderating/components/events/Event';
|
|
66
|
+
export { QuizInfo } from './common/components/resources/quiz/info/QuizInfo';
|
|
67
|
+
export { LearnosityCalculator } from './common/components/LearnosityCalculator';
|
|
68
|
+
export { QuizInstructions } from './building/components/resources/quiz/instructions/Instructions';
|
|
69
|
+
export { QuizTitle } from './building/components/resources/quiz/title/Title';
|
|
70
|
+
export { QuizEntryShow } from './building/components/resources/quizEntry/QuizEntryShow';
|
|
71
|
+
export { StimulusShow } from './common/components/resources/stimulus/StimulusShow';
|
|
72
|
+
export { QuizSessionResultHeader } from './common/components/resources/quizSessionResult/Header';
|
|
73
|
+
export { Info as QuizSessionResultInfo } from './common/components/resources/quizSessionResult/Info';
|
|
74
|
+
export { SessionItemResultsList } from './common/components/resources/sessionItemResult/SessionItemResultsList';
|
|
75
|
+
export { TimeUnitsInput } from './common/components/shared/TimeUnitsInput';
|
|
76
|
+
export { QuizEntry as QuizEntryView } from './building/components/resources/quizEntry/QuizEntry';
|
|
77
|
+
export { Provider } from './common/react-redux';
|
|
78
|
+
export { FormattedTimer } from './common/components/shared/FormattedDuration';
|
|
79
|
+
export { default as TagWrapper } from './common/components/shared/TagWrapper';
|
|
80
|
+
export { RetryGradePassbackButton } from './moderating/components/resources/RetryGradePassbackButton';
|
|
81
|
+
export { GenericAsyncSearch } from './common/components/shared/GenericAsyncSearch/GenericAsyncSearch';
|
|
82
|
+
export { MaskedTextInput } from './common/components/MaskedTextInput';
|
|
83
|
+
export { AccessCodeTextInput } from './common/components/AccessCodeTextInput';
|
|
84
|
+
export { LocalStoreService } from './common/util/localStoreService';
|
|
85
|
+
export { default as Alerts } from './common/components/alerts/index';
|
|
86
|
+
// Utilities
|
|
87
|
+
export { environment as config } from './config';
|
|
88
|
+
export { Fetcher } from './common/util/Fetcher';
|
|
89
|
+
export { httpHeaders } from './common/util/httpHeaders';
|
|
90
|
+
export { store, setFakeStore, unsetFakeStore } from './reduxStore';
|
|
91
|
+
export { configureStore } from './configureStore';
|
|
92
|
+
export { setFeatures, unsetFeatures, featureOn, withTestFeatures } from './common/util/featureCheck';
|
|
93
|
+
export { makeEditable } from './common/components/shared/functionality/makeEditable';
|
|
94
|
+
export { CustomPropTypes } from './common/util/CustomPropTypes';
|
|
95
|
+
export { componentForItem } from './common/util/componentForItem';
|
|
96
|
+
export { propsForInteractionEdit } from './common/util/interactionTypePropsHelper';
|
|
97
|
+
export { generateDisplayPositions } from './common/util/generateDisplayPositions';
|
|
98
|
+
export { makeScrollable } from './common/components/shared/functionality/makeScrollable';
|
|
99
|
+
export { formatTimespan } from './common/util/formatTimespan';
|
|
100
|
+
export { generateImportModalId } from './common/components/ImportModal';
|
|
101
|
+
export { TimerService } from './common/util/TimerService';
|
|
102
|
+
export { TimeRecordingService } from './common/util/TimeRecordingService';
|
|
103
|
+
export { onPhone } from './common/util/windowChecks';
|
|
104
|
+
export { toErrors } from './common/util/instUIMessages';
|
|
105
|
+
export { elementsForSelectors } from './common/util/ElementsForSelectors';
|
|
106
|
+
export { formatTime } from './common/util/formatTimespan';
|
|
107
|
+
export { connect } from './common/react-redux';
|
|
108
|
+
export { breakdownSeconds, HOUR_IN_SECONDS, MINUTE_IN_SECONDS } from './common/components/shared/FormattedDuration';
|
|
109
|
+
export { sessionStore } from './common/util/sessionStore';
|
|
110
|
+
export { printWithCss, ensureImagesLoaded } from './common/util/printUtils';
|
|
111
|
+
export { ensureRCEContentIsLoaded } from './common/util/rceChecker';
|
|
112
|
+
export { useRemoteComponent } from './common/util/useRemoteComponent';
|
|
113
|
+
export { applyComponentStyleOverride, withStyleOverrides, getThemeByKey, setThemeByKey, getActiveTheme, setActiveTheme } from '@instructure/quiz-common';
|
|
114
|
+
export { getClientIpAddress } from './common/util/getClientIpAddress';
|
|
115
|
+
// APIs
|
|
116
|
+
export { createQuizEntryRegrade } from './grading/api/quizEntryRegrades';
|
|
117
|
+
export { getQuizEntry } from './building/api/quizEntries';
|
|
118
|
+
export { getItem, createBulkItems } from './building/api/items';
|
|
119
|
+
export { interactionFileUpload, setOneAtATimeType, quizBuildingSession, saveQuizChange, setBacktracking, setCalculatorType, setAllowClearMCSelection, setChoiceElimination, setFilterIpAddress, setIpFiltersApi, setIpFiltersUi, setQuizDefaultRceSettings, setQuizShuffleAnswers, setQuizDisableDocumentAccess, setQuizShuffleQuestions, setRequireStudentAccessCode, setStudentAccessCodeApi, setStudentAccessCodeUi, setQuizHasTimeLimit, setSessionTimeLimitInSecondsUi, setSessionTimeLimitInSecondsApi, setResultsFeedback, setResultsFeedbackEnabled, setQuizDetectMultipleSessions } from './building/api/quizzes';
|
|
120
|
+
export { getExistingQuiz } from './common/api/quizzes';
|
|
121
|
+
export { confirmSessionStartPage, submitStudentAccessCode, nextQuestion, submitQuiz } from './taking/api/taking';
|
|
122
|
+
export { pinSessionItem } from './common/api/quizSessions';
|
|
123
|
+
export { moveQuizEntry, createBulkQuizEntries } from './building/api/quizEntries';
|
|
124
|
+
export { postQuizSessionResults } from './grading/api/updateResults';
|
|
125
|
+
export { getQuizSession, submitOutstandingQuizSession, getQuizSessions } from './moderating/api/quizSessions';
|
|
126
|
+
export { getQuizSessionEvents } from './moderating/api/quizSessionEvents';
|
|
127
|
+
import * as takingApiActions from './taking/api/taking';
|
|
128
|
+
export { takingApiActions };
|
|
129
|
+
// Actions
|
|
130
|
+
export { addSuccess, addInfo, addError, screenreaderNotification, removeAlert } from './common/actions/alerts';
|
|
131
|
+
export { openModal, closeModal } from './common/actions/modal';
|
|
132
|
+
export { setGradeByQuestionEnabled, setActiveItem, dismissGradeByQuestionBanner } from './common/actions/grading';
|
|
133
|
+
export { setRegradingPayload, setScoreReconciliation, toggleRegradingEditMode } from './common/actions/regrading';
|
|
134
|
+
export { showError, hideError, clearErrorsShowing } from './common/actions/errorsShowing';
|
|
135
|
+
export { changeItemState, changeQuizEntryPoints, changeQuizEntryProperties, clearModifications, moveTemporaryQuizEntry, changeQuizOutcomeAlignmentSetGuid, changeFudgePoints, sessionItemResultsModification } from './common/actions/modifications';
|
|
136
|
+
export { previousQuestion, editResponse, previewResponse, setCurrentSessionItemPosition, clearFocusCurrentSessionItem, setFocusTitleAndInstructions } from './common/actions/taking';
|
|
137
|
+
export { scrollToItem } from './common/actions/scrolling';
|
|
138
|
+
export { reportRCEEvent } from './common/actions/rce';
|
|
139
|
+
export { toggleSidebar } from './common/actions/sidebar';
|
|
140
|
+
export { newHoverPosition } from './common/actions/dragAndDrop';
|
|
141
|
+
export { set, setActiveCalculatorId } from './common/actions/ui';
|
|
142
|
+
export { postToParent } from './common/actions/postMessage';
|
|
143
|
+
export { getResultInfo, newActiveQuizSession, clearActiveQuizSession } from './common/actions/quizSessions';
|
|
144
|
+
export { getSessionItems } from './common/actions/quizSessions';
|
|
145
|
+
export { startQuizExportJob } from './common/actions/quizExport';
|
|
146
|
+
import * as modalActions from './common/actions/modal';
|
|
147
|
+
export { modalActions };
|
|
148
|
+
import * as takingActionCreators from './common/actions/taking';
|
|
149
|
+
export { takingActionCreators };
|
|
150
|
+
// Selectors
|
|
151
|
+
export { getQuizById, getActiveQuizId, getQuizEntryById, getQuizEntriesByQuizId, isActiveQuizWorkingInstanceOneQuestionAtATime, getActiveQuiz } from './common/selectors/quizzes';
|
|
152
|
+
export { getItemById } from './common/selectors/items';
|
|
153
|
+
export { fileUploading } from './common/selectors/calls';
|
|
154
|
+
export { isTimeUp, getTimerData, getResponseDataByPosition } from './common/selectors/taking';
|
|
155
|
+
export { getActiveCalculatorId } from './common/selectors/ui';
|
|
156
|
+
export { getRCEError } from './common/selectors/rce';
|
|
157
|
+
export { getQuizSessionById, getActiveQuizSession, getBacktrackingIsAllowed, isOneQuestionAtATime } from './common/selectors/quizSessions';
|
|
158
|
+
export { getGradingSessionItems } from './common/selectors/sessionItems';
|
|
159
|
+
export { getGradingSessionItemResults } from './common/selectors/sessionItemResults';
|
|
160
|
+
// Records
|
|
161
|
+
export * from './common/records';
|