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