@instructure/quiz-core 22.11.0 → 22.11.1-rc.165

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