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