@instructure/canvas-rce 5.6.0-beta.0 → 5.6.1

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 (5430) hide show
  1. package/.mocharc.js +4 -2
  2. package/CHANGELOG.md +23 -1
  3. package/babel.config.cjs.js +24 -13
  4. package/babel.config.js +48 -29
  5. package/coverage/canvas-rce-jest.xml +3732 -1
  6. package/coverage/canvas-rce-junit.xml +389 -389
  7. package/es/canvasFileBrowser/FlashAlert.js +8 -5
  8. package/es/common/components/LoadMore.js +2 -1
  9. package/es/rce/KeyboardShortcutModal.js +10 -7
  10. package/es/rce/RCE.js +12 -6
  11. package/es/rce/RCEGlobals.js +62 -0
  12. package/es/rce/RCEWrapper.js +49 -19
  13. package/es/rce/RestoreAutoSaveModal.js +4 -3
  14. package/es/rce/contentInsertion.js +3 -1
  15. package/es/rce/initA11yChecker.js +0 -3
  16. package/es/rce/plugins/instructure_documents/components/Link.js +12 -8
  17. package/es/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  18. package/es/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  19. package/es/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  20. package/es/rce/plugins/instructure_equation/plugin.js +44 -87
  21. package/es/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  22. package/es/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  23. package/es/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  24. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  25. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  26. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  27. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  28. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  29. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  30. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  31. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  32. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  33. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  34. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  35. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/{useArrowKeys.js → useKeyMouseEvents.js} +82 -27
  36. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +53 -9
  37. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +10 -2
  38. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  39. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  40. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +67 -3
  41. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  42. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  43. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  44. package/es/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  45. package/es/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  46. package/es/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  47. package/es/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  48. package/es/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  49. package/es/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  50. package/es/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  51. package/es/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  52. package/es/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  53. package/es/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  54. package/es/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  55. package/es/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  56. package/es/rce/plugins/instructure_image/ImageList/index.js +1 -1
  57. package/es/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  58. package/es/rce/plugins/instructure_image/Images/index.js +1 -1
  59. package/es/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  60. package/es/rce/plugins/instructure_links/components/Link.js +47 -54
  61. package/es/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  62. package/es/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  63. package/es/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  64. package/es/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  65. package/es/rce/plugins/instructure_links/plugin.js +18 -3
  66. package/es/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  67. package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  68. package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  69. package/es/rce/plugins/shared/CanvasContentTray.js +90 -7
  70. package/es/rce/plugins/shared/ColorInput.js +4 -3
  71. package/es/rce/plugins/shared/ContentSelection.js +7 -1
  72. package/es/rce/plugins/shared/DimensionsInput/index.js +2 -2
  73. package/es/rce/plugins/shared/Filter.js +6 -5
  74. package/es/rce/plugins/shared/ImageOptionsForm.js +2 -2
  75. package/es/rce/plugins/shared/LinkDisplay.js +84 -0
  76. package/es/rce/plugins/shared/Upload/ComputerPanel.js +14 -12
  77. package/es/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  78. package/es/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  79. package/es/rce/plugins/shared/linkUtils.js +58 -0
  80. package/es/rce/plugins/shared/useDataUrl.js +14 -4
  81. package/es/rce/userOS.js +31 -0
  82. package/jest/jest-setup.js +1 -3
  83. package/jest.config.js +8 -4
  84. package/lib/canvasFileBrowser/FlashAlert.js +8 -5
  85. package/lib/common/components/LoadMore.js +2 -1
  86. package/lib/rce/KeyboardShortcutModal.js +10 -7
  87. package/lib/rce/RCE.js +12 -6
  88. package/lib/rce/RCEGlobals.js +62 -0
  89. package/lib/rce/RCEWrapper.js +49 -19
  90. package/lib/rce/RestoreAutoSaveModal.js +4 -3
  91. package/lib/rce/contentInsertion.js +3 -1
  92. package/lib/rce/initA11yChecker.js +0 -3
  93. package/lib/rce/plugins/instructure_documents/components/Link.js +12 -8
  94. package/lib/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  95. package/lib/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  96. package/lib/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  97. package/lib/rce/plugins/instructure_equation/plugin.js +44 -87
  98. package/lib/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  99. package/lib/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  100. package/lib/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  101. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  102. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  103. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  104. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  105. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  106. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  107. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  108. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  109. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  110. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  111. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  112. package/lib/{translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js → rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js} +82 -27
  113. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +53 -9
  114. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +10 -2
  115. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  116. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  117. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +67 -3
  118. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  119. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  120. package/lib/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  121. package/lib/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  122. package/lib/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  123. package/lib/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  124. package/lib/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  125. package/lib/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  126. package/lib/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  127. package/lib/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  128. package/lib/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  129. package/lib/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  130. package/lib/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  131. package/lib/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  132. package/lib/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  133. package/lib/rce/plugins/instructure_image/ImageList/index.js +1 -1
  134. package/lib/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  135. package/lib/rce/plugins/instructure_image/Images/index.js +1 -1
  136. package/lib/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  137. package/lib/rce/plugins/instructure_links/components/Link.js +47 -54
  138. package/lib/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  139. package/lib/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  140. package/lib/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  141. package/lib/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  142. package/lib/rce/plugins/instructure_links/plugin.js +18 -3
  143. package/lib/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  144. package/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  145. package/lib/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  146. package/lib/rce/plugins/shared/CanvasContentTray.js +90 -7
  147. package/lib/rce/plugins/shared/ColorInput.js +4 -3
  148. package/lib/rce/plugins/shared/ContentSelection.js +7 -1
  149. package/lib/rce/plugins/shared/DimensionsInput/index.js +2 -2
  150. package/lib/rce/plugins/shared/Filter.js +6 -5
  151. package/lib/rce/plugins/shared/ImageOptionsForm.js +2 -2
  152. package/lib/rce/plugins/shared/LinkDisplay.js +84 -0
  153. package/lib/rce/plugins/shared/Upload/ComputerPanel.js +14 -12
  154. package/lib/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  155. package/lib/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  156. package/lib/rce/plugins/shared/linkUtils.js +58 -0
  157. package/lib/rce/plugins/shared/useDataUrl.js +14 -4
  158. package/lib/rce/userOS.js +31 -0
  159. package/lib/translated/ar/modules/canvasFileBrowser/FlashAlert.js +8 -5
  160. package/lib/translated/ar/modules/common/components/LoadMore.js +2 -1
  161. package/lib/translated/ar/modules/rce/KeyboardShortcutModal.js +10 -7
  162. package/lib/translated/ar/modules/rce/RCE.js +12 -6
  163. package/lib/translated/ar/modules/rce/RCEGlobals.js +62 -0
  164. package/lib/translated/ar/modules/rce/RCEWrapper.js +49 -19
  165. package/lib/translated/ar/modules/rce/RestoreAutoSaveModal.js +4 -3
  166. package/lib/translated/ar/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  167. package/lib/translated/ar/modules/rce/__tests__/contentInsertion.test.js +6 -0
  168. package/lib/translated/ar/modules/rce/__tests__/userOS.test.js +68 -0
  169. package/lib/translated/ar/modules/rce/contentInsertion.js +3 -1
  170. package/lib/translated/ar/modules/rce/initA11yChecker.js +0 -3
  171. package/lib/translated/ar/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  172. package/lib/translated/ar/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  173. package/lib/translated/ar/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  174. package/lib/translated/ar/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  175. package/lib/translated/ar/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  176. package/lib/translated/ar/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  177. package/lib/translated/ar/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  178. package/lib/translated/ar/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  179. package/lib/translated/ar/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  180. package/lib/translated/ar/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  181. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  182. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  183. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  184. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  185. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  186. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  187. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  188. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  189. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  190. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  191. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  192. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  193. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  194. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  195. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  196. package/lib/{rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js → translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js} +82 -27
  197. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  198. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  199. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  200. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  201. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  202. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  203. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  204. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  205. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  206. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  207. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  208. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  209. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  210. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  211. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  212. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  213. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  214. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  215. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  216. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  217. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  218. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  219. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  220. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  221. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  222. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  223. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  224. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  225. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  226. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  227. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  228. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  229. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  230. package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  231. package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  232. package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  233. package/lib/translated/ar/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  234. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  235. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  236. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  237. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  238. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  239. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  240. package/lib/translated/ar/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  241. package/lib/translated/ar/modules/rce/plugins/instructure_links/plugin.js +18 -3
  242. package/lib/translated/ar/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  243. package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  244. package/lib/translated/ar/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  245. package/lib/translated/ar/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  246. package/lib/translated/ar/modules/rce/plugins/shared/ColorInput.js +4 -3
  247. package/lib/translated/ar/modules/rce/plugins/shared/ContentSelection.js +7 -1
  248. package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  249. package/lib/translated/ar/modules/rce/plugins/shared/Filter.js +6 -5
  250. package/lib/translated/ar/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  251. package/lib/translated/ar/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  252. package/lib/translated/ar/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  253. package/lib/translated/ar/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  254. package/lib/translated/ar/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  255. package/lib/translated/ar/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  256. package/lib/translated/ar/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  257. package/lib/translated/ar/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  258. package/lib/translated/ar/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  259. package/lib/translated/ar/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  260. package/lib/translated/ar/modules/rce/plugins/shared/linkUtils.js +58 -0
  261. package/lib/translated/ar/modules/rce/plugins/shared/useDataUrl.js +14 -4
  262. package/lib/translated/ar/modules/rce/userOS.js +31 -0
  263. package/lib/translated/ca/modules/canvasFileBrowser/FlashAlert.js +8 -5
  264. package/lib/translated/ca/modules/common/components/LoadMore.js +2 -1
  265. package/lib/translated/ca/modules/rce/KeyboardShortcutModal.js +10 -7
  266. package/lib/translated/ca/modules/rce/RCE.js +12 -6
  267. package/lib/translated/ca/modules/rce/RCEGlobals.js +62 -0
  268. package/lib/translated/ca/modules/rce/RCEWrapper.js +49 -19
  269. package/lib/translated/ca/modules/rce/RestoreAutoSaveModal.js +4 -3
  270. package/lib/translated/ca/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  271. package/lib/translated/ca/modules/rce/__tests__/contentInsertion.test.js +6 -0
  272. package/lib/translated/ca/modules/rce/__tests__/userOS.test.js +68 -0
  273. package/lib/translated/ca/modules/rce/contentInsertion.js +3 -1
  274. package/lib/translated/ca/modules/rce/initA11yChecker.js +0 -3
  275. package/lib/translated/ca/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  276. package/lib/translated/ca/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  277. package/lib/translated/ca/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  278. package/lib/translated/ca/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  279. package/lib/translated/ca/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  280. package/lib/translated/ca/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  281. package/lib/translated/ca/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  282. package/lib/translated/ca/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  283. package/lib/translated/ca/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  284. package/lib/translated/ca/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  285. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  286. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  287. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  288. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  289. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  290. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  291. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  292. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  293. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  294. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  295. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  296. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  297. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  298. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  299. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  300. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/{useArrowKeys.js → useKeyMouseEvents.js} +82 -27
  301. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  302. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  303. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  304. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  305. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  306. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  307. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  308. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  309. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  310. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  311. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  312. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  313. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  314. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  315. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  316. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  317. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  318. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  319. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  320. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  321. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  322. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  323. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  324. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  325. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  326. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  327. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  328. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  329. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  330. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  331. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  332. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  333. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  334. package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  335. package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  336. package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  337. package/lib/translated/ca/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  338. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  339. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  340. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  341. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  342. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  343. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  344. package/lib/translated/ca/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  345. package/lib/translated/ca/modules/rce/plugins/instructure_links/plugin.js +18 -3
  346. package/lib/translated/ca/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  347. package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  348. package/lib/translated/ca/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  349. package/lib/translated/ca/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  350. package/lib/translated/ca/modules/rce/plugins/shared/ColorInput.js +4 -3
  351. package/lib/translated/ca/modules/rce/plugins/shared/ContentSelection.js +7 -1
  352. package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  353. package/lib/translated/ca/modules/rce/plugins/shared/Filter.js +6 -5
  354. package/lib/translated/ca/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  355. package/lib/translated/ca/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  356. package/lib/translated/ca/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  357. package/lib/translated/ca/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  358. package/lib/translated/ca/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  359. package/lib/translated/ca/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  360. package/lib/translated/ca/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  361. package/lib/translated/ca/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  362. package/lib/translated/ca/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  363. package/lib/translated/ca/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  364. package/lib/translated/ca/modules/rce/plugins/shared/linkUtils.js +58 -0
  365. package/lib/translated/ca/modules/rce/plugins/shared/useDataUrl.js +14 -4
  366. package/lib/translated/ca/modules/rce/userOS.js +31 -0
  367. package/lib/translated/cy/modules/canvasFileBrowser/FlashAlert.js +8 -5
  368. package/lib/translated/cy/modules/common/components/LoadMore.js +2 -1
  369. package/lib/translated/cy/modules/rce/KeyboardShortcutModal.js +10 -7
  370. package/lib/translated/cy/modules/rce/RCE.js +12 -6
  371. package/lib/translated/cy/modules/rce/RCEGlobals.js +62 -0
  372. package/lib/translated/cy/modules/rce/RCEWrapper.js +49 -19
  373. package/lib/translated/cy/modules/rce/RestoreAutoSaveModal.js +4 -3
  374. package/lib/translated/cy/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  375. package/lib/translated/cy/modules/rce/__tests__/contentInsertion.test.js +6 -0
  376. package/lib/translated/cy/modules/rce/__tests__/userOS.test.js +68 -0
  377. package/lib/translated/cy/modules/rce/contentInsertion.js +3 -1
  378. package/lib/translated/cy/modules/rce/initA11yChecker.js +0 -3
  379. package/lib/translated/cy/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  380. package/lib/translated/cy/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  381. package/lib/translated/cy/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  382. package/lib/translated/cy/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  383. package/lib/translated/cy/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  384. package/lib/translated/cy/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  385. package/lib/translated/cy/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  386. package/lib/translated/cy/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  387. package/lib/translated/cy/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  388. package/lib/translated/cy/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  389. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  390. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  391. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  392. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  393. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  394. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  395. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  396. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  397. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  398. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  399. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  400. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  401. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  402. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  403. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  404. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  405. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  406. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  407. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  408. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  409. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  410. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  411. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  412. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  413. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  414. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  415. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  416. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  417. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  418. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  419. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  420. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  421. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  422. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  423. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  424. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  425. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  426. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  427. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  428. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  429. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  430. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  431. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  432. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  433. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  434. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  435. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  436. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  437. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  438. package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  439. package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  440. package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  441. package/lib/translated/cy/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  442. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  443. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  444. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  445. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  446. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  447. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  448. package/lib/translated/cy/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  449. package/lib/translated/cy/modules/rce/plugins/instructure_links/plugin.js +18 -3
  450. package/lib/translated/cy/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  451. package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  452. package/lib/translated/cy/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  453. package/lib/translated/cy/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  454. package/lib/translated/cy/modules/rce/plugins/shared/ColorInput.js +4 -3
  455. package/lib/translated/cy/modules/rce/plugins/shared/ContentSelection.js +7 -1
  456. package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  457. package/lib/translated/cy/modules/rce/plugins/shared/Filter.js +6 -5
  458. package/lib/translated/cy/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  459. package/lib/translated/cy/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  460. package/lib/translated/cy/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  461. package/lib/translated/cy/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  462. package/lib/translated/cy/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  463. package/lib/translated/cy/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  464. package/lib/translated/cy/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  465. package/lib/translated/cy/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  466. package/lib/translated/cy/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  467. package/lib/translated/cy/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  468. package/lib/translated/cy/modules/rce/plugins/shared/linkUtils.js +58 -0
  469. package/lib/translated/cy/modules/rce/plugins/shared/useDataUrl.js +14 -4
  470. package/lib/translated/cy/modules/rce/userOS.js +31 -0
  471. package/lib/translated/da/modules/canvasFileBrowser/FlashAlert.js +8 -5
  472. package/lib/translated/da/modules/common/components/LoadMore.js +2 -1
  473. package/lib/translated/da/modules/rce/KeyboardShortcutModal.js +10 -7
  474. package/lib/translated/da/modules/rce/RCE.js +12 -6
  475. package/lib/translated/da/modules/rce/RCEGlobals.js +62 -0
  476. package/lib/translated/da/modules/rce/RCEWrapper.js +49 -19
  477. package/lib/translated/da/modules/rce/RestoreAutoSaveModal.js +4 -3
  478. package/lib/translated/da/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  479. package/lib/translated/da/modules/rce/__tests__/contentInsertion.test.js +6 -0
  480. package/lib/translated/da/modules/rce/__tests__/userOS.test.js +68 -0
  481. package/lib/translated/da/modules/rce/contentInsertion.js +3 -1
  482. package/lib/translated/da/modules/rce/initA11yChecker.js +0 -3
  483. package/lib/translated/da/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  484. package/lib/translated/da/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  485. package/lib/translated/da/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  486. package/lib/translated/da/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  487. package/lib/translated/da/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  488. package/lib/translated/da/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  489. package/lib/translated/da/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  490. package/lib/translated/da/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  491. package/lib/translated/da/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  492. package/lib/translated/da/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  493. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  494. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  495. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  496. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  497. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  498. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  499. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  500. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  501. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  502. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  503. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  504. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  505. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  506. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  507. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  508. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  509. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  510. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  511. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  512. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  513. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  514. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  515. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  516. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  517. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  518. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  519. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  520. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  521. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  522. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  523. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  524. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  525. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  526. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  527. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  528. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  529. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  530. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  531. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  532. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  533. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  534. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  535. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  536. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  537. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  538. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  539. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  540. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  541. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  542. package/lib/translated/da/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  543. package/lib/translated/da/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  544. package/lib/translated/da/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  545. package/lib/translated/da/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  546. package/lib/translated/da/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  547. package/lib/translated/da/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  548. package/lib/translated/da/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  549. package/lib/translated/da/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  550. package/lib/translated/da/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  551. package/lib/translated/da/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  552. package/lib/translated/da/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  553. package/lib/translated/da/modules/rce/plugins/instructure_links/plugin.js +18 -3
  554. package/lib/translated/da/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  555. package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  556. package/lib/translated/da/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  557. package/lib/translated/da/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  558. package/lib/translated/da/modules/rce/plugins/shared/ColorInput.js +4 -3
  559. package/lib/translated/da/modules/rce/plugins/shared/ContentSelection.js +7 -1
  560. package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  561. package/lib/translated/da/modules/rce/plugins/shared/Filter.js +6 -5
  562. package/lib/translated/da/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  563. package/lib/translated/da/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  564. package/lib/translated/da/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  565. package/lib/translated/da/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  566. package/lib/translated/da/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  567. package/lib/translated/da/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  568. package/lib/translated/da/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  569. package/lib/translated/da/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  570. package/lib/translated/da/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  571. package/lib/translated/da/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  572. package/lib/translated/da/modules/rce/plugins/shared/linkUtils.js +58 -0
  573. package/lib/translated/da/modules/rce/plugins/shared/useDataUrl.js +14 -4
  574. package/lib/translated/da/modules/rce/userOS.js +31 -0
  575. package/lib/translated/da-x-k12/modules/canvasFileBrowser/FlashAlert.js +8 -5
  576. package/lib/translated/da-x-k12/modules/common/components/LoadMore.js +2 -1
  577. package/lib/translated/da-x-k12/modules/rce/KeyboardShortcutModal.js +10 -7
  578. package/lib/translated/da-x-k12/modules/rce/RCE.js +12 -6
  579. package/lib/translated/da-x-k12/modules/rce/RCEGlobals.js +62 -0
  580. package/lib/translated/da-x-k12/modules/rce/RCEWrapper.js +49 -19
  581. package/lib/translated/da-x-k12/modules/rce/RestoreAutoSaveModal.js +4 -3
  582. package/lib/translated/da-x-k12/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  583. package/lib/translated/da-x-k12/modules/rce/__tests__/contentInsertion.test.js +6 -0
  584. package/lib/translated/da-x-k12/modules/rce/__tests__/userOS.test.js +68 -0
  585. package/lib/translated/da-x-k12/modules/rce/contentInsertion.js +3 -1
  586. package/lib/translated/da-x-k12/modules/rce/initA11yChecker.js +0 -3
  587. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  588. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  589. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  590. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  591. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  592. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  593. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  594. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  595. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  596. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  597. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  598. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  599. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  600. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  601. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  602. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  603. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  604. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  605. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  606. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  607. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  608. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  609. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  610. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  611. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  612. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  613. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  614. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  615. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  616. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  617. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  618. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  619. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  620. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  621. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  622. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  623. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  624. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  625. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  626. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  627. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  628. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  629. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  630. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  631. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  632. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  633. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  634. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  635. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  636. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  637. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  638. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  639. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  640. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  641. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  642. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  643. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  644. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  645. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  646. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  647. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  648. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  649. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  650. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  651. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  652. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  653. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  654. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  655. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  656. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  657. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_links/plugin.js +18 -3
  658. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  659. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  660. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  661. package/lib/translated/da-x-k12/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  662. package/lib/translated/da-x-k12/modules/rce/plugins/shared/ColorInput.js +4 -3
  663. package/lib/translated/da-x-k12/modules/rce/plugins/shared/ContentSelection.js +7 -1
  664. package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  665. package/lib/translated/da-x-k12/modules/rce/plugins/shared/Filter.js +6 -5
  666. package/lib/translated/da-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  667. package/lib/translated/da-x-k12/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  668. package/lib/translated/da-x-k12/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  669. package/lib/translated/da-x-k12/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  670. package/lib/translated/da-x-k12/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  671. package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  672. package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  673. package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  674. package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  675. package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  676. package/lib/translated/da-x-k12/modules/rce/plugins/shared/linkUtils.js +58 -0
  677. package/lib/translated/da-x-k12/modules/rce/plugins/shared/useDataUrl.js +14 -4
  678. package/lib/translated/da-x-k12/modules/rce/userOS.js +31 -0
  679. package/lib/translated/de/modules/canvasFileBrowser/FlashAlert.js +8 -5
  680. package/lib/translated/de/modules/common/components/LoadMore.js +2 -1
  681. package/lib/translated/de/modules/rce/KeyboardShortcutModal.js +10 -7
  682. package/lib/translated/de/modules/rce/RCE.js +12 -6
  683. package/lib/translated/de/modules/rce/RCEGlobals.js +62 -0
  684. package/lib/translated/de/modules/rce/RCEWrapper.js +49 -19
  685. package/lib/translated/de/modules/rce/RestoreAutoSaveModal.js +4 -3
  686. package/lib/translated/de/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  687. package/lib/translated/de/modules/rce/__tests__/contentInsertion.test.js +6 -0
  688. package/lib/translated/de/modules/rce/__tests__/userOS.test.js +68 -0
  689. package/lib/translated/de/modules/rce/contentInsertion.js +3 -1
  690. package/lib/translated/de/modules/rce/initA11yChecker.js +0 -3
  691. package/lib/translated/de/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  692. package/lib/translated/de/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  693. package/lib/translated/de/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  694. package/lib/translated/de/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  695. package/lib/translated/de/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  696. package/lib/translated/de/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  697. package/lib/translated/de/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  698. package/lib/translated/de/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  699. package/lib/translated/de/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  700. package/lib/translated/de/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  701. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  702. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  703. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  704. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  705. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  706. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  707. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  708. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  709. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  710. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  711. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  712. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  713. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  714. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  715. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  716. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  717. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  718. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  719. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  720. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  721. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  722. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  723. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  724. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  725. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  726. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  727. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  728. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  729. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  730. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  731. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  732. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  733. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  734. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  735. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  736. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  737. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  738. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  739. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  740. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  741. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  742. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  743. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  744. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  745. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  746. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  747. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  748. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  749. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  750. package/lib/translated/de/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  751. package/lib/translated/de/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  752. package/lib/translated/de/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  753. package/lib/translated/de/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  754. package/lib/translated/de/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  755. package/lib/translated/de/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  756. package/lib/translated/de/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  757. package/lib/translated/de/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  758. package/lib/translated/de/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  759. package/lib/translated/de/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  760. package/lib/translated/de/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  761. package/lib/translated/de/modules/rce/plugins/instructure_links/plugin.js +18 -3
  762. package/lib/translated/de/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  763. package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  764. package/lib/translated/de/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  765. package/lib/translated/de/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  766. package/lib/translated/de/modules/rce/plugins/shared/ColorInput.js +4 -3
  767. package/lib/translated/de/modules/rce/plugins/shared/ContentSelection.js +7 -1
  768. package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  769. package/lib/translated/de/modules/rce/plugins/shared/Filter.js +6 -5
  770. package/lib/translated/de/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  771. package/lib/translated/de/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  772. package/lib/translated/de/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  773. package/lib/translated/de/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  774. package/lib/translated/de/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  775. package/lib/translated/de/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  776. package/lib/translated/de/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  777. package/lib/translated/de/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  778. package/lib/translated/de/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  779. package/lib/translated/de/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  780. package/lib/translated/de/modules/rce/plugins/shared/linkUtils.js +58 -0
  781. package/lib/translated/de/modules/rce/plugins/shared/useDataUrl.js +14 -4
  782. package/lib/translated/de/modules/rce/userOS.js +31 -0
  783. package/lib/translated/el/modules/canvasFileBrowser/FlashAlert.js +8 -5
  784. package/lib/translated/el/modules/common/components/LoadMore.js +2 -1
  785. package/lib/translated/el/modules/rce/KeyboardShortcutModal.js +10 -7
  786. package/lib/translated/el/modules/rce/RCE.js +12 -6
  787. package/lib/translated/el/modules/rce/RCEGlobals.js +62 -0
  788. package/lib/translated/el/modules/rce/RCEWrapper.js +49 -19
  789. package/lib/translated/el/modules/rce/RestoreAutoSaveModal.js +4 -3
  790. package/lib/translated/el/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  791. package/lib/translated/el/modules/rce/__tests__/contentInsertion.test.js +6 -0
  792. package/lib/translated/el/modules/rce/__tests__/userOS.test.js +68 -0
  793. package/lib/translated/el/modules/rce/contentInsertion.js +3 -1
  794. package/lib/translated/el/modules/rce/initA11yChecker.js +0 -3
  795. package/lib/translated/el/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  796. package/lib/translated/el/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  797. package/lib/translated/el/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  798. package/lib/translated/el/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  799. package/lib/translated/el/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  800. package/lib/translated/el/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  801. package/lib/translated/el/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  802. package/lib/translated/el/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  803. package/lib/translated/el/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  804. package/lib/translated/el/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  805. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  806. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  807. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  808. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  809. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  810. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  811. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  812. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  813. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  814. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  815. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  816. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  817. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  818. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  819. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  820. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  821. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  822. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  823. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  824. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  825. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  826. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  827. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  828. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  829. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  830. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  831. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  832. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  833. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  834. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  835. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  836. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  837. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  838. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  839. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  840. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  841. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  842. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  843. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  844. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  845. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  846. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  847. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  848. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  849. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  850. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  851. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  852. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  853. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  854. package/lib/translated/el/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  855. package/lib/translated/el/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  856. package/lib/translated/el/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  857. package/lib/translated/el/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  858. package/lib/translated/el/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  859. package/lib/translated/el/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  860. package/lib/translated/el/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  861. package/lib/translated/el/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  862. package/lib/translated/el/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  863. package/lib/translated/el/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  864. package/lib/translated/el/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  865. package/lib/translated/el/modules/rce/plugins/instructure_links/plugin.js +18 -3
  866. package/lib/translated/el/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  867. package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  868. package/lib/translated/el/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  869. package/lib/translated/el/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  870. package/lib/translated/el/modules/rce/plugins/shared/ColorInput.js +4 -3
  871. package/lib/translated/el/modules/rce/plugins/shared/ContentSelection.js +7 -1
  872. package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  873. package/lib/translated/el/modules/rce/plugins/shared/Filter.js +6 -5
  874. package/lib/translated/el/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  875. package/lib/translated/el/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  876. package/lib/translated/el/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  877. package/lib/translated/el/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  878. package/lib/translated/el/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  879. package/lib/translated/el/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  880. package/lib/translated/el/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  881. package/lib/translated/el/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  882. package/lib/translated/el/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  883. package/lib/translated/el/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  884. package/lib/translated/el/modules/rce/plugins/shared/linkUtils.js +58 -0
  885. package/lib/translated/el/modules/rce/plugins/shared/useDataUrl.js +14 -4
  886. package/lib/translated/el/modules/rce/userOS.js +31 -0
  887. package/lib/translated/en/modules/canvasFileBrowser/FlashAlert.js +8 -5
  888. package/lib/translated/en/modules/common/components/LoadMore.js +2 -1
  889. package/lib/translated/en/modules/rce/KeyboardShortcutModal.js +10 -7
  890. package/lib/translated/en/modules/rce/RCE.js +12 -6
  891. package/lib/translated/en/modules/rce/RCEGlobals.js +62 -0
  892. package/lib/translated/en/modules/rce/RCEWrapper.js +49 -19
  893. package/lib/translated/en/modules/rce/RestoreAutoSaveModal.js +4 -3
  894. package/lib/translated/en/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  895. package/lib/translated/en/modules/rce/__tests__/contentInsertion.test.js +6 -0
  896. package/lib/translated/en/modules/rce/__tests__/userOS.test.js +68 -0
  897. package/lib/translated/en/modules/rce/contentInsertion.js +3 -1
  898. package/lib/translated/en/modules/rce/initA11yChecker.js +0 -3
  899. package/lib/translated/en/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  900. package/lib/translated/en/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  901. package/lib/translated/en/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  902. package/lib/translated/en/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  903. package/lib/translated/en/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  904. package/lib/translated/en/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  905. package/lib/translated/en/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  906. package/lib/translated/en/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  907. package/lib/translated/en/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  908. package/lib/translated/en/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  909. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  910. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  911. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  912. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  913. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  914. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  915. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  916. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  917. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  918. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  919. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  920. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  921. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  922. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  923. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  924. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  925. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  926. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  927. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  928. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  929. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  930. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  931. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  932. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  933. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  934. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  935. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  936. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  937. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  938. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  939. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  940. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  941. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  942. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  943. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  944. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  945. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  946. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  947. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  948. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  949. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  950. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  951. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  952. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  953. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  954. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  955. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  956. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  957. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  958. package/lib/translated/en/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  959. package/lib/translated/en/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  960. package/lib/translated/en/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  961. package/lib/translated/en/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  962. package/lib/translated/en/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  963. package/lib/translated/en/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  964. package/lib/translated/en/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  965. package/lib/translated/en/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  966. package/lib/translated/en/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  967. package/lib/translated/en/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  968. package/lib/translated/en/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  969. package/lib/translated/en/modules/rce/plugins/instructure_links/plugin.js +18 -3
  970. package/lib/translated/en/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  971. package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  972. package/lib/translated/en/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  973. package/lib/translated/en/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  974. package/lib/translated/en/modules/rce/plugins/shared/ColorInput.js +4 -3
  975. package/lib/translated/en/modules/rce/plugins/shared/ContentSelection.js +7 -1
  976. package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  977. package/lib/translated/en/modules/rce/plugins/shared/Filter.js +6 -5
  978. package/lib/translated/en/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  979. package/lib/translated/en/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  980. package/lib/translated/en/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  981. package/lib/translated/en/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  982. package/lib/translated/en/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  983. package/lib/translated/en/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  984. package/lib/translated/en/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  985. package/lib/translated/en/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  986. package/lib/translated/en/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  987. package/lib/translated/en/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  988. package/lib/translated/en/modules/rce/plugins/shared/linkUtils.js +58 -0
  989. package/lib/translated/en/modules/rce/plugins/shared/useDataUrl.js +14 -4
  990. package/lib/translated/en/modules/rce/userOS.js +31 -0
  991. package/lib/translated/en-AU-x-unimelb/modules/canvasFileBrowser/FlashAlert.js +8 -5
  992. package/lib/translated/en-AU-x-unimelb/modules/common/components/LoadMore.js +2 -1
  993. package/lib/translated/en-AU-x-unimelb/modules/rce/KeyboardShortcutModal.js +10 -7
  994. package/lib/translated/en-AU-x-unimelb/modules/rce/RCE.js +12 -6
  995. package/lib/translated/en-AU-x-unimelb/modules/rce/RCEGlobals.js +62 -0
  996. package/lib/translated/en-AU-x-unimelb/modules/rce/RCEWrapper.js +49 -19
  997. package/lib/translated/en-AU-x-unimelb/modules/rce/RestoreAutoSaveModal.js +4 -3
  998. package/lib/translated/en-AU-x-unimelb/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  999. package/lib/translated/en-AU-x-unimelb/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1000. package/lib/translated/en-AU-x-unimelb/modules/rce/__tests__/userOS.test.js +68 -0
  1001. package/lib/translated/en-AU-x-unimelb/modules/rce/contentInsertion.js +3 -1
  1002. package/lib/translated/en-AU-x-unimelb/modules/rce/initA11yChecker.js +0 -3
  1003. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1004. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1005. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1006. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1007. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1008. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1009. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1010. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1011. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1012. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1013. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1014. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  1015. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1016. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1017. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1018. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1019. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1020. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1021. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1022. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1023. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1024. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1025. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1026. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1027. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1028. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1029. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1030. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1031. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1032. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1033. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1034. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1035. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1036. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1037. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1038. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1039. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1040. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1041. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1042. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1043. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1044. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1045. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1046. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1047. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1048. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1049. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1050. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1051. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1052. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1053. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1054. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1055. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1056. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1057. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1058. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1059. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1060. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1061. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1062. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1063. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1064. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1065. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1066. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1067. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1068. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1069. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1070. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1071. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1072. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1073. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1074. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1075. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1076. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1077. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1078. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ColorInput.js +4 -3
  1079. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1080. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1081. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/Filter.js +6 -5
  1082. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1083. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1084. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1085. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1086. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1087. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1088. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1089. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1090. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1091. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1092. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/linkUtils.js +58 -0
  1093. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1094. package/lib/translated/en-AU-x-unimelb/modules/rce/userOS.js +31 -0
  1095. package/lib/translated/en-GB-x-ukhe/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1096. package/lib/translated/en-GB-x-ukhe/modules/common/components/LoadMore.js +2 -1
  1097. package/lib/translated/en-GB-x-ukhe/modules/rce/KeyboardShortcutModal.js +10 -7
  1098. package/lib/translated/en-GB-x-ukhe/modules/rce/RCE.js +12 -6
  1099. package/lib/translated/en-GB-x-ukhe/modules/rce/RCEGlobals.js +62 -0
  1100. package/lib/translated/en-GB-x-ukhe/modules/rce/RCEWrapper.js +49 -19
  1101. package/lib/translated/en-GB-x-ukhe/modules/rce/RestoreAutoSaveModal.js +4 -3
  1102. package/lib/translated/en-GB-x-ukhe/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1103. package/lib/translated/en-GB-x-ukhe/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1104. package/lib/translated/en-GB-x-ukhe/modules/rce/__tests__/userOS.test.js +68 -0
  1105. package/lib/translated/en-GB-x-ukhe/modules/rce/contentInsertion.js +3 -1
  1106. package/lib/translated/en-GB-x-ukhe/modules/rce/initA11yChecker.js +0 -3
  1107. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1108. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1109. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1110. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1111. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1112. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1113. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1114. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1115. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1116. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1117. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1118. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  1119. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1120. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1121. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1122. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1123. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1124. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1125. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1126. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1127. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1128. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1129. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1130. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1131. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1132. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1133. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1134. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1135. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1136. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1137. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1138. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1139. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1140. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1141. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1142. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1143. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1144. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1145. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1146. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1147. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1148. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1149. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1150. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1151. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1152. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1153. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1154. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1155. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1156. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1157. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1158. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1159. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1160. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1161. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1162. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1163. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1164. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1165. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1166. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1167. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1168. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1169. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1170. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1171. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1172. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1173. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1174. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1175. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1176. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1177. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1178. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1179. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1180. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1181. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1182. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ColorInput.js +4 -3
  1183. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1184. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1185. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/Filter.js +6 -5
  1186. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1187. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1188. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1189. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1190. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1191. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1192. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1193. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1194. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1195. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1196. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/linkUtils.js +58 -0
  1197. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1198. package/lib/translated/en-GB-x-ukhe/modules/rce/userOS.js +31 -0
  1199. package/lib/translated/en_AU/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1200. package/lib/translated/en_AU/modules/common/components/LoadMore.js +2 -1
  1201. package/lib/translated/en_AU/modules/rce/KeyboardShortcutModal.js +10 -7
  1202. package/lib/translated/en_AU/modules/rce/RCE.js +12 -6
  1203. package/lib/translated/en_AU/modules/rce/RCEGlobals.js +62 -0
  1204. package/lib/translated/en_AU/modules/rce/RCEWrapper.js +49 -19
  1205. package/lib/translated/en_AU/modules/rce/RestoreAutoSaveModal.js +4 -3
  1206. package/lib/translated/en_AU/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1207. package/lib/translated/en_AU/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1208. package/lib/translated/en_AU/modules/rce/__tests__/userOS.test.js +68 -0
  1209. package/lib/translated/en_AU/modules/rce/contentInsertion.js +3 -1
  1210. package/lib/translated/en_AU/modules/rce/initA11yChecker.js +0 -3
  1211. package/lib/translated/en_AU/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1212. package/lib/translated/en_AU/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1213. package/lib/translated/en_AU/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1214. package/lib/translated/en_AU/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1215. package/lib/translated/en_AU/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1216. package/lib/translated/en_AU/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1217. package/lib/translated/en_AU/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1218. package/lib/translated/en_AU/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1219. package/lib/translated/en_AU/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1220. package/lib/translated/en_AU/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1221. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1222. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  1223. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1224. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1225. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1226. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1227. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1228. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1229. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1230. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1231. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1232. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1233. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1234. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1235. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1236. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1237. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1238. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1239. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1240. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1241. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1242. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1243. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1244. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1245. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1246. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1247. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1248. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1249. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1250. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1251. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1252. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1253. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1254. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1255. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1256. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1257. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1258. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1259. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1260. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1261. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1262. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1263. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1264. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1265. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1266. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1267. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1268. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1269. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1270. package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1271. package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1272. package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1273. package/lib/translated/en_AU/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1274. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1275. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1276. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1277. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1278. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1279. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1280. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1281. package/lib/translated/en_AU/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1282. package/lib/translated/en_AU/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1283. package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1284. package/lib/translated/en_AU/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1285. package/lib/translated/en_AU/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1286. package/lib/translated/en_AU/modules/rce/plugins/shared/ColorInput.js +4 -3
  1287. package/lib/translated/en_AU/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1288. package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1289. package/lib/translated/en_AU/modules/rce/plugins/shared/Filter.js +6 -5
  1290. package/lib/translated/en_AU/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1291. package/lib/translated/en_AU/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1292. package/lib/translated/en_AU/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1293. package/lib/translated/en_AU/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1294. package/lib/translated/en_AU/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1295. package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1296. package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1297. package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1298. package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1299. package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1300. package/lib/translated/en_AU/modules/rce/plugins/shared/linkUtils.js +58 -0
  1301. package/lib/translated/en_AU/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1302. package/lib/translated/en_AU/modules/rce/userOS.js +31 -0
  1303. package/lib/translated/en_CA/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1304. package/lib/translated/en_CA/modules/common/components/LoadMore.js +2 -1
  1305. package/lib/translated/en_CA/modules/rce/KeyboardShortcutModal.js +10 -7
  1306. package/lib/translated/en_CA/modules/rce/RCE.js +12 -6
  1307. package/lib/translated/en_CA/modules/rce/RCEGlobals.js +62 -0
  1308. package/lib/translated/en_CA/modules/rce/RCEWrapper.js +49 -19
  1309. package/lib/translated/en_CA/modules/rce/RestoreAutoSaveModal.js +4 -3
  1310. package/lib/translated/en_CA/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1311. package/lib/translated/en_CA/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1312. package/lib/translated/en_CA/modules/rce/__tests__/userOS.test.js +68 -0
  1313. package/lib/translated/en_CA/modules/rce/contentInsertion.js +3 -1
  1314. package/lib/translated/en_CA/modules/rce/initA11yChecker.js +0 -3
  1315. package/lib/translated/en_CA/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1316. package/lib/translated/en_CA/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1317. package/lib/translated/en_CA/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1318. package/lib/translated/en_CA/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1319. package/lib/translated/en_CA/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1320. package/lib/translated/en_CA/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1321. package/lib/translated/en_CA/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1322. package/lib/translated/en_CA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1323. package/lib/translated/en_CA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1324. package/lib/translated/en_CA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1325. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1326. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  1327. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1328. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1329. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1330. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1331. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1332. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1333. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1334. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1335. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1336. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1337. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1338. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1339. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1340. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1341. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1342. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1343. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1344. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1345. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1346. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1347. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1348. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1349. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1350. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1351. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1352. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1353. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1354. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1355. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1356. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1357. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1358. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1359. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1360. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1361. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1362. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1363. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1364. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1365. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1366. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1367. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1368. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1369. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1370. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1371. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1372. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1373. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1374. package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1375. package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1376. package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1377. package/lib/translated/en_CA/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1378. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1379. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1380. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1381. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1382. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1383. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1384. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1385. package/lib/translated/en_CA/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1386. package/lib/translated/en_CA/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1387. package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1388. package/lib/translated/en_CA/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1389. package/lib/translated/en_CA/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1390. package/lib/translated/en_CA/modules/rce/plugins/shared/ColorInput.js +4 -3
  1391. package/lib/translated/en_CA/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1392. package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1393. package/lib/translated/en_CA/modules/rce/plugins/shared/Filter.js +6 -5
  1394. package/lib/translated/en_CA/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1395. package/lib/translated/en_CA/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1396. package/lib/translated/en_CA/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1397. package/lib/translated/en_CA/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1398. package/lib/translated/en_CA/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1399. package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1400. package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1401. package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1402. package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1403. package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1404. package/lib/translated/en_CA/modules/rce/plugins/shared/linkUtils.js +58 -0
  1405. package/lib/translated/en_CA/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1406. package/lib/translated/en_CA/modules/rce/userOS.js +31 -0
  1407. package/lib/translated/en_CY/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1408. package/lib/translated/en_CY/modules/common/components/LoadMore.js +2 -1
  1409. package/lib/translated/en_CY/modules/rce/KeyboardShortcutModal.js +10 -7
  1410. package/lib/translated/en_CY/modules/rce/RCE.js +12 -6
  1411. package/lib/translated/en_CY/modules/rce/RCEGlobals.js +62 -0
  1412. package/lib/translated/en_CY/modules/rce/RCEWrapper.js +49 -19
  1413. package/lib/translated/en_CY/modules/rce/RestoreAutoSaveModal.js +4 -3
  1414. package/lib/translated/en_CY/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1415. package/lib/translated/en_CY/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1416. package/lib/translated/en_CY/modules/rce/__tests__/userOS.test.js +68 -0
  1417. package/lib/translated/en_CY/modules/rce/contentInsertion.js +3 -1
  1418. package/lib/translated/en_CY/modules/rce/initA11yChecker.js +0 -3
  1419. package/lib/translated/en_CY/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1420. package/lib/translated/en_CY/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1421. package/lib/translated/en_CY/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1422. package/lib/translated/en_CY/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1423. package/lib/translated/en_CY/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1424. package/lib/translated/en_CY/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1425. package/lib/translated/en_CY/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1426. package/lib/translated/en_CY/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1427. package/lib/translated/en_CY/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1428. package/lib/translated/en_CY/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1429. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1430. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  1431. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1432. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1433. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1434. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1435. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1436. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1437. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1438. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1439. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1440. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1441. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1442. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1443. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1444. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1445. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1446. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1447. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1448. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1449. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1450. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1451. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1452. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1453. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1454. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1455. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1456. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1457. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1458. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1459. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1460. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1461. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1462. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1463. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1464. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1465. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1466. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1467. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1468. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1469. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1470. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1471. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1472. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1473. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1474. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1475. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1476. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1477. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1478. package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1479. package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1480. package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1481. package/lib/translated/en_CY/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1482. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1483. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1484. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1485. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1486. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1487. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1488. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1489. package/lib/translated/en_CY/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1490. package/lib/translated/en_CY/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1491. package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1492. package/lib/translated/en_CY/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1493. package/lib/translated/en_CY/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1494. package/lib/translated/en_CY/modules/rce/plugins/shared/ColorInput.js +4 -3
  1495. package/lib/translated/en_CY/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1496. package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1497. package/lib/translated/en_CY/modules/rce/plugins/shared/Filter.js +6 -5
  1498. package/lib/translated/en_CY/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1499. package/lib/translated/en_CY/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1500. package/lib/translated/en_CY/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1501. package/lib/translated/en_CY/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1502. package/lib/translated/en_CY/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1503. package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1504. package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1505. package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1506. package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1507. package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1508. package/lib/translated/en_CY/modules/rce/plugins/shared/linkUtils.js +58 -0
  1509. package/lib/translated/en_CY/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1510. package/lib/translated/en_CY/modules/rce/userOS.js +31 -0
  1511. package/lib/translated/en_GB/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1512. package/lib/translated/en_GB/modules/common/components/LoadMore.js +2 -1
  1513. package/lib/translated/en_GB/modules/rce/KeyboardShortcutModal.js +10 -7
  1514. package/lib/translated/en_GB/modules/rce/RCE.js +12 -6
  1515. package/lib/translated/en_GB/modules/rce/RCEGlobals.js +62 -0
  1516. package/lib/translated/en_GB/modules/rce/RCEWrapper.js +49 -19
  1517. package/lib/translated/en_GB/modules/rce/RestoreAutoSaveModal.js +4 -3
  1518. package/lib/translated/en_GB/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1519. package/lib/translated/en_GB/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1520. package/lib/translated/en_GB/modules/rce/__tests__/userOS.test.js +68 -0
  1521. package/lib/translated/en_GB/modules/rce/contentInsertion.js +3 -1
  1522. package/lib/translated/en_GB/modules/rce/initA11yChecker.js +0 -3
  1523. package/lib/translated/en_GB/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1524. package/lib/translated/en_GB/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1525. package/lib/translated/en_GB/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1526. package/lib/translated/en_GB/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1527. package/lib/translated/en_GB/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1528. package/lib/translated/en_GB/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1529. package/lib/translated/en_GB/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1530. package/lib/translated/en_GB/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1531. package/lib/translated/en_GB/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1532. package/lib/translated/en_GB/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1533. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1534. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  1535. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1536. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1537. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1538. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1539. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1540. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1541. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1542. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1543. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1544. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1545. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1546. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1547. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1548. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1549. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1550. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1551. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1552. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1553. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1554. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1555. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1556. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1557. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1558. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1559. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1560. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1561. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1562. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1563. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1564. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1565. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1566. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1567. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1568. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1569. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1570. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1571. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1572. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1573. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1574. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1575. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1576. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1577. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1578. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1579. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1580. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1581. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1582. package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1583. package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1584. package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1585. package/lib/translated/en_GB/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1586. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1587. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1588. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1589. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1590. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1591. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1592. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1593. package/lib/translated/en_GB/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1594. package/lib/translated/en_GB/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1595. package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1596. package/lib/translated/en_GB/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1597. package/lib/translated/en_GB/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1598. package/lib/translated/en_GB/modules/rce/plugins/shared/ColorInput.js +4 -3
  1599. package/lib/translated/en_GB/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1600. package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1601. package/lib/translated/en_GB/modules/rce/plugins/shared/Filter.js +6 -5
  1602. package/lib/translated/en_GB/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1603. package/lib/translated/en_GB/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1604. package/lib/translated/en_GB/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1605. package/lib/translated/en_GB/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1606. package/lib/translated/en_GB/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1607. package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1608. package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1609. package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1610. package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1611. package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1612. package/lib/translated/en_GB/modules/rce/plugins/shared/linkUtils.js +58 -0
  1613. package/lib/translated/en_GB/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1614. package/lib/translated/en_GB/modules/rce/userOS.js +31 -0
  1615. package/lib/translated/es/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1616. package/lib/translated/es/modules/common/components/LoadMore.js +2 -1
  1617. package/lib/translated/es/modules/rce/KeyboardShortcutModal.js +10 -7
  1618. package/lib/translated/es/modules/rce/RCE.js +12 -6
  1619. package/lib/translated/es/modules/rce/RCEGlobals.js +62 -0
  1620. package/lib/translated/es/modules/rce/RCEWrapper.js +49 -19
  1621. package/lib/translated/es/modules/rce/RestoreAutoSaveModal.js +4 -3
  1622. package/lib/translated/es/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1623. package/lib/translated/es/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1624. package/lib/translated/es/modules/rce/__tests__/userOS.test.js +68 -0
  1625. package/lib/translated/es/modules/rce/contentInsertion.js +3 -1
  1626. package/lib/translated/es/modules/rce/initA11yChecker.js +0 -3
  1627. package/lib/translated/es/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1628. package/lib/translated/es/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1629. package/lib/translated/es/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1630. package/lib/translated/es/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1631. package/lib/translated/es/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1632. package/lib/translated/es/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1633. package/lib/translated/es/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1634. package/lib/translated/es/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1635. package/lib/translated/es/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1636. package/lib/translated/es/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1637. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1638. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  1639. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1640. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1641. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1642. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1643. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1644. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1645. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1646. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1647. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1648. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1649. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1650. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1651. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1652. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1653. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1654. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1655. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1656. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1657. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1658. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1659. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1660. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1661. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1662. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1663. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1664. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1665. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1666. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1667. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1668. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1669. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1670. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1671. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1672. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1673. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1674. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1675. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1676. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1677. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1678. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1679. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1680. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1681. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1682. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1683. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1684. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1685. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1686. package/lib/translated/es/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1687. package/lib/translated/es/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1688. package/lib/translated/es/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1689. package/lib/translated/es/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1690. package/lib/translated/es/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1691. package/lib/translated/es/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1692. package/lib/translated/es/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1693. package/lib/translated/es/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1694. package/lib/translated/es/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1695. package/lib/translated/es/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1696. package/lib/translated/es/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1697. package/lib/translated/es/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1698. package/lib/translated/es/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1699. package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1700. package/lib/translated/es/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1701. package/lib/translated/es/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1702. package/lib/translated/es/modules/rce/plugins/shared/ColorInput.js +4 -3
  1703. package/lib/translated/es/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1704. package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1705. package/lib/translated/es/modules/rce/plugins/shared/Filter.js +6 -5
  1706. package/lib/translated/es/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1707. package/lib/translated/es/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1708. package/lib/translated/es/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1709. package/lib/translated/es/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1710. package/lib/translated/es/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1711. package/lib/translated/es/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1712. package/lib/translated/es/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1713. package/lib/translated/es/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1714. package/lib/translated/es/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1715. package/lib/translated/es/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1716. package/lib/translated/es/modules/rce/plugins/shared/linkUtils.js +58 -0
  1717. package/lib/translated/es/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1718. package/lib/translated/es/modules/rce/userOS.js +31 -0
  1719. package/lib/translated/es_ES/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1720. package/lib/translated/es_ES/modules/common/components/LoadMore.js +2 -1
  1721. package/lib/translated/es_ES/modules/rce/KeyboardShortcutModal.js +10 -7
  1722. package/lib/translated/es_ES/modules/rce/RCE.js +12 -6
  1723. package/lib/translated/es_ES/modules/rce/RCEGlobals.js +62 -0
  1724. package/lib/translated/es_ES/modules/rce/RCEWrapper.js +49 -19
  1725. package/lib/translated/es_ES/modules/rce/RestoreAutoSaveModal.js +4 -3
  1726. package/lib/translated/es_ES/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1727. package/lib/translated/es_ES/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1728. package/lib/translated/es_ES/modules/rce/__tests__/userOS.test.js +68 -0
  1729. package/lib/translated/es_ES/modules/rce/contentInsertion.js +3 -1
  1730. package/lib/translated/es_ES/modules/rce/initA11yChecker.js +0 -3
  1731. package/lib/translated/es_ES/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1732. package/lib/translated/es_ES/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1733. package/lib/translated/es_ES/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1734. package/lib/translated/es_ES/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1735. package/lib/translated/es_ES/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1736. package/lib/translated/es_ES/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1737. package/lib/translated/es_ES/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1738. package/lib/translated/es_ES/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1739. package/lib/translated/es_ES/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1740. package/lib/translated/es_ES/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1741. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1742. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  1743. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1744. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1745. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1746. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1747. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1748. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1749. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1750. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1751. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1752. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1753. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1754. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1755. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1756. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1757. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1758. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1759. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1760. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1761. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1762. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1763. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1764. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1765. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1766. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1767. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1768. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1769. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1770. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1771. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1772. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1773. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1774. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1775. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1776. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1777. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1778. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1779. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1780. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1781. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1782. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1783. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1784. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1785. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1786. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1787. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1788. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1789. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1790. package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1791. package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1792. package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1793. package/lib/translated/es_ES/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1794. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1795. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1796. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1797. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1798. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1799. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1800. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1801. package/lib/translated/es_ES/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1802. package/lib/translated/es_ES/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1803. package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1804. package/lib/translated/es_ES/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1805. package/lib/translated/es_ES/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1806. package/lib/translated/es_ES/modules/rce/plugins/shared/ColorInput.js +4 -3
  1807. package/lib/translated/es_ES/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1808. package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1809. package/lib/translated/es_ES/modules/rce/plugins/shared/Filter.js +6 -5
  1810. package/lib/translated/es_ES/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1811. package/lib/translated/es_ES/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1812. package/lib/translated/es_ES/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1813. package/lib/translated/es_ES/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1814. package/lib/translated/es_ES/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1815. package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1816. package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1817. package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1818. package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1819. package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1820. package/lib/translated/es_ES/modules/rce/plugins/shared/linkUtils.js +58 -0
  1821. package/lib/translated/es_ES/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1822. package/lib/translated/es_ES/modules/rce/userOS.js +31 -0
  1823. package/lib/translated/fa_IR/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1824. package/lib/translated/fa_IR/modules/common/components/LoadMore.js +2 -1
  1825. package/lib/translated/fa_IR/modules/rce/KeyboardShortcutModal.js +10 -7
  1826. package/lib/translated/fa_IR/modules/rce/RCE.js +12 -6
  1827. package/lib/translated/fa_IR/modules/rce/RCEGlobals.js +62 -0
  1828. package/lib/translated/fa_IR/modules/rce/RCEWrapper.js +49 -19
  1829. package/lib/translated/fa_IR/modules/rce/RestoreAutoSaveModal.js +4 -3
  1830. package/lib/translated/fa_IR/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1831. package/lib/translated/fa_IR/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1832. package/lib/translated/fa_IR/modules/rce/__tests__/userOS.test.js +68 -0
  1833. package/lib/translated/fa_IR/modules/rce/contentInsertion.js +3 -1
  1834. package/lib/translated/fa_IR/modules/rce/initA11yChecker.js +0 -3
  1835. package/lib/translated/fa_IR/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1836. package/lib/translated/fa_IR/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1837. package/lib/translated/fa_IR/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1838. package/lib/translated/fa_IR/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1839. package/lib/translated/fa_IR/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1840. package/lib/translated/fa_IR/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1841. package/lib/translated/fa_IR/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1842. package/lib/translated/fa_IR/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1843. package/lib/translated/fa_IR/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1844. package/lib/translated/fa_IR/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1845. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1846. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  1847. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1848. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1849. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1850. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1851. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1852. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1853. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1854. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1855. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1856. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1857. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1858. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1859. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1860. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1861. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1862. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1863. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1864. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1865. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1866. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1867. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1868. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1869. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1870. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1871. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1872. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1873. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1874. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1875. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1876. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1877. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1878. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1879. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1880. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1881. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1882. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1883. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1884. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1885. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1886. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1887. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1888. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1889. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1890. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1891. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1892. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1893. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1894. package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1895. package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  1896. package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  1897. package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  1898. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  1899. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  1900. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  1901. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  1902. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  1903. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  1904. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  1905. package/lib/translated/fa_IR/modules/rce/plugins/instructure_links/plugin.js +18 -3
  1906. package/lib/translated/fa_IR/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  1907. package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  1908. package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  1909. package/lib/translated/fa_IR/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  1910. package/lib/translated/fa_IR/modules/rce/plugins/shared/ColorInput.js +4 -3
  1911. package/lib/translated/fa_IR/modules/rce/plugins/shared/ContentSelection.js +7 -1
  1912. package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  1913. package/lib/translated/fa_IR/modules/rce/plugins/shared/Filter.js +6 -5
  1914. package/lib/translated/fa_IR/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  1915. package/lib/translated/fa_IR/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  1916. package/lib/translated/fa_IR/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  1917. package/lib/translated/fa_IR/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  1918. package/lib/translated/fa_IR/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  1919. package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  1920. package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  1921. package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  1922. package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  1923. package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  1924. package/lib/translated/fa_IR/modules/rce/plugins/shared/linkUtils.js +58 -0
  1925. package/lib/translated/fa_IR/modules/rce/plugins/shared/useDataUrl.js +14 -4
  1926. package/lib/translated/fa_IR/modules/rce/userOS.js +31 -0
  1927. package/lib/translated/fi/modules/canvasFileBrowser/FlashAlert.js +8 -5
  1928. package/lib/translated/fi/modules/common/components/LoadMore.js +2 -1
  1929. package/lib/translated/fi/modules/rce/KeyboardShortcutModal.js +10 -7
  1930. package/lib/translated/fi/modules/rce/RCE.js +12 -6
  1931. package/lib/translated/fi/modules/rce/RCEGlobals.js +62 -0
  1932. package/lib/translated/fi/modules/rce/RCEWrapper.js +49 -19
  1933. package/lib/translated/fi/modules/rce/RestoreAutoSaveModal.js +4 -3
  1934. package/lib/translated/fi/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  1935. package/lib/translated/fi/modules/rce/__tests__/contentInsertion.test.js +6 -0
  1936. package/lib/translated/fi/modules/rce/__tests__/userOS.test.js +68 -0
  1937. package/lib/translated/fi/modules/rce/contentInsertion.js +3 -1
  1938. package/lib/translated/fi/modules/rce/initA11yChecker.js +0 -3
  1939. package/lib/translated/fi/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  1940. package/lib/translated/fi/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  1941. package/lib/translated/fi/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  1942. package/lib/translated/fi/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  1943. package/lib/translated/fi/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  1944. package/lib/translated/fi/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  1945. package/lib/translated/fi/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  1946. package/lib/translated/fi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  1947. package/lib/translated/fi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  1948. package/lib/translated/fi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  1949. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  1950. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  1951. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  1952. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  1953. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  1954. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  1955. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  1956. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  1957. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  1958. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  1959. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  1960. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  1961. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  1962. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  1963. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  1964. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  1965. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  1966. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  1967. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  1968. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  1969. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  1970. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  1971. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  1972. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  1973. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  1974. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  1975. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  1976. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  1977. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  1978. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  1979. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  1980. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  1981. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  1982. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  1983. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  1984. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  1985. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  1986. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  1987. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  1988. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  1989. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  1990. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  1991. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  1992. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  1993. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  1994. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  1995. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  1996. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  1997. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  1998. package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  1999. package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2000. package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2001. package/lib/translated/fi/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2002. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2003. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2004. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2005. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2006. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2007. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2008. package/lib/translated/fi/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2009. package/lib/translated/fi/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2010. package/lib/translated/fi/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2011. package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2012. package/lib/translated/fi/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2013. package/lib/translated/fi/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2014. package/lib/translated/fi/modules/rce/plugins/shared/ColorInput.js +4 -3
  2015. package/lib/translated/fi/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2016. package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2017. package/lib/translated/fi/modules/rce/plugins/shared/Filter.js +6 -5
  2018. package/lib/translated/fi/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2019. package/lib/translated/fi/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2020. package/lib/translated/fi/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2021. package/lib/translated/fi/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2022. package/lib/translated/fi/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2023. package/lib/translated/fi/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2024. package/lib/translated/fi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2025. package/lib/translated/fi/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2026. package/lib/translated/fi/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2027. package/lib/translated/fi/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2028. package/lib/translated/fi/modules/rce/plugins/shared/linkUtils.js +58 -0
  2029. package/lib/translated/fi/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2030. package/lib/translated/fi/modules/rce/userOS.js +31 -0
  2031. package/lib/translated/fr/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2032. package/lib/translated/fr/modules/common/components/LoadMore.js +2 -1
  2033. package/lib/translated/fr/modules/rce/KeyboardShortcutModal.js +10 -7
  2034. package/lib/translated/fr/modules/rce/RCE.js +12 -6
  2035. package/lib/translated/fr/modules/rce/RCEGlobals.js +62 -0
  2036. package/lib/translated/fr/modules/rce/RCEWrapper.js +49 -19
  2037. package/lib/translated/fr/modules/rce/RestoreAutoSaveModal.js +4 -3
  2038. package/lib/translated/fr/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2039. package/lib/translated/fr/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2040. package/lib/translated/fr/modules/rce/__tests__/userOS.test.js +68 -0
  2041. package/lib/translated/fr/modules/rce/contentInsertion.js +3 -1
  2042. package/lib/translated/fr/modules/rce/initA11yChecker.js +0 -3
  2043. package/lib/translated/fr/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2044. package/lib/translated/fr/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2045. package/lib/translated/fr/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2046. package/lib/translated/fr/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2047. package/lib/translated/fr/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2048. package/lib/translated/fr/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2049. package/lib/translated/fr/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2050. package/lib/translated/fr/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2051. package/lib/translated/fr/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2052. package/lib/translated/fr/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2053. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2054. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2055. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2056. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2057. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2058. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2059. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2060. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2061. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2062. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2063. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2064. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2065. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2066. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2067. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2068. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2069. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2070. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2071. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2072. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2073. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2074. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2075. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2076. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2077. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2078. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2079. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2080. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2081. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2082. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2083. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2084. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2085. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2086. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2087. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2088. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2089. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2090. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2091. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2092. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2093. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2094. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2095. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2096. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2097. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2098. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2099. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2100. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2101. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2102. package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2103. package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2104. package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2105. package/lib/translated/fr/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2106. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2107. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2108. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2109. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2110. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2111. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2112. package/lib/translated/fr/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2113. package/lib/translated/fr/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2114. package/lib/translated/fr/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2115. package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2116. package/lib/translated/fr/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2117. package/lib/translated/fr/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2118. package/lib/translated/fr/modules/rce/plugins/shared/ColorInput.js +4 -3
  2119. package/lib/translated/fr/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2120. package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2121. package/lib/translated/fr/modules/rce/plugins/shared/Filter.js +6 -5
  2122. package/lib/translated/fr/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2123. package/lib/translated/fr/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2124. package/lib/translated/fr/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2125. package/lib/translated/fr/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2126. package/lib/translated/fr/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2127. package/lib/translated/fr/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2128. package/lib/translated/fr/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2129. package/lib/translated/fr/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2130. package/lib/translated/fr/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2131. package/lib/translated/fr/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2132. package/lib/translated/fr/modules/rce/plugins/shared/linkUtils.js +58 -0
  2133. package/lib/translated/fr/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2134. package/lib/translated/fr/modules/rce/userOS.js +31 -0
  2135. package/lib/translated/fr_CA/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2136. package/lib/translated/fr_CA/modules/common/components/LoadMore.js +2 -1
  2137. package/lib/translated/fr_CA/modules/rce/KeyboardShortcutModal.js +10 -7
  2138. package/lib/translated/fr_CA/modules/rce/RCE.js +12 -6
  2139. package/lib/translated/fr_CA/modules/rce/RCEGlobals.js +62 -0
  2140. package/lib/translated/fr_CA/modules/rce/RCEWrapper.js +49 -19
  2141. package/lib/translated/fr_CA/modules/rce/RestoreAutoSaveModal.js +4 -3
  2142. package/lib/translated/fr_CA/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2143. package/lib/translated/fr_CA/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2144. package/lib/translated/fr_CA/modules/rce/__tests__/userOS.test.js +68 -0
  2145. package/lib/translated/fr_CA/modules/rce/contentInsertion.js +3 -1
  2146. package/lib/translated/fr_CA/modules/rce/initA11yChecker.js +0 -3
  2147. package/lib/translated/fr_CA/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2148. package/lib/translated/fr_CA/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2149. package/lib/translated/fr_CA/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2150. package/lib/translated/fr_CA/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2151. package/lib/translated/fr_CA/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2152. package/lib/translated/fr_CA/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2153. package/lib/translated/fr_CA/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2154. package/lib/translated/fr_CA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2155. package/lib/translated/fr_CA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2156. package/lib/translated/fr_CA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2157. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2158. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2159. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2160. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2161. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2162. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2163. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2164. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2165. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2166. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2167. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2168. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2169. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2170. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2171. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2172. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2173. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2174. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2175. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2176. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2177. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2178. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2179. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2180. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2181. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2182. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2183. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2184. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2185. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2186. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2187. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2188. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2189. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2190. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2191. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2192. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2193. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2194. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2195. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2196. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2197. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2198. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2199. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2200. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2201. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2202. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2203. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2204. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2205. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2206. package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2207. package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2208. package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2209. package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2210. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2211. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2212. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2213. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2214. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2215. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2216. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2217. package/lib/translated/fr_CA/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2218. package/lib/translated/fr_CA/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2219. package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2220. package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2221. package/lib/translated/fr_CA/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2222. package/lib/translated/fr_CA/modules/rce/plugins/shared/ColorInput.js +4 -3
  2223. package/lib/translated/fr_CA/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2224. package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2225. package/lib/translated/fr_CA/modules/rce/plugins/shared/Filter.js +6 -5
  2226. package/lib/translated/fr_CA/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2227. package/lib/translated/fr_CA/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2228. package/lib/translated/fr_CA/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2229. package/lib/translated/fr_CA/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2230. package/lib/translated/fr_CA/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2231. package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2232. package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2233. package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2234. package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2235. package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2236. package/lib/translated/fr_CA/modules/rce/plugins/shared/linkUtils.js +58 -0
  2237. package/lib/translated/fr_CA/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2238. package/lib/translated/fr_CA/modules/rce/userOS.js +31 -0
  2239. package/lib/translated/he/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2240. package/lib/translated/he/modules/common/components/LoadMore.js +2 -1
  2241. package/lib/translated/he/modules/rce/KeyboardShortcutModal.js +10 -7
  2242. package/lib/translated/he/modules/rce/RCE.js +12 -6
  2243. package/lib/translated/he/modules/rce/RCEGlobals.js +62 -0
  2244. package/lib/translated/he/modules/rce/RCEWrapper.js +49 -19
  2245. package/lib/translated/he/modules/rce/RestoreAutoSaveModal.js +4 -3
  2246. package/lib/translated/he/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2247. package/lib/translated/he/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2248. package/lib/translated/he/modules/rce/__tests__/userOS.test.js +68 -0
  2249. package/lib/translated/he/modules/rce/contentInsertion.js +3 -1
  2250. package/lib/translated/he/modules/rce/initA11yChecker.js +0 -3
  2251. package/lib/translated/he/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2252. package/lib/translated/he/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2253. package/lib/translated/he/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2254. package/lib/translated/he/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2255. package/lib/translated/he/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2256. package/lib/translated/he/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2257. package/lib/translated/he/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2258. package/lib/translated/he/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2259. package/lib/translated/he/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2260. package/lib/translated/he/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2261. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2262. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2263. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2264. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2265. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2266. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2267. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2268. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2269. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2270. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2271. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2272. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2273. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2274. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2275. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2276. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2277. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2278. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2279. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2280. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2281. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2282. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2283. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2284. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2285. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2286. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2287. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2288. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2289. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2290. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2291. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2292. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2293. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2294. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2295. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2296. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2297. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2298. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2299. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2300. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2301. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2302. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2303. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2304. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2305. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2306. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2307. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2308. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2309. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2310. package/lib/translated/he/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2311. package/lib/translated/he/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2312. package/lib/translated/he/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2313. package/lib/translated/he/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2314. package/lib/translated/he/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2315. package/lib/translated/he/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2316. package/lib/translated/he/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2317. package/lib/translated/he/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2318. package/lib/translated/he/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2319. package/lib/translated/he/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2320. package/lib/translated/he/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2321. package/lib/translated/he/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2322. package/lib/translated/he/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2323. package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2324. package/lib/translated/he/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2325. package/lib/translated/he/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2326. package/lib/translated/he/modules/rce/plugins/shared/ColorInput.js +4 -3
  2327. package/lib/translated/he/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2328. package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2329. package/lib/translated/he/modules/rce/plugins/shared/Filter.js +6 -5
  2330. package/lib/translated/he/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2331. package/lib/translated/he/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2332. package/lib/translated/he/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2333. package/lib/translated/he/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2334. package/lib/translated/he/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2335. package/lib/translated/he/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2336. package/lib/translated/he/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2337. package/lib/translated/he/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2338. package/lib/translated/he/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2339. package/lib/translated/he/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2340. package/lib/translated/he/modules/rce/plugins/shared/linkUtils.js +58 -0
  2341. package/lib/translated/he/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2342. package/lib/translated/he/modules/rce/userOS.js +31 -0
  2343. package/lib/translated/ht/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2344. package/lib/translated/ht/modules/common/components/LoadMore.js +2 -1
  2345. package/lib/translated/ht/modules/rce/KeyboardShortcutModal.js +10 -7
  2346. package/lib/translated/ht/modules/rce/RCE.js +12 -6
  2347. package/lib/translated/ht/modules/rce/RCEGlobals.js +62 -0
  2348. package/lib/translated/ht/modules/rce/RCEWrapper.js +49 -19
  2349. package/lib/translated/ht/modules/rce/RestoreAutoSaveModal.js +4 -3
  2350. package/lib/translated/ht/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2351. package/lib/translated/ht/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2352. package/lib/translated/ht/modules/rce/__tests__/userOS.test.js +68 -0
  2353. package/lib/translated/ht/modules/rce/contentInsertion.js +3 -1
  2354. package/lib/translated/ht/modules/rce/initA11yChecker.js +0 -3
  2355. package/lib/translated/ht/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2356. package/lib/translated/ht/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2357. package/lib/translated/ht/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2358. package/lib/translated/ht/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2359. package/lib/translated/ht/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2360. package/lib/translated/ht/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2361. package/lib/translated/ht/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2362. package/lib/translated/ht/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2363. package/lib/translated/ht/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2364. package/lib/translated/ht/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2365. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2366. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2367. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2368. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2369. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2370. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2371. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2372. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2373. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2374. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2375. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2376. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2377. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2378. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2379. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2380. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2381. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2382. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2383. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2384. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2385. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2386. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2387. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2388. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2389. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2390. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2391. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2392. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2393. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2394. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2395. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2396. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2397. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2398. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2399. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2400. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2401. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2402. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2403. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2404. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2405. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2406. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2407. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2408. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2409. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2410. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2411. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2412. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2413. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2414. package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2415. package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2416. package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2417. package/lib/translated/ht/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2418. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2419. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2420. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2421. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2422. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2423. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2424. package/lib/translated/ht/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2425. package/lib/translated/ht/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2426. package/lib/translated/ht/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2427. package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2428. package/lib/translated/ht/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2429. package/lib/translated/ht/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2430. package/lib/translated/ht/modules/rce/plugins/shared/ColorInput.js +4 -3
  2431. package/lib/translated/ht/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2432. package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2433. package/lib/translated/ht/modules/rce/plugins/shared/Filter.js +6 -5
  2434. package/lib/translated/ht/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2435. package/lib/translated/ht/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2436. package/lib/translated/ht/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2437. package/lib/translated/ht/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2438. package/lib/translated/ht/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2439. package/lib/translated/ht/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2440. package/lib/translated/ht/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2441. package/lib/translated/ht/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2442. package/lib/translated/ht/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2443. package/lib/translated/ht/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2444. package/lib/translated/ht/modules/rce/plugins/shared/linkUtils.js +58 -0
  2445. package/lib/translated/ht/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2446. package/lib/translated/ht/modules/rce/userOS.js +31 -0
  2447. package/lib/translated/hu/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2448. package/lib/translated/hu/modules/common/components/LoadMore.js +2 -1
  2449. package/lib/translated/hu/modules/rce/KeyboardShortcutModal.js +10 -7
  2450. package/lib/translated/hu/modules/rce/RCE.js +12 -6
  2451. package/lib/translated/hu/modules/rce/RCEGlobals.js +62 -0
  2452. package/lib/translated/hu/modules/rce/RCEWrapper.js +49 -19
  2453. package/lib/translated/hu/modules/rce/RestoreAutoSaveModal.js +4 -3
  2454. package/lib/translated/hu/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2455. package/lib/translated/hu/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2456. package/lib/translated/hu/modules/rce/__tests__/userOS.test.js +68 -0
  2457. package/lib/translated/hu/modules/rce/contentInsertion.js +3 -1
  2458. package/lib/translated/hu/modules/rce/initA11yChecker.js +0 -3
  2459. package/lib/translated/hu/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2460. package/lib/translated/hu/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2461. package/lib/translated/hu/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2462. package/lib/translated/hu/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2463. package/lib/translated/hu/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2464. package/lib/translated/hu/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2465. package/lib/translated/hu/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2466. package/lib/translated/hu/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2467. package/lib/translated/hu/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2468. package/lib/translated/hu/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2469. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2470. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2471. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2472. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2473. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2474. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2475. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2476. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2477. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2478. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2479. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2480. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2481. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2482. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2483. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2484. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2485. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2486. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2487. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2488. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2489. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2490. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2491. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2492. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2493. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2494. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2495. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2496. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2497. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2498. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2499. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2500. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2501. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2502. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2503. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2504. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2505. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2506. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2507. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2508. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2509. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2510. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2511. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2512. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2513. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2514. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2515. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2516. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2517. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2518. package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2519. package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2520. package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2521. package/lib/translated/hu/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2522. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2523. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2524. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2525. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2526. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2527. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2528. package/lib/translated/hu/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2529. package/lib/translated/hu/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2530. package/lib/translated/hu/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2531. package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2532. package/lib/translated/hu/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2533. package/lib/translated/hu/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2534. package/lib/translated/hu/modules/rce/plugins/shared/ColorInput.js +4 -3
  2535. package/lib/translated/hu/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2536. package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2537. package/lib/translated/hu/modules/rce/plugins/shared/Filter.js +6 -5
  2538. package/lib/translated/hu/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2539. package/lib/translated/hu/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2540. package/lib/translated/hu/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2541. package/lib/translated/hu/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2542. package/lib/translated/hu/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2543. package/lib/translated/hu/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2544. package/lib/translated/hu/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2545. package/lib/translated/hu/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2546. package/lib/translated/hu/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2547. package/lib/translated/hu/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2548. package/lib/translated/hu/modules/rce/plugins/shared/linkUtils.js +58 -0
  2549. package/lib/translated/hu/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2550. package/lib/translated/hu/modules/rce/userOS.js +31 -0
  2551. package/lib/translated/hy/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2552. package/lib/translated/hy/modules/common/components/LoadMore.js +2 -1
  2553. package/lib/translated/hy/modules/rce/KeyboardShortcutModal.js +10 -7
  2554. package/lib/translated/hy/modules/rce/RCE.js +12 -6
  2555. package/lib/translated/hy/modules/rce/RCEGlobals.js +62 -0
  2556. package/lib/translated/hy/modules/rce/RCEWrapper.js +49 -19
  2557. package/lib/translated/hy/modules/rce/RestoreAutoSaveModal.js +4 -3
  2558. package/lib/translated/hy/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2559. package/lib/translated/hy/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2560. package/lib/translated/hy/modules/rce/__tests__/userOS.test.js +68 -0
  2561. package/lib/translated/hy/modules/rce/contentInsertion.js +3 -1
  2562. package/lib/translated/hy/modules/rce/initA11yChecker.js +0 -3
  2563. package/lib/translated/hy/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2564. package/lib/translated/hy/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2565. package/lib/translated/hy/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2566. package/lib/translated/hy/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2567. package/lib/translated/hy/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2568. package/lib/translated/hy/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2569. package/lib/translated/hy/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2570. package/lib/translated/hy/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2571. package/lib/translated/hy/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2572. package/lib/translated/hy/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2573. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2574. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2575. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2576. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2577. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2578. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2579. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2580. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2581. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2582. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2583. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2584. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2585. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2586. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2587. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2588. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2589. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2590. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2591. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2592. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2593. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2594. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2595. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2596. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2597. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2598. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2599. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2600. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2601. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2602. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2603. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2604. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2605. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2606. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2607. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2608. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2609. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2610. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2611. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2612. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2613. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2614. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2615. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2616. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2617. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2618. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2619. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2620. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2621. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2622. package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2623. package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2624. package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2625. package/lib/translated/hy/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2626. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2627. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2628. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2629. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2630. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2631. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2632. package/lib/translated/hy/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2633. package/lib/translated/hy/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2634. package/lib/translated/hy/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2635. package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2636. package/lib/translated/hy/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2637. package/lib/translated/hy/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2638. package/lib/translated/hy/modules/rce/plugins/shared/ColorInput.js +4 -3
  2639. package/lib/translated/hy/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2640. package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2641. package/lib/translated/hy/modules/rce/plugins/shared/Filter.js +6 -5
  2642. package/lib/translated/hy/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2643. package/lib/translated/hy/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2644. package/lib/translated/hy/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2645. package/lib/translated/hy/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2646. package/lib/translated/hy/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2647. package/lib/translated/hy/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2648. package/lib/translated/hy/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2649. package/lib/translated/hy/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2650. package/lib/translated/hy/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2651. package/lib/translated/hy/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2652. package/lib/translated/hy/modules/rce/plugins/shared/linkUtils.js +58 -0
  2653. package/lib/translated/hy/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2654. package/lib/translated/hy/modules/rce/userOS.js +31 -0
  2655. package/lib/translated/is/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2656. package/lib/translated/is/modules/common/components/LoadMore.js +2 -1
  2657. package/lib/translated/is/modules/rce/KeyboardShortcutModal.js +10 -7
  2658. package/lib/translated/is/modules/rce/RCE.js +12 -6
  2659. package/lib/translated/is/modules/rce/RCEGlobals.js +62 -0
  2660. package/lib/translated/is/modules/rce/RCEWrapper.js +49 -19
  2661. package/lib/translated/is/modules/rce/RestoreAutoSaveModal.js +4 -3
  2662. package/lib/translated/is/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2663. package/lib/translated/is/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2664. package/lib/translated/is/modules/rce/__tests__/userOS.test.js +68 -0
  2665. package/lib/translated/is/modules/rce/contentInsertion.js +3 -1
  2666. package/lib/translated/is/modules/rce/initA11yChecker.js +0 -3
  2667. package/lib/translated/is/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2668. package/lib/translated/is/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2669. package/lib/translated/is/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2670. package/lib/translated/is/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2671. package/lib/translated/is/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2672. package/lib/translated/is/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2673. package/lib/translated/is/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2674. package/lib/translated/is/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2675. package/lib/translated/is/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2676. package/lib/translated/is/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2677. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2678. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2679. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2680. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2681. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2682. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2683. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2684. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2685. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2686. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2687. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2688. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2689. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2690. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2691. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2692. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2693. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2694. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2695. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2696. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2697. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2698. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2699. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2700. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2701. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2702. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2703. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2704. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2705. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2706. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2707. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2708. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2709. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2710. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2711. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2712. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2713. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2714. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2715. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2716. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2717. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2718. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2719. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2720. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2721. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2722. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2723. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2724. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2725. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2726. package/lib/translated/is/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2727. package/lib/translated/is/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2728. package/lib/translated/is/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2729. package/lib/translated/is/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2730. package/lib/translated/is/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2731. package/lib/translated/is/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2732. package/lib/translated/is/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2733. package/lib/translated/is/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2734. package/lib/translated/is/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2735. package/lib/translated/is/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2736. package/lib/translated/is/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2737. package/lib/translated/is/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2738. package/lib/translated/is/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2739. package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2740. package/lib/translated/is/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2741. package/lib/translated/is/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2742. package/lib/translated/is/modules/rce/plugins/shared/ColorInput.js +4 -3
  2743. package/lib/translated/is/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2744. package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2745. package/lib/translated/is/modules/rce/plugins/shared/Filter.js +6 -5
  2746. package/lib/translated/is/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2747. package/lib/translated/is/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2748. package/lib/translated/is/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2749. package/lib/translated/is/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2750. package/lib/translated/is/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2751. package/lib/translated/is/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2752. package/lib/translated/is/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2753. package/lib/translated/is/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2754. package/lib/translated/is/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2755. package/lib/translated/is/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2756. package/lib/translated/is/modules/rce/plugins/shared/linkUtils.js +58 -0
  2757. package/lib/translated/is/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2758. package/lib/translated/is/modules/rce/userOS.js +31 -0
  2759. package/lib/translated/it/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2760. package/lib/translated/it/modules/common/components/LoadMore.js +2 -1
  2761. package/lib/translated/it/modules/rce/KeyboardShortcutModal.js +10 -7
  2762. package/lib/translated/it/modules/rce/RCE.js +12 -6
  2763. package/lib/translated/it/modules/rce/RCEGlobals.js +62 -0
  2764. package/lib/translated/it/modules/rce/RCEWrapper.js +49 -19
  2765. package/lib/translated/it/modules/rce/RestoreAutoSaveModal.js +4 -3
  2766. package/lib/translated/it/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2767. package/lib/translated/it/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2768. package/lib/translated/it/modules/rce/__tests__/userOS.test.js +68 -0
  2769. package/lib/translated/it/modules/rce/contentInsertion.js +3 -1
  2770. package/lib/translated/it/modules/rce/initA11yChecker.js +0 -3
  2771. package/lib/translated/it/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2772. package/lib/translated/it/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2773. package/lib/translated/it/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2774. package/lib/translated/it/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2775. package/lib/translated/it/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2776. package/lib/translated/it/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2777. package/lib/translated/it/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2778. package/lib/translated/it/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2779. package/lib/translated/it/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2780. package/lib/translated/it/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2781. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2782. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2783. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2784. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2785. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2786. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2787. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2788. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2789. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2790. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2791. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2792. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2793. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2794. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2795. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2796. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2797. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2798. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2799. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2800. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2801. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2802. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2803. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2804. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2805. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2806. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2807. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2808. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2809. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2810. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2811. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2812. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2813. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2814. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2815. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2816. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2817. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2818. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2819. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2820. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2821. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2822. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2823. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2824. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2825. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2826. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2827. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2828. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2829. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2830. package/lib/translated/it/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2831. package/lib/translated/it/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2832. package/lib/translated/it/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2833. package/lib/translated/it/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2834. package/lib/translated/it/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2835. package/lib/translated/it/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2836. package/lib/translated/it/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2837. package/lib/translated/it/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2838. package/lib/translated/it/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2839. package/lib/translated/it/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2840. package/lib/translated/it/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2841. package/lib/translated/it/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2842. package/lib/translated/it/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2843. package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2844. package/lib/translated/it/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2845. package/lib/translated/it/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2846. package/lib/translated/it/modules/rce/plugins/shared/ColorInput.js +4 -3
  2847. package/lib/translated/it/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2848. package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2849. package/lib/translated/it/modules/rce/plugins/shared/Filter.js +6 -5
  2850. package/lib/translated/it/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2851. package/lib/translated/it/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2852. package/lib/translated/it/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2853. package/lib/translated/it/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2854. package/lib/translated/it/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2855. package/lib/translated/it/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2856. package/lib/translated/it/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2857. package/lib/translated/it/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2858. package/lib/translated/it/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2859. package/lib/translated/it/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2860. package/lib/translated/it/modules/rce/plugins/shared/linkUtils.js +58 -0
  2861. package/lib/translated/it/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2862. package/lib/translated/it/modules/rce/userOS.js +31 -0
  2863. package/lib/translated/ja/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2864. package/lib/translated/ja/modules/common/components/LoadMore.js +2 -1
  2865. package/lib/translated/ja/modules/rce/KeyboardShortcutModal.js +10 -7
  2866. package/lib/translated/ja/modules/rce/RCE.js +12 -6
  2867. package/lib/translated/ja/modules/rce/RCEGlobals.js +62 -0
  2868. package/lib/translated/ja/modules/rce/RCEWrapper.js +49 -19
  2869. package/lib/translated/ja/modules/rce/RestoreAutoSaveModal.js +4 -3
  2870. package/lib/translated/ja/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2871. package/lib/translated/ja/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2872. package/lib/translated/ja/modules/rce/__tests__/userOS.test.js +68 -0
  2873. package/lib/translated/ja/modules/rce/contentInsertion.js +3 -1
  2874. package/lib/translated/ja/modules/rce/initA11yChecker.js +0 -3
  2875. package/lib/translated/ja/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2876. package/lib/translated/ja/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2877. package/lib/translated/ja/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2878. package/lib/translated/ja/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2879. package/lib/translated/ja/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2880. package/lib/translated/ja/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2881. package/lib/translated/ja/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2882. package/lib/translated/ja/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2883. package/lib/translated/ja/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2884. package/lib/translated/ja/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2885. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2886. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2887. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2888. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2889. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2890. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2891. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2892. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2893. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2894. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2895. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  2896. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  2897. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  2898. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  2899. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  2900. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  2901. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  2902. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  2903. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  2904. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  2905. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  2906. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  2907. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  2908. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  2909. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  2910. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  2911. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  2912. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  2913. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  2914. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  2915. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  2916. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  2917. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  2918. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  2919. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  2920. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  2921. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  2922. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  2923. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  2924. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  2925. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  2926. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  2927. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  2928. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  2929. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  2930. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  2931. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  2932. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  2933. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  2934. package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  2935. package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  2936. package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  2937. package/lib/translated/ja/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  2938. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  2939. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  2940. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  2941. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  2942. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  2943. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  2944. package/lib/translated/ja/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  2945. package/lib/translated/ja/modules/rce/plugins/instructure_links/plugin.js +18 -3
  2946. package/lib/translated/ja/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  2947. package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  2948. package/lib/translated/ja/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  2949. package/lib/translated/ja/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  2950. package/lib/translated/ja/modules/rce/plugins/shared/ColorInput.js +4 -3
  2951. package/lib/translated/ja/modules/rce/plugins/shared/ContentSelection.js +7 -1
  2952. package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  2953. package/lib/translated/ja/modules/rce/plugins/shared/Filter.js +6 -5
  2954. package/lib/translated/ja/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  2955. package/lib/translated/ja/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  2956. package/lib/translated/ja/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  2957. package/lib/translated/ja/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  2958. package/lib/translated/ja/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  2959. package/lib/translated/ja/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  2960. package/lib/translated/ja/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  2961. package/lib/translated/ja/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  2962. package/lib/translated/ja/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  2963. package/lib/translated/ja/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  2964. package/lib/translated/ja/modules/rce/plugins/shared/linkUtils.js +58 -0
  2965. package/lib/translated/ja/modules/rce/plugins/shared/useDataUrl.js +14 -4
  2966. package/lib/translated/ja/modules/rce/userOS.js +31 -0
  2967. package/lib/translated/ko/modules/canvasFileBrowser/FlashAlert.js +8 -5
  2968. package/lib/translated/ko/modules/common/components/LoadMore.js +2 -1
  2969. package/lib/translated/ko/modules/rce/KeyboardShortcutModal.js +10 -7
  2970. package/lib/translated/ko/modules/rce/RCE.js +12 -6
  2971. package/lib/translated/ko/modules/rce/RCEGlobals.js +62 -0
  2972. package/lib/translated/ko/modules/rce/RCEWrapper.js +49 -19
  2973. package/lib/translated/ko/modules/rce/RestoreAutoSaveModal.js +4 -3
  2974. package/lib/translated/ko/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  2975. package/lib/translated/ko/modules/rce/__tests__/contentInsertion.test.js +6 -0
  2976. package/lib/translated/ko/modules/rce/__tests__/userOS.test.js +68 -0
  2977. package/lib/translated/ko/modules/rce/contentInsertion.js +3 -1
  2978. package/lib/translated/ko/modules/rce/initA11yChecker.js +0 -3
  2979. package/lib/translated/ko/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  2980. package/lib/translated/ko/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  2981. package/lib/translated/ko/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  2982. package/lib/translated/ko/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  2983. package/lib/translated/ko/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  2984. package/lib/translated/ko/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  2985. package/lib/translated/ko/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  2986. package/lib/translated/ko/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  2987. package/lib/translated/ko/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  2988. package/lib/translated/ko/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  2989. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  2990. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  2991. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  2992. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  2993. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  2994. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  2995. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  2996. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  2997. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  2998. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  2999. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3000. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3001. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3002. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3003. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3004. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3005. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3006. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3007. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3008. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3009. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3010. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3011. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3012. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3013. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3014. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3015. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3016. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3017. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3018. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3019. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3020. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3021. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3022. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3023. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3024. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3025. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3026. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3027. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3028. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3029. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3030. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3031. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3032. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3033. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3034. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3035. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3036. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3037. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3038. package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3039. package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3040. package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3041. package/lib/translated/ko/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3042. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3043. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3044. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3045. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3046. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3047. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3048. package/lib/translated/ko/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3049. package/lib/translated/ko/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3050. package/lib/translated/ko/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3051. package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3052. package/lib/translated/ko/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3053. package/lib/translated/ko/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3054. package/lib/translated/ko/modules/rce/plugins/shared/ColorInput.js +4 -3
  3055. package/lib/translated/ko/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3056. package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3057. package/lib/translated/ko/modules/rce/plugins/shared/Filter.js +6 -5
  3058. package/lib/translated/ko/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3059. package/lib/translated/ko/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3060. package/lib/translated/ko/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3061. package/lib/translated/ko/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3062. package/lib/translated/ko/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3063. package/lib/translated/ko/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3064. package/lib/translated/ko/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3065. package/lib/translated/ko/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3066. package/lib/translated/ko/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3067. package/lib/translated/ko/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3068. package/lib/translated/ko/modules/rce/plugins/shared/linkUtils.js +58 -0
  3069. package/lib/translated/ko/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3070. package/lib/translated/ko/modules/rce/userOS.js +31 -0
  3071. package/lib/translated/mi/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3072. package/lib/translated/mi/modules/common/components/LoadMore.js +2 -1
  3073. package/lib/translated/mi/modules/rce/KeyboardShortcutModal.js +10 -7
  3074. package/lib/translated/mi/modules/rce/RCE.js +12 -6
  3075. package/lib/translated/mi/modules/rce/RCEGlobals.js +62 -0
  3076. package/lib/translated/mi/modules/rce/RCEWrapper.js +49 -19
  3077. package/lib/translated/mi/modules/rce/RestoreAutoSaveModal.js +4 -3
  3078. package/lib/translated/mi/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3079. package/lib/translated/mi/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3080. package/lib/translated/mi/modules/rce/__tests__/userOS.test.js +68 -0
  3081. package/lib/translated/mi/modules/rce/contentInsertion.js +3 -1
  3082. package/lib/translated/mi/modules/rce/initA11yChecker.js +0 -3
  3083. package/lib/translated/mi/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3084. package/lib/translated/mi/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3085. package/lib/translated/mi/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3086. package/lib/translated/mi/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3087. package/lib/translated/mi/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3088. package/lib/translated/mi/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3089. package/lib/translated/mi/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3090. package/lib/translated/mi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3091. package/lib/translated/mi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3092. package/lib/translated/mi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3093. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3094. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3095. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3096. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3097. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3098. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3099. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3100. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3101. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3102. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3103. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3104. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3105. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3106. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3107. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3108. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3109. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3110. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3111. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3112. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3113. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3114. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3115. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3116. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3117. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3118. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3119. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3120. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3121. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3122. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3123. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3124. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3125. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3126. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3127. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3128. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3129. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3130. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3131. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3132. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3133. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3134. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3135. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3136. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3137. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3138. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3139. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3140. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3141. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3142. package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3143. package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3144. package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3145. package/lib/translated/mi/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3146. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3147. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3148. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3149. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3150. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3151. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3152. package/lib/translated/mi/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3153. package/lib/translated/mi/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3154. package/lib/translated/mi/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3155. package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3156. package/lib/translated/mi/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3157. package/lib/translated/mi/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3158. package/lib/translated/mi/modules/rce/plugins/shared/ColorInput.js +4 -3
  3159. package/lib/translated/mi/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3160. package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3161. package/lib/translated/mi/modules/rce/plugins/shared/Filter.js +6 -5
  3162. package/lib/translated/mi/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3163. package/lib/translated/mi/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3164. package/lib/translated/mi/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3165. package/lib/translated/mi/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3166. package/lib/translated/mi/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3167. package/lib/translated/mi/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3168. package/lib/translated/mi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3169. package/lib/translated/mi/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3170. package/lib/translated/mi/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3171. package/lib/translated/mi/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3172. package/lib/translated/mi/modules/rce/plugins/shared/linkUtils.js +58 -0
  3173. package/lib/translated/mi/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3174. package/lib/translated/mi/modules/rce/userOS.js +31 -0
  3175. package/lib/translated/nb/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3176. package/lib/translated/nb/modules/common/components/LoadMore.js +2 -1
  3177. package/lib/translated/nb/modules/rce/KeyboardShortcutModal.js +10 -7
  3178. package/lib/translated/nb/modules/rce/RCE.js +12 -6
  3179. package/lib/translated/nb/modules/rce/RCEGlobals.js +62 -0
  3180. package/lib/translated/nb/modules/rce/RCEWrapper.js +49 -19
  3181. package/lib/translated/nb/modules/rce/RestoreAutoSaveModal.js +4 -3
  3182. package/lib/translated/nb/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3183. package/lib/translated/nb/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3184. package/lib/translated/nb/modules/rce/__tests__/userOS.test.js +68 -0
  3185. package/lib/translated/nb/modules/rce/contentInsertion.js +3 -1
  3186. package/lib/translated/nb/modules/rce/initA11yChecker.js +0 -3
  3187. package/lib/translated/nb/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3188. package/lib/translated/nb/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3189. package/lib/translated/nb/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3190. package/lib/translated/nb/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3191. package/lib/translated/nb/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3192. package/lib/translated/nb/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3193. package/lib/translated/nb/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3194. package/lib/translated/nb/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3195. package/lib/translated/nb/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3196. package/lib/translated/nb/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3197. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3198. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3199. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3200. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3201. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3202. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3203. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3204. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3205. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3206. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3207. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3208. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3209. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3210. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3211. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3212. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3213. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3214. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3215. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3216. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3217. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3218. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3219. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3220. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3221. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3222. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3223. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3224. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3225. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3226. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3227. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3228. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3229. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3230. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3231. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3232. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3233. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3234. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3235. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3236. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3237. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3238. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3239. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3240. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3241. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3242. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3243. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3244. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3245. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3246. package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3247. package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3248. package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3249. package/lib/translated/nb/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3250. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3251. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3252. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3253. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3254. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3255. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3256. package/lib/translated/nb/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3257. package/lib/translated/nb/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3258. package/lib/translated/nb/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3259. package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3260. package/lib/translated/nb/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3261. package/lib/translated/nb/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3262. package/lib/translated/nb/modules/rce/plugins/shared/ColorInput.js +4 -3
  3263. package/lib/translated/nb/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3264. package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3265. package/lib/translated/nb/modules/rce/plugins/shared/Filter.js +6 -5
  3266. package/lib/translated/nb/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3267. package/lib/translated/nb/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3268. package/lib/translated/nb/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3269. package/lib/translated/nb/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3270. package/lib/translated/nb/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3271. package/lib/translated/nb/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3272. package/lib/translated/nb/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3273. package/lib/translated/nb/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3274. package/lib/translated/nb/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3275. package/lib/translated/nb/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3276. package/lib/translated/nb/modules/rce/plugins/shared/linkUtils.js +58 -0
  3277. package/lib/translated/nb/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3278. package/lib/translated/nb/modules/rce/userOS.js +31 -0
  3279. package/lib/translated/nb-x-k12/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3280. package/lib/translated/nb-x-k12/modules/common/components/LoadMore.js +2 -1
  3281. package/lib/translated/nb-x-k12/modules/rce/KeyboardShortcutModal.js +10 -7
  3282. package/lib/translated/nb-x-k12/modules/rce/RCE.js +12 -6
  3283. package/lib/translated/nb-x-k12/modules/rce/RCEGlobals.js +62 -0
  3284. package/lib/translated/nb-x-k12/modules/rce/RCEWrapper.js +49 -19
  3285. package/lib/translated/nb-x-k12/modules/rce/RestoreAutoSaveModal.js +4 -3
  3286. package/lib/translated/nb-x-k12/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3287. package/lib/translated/nb-x-k12/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3288. package/lib/translated/nb-x-k12/modules/rce/__tests__/userOS.test.js +68 -0
  3289. package/lib/translated/nb-x-k12/modules/rce/contentInsertion.js +3 -1
  3290. package/lib/translated/nb-x-k12/modules/rce/initA11yChecker.js +0 -3
  3291. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3292. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3293. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3294. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3295. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3296. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3297. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3298. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3299. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3300. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3301. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3302. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3303. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3304. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3305. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3306. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3307. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3308. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3309. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3310. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3311. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3312. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3313. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3314. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3315. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3316. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3317. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3318. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3319. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3320. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3321. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3322. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3323. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3324. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3325. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3326. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3327. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3328. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3329. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3330. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3331. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3332. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3333. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3334. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3335. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3336. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3337. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3338. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3339. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3340. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3341. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3342. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3343. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3344. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3345. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3346. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3347. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3348. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3349. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3350. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3351. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3352. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3353. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3354. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3355. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3356. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3357. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3358. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3359. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3360. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3361. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3362. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3363. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3364. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3365. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3366. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ColorInput.js +4 -3
  3367. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3368. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3369. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/Filter.js +6 -5
  3370. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3371. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3372. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3373. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3374. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3375. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3376. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3377. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3378. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3379. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3380. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/linkUtils.js +58 -0
  3381. package/lib/translated/nb-x-k12/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3382. package/lib/translated/nb-x-k12/modules/rce/userOS.js +31 -0
  3383. package/lib/translated/nl/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3384. package/lib/translated/nl/modules/common/components/LoadMore.js +2 -1
  3385. package/lib/translated/nl/modules/rce/KeyboardShortcutModal.js +10 -7
  3386. package/lib/translated/nl/modules/rce/RCE.js +12 -6
  3387. package/lib/translated/nl/modules/rce/RCEGlobals.js +62 -0
  3388. package/lib/translated/nl/modules/rce/RCEWrapper.js +49 -19
  3389. package/lib/translated/nl/modules/rce/RestoreAutoSaveModal.js +4 -3
  3390. package/lib/translated/nl/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3391. package/lib/translated/nl/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3392. package/lib/translated/nl/modules/rce/__tests__/userOS.test.js +68 -0
  3393. package/lib/translated/nl/modules/rce/contentInsertion.js +3 -1
  3394. package/lib/translated/nl/modules/rce/initA11yChecker.js +0 -3
  3395. package/lib/translated/nl/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3396. package/lib/translated/nl/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3397. package/lib/translated/nl/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3398. package/lib/translated/nl/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3399. package/lib/translated/nl/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3400. package/lib/translated/nl/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3401. package/lib/translated/nl/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3402. package/lib/translated/nl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3403. package/lib/translated/nl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3404. package/lib/translated/nl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3405. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3406. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3407. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3408. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3409. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3410. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3411. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3412. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3413. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3414. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3415. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3416. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3417. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3418. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3419. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3420. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3421. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3422. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3423. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3424. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3425. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3426. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3427. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3428. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3429. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3430. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3431. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3432. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3433. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3434. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3435. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3436. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3437. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3438. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3439. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3440. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3441. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3442. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3443. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3444. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3445. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3446. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3447. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3448. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3449. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3450. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3451. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3452. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3453. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3454. package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3455. package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3456. package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3457. package/lib/translated/nl/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3458. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3459. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3460. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3461. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3462. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3463. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3464. package/lib/translated/nl/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3465. package/lib/translated/nl/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3466. package/lib/translated/nl/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3467. package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3468. package/lib/translated/nl/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3469. package/lib/translated/nl/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3470. package/lib/translated/nl/modules/rce/plugins/shared/ColorInput.js +4 -3
  3471. package/lib/translated/nl/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3472. package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3473. package/lib/translated/nl/modules/rce/plugins/shared/Filter.js +6 -5
  3474. package/lib/translated/nl/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3475. package/lib/translated/nl/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3476. package/lib/translated/nl/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3477. package/lib/translated/nl/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3478. package/lib/translated/nl/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3479. package/lib/translated/nl/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3480. package/lib/translated/nl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3481. package/lib/translated/nl/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3482. package/lib/translated/nl/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3483. package/lib/translated/nl/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3484. package/lib/translated/nl/modules/rce/plugins/shared/linkUtils.js +58 -0
  3485. package/lib/translated/nl/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3486. package/lib/translated/nl/modules/rce/userOS.js +31 -0
  3487. package/lib/translated/nn/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3488. package/lib/translated/nn/modules/common/components/LoadMore.js +2 -1
  3489. package/lib/translated/nn/modules/rce/KeyboardShortcutModal.js +10 -7
  3490. package/lib/translated/nn/modules/rce/RCE.js +12 -6
  3491. package/lib/translated/nn/modules/rce/RCEGlobals.js +62 -0
  3492. package/lib/translated/nn/modules/rce/RCEWrapper.js +49 -19
  3493. package/lib/translated/nn/modules/rce/RestoreAutoSaveModal.js +4 -3
  3494. package/lib/translated/nn/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3495. package/lib/translated/nn/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3496. package/lib/translated/nn/modules/rce/__tests__/userOS.test.js +68 -0
  3497. package/lib/translated/nn/modules/rce/contentInsertion.js +3 -1
  3498. package/lib/translated/nn/modules/rce/initA11yChecker.js +0 -3
  3499. package/lib/translated/nn/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3500. package/lib/translated/nn/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3501. package/lib/translated/nn/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3502. package/lib/translated/nn/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3503. package/lib/translated/nn/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3504. package/lib/translated/nn/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3505. package/lib/translated/nn/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3506. package/lib/translated/nn/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3507. package/lib/translated/nn/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3508. package/lib/translated/nn/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3509. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3510. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3511. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3512. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3513. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3514. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3515. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3516. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3517. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3518. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3519. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3520. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3521. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3522. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3523. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3524. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3525. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3526. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3527. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3528. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3529. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3530. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3531. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3532. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3533. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3534. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3535. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3536. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3537. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3538. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3539. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3540. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3541. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3542. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3543. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3544. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3545. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3546. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3547. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3548. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3549. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3550. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3551. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3552. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3553. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3554. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3555. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3556. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3557. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3558. package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3559. package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3560. package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3561. package/lib/translated/nn/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3562. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3563. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3564. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3565. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3566. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3567. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3568. package/lib/translated/nn/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3569. package/lib/translated/nn/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3570. package/lib/translated/nn/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3571. package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3572. package/lib/translated/nn/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3573. package/lib/translated/nn/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3574. package/lib/translated/nn/modules/rce/plugins/shared/ColorInput.js +4 -3
  3575. package/lib/translated/nn/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3576. package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3577. package/lib/translated/nn/modules/rce/plugins/shared/Filter.js +6 -5
  3578. package/lib/translated/nn/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3579. package/lib/translated/nn/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3580. package/lib/translated/nn/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3581. package/lib/translated/nn/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3582. package/lib/translated/nn/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3583. package/lib/translated/nn/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3584. package/lib/translated/nn/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3585. package/lib/translated/nn/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3586. package/lib/translated/nn/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3587. package/lib/translated/nn/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3588. package/lib/translated/nn/modules/rce/plugins/shared/linkUtils.js +58 -0
  3589. package/lib/translated/nn/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3590. package/lib/translated/nn/modules/rce/userOS.js +31 -0
  3591. package/lib/translated/pl/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3592. package/lib/translated/pl/modules/common/components/LoadMore.js +2 -1
  3593. package/lib/translated/pl/modules/rce/KeyboardShortcutModal.js +10 -7
  3594. package/lib/translated/pl/modules/rce/RCE.js +12 -6
  3595. package/lib/translated/pl/modules/rce/RCEGlobals.js +62 -0
  3596. package/lib/translated/pl/modules/rce/RCEWrapper.js +49 -19
  3597. package/lib/translated/pl/modules/rce/RestoreAutoSaveModal.js +4 -3
  3598. package/lib/translated/pl/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3599. package/lib/translated/pl/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3600. package/lib/translated/pl/modules/rce/__tests__/userOS.test.js +68 -0
  3601. package/lib/translated/pl/modules/rce/contentInsertion.js +3 -1
  3602. package/lib/translated/pl/modules/rce/initA11yChecker.js +0 -3
  3603. package/lib/translated/pl/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3604. package/lib/translated/pl/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3605. package/lib/translated/pl/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3606. package/lib/translated/pl/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3607. package/lib/translated/pl/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3608. package/lib/translated/pl/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3609. package/lib/translated/pl/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3610. package/lib/translated/pl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3611. package/lib/translated/pl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3612. package/lib/translated/pl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3613. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3614. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3615. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3616. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3617. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3618. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3619. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3620. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3621. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3622. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3623. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3624. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3625. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3626. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3627. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3628. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3629. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3630. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3631. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3632. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3633. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3634. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3635. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3636. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3637. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3638. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3639. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3640. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3641. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3642. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3643. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3644. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3645. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3646. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3647. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3648. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3649. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3650. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3651. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3652. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3653. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3654. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3655. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3656. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3657. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3658. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3659. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3660. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3661. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3662. package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3663. package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3664. package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3665. package/lib/translated/pl/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3666. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3667. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3668. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3669. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3670. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3671. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3672. package/lib/translated/pl/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3673. package/lib/translated/pl/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3674. package/lib/translated/pl/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3675. package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3676. package/lib/translated/pl/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3677. package/lib/translated/pl/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3678. package/lib/translated/pl/modules/rce/plugins/shared/ColorInput.js +4 -3
  3679. package/lib/translated/pl/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3680. package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3681. package/lib/translated/pl/modules/rce/plugins/shared/Filter.js +6 -5
  3682. package/lib/translated/pl/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3683. package/lib/translated/pl/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3684. package/lib/translated/pl/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3685. package/lib/translated/pl/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3686. package/lib/translated/pl/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3687. package/lib/translated/pl/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3688. package/lib/translated/pl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3689. package/lib/translated/pl/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3690. package/lib/translated/pl/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3691. package/lib/translated/pl/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3692. package/lib/translated/pl/modules/rce/plugins/shared/linkUtils.js +58 -0
  3693. package/lib/translated/pl/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3694. package/lib/translated/pl/modules/rce/userOS.js +31 -0
  3695. package/lib/translated/pt/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3696. package/lib/translated/pt/modules/common/components/LoadMore.js +2 -1
  3697. package/lib/translated/pt/modules/rce/KeyboardShortcutModal.js +10 -7
  3698. package/lib/translated/pt/modules/rce/RCE.js +12 -6
  3699. package/lib/translated/pt/modules/rce/RCEGlobals.js +62 -0
  3700. package/lib/translated/pt/modules/rce/RCEWrapper.js +49 -19
  3701. package/lib/translated/pt/modules/rce/RestoreAutoSaveModal.js +4 -3
  3702. package/lib/translated/pt/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3703. package/lib/translated/pt/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3704. package/lib/translated/pt/modules/rce/__tests__/userOS.test.js +68 -0
  3705. package/lib/translated/pt/modules/rce/contentInsertion.js +3 -1
  3706. package/lib/translated/pt/modules/rce/initA11yChecker.js +0 -3
  3707. package/lib/translated/pt/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3708. package/lib/translated/pt/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3709. package/lib/translated/pt/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3710. package/lib/translated/pt/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3711. package/lib/translated/pt/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3712. package/lib/translated/pt/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3713. package/lib/translated/pt/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3714. package/lib/translated/pt/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3715. package/lib/translated/pt/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3716. package/lib/translated/pt/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3717. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3718. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3719. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3720. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3721. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3722. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3723. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3724. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3725. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3726. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3727. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3728. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3729. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3730. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3731. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3732. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3733. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3734. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3735. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3736. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3737. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3738. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3739. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3740. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3741. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3742. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3743. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3744. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3745. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3746. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3747. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3748. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3749. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3750. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3751. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3752. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3753. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3754. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3755. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3756. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3757. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3758. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3759. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3760. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3761. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3762. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3763. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3764. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3765. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3766. package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3767. package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3768. package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3769. package/lib/translated/pt/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3770. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3771. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3772. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3773. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3774. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3775. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3776. package/lib/translated/pt/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3777. package/lib/translated/pt/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3778. package/lib/translated/pt/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3779. package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3780. package/lib/translated/pt/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3781. package/lib/translated/pt/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3782. package/lib/translated/pt/modules/rce/plugins/shared/ColorInput.js +4 -3
  3783. package/lib/translated/pt/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3784. package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3785. package/lib/translated/pt/modules/rce/plugins/shared/Filter.js +6 -5
  3786. package/lib/translated/pt/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3787. package/lib/translated/pt/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3788. package/lib/translated/pt/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3789. package/lib/translated/pt/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3790. package/lib/translated/pt/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3791. package/lib/translated/pt/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3792. package/lib/translated/pt/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3793. package/lib/translated/pt/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3794. package/lib/translated/pt/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3795. package/lib/translated/pt/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3796. package/lib/translated/pt/modules/rce/plugins/shared/linkUtils.js +58 -0
  3797. package/lib/translated/pt/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3798. package/lib/translated/pt/modules/rce/userOS.js +31 -0
  3799. package/lib/translated/pt_BR/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3800. package/lib/translated/pt_BR/modules/common/components/LoadMore.js +2 -1
  3801. package/lib/translated/pt_BR/modules/rce/KeyboardShortcutModal.js +10 -7
  3802. package/lib/translated/pt_BR/modules/rce/RCE.js +12 -6
  3803. package/lib/translated/pt_BR/modules/rce/RCEGlobals.js +62 -0
  3804. package/lib/translated/pt_BR/modules/rce/RCEWrapper.js +49 -19
  3805. package/lib/translated/pt_BR/modules/rce/RestoreAutoSaveModal.js +4 -3
  3806. package/lib/translated/pt_BR/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3807. package/lib/translated/pt_BR/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3808. package/lib/translated/pt_BR/modules/rce/__tests__/userOS.test.js +68 -0
  3809. package/lib/translated/pt_BR/modules/rce/contentInsertion.js +3 -1
  3810. package/lib/translated/pt_BR/modules/rce/initA11yChecker.js +0 -3
  3811. package/lib/translated/pt_BR/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3812. package/lib/translated/pt_BR/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3813. package/lib/translated/pt_BR/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3814. package/lib/translated/pt_BR/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3815. package/lib/translated/pt_BR/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3816. package/lib/translated/pt_BR/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3817. package/lib/translated/pt_BR/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3818. package/lib/translated/pt_BR/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3819. package/lib/translated/pt_BR/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3820. package/lib/translated/pt_BR/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3821. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3822. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3823. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3824. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3825. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3826. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3827. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3828. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3829. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3830. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3831. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3832. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3833. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3834. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3835. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3836. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3837. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3838. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3839. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3840. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3841. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3842. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3843. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3844. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3845. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3846. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3847. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3848. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3849. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3850. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3851. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3852. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3853. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3854. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3855. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3856. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3857. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3858. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3859. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3860. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3861. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3862. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3863. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3864. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3865. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3866. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3867. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3868. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3869. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3870. package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3871. package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3872. package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3873. package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3874. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3875. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3876. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3877. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3878. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3879. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3880. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3881. package/lib/translated/pt_BR/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3882. package/lib/translated/pt_BR/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3883. package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3884. package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3885. package/lib/translated/pt_BR/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3886. package/lib/translated/pt_BR/modules/rce/plugins/shared/ColorInput.js +4 -3
  3887. package/lib/translated/pt_BR/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3888. package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3889. package/lib/translated/pt_BR/modules/rce/plugins/shared/Filter.js +6 -5
  3890. package/lib/translated/pt_BR/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3891. package/lib/translated/pt_BR/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3892. package/lib/translated/pt_BR/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3893. package/lib/translated/pt_BR/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3894. package/lib/translated/pt_BR/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3895. package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  3896. package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  3897. package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  3898. package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  3899. package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  3900. package/lib/translated/pt_BR/modules/rce/plugins/shared/linkUtils.js +58 -0
  3901. package/lib/translated/pt_BR/modules/rce/plugins/shared/useDataUrl.js +14 -4
  3902. package/lib/translated/pt_BR/modules/rce/userOS.js +31 -0
  3903. package/lib/translated/ru/modules/canvasFileBrowser/FlashAlert.js +8 -5
  3904. package/lib/translated/ru/modules/common/components/LoadMore.js +2 -1
  3905. package/lib/translated/ru/modules/rce/KeyboardShortcutModal.js +10 -7
  3906. package/lib/translated/ru/modules/rce/RCE.js +12 -6
  3907. package/lib/translated/ru/modules/rce/RCEGlobals.js +62 -0
  3908. package/lib/translated/ru/modules/rce/RCEWrapper.js +49 -19
  3909. package/lib/translated/ru/modules/rce/RestoreAutoSaveModal.js +4 -3
  3910. package/lib/translated/ru/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  3911. package/lib/translated/ru/modules/rce/__tests__/contentInsertion.test.js +6 -0
  3912. package/lib/translated/ru/modules/rce/__tests__/userOS.test.js +68 -0
  3913. package/lib/translated/ru/modules/rce/contentInsertion.js +3 -1
  3914. package/lib/translated/ru/modules/rce/initA11yChecker.js +0 -3
  3915. package/lib/translated/ru/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  3916. package/lib/translated/ru/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  3917. package/lib/translated/ru/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  3918. package/lib/translated/ru/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  3919. package/lib/translated/ru/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  3920. package/lib/translated/ru/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  3921. package/lib/translated/ru/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  3922. package/lib/translated/ru/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  3923. package/lib/translated/ru/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  3924. package/lib/translated/ru/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  3925. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  3926. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  3927. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  3928. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  3929. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  3930. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  3931. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  3932. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  3933. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  3934. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  3935. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  3936. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  3937. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  3938. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  3939. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  3940. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  3941. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  3942. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  3943. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  3944. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  3945. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  3946. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  3947. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  3948. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  3949. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  3950. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  3951. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  3952. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  3953. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  3954. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  3955. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  3956. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  3957. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  3958. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  3959. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  3960. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  3961. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  3962. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  3963. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  3964. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  3965. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  3966. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  3967. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  3968. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  3969. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  3970. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  3971. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  3972. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  3973. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  3974. package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  3975. package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  3976. package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  3977. package/lib/translated/ru/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  3978. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  3979. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  3980. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  3981. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  3982. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  3983. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  3984. package/lib/translated/ru/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  3985. package/lib/translated/ru/modules/rce/plugins/instructure_links/plugin.js +18 -3
  3986. package/lib/translated/ru/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  3987. package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  3988. package/lib/translated/ru/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  3989. package/lib/translated/ru/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  3990. package/lib/translated/ru/modules/rce/plugins/shared/ColorInput.js +4 -3
  3991. package/lib/translated/ru/modules/rce/plugins/shared/ContentSelection.js +7 -1
  3992. package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  3993. package/lib/translated/ru/modules/rce/plugins/shared/Filter.js +6 -5
  3994. package/lib/translated/ru/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  3995. package/lib/translated/ru/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  3996. package/lib/translated/ru/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  3997. package/lib/translated/ru/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  3998. package/lib/translated/ru/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  3999. package/lib/translated/ru/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4000. package/lib/translated/ru/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4001. package/lib/translated/ru/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4002. package/lib/translated/ru/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4003. package/lib/translated/ru/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4004. package/lib/translated/ru/modules/rce/plugins/shared/linkUtils.js +58 -0
  4005. package/lib/translated/ru/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4006. package/lib/translated/ru/modules/rce/userOS.js +31 -0
  4007. package/lib/translated/se/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4008. package/lib/translated/se/modules/common/components/LoadMore.js +2 -1
  4009. package/lib/translated/se/modules/rce/KeyboardShortcutModal.js +10 -7
  4010. package/lib/translated/se/modules/rce/RCE.js +12 -6
  4011. package/lib/translated/se/modules/rce/RCEGlobals.js +62 -0
  4012. package/lib/translated/se/modules/rce/RCEWrapper.js +49 -19
  4013. package/lib/translated/se/modules/rce/RestoreAutoSaveModal.js +4 -3
  4014. package/lib/translated/se/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4015. package/lib/translated/se/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4016. package/lib/translated/se/modules/rce/__tests__/userOS.test.js +68 -0
  4017. package/lib/translated/se/modules/rce/contentInsertion.js +3 -1
  4018. package/lib/translated/se/modules/rce/initA11yChecker.js +0 -3
  4019. package/lib/translated/se/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4020. package/lib/translated/se/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4021. package/lib/translated/se/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4022. package/lib/translated/se/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4023. package/lib/translated/se/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4024. package/lib/translated/se/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4025. package/lib/translated/se/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4026. package/lib/translated/se/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4027. package/lib/translated/se/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4028. package/lib/translated/se/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4029. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4030. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +62 -25
  4031. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4032. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4033. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4034. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4035. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4036. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4037. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4038. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4039. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4040. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4041. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4042. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4043. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4044. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4045. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4046. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4047. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4048. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4049. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4050. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4051. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4052. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4053. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4054. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4055. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4056. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4057. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4058. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4059. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4060. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4061. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4062. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4063. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4064. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4065. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4066. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4067. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4068. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4069. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4070. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4071. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4072. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4073. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4074. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4075. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4076. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4077. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4078. package/lib/translated/se/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4079. package/lib/translated/se/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4080. package/lib/translated/se/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4081. package/lib/translated/se/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4082. package/lib/translated/se/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4083. package/lib/translated/se/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4084. package/lib/translated/se/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4085. package/lib/translated/se/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4086. package/lib/translated/se/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4087. package/lib/translated/se/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4088. package/lib/translated/se/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4089. package/lib/translated/se/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4090. package/lib/translated/se/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4091. package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4092. package/lib/translated/se/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4093. package/lib/translated/se/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4094. package/lib/translated/se/modules/rce/plugins/shared/ColorInput.js +4 -3
  4095. package/lib/translated/se/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4096. package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4097. package/lib/translated/se/modules/rce/plugins/shared/Filter.js +6 -5
  4098. package/lib/translated/se/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4099. package/lib/translated/se/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4100. package/lib/translated/se/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4101. package/lib/translated/se/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4102. package/lib/translated/se/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4103. package/lib/translated/se/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4104. package/lib/translated/se/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4105. package/lib/translated/se/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4106. package/lib/translated/se/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4107. package/lib/translated/se/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4108. package/lib/translated/se/modules/rce/plugins/shared/linkUtils.js +58 -0
  4109. package/lib/translated/se/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4110. package/lib/translated/se/modules/rce/userOS.js +31 -0
  4111. package/lib/translated/sl/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4112. package/lib/translated/sl/modules/common/components/LoadMore.js +2 -1
  4113. package/lib/translated/sl/modules/rce/KeyboardShortcutModal.js +10 -7
  4114. package/lib/translated/sl/modules/rce/RCE.js +12 -6
  4115. package/lib/translated/sl/modules/rce/RCEGlobals.js +62 -0
  4116. package/lib/translated/sl/modules/rce/RCEWrapper.js +49 -19
  4117. package/lib/translated/sl/modules/rce/RestoreAutoSaveModal.js +4 -3
  4118. package/lib/translated/sl/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4119. package/lib/translated/sl/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4120. package/lib/translated/sl/modules/rce/__tests__/userOS.test.js +68 -0
  4121. package/lib/translated/sl/modules/rce/contentInsertion.js +3 -1
  4122. package/lib/translated/sl/modules/rce/initA11yChecker.js +0 -3
  4123. package/lib/translated/sl/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4124. package/lib/translated/sl/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4125. package/lib/translated/sl/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4126. package/lib/translated/sl/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4127. package/lib/translated/sl/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4128. package/lib/translated/sl/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4129. package/lib/translated/sl/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4130. package/lib/translated/sl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4131. package/lib/translated/sl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4132. package/lib/translated/sl/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4133. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4134. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4135. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4136. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4137. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4138. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4139. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4140. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4141. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4142. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4143. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4144. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4145. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4146. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4147. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4148. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4149. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4150. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4151. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4152. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4153. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4154. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4155. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4156. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4157. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4158. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4159. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4160. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4161. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4162. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4163. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4164. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4165. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4166. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4167. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4168. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4169. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4170. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4171. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4172. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4173. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4174. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4175. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4176. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4177. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4178. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4179. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4180. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4181. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4182. package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4183. package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4184. package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4185. package/lib/translated/sl/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4186. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4187. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4188. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4189. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4190. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4191. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4192. package/lib/translated/sl/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4193. package/lib/translated/sl/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4194. package/lib/translated/sl/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4195. package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4196. package/lib/translated/sl/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4197. package/lib/translated/sl/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4198. package/lib/translated/sl/modules/rce/plugins/shared/ColorInput.js +4 -3
  4199. package/lib/translated/sl/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4200. package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4201. package/lib/translated/sl/modules/rce/plugins/shared/Filter.js +6 -5
  4202. package/lib/translated/sl/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4203. package/lib/translated/sl/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4204. package/lib/translated/sl/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4205. package/lib/translated/sl/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4206. package/lib/translated/sl/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4207. package/lib/translated/sl/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4208. package/lib/translated/sl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4209. package/lib/translated/sl/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4210. package/lib/translated/sl/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4211. package/lib/translated/sl/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4212. package/lib/translated/sl/modules/rce/plugins/shared/linkUtils.js +58 -0
  4213. package/lib/translated/sl/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4214. package/lib/translated/sl/modules/rce/userOS.js +31 -0
  4215. package/lib/translated/sv/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4216. package/lib/translated/sv/modules/common/components/LoadMore.js +2 -1
  4217. package/lib/translated/sv/modules/rce/KeyboardShortcutModal.js +10 -7
  4218. package/lib/translated/sv/modules/rce/RCE.js +12 -6
  4219. package/lib/translated/sv/modules/rce/RCEGlobals.js +62 -0
  4220. package/lib/translated/sv/modules/rce/RCEWrapper.js +49 -19
  4221. package/lib/translated/sv/modules/rce/RestoreAutoSaveModal.js +4 -3
  4222. package/lib/translated/sv/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4223. package/lib/translated/sv/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4224. package/lib/translated/sv/modules/rce/__tests__/userOS.test.js +68 -0
  4225. package/lib/translated/sv/modules/rce/contentInsertion.js +3 -1
  4226. package/lib/translated/sv/modules/rce/initA11yChecker.js +0 -3
  4227. package/lib/translated/sv/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4228. package/lib/translated/sv/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4229. package/lib/translated/sv/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4230. package/lib/translated/sv/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4231. package/lib/translated/sv/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4232. package/lib/translated/sv/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4233. package/lib/translated/sv/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4234. package/lib/translated/sv/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4235. package/lib/translated/sv/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4236. package/lib/translated/sv/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4237. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4238. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4239. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4240. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4241. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4242. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4243. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4244. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4245. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4246. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4247. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4248. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4249. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4250. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4251. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4252. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4253. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4254. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4255. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4256. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4257. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4258. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4259. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4260. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4261. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4262. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4263. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4264. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4265. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4266. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4267. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4268. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4269. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4270. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4271. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4272. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4273. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4274. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4275. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4276. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4277. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4278. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4279. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4280. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4281. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4282. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4283. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4284. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4285. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4286. package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4287. package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4288. package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4289. package/lib/translated/sv/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4290. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4291. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4292. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4293. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4294. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4295. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4296. package/lib/translated/sv/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4297. package/lib/translated/sv/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4298. package/lib/translated/sv/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4299. package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4300. package/lib/translated/sv/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4301. package/lib/translated/sv/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4302. package/lib/translated/sv/modules/rce/plugins/shared/ColorInput.js +4 -3
  4303. package/lib/translated/sv/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4304. package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4305. package/lib/translated/sv/modules/rce/plugins/shared/Filter.js +6 -5
  4306. package/lib/translated/sv/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4307. package/lib/translated/sv/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4308. package/lib/translated/sv/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4309. package/lib/translated/sv/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4310. package/lib/translated/sv/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4311. package/lib/translated/sv/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4312. package/lib/translated/sv/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4313. package/lib/translated/sv/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4314. package/lib/translated/sv/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4315. package/lib/translated/sv/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4316. package/lib/translated/sv/modules/rce/plugins/shared/linkUtils.js +58 -0
  4317. package/lib/translated/sv/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4318. package/lib/translated/sv/modules/rce/userOS.js +31 -0
  4319. package/lib/translated/sv-x-k12/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4320. package/lib/translated/sv-x-k12/modules/common/components/LoadMore.js +2 -1
  4321. package/lib/translated/sv-x-k12/modules/rce/KeyboardShortcutModal.js +10 -7
  4322. package/lib/translated/sv-x-k12/modules/rce/RCE.js +12 -6
  4323. package/lib/translated/sv-x-k12/modules/rce/RCEGlobals.js +62 -0
  4324. package/lib/translated/sv-x-k12/modules/rce/RCEWrapper.js +49 -19
  4325. package/lib/translated/sv-x-k12/modules/rce/RestoreAutoSaveModal.js +4 -3
  4326. package/lib/translated/sv-x-k12/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4327. package/lib/translated/sv-x-k12/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4328. package/lib/translated/sv-x-k12/modules/rce/__tests__/userOS.test.js +68 -0
  4329. package/lib/translated/sv-x-k12/modules/rce/contentInsertion.js +3 -1
  4330. package/lib/translated/sv-x-k12/modules/rce/initA11yChecker.js +0 -3
  4331. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4332. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4333. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4334. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4335. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4336. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4337. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4338. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4339. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4340. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4341. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4342. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4343. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4344. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4345. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4346. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4347. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4348. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4349. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4350. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4351. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4352. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4353. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4354. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4355. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4356. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4357. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4358. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4359. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4360. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4361. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4362. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4363. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4364. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4365. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4366. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4367. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4368. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4369. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4370. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4371. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4372. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4373. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4374. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4375. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4376. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4377. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4378. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4379. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4380. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4381. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4382. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4383. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4384. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4385. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4386. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4387. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4388. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4389. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4390. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4391. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4392. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4393. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4394. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4395. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4396. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4397. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4398. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4399. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4400. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4401. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4402. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4403. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4404. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4405. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4406. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ColorInput.js +4 -3
  4407. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4408. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4409. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/Filter.js +6 -5
  4410. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4411. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4412. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4413. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4414. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4415. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4416. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4417. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4418. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4419. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4420. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/linkUtils.js +58 -0
  4421. package/lib/translated/sv-x-k12/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4422. package/lib/translated/sv-x-k12/modules/rce/userOS.js +31 -0
  4423. package/lib/translated/th/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4424. package/lib/translated/th/modules/common/components/LoadMore.js +2 -1
  4425. package/lib/translated/th/modules/rce/KeyboardShortcutModal.js +10 -7
  4426. package/lib/translated/th/modules/rce/RCE.js +12 -6
  4427. package/lib/translated/th/modules/rce/RCEGlobals.js +62 -0
  4428. package/lib/translated/th/modules/rce/RCEWrapper.js +49 -19
  4429. package/lib/translated/th/modules/rce/RestoreAutoSaveModal.js +4 -3
  4430. package/lib/translated/th/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4431. package/lib/translated/th/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4432. package/lib/translated/th/modules/rce/__tests__/userOS.test.js +68 -0
  4433. package/lib/translated/th/modules/rce/contentInsertion.js +3 -1
  4434. package/lib/translated/th/modules/rce/initA11yChecker.js +0 -3
  4435. package/lib/translated/th/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4436. package/lib/translated/th/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4437. package/lib/translated/th/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4438. package/lib/translated/th/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4439. package/lib/translated/th/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4440. package/lib/translated/th/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4441. package/lib/translated/th/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4442. package/lib/translated/th/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4443. package/lib/translated/th/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4444. package/lib/translated/th/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4445. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4446. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4447. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4448. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4449. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4450. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4451. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4452. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4453. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4454. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4455. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4456. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4457. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4458. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4459. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4460. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4461. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4462. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4463. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4464. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4465. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4466. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4467. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4468. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4469. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4470. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4471. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4472. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4473. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4474. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4475. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4476. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4477. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4478. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4479. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4480. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4481. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4482. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4483. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4484. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4485. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4486. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4487. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4488. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4489. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4490. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4491. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4492. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4493. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4494. package/lib/translated/th/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4495. package/lib/translated/th/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4496. package/lib/translated/th/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4497. package/lib/translated/th/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4498. package/lib/translated/th/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4499. package/lib/translated/th/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4500. package/lib/translated/th/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4501. package/lib/translated/th/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4502. package/lib/translated/th/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4503. package/lib/translated/th/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4504. package/lib/translated/th/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4505. package/lib/translated/th/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4506. package/lib/translated/th/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4507. package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4508. package/lib/translated/th/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4509. package/lib/translated/th/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4510. package/lib/translated/th/modules/rce/plugins/shared/ColorInput.js +4 -3
  4511. package/lib/translated/th/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4512. package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4513. package/lib/translated/th/modules/rce/plugins/shared/Filter.js +6 -5
  4514. package/lib/translated/th/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4515. package/lib/translated/th/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4516. package/lib/translated/th/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4517. package/lib/translated/th/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4518. package/lib/translated/th/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4519. package/lib/translated/th/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4520. package/lib/translated/th/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4521. package/lib/translated/th/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4522. package/lib/translated/th/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4523. package/lib/translated/th/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4524. package/lib/translated/th/modules/rce/plugins/shared/linkUtils.js +58 -0
  4525. package/lib/translated/th/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4526. package/lib/translated/th/modules/rce/userOS.js +31 -0
  4527. package/lib/translated/tr/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4528. package/lib/translated/tr/modules/common/components/LoadMore.js +2 -1
  4529. package/lib/translated/tr/modules/rce/KeyboardShortcutModal.js +10 -7
  4530. package/lib/translated/tr/modules/rce/RCE.js +12 -6
  4531. package/lib/translated/tr/modules/rce/RCEGlobals.js +62 -0
  4532. package/lib/translated/tr/modules/rce/RCEWrapper.js +49 -19
  4533. package/lib/translated/tr/modules/rce/RestoreAutoSaveModal.js +4 -3
  4534. package/lib/translated/tr/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4535. package/lib/translated/tr/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4536. package/lib/translated/tr/modules/rce/__tests__/userOS.test.js +68 -0
  4537. package/lib/translated/tr/modules/rce/contentInsertion.js +3 -1
  4538. package/lib/translated/tr/modules/rce/initA11yChecker.js +0 -3
  4539. package/lib/translated/tr/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4540. package/lib/translated/tr/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4541. package/lib/translated/tr/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4542. package/lib/translated/tr/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4543. package/lib/translated/tr/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4544. package/lib/translated/tr/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4545. package/lib/translated/tr/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4546. package/lib/translated/tr/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4547. package/lib/translated/tr/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4548. package/lib/translated/tr/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4549. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4550. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4551. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4552. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4553. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4554. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4555. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4556. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4557. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4558. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4559. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4560. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4561. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4562. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4563. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4564. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4565. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4566. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4567. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4568. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4569. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4570. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4571. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4572. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4573. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4574. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4575. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4576. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4577. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4578. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4579. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4580. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4581. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4582. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4583. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4584. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4585. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4586. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4587. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4588. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4589. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4590. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4591. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4592. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4593. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4594. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4595. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4596. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4597. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4598. package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4599. package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4600. package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4601. package/lib/translated/tr/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4602. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4603. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4604. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4605. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4606. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4607. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4608. package/lib/translated/tr/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4609. package/lib/translated/tr/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4610. package/lib/translated/tr/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4611. package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4612. package/lib/translated/tr/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4613. package/lib/translated/tr/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4614. package/lib/translated/tr/modules/rce/plugins/shared/ColorInput.js +4 -3
  4615. package/lib/translated/tr/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4616. package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4617. package/lib/translated/tr/modules/rce/plugins/shared/Filter.js +6 -5
  4618. package/lib/translated/tr/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4619. package/lib/translated/tr/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4620. package/lib/translated/tr/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4621. package/lib/translated/tr/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4622. package/lib/translated/tr/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4623. package/lib/translated/tr/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4624. package/lib/translated/tr/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4625. package/lib/translated/tr/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4626. package/lib/translated/tr/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4627. package/lib/translated/tr/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4628. package/lib/translated/tr/modules/rce/plugins/shared/linkUtils.js +58 -0
  4629. package/lib/translated/tr/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4630. package/lib/translated/tr/modules/rce/userOS.js +31 -0
  4631. package/lib/translated/uk_UA/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4632. package/lib/translated/uk_UA/modules/common/components/LoadMore.js +2 -1
  4633. package/lib/translated/uk_UA/modules/rce/KeyboardShortcutModal.js +10 -7
  4634. package/lib/translated/uk_UA/modules/rce/RCE.js +12 -6
  4635. package/lib/translated/uk_UA/modules/rce/RCEGlobals.js +62 -0
  4636. package/lib/translated/uk_UA/modules/rce/RCEWrapper.js +49 -19
  4637. package/lib/translated/uk_UA/modules/rce/RestoreAutoSaveModal.js +4 -3
  4638. package/lib/translated/uk_UA/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4639. package/lib/translated/uk_UA/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4640. package/lib/translated/uk_UA/modules/rce/__tests__/userOS.test.js +68 -0
  4641. package/lib/translated/uk_UA/modules/rce/contentInsertion.js +3 -1
  4642. package/lib/translated/uk_UA/modules/rce/initA11yChecker.js +0 -3
  4643. package/lib/translated/uk_UA/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4644. package/lib/translated/uk_UA/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4645. package/lib/translated/uk_UA/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4646. package/lib/translated/uk_UA/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4647. package/lib/translated/uk_UA/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4648. package/lib/translated/uk_UA/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4649. package/lib/translated/uk_UA/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4650. package/lib/translated/uk_UA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4651. package/lib/translated/uk_UA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4652. package/lib/translated/uk_UA/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4653. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4654. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4655. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4656. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4657. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4658. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4659. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4660. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4661. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4662. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4663. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4664. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4665. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4666. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4667. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4668. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4669. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4670. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4671. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4672. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4673. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4674. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4675. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4676. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4677. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4678. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4679. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4680. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4681. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4682. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4683. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4684. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4685. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4686. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4687. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4688. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4689. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4690. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4691. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4692. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4693. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4694. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4695. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4696. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4697. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4698. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4699. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4700. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4701. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4702. package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4703. package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4704. package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4705. package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4706. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4707. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4708. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4709. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4710. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4711. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4712. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4713. package/lib/translated/uk_UA/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4714. package/lib/translated/uk_UA/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4715. package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4716. package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4717. package/lib/translated/uk_UA/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4718. package/lib/translated/uk_UA/modules/rce/plugins/shared/ColorInput.js +4 -3
  4719. package/lib/translated/uk_UA/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4720. package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4721. package/lib/translated/uk_UA/modules/rce/plugins/shared/Filter.js +6 -5
  4722. package/lib/translated/uk_UA/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4723. package/lib/translated/uk_UA/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4724. package/lib/translated/uk_UA/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4725. package/lib/translated/uk_UA/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4726. package/lib/translated/uk_UA/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4727. package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4728. package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4729. package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4730. package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4731. package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4732. package/lib/translated/uk_UA/modules/rce/plugins/shared/linkUtils.js +58 -0
  4733. package/lib/translated/uk_UA/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4734. package/lib/translated/uk_UA/modules/rce/userOS.js +31 -0
  4735. package/lib/translated/vi/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4736. package/lib/translated/vi/modules/common/components/LoadMore.js +2 -1
  4737. package/lib/translated/vi/modules/rce/KeyboardShortcutModal.js +10 -7
  4738. package/lib/translated/vi/modules/rce/RCE.js +12 -6
  4739. package/lib/translated/vi/modules/rce/RCEGlobals.js +62 -0
  4740. package/lib/translated/vi/modules/rce/RCEWrapper.js +49 -19
  4741. package/lib/translated/vi/modules/rce/RestoreAutoSaveModal.js +4 -3
  4742. package/lib/translated/vi/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4743. package/lib/translated/vi/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4744. package/lib/translated/vi/modules/rce/__tests__/userOS.test.js +68 -0
  4745. package/lib/translated/vi/modules/rce/contentInsertion.js +3 -1
  4746. package/lib/translated/vi/modules/rce/initA11yChecker.js +0 -3
  4747. package/lib/translated/vi/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4748. package/lib/translated/vi/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4749. package/lib/translated/vi/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4750. package/lib/translated/vi/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4751. package/lib/translated/vi/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4752. package/lib/translated/vi/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4753. package/lib/translated/vi/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4754. package/lib/translated/vi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4755. package/lib/translated/vi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4756. package/lib/translated/vi/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4757. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4758. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4759. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4760. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4761. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4762. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4763. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4764. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4765. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4766. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4767. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4768. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4769. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4770. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4771. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4772. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4773. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4774. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4775. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4776. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4777. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4778. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4779. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4780. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4781. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4782. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4783. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4784. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4785. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4786. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4787. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4788. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4789. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4790. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4791. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4792. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4793. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4794. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4795. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4796. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4797. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4798. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4799. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4800. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4801. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4802. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4803. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4804. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4805. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4806. package/lib/translated/vi/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4807. package/lib/translated/vi/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4808. package/lib/translated/vi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4809. package/lib/translated/vi/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4810. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4811. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4812. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4813. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4814. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4815. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4816. package/lib/translated/vi/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4817. package/lib/translated/vi/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4818. package/lib/translated/vi/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4819. package/lib/translated/vi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4820. package/lib/translated/vi/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4821. package/lib/translated/vi/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4822. package/lib/translated/vi/modules/rce/plugins/shared/ColorInput.js +4 -3
  4823. package/lib/translated/vi/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4824. package/lib/translated/vi/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4825. package/lib/translated/vi/modules/rce/plugins/shared/Filter.js +6 -5
  4826. package/lib/translated/vi/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4827. package/lib/translated/vi/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4828. package/lib/translated/vi/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4829. package/lib/translated/vi/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4830. package/lib/translated/vi/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4831. package/lib/translated/vi/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4832. package/lib/translated/vi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4833. package/lib/translated/vi/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4834. package/lib/translated/vi/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4835. package/lib/translated/vi/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4836. package/lib/translated/vi/modules/rce/plugins/shared/linkUtils.js +58 -0
  4837. package/lib/translated/vi/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4838. package/lib/translated/vi/modules/rce/userOS.js +31 -0
  4839. package/lib/translated/zh/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4840. package/lib/translated/zh/modules/common/components/LoadMore.js +2 -1
  4841. package/lib/translated/zh/modules/rce/KeyboardShortcutModal.js +10 -7
  4842. package/lib/translated/zh/modules/rce/RCE.js +12 -6
  4843. package/lib/translated/zh/modules/rce/RCEGlobals.js +62 -0
  4844. package/lib/translated/zh/modules/rce/RCEWrapper.js +49 -19
  4845. package/lib/translated/zh/modules/rce/RestoreAutoSaveModal.js +4 -3
  4846. package/lib/translated/zh/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4847. package/lib/translated/zh/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4848. package/lib/translated/zh/modules/rce/__tests__/userOS.test.js +68 -0
  4849. package/lib/translated/zh/modules/rce/contentInsertion.js +3 -1
  4850. package/lib/translated/zh/modules/rce/initA11yChecker.js +0 -3
  4851. package/lib/translated/zh/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4852. package/lib/translated/zh/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4853. package/lib/translated/zh/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4854. package/lib/translated/zh/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4855. package/lib/translated/zh/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4856. package/lib/translated/zh/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4857. package/lib/translated/zh/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4858. package/lib/translated/zh/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4859. package/lib/translated/zh/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4860. package/lib/translated/zh/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4861. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4862. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4863. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4864. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4865. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4866. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4867. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4868. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4869. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4870. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4871. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4872. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4873. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4874. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4875. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4876. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4877. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4878. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4879. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4880. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4881. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4882. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4883. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4884. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4885. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4886. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4887. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4888. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4889. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4890. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4891. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4892. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4893. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4894. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4895. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  4896. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  4897. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  4898. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  4899. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  4900. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  4901. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  4902. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  4903. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  4904. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  4905. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  4906. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  4907. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  4908. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  4909. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  4910. package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  4911. package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  4912. package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  4913. package/lib/translated/zh/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  4914. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  4915. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  4916. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  4917. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  4918. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  4919. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  4920. package/lib/translated/zh/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  4921. package/lib/translated/zh/modules/rce/plugins/instructure_links/plugin.js +18 -3
  4922. package/lib/translated/zh/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  4923. package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  4924. package/lib/translated/zh/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  4925. package/lib/translated/zh/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  4926. package/lib/translated/zh/modules/rce/plugins/shared/ColorInput.js +4 -3
  4927. package/lib/translated/zh/modules/rce/plugins/shared/ContentSelection.js +7 -1
  4928. package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  4929. package/lib/translated/zh/modules/rce/plugins/shared/Filter.js +6 -5
  4930. package/lib/translated/zh/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  4931. package/lib/translated/zh/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  4932. package/lib/translated/zh/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  4933. package/lib/translated/zh/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  4934. package/lib/translated/zh/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  4935. package/lib/translated/zh/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  4936. package/lib/translated/zh/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  4937. package/lib/translated/zh/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  4938. package/lib/translated/zh/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  4939. package/lib/translated/zh/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  4940. package/lib/translated/zh/modules/rce/plugins/shared/linkUtils.js +58 -0
  4941. package/lib/translated/zh/modules/rce/plugins/shared/useDataUrl.js +14 -4
  4942. package/lib/translated/zh/modules/rce/userOS.js +31 -0
  4943. package/lib/translated/zh-Hans/modules/canvasFileBrowser/FlashAlert.js +8 -5
  4944. package/lib/translated/zh-Hans/modules/common/components/LoadMore.js +2 -1
  4945. package/lib/translated/zh-Hans/modules/rce/KeyboardShortcutModal.js +10 -7
  4946. package/lib/translated/zh-Hans/modules/rce/RCE.js +12 -6
  4947. package/lib/translated/zh-Hans/modules/rce/RCEGlobals.js +62 -0
  4948. package/lib/translated/zh-Hans/modules/rce/RCEWrapper.js +49 -19
  4949. package/lib/translated/zh-Hans/modules/rce/RestoreAutoSaveModal.js +4 -3
  4950. package/lib/translated/zh-Hans/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  4951. package/lib/translated/zh-Hans/modules/rce/__tests__/contentInsertion.test.js +6 -0
  4952. package/lib/translated/zh-Hans/modules/rce/__tests__/userOS.test.js +68 -0
  4953. package/lib/translated/zh-Hans/modules/rce/contentInsertion.js +3 -1
  4954. package/lib/translated/zh-Hans/modules/rce/initA11yChecker.js +0 -3
  4955. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  4956. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  4957. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  4958. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  4959. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  4960. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  4961. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  4962. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  4963. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  4964. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  4965. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  4966. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  4967. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  4968. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  4969. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  4970. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  4971. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  4972. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  4973. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  4974. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  4975. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  4976. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  4977. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  4978. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  4979. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  4980. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  4981. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  4982. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  4983. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  4984. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  4985. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  4986. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  4987. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  4988. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  4989. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  4990. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  4991. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  4992. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  4993. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  4994. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  4995. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  4996. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  4997. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  4998. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  4999. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  5000. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  5001. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  5002. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  5003. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  5004. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  5005. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  5006. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  5007. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  5008. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  5009. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  5010. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  5011. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  5012. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  5013. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  5014. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  5015. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  5016. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  5017. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  5018. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  5019. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  5020. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  5021. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  5022. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  5023. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  5024. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  5025. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_links/plugin.js +18 -3
  5026. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  5027. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  5028. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  5029. package/lib/translated/zh-Hans/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  5030. package/lib/translated/zh-Hans/modules/rce/plugins/shared/ColorInput.js +4 -3
  5031. package/lib/translated/zh-Hans/modules/rce/plugins/shared/ContentSelection.js +7 -1
  5032. package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  5033. package/lib/translated/zh-Hans/modules/rce/plugins/shared/Filter.js +6 -5
  5034. package/lib/translated/zh-Hans/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  5035. package/lib/translated/zh-Hans/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  5036. package/lib/translated/zh-Hans/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  5037. package/lib/translated/zh-Hans/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  5038. package/lib/translated/zh-Hans/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  5039. package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  5040. package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  5041. package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  5042. package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  5043. package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  5044. package/lib/translated/zh-Hans/modules/rce/plugins/shared/linkUtils.js +58 -0
  5045. package/lib/translated/zh-Hans/modules/rce/plugins/shared/useDataUrl.js +14 -4
  5046. package/lib/translated/zh-Hans/modules/rce/userOS.js +31 -0
  5047. package/lib/translated/zh-Hant/modules/canvasFileBrowser/FlashAlert.js +8 -5
  5048. package/lib/translated/zh-Hant/modules/common/components/LoadMore.js +2 -1
  5049. package/lib/translated/zh-Hant/modules/rce/KeyboardShortcutModal.js +10 -7
  5050. package/lib/translated/zh-Hant/modules/rce/RCE.js +12 -6
  5051. package/lib/translated/zh-Hant/modules/rce/RCEGlobals.js +62 -0
  5052. package/lib/translated/zh-Hant/modules/rce/RCEWrapper.js +49 -19
  5053. package/lib/translated/zh-Hant/modules/rce/RestoreAutoSaveModal.js +4 -3
  5054. package/lib/translated/zh-Hant/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  5055. package/lib/translated/zh-Hant/modules/rce/__tests__/contentInsertion.test.js +6 -0
  5056. package/lib/translated/zh-Hant/modules/rce/__tests__/userOS.test.js +68 -0
  5057. package/lib/translated/zh-Hant/modules/rce/contentInsertion.js +3 -1
  5058. package/lib/translated/zh-Hant/modules/rce/initA11yChecker.js +0 -3
  5059. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  5060. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  5061. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  5062. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  5063. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  5064. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  5065. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  5066. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  5067. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  5068. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  5069. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  5070. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  5071. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  5072. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  5073. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  5074. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  5075. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  5076. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  5077. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  5078. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  5079. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  5080. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  5081. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  5082. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  5083. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  5084. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  5085. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  5086. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  5087. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  5088. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  5089. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  5090. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  5091. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  5092. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  5093. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  5094. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  5095. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  5096. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  5097. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  5098. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  5099. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  5100. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  5101. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  5102. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  5103. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  5104. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  5105. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  5106. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  5107. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  5108. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  5109. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  5110. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  5111. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  5112. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  5113. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  5114. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  5115. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  5116. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  5117. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  5118. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  5119. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  5120. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  5121. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  5122. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  5123. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  5124. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  5125. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  5126. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  5127. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  5128. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  5129. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_links/plugin.js +18 -3
  5130. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  5131. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  5132. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  5133. package/lib/translated/zh-Hant/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  5134. package/lib/translated/zh-Hant/modules/rce/plugins/shared/ColorInput.js +4 -3
  5135. package/lib/translated/zh-Hant/modules/rce/plugins/shared/ContentSelection.js +7 -1
  5136. package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  5137. package/lib/translated/zh-Hant/modules/rce/plugins/shared/Filter.js +6 -5
  5138. package/lib/translated/zh-Hant/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  5139. package/lib/translated/zh-Hant/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  5140. package/lib/translated/zh-Hant/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  5141. package/lib/translated/zh-Hant/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  5142. package/lib/translated/zh-Hant/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  5143. package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  5144. package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  5145. package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  5146. package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  5147. package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  5148. package/lib/translated/zh-Hant/modules/rce/plugins/shared/linkUtils.js +58 -0
  5149. package/lib/translated/zh-Hant/modules/rce/plugins/shared/useDataUrl.js +14 -4
  5150. package/lib/translated/zh-Hant/modules/rce/userOS.js +31 -0
  5151. package/lib/translated/zh_HK/modules/canvasFileBrowser/FlashAlert.js +8 -5
  5152. package/lib/translated/zh_HK/modules/common/components/LoadMore.js +2 -1
  5153. package/lib/translated/zh_HK/modules/rce/KeyboardShortcutModal.js +10 -7
  5154. package/lib/translated/zh_HK/modules/rce/RCE.js +12 -6
  5155. package/lib/translated/zh_HK/modules/rce/RCEGlobals.js +62 -0
  5156. package/lib/translated/zh_HK/modules/rce/RCEWrapper.js +49 -19
  5157. package/lib/translated/zh_HK/modules/rce/RestoreAutoSaveModal.js +4 -3
  5158. package/lib/translated/zh_HK/modules/rce/__tests__/RCEGlobals.test.js +68 -0
  5159. package/lib/translated/zh_HK/modules/rce/__tests__/contentInsertion.test.js +6 -0
  5160. package/lib/translated/zh_HK/modules/rce/__tests__/userOS.test.js +68 -0
  5161. package/lib/translated/zh_HK/modules/rce/contentInsertion.js +3 -1
  5162. package/lib/translated/zh_HK/modules/rce/initA11yChecker.js +0 -3
  5163. package/lib/translated/zh_HK/modules/rce/plugins/instructure_documents/components/Link.js +12 -8
  5164. package/lib/translated/zh_HK/modules/rce/plugins/instructure_documents/components/__tests__/Link.test.js +8 -4
  5165. package/lib/translated/zh_HK/modules/rce/plugins/instructure_equation/EquationEditorModal/__tests__/index.test.js +7 -5
  5166. package/lib/translated/zh_HK/modules/rce/plugins/instructure_equation/EquationEditorModal/index.js +26 -7
  5167. package/lib/translated/zh_HK/modules/rce/plugins/instructure_equation/EquationEditorModal/mathml.js +10 -7
  5168. package/lib/translated/zh_HK/modules/rce/plugins/instructure_equation/EquationEditorToolbar/index.js +5 -6
  5169. package/lib/translated/zh_HK/modules/rce/plugins/instructure_equation/plugin.js +41 -81
  5170. package/lib/translated/zh_HK/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/ExpandoText.js +1 -1
  5171. package/lib/translated/zh_HK/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/LtiTool.js +1 -1
  5172. package/lib/translated/zh_HK/modules/rce/plugins/instructure_external_tools/components/LtiToolsModal/index.js +4 -3
  5173. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.js +7 -5
  5174. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Modal.js +63 -26
  5175. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/Preview.js +21 -12
  5176. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Modal.test.js +20 -0
  5177. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/__tests__/Preview.test.js +71 -1
  5178. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ResetControls.js +38 -0
  5179. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/RotationControls.js +12 -8
  5180. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ShapeControls.js +1 -1
  5181. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/ZoomControls.js +14 -7
  5182. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ResetControls.test.js +40 -0
  5183. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/__tests__/ZoomControls.test.js +1 -1
  5184. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/index.js +9 -1
  5185. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/controls/utils.js +1 -4
  5186. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/imageCropUtils.js +1 -1
  5187. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/svg/shape.js +1 -1
  5188. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useKeyMouseEvents.js +211 -0
  5189. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.js +51 -9
  5190. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +8 -2
  5191. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +1 -0
  5192. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.js +1 -1
  5193. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.js +65 -3
  5194. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Course.test.js +124 -1
  5195. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/ImageSection.test.js +1 -1
  5196. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/Upload.test.js +85 -2
  5197. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/compressionUtils.test.js +114 -0
  5198. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/__tests__/utils.test.js +75 -0
  5199. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/compressionUtils.js +83 -0
  5200. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.js +29 -0
  5201. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.js +34 -8
  5202. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/__tests__/TextSection.test.js +42 -2
  5203. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +26 -16
  5204. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/__tests__/IconMakerTray.test.js +15 -19
  5205. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/reducers/imageCropper.js +10 -1
  5206. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/reducers/imageSection.js +12 -2
  5207. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/reducers/svgSettings.js +7 -1
  5208. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/__tests__/index.test.js +1 -1
  5209. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/__tests__/metadata.test.js +1 -0
  5210. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/__tests__/settings.test.js +59 -125
  5211. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/__tests__/text.test.js +201 -55
  5212. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/__tests__/utils.test.js +36 -3
  5213. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/constants.js +8 -1
  5214. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/metadata.js +1 -0
  5215. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/settings.js +8 -29
  5216. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/text.js +62 -48
  5217. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/svg/utils.js +3 -2
  5218. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +83 -0
  5219. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/utils/__tests__/IconMakerFormHasChanges.test.js +328 -0
  5220. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/utils/__tests__/round.test.js +31 -0
  5221. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/utils/round.js +25 -0
  5222. package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageList/Image.js +1 -1
  5223. package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageList/index.js +1 -1
  5224. package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -9
  5225. package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/Images/index.js +1 -1
  5226. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/CollectionPanel.js +8 -3
  5227. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/Link.js +47 -54
  5228. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/LinkOptionsTray/index.js +10 -10
  5229. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/LinkSet.js +6 -2
  5230. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/LinksPanel.js +20 -3
  5231. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/NavigationPanel.js +7 -3
  5232. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/components/__tests__/Link.test.js +104 -7
  5233. package/lib/translated/zh_HK/modules/rce/plugins/instructure_links/plugin.js +18 -3
  5234. package/lib/translated/zh_HK/modules/rce/plugins/instructure_media_embed/components/Embed.js +3 -2
  5235. package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +10 -9
  5236. package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/VideoOptionsTray/index.js +18 -17
  5237. package/lib/translated/zh_HK/modules/rce/plugins/shared/CanvasContentTray.js +90 -7
  5238. package/lib/translated/zh_HK/modules/rce/plugins/shared/ColorInput.js +4 -3
  5239. package/lib/translated/zh_HK/modules/rce/plugins/shared/ContentSelection.js +7 -1
  5240. package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/index.js +2 -2
  5241. package/lib/translated/zh_HK/modules/rce/plugins/shared/Filter.js +6 -5
  5242. package/lib/translated/zh_HK/modules/rce/plugins/shared/ImageOptionsForm.js +2 -2
  5243. package/lib/translated/zh_HK/modules/rce/plugins/shared/LinkDisplay.js +82 -0
  5244. package/lib/translated/zh_HK/modules/rce/plugins/shared/Upload/ComputerPanel.js +12 -10
  5245. package/lib/translated/zh_HK/modules/rce/plugins/shared/Upload/UnsplashPanel.js +5 -3
  5246. package/lib/translated/zh_HK/modules/rce/plugins/shared/Upload/UploadFileModal.js +6 -6
  5247. package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/CanvasContentTray.test.js +50 -6
  5248. package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +12 -0
  5249. package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/Filter.test.js +7 -0
  5250. package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/LinkDisplay.test.js +119 -0
  5251. package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/linkUtils.test.js +61 -0
  5252. package/lib/translated/zh_HK/modules/rce/plugins/shared/linkUtils.js +58 -0
  5253. package/lib/translated/zh_HK/modules/rce/plugins/shared/useDataUrl.js +14 -4
  5254. package/lib/translated/zh_HK/modules/rce/userOS.js +31 -0
  5255. package/package.json +17 -10
  5256. package/scripts/build.js +7 -3
  5257. package/testcafe/build/11.js +3 -3
  5258. package/testcafe/build/12.js +1 -1
  5259. package/testcafe/build/20.js +1 -1
  5260. package/testcafe/build/21.js +25 -1
  5261. package/testcafe/build/23.js +90 -66
  5262. package/testcafe/build/24.js +7 -7
  5263. package/testcafe/build/28.js +5 -5
  5264. package/testcafe/build/29.js +10 -10
  5265. package/testcafe/build/30.js +3 -3
  5266. package/testcafe/build/32.js +3 -3
  5267. package/testcafe/build/33.js +3 -3
  5268. package/testcafe/build/34.js +1 -1
  5269. package/testcafe/build/35.js +1 -1
  5270. package/testcafe/build/36.js +18 -19
  5271. package/testcafe/build/37.js +11 -22
  5272. package/testcafe/build/38.js +1 -1
  5273. package/testcafe/build/5.js +12 -1
  5274. package/testcafe/build/6.js +1 -1
  5275. package/testcafe/build/69.js +1 -1
  5276. package/testcafe/build/72.js +1 -1
  5277. package/testcafe/build/73.js +1 -1
  5278. package/testcafe/build/75.js +1 -1
  5279. package/testcafe/build/8.js +46 -10
  5280. package/testcafe/build/9.js +26 -2
  5281. package/testcafe/build/testcafe.js +88 -52
  5282. package/tsconfig.json +18 -0
  5283. package/webpack.testcafe.config.js +5 -2
  5284. package/es/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5285. package/lib/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5286. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5287. package/lib/translated/ar/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5288. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5289. package/lib/translated/ca/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5290. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5291. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5292. package/lib/translated/cy/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5293. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5294. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5295. package/lib/translated/da/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5296. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5297. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5298. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5299. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5300. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5301. package/lib/translated/de/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5302. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5303. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5304. package/lib/translated/el/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5305. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5306. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5307. package/lib/translated/en/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5308. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5309. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5310. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5311. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5312. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5313. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5314. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5315. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5316. package/lib/translated/en_AU/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5317. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5318. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5319. package/lib/translated/en_CA/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5320. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5321. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5322. package/lib/translated/en_CY/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5323. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5324. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5325. package/lib/translated/en_GB/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5326. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5327. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5328. package/lib/translated/es/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5329. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5330. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5331. package/lib/translated/es_ES/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5332. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5333. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5334. package/lib/translated/fa_IR/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5335. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5336. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5337. package/lib/translated/fi/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5338. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5339. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5340. package/lib/translated/fr/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5341. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5342. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5343. package/lib/translated/fr_CA/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5344. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5345. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5346. package/lib/translated/he/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5347. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5348. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5349. package/lib/translated/ht/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5350. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5351. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5352. package/lib/translated/hu/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5353. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5354. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5355. package/lib/translated/hy/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5356. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5357. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5358. package/lib/translated/is/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5359. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5360. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5361. package/lib/translated/it/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5362. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5363. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5364. package/lib/translated/ja/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5365. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5366. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5367. package/lib/translated/ko/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5368. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5369. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5370. package/lib/translated/mi/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5371. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5372. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5373. package/lib/translated/nb/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5374. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5375. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5376. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5377. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5378. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5379. package/lib/translated/nl/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5380. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5381. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5382. package/lib/translated/nn/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5383. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5384. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5385. package/lib/translated/pl/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5386. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5387. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5388. package/lib/translated/pt/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5389. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5390. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5391. package/lib/translated/pt_BR/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5392. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5393. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5394. package/lib/translated/ru/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5395. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5396. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5397. package/lib/translated/se/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5398. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5399. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5400. package/lib/translated/sl/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5401. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5402. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5403. package/lib/translated/sv/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5404. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5405. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5406. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5407. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5408. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5409. package/lib/translated/th/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5410. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5411. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5412. package/lib/translated/tr/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5413. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5414. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5415. package/lib/translated/uk_UA/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5416. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5417. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5418. package/lib/translated/vi/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5419. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5420. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5421. package/lib/translated/zh/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5422. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5423. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5424. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5425. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5426. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5427. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
  5428. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageCropper/useArrowKeys.js +0 -156
  5429. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/utils/__tests__/iconMakerFormHasChanges.test.js +0 -243
  5430. package/lib/translated/zh_HK/modules/rce/plugins/instructure_icon_maker/utils/iconMakerFormHasChanges.js +0 -60
@@ -1,3 +1,3734 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuites name="Canvas RCE Jest Tests" tests="0" failures="0" time="0.915">
2
+ <testsuites name="Canvas RCE Jest Tests" tests="1732" failures="0" time="240.812">
3
+ <testsuite name="ImageSection" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:35:00" time="14.981" tests="28">
4
+ <testcase classname="ImageSection renders the image mode selector" name="ImageSection renders the image mode selector" time="0.183">
5
+ </testcase>
6
+ <testcase classname="ImageSection renders the image preview" name="ImageSection renders the image preview" time="0.049">
7
+ </testcase>
8
+ <testcase classname="ImageSection sets default crop settings" name="ImageSection sets default crop settings" time="0.042">
9
+ </testcase>
10
+ <testcase classname="ImageSection when the cropper FF is off does not render the &quot;Upload Image&quot; button" name="ImageSection when the cropper FF is off does not render the &quot;Upload Image&quot; button" time="0.343">
11
+ </testcase>
12
+ <testcase classname="ImageSection when the cropper FF is off does not render the &quot;Course Images&quot; button" name="ImageSection when the cropper FF is off does not render the &quot;Course Images&quot; button" time="0.188">
13
+ </testcase>
14
+ <testcase classname="ImageSection when no image is selected renders a &quot;None Selected&quot; message" name="ImageSection when no image is selected renders a &quot;None Selected&quot; message" time="0.039">
15
+ </testcase>
16
+ <testcase classname="ImageSection calls onChange passing metadata when state prop changes using course images when select mode" name="ImageSection calls onChange passing metadata when state prop changes using course images when select mode" time="0.186">
17
+ </testcase>
18
+ <testcase classname="ImageSection calls onChange passing metadata when state prop changes using course images when select image" name="ImageSection calls onChange passing metadata when state prop changes using course images when select image" time="0.574">
19
+ </testcase>
20
+ <testcase classname="ImageSection calls onChange passing metadata when state prop changes using course images when crop image " name="ImageSection calls onChange passing metadata when state prop changes using course images when crop image " time="3.16">
21
+ </testcase>
22
+ <testcase classname="ImageSection calls onChange passing metadata when state prop changes when select multi color images" name="ImageSection calls onChange passing metadata when state prop changes when select multi color images" time="0.829">
23
+ </testcase>
24
+ <testcase classname="ImageSection calls onChange passing metadata when state prop changes when select single color images" name="ImageSection calls onChange passing metadata when state prop changes when select single color images" time="0.415">
25
+ </testcase>
26
+ <testcase classname="ImageSection when the &quot;upload image&quot; mode is selected renders the image upload modal" name="ImageSection when the &quot;upload image&quot; mode is selected renders the image upload modal" time="1.751">
27
+ </testcase>
28
+ <testcase classname="ImageSection when the &quot;upload image&quot; mode is selected and the the &quot;close&quot; button is clicked closes the modal" name="ImageSection when the &quot;upload image&quot; mode is selected and the the &quot;close&quot; button is clicked closes the modal" time="0.182">
29
+ </testcase>
30
+ <testcase classname="ImageSection when the &quot;course images&quot; mode is selected renders the course images component" name="ImageSection when the &quot;course images&quot; mode is selected renders the course images component" time="0.145">
31
+ </testcase>
32
+ <testcase classname="ImageSection when the &quot;course images&quot; mode is selected scrolls the component into view smoothly 😎" name="ImageSection when the &quot;course images&quot; mode is selected scrolls the component into view smoothly 😎" time="0.142">
33
+ </testcase>
34
+ <testcase classname="ImageSection when the &quot;course images&quot; mode is selected and an image is clicked dispatches an action to update parent state image" name="ImageSection when the &quot;course images&quot; mode is selected and an image is clicked dispatches an action to update parent state image" time="0.449">
35
+ </testcase>
36
+ <testcase classname="ImageSection when the &quot;course images&quot; mode is selected and an image is clicked dispatches an action to update parent state image type" name="ImageSection when the &quot;course images&quot; mode is selected and an image is clicked dispatches an action to update parent state image type" time="0.411">
37
+ </testcase>
38
+ <testcase classname="ImageSection when the &quot;course images&quot; mode is selected and an image is clicked dispatches an action to update parent state image name" name="ImageSection when the &quot;course images&quot; mode is selected and an image is clicked dispatches an action to update parent state image name" time="0.371">
39
+ </testcase>
40
+ <testcase classname="ImageSection when the &quot;Multi Color Image&quot; mode is selected renders the course images component" name="ImageSection when the &quot;Multi Color Image&quot; mode is selected renders the course images component" time="0.169">
41
+ </testcase>
42
+ <testcase classname="ImageSection when the &quot;Multi Color Image&quot; mode is selected scrolls the component into view smoothly 😎" name="ImageSection when the &quot;Multi Color Image&quot; mode is selected scrolls the component into view smoothly 😎" time="0.157">
43
+ </testcase>
44
+ <testcase classname="ImageSection when the &quot;Single Color Image&quot; mode is selected renders the single color images component" name="ImageSection when the &quot;Single Color Image&quot; mode is selected renders the single color images component" time="0.155">
45
+ </testcase>
46
+ <testcase classname="ImageSection when the &quot;Single Color Image&quot; mode is selected scrolls the component into view smoothly 😎" name="ImageSection when the &quot;Single Color Image&quot; mode is selected scrolls the component into view smoothly 😎" time="0.157">
47
+ </testcase>
48
+ <testcase classname="ImageSection when the &quot;Single Color Image&quot; mode is selected user selects an image sets default icon color" name="ImageSection when the &quot;Single Color Image&quot; mode is selected user selects an image sets default icon color" time="0.338">
49
+ </testcase>
50
+ <testcase classname="ImageSection when the &quot;Single Color Image&quot; mode is selected user selects an image changes the icon color" name="ImageSection when the &quot;Single Color Image&quot; mode is selected user selects an image changes the icon color" time="0.314">
51
+ </testcase>
52
+ <testcase classname="ImageSection when editing mode sets the image name" name="ImageSection when editing mode sets the image name" time="0.063">
53
+ </testcase>
54
+ <testcase classname="ImageSection when editing mode sets the image preview" name="ImageSection when editing mode sets the image preview" time="0.093">
55
+ </testcase>
56
+ <testcase classname="ImageSection when editing mode renders color picker for single color icon" name="ImageSection when editing mode renders color picker for single color icon" time="0.126">
57
+ </testcase>
58
+ <testcase classname="ImageSection when editing mode gets the color for selected icon" name="ImageSection when editing mode gets the color for selected icon" time="0.153">
59
+ </testcase>
60
+ </testsuite>
61
+ <testsuite name="EquationEditorModal" errors="0" failures="0" skipped="2" timestamp="2022-09-14T15:35:15" time="10.924" tests="38">
62
+ <testcase classname="EquationEditorModal disables all the basic editor macros" name="EquationEditorModal disables all the basic editor macros" time="0.373">
63
+ </testcase>
64
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is latex loads fromulas from displaystyle latex" name="EquationEditorModal loadExistingFormula when the selected content is latex loads fromulas from displaystyle latex" time="0.374">
65
+ </testcase>
66
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is latex removes &amp;nbsp; and whitespace from latex" name="EquationEditorModal loadExistingFormula when the selected content is latex removes &amp;nbsp; and whitespace from latex" time="0.287">
67
+ </testcase>
68
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is latex loads a basic formula in the basic editor" name="EquationEditorModal loadExistingFormula when the selected content is latex loads a basic formula in the basic editor" time="0.299">
69
+ </testcase>
70
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is latex loads an advanced formula in the advanced editor" name="EquationEditorModal loadExistingFormula when the selected content is latex loads an advanced formula in the advanced editor" time="0">
71
+ <skipped/>
72
+ </testcase>
73
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is an image loads a basic formula in the basic editor" name="EquationEditorModal loadExistingFormula when the selected content is an image loads a basic formula in the basic editor" time="0.763">
74
+ </testcase>
75
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is an image loads an advanced formula in the advanced editor" name="EquationEditorModal loadExistingFormula when the selected content is an image loads an advanced formula in the advanced editor" time="0">
76
+ <skipped/>
77
+ </testcase>
78
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is a range with empty text" name="EquationEditorModal loadExistingFormula when the selected content is a range with empty text" time="0.225">
79
+ </testcase>
80
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is a range with a non formula text" name="EquationEditorModal loadExistingFormula when the selected content is a range with a non formula text" time="0.238">
81
+ </testcase>
82
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is a range with formula text loads fromulas from displaystyle latex" name="EquationEditorModal loadExistingFormula when the selected content is a range with formula text loads fromulas from displaystyle latex" time="0.29">
83
+ </testcase>
84
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is a range with formula text removes &amp;nbsp; and whitespace from latex" name="EquationEditorModal loadExistingFormula when the selected content is a range with formula text removes &amp;nbsp; and whitespace from latex" time="0.565">
85
+ </testcase>
86
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is a range with formula text loads a basic formula in the basic editor" name="EquationEditorModal loadExistingFormula when the selected content is a range with formula text loads a basic formula in the basic editor" time="0.266">
87
+ </testcase>
88
+ <testcase classname="EquationEditorModal loadExistingFormula when the selected content is a range with formula text loads an advanced formula in the advanced editor" name="EquationEditorModal loadExistingFormula when the selected content is a range with formula text loads an advanced formula in the advanced editor" time="0.249">
89
+ </testcase>
90
+ <testcase classname="EquationEditorModal uses editor on modal submit" name="EquationEditorModal uses editor on modal submit" time="0.215">
91
+ </testcase>
92
+ <testcase classname="EquationEditorModal not uses editor on modal submit with empty value" name="EquationEditorModal not uses editor on modal submit with empty value" time="0.208">
93
+ </testcase>
94
+ <testcase classname="EquationEditorModal uses editor on modal submit on advanced input" name="EquationEditorModal uses editor on modal submit on advanced input" time="0.29">
95
+ </testcase>
96
+ <testcase classname="EquationEditorModal not uses editor on modal submit with empty value on advanced input" name="EquationEditorModal not uses editor on modal submit with empty value on advanced input" time="0.229">
97
+ </testcase>
98
+ <testcase classname="EquationEditorModal preserves content from initial to advanced field" name="EquationEditorModal preserves content from initial to advanced field" time="0.19">
99
+ </testcase>
100
+ <testcase classname="EquationEditorModal preserves content from advanced to initial field" name="EquationEditorModal preserves content from advanced to initial field" time="0.212">
101
+ </testcase>
102
+ <testcase classname="EquationEditorModal correctly renders advanced preview when recovering last formula" name="EquationEditorModal correctly renders advanced preview when recovering last formula" time="0.264">
103
+ </testcase>
104
+ <testcase classname="EquationEditorModal correctly renders advanced preview when updating formula" name="EquationEditorModal correctly renders advanced preview when updating formula" time="0.26">
105
+ </testcase>
106
+ <testcase classname="EquationEditorModal correctly renders advanced preview when deleting formula in advanced edtior" name="EquationEditorModal correctly renders advanced preview when deleting formula in advanced edtior" time="0.22">
107
+ </testcase>
108
+ <testcase classname="EquationEditorModal correctly renders advanced preview when deleting formula in basic editor" name="EquationEditorModal correctly renders advanced preview when deleting formula in basic editor" time="0.207">
109
+ </testcase>
110
+ <testcase classname="EquationEditorModal should disable basic mode when user enters an advanced command in basic mode" name="EquationEditorModal should disable basic mode when user enters an advanced command in basic mode" time="0.219">
111
+ </testcase>
112
+ <testcase classname="EquationEditorModal should disable basic mode when user enters an advanced only command in the advanced editor" name="EquationEditorModal should disable basic mode when user enters an advanced only command in the advanced editor" time="0.273">
113
+ </testcase>
114
+ <testcase classname="EquationEditorModal toggle toolip exists when basic mode is disabled" name="EquationEditorModal toggle toolip exists when basic mode is disabled" time="0.56">
115
+ </testcase>
116
+ <testcase classname="EquationEditorModal toggle toolip does not exist when basic mode is not disabled" name="EquationEditorModal toggle toolip does not exist when basic mode is not disabled" time="0.202">
117
+ </testcase>
118
+ <testcase classname="EquationEditorModal toggle toolip renders on hover" name="EquationEditorModal toggle toolip renders on hover" time="0.356">
119
+ </testcase>
120
+ <testcase classname="EquationEditorModal calls prop onModalDismiss on modal dismiss" name="EquationEditorModal calls prop onModalDismiss on modal dismiss" time="0.192">
121
+ </testcase>
122
+ <testcase classname="EquationEditorModal calls prop onModalDismiss on close button click" name="EquationEditorModal calls prop onModalDismiss on close button click" time="0.184">
123
+ </testcase>
124
+ <testcase classname="EquationEditorModal advanced preview is marked as MathJax should process" name="EquationEditorModal advanced preview is marked as MathJax should process" time="0.168">
125
+ </testcase>
126
+ <testcase classname="EquationEditorModal advanced mode flag forces the editor to open in advanced mode when set" name="EquationEditorModal advanced mode flag forces the editor to open in advanced mode when set" time="0.255">
127
+ </testcase>
128
+ <testcase classname="EquationEditorModal advanced mode flag is cleared when the user toggles from advanced to basic mode" name="EquationEditorModal advanced mode flag is cleared when the user toggles from advanced to basic mode" time="0.193">
129
+ </testcase>
130
+ <testcase classname="EquationEditorModal advanced mode flag is set when the user toggles from basic to advanced mode" name="EquationEditorModal advanced mode flag is set when the user toggles from basic to advanced mode" time="0.175">
131
+ </testcase>
132
+ <testcase classname="EquationEditorModal keyboard shortcuts are disabled when the modal is opened" name="EquationEditorModal keyboard shortcuts are disabled when the modal is opened" time="0.171">
133
+ </testcase>
134
+ <testcase classname="EquationEditorModal keyboard shortcuts original state is restored when the close button is clicked" name="EquationEditorModal keyboard shortcuts original state is restored when the close button is clicked" time="0.176">
135
+ </testcase>
136
+ <testcase classname="EquationEditorModal keyboard shortcuts original state is restored when the cancel button is clicked" name="EquationEditorModal keyboard shortcuts original state is restored when the cancel button is clicked" time="0.202">
137
+ </testcase>
138
+ <testcase classname="EquationEditorModal keyboard shortcuts original state is restored when the done button is clicked" name="EquationEditorModal keyboard shortcuts original state is restored when the done button is clicked" time="0.202">
139
+ </testcase>
140
+ </testsuite>
141
+ <testsuite name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:35:26" time="8.019" tests="197">
142
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Pixels&quot; radio button is selected" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Pixels&quot; radio button is selected" time="0.063">
143
+ </testcase>
144
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Pixels&quot; radio button is not selected" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Pixels&quot; radio button is not selected" time="0.034">
145
+ </testcase>
146
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; radio button is selected" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; radio button is selected" time="0.023">
147
+ </testcase>
148
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; radio button is not selected" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; radio button is not selected" time="0.023">
149
+ </testcase>
150
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field is present" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field is present" time="0.027">
151
+ </testcase>
152
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field is not present" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field is not present" time="0.029">
153
+ </testcase>
154
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element uses the applied width as the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element uses the applied width as the field value" time="0.031">
155
+ </testcase>
156
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element uses the applied width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element uses the applied width for the dimensions state width" time="0.028">
157
+ </testcase>
158
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element when the applied width is less than the minimum width displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element when the applied width is less than the minimum width displays a validation error with the field" time="0.036">
159
+ </testcase>
160
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element when the applied width is less than the minimum width sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when a width has been applied to the element when the applied width is less than the minimum width sets the dimensions state as invalid" time="0.026">
161
+ </testcase>
162
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when no width has been applied to the element uses the natural width as the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when no width has been applied to the element uses the natural width as the field value" time="0.03">
163
+ </testcase>
164
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when no width has been applied to the element uses the applied width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when no width has been applied to the element uses the applied width for the dimensions state width" time="0.025">
165
+ </testcase>
166
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes updates the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes updates the value in the field" time="0.039">
167
+ </testcase>
168
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes updates dimensions state width with the parsed number" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes updates dimensions state width with the parsed number" time="0.046">
169
+ </testcase>
170
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes proportionally scales the height in the dimensions state" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes proportionally scales the height in the dimensions state" time="0.041">
171
+ </testcase>
172
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes updates the height field with the scaled height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes updates the height field with the scaled height" time="0.038">
173
+ </testcase>
174
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value includes whitespace preserves the whitespace in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value includes whitespace preserves the whitespace in the field" time="0.04">
175
+ </testcase>
176
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value includes whitespace ignores whitespace in the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value includes whitespace ignores whitespace in the dimensions state width" time="0.041">
177
+ </testcase>
178
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is a decimal number preserves the decimal value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is a decimal number preserves the decimal value in the field" time="0.048">
179
+ </testcase>
180
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is a decimal number sets the dimensions state width with the rounded integer" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is a decimal number sets the dimensions state width with the rounded integer" time="0.051">
181
+ </testcase>
182
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared sets the dimensions state width to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared sets the dimensions state width to null" time="0.043">
183
+ </testcase>
184
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared clears the height field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared clears the height field" time="0.043">
185
+ </testcase>
186
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared sets the dimensions state height to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared sets the dimensions state height to null" time="0.047">
187
+ </testcase>
188
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is cleared sets the dimensions state as invalid" time="0.043">
189
+ </testcase>
190
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number preserves the invalid value in the field" time="0.04">
191
+ </testcase>
192
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number sets the dimensions state width to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number sets the dimensions state width to NaN" time="0.036">
193
+ </testcase>
194
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number clears the height field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number clears the height field" time="0.034">
195
+ </testcase>
196
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a number sets the dimensions state height to NaN" time="0.041">
197
+ </testcase>
198
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number preserves the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number preserves the value in the field" time="0.039">
199
+ </testcase>
200
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number sets the dimensions state width to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number sets the dimensions state width to NaN" time="0.031">
201
+ </testcase>
202
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number sets the dimensions state as invalid" time="0.037">
203
+ </testcase>
204
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is not a finite number displays a validation error with the field" time="0.04">
205
+ </testcase>
206
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is less than the minimum displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is less than the minimum displays a validation error with the field" time="0.035">
207
+ </testcase>
208
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is less than the minimum sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value is less than the minimum sets the dimensions state as invalid" time="0.035">
209
+ </testcase>
210
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value becomes valid removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value becomes valid removes the validation error from the field" time="0.048">
211
+ </testcase>
212
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value becomes valid sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value becomes valid sets the dimensions state as valid" time="0.04">
213
+ </testcase>
214
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value remains invalid displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value remains invalid displays a validation error with the field" time="0.044">
215
+ </testcase>
216
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value remains invalid sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when the value changes when the value remains invalid sets the dimensions state as invalid" time="0.039">
217
+ </testcase>
218
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when a width has been applied to the element decrements the applied width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when a width has been applied to the element decrements the applied width for the field value" time="0.035">
219
+ </testcase>
220
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when a width has been applied to the element decrements the applied width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when a width has been applied to the element decrements the applied width for the dimensions state width" time="0.028">
221
+ </testcase>
222
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when no width has been applied to the element decrements the natural width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when no width has been applied to the element decrements the natural width for the field value" time="0.035">
223
+ </testcase>
224
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when no width has been applied to the element decrements the natural width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when no width has been applied to the element decrements the natural width for the dimensions state width" time="0.035">
225
+ </testcase>
226
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width uses the minimum width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width uses the minimum width for the field value" time="0.032">
227
+ </testcase>
228
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width uses the minimum width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width uses the minimum width for the dimensions state width" time="0.036">
229
+ </testcase>
230
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width removes the validation error from the field" time="0.043">
231
+ </testcase>
232
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the applied width is less than the minimum width sets the dimensions state as valid" time="0.042">
233
+ </testcase>
234
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented proportionally scales the height in the dimensions state" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented proportionally scales the height in the dimensions state" time="0.037">
235
+ </testcase>
236
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented updates the height field with the scaled height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented updates the height field with the scaled height" time="0.039">
237
+ </testcase>
238
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared decrements the initial width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared decrements the initial width for the field value" time="0.051">
239
+ </testcase>
240
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared decrements the initial width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared decrements the initial width for the dimensions state width" time="0.052">
241
+ </testcase>
242
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared removes the validation error from the field" time="0.044">
243
+ </testcase>
244
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value had been cleared sets the dimensions state as valid" time="0.041">
245
+ </testcase>
246
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is the minimum width preserves the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is the minimum width preserves the value in the field" time="0.051">
247
+ </testcase>
248
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is the minimum width sets the dimensions state width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is the minimum width sets the dimensions state width to the minimum width" time="0.046">
249
+ </testcase>
250
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height preserves the value in the height field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height preserves the value in the height field" time="0.038">
251
+ </testcase>
252
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height preserves the aspect ratio for the width field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height preserves the aspect ratio for the width field" time="0.037">
253
+ </testcase>
254
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height sets the dimensions state height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height sets the dimensions state height to the minimum height" time="0.045">
255
+ </testcase>
256
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height preserves the aspect ratio for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the height is the minimum height preserves the aspect ratio for the dimensions state width" time="0.038">
257
+ </testcase>
258
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is not a number preserves the invalid value in the field" time="0.034">
259
+ </testcase>
260
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is not a number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when decremented when the value is not a number sets the dimensions state height to NaN" time="0.032">
261
+ </testcase>
262
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when a width has been applied to the element increments the applied width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when a width has been applied to the element increments the applied width for the field value" time="0.033">
263
+ </testcase>
264
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when a width has been applied to the element increments the applied width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when a width has been applied to the element increments the applied width for the dimensions state width" time="0.033">
265
+ </testcase>
266
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when no width has been applied to the element increments the natural width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when no width has been applied to the element increments the natural width for the field value" time="0.029">
267
+ </testcase>
268
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when no width has been applied to the element increments the natural width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when no width has been applied to the element increments the natural width for the dimensions state width" time="0.033">
269
+ </testcase>
270
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width uses the minimum width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width uses the minimum width for the field value" time="0.03">
271
+ </testcase>
272
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width uses the minimum width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width uses the minimum width for the dimensions state width" time="0.03">
273
+ </testcase>
274
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width removes the validation error from the field" time="0.03">
275
+ </testcase>
276
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the applied width is less than the minimum width sets the dimensions state as valid" time="0.029">
277
+ </testcase>
278
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented proportionally scales the height in the dimensions state" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented proportionally scales the height in the dimensions state" time="0.028">
279
+ </testcase>
280
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented updates the height field with the scaled height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented updates the height field with the scaled height" time="0.031">
281
+ </testcase>
282
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared increments the initial width for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared increments the initial width for the field value" time="0.052">
283
+ </testcase>
284
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared increments the initial width for the dimensions state width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared increments the initial width for the dimensions state width" time="0.046">
285
+ </testcase>
286
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared removes the validation error from the field" time="0.059">
287
+ </testcase>
288
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value had been cleared sets the dimensions state as valid" time="0.049">
289
+ </testcase>
290
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value is not a number preserves the invalid value in the field" time="0.066">
291
+ </testcase>
292
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value is not a number sets the dimensions state width to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Width&quot; field when incremented when the value is not a number sets the dimensions state width to NaN" time="0.149">
293
+ </testcase>
294
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field is present" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field is present" time="0.025">
295
+ </testcase>
296
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field is not present" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field is not present" time="0.027">
297
+ </testcase>
298
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element uses the applied height as the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element uses the applied height as the field value" time="0.027">
299
+ </testcase>
300
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element uses the applied height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element uses the applied height for the dimensions state height" time="0.018">
301
+ </testcase>
302
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element when the applied height is less than the minimum height displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element when the applied height is less than the minimum height displays a validation error with the field" time="0.023">
303
+ </testcase>
304
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element when the applied height is less than the minimum height sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when a height has been applied to the element when the applied height is less than the minimum height sets the dimensions state as invalid" time="0.021">
305
+ </testcase>
306
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when no height has been applied to the element uses the natural height as the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when no height has been applied to the element uses the natural height as the field value" time="0.024">
307
+ </testcase>
308
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when no height has been applied to the element uses the applied height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when no height has been applied to the element uses the applied height for the dimensions state height" time="0.018">
309
+ </testcase>
310
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes updates the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes updates the value in the field" time="0.029">
311
+ </testcase>
312
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes updates dimensions state height with the parsed number" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes updates dimensions state height with the parsed number" time="0.029">
313
+ </testcase>
314
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes proportionally scales the width in the dimensions state" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes proportionally scales the width in the dimensions state" time="0.033">
315
+ </testcase>
316
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes updates the width field with the scaled width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes updates the width field with the scaled width" time="0.026">
317
+ </testcase>
318
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value includes whitespace preserves the whitespace in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value includes whitespace preserves the whitespace in the field" time="0.029">
319
+ </testcase>
320
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value includes whitespace ignores whitespace in the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value includes whitespace ignores whitespace in the dimensions state height" time="0.027">
321
+ </testcase>
322
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is a decimal number preserves the decimal value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is a decimal number preserves the decimal value in the field" time="0.032">
323
+ </testcase>
324
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is a decimal number sets the dimensions state height with the rounded integer" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is a decimal number sets the dimensions state height with the rounded integer" time="0.028">
325
+ </testcase>
326
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared sets the dimensions state height to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared sets the dimensions state height to null" time="0.03">
327
+ </testcase>
328
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared clears the width field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared clears the width field" time="0.029">
329
+ </testcase>
330
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared sets the dimensions state width to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared sets the dimensions state width to null" time="0.028">
331
+ </testcase>
332
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is cleared sets the dimensions state as invalid" time="0.031">
333
+ </testcase>
334
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number preserves the invalid value in the field" time="0.028">
335
+ </testcase>
336
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number sets the dimensions state height to NaN" time="0.033">
337
+ </testcase>
338
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number clears the width field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number clears the width field" time="0.039">
339
+ </testcase>
340
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number sets the dimensions state width to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a number sets the dimensions state width to NaN" time="0.033">
341
+ </testcase>
342
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number preserves the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number preserves the value in the field" time="0.041">
343
+ </testcase>
344
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number sets the dimensions state height to NaN" time="0.032">
345
+ </testcase>
346
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number sets the dimensions state as invalid" time="0.035">
347
+ </testcase>
348
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is not a finite number displays a validation error with the field" time="0.034">
349
+ </testcase>
350
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is less than the minimum displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is less than the minimum displays a validation error with the field" time="0.047">
351
+ </testcase>
352
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is less than the minimum sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value is less than the minimum sets the dimensions state as invalid" time="0.049">
353
+ </testcase>
354
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value becomes valid removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value becomes valid removes the validation error from the field" time="0.036">
355
+ </testcase>
356
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value becomes valid sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value becomes valid sets the dimensions state as valid" time="0.036">
357
+ </testcase>
358
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value remains invalid displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value remains invalid displays a validation error with the field" time="0.037">
359
+ </testcase>
360
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value remains invalid sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when the value changes when the value remains invalid sets the dimensions state as invalid" time="0.041">
361
+ </testcase>
362
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when a height has been applied to the element decrements the applied height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when a height has been applied to the element decrements the applied height for the field value" time="0.029">
363
+ </testcase>
364
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when a height has been applied to the element decrements the applied height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when a height has been applied to the element decrements the applied height for the dimensions state height" time="0.028">
365
+ </testcase>
366
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when no height has been applied to the element decrements the natural height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when no height has been applied to the element decrements the natural height for the field value" time="0.026">
367
+ </testcase>
368
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when no height has been applied to the element decrements the natural height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when no height has been applied to the element decrements the natural height for the dimensions state height" time="0.031">
369
+ </testcase>
370
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height uses the minimum height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height uses the minimum height for the field value" time="0.027">
371
+ </testcase>
372
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height uses the minimum height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height uses the minimum height for the dimensions state height" time="0.031">
373
+ </testcase>
374
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height removes the validation error from the field" time="0.039">
375
+ </testcase>
376
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the applied height is less than the minimum height sets the dimensions state as valid" time="0.032">
377
+ </testcase>
378
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented proportionally scales the width in the dimensions state" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented proportionally scales the width in the dimensions state" time="0.044">
379
+ </testcase>
380
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented updates the width field with the scaled width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented updates the width field with the scaled width" time="0.039">
381
+ </testcase>
382
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared decrements the initial height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared decrements the initial height for the field value" time="0.042">
383
+ </testcase>
384
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared decrements the initial height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared decrements the initial height for the dimensions state height" time="0.037">
385
+ </testcase>
386
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared removes the validation error from the field" time="0.038">
387
+ </testcase>
388
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value had been cleared sets the dimensions state as valid" time="0.038">
389
+ </testcase>
390
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is the minimum height preserves the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is the minimum height preserves the value in the field" time="0.038">
391
+ </testcase>
392
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is the minimum height sets the dimensions state height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is the minimum height sets the dimensions state height to the minimum height" time="0.043">
393
+ </testcase>
394
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width preserves the value in the width field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width preserves the value in the width field" time="0.048">
395
+ </testcase>
396
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width preserves the aspect ratio for the height field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width preserves the aspect ratio for the height field" time="0.046">
397
+ </testcase>
398
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width sets the dimensions state width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width sets the dimensions state width to the minimum width" time="0.048">
399
+ </testcase>
400
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width preserves the aspect ratio for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the width is the minimum width preserves the aspect ratio for the dimensions state height" time="0.072">
401
+ </testcase>
402
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is not a number preserves the invalid value in the field" time="0.074">
403
+ </testcase>
404
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is not a number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when decremented when the value is not a number sets the dimensions state height to NaN" time="0.041">
405
+ </testcase>
406
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when a height has been applied to the element increments the applied height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when a height has been applied to the element increments the applied height for the field value" time="0.03">
407
+ </testcase>
408
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when a height has been applied to the element increments the applied height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when a height has been applied to the element increments the applied height for the dimensions state height" time="0.027">
409
+ </testcase>
410
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when no height has been applied to the element increments the natural height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when no height has been applied to the element increments the natural height for the field value" time="0.029">
411
+ </testcase>
412
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when no height has been applied to the element increments the natural height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when no height has been applied to the element increments the natural height for the dimensions state height" time="0.03">
413
+ </testcase>
414
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height uses the minimum height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height uses the minimum height for the field value" time="0.029">
415
+ </testcase>
416
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height uses the minimum height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height uses the minimum height for the dimensions state height" time="0.026">
417
+ </testcase>
418
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height removes the validation error from the field" time="0.028">
419
+ </testcase>
420
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the applied height is less than the minimum height sets the dimensions state as valid" time="0.033">
421
+ </testcase>
422
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented proportionally scales the width in the dimensions state" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented proportionally scales the width in the dimensions state" time="0.035">
423
+ </testcase>
424
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented updates the width field with the scaled width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented updates the width field with the scaled width" time="0.038">
425
+ </testcase>
426
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared increments the initial height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared increments the initial height for the field value" time="0.035">
427
+ </testcase>
428
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared increments the initial height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared increments the initial height for the dimensions state height" time="0.039">
429
+ </testcase>
430
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared removes the validation error from the field" time="0.039">
431
+ </testcase>
432
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value had been cleared sets the dimensions state as valid" time="0.036">
433
+ </testcase>
434
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value is not a number preserves the invalid value in the field" time="0.031">
435
+ </testcase>
436
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value is not a number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Height&quot; field when incremented when the value is not a number sets the dimensions state height to NaN" time="0.032">
437
+ </testcase>
438
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field is present" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field is present" time="0.016">
439
+ </testcase>
440
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field is not present" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field is not present" time="0.018">
441
+ </testcase>
442
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes updates the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes updates the value in the field" time="0.022">
443
+ </testcase>
444
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value includes whitespace preserves the whitespace in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value includes whitespace preserves the whitespace in the field" time="0.023">
445
+ </testcase>
446
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value includes whitespace ignores whitespace in the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value includes whitespace ignores whitespace in the dimensions state height" time="0.027">
447
+ </testcase>
448
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is a decimal number preserves the decimal value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is a decimal number preserves the decimal value in the field" time="0.031">
449
+ </testcase>
450
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is a decimal number sets the dimensions state height with the rounded integer" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is a decimal number sets the dimensions state height with the rounded integer" time="0.038">
451
+ </testcase>
452
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is cleared sets the dimensions state percentage to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is cleared sets the dimensions state percentage to null" time="0.032">
453
+ </testcase>
454
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is cleared sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is cleared sets the dimensions state as invalid" time="0.031">
455
+ </testcase>
456
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a number preserves the invalid value in the field" time="0.028">
457
+ </testcase>
458
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a number sets the dimensions state percentage to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a number sets the dimensions state percentage to NaN" time="0.029">
459
+ </testcase>
460
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number preserves the value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number preserves the value in the field" time="0.038">
461
+ </testcase>
462
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number sets the dimensions state height to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number sets the dimensions state height to NaN" time="0.033">
463
+ </testcase>
464
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number sets the dimensions state as invalid" time="0.028">
465
+ </testcase>
466
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is not a finite number displays a validation error with the field" time="0.024">
467
+ </testcase>
468
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is less than the minimum displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is less than the minimum displays a validation error with the field" time="0.029">
469
+ </testcase>
470
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is less than the minimum sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value is less than the minimum sets the dimensions state as invalid" time="0.028">
471
+ </testcase>
472
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value becomes valid removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value becomes valid removes the validation error from the field" time="0.035">
473
+ </testcase>
474
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value becomes valid sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value becomes valid sets the dimensions state as valid" time="0.031">
475
+ </testcase>
476
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value remains invalid displays a validation error with the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value remains invalid displays a validation error with the field" time="0.029">
477
+ </testcase>
478
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value remains invalid sets the dimensions state as invalid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when the value changes when the value remains invalid sets the dimensions state as invalid" time="0.031">
479
+ </testcase>
480
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when a percentage has been applied to the element decrements the applied percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when a percentage has been applied to the element decrements the applied percentage for the field value" time="0.023">
481
+ </testcase>
482
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when a percentage has been applied to the element decrements the applied percentage for the dimensions state percentage" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when a percentage has been applied to the element decrements the applied percentage for the dimensions state percentage" time="0.026">
483
+ </testcase>
484
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when no percentage has been applied to the element decrements the full percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when no percentage has been applied to the element decrements the full percentage for the field value" time="0.022">
485
+ </testcase>
486
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when no percentage has been applied to the element decrements the full percentage for the dimensions state percentage" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when no percentage has been applied to the element decrements the full percentage for the dimensions state percentage" time="0.023">
487
+ </testcase>
488
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the field value" time="0.022">
489
+ </testcase>
490
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the dimensions state percentage" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the dimensions state percentage" time="0.022">
491
+ </testcase>
492
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage removes the validation error from the field" time="0.024">
493
+ </testcase>
494
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the applied percentage is less than the minimum percentage sets the dimensions state as valid" time="0.023">
495
+ </testcase>
496
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared decrements the initial percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared decrements the initial percentage for the field value" time="0.029">
497
+ </testcase>
498
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared decrements the initial percentage for the dimensions state percentage" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared decrements the initial percentage for the dimensions state percentage" time="0.032">
499
+ </testcase>
500
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared removes the validation error from the field" time="0.03">
501
+ </testcase>
502
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value had been cleared sets the dimensions state as valid" time="0.029">
503
+ </testcase>
504
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value is not a number preserves the invalid value in the field" time="0.032">
505
+ </testcase>
506
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value is not a number sets the dimensions state percentage to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when decremented when the value is not a number sets the dimensions state percentage to NaN" time="0.022">
507
+ </testcase>
508
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when a percentage has been applied to the element increments the applied height for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when a percentage has been applied to the element increments the applied height for the field value" time="0.024">
509
+ </testcase>
510
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when a percentage has been applied to the element increments the applied height for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when a percentage has been applied to the element increments the applied height for the dimensions state height" time="0.021">
511
+ </testcase>
512
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when no percentage has been applied to the element increments the full percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when no percentage has been applied to the element increments the full percentage for the field value" time="0.024">
513
+ </testcase>
514
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when no percentage has been applied to the element increments the full percentage for the dimensions state percentage" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when no percentage has been applied to the element increments the full percentage for the dimensions state percentage" time="0.022">
515
+ </testcase>
516
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the field value" time="0.068">
517
+ </testcase>
518
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the dimensions state percentage" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage uses the minimum percentage for the dimensions state percentage" time="0.034">
519
+ </testcase>
520
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage removes the validation error from the field" time="0.04">
521
+ </testcase>
522
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the applied percentage is less than the minimum percentage sets the dimensions state as valid" time="0.044">
523
+ </testcase>
524
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared increments the initial percentage for the field value" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared increments the initial percentage for the field value" time="0.052">
525
+ </testcase>
526
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared increments the initial percentage for the dimensions state height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared increments the initial percentage for the dimensions state height" time="0.047">
527
+ </testcase>
528
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared removes the validation error from the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared removes the validation error from the field" time="0.045">
529
+ </testcase>
530
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared sets the dimensions state as valid" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value had been cleared sets the dimensions state as valid" time="0.036">
531
+ </testcase>
532
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value is not a number preserves the invalid value in the field" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value is not a number preserves the invalid value in the field" time="0.024">
533
+ </testcase>
534
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value is not a number sets the dimensions state percentage to NaN" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsInput &quot;Percentage&quot; field when incremented when the value is not a number sets the dimensions state percentage to NaN" time="0.024">
535
+ </testcase>
536
+ </testsuite>
537
+ <testsuite name="RCE Plugins &gt; Filter" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:35:34" time="10.461" tests="46">
538
+ <testcase classname="RCE Plugins &gt; Filter does not render &quot;Icon Maker Icons&quot; option when the feature is disabled" name="RCE Plugins &gt; Filter does not render &quot;Icon Maker Icons&quot; option when the feature is disabled" time="0.329">
539
+ </testcase>
540
+ <testcase classname="RCE Plugins &gt; Filter renders &quot;Icon Maker Icons&quot; option when the feature is enabled" name="RCE Plugins &gt; Filter renders &quot;Icon Maker Icons&quot; option when the feature is enabled" time="0.291">
541
+ </testcase>
542
+ <testcase classname="RCE Plugins &gt; Filter initially sets content type to default" name="RCE Plugins &gt; Filter initially sets content type to default" time="0.181">
543
+ </testcase>
544
+ <testcase classname="RCE Plugins &gt; Filter initially sets content subtype to defualt" name="RCE Plugins &gt; Filter initially sets content subtype to defualt" time="0.117">
545
+ </testcase>
546
+ <testcase classname="RCE Plugins &gt; Filter initially sets sort value to default" name="RCE Plugins &gt; Filter initially sets sort value to default" time="0.084">
547
+ </testcase>
548
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; field sets content type to &quot;user_files&quot; when &quot;User Files&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Type&quot; field sets content type to &quot;user_files&quot; when &quot;User Files&quot; is selected" time="0.135">
549
+ </testcase>
550
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; field sets content type to &quot;course_files&quot; when &quot;Course Files&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Type&quot; field sets content type to &quot;course_files&quot; when &quot;Course Files&quot; is selected" time="0.128">
551
+ </testcase>
552
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; field sets content type to &quot;links&quot; when &quot;Links&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Type&quot; field sets content type to &quot;links&quot; when &quot;Links&quot; is selected" time="0.189">
553
+ </testcase>
554
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; field does not change content subtype when changed" name="RCE Plugins &gt; Filter &quot;Content Type&quot; field does not change content subtype when changed" time="0.204">
555
+ </testcase>
556
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; field does not change sort value when changed" name="RCE Plugins &gt; Filter &quot;Content Type&quot; field does not change sort value when changed" time="0.226">
557
+ </testcase>
558
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context has &quot;Course&quot; options" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context has &quot;Course&quot; options" time="0.103">
559
+ </testcase>
560
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context has &quot;Group&quot; options" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context has &quot;Group&quot; options" time="0.114">
561
+ </testcase>
562
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context has &quot;User&quot; options" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context has &quot;User&quot; options" time="0.111">
563
+ </testcase>
564
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context includes the Link, Course, and User options in course context" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context includes the Link, Course, and User options in course context" time="0.083">
565
+ </testcase>
566
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context includes only User option in user context" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context includes only User option in user context" time="0.058">
567
+ </testcase>
568
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context includes the Link and User options in group context" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context includes the Link and User options in group context" time="0.091">
569
+ </testcase>
570
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Type&quot; in context does not render Content Type when in Edit Course Link Tray" name="RCE Plugins &gt; Filter &quot;Content Type&quot; in context does not render Content Type when in Edit Course Link Tray" time="0.055">
571
+ </testcase>
572
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field is visible when the Content Type is &quot;User Files&quot;" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field is visible when the Content Type is &quot;User Files&quot;" time="0.202">
573
+ </testcase>
574
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field is not visible when the Content Type is &quot;Links&quot;" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field is not visible when the Content Type is &quot;Links&quot;" time="0.131">
575
+ </testcase>
576
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;images&quot; when &quot;Images&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;images&quot; when &quot;Images&quot; is selected" time="0.139">
577
+ </testcase>
578
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;documents&quot; when &quot;Documents&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;documents&quot; when &quot;Documents&quot; is selected" time="0.136">
579
+ </testcase>
580
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;media&quot; when &quot;Media&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;media&quot; when &quot;Media&quot; is selected" time="0.137">
581
+ </testcase>
582
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;all&quot; when &quot;All&quot; is selected" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field sets content subtype to &quot;all&quot; when &quot;All&quot; is selected" time="0.186">
583
+ </testcase>
584
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field does not change content type when changed" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field does not change content type when changed" time="0.133">
585
+ </testcase>
586
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field does not change sort value when changed" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field does not change sort value when changed" time="0.276">
587
+ </testcase>
588
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected sets the content subtype to &quot;icon_maker_icons&quot;" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected sets the content subtype to &quot;icon_maker_icons&quot;" time="0.263">
589
+ </testcase>
590
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected sets the content type to &quot;course_files&quot;" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected sets the content type to &quot;course_files&quot;" time="0.282">
591
+ </testcase>
592
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected does not render &quot;User Files&quot; content type" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected does not render &quot;User Files&quot; content type" time="0.289">
593
+ </testcase>
594
+ <testcase classname="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected renders the &quot;Course Files&quot; content type" name="RCE Plugins &gt; Filter &quot;Content Subtype&quot; field when &quot;Icon Maker Icons&quot; is selected renders the &quot;Course Files&quot; content type" time="0.272">
595
+ </testcase>
596
+ <testcase classname="RCE Plugins &gt; Filter deals with switching to and from Links changes to &quot;all&quot; when type changes from &quot;Links&quot; to &quot;Files&quot;" name="RCE Plugins &gt; Filter deals with switching to and from Links changes to &quot;all&quot; when type changes from &quot;Links&quot; to &quot;Files&quot;" time="0.382">
597
+ </testcase>
598
+ <testcase classname="RCE Plugins &gt; Filter &quot;Sort By&quot; field is visible when the Content Type is &quot;Files&quot;" name="RCE Plugins &gt; Filter &quot;Sort By&quot; field is visible when the Content Type is &quot;Files&quot;" time="0.382">
599
+ </testcase>
600
+ <testcase classname="RCE Plugins &gt; Filter &quot;Sort By&quot; field is not visible when the Content Type is &quot;Links&quot;" name="RCE Plugins &gt; Filter &quot;Sort By&quot; field is not visible when the Content Type is &quot;Links&quot;" time="0.16">
601
+ </testcase>
602
+ <testcase classname="RCE Plugins &gt; Filter &quot;Sort By&quot; field sets sort value to &quot;alphabetical&quot; when &quot;Alphabetical&quot; is selected" name="RCE Plugins &gt; Filter &quot;Sort By&quot; field sets sort value to &quot;alphabetical&quot; when &quot;Alphabetical&quot; is selected" time="0.172">
603
+ </testcase>
604
+ <testcase classname="RCE Plugins &gt; Filter &quot;Sort By&quot; field sets sort value to &quot;date_added&quot; when &quot;Date Added&quot; is selected" name="RCE Plugins &gt; Filter &quot;Sort By&quot; field sets sort value to &quot;date_added&quot; when &quot;Date Added&quot; is selected" time="0.225">
605
+ </testcase>
606
+ <testcase classname="RCE Plugins &gt; Filter &quot;Sort By&quot; field does not change content type when changed" name="RCE Plugins &gt; Filter &quot;Sort By&quot; field does not change content type when changed" time="0.163">
607
+ </testcase>
608
+ <testcase classname="RCE Plugins &gt; Filter &quot;Sort By&quot; field does not change content subtype when changed" name="RCE Plugins &gt; Filter &quot;Sort By&quot; field does not change content subtype when changed" time="0.192">
609
+ </testcase>
610
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is documents" name="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is documents" time="0.048">
611
+ </testcase>
612
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is images" name="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is images" time="0.054">
613
+ </testcase>
614
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is media" name="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is media" time="0.057">
615
+ </testcase>
616
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentType is links" name="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentType is links" time="0.025">
617
+ </testcase>
618
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is all" name="RCE Plugins &gt; Filter &quot;Search&quot; field is visible when the contentSubtype is all" time="0.038">
619
+ </testcase>
620
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field updates filter settings when the search string is &gt; 3 chars long" name="RCE Plugins &gt; Filter &quot;Search&quot; field updates filter settings when the search string is &gt; 3 chars long" time="0.329">
621
+ </testcase>
622
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field clears search when clear button is clicked" name="RCE Plugins &gt; Filter &quot;Search&quot; field clears search when clear button is clicked" time="0.614">
623
+ </testcase>
624
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field is not readonly while content is loading" name="RCE Plugins &gt; Filter &quot;Search&quot; field is not readonly while content is loading" time="0.064">
625
+ </testcase>
626
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field shows the search message when not loading" name="RCE Plugins &gt; Filter &quot;Search&quot; field shows the search message when not loading" time="0.054">
627
+ </testcase>
628
+ <testcase classname="RCE Plugins &gt; Filter &quot;Search&quot; field shows the loading message when loading" name="RCE Plugins &gt; Filter &quot;Search&quot; field shows the loading message when loading" time="0.054">
629
+ </testcase>
630
+ </testsuite>
631
+ <testsuite name="RCE" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:35:44" time="3.727" tests="2">
632
+ <testcase classname="RCE bridges newly rendered editors" name="RCE bridges newly rendered editors" time="0.208">
633
+ </testcase>
634
+ <testcase classname="RCE supports getCode() and setCode() on its ref" name="RCE supports getCode() and setCode() on its ref" time="0.063">
635
+ </testcase>
636
+ </testsuite>
637
+ <testsuite name="UploadFile" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:35:48" time="5.232" tests="21">
638
+ <testcase classname="UploadFile calls onDismiss prop when closing" name="UploadFile calls onDismiss prop when closing" time="1.202">
639
+ </testcase>
640
+ <testcase classname="UploadFile calls handleSubmit on submit" name="UploadFile calls handleSubmit on submit" time="0.2">
641
+ </testcase>
642
+ <testcase classname="UploadFile panel selection adds computer and url panels" name="UploadFile panel selection adds computer and url panels" time="0.11">
643
+ </testcase>
644
+ <testcase classname="UploadFile panel selection adds only the computer panel" name="UploadFile panel selection adds only the computer panel" time="0.1">
645
+ </testcase>
646
+ <testcase classname="UploadFile tab navigation shows the Unsplash panel when the tab is clicked" name="UploadFile tab navigation shows the Unsplash panel when the tab is clicked" time="1.178">
647
+ </testcase>
648
+ <testcase classname="UploadFile tab navigation shows the URL panel when the tab is clicked" name="UploadFile tab navigation shows the URL panel when the tab is clicked" time="0.185">
649
+ </testcase>
650
+ <testcase classname="UploadFile tab navigation shows the computer panel when the tab is clicked" name="UploadFile tab navigation shows the computer panel when the tab is clicked" time="0.633">
651
+ </testcase>
652
+ <testcase classname="UploadFile tab navigation navigates from one tab to another" name="UploadFile tab navigation navigates from one tab to another" time="0.244">
653
+ </testcase>
654
+ <testcase classname="UploadFile handleSubmit inserts image with url source when URL panel is selected" name="UploadFile handleSubmit inserts image with url source when URL panel is selected" time="0.001">
655
+ </testcase>
656
+ <testcase classname="UploadFile handleSubmit inserts the image with url source and includes alt text" name="UploadFile handleSubmit inserts the image with url source and includes alt text" time="0.001">
657
+ </testcase>
658
+ <testcase classname="UploadFile handleSubmit contentProps.startMediaUpload called for images when Computer panel is selected" name="UploadFile handleSubmit contentProps.startMediaUpload called for images when Computer panel is selected" time="0.001">
659
+ </testcase>
660
+ <testcase classname="UploadFile handleSubmit contentProps.startMediaUpload called for video media when Computer panel is selected" name="UploadFile handleSubmit contentProps.startMediaUpload called for video media when Computer panel is selected" time="0">
661
+ </testcase>
662
+ <testcase classname="UploadFile handleSubmit contentProps.startMediaUpload called for images when Computer panel is selected and includes image options" name="UploadFile handleSubmit contentProps.startMediaUpload called for images when Computer panel is selected and includes image options" time="0">
663
+ </testcase>
664
+ <testcase classname="UploadFile handleSubmit contentProps.startMediaUpload called for audio media when Computer panel is selected" name="UploadFile handleSubmit contentProps.startMediaUpload called for audio media when Computer panel is selected" time="0.001">
665
+ </testcase>
666
+ <testcase classname="UploadFile handleSubmit contentProps.startMediaUpload called for documents when Computer panel is selected" name="UploadFile handleSubmit contentProps.startMediaUpload called for documents when Computer panel is selected" time="0.001">
667
+ </testcase>
668
+ <testcase classname="UploadFile handleSubmit Unsplash Panel Selected calls source.pingbackUnsplash" name="UploadFile handleSubmit Unsplash Panel Selected calls source.pingbackUnsplash" time="0">
669
+ </testcase>
670
+ <testcase classname="UploadFile handleSubmit Unsplash Panel Selected inserts an image tag with the proper URL and alt attributes" name="UploadFile handleSubmit Unsplash Panel Selected inserts an image tag with the proper URL and alt attributes" time="0.001">
671
+ </testcase>
672
+ <testcase classname="UploadFile Disabled Submit Computer Panel disables the submit button when there is no file uploaded" name="UploadFile Disabled Submit Computer Panel disables the submit button when there is no file uploaded" time="0.082">
673
+ </testcase>
674
+ <testcase classname="UploadFile Disabled Submit Computer Panel does not allow Enter to submit the form when no file is uploaded" name="UploadFile Disabled Submit Computer Panel does not allow Enter to submit the form when no file is uploaded" time="0.079">
675
+ </testcase>
676
+ <testcase classname="UploadFile Disabled Submit Unsplash Panel disables the submit button when there is no unsplash image chosen" name="UploadFile Disabled Submit Unsplash Panel disables the submit button when there is no unsplash image chosen" time="0.063">
677
+ </testcase>
678
+ <testcase classname="UploadFile Disabled Submit URL Panel disables the submit button when there is no URL entered" name="UploadFile Disabled Submit URL Panel disables the submit button when there is no URL entered" time="0.071">
679
+ </testcase>
680
+ </testsuite>
681
+ <testsuite name="CustomNumberInput" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:35:53" time="4.55" tests="12">
682
+ <testcase classname="CustomNumberInput increment using up arrow" name="CustomNumberInput increment using up arrow" time="0.024">
683
+ </testcase>
684
+ <testcase classname="CustomNumberInput increment using down arrow" name="CustomNumberInput increment using down arrow" time="0.008">
685
+ </testcase>
686
+ <testcase classname="CustomNumberInput on blur calls parseValueCallback with correct value" name="CustomNumberInput on blur calls parseValueCallback with correct value" time="0.015">
687
+ </testcase>
688
+ <testcase classname="CustomNumberInput on blur sets processed &amp; formatted value" name="CustomNumberInput on blur sets processed &amp; formatted value" time="0.011">
689
+ </testcase>
690
+ <testcase classname="CustomNumberInput on blur calls onChange with processed value" name="CustomNumberInput on blur calls onChange with processed value" time="0.009">
691
+ </testcase>
692
+ <testcase classname="CustomNumberInput on blur doesn&apos;t show messages" name="CustomNumberInput on blur doesn&apos;t show messages" time="0.015">
693
+ </testcase>
694
+ <testcase classname="CustomNumberInput on blur shows error messages after parsing" name="CustomNumberInput on blur shows error messages after parsing" time="0.012">
695
+ </testcase>
696
+ <testcase classname="CustomNumberInput on debounce calls parseValueCallback with correct value" name="CustomNumberInput on debounce calls parseValueCallback with correct value" time="1.007">
697
+ </testcase>
698
+ <testcase classname="CustomNumberInput on debounce sets processed &amp; formatted value" name="CustomNumberInput on debounce sets processed &amp; formatted value" time="1.008">
699
+ </testcase>
700
+ <testcase classname="CustomNumberInput on debounce calls onChange with processed value" name="CustomNumberInput on debounce calls onChange with processed value" time="1.007">
701
+ </testcase>
702
+ <testcase classname="CustomNumberInput on debounce doesn&apos;t show messages" name="CustomNumberInput on debounce doesn&apos;t show messages" time="0.007">
703
+ </testcase>
704
+ <testcase classname="CustomNumberInput on debounce shows error messages after parsing" name="CustomNumberInput on debounce shows error messages after parsing" time="1.009">
705
+ </testcase>
706
+ </testsuite>
707
+ <testsuite name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray" errors="0" failures="0" skipped="5" timestamp="2022-09-14T15:35:58" time="5.748" tests="37">
708
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray is optionally rendered open" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray is optionally rendered open" time="0.204">
709
+ </testcase>
710
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray is optionally rendered closed" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray is optionally rendered closed" time="0.005">
711
+ </testcase>
712
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray is labeled with &quot;Image Options Tray&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray is labeled with &quot;Image Options Tray&quot;" time="0.138">
713
+ </testcase>
714
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field uses the value of .url in the given image url" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field uses the value of .url in the given image url" time="0.132">
715
+ </testcase>
716
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field can be set" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field can be set" time="0.199">
717
+ </testcase>
718
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field doesn&apos;t appear when url is not external" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field doesn&apos;t appear when url is not external" time="0.124">
719
+ </testcase>
720
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field appears when url&apos;s domain is different than the window&apos;s origin" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field appears when url&apos;s domain is different than the window&apos;s origin" time="0.165">
721
+ </testcase>
722
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field appears when url&apos;s domain is an invalid url" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;File URL&quot; field appears when url&apos;s domain is an invalid url" time="0.138">
723
+ </testcase>
724
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Alt Text&quot; field uses the value of .altText in the given image options" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Alt Text&quot; field uses the value of .altText in the given image options" time="0.116">
725
+ </testcase>
726
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Alt Text&quot; field is blank when the given image options .altText is blank" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Alt Text&quot; field is blank when the given image options .altText is blank" time="0.121">
727
+ </testcase>
728
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Alt Text&quot; field is enabled when .isDecorativeImage is false in the given image options" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Alt Text&quot; field is enabled when .isDecorativeImage is false in the given image options" time="0.118">
729
+ </testcase>
730
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is checked when .isDecorativeImage is true in the given image options" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is checked when .isDecorativeImage is true in the given image options" time="0.118">
731
+ </testcase>
732
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is unchecked when .isDecorativeImage is false in the given image options" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is unchecked when .isDecorativeImage is false in the given image options" time="0.169">
733
+ </testcase>
734
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is enabled when embedding the image" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is enabled when embedding the image" time="0.163">
735
+ </testcase>
736
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is disabled when displaying the image as a link" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;No Alt Text&quot; Checkbox is disabled when displaying the image as a link" time="0.152">
737
+ </testcase>
738
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field is set to &quot;embed&quot; by default" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field is set to &quot;embed&quot; by default" time="0.113">
739
+ </testcase>
740
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field can be set to &quot;Display Text Link&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field can be set to &quot;Display Text Link&quot;" time="0.144">
741
+ </testcase>
742
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field can be reset to &quot;Embed Image&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field can be reset to &quot;Embed Image&quot;" time="0.17">
743
+ </testcase>
744
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field is hidden when image is already linked" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Display Options&quot; field is hidden when image is already linked" time="0.138">
745
+ </testcase>
746
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field is set using the given image options" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field is set using the given image options" time="0.145">
747
+ </testcase>
748
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be set to &quot;Small&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be set to &quot;Small&quot;" time="0.187">
749
+ </testcase>
750
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be re-set to &quot;Medium&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be re-set to &quot;Medium&quot;" time="0">
751
+ <skipped/>
752
+ </testcase>
753
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be set to &quot;Large&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be set to &quot;Large&quot;" time="0.166">
754
+ </testcase>
755
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be set to &quot;Custom&quot;" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Size&quot; field can be set to &quot;Custom&quot;" time="0">
756
+ <skipped/>
757
+ </testcase>
758
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when Alt Text is present is enabled when &quot;No Alt Text&quot; is unchecked" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when Alt Text is present is enabled when &quot;No Alt Text&quot; is unchecked" time="0.136">
759
+ </testcase>
760
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when Alt Text is present is enabled when &quot;No Alt Text&quot; is checked" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when Alt Text is present is enabled when &quot;No Alt Text&quot; is checked" time="0.162">
761
+ </testcase>
762
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked prevents the default click handler" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked prevents the default click handler" time="0.138">
763
+ </testcase>
764
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked calls the .onSave prop" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked calls the .onSave prop" time="0.202">
765
+ </testcase>
766
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the url" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the url" time="0.156">
767
+ </testcase>
768
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the Alt Text" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the Alt Text" time="0.149">
769
+ </testcase>
770
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the &quot;Is Decorative&quot; setting" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the &quot;Is Decorative&quot; setting" time="0.162">
771
+ </testcase>
772
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop cleans the Alt Text when the &quot;is decorative&quot; setting is true" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop cleans the Alt Text when the &quot;is decorative&quot; setting is true" time="0.169">
773
+ </testcase>
774
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop ensures there is an Alt Text when the &quot;is decorative&quot; setting is true" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop ensures there is an Alt Text when the &quot;is decorative&quot; setting is true" time="0.182">
775
+ </testcase>
776
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the &quot;Display As&quot; setting" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the &quot;Display As&quot; setting" time="0.209">
777
+ </testcase>
778
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the width to be applied" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the width to be applied" time="0">
779
+ <skipped/>
780
+ </testcase>
781
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the height to be applied" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the height to be applied" time="0">
782
+ <skipped/>
783
+ </testcase>
784
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the width and height to be applied" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the width and height to be applied" time="0">
785
+ <skipped/>
786
+ </testcase>
787
+ </testsuite>
788
+ <testsuite name="RCE Plugins &gt; CanvasContentTray" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:04" time="5.366" tests="23">
789
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Edit Course Links Tray is labeled with &quot;Edit Course Link&quot;" name="RCE Plugins &gt; CanvasContentTray Edit Course Links Tray is labeled with &quot;Edit Course Link&quot;" time="0.713">
790
+ </testcase>
791
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Edit Course Links Tray renders the LinkDisplay Component" name="RCE Plugins &gt; CanvasContentTray Edit Course Links Tray renders the LinkDisplay Component" time="0.858">
792
+ </testcase>
793
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Edit Course Links Tray replaces the old link when the Replace button is clicked" name="RCE Plugins &gt; CanvasContentTray Edit Course Links Tray replaces the old link when the Replace button is clicked" time="0.217">
794
+ </testcase>
795
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Links&quot; when using the &quot;links&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Links&quot; when using the &quot;links&quot; content type" time="0.069">
796
+ </testcase>
797
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Images&quot; when using the &quot;images&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Images&quot; when using the &quot;images&quot; content type" time="0.062">
798
+ </testcase>
799
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Media&quot; when using the &quot;media&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Media&quot; when using the &quot;media&quot; content type" time="0.056">
800
+ </testcase>
801
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Documents&quot; when using the &quot;course_documents&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Course Documents&quot; when using the &quot;course_documents&quot; content type" time="0.055">
802
+ </testcase>
803
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;User Images&quot; when using the &quot;user_images&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;User Images&quot; when using the &quot;user_images&quot; content type" time="0.05">
804
+ </testcase>
805
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;User Media&quot; when using the &quot;user_media&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;User Media&quot; when using the &quot;user_media&quot; content type" time="0.047">
806
+ </testcase>
807
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;User Documents&quot; when using the &quot;user_documents&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;User Documents&quot; when using the &quot;user_documents&quot; content type" time="0.047">
808
+ </testcase>
809
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Icon Maker Icons&quot; when using the &quot;list_icon_maker_icons&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in course context is labeled with &quot;Icon Maker Icons&quot; when using the &quot;list_icon_maker_icons&quot; content type" time="0.045">
810
+ </testcase>
811
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Links&quot; when using the &quot;links&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Links&quot; when using the &quot;links&quot; content type" time="0.046">
812
+ </testcase>
813
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Images&quot; when using the &quot;images&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Images&quot; when using the &quot;images&quot; content type" time="0.045">
814
+ </testcase>
815
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Media&quot; when using the &quot;media&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Media&quot; when using the &quot;media&quot; content type" time="0.048">
816
+ </testcase>
817
+ <testcase classname="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Documents&quot; when using the &quot;group_documents&quot; content type" name="RCE Plugins &gt; CanvasContentTray Tray Label in group context is labeled with &quot;Group Documents&quot; when using the &quot;group_documents&quot; content type" time="0.046">
818
+ </testcase>
819
+ <testcase classname="RCE Plugins &gt; CanvasContentTray content panel is the links panel for links content types" name="RCE Plugins &gt; CanvasContentTray content panel is the links panel for links content types" time="0.185">
820
+ </testcase>
821
+ <testcase classname="RCE Plugins &gt; CanvasContentTray content panel is the documents panel for document content types" name="RCE Plugins &gt; CanvasContentTray content panel is the documents panel for document content types" time="0.258">
822
+ </testcase>
823
+ <testcase classname="RCE Plugins &gt; CanvasContentTray content panel is the images panel for image content types" name="RCE Plugins &gt; CanvasContentTray content panel is the images panel for image content types" time="0.345">
824
+ </testcase>
825
+ <testcase classname="RCE Plugins &gt; CanvasContentTray content panel is the images panel for icon maker content types" name="RCE Plugins &gt; CanvasContentTray content panel is the images panel for icon maker content types" time="0.211">
826
+ </testcase>
827
+ <testcase classname="RCE Plugins &gt; CanvasContentTray content panel is the media panel for media content types" name="RCE Plugins &gt; CanvasContentTray content panel is the media panel for media content types" time="0.245">
828
+ </testcase>
829
+ <testcase classname="RCE Plugins &gt; CanvasContentTray content panel is the file browser for the all content type" name="RCE Plugins &gt; CanvasContentTray content panel is the file browser for the all content type" time="0.171">
830
+ </testcase>
831
+ <testcase classname="RCE Plugins &gt; CanvasContentTray focus is set on tinymce after tray closes if focus was on the tray" name="RCE Plugins &gt; CanvasContentTray focus is set on tinymce after tray closes if focus was on the tray" time="0.217">
832
+ </testcase>
833
+ <testcase classname="RCE Plugins &gt; CanvasContentTray focus is not set on tinymce after tray closes if focus was elsewhere" name="RCE Plugins &gt; CanvasContentTray focus is not set on tinymce after tray closes if focus was elsewhere" time="0.207">
834
+ </testcase>
835
+ </testsuite>
836
+ <testsuite name="ImageCropperModal" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:09" time="3.525" tests="4">
837
+ <testcase classname="ImageCropperModal renders the message" name="ImageCropperModal renders the message" time="0.169">
838
+ </testcase>
839
+ <testcase classname="ImageCropperModal doesn&apos;t render the message" name="ImageCropperModal doesn&apos;t render the message" time="0.127">
840
+ </testcase>
841
+ <testcase classname="ImageCropperModal calls onSubmit function" name="ImageCropperModal calls onSubmit function" time="1.203">
842
+ </testcase>
843
+ <testcase classname="ImageCropperModal call onSubmit function with correct args" name="ImageCropperModal call onSubmit function with correct args" time="1.17">
844
+ </testcase>
845
+ </testsuite>
846
+ <testsuite name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:13" time="4.239" tests="19">
847
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open opens the tray" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open opens the tray" time="0.164">
848
+ </testcase>
849
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open uses the selected image from the editor" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open uses the selected image from the editor" time="0.102">
850
+ </testcase>
851
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" time="0.218">
852
+ </testcase>
853
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor updates the tray for the given editor" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor updates the tray for the given editor" time="0.218">
854
+ </testcase>
855
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is already open for the given editor keeps the tray open" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is already open for the given editor keeps the tray open" time="0.243">
856
+ </testcase>
857
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is already open for the given editor updates the tray with the selected image from the editor" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #showTrayForEditor() when the tray is already open for the given editor updates the tray with the selected image from the editor" time="0.21">
858
+ </testcase>
859
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #hideTrayForEditor() closes the tray when open for the given editor" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #hideTrayForEditor() closes the tray when open for the given editor" time="0.136">
860
+ </testcase>
861
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #hideTrayForEditor() does not close the tray when open for a different editor" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #hideTrayForEditor() does not close the tray when open for a different editor" time="0.189">
862
+ </testcase>
863
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #hideTrayForEditor() does nothing when the tray was not open" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController #hideTrayForEditor() does nothing when the tray was not open" time="0.001">
864
+ </testcase>
865
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image url text is changing updates the image element url" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image url text is changing updates the image element url" time="0.162">
866
+ </testcase>
867
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image alt text is changing updates the image element alt text" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image alt text is changing updates the image element alt text" time="0.163">
868
+ </testcase>
869
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image is set as decorative sets a role to persist the option" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image is set as decorative sets a role to persist the option" time="0.188">
870
+ </testcase>
871
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image is unset as decorative updates the image element alt text" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image is unset as decorative updates the image element alt text" time="0.181">
872
+ </testcase>
873
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image is unset as decorative sets a role attribute to persist the option" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image is unset as decorative sets a role attribute to persist the option" time="0.17">
874
+ </testcase>
875
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link removes the image" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link removes the image" time="0.151">
876
+ </testcase>
877
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link replaces the image with a link" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link replaces the image with a link" time="0.168">
878
+ </testcase>
879
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link uses the image src for the link href" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link uses the image src for the link href" time="0.179">
880
+ </testcase>
881
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link uses the image alt text for the link label" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link uses the image alt text for the link label" time="0.162">
882
+ </testcase>
883
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link sets focus on the editor" name="RCE &quot;Images&quot; Plugin &gt; ImageOptionsTray &gt; TrayController when saving image options when the image will be displayed as a link sets focus on the editor" time="0.147">
884
+ </testcase>
885
+ </testsuite>
886
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:17" time="4.538" tests="26">
887
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray is optionally rendered open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray is optionally rendered open" time="0.299">
888
+ </testcase>
889
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray is optionally rendered closed" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray is optionally rendered closed" time="0.01">
890
+ </testcase>
891
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray is labeled with &quot;Link Options&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray is labeled with &quot;Link Options&quot;" time="0.142">
892
+ </testcase>
893
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Text&quot; field uses the value of .text in the given content" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Text&quot; field uses the value of .text in the given content" time="0.151">
894
+ </testcase>
895
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Text&quot; field does not show the text field if something other than text was selected" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Text&quot; field does not show the text field if something other than text was selected" time="0.167">
896
+ </testcase>
897
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Link&quot; field uses the value of .url in the given content" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Link&quot; field uses the value of .url in the given content" time="0.167">
898
+ </testcase>
899
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Link&quot; field shows an error message if the url is invalid" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Link&quot; field shows an error message if the url is invalid" time="0.268">
900
+ </testcase>
901
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field is hidden if the link is not previewable" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field is hidden if the link is not previewable" time="0.096">
902
+ </testcase>
903
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field is shown if the link is previewable" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field is shown if the link is previewable" time="0.15">
904
+ </testcase>
905
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;overlay&quot; and auto-preview is hidden if displayAs is &quot;embed-disabled&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;overlay&quot; and auto-preview is hidden if displayAs is &quot;embed-disabled&quot;" time="0.144">
906
+ </testcase>
907
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;inline&quot; and auto-preview is shown if displayAs is &quot;link&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;inline&quot; and auto-preview is shown if displayAs is &quot;link&quot;" time="0.172">
908
+ </testcase>
909
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;inline&quot; and auto-preview is checked if displayAs is &quot;embed&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;inline&quot; and auto-preview is checked if displayAs is &quot;embed&quot;" time="0.168">
910
+ </testcase>
911
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;disable&quot; and auto-preview is hidden if displayAs is &quot;download-link&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field preview_option is &quot;disable&quot; and auto-preview is hidden if displayAs is &quot;download-link&quot;" time="0.136">
912
+ </testcase>
913
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field can be reset to &quot;Display Text Link&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Display Options&quot; field can be reset to &quot;Display Text Link&quot;" time="0.229">
914
+ </testcase>
915
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when a Link url is not present is disabled" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when a Link url is not present is disabled" time="0.193">
916
+ </testcase>
917
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when a Link url is not present does not call the .onSave prop when clicked" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when a Link url is not present does not call the .onSave prop when clicked" time="0.231">
918
+ </testcase>
919
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked prevents the default click handler" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked prevents the default click handler" time="0.187">
920
+ </testcase>
921
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked calls the .onSave prop" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked calls the .onSave prop" time="0.086">
922
+ </testcase>
923
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the Text" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the Text" time="0.083">
924
+ </testcase>
925
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop omits target and class attributes" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop omits target and class attributes" time="0.071">
926
+ </testcase>
927
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop omits embed info if the file is not previewable" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop omits embed info if the file is not previewable" time="0.038">
928
+ </testcase>
929
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes embed info if the file is previewable" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes embed info if the file is previewable" time="0.057">
930
+ </testcase>
931
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop sets autoOpen if the displayAs is &quot;embed&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop sets autoOpen if the displayAs is &quot;embed&quot;" time="0.073">
932
+ </testcase>
933
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the Link" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked when calling the .onSave prop includes the Link" time="0.074">
934
+ </testcase>
935
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked sets disableInlinePreview if preview_option is &quot;overlay&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked sets disableInlinePreview if preview_option is &quot;overlay&quot;" time="0.071">
936
+ </testcase>
937
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked sets disableInlinePreview if preview_option is &quot;disable&quot;" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &quot;Done&quot; button when clicked sets disableInlinePreview if preview_option is &quot;disable&quot;" time="0.069">
938
+ </testcase>
939
+ </testsuite>
940
+ <testsuite name="&lt;TextSection /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:21" time="4.825" tests="7">
941
+ <testcase classname="&lt;TextSection /&gt; changes the icon text" name="&lt;TextSection /&gt; changes the icon text" time="0.262">
942
+ </testcase>
943
+ <testcase classname="&lt;TextSection /&gt; doesn&apos;t change the icon text when reaches the limit when typing" name="&lt;TextSection /&gt; doesn&apos;t change the icon text when reaches the limit when typing" time="0.166">
944
+ </testcase>
945
+ <testcase classname="&lt;TextSection /&gt; doesn&apos;t change the icon text when reaches the limit when pasting" name="&lt;TextSection /&gt; doesn&apos;t change the icon text when reaches the limit when pasting" time="0.552">
946
+ </testcase>
947
+ <testcase classname="&lt;TextSection /&gt; changes the icon text size" name="&lt;TextSection /&gt; changes the icon text size" time="0.917">
948
+ </testcase>
949
+ <testcase classname="&lt;TextSection /&gt; changes the icon text color" name="&lt;TextSection /&gt; changes the icon text color" time="0.55">
950
+ </testcase>
951
+ <testcase classname="&lt;TextSection /&gt; changes the icon text background color" name="&lt;TextSection /&gt; changes the icon text background color" time="0.504">
952
+ </testcase>
953
+ <testcase classname="&lt;TextSection /&gt; changes the icon text position" name="&lt;TextSection /&gt; changes the icon text position" time="0.852">
954
+ </testcase>
955
+ </testsuite>
956
+ <testsuite name="RotationControls" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:26" time="2.361" tests="31">
957
+ <testcase classname="RotationControls renders buttons" name="RotationControls renders buttons" time="0.059">
958
+ </testcase>
959
+ <testcase classname="RotationControls calls function when rotate left is clicked" name="RotationControls calls function when rotate left is clicked" time="0.02">
960
+ </testcase>
961
+ <testcase classname="RotationControls calls function rotate right in is clicked" name="RotationControls calls function rotate right in is clicked" time="0.019">
962
+ </testcase>
963
+ <testcase classname="RotationControls sets angle manually increment using up arrow" name="RotationControls sets angle manually increment using up arrow" time="0.02">
964
+ </testcase>
965
+ <testcase classname="RotationControls sets angle manually increment using down arrow" name="RotationControls sets angle manually increment using down arrow" time="0.019">
966
+ </testcase>
967
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid positive angle" name="RotationControls sets angle manually on blur input with custom valid positive angle" time="0.022">
968
+ </testcase>
969
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid positive value that exceeds 360" name="RotationControls sets angle manually on blur input with custom valid positive value that exceeds 360" time="0.024">
970
+ </testcase>
971
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid positive angle with decimals" name="RotationControls sets angle manually on blur input with custom valid positive angle with decimals" time="0.021">
972
+ </testcase>
973
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid positive angle without º symbol" name="RotationControls sets angle manually on blur input with custom valid positive angle without º symbol" time="0.024">
974
+ </testcase>
975
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid positive angle with decimals and without º symbol" name="RotationControls sets angle manually on blur input with custom valid positive angle with decimals and without º symbol" time="0.023">
976
+ </testcase>
977
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid negative angle" name="RotationControls sets angle manually on blur input with custom valid negative angle" time="0.024">
978
+ </testcase>
979
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid negative value that is lower than -360" name="RotationControls sets angle manually on blur input with custom valid negative value that is lower than -360" time="0.023">
980
+ </testcase>
981
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid negative angle with decimals" name="RotationControls sets angle manually on blur input with custom valid negative angle with decimals" time="0.023">
982
+ </testcase>
983
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid negative angle without º symbol" name="RotationControls sets angle manually on blur input with custom valid negative angle without º symbol" time="0.02">
984
+ </testcase>
985
+ <testcase classname="RotationControls sets angle manually on blur input with custom valid negative angle with decimals and without º symbol" name="RotationControls sets angle manually on blur input with custom valid negative angle with decimals and without º symbol" time="0.022">
986
+ </testcase>
987
+ <testcase classname="RotationControls sets angle manually on blur input with custom invalid angle" name="RotationControls sets angle manually on blur input with custom invalid angle" time="0.025">
988
+ </testcase>
989
+ <testcase classname="RotationControls sets angle manually on blur input with custom empty angle" name="RotationControls sets angle manually on blur input with custom empty angle" time="0.021">
990
+ </testcase>
991
+ <testcase classname="RotationControls sets angle manually on blur input with shows error message" name="RotationControls sets angle manually on blur input with shows error message" time="0.023">
992
+ </testcase>
993
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid positive angle" name="RotationControls sets angle manually on change and debounce input with custom valid positive angle" time="0.028">
994
+ </testcase>
995
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid positive value that exceeds 360" name="RotationControls sets angle manually on change and debounce input with custom valid positive value that exceeds 360" time="0.023">
996
+ </testcase>
997
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid positive angle with decimals" name="RotationControls sets angle manually on change and debounce input with custom valid positive angle with decimals" time="0.024">
998
+ </testcase>
999
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid positive angle without º symbol" name="RotationControls sets angle manually on change and debounce input with custom valid positive angle without º symbol" time="0.025">
1000
+ </testcase>
1001
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid positive angle with decimals and without º symbol" name="RotationControls sets angle manually on change and debounce input with custom valid positive angle with decimals and without º symbol" time="0.024">
1002
+ </testcase>
1003
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid negative angle" name="RotationControls sets angle manually on change and debounce input with custom valid negative angle" time="0.026">
1004
+ </testcase>
1005
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid negative value that is lower than -360" name="RotationControls sets angle manually on change and debounce input with custom valid negative value that is lower than -360" time="0.033">
1006
+ </testcase>
1007
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid negative angle with decimals" name="RotationControls sets angle manually on change and debounce input with custom valid negative angle with decimals" time="0.035">
1008
+ </testcase>
1009
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid negative angle without º symbol" name="RotationControls sets angle manually on change and debounce input with custom valid negative angle without º symbol" time="0.027">
1010
+ </testcase>
1011
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom valid negative angle with decimals and without º symbol" name="RotationControls sets angle manually on change and debounce input with custom valid negative angle with decimals and without º symbol" time="0.03">
1012
+ </testcase>
1013
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom invalid angle" name="RotationControls sets angle manually on change and debounce input with custom invalid angle" time="0.022">
1014
+ </testcase>
1015
+ <testcase classname="RotationControls sets angle manually on change and debounce input with custom empty angle" name="RotationControls sets angle manually on change and debounce input with custom empty angle" time="0.026">
1016
+ </testcase>
1017
+ <testcase classname="RotationControls sets angle manually on change and debounce input with shows error message" name="RotationControls sets angle manually on change and debounce input with shows error message" time="0.033">
1018
+ </testcase>
1019
+ </testsuite>
1020
+ <testsuite name="&lt;ShapeSection /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:29" time="2.058" tests="2">
1021
+ <testcase classname="&lt;ShapeSection /&gt; changes the icon shape" name="&lt;ShapeSection /&gt; changes the icon shape" time="0.962">
1022
+ </testcase>
1023
+ <testcase classname="&lt;ShapeSection /&gt; changes the icon size" name="&lt;ShapeSection /&gt; changes the icon size" time="0.414">
1024
+ </testcase>
1025
+ </testsuite>
1026
+ <testsuite name="ImageOptions" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:31" time="2.582" tests="20">
1027
+ <testcase classname="ImageOptions renders the image mode selector" name="ImageOptions renders the image mode selector" time="0.064">
1028
+ </testcase>
1029
+ <testcase classname="ImageOptions renders the image preview" name="ImageOptions renders the image preview" time="0.017">
1030
+ </testcase>
1031
+ <testcase classname="ImageOptions when no image is selected renders a &quot;None Selected&quot; message" name="ImageOptions when no image is selected renders a &quot;None Selected&quot; message" time="0.016">
1032
+ </testcase>
1033
+ <testcase classname="ImageOptions cropper modal renders" name="ImageOptions cropper modal renders" time="0.201">
1034
+ </testcase>
1035
+ <testcase classname="ImageOptions cropper modal sets state image when submitting" name="ImageOptions cropper modal sets state image when submitting" time="0.255">
1036
+ </testcase>
1037
+ <testcase classname="ImageOptions cropper modal sets state cropper settings when submitting" name="ImageOptions cropper modal sets state cropper settings when submitting" time="0.165">
1038
+ </testcase>
1039
+ <testcase classname="ImageOptions focus management focuses Clear button when an image is selected" name="ImageOptions focus management focuses Clear button when an image is selected" time="0.045">
1040
+ </testcase>
1041
+ <testcase classname="ImageOptions focus management focuses Add Image button when an image is cleared" name="ImageOptions focus management focuses Add Image button when an image is cleared" time="0.036">
1042
+ </testcase>
1043
+ <testcase classname="ImageOptions when image is set sets the image name" name="ImageOptions when image is set sets the image name" time="0.02">
1044
+ </testcase>
1045
+ <testcase classname="ImageOptions when image is set sets the image preview" name="ImageOptions when image is set sets the image preview" time="0.062">
1046
+ </testcase>
1047
+ <testcase classname="ImageOptions when image is set crop button is rendered for course images" name="ImageOptions when image is set crop button is rendered for course images" time="0.03">
1048
+ </testcase>
1049
+ <testcase classname="ImageOptions when image is set crop button is rendered for upload images" name="ImageOptions when image is set crop button is rendered for upload images" time="0.025">
1050
+ </testcase>
1051
+ <testcase classname="ImageOptions when image is set crop button is not rendered for single color images" name="ImageOptions when image is set crop button is not rendered for single color images" time="0.025">
1052
+ </testcase>
1053
+ <testcase classname="ImageOptions when image is set crop button is not rendered for multi color images" name="ImageOptions when image is set crop button is not rendered for multi color images" time="0.022">
1054
+ </testcase>
1055
+ <testcase classname="ImageOptions when image is set crop button calls dispatch callback" name="ImageOptions when image is set crop button calls dispatch callback" time="0.018">
1056
+ </testcase>
1057
+ <testcase classname="ImageOptions when image is set clear button is rendered" name="ImageOptions when image is set clear button is rendered" time="0.016">
1058
+ </testcase>
1059
+ <testcase classname="ImageOptions when image is set clear button executes dispatch callback" name="ImageOptions when image is set clear button executes dispatch callback" time="0.02">
1060
+ </testcase>
1061
+ <testcase classname="ImageOptions when the &quot;Upload Image&quot; mode is selected executes dispatch callback" name="ImageOptions when the &quot;Upload Image&quot; mode is selected executes dispatch callback" time="0.038">
1062
+ </testcase>
1063
+ <testcase classname="ImageOptions when the &quot;Course Images&quot; mode is selected executes dispatch callback" name="ImageOptions when the &quot;Course Images&quot; mode is selected executes dispatch callback" time="0.029">
1064
+ </testcase>
1065
+ <testcase classname="ImageOptions when the &quot;Multi Color Image&quot; mode is selected executes dispatch callback" name="ImageOptions when the &quot;Multi Color Image&quot; mode is selected executes dispatch callback" time="0.024">
1066
+ </testcase>
1067
+ </testsuite>
1068
+ <testsuite name="&lt;ColorSection /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:33" time="2.669" tests="3">
1069
+ <testcase classname="&lt;ColorSection /&gt; changes the icon color" name="&lt;ColorSection /&gt; changes the icon color" time="0.393">
1070
+ </testcase>
1071
+ <testcase classname="&lt;ColorSection /&gt; changes the outline color" name="&lt;ColorSection /&gt; changes the outline color" time="0.379">
1072
+ </testcase>
1073
+ <testcase classname="&lt;ColorSection /&gt; changes the icon outline size" name="&lt;ColorSection /&gt; changes the icon outline size" time="1.117">
1074
+ </testcase>
1075
+ </testsuite>
1076
+ <testsuite name="&lt;Header /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:36" time="3.059" tests="5">
1077
+ <testcase classname="&lt;Header /&gt; changes the icon name" name="&lt;Header /&gt; changes the icon name" time="0.654">
1078
+ </testcase>
1079
+ <testcase classname="&lt;Header /&gt; changes the icon alt text" name="&lt;Header /&gt; changes the icon alt text" time="0.546">
1080
+ </testcase>
1081
+ <testcase classname="&lt;Header /&gt; when the decorative icon box is checked changes the icon isDecorative field" name="&lt;Header /&gt; when the decorative icon box is checked changes the icon isDecorative field" time="0.162">
1082
+ </testcase>
1083
+ <testcase classname="&lt;Header /&gt; when the isDecorative setting is true disables the alt text input" name="&lt;Header /&gt; when the isDecorative setting is true disables the alt text input" time="0.273">
1084
+ </testcase>
1085
+ <testcase classname="&lt;Header /&gt; when the name contains html entities decodes the html entities" name="&lt;Header /&gt; when the name contains html entities decodes the html entities" time="0.027">
1086
+ </testcase>
1087
+ </testsuite>
1088
+ <testsuite name="Course()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:39" time="2.421" tests="19">
1089
+ <testcase classname="Course() renders the image list" name="Course() renders the image list" time="0.043">
1090
+ </testcase>
1091
+ <testcase classname="Course() when an image is clicked dispatches a &quot;stop loading&quot; action" name="Course() when an image is clicked dispatches a &quot;stop loading&quot; action" time="0.093">
1092
+ </testcase>
1093
+ <testcase classname="Course() when an image is clicked dispatches a &quot;set image name&quot; action" name="Course() when an image is clicked dispatches a &quot;set image name&quot; action" time="0.093">
1094
+ </testcase>
1095
+ <testcase classname="Course() when an image is clicked dispatches a &quot;loading&quot; action" name="Course() when an image is clicked dispatches a &quot;loading&quot; action" time="0.095">
1096
+ </testcase>
1097
+ <testcase classname="Course() when an image is clicked dispatches a &quot;set image&quot; action" name="Course() when an image is clicked dispatches a &quot;set image&quot; action" time="0.09">
1098
+ </testcase>
1099
+ <testcase classname="Course() when an image is clicked dispatches a &quot;open cropper&quot; action" name="Course() when an image is clicked dispatches a &quot;open cropper&quot; action" time="0.081">
1100
+ </testcase>
1101
+ <testcase classname="Course() when an image is clicked dispatches a &quot;set image collection open&quot; action" name="Course() when an image is clicked dispatches a &quot;set image collection open&quot; action" time="0.078">
1102
+ </testcase>
1103
+ <testcase classname="Course() when an image is clicked and is unsupported dispatches a &quot;clear image&quot; action" name="Course() when an image is clicked and is unsupported dispatches a &quot;clear image&quot; action" time="0.076">
1104
+ </testcase>
1105
+ <testcase classname="Course() when an image is clicked and is unsupported invokes onChange action &quot;set error&quot;" name="Course() when an image is clicked and is unsupported invokes onChange action &quot;set error&quot;" time="0.068">
1106
+ </testcase>
1107
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;stop loading&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;stop loading&quot; action" time="0.07">
1108
+ </testcase>
1109
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;set image name&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;set image name&quot; action" time="0.067">
1110
+ </testcase>
1111
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;loading&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;loading&quot; action" time="0.067">
1112
+ </testcase>
1113
+ <testcase classname="Course() when a image to be compressed is clicked compressImage() was called" name="Course() when a image to be compressed is clicked compressImage() was called" time="0.069">
1114
+ </testcase>
1115
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;set compression status&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;set compression status&quot; action" time="0.069">
1116
+ </testcase>
1117
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;set image&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;set image&quot; action" time="0.065">
1118
+ </testcase>
1119
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;open cropper&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;open cropper&quot; action" time="0.065">
1120
+ </testcase>
1121
+ <testcase classname="Course() when a image to be compressed is clicked dispatches a &quot;set image collection open&quot; action" name="Course() when a image to be compressed is clicked dispatches a &quot;set image collection open&quot; action" time="0.085">
1122
+ </testcase>
1123
+ <testcase classname="Course() when loading state changes calls &quot;onLoading&quot;" name="Course() when loading state changes calls &quot;onLoading&quot;" time="0.033">
1124
+ </testcase>
1125
+ <testcase classname="Course() when loading state changes calls &quot;onLoaded&quot;" name="Course() when loading state changes calls &quot;onLoaded&quot;" time="0.026">
1126
+ </testcase>
1127
+ </testsuite>
1128
+ <testsuite name="LinkDisplay" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:42" time="1.343" tests="8">
1129
+ <testcase classname="LinkDisplay text input displays link text prop" name="LinkDisplay text input displays link text prop" time="0.039">
1130
+ </testcase>
1131
+ <testcase classname="LinkDisplay component displays the icon passed in as a prop" name="LinkDisplay component displays the icon passed in as a prop" time="0.016">
1132
+ </testcase>
1133
+ <testcase classname="LinkDisplay placeholder text matches the prop" name="LinkDisplay placeholder text matches the prop" time="0.017">
1134
+ </testcase>
1135
+ <testcase classname="LinkDisplay link file name inside the component matches the prop" name="LinkDisplay link file name inside the component matches the prop" time="0.016">
1136
+ </testcase>
1137
+ <testcase classname="LinkDisplay icon color is success when published" name="LinkDisplay icon color is success when published" time="0.019">
1138
+ </testcase>
1139
+ <testcase classname="LinkDisplay icon color is primary when not published" name="LinkDisplay icon color is primary when not published" time="0.018">
1140
+ </testcase>
1141
+ <testcase classname="LinkDisplay handletextchange prop is called when user types in textinput" name="LinkDisplay handletextchange prop is called when user types in textinput" time="0.017">
1142
+ </testcase>
1143
+ <testcase classname="LinkDisplay announces selection changes" name="LinkDisplay announces selection changes" time="0.029">
1144
+ </testcase>
1145
+ </testsuite>
1146
+ <testsuite name="UploadFileModal" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:43" time="3.409" tests="9">
1147
+ <testcase classname="UploadFileModal renders" name="UploadFileModal renders" time="1.482">
1148
+ </testcase>
1149
+ <testcase classname="UploadFileModal Usage Rights is rendered expanded when in a course context and rights are required" name="UploadFileModal Usage Rights is rendered expanded when in a course context and rights are required" time="0.09">
1150
+ </testcase>
1151
+ <testcase classname="UploadFileModal Usage Rights is not rendered in non-course context" name="UploadFileModal Usage Rights is not rendered in non-course context" time="0.042">
1152
+ </testcase>
1153
+ <testcase classname="UploadFileModal Usage Rights is not rendered if not required" name="UploadFileModal Usage Rights is not rendered if not required" time="0.044">
1154
+ </testcase>
1155
+ <testcase classname="UploadFileModal Usage Rights disables the Submit button on the Computer panel unless set" name="UploadFileModal Usage Rights disables the Submit button on the Computer panel unless set" time="0.07">
1156
+ </testcase>
1157
+ <testcase classname="UploadFileModal Usage Rights enables the Submit button on the URL panel even if not set" name="UploadFileModal Usage Rights enables the Submit button on the URL panel even if not set" time="0.056">
1158
+ </testcase>
1159
+ <testcase classname="UploadFileModal Image Attributes is rendered when uploading only images" name="UploadFileModal Image Attributes is rendered when uploading only images" time="0.071">
1160
+ </testcase>
1161
+ <testcase classname="UploadFileModal Image Attributes is not renderedd when uploading anything other than images" name="UploadFileModal Image Attributes is not renderedd when uploading anything other than images" time="0.068">
1162
+ </testcase>
1163
+ <testcase classname="UploadFileModal Image Attributes is not renderedd when requireA11yAttributes is false" name="UploadFileModal Image Attributes is not renderedd when requireA11yAttributes is false" time="0.076">
1164
+ </testcase>
1165
+ </testsuite>
1166
+ <testsuite name="UploadFile: ComputerPanel" errors="0" failures="0" skipped="1" timestamp="2022-09-14T15:36:46" time="1.923" tests="12">
1167
+ <testcase classname="UploadFile: ComputerPanel shows a failure message if the file is rejected" name="UploadFile: ComputerPanel shows a failure message if the file is rejected" time="0.086">
1168
+ </testcase>
1169
+ <testcase classname="UploadFile: ComputerPanel accepts file files" name="UploadFile: ComputerPanel accepts file files" time="0.017">
1170
+ </testcase>
1171
+ <testcase classname="UploadFile: ComputerPanel clears error messages if a valid file is added" name="UploadFile: ComputerPanel clears error messages if a valid file is added" time="0.046">
1172
+ </testcase>
1173
+ <testcase classname="UploadFile: ComputerPanel file preview shows the image preview when hasUploadedFile is true for an image file" name="UploadFile: ComputerPanel file preview shows the image preview when hasUploadedFile is true for an image file" time="0.056">
1174
+ </testcase>
1175
+ <testcase classname="UploadFile: ComputerPanel file preview shows the text file preview when hasUploadedFile is true for a text file" name="UploadFile: ComputerPanel file preview shows the text file preview when hasUploadedFile is true for a text file" time="0.053">
1176
+ </testcase>
1177
+ <testcase classname="UploadFile: ComputerPanel file preview shows the generic file preview when hasUploadedFile is true for a file not an image or text" name="UploadFile: ComputerPanel file preview shows the generic file preview when hasUploadedFile is true for a file not an image or text" time="0.031">
1178
+ </testcase>
1179
+ <testcase classname="UploadFile: ComputerPanel file preview clicking the trash button removes the file preview" name="UploadFile: ComputerPanel file preview clicking the trash button removes the file preview" time="0.032">
1180
+ </testcase>
1181
+ <testcase classname="UploadFile: ComputerPanel file preview Renders a video player preview if afile type is a video" name="UploadFile: ComputerPanel file preview Renders a video player preview if afile type is a video" time="0">
1182
+ <skipped/>
1183
+ </testcase>
1184
+ <testcase classname="UploadFile: ComputerPanel file preview Renders a video icon if afile type is a video/avi" name="UploadFile: ComputerPanel file preview Renders a video icon if afile type is a video/avi" time="0.026">
1185
+ </testcase>
1186
+ <testcase classname="UploadFile: ComputerPanel file preview Renders a video icon if afile type is a video/x-ms-wma" name="UploadFile: ComputerPanel file preview Renders a video icon if afile type is a video/x-ms-wma" time="0.027">
1187
+ </testcase>
1188
+ <testcase classname="UploadFile: ComputerPanel file preview Renders a video icon if afile type is a video/x-ms-wmv" name="UploadFile: ComputerPanel file preview Renders a video icon if afile type is a video/x-ms-wmv" time="0.026">
1189
+ </testcase>
1190
+ <testcase classname="UploadFile: ComputerPanel file preview Renders an error message when trying to upload an empty file" name="UploadFile: ComputerPanel file preview Renders an error message when trying to upload an empty file" time="0.033">
1191
+ </testcase>
1192
+ </testsuite>
1193
+ <testsuite name="ZoomControls" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:48" time="2.49" tests="36">
1194
+ <testcase classname="ZoomControls renders buttons with min scale ratio" name="ZoomControls renders buttons with min scale ratio" time="0.045">
1195
+ </testcase>
1196
+ <testcase classname="ZoomControls renders buttons with max scale ratio" name="ZoomControls renders buttons with max scale ratio" time="0.017">
1197
+ </testcase>
1198
+ <testcase classname="ZoomControls renders buttons with average scale ratio" name="ZoomControls renders buttons with average scale ratio" time="0.017">
1199
+ </testcase>
1200
+ <testcase classname="ZoomControls calls function when zoom out is clicked" name="ZoomControls calls function when zoom out is clicked" time="0.019">
1201
+ </testcase>
1202
+ <testcase classname="ZoomControls calls function when zoom in is clicked" name="ZoomControls calls function when zoom in is clicked" time="0.016">
1203
+ </testcase>
1204
+ <testcase classname="ZoomControls sets zoom manually increment using up arrow" name="ZoomControls sets zoom manually increment using up arrow" time="0.016">
1205
+ </testcase>
1206
+ <testcase classname="ZoomControls sets zoom manually increment using down arrow" name="ZoomControls sets zoom manually increment using down arrow" time="0.021">
1207
+ </testcase>
1208
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid positive percentage" name="ZoomControls sets zoom manually on blur input with custom valid positive percentage" time="0.02">
1209
+ </testcase>
1210
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid positive value that is lower than 100" name="ZoomControls sets zoom manually on blur input with custom valid positive value that is lower than 100" time="0.019">
1211
+ </testcase>
1212
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid positive value that is greater than 200" name="ZoomControls sets zoom manually on blur input with custom valid positive value that is greater than 200" time="0.023">
1213
+ </testcase>
1214
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid positive percentage with decimals" name="ZoomControls sets zoom manually on blur input with custom valid positive percentage with decimals" time="0.022">
1215
+ </testcase>
1216
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid positive percentage without % symbol" name="ZoomControls sets zoom manually on blur input with custom valid positive percentage without % symbol" time="0.025">
1217
+ </testcase>
1218
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid positive percentage with decimals and without % symbol" name="ZoomControls sets zoom manually on blur input with custom valid positive percentage with decimals and without % symbol" time="0.024">
1219
+ </testcase>
1220
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid negative percentage" name="ZoomControls sets zoom manually on blur input with custom valid negative percentage" time="0.022">
1221
+ </testcase>
1222
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid negative percentage with decimals" name="ZoomControls sets zoom manually on blur input with custom valid negative percentage with decimals" time="0.029">
1223
+ </testcase>
1224
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid negative percentage without % symbol" name="ZoomControls sets zoom manually on blur input with custom valid negative percentage without % symbol" time="0.024">
1225
+ </testcase>
1226
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom valid negative percentage with decimals and without % symbol" name="ZoomControls sets zoom manually on blur input with custom valid negative percentage with decimals and without % symbol" time="0.023">
1227
+ </testcase>
1228
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom invalid percentage" name="ZoomControls sets zoom manually on blur input with custom invalid percentage" time="0.026">
1229
+ </testcase>
1230
+ <testcase classname="ZoomControls sets zoom manually on blur input with custom empty percentage" name="ZoomControls sets zoom manually on blur input with custom empty percentage" time="0.023">
1231
+ </testcase>
1232
+ <testcase classname="ZoomControls sets zoom manually on blur input with shows error message" name="ZoomControls sets zoom manually on blur input with shows error message" time="0.024">
1233
+ </testcase>
1234
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage" name="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage" time="0.032">
1235
+ </testcase>
1236
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid positive value that exceeds 200" name="ZoomControls sets zoom manually on change and debounce input with custom valid positive value that exceeds 200" time="0.041">
1237
+ </testcase>
1238
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage with decimals" name="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage with decimals" time="0.063">
1239
+ </testcase>
1240
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage without % symbol" name="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage without % symbol" time="0.12">
1241
+ </testcase>
1242
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage with decimals and without % symbol" name="ZoomControls sets zoom manually on change and debounce input with custom valid positive percentage with decimals and without % symbol" time="0.12">
1243
+ </testcase>
1244
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage" name="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage" time="0.089">
1245
+ </testcase>
1246
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage with decimals" name="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage with decimals" time="0.16">
1247
+ </testcase>
1248
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage without % symbol" name="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage without % symbol" time="0.019">
1249
+ </testcase>
1250
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage with decimals and without % symbol" name="ZoomControls sets zoom manually on change and debounce input with custom valid negative percentage with decimals and without % symbol" time="0.017">
1251
+ </testcase>
1252
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom invalid percentage" name="ZoomControls sets zoom manually on change and debounce input with custom invalid percentage" time="0.018">
1253
+ </testcase>
1254
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with custom empty percentage" name="ZoomControls sets zoom manually on change and debounce input with custom empty percentage" time="0.019">
1255
+ </testcase>
1256
+ <testcase classname="ZoomControls sets zoom manually on change and debounce input with shows error message" name="ZoomControls sets zoom manually on change and debounce input with shows error message" time="0.023">
1257
+ </testcase>
1258
+ <testcase classname="ZoomControls fires off screenreader alerts when zoom in button is pressed" name="ZoomControls fires off screenreader alerts when zoom in button is pressed" time="0.258">
1259
+ </testcase>
1260
+ <testcase classname="ZoomControls fires off screenreader alerts when zoom out button is pressed" name="ZoomControls fires off screenreader alerts when zoom out button is pressed" time="0.154">
1261
+ </testcase>
1262
+ <testcase classname="ZoomControls fires off screenreader alerts when zoom input is mutated with arrow keys" name="ZoomControls fires off screenreader alerts when zoom input is mutated with arrow keys" time="0.016">
1263
+ </testcase>
1264
+ <testcase classname="ZoomControls fires off screenreader alerts when zoom input is mutated by direct entry" name="ZoomControls fires off screenreader alerts when zoom input is mutated by direct entry" time="0.017">
1265
+ </testcase>
1266
+ </testsuite>
1267
+ <testsuite name="RceModule" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:51" time="2.025" tests="2">
1268
+ <testcase classname="RceModule bridges newly rendered editors" name="RceModule bridges newly rendered editors" time="0.875">
1269
+ </testcase>
1270
+ <testcase classname="RceModule handleUnmount unmounts root component" name="RceModule handleUnmount unmounts root component" time="0.049">
1271
+ </testcase>
1272
+ </testsuite>
1273
+ <testsuite name="MultiColor" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:53" time="1.165" tests="4">
1274
+ <testcase classname="MultiColor renders the multi-color SVG list" name="MultiColor renders the multi-color SVG list" time="0.146">
1275
+ </testcase>
1276
+ <testcase classname="MultiColor when an entry is clicked sets the selected image with loading states" name="MultiColor when an entry is clicked sets the selected image with loading states" time="0.15">
1277
+ </testcase>
1278
+ <testcase classname="MultiColor when an entry is clicked converts the selected icon to base64" name="MultiColor when an entry is clicked converts the selected icon to base64" time="0.15">
1279
+ </testcase>
1280
+ <testcase classname="MultiColor calls &quot;onLoaded&quot; when mounting" name="MultiColor calls &quot;onLoaded&quot; when mounting" time="0.091">
1281
+ </testcase>
1282
+ </testsuite>
1283
+ <testsuite name="Upload()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:54" time="1.867" tests="13">
1284
+ <testcase classname="Upload() renders an upload modal" name="Upload() renders an upload modal" time="0.856">
1285
+ </testcase>
1286
+ <testcase classname="Upload() when the &quot;Close&quot; button is pressed closes the modal" name="Upload() when the &quot;Close&quot; button is pressed closes the modal" time="0.065">
1287
+ </testcase>
1288
+ <testcase classname="Upload() onSubmit() sets the selected image" name="Upload() onSubmit() sets the selected image" time="0.002">
1289
+ </testcase>
1290
+ <testcase classname="Upload() onSubmit() sets the selected image name" name="Upload() onSubmit() sets the selected image name" time="0">
1291
+ </testcase>
1292
+ <testcase classname="Upload() onSubmit() closes the collection" name="Upload() onSubmit() closes the collection" time="0">
1293
+ </testcase>
1294
+ <testcase classname="Upload() onSubmit() opens image cropper" name="Upload() onSubmit() opens image cropper" time="0.001">
1295
+ </testcase>
1296
+ <testcase classname="Upload() onSubmit() with an unsupported image closes the collection" name="Upload() onSubmit() with an unsupported image closes the collection" time="0.001">
1297
+ </testcase>
1298
+ <testcase classname="Upload() onSubmit() with an unsupported image sets the error" name="Upload() onSubmit() with an unsupported image sets the error" time="0.001">
1299
+ </testcase>
1300
+ <testcase classname="Upload() onSubmit() with an image to be compressed sets the compression status" name="Upload() onSubmit() with an image to be compressed sets the compression status" time="0.003">
1301
+ </testcase>
1302
+ <testcase classname="Upload() onSubmit() with an image to be compressed sets the selected image" name="Upload() onSubmit() with an image to be compressed sets the selected image" time="0.002">
1303
+ </testcase>
1304
+ <testcase classname="Upload() onSubmit() with an image to be compressed sets the selected image name" name="Upload() onSubmit() with an image to be compressed sets the selected image name" time="0.002">
1305
+ </testcase>
1306
+ <testcase classname="Upload() onSubmit() with an image to be compressed closes the collection" name="Upload() onSubmit() with an image to be compressed closes the collection" time="0.002">
1307
+ </testcase>
1308
+ <testcase classname="Upload() onSubmit() with an image to be compressed opens image cropper" name="Upload() onSubmit() with an image to be compressed opens image cropper" time="0.003">
1309
+ </testcase>
1310
+ </testsuite>
1311
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; Link" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:56" time="1.782" tests="38">
1312
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published assignments" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published assignments" time="0.031">
1313
+ </testcase>
1314
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished assignments" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished assignments" time="0.023">
1315
+ </testcase>
1316
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published discussions" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published discussions" time="0.018">
1317
+ </testcase>
1318
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished discussions" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished discussions" time="0.019">
1319
+ </testcase>
1320
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published modules" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published modules" time="0.02">
1321
+ </testcase>
1322
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished modules" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished modules" time="0.021">
1323
+ </testcase>
1324
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published quizzes" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published quizzes" time="0.019">
1325
+ </testcase>
1326
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished quizzes" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished quizzes" time="0.018">
1327
+ </testcase>
1328
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published quizzes" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published quizzes" time="0.021">
1329
+ </testcase>
1330
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished quizzes" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished quizzes" time="0.017">
1331
+ </testcase>
1332
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published announcements" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published announcements" time="0.019">
1333
+ </testcase>
1334
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished announcements" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished announcements" time="0.015">
1335
+ </testcase>
1336
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published wikiPages" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published wikiPages" time="0.017">
1337
+ </testcase>
1338
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished wikiPages" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished wikiPages" time="0.017">
1339
+ </testcase>
1340
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published navigation" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders published navigation" time="0.017">
1341
+ </testcase>
1342
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished navigation" name="RCE &quot;Links&quot; Plugin &gt; Link object type variant renders unpublished navigation" time="0.019">
1343
+ </testcase>
1344
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date variant renders muliple due dates" name="RCE &quot;Links&quot; Plugin &gt; Link date variant renders muliple due dates" time="0.018">
1345
+ </testcase>
1346
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a due date" name="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a due date" time="0.022">
1347
+ </testcase>
1348
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a to do date" name="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a to do date" time="0.017">
1349
+ </testcase>
1350
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a published date" name="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a published date" time="0.018">
1351
+ </testcase>
1352
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a posted date" name="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a posted date" time="0.017">
1353
+ </testcase>
1354
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a delayed post date" name="RCE &quot;Links&quot; Plugin &gt; Link date variant renders a delayed post date" time="0.019">
1355
+ </testcase>
1356
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders muliple due dates" name="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders muliple due dates" time="0.019">
1357
+ </testcase>
1358
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a due date" name="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a due date" time="0.023">
1359
+ </testcase>
1360
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a to do date" name="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a to do date" time="0.019">
1361
+ </testcase>
1362
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a published date" name="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a published date" time="0.031">
1363
+ </testcase>
1364
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a posted date" name="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a posted date" time="0.022">
1365
+ </testcase>
1366
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a delayed post date" name="RCE &quot;Links&quot; Plugin &gt; Link date changes by timezone renders a delayed post date" time="0.023">
1367
+ </testcase>
1368
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link handles input calls onClick when clicked" name="RCE &quot;Links&quot; Plugin &gt; Link handles input calls onClick when clicked" time="0.02">
1369
+ </testcase>
1370
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link handles input calls onClick on &lt;Enter&gt;" name="RCE &quot;Links&quot; Plugin &gt; Link handles input calls onClick on &lt;Enter&gt;" time="0.022">
1371
+ </testcase>
1372
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link handles input calls onClick on &lt;Space&gt;" name="RCE &quot;Links&quot; Plugin &gt; Link handles input calls onClick on &lt;Space&gt;" time="0.021">
1373
+ </testcase>
1374
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link handles input only shows drag handle on hover" name="RCE &quot;Links&quot; Plugin &gt; Link handles input only shows drag handle on hover" time="0.026">
1375
+ </testcase>
1376
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick when clicked" name="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick when clicked" time="0.02">
1377
+ </testcase>
1378
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick on &lt;Enter&gt;" name="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick on &lt;Enter&gt;" time="0.017">
1379
+ </testcase>
1380
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick on &lt;Space&gt;" name="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick on &lt;Space&gt;" time="0.025">
1381
+ </testcase>
1382
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick with the appropriate args for a publishable link type" name="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick with the appropriate args for a publishable link type" time="0.017">
1383
+ </testcase>
1384
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick with the appropriate args for a non-publishable link type" name="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray calls onEditClick with the appropriate args for a non-publishable link type" time="0.018">
1385
+ </testcase>
1386
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray does not show the drag handle when hovering" name="RCE &quot;Links&quot; Plugin &gt; Link When in edit link tray does not show the drag handle when hovering" time="0.021">
1387
+ </testcase>
1388
+ </testsuite>
1389
+ <testsuite name="RCE &quot;Images&quot; Plugin &gt; Images" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:36:58" time="1.705" tests="16">
1390
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images upon initial render calls the .fetchInitialImages prop" name="RCE &quot;Images&quot; Plugin &gt; Images upon initial render calls the .fetchInitialImages prop" time="0.015">
1391
+ </testcase>
1392
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images upon initial render does not display the &quot;Load More&quot; button" name="RCE &quot;Images&quot; Plugin &gt; Images upon initial render does not display the &quot;Load More&quot; button" time="0.005">
1393
+ </testcase>
1394
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after updating for initial data load indicates the initial load in progress" name="RCE &quot;Images&quot; Plugin &gt; Images after updating for initial data load indicates the initial load in progress" time="0.012">
1395
+ </testcase>
1396
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after updating for initial data load does not call the .fetchInitialImages prop again" name="RCE &quot;Images&quot; Plugin &gt; Images after updating for initial data load does not call the .fetchInitialImages prop again" time="0.009">
1397
+ </testcase>
1398
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after updating for initial data load does not display the &quot;Load More&quot; button" name="RCE &quot;Images&quot; Plugin &gt; Images after updating for initial data load does not display the &quot;Load More&quot; button" time="0.012">
1399
+ </testcase>
1400
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images removes the initial load indicator" name="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images removes the initial load indicator" time="0.045">
1401
+ </testcase>
1402
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images displays the loaded images" name="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images displays the loaded images" time="0.029">
1403
+ </testcase>
1404
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images displays the &quot;Load More&quot; button when more results can be loaded" name="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images displays the &quot;Load More&quot; button when more results can be loaded" time="0.053">
1405
+ </testcase>
1406
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images does not display the &quot;Load More&quot; button when no more results can be loaded" name="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images does not display the &quot;Load More&quot; button when no more results can be loaded" time="0.033">
1407
+ </testcase>
1408
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images does not change focus" name="RCE &quot;Images&quot; Plugin &gt; Images after initial load resolves with images does not change focus" time="0.034">
1409
+ </testcase>
1410
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after updating to load additional images displays all previously-loaded images" name="RCE &quot;Images&quot; Plugin &gt; Images after updating to load additional images displays all previously-loaded images" time="0.074">
1411
+ </testcase>
1412
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after updating to load additional images displays the loading indicator" name="RCE &quot;Images&quot; Plugin &gt; Images after updating to load additional images displays the loading indicator" time="0.048">
1413
+ </testcase>
1414
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after updating to load additional images moves focus from the &quot;Load More&quot; button to the last image" name="RCE &quot;Images&quot; Plugin &gt; Images after updating to load additional images moves focus from the &quot;Load More&quot; button to the last image" time="0.052">
1415
+ </testcase>
1416
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after additional load resolves with images displays all previously- and new-loaded images" name="RCE &quot;Images&quot; Plugin &gt; Images after additional load resolves with images displays all previously- and new-loaded images" time="0.072">
1417
+ </testcase>
1418
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after additional load resolves with images displays the &quot;Load More&quot; button when more results can be loaded" name="RCE &quot;Images&quot; Plugin &gt; Images after additional load resolves with images displays the &quot;Load More&quot; button when more results can be loaded" time="0.078">
1419
+ </testcase>
1420
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Images after additional load resolves with images does not display the &quot;Load More&quot; button when no more results can be loaded" name="RCE &quot;Images&quot; Plugin &gt; Images after additional load resolves with images does not display the &quot;Load More&quot; button when no more results can be loaded" time="0.094">
1421
+ </testcase>
1422
+ </testsuite>
1423
+ <testsuite name="RCE &quot;Images&quot; Plugin &gt; Image" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:00" time="2.011" tests="10">
1424
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image renders an img" name="RCE &quot;Images&quot; Plugin &gt; Image renders an img" time="0.047">
1425
+ </testcase>
1426
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image uses the image thumbnail url for the img src" name="RCE &quot;Images&quot; Plugin &gt; Image uses the image thumbnail url for the img src" time="0.021">
1427
+ </testcase>
1428
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image uses the image display name for the img alt text" name="RCE &quot;Images&quot; Plugin &gt; Image uses the image display name for the img alt text" time="0.021">
1429
+ </testcase>
1430
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image uses the image display name for the img title" name="RCE &quot;Images&quot; Plugin &gt; Image uses the image display name for the img title" time="0.022">
1431
+ </testcase>
1432
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image forwards the .focusRef prop to the anchor component" name="RCE &quot;Images&quot; Plugin &gt; Image forwards the .focusRef prop to the anchor component" time="0.02">
1433
+ </testcase>
1434
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image when clicked calls the .onClick prop" name="RCE &quot;Images&quot; Plugin &gt; Image when clicked calls the .onClick prop" time="0.025">
1435
+ </testcase>
1436
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image when clicked includes the .image prop when calling the .onClick prop" name="RCE &quot;Images&quot; Plugin &gt; Image when clicked includes the .image prop when calling the .onClick prop" time="0.027">
1437
+ </testcase>
1438
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image when clicked prevents the default click handler" name="RCE &quot;Images&quot; Plugin &gt; Image when clicked prevents the default click handler" time="0.023">
1439
+ </testcase>
1440
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image when drag starts sets the dataTransfer data to a render of the image" name="RCE &quot;Images&quot; Plugin &gt; Image when drag starts sets the dataTransfer data to a render of the image" time="0.032">
1441
+ </testcase>
1442
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; Image when drag starts sets the dataTransfer type to text/html" name="RCE &quot;Images&quot; Plugin &gt; Image when drag starts sets the dataTransfer type to text/html" time="0.024">
1443
+ </testcase>
1444
+ </testsuite>
1445
+ <testsuite name="Preview" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:02" time="1.943" tests="23">
1446
+ <testcase classname="Preview renders the image" name="Preview renders the image" time="0.007">
1447
+ </testcase>
1448
+ <testcase classname="Preview renders the image with src" name="Preview renders the image with src" time="0.005">
1449
+ </testcase>
1450
+ <testcase classname="Preview renders the crop shape container" name="Preview renders the crop shape container" time="0.01">
1451
+ </testcase>
1452
+ <testcase classname="Preview renders with rotate transform" name="Preview renders with rotate transform" time="0.006">
1453
+ </testcase>
1454
+ <testcase classname="Preview renders with scale transform" name="Preview renders with scale transform" time="0.005">
1455
+ </testcase>
1456
+ <testcase classname="Preview renders with rotate and scale transform" name="Preview renders with rotate and scale transform" time="0.005">
1457
+ </testcase>
1458
+ <testcase classname="Preview changes the crop shape" name="Preview changes the crop shape" time="0.007">
1459
+ </testcase>
1460
+ <testcase classname="Preview calls dispatch using wheel when zoom in" name="Preview calls dispatch using wheel when zoom in" time="0.112">
1461
+ </testcase>
1462
+ <testcase classname="Preview calls dispatch using wheel when zoom out" name="Preview calls dispatch using wheel when zoom out" time="0.107">
1463
+ </testcase>
1464
+ <testcase classname="Preview sets scale style using wheel when zoom in" name="Preview sets scale style using wheel when zoom in" time="0.008">
1465
+ </testcase>
1466
+ <testcase classname="Preview sets scale style using wheel when zoom out" name="Preview sets scale style using wheel when zoom out" time="0.007">
1467
+ </testcase>
1468
+ <testcase classname="Preview listens arrow keys calls dispatch left" name="Preview listens arrow keys calls dispatch left" time="0.109">
1469
+ </testcase>
1470
+ <testcase classname="Preview listens arrow keys calls dispatch up" name="Preview listens arrow keys calls dispatch up" time="0.11">
1471
+ </testcase>
1472
+ <testcase classname="Preview listens arrow keys calls dispatch right" name="Preview listens arrow keys calls dispatch right" time="0.108">
1473
+ </testcase>
1474
+ <testcase classname="Preview listens arrow keys calls dispatch down" name="Preview listens arrow keys calls dispatch down" time="0.114">
1475
+ </testcase>
1476
+ <testcase classname="Preview listens arrow keys sets translate style left" name="Preview listens arrow keys sets translate style left" time="0.025">
1477
+ </testcase>
1478
+ <testcase classname="Preview listens arrow keys sets translate style up" name="Preview listens arrow keys sets translate style up" time="0.045">
1479
+ </testcase>
1480
+ <testcase classname="Preview listens arrow keys sets translate style right" name="Preview listens arrow keys sets translate style right" time="0.057">
1481
+ </testcase>
1482
+ <testcase classname="Preview listens arrow keys sets translate style down" name="Preview listens arrow keys sets translate style down" time="0.072">
1483
+ </testcase>
1484
+ <testcase classname="Preview listens mouse dragging calls dispatch when dragging once" name="Preview listens mouse dragging calls dispatch when dragging once" time="0.06">
1485
+ </testcase>
1486
+ <testcase classname="Preview listens mouse dragging calls dispatch when dragging and reuses previous position" name="Preview listens mouse dragging calls dispatch when dragging and reuses previous position" time="0.123">
1487
+ </testcase>
1488
+ <testcase classname="Preview listens mouse dragging sets translate style when dragging once" name="Preview listens mouse dragging sets translate style when dragging once" time="0.026">
1489
+ </testcase>
1490
+ <testcase classname="Preview listens mouse dragging sets translate style when dragging and reuses previous position" name="Preview listens mouse dragging sets translate style when dragging and reuses previous position" time="0.022">
1491
+ </testcase>
1492
+ </testsuite>
1493
+ <testsuite name="ShapeControls" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:04" time="1.149" tests="2">
1494
+ <testcase classname="ShapeControls renders the crop shape dropdown" name="ShapeControls renders the crop shape dropdown" time="0.057">
1495
+ </testcase>
1496
+ <testcase classname="ShapeControls calls function when shape changes" name="ShapeControls calls function when shape changes" time="0.065">
1497
+ </testcase>
1498
+ </testsuite>
1499
+ <testsuite name="RCE Plugins &gt; LtiToolModal" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:05" time="2.149" tests="8">
1500
+ <testcase classname="RCE Plugins &gt; LtiToolModal is labeled &quot;All Apps&quot;" name="RCE Plugins &gt; LtiToolModal is labeled &quot;All Apps&quot;" time="0.12">
1501
+ </testcase>
1502
+ <testcase classname="RCE Plugins &gt; LtiToolModal has heading &quot;All Apps&quot;" name="RCE Plugins &gt; LtiToolModal has heading &quot;All Apps&quot;" time="0.058">
1503
+ </testcase>
1504
+ <testcase classname="RCE Plugins &gt; LtiToolModal shows the 3 tools" name="RCE Plugins &gt; LtiToolModal shows the 3 tools" time="0.066">
1505
+ </testcase>
1506
+ <testcase classname="RCE Plugins &gt; LtiToolModal calls onDismiss when clicking Done" name="RCE Plugins &gt; LtiToolModal calls onDismiss when clicking Done" time="0.051">
1507
+ </testcase>
1508
+ <testcase classname="RCE Plugins &gt; LtiToolModal calls onDismiss when clicking the close button" name="RCE Plugins &gt; LtiToolModal calls onDismiss when clicking the close button" time="0.048">
1509
+ </testcase>
1510
+ <testcase classname="RCE Plugins &gt; LtiToolModal calls onAction when clicking a tool" name="RCE Plugins &gt; LtiToolModal calls onAction when clicking a tool" time="0.036">
1511
+ </testcase>
1512
+ <testcase classname="RCE Plugins &gt; LtiToolModal filtering shows only results that match the filter value" name="RCE Plugins &gt; LtiToolModal filtering shows only results that match the filter value" time="0.054">
1513
+ </testcase>
1514
+ <testcase classname="RCE Plugins &gt; LtiToolModal filtering shows a no results alert when there are no results" name="RCE Plugins &gt; LtiToolModal filtering shows a no results alert when there are no results" time="0.057">
1515
+ </testcase>
1516
+ </testsuite>
1517
+ <testsuite name="RCE &gt; Plugins &gt; Shared &gt; Content Selection" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:07" time="0.594" tests="49">
1518
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the anchor element on the returned content" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the anchor element on the returned content" time="0.004">
1519
+ </testcase>
1520
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;file link&quot; when the anchor links to a user file" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;file link&quot; when the anchor links to a user file" time="0.003">
1521
+ </testcase>
1522
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the text of the link" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the text of the link" time="0.003">
1523
+ </testcase>
1524
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor finds the selected text" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor finds the selected text" time="0.002">
1525
+ </testcase>
1526
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the url of the link" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the url of the link" time="0.002">
1527
+ </testcase>
1528
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;file link&quot; when the anchor links to a course file" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;file link&quot; when the anchor links to a course file" time="0.003">
1529
+ </testcase>
1530
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor ignores query parameters on the href" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor ignores query parameters on the href" time="0.003">
1531
+ </testcase>
1532
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;link&quot; when linking to unhandled canvas content" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;link&quot; when linking to unhandled canvas content" time="0.002">
1533
+ </testcase>
1534
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;link&quot; when the anchor links to an unhandled location" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;link&quot; when the anchor links to an unhandled location" time="0.002">
1535
+ </testcase>
1536
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor does not explode when the hostname has bad unicode" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor does not explode when the hostname has bad unicode" time="0.007">
1537
+ </testcase>
1538
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor works with a relative path" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor works with a relative path" time="0.003">
1539
+ </testcase>
1540
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;none&quot; when the anchor has no href attribute" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor returns content of type &quot;none&quot; when the anchor has no href attribute" time="0.001">
1541
+ </testcase>
1542
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor indicates the link is previewable if it contains the &quot;data-canvas-previewable&quot; attribute" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor indicates the link is previewable if it contains the &quot;data-canvas-previewable&quot; attribute" time="0.004">
1543
+ </testcase>
1544
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor indicates the link is previewable if it contains the &quot;instructure_scribd_file&quot; class name" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor indicates the link is previewable if it contains the &quot;instructure_scribd_file&quot; class name" time="0.003">
1545
+ </testcase>
1546
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor indicates the link displays as download link if it contains the &quot;no_preview&quot; class name" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor indicates the link displays as download link if it contains the &quot;no_preview&quot; class name" time="0.004">
1547
+ </testcase>
1548
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the content type if the link contains the data course type" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the content type if the link contains the data course type" time="0.002">
1549
+ </testcase>
1550
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the filename if the link contains the title" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes the filename if the link contains the title" time="0.001">
1551
+ </testcase>
1552
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes published if the link contains data-published" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an anchor includes published if the link contains data-published" time="0.001">
1553
+ </testcase>
1554
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None type if no id is present" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None type if no id is present" time="0.008">
1555
+ </testcase>
1556
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None type if there is no iframe child" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None type if there is no iframe child" time="0.008">
1557
+ </testcase>
1558
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None type if children element is not an iframe" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None type if children element is not an iframe" time="0.008">
1559
+ </testcase>
1560
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None if no type is present" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns None if no type is present" time="0.008">
1561
+ </testcase>
1562
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns id if iframe and div are set" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is a video container element returns id if iframe and div are set" time="0.013">
1563
+ </testcase>
1564
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image includes the image element on the returned content" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image includes the image element on the returned content" time="0.002">
1565
+ </testcase>
1566
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .altText is the alt text of the image when present" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .altText is the alt text of the image when present" time="0.001">
1567
+ </testcase>
1568
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .altText is blank when absent on the image" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .altText is blank when absent on the image" time="0.001">
1569
+ </testcase>
1570
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .isDecorativeImage when &quot;role&quot; is &quot;presentation&quot; on the image element is true when the image has no alt text" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .isDecorativeImage when &quot;role&quot; is &quot;presentation&quot; on the image element is true when the image has no alt text" time="0.001">
1571
+ </testcase>
1572
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .isDecorativeImage when &quot;role&quot; is not &quot;presentation&quot; on the image element is false when the image has alt text" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .isDecorativeImage when &quot;role&quot; is not &quot;presentation&quot; on the image element is false when the image has alt text" time="0.001">
1573
+ </testcase>
1574
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .isDecorativeImage is blank when absent on the image" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image .isDecorativeImage is blank when absent on the image" time="0.001">
1575
+ </testcase>
1576
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image sets the url to the src of the image" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() when the given element is an image sets the url to the src of the image" time="0.001">
1577
+ </testcase>
1578
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() returns content of type &quot;none&quot; when given an unhandled element" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() returns content of type &quot;none&quot; when given an unhandled element" time="0.001">
1579
+ </testcase>
1580
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() returns content of type &quot;none&quot; when given a non-element" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() returns content of type &quot;none&quot; when given a non-element" time="0.001">
1581
+ </testcase>
1582
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() returns content of type &quot;none&quot; when not given a null" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromElement() returns content of type &quot;none&quot; when not given a null" time="0.001">
1583
+ </testcase>
1584
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;file link&quot; when a file link is selected" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;file link&quot; when a file link is selected" time="0.005">
1585
+ </testcase>
1586
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;image embed&quot; when an image is selected" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;image embed&quot; when an image is selected" time="0.001">
1587
+ </testcase>
1588
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;none&quot; when the editor has no selection" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;none&quot; when the editor has no selection" time="0.001">
1589
+ </testcase>
1590
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;none&quot; when expandCollapsed is false and the selection is collapased" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;none&quot; when expandCollapsed is false and the selection is collapased" time="0.001">
1591
+ </testcase>
1592
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;text&quot; when expandCollapsed is true and the selection is collapased" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;text&quot; when expandCollapsed is true and the selection is collapased" time="0.001">
1593
+ </testcase>
1594
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;text&quot; when expandCollapsed is false and the selection is not collapased" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getContentFromEditor() returns content of type &quot;text&quot; when expandCollapsed is false and the selection is not collapased" time="0.001">
1595
+ </testcase>
1596
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getLinkContentFromEditor returns content when a link is selected" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getLinkContentFromEditor returns content when a link is selected" time="0.001">
1597
+ </testcase>
1598
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getLinkContentFromEditor returns content when a child element of a link is selected" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection .getLinkContentFromEditor returns content when a child element of a link is selected" time="0.002">
1599
+ </testcase>
1600
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection findMediaPlayerIframe returns the iframe if given the video iframe" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection findMediaPlayerIframe returns the iframe if given the video iframe" time="0.001">
1601
+ </testcase>
1602
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection findMediaPlayerIframe returns the iframe if given the tinymce wrapper span" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection findMediaPlayerIframe returns the iframe if given the tinymce wrapper span" time="0.001">
1603
+ </testcase>
1604
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection findMediaPlayerIframe returns the iframe if given the shim" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection findMediaPlayerIframe returns the iframe if given the shim" time="0.002">
1605
+ </testcase>
1606
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect a canvas file link" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect a canvas file link" time="0.003">
1607
+ </testcase>
1608
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect an embeded image" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect an embeded image" time="0.001">
1609
+ </testcase>
1610
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect a video element" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect a video element" time="0.002">
1611
+ </testcase>
1612
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect an audio element" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates detect an audio element" time="0.001">
1613
+ </testcase>
1614
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates ignore some random markup" name="RCE &gt; Plugins &gt; Shared &gt; Content Selection predicates ignore some random markup" time="0.001">
1615
+ </testcase>
1616
+ </testsuite>
1617
+ <testsuite name="SingleColor" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:08" time="1.388" tests="3">
1618
+ <testcase classname="SingleColor renders the single-color SVG list" name="SingleColor renders the single-color SVG list" time="0.245">
1619
+ </testcase>
1620
+ <testcase classname="SingleColor when an entry is clicked sets the selected image with loading states" name="SingleColor when an entry is clicked sets the selected image with loading states" time="0.151">
1621
+ </testcase>
1622
+ <testcase classname="SingleColor calls &quot;onLoaded&quot; when mounting" name="SingleColor calls &quot;onLoaded&quot; when mounting" time="0.156">
1623
+ </testcase>
1624
+ </testsuite>
1625
+ <testsuite name="RCE &quot;Images&quot; Plugin &gt; ImageList" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:09" time="1.094" tests="5">
1626
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageList includes an `img` element for each image in the list" name="RCE &quot;Images&quot; Plugin &gt; ImageList includes an `img` element for each image in the list" time="0.038">
1627
+ </testcase>
1628
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageList .lastItemRef prop is used when there are images" name="RCE &quot;Images&quot; Plugin &gt; ImageList .lastItemRef prop is used when there are images" time="0.022">
1629
+ </testcase>
1630
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageList .lastItemRef prop is forwarded to the last image" name="RCE &quot;Images&quot; Plugin &gt; ImageList .lastItemRef prop is forwarded to the last image" time="0.024">
1631
+ </testcase>
1632
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageList .lastItemRef prop is not used when the images list is empty" name="RCE &quot;Images&quot; Plugin &gt; ImageList .lastItemRef prop is not used when the images list is empty" time="0.001">
1633
+ </testcase>
1634
+ <testcase classname="RCE &quot;Images&quot; Plugin &gt; ImageList calls the .onImageClick prop with the related image when clicked" name="RCE &quot;Images&quot; Plugin &gt; ImageList calls the .onImageClick prop with the related image when clicked" time="0.023">
1635
+ </testcase>
1636
+ </testsuite>
1637
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:10" time="1.098" tests="14">
1638
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is optionally rendered open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is optionally rendered open" time="0.071">
1639
+ </testcase>
1640
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is optionally rendered closed" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is optionally rendered closed" time="0.005">
1641
+ </testcase>
1642
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is labeled with &quot;Insert Link&quot; when creating a new link" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is labeled with &quot;Insert Link&quot; when creating a new link" time="0.034">
1643
+ </testcase>
1644
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is labeled with &quot;Create Link&quot; when creating a new link" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog is labeled with &quot;Create Link&quot; when creating a new link" time="0.037">
1645
+ </testcase>
1646
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Text&quot; field uses the value of .text in the given content" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Text&quot; field uses the value of .text in the given content" time="0.035">
1647
+ </testcase>
1648
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Link&quot; field uses the value of .url in the given content" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Link&quot; field uses the value of .url in the given content" time="0.032">
1649
+ </testcase>
1650
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Link&quot; field shows an error message if the url is invalid" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Link&quot; field shows an error message if the url is invalid" time="0.059">
1651
+ </testcase>
1652
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when a Link url is not present is disabled" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when a Link url is not present is disabled" time="0.043">
1653
+ </testcase>
1654
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when a Link url is not present does not call the .onSave prop when clicked" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when a Link url is not present does not call the .onSave prop when clicked" time="0.042">
1655
+ </testcase>
1656
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked prevents the default click handler" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked prevents the default click handler" time="0.034">
1657
+ </testcase>
1658
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked calls the .onSave prop" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked calls the .onSave prop" time="0.033">
1659
+ </testcase>
1660
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked when calling the .onSave prop includes the Text" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked when calling the .onSave prop includes the Text" time="0.038">
1661
+ </testcase>
1662
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked when calling the .onSave prop includes the Link" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked when calling the .onSave prop includes the Link" time="0.045">
1663
+ </testcase>
1664
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked when calling the .onSave prop sets the text to the url when missing" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &quot;Done&quot; button when clicked when calling the .onSave prop sets the text to the url when missing" time="0.044">
1665
+ </testcase>
1666
+ </testsuite>
1667
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; LinkSet" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:11" time="1.062" tests="9">
1668
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet renders empty notice" name="RCE &quot;Links&quot; Plugin &gt; LinkSet renders empty notice" time="0.011">
1669
+ </testcase>
1670
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet does not render empty notice if suppressed" name="RCE &quot;Links&quot; Plugin &gt; LinkSet does not render empty notice if suppressed" time="0.002">
1671
+ </testcase>
1672
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet renders a collection of assignments" name="RCE &quot;Links&quot; Plugin &gt; LinkSet renders a collection of assignments" time="0.047">
1673
+ </testcase>
1674
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet renders load more button if there is more" name="RCE &quot;Links&quot; Plugin &gt; LinkSet renders load more button if there is more" time="0.053">
1675
+ </testcase>
1676
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet fetches initial data when mounted" name="RCE &quot;Links&quot; Plugin &gt; LinkSet fetches initial data when mounted" time="0.006">
1677
+ </testcase>
1678
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet fetches more when the load more button is clicked" name="RCE &quot;Links&quot; Plugin &gt; LinkSet fetches more when the load more button is clicked" time="0.034">
1679
+ </testcase>
1680
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet shows an error message if the fetch failed" name="RCE &quot;Links&quot; Plugin &gt; LinkSet shows an error message if the fetch failed" time="0.035">
1681
+ </testcase>
1682
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet shows spinner during initial load" name="RCE &quot;Links&quot; Plugin &gt; LinkSet shows spinner during initial load" time="0.007">
1683
+ </testcase>
1684
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkSet shows spinner while loading more" name="RCE &quot;Links&quot; Plugin &gt; LinkSet shows spinner while loading more" time="0.033">
1685
+ </testcase>
1686
+ </testsuite>
1687
+ <testsuite name="ModeSelect" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:12" time="1.747" tests="9">
1688
+ <testcase classname="ModeSelect renders the &quot;Add Image&quot; button" name="ModeSelect renders the &quot;Add Image&quot; button" time="0.076">
1689
+ </testcase>
1690
+ <testcase classname="ModeSelect with the menu open renders the upload images option" name="ModeSelect with the menu open renders the upload images option" time="0.049">
1691
+ </testcase>
1692
+ <testcase classname="ModeSelect with the menu open renders the singe color images option" name="ModeSelect with the menu open renders the singe color images option" time="0.02">
1693
+ </testcase>
1694
+ <testcase classname="ModeSelect with the menu open renders the multi color images option" name="ModeSelect with the menu open renders the multi color images option" time="0.018">
1695
+ </testcase>
1696
+ <testcase classname="ModeSelect with the menu open renders the course images option" name="ModeSelect with the menu open renders the course images option" time="0.018">
1697
+ </testcase>
1698
+ <testcase classname="ModeSelect with the menu open when the upload images option is clicked dispatches the correct action" name="ModeSelect with the menu open when the upload images option is clicked dispatches the correct action" time="0.021">
1699
+ </testcase>
1700
+ <testcase classname="ModeSelect with the menu open when the singe color images option is clicked dispatches the correct action" name="ModeSelect with the menu open when the singe color images option is clicked dispatches the correct action" time="0.02">
1701
+ </testcase>
1702
+ <testcase classname="ModeSelect with the menu open when the multi color images option is clicked dispatches the correct action" name="ModeSelect with the menu open when the multi color images option is clicked dispatches the correct action" time="0.021">
1703
+ </testcase>
1704
+ <testcase classname="ModeSelect with the menu open when the course images option is clicked dispatches the correct action" name="ModeSelect with the menu open when the course images option is clicked dispatches the correct action" time="0.019">
1705
+ </testcase>
1706
+ </testsuite>
1707
+ <testsuite name="SVGThumbnail" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:14" time="0.493" tests="2">
1708
+ <testcase classname="SVGThumbnail when the name corresponds to an icon renders the SVG icon" name="SVGThumbnail when the name corresponds to an icon renders the SVG icon" time="0.009">
1709
+ </testcase>
1710
+ <testcase classname="SVGThumbnail when the name does not correspond to an icon renders the empty SVG without error" name="SVGThumbnail when the name does not correspond to an icon renders the empty SVG without error" time="0.003">
1711
+ </testcase>
1712
+ </testsuite>
1713
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; CollectionPanel" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:15" time="1.13" tests="2">
1714
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; CollectionPanel renders an expnded collection panel" name="RCE &quot;Links&quot; Plugin &gt; CollectionPanel renders an expnded collection panel" time="0.079">
1715
+ </testcase>
1716
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; CollectionPanel renders a collapsed collection panel" name="RCE &quot;Links&quot; Plugin &gt; CollectionPanel renders a collapsed collection panel" time="0.013">
1717
+ </testcase>
1718
+ </testsuite>
1719
+ <testsuite name="SVGList" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:16" time="1.167" tests="4">
1720
+ <testcase classname="SVGList when &quot;type&quot; is &quot;multicolor&quot; renders the multicolor SVG list" name="SVGList when &quot;type&quot; is &quot;multicolor&quot; renders the multicolor SVG list" time="0.145">
1721
+ </testcase>
1722
+ <testcase classname="SVGList when &quot;type&quot; is &quot;multicolor&quot; renders an entry for each multicolor icon" name="SVGList when &quot;type&quot; is &quot;multicolor&quot; renders an entry for each multicolor icon" time="0.126">
1723
+ </testcase>
1724
+ <testcase classname="SVGList when an entry is clicked calls the &quot;onSelect&quot; handler with the selected icon" name="SVGList when an entry is clicked calls the &quot;onSelect&quot; handler with the selected icon" time="0.101">
1725
+ </testcase>
1726
+ <testcase classname="SVGList when an &quot;onMount&quot; function is given calls &quot;onMount&quot;" name="SVGList when an &quot;onMount&quot; function is given calls &quot;onMount&quot;" time="0.098">
1727
+ </testcase>
1728
+ </testsuite>
1729
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:17" time="1.148" tests="7">
1730
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #showDialogForEditor() when creating a new link opens the dialog" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #showDialogForEditor() when creating a new link opens the dialog" time="0.076">
1731
+ </testcase>
1732
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #showDialogForEditor() when editing an existing link opens the dialog" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #showDialogForEditor() when editing an existing link opens the dialog" time="0.04">
1733
+ </testcase>
1734
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #hideDialogForEditor() closes the dialog when open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #hideDialogForEditor() closes the dialog when open" time="0.08">
1735
+ </testcase>
1736
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #hideDialogForEditor() does nothing when the dialog was not open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #hideDialogForEditor() does nothing when the dialog was not open" time="0.005">
1737
+ </testcase>
1738
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #_applyLinkOptions dismisses the dialog" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #_applyLinkOptions dismisses the dialog" time="0.08">
1739
+ </testcase>
1740
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #_applyLinkOptions inserts the link" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController #_applyLinkOptions inserts the link" time="0.106">
1741
+ </testcase>
1742
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController Done focuses the editor on saving the new link" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsDialog &gt; LinkOptionsDialogController Done focuses the editor on saving the new link" time="0.118">
1743
+ </testcase>
1744
+ </testsuite>
1745
+ <testsuite name="contentInsertion" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:18" time="1.372" tests="37">
1746
+ <testcase classname="contentInsertion insertLink builds an anchor link with appropriate embed class" name="contentInsertion insertLink builds an anchor link with appropriate embed class" time="0.003">
1747
+ </testcase>
1748
+ <testcase classname="contentInsertion insertLink uses link data to build html" name="contentInsertion insertLink uses link data to build html" time="0.001">
1749
+ </testcase>
1750
+ <testcase classname="contentInsertion insertLink with anchor text uses the anchor text" name="contentInsertion insertLink with anchor text uses the anchor text" time="0.002">
1751
+ </testcase>
1752
+ <testcase classname="contentInsertion insertLink with anchor text with &quot;forceRename&quot; set to &quot;true&quot; uses the link &quot;text&quot;" name="contentInsertion insertLink with anchor text with &quot;forceRename&quot; set to &quot;true&quot; uses the link &quot;text&quot;" time="0.002">
1753
+ </testcase>
1754
+ <testcase classname="contentInsertion insertLink uses link data to set no_preview class" name="contentInsertion insertLink uses link data to set no_preview class" time="0.001">
1755
+ </testcase>
1756
+ <testcase classname="contentInsertion insertLink includes attributes" name="contentInsertion insertLink includes attributes" time="0.001">
1757
+ </testcase>
1758
+ <testcase classname="contentInsertion insertLink includes attributes for course link when supplied" name="contentInsertion insertLink includes attributes for course link when supplied" time="0.002">
1759
+ </testcase>
1760
+ <testcase classname="contentInsertion insertLink respects the current selection building the link by delegating to tinymce" name="contentInsertion insertLink respects the current selection building the link by delegating to tinymce" time="0.002">
1761
+ </testcase>
1762
+ <testcase classname="contentInsertion insertLink cleans a url with no protocol when linking the current selection" name="contentInsertion insertLink cleans a url with no protocol when linking the current selection" time="0.002">
1763
+ </testcase>
1764
+ <testcase classname="contentInsertion insertLink cleans a url with no protocol when editing an existing, selected link" name="contentInsertion insertLink cleans a url with no protocol when editing an existing, selected link" time="0.002">
1765
+ </testcase>
1766
+ <testcase classname="contentInsertion insertLink can use url if no href" name="contentInsertion insertLink can use url if no href" time="0.002">
1767
+ </testcase>
1768
+ <testcase classname="contentInsertion insertLink cleans a url with no protocol" name="contentInsertion insertLink cleans a url with no protocol" time="0.001">
1769
+ </testcase>
1770
+ <testcase classname="contentInsertion insertLink sets embed id with media entry id for videos" name="contentInsertion insertLink sets embed id with media entry id for videos" time="0.002">
1771
+ </testcase>
1772
+ <testcase classname="contentInsertion insertLink sets embed id with media entry id for audio" name="contentInsertion insertLink sets embed id with media entry id for audio" time="0.002">
1773
+ </testcase>
1774
+ <testcase classname="contentInsertion insertLink encodes html entities once" name="contentInsertion insertLink encodes html entities once" time="0.002">
1775
+ </testcase>
1776
+ <testcase classname="contentInsertion insertContent accepts string content" name="contentInsertion insertContent accepts string content" time="0.001">
1777
+ </testcase>
1778
+ <testcase classname="contentInsertion insertContent calls replaceTextareaSelection() when editor is hidden" name="contentInsertion insertContent calls replaceTextareaSelection() when editor is hidden" time="0.001">
1779
+ </testcase>
1780
+ <testcase classname="contentInsertion insertImage builds image html from image data" name="contentInsertion insertImage builds image html from image data" time="0.006">
1781
+ </testcase>
1782
+ <testcase classname="contentInsertion insertImage uses url if no href" name="contentInsertion insertImage uses url if no href" time="0.001">
1783
+ </testcase>
1784
+ <testcase classname="contentInsertion insertImage builds linked image html from linked image data" name="contentInsertion insertImage builds linked image html from linked image data" time="0.001">
1785
+ </testcase>
1786
+ <testcase classname="contentInsertion insertEquation builds image html from LaTeX" name="contentInsertion insertEquation builds image html from LaTeX" time="0.021">
1787
+ </testcase>
1788
+ <testcase classname="contentInsertion insertEquation uses relative URL if no base is provided" name="contentInsertion insertEquation uses relative URL if no base is provided" time="0.002">
1789
+ </testcase>
1790
+ <testcase classname="contentInsertion existingContentToLink returns true if content selected" name="contentInsertion existingContentToLink returns true if content selected" time="0">
1791
+ </testcase>
1792
+ <testcase classname="contentInsertion existingContentToLink returns false if content not selected" name="contentInsertion existingContentToLink returns false if content not selected" time="0">
1793
+ </testcase>
1794
+ <testcase classname="contentInsertion existingContentToLink returns true when only an editor is passed with a selection" name="contentInsertion existingContentToLink returns true when only an editor is passed with a selection" time="0">
1795
+ </testcase>
1796
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns false if editor is hidden" name="contentInsertion existingContentToLinkIsImg returns false if editor is hidden" time="0">
1797
+ </testcase>
1798
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns false if no content selected" name="contentInsertion existingContentToLinkIsImg returns false if no content selected" time="0.002">
1799
+ </testcase>
1800
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns false if selected content is not img" name="contentInsertion existingContentToLinkIsImg returns false if selected content is not img" time="0.001">
1801
+ </testcase>
1802
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns true if selected content is img" name="contentInsertion existingContentToLinkIsImg returns true if selected content is img" time="0.001">
1803
+ </testcase>
1804
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns false if selected content contains a period" name="contentInsertion existingContentToLinkIsImg returns false if selected content contains a period" time="0.001">
1805
+ </testcase>
1806
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns false if selected content contains a slash" name="contentInsertion existingContentToLinkIsImg returns false if selected content contains a slash" time="0.001">
1807
+ </testcase>
1808
+ <testcase classname="contentInsertion existingContentToLinkIsImg returns false if selected content contains a question mark" name="contentInsertion existingContentToLinkIsImg returns false if selected content contains a question mark" time="0.001">
1809
+ </testcase>
1810
+ <testcase classname="contentInsertion insertVideo inserts video from upload into iframe" name="contentInsertion insertVideo inserts video from upload into iframe" time="0.002">
1811
+ </testcase>
1812
+ <testcase classname="contentInsertion insertVideo inserts video from the course content tray" name="contentInsertion insertVideo inserts video from the course content tray" time="0.001">
1813
+ </testcase>
1814
+ <testcase classname="contentInsertion insertVideo links video if user has made a selection" name="contentInsertion insertVideo links video if user has made a selection" time="0.002">
1815
+ </testcase>
1816
+ <testcase classname="contentInsertion insertAudio inserts audio from upload into iframe" name="contentInsertion insertAudio inserts audio from upload into iframe" time="0.007">
1817
+ </testcase>
1818
+ <testcase classname="contentInsertion insertAudio inserts audio from the course content tray" name="contentInsertion insertAudio inserts audio from the course content tray" time="0.001">
1819
+ </testcase>
1820
+ </testsuite>
1821
+ <testsuite name="&lt;Footer /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:20" time="0.76" tests="7">
1822
+ <testcase classname="&lt;Footer /&gt; submits the icon maker tray" name="&lt;Footer /&gt; submits the icon maker tray" time="0.133">
1823
+ </testcase>
1824
+ <testcase classname="&lt;Footer /&gt; closes the icon maker tray" name="&lt;Footer /&gt; closes the icon maker tray" time="0.055">
1825
+ </testcase>
1826
+ <testcase classname="&lt;Footer /&gt; renders the footer disabled" name="&lt;Footer /&gt; renders the footer disabled" time="0.096">
1827
+ </testcase>
1828
+ <testcase classname="&lt;Footer /&gt; when editing renders the &quot;apply to all&quot; checkbox" name="&lt;Footer /&gt; when editing renders the &quot;apply to all&quot; checkbox" time="0.016">
1829
+ </testcase>
1830
+ <testcase classname="&lt;Footer /&gt; when editing renders the &quot;save&quot; button" name="&lt;Footer /&gt; when editing renders the &quot;save&quot; button" time="0.011">
1831
+ </testcase>
1832
+ <testcase classname="&lt;Footer /&gt; when editing does not render the &quot;apply&quot; button" name="&lt;Footer /&gt; when editing does not render the &quot;apply&quot; button" time="0.012">
1833
+ </testcase>
1834
+ <testcase classname="&lt;Footer /&gt; when editing calls &quot;onSubmit&quot; when &quot;Save&quot; is pressed&quot;" name="&lt;Footer /&gt; when editing calls &quot;onSubmit&quot; when &quot;Save&quot; is pressed&quot;" time="0.013">
1835
+ </testcase>
1836
+ </testsuite>
1837
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:20" time="0.737" tests="6">
1838
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #showTrayForEditor() when the tray is not already open opens the tray" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #showTrayForEditor() when the tray is not already open opens the tray" time="0.087">
1839
+ </testcase>
1840
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" time="0.076">
1841
+ </testcase>
1842
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #showTrayForEditor() when the tray is already open for the given editor keeps the tray open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #showTrayForEditor() when the tray is already open for the given editor keeps the tray open" time="0.041">
1843
+ </testcase>
1844
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #hideTrayForEditor() closes the tray when open for the given editor" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #hideTrayForEditor() closes the tray when open for the given editor" time="0.061">
1845
+ </testcase>
1846
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #hideTrayForEditor() does not close the tray when open for a different editor" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #hideTrayForEditor() does not close the tray when open for a different editor" time="0.068">
1847
+ </testcase>
1848
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #hideTrayForEditor() does nothing when the tray was not open" name="RCE &quot;Links&quot; Plugin &gt; LinkOptionsTray &gt; LinkOptionsTrayController #hideTrayForEditor() does nothing when the tray was not open" time="0.003">
1849
+ </testcase>
1850
+ </testsuite>
1851
+ <testsuite name="shouldCompressImage()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:21" time="0.481" tests="10">
1852
+ <testcase classname="shouldCompressImage() mime types accepts jpeg images" name="shouldCompressImage() mime types accepts jpeg images" time="0">
1853
+ </testcase>
1854
+ <testcase classname="shouldCompressImage() mime types accepts webp images" name="shouldCompressImage() mime types accepts webp images" time="0">
1855
+ </testcase>
1856
+ <testcase classname="shouldCompressImage() mime types accepts bmp images" name="shouldCompressImage() mime types accepts bmp images" time="0">
1857
+ </testcase>
1858
+ <testcase classname="shouldCompressImage() mime types accepts tiff images" name="shouldCompressImage() mime types accepts tiff images" time="0">
1859
+ </testcase>
1860
+ <testcase classname="shouldCompressImage() mime types doesn&apos;t accept gif images" name="shouldCompressImage() mime types doesn&apos;t accept gif images" time="0">
1861
+ </testcase>
1862
+ <testcase classname="shouldCompressImage() mime types doesn&apos;t accept png images" name="shouldCompressImage() mime types doesn&apos;t accept png images" time="0">
1863
+ </testcase>
1864
+ <testcase classname="shouldCompressImage() mime types doesn&apos;t accept svg images" name="shouldCompressImage() mime types doesn&apos;t accept svg images" time="0.001">
1865
+ </testcase>
1866
+ <testcase classname="shouldCompressImage() size has greater size" name="shouldCompressImage() size has greater size" time="0">
1867
+ </testcase>
1868
+ <testcase classname="shouldCompressImage() size has lower size" name="shouldCompressImage() size has lower size" time="0.001">
1869
+ </testcase>
1870
+ <testcase classname="compressImage() returns compressed blob image" name="compressImage() returns compressed blob image" time="0.102">
1871
+ </testcase>
1872
+ </testsuite>
1873
+ <testsuite name="ResetControls" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:22" time="0.906" tests="2">
1874
+ <testcase classname="ResetControls renders button" name="ResetControls renders button" time="0.025">
1875
+ </testcase>
1876
+ <testcase classname="ResetControls calls function when button is clicked" name="ResetControls calls function when button is clicked" time="0.01">
1877
+ </testcase>
1878
+ </testsuite>
1879
+ <testsuite name="Embed" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:23" time="0.565" tests="4">
1880
+ <testcase classname="Embed renders with label" name="Embed renders with label" time="0.068">
1881
+ </testcase>
1882
+ <testcase classname="Embed submit calls handleEmbedCode and passes textarea value" name="Embed submit calls handleEmbedCode and passes textarea value" time="0.044">
1883
+ </testcase>
1884
+ <testcase classname="Embed is disabled before EmbedPanel has a value" name="Embed is disabled before EmbedPanel has a value" time="0.034">
1885
+ </testcase>
1886
+ <testcase classname="Embed is enabled once EmbedPanel has a value" name="Embed is enabled once EmbedPanel has a value" time="0.039">
1887
+ </testcase>
1888
+ </testsuite>
1889
+ <testsuite name="&lt;Preview /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:23" time="0.778" tests="1">
1890
+ <testcase classname="&lt;Preview /&gt; renders the svg preview" name="&lt;Preview /&gt; renders the svg preview" time="0.026">
1891
+ </testcase>
1892
+ </testsuite>
1893
+ <testsuite name="useSvgSettings()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:24" time="0.679" tests="18">
1894
+ <testcase classname="useSvgSettings() when a new icon is being created (not editing) initializes settings to the default" name="useSvgSettings() when a new icon is being created (not editing) initializes settings to the default" time="0.01">
1895
+ </testcase>
1896
+ <testcase classname="useSvgSettings() when a new icon is being created (not editing) sets status to &quot;IDLE&quot;" name="useSvgSettings() when a new icon is being created (not editing) sets status to &quot;IDLE&quot;" time="0.003">
1897
+ </testcase>
1898
+ <testcase classname="useSvgSettings() when a new icon is being created (not editing) does not attempt to fetch an existing SVG" name="useSvgSettings() when a new icon is being created (not editing) does not attempt to fetch an existing SVG" time="0.001">
1899
+ </testcase>
1900
+ <testcase classname="useSvgSettings() when a new icon is being created (not editing) returns dispatch" name="useSvgSettings() when a new icon is being created (not editing) returns dispatch" time="0.004">
1901
+ </testcase>
1902
+ <testcase classname="useSvgSettings() when a new icon is being created (not editing) and a setting update action is dispatched updates the relevant settings" name="useSvgSettings() when a new icon is being created (not editing) and a setting update action is dispatched updates the relevant settings" time="0.003">
1903
+ </testcase>
1904
+ <testcase classname="useSvgSettings() when an existing icon is being edited fetches the icon metadata, specifying the course ID and timestamp" name="useSvgSettings() when an existing icon is being edited fetches the icon metadata, specifying the course ID and timestamp" time="0.013">
1905
+ </testcase>
1906
+ <testcase classname="useSvgSettings() when an existing icon is being edited when the download URL contains a course ID fetches the icon metadata using the /files/:file_id/icon_metadata endpoint" name="useSvgSettings() when an existing icon is being edited when the download URL contains a course ID fetches the icon metadata using the /files/:file_id/icon_metadata endpoint" time="0.007">
1907
+ </testcase>
1908
+ <testcase classname="useSvgSettings() when an existing icon is being edited with a relative download URL fetches the icon metadata, specifying the course ID and timestamp" name="useSvgSettings() when an existing icon is being edited with a relative download URL fetches the icon metadata, specifying the course ID and timestamp" time="0.01">
1909
+ </testcase>
1910
+ <testcase classname="useSvgSettings() when an existing icon is being edited with a containing element selected fetches the icon metadata, specifying the course ID and timestamp" name="useSvgSettings() when an existing icon is being edited with a containing element selected fetches the icon metadata, specifying the course ID and timestamp" time="0.01">
1911
+ </testcase>
1912
+ <testcase classname="useSvgSettings() when an existing icon is being edited parses the SVG settings from the icon metadata" name="useSvgSettings() when an existing icon is being edited parses the SVG settings from the icon metadata" time="0.01">
1913
+ </testcase>
1914
+ <testcase classname="useSvgSettings() when an existing icon is being edited parses the SVG settings from a legacy SVG metadata structure replaces icon type from object to string for single-color images" name="useSvgSettings() when an existing icon is being edited parses the SVG settings from a legacy SVG metadata structure replaces icon type from object to string for single-color images" time="0.006">
1915
+ </testcase>
1916
+ <testcase classname="useSvgSettings() when an existing icon is being edited parses the SVG settings from a legacy SVG metadata structure replaces icon type from object to string for single-color images even using another language" name="useSvgSettings() when an existing icon is being edited parses the SVG settings from a legacy SVG metadata structure replaces icon type from object to string for single-color images even using another language" time="0.006">
1917
+ </testcase>
1918
+ <testcase classname="useSvgSettings() when an existing icon is being edited parses the SVG settings from a legacy SVG metadata structure sets image settings to null when label is not found" name="useSvgSettings() when an existing icon is being edited parses the SVG settings from a legacy SVG metadata structure sets image settings to null when label is not found" time="0.009">
1919
+ </testcase>
1920
+ <testcase classname="useSvgSettings() when an existing icon is being edited sets the status to &quot;loading&quot;" name="useSvgSettings() when an existing icon is being edited sets the status to &quot;loading&quot;" time="0.006">
1921
+ </testcase>
1922
+ <testcase classname="useSvgSettings() when an existing icon is being edited returns the status to &quot;idle&quot;" name="useSvgSettings() when an existing icon is being edited returns the status to &quot;idle&quot;" time="0.005">
1923
+ </testcase>
1924
+ <testcase classname="useSvgSettings() when an existing icon is being edited and the metadata is non-parsable uses the default settings" name="useSvgSettings() when an existing icon is being edited and the metadata is non-parsable uses the default settings" time="0.016">
1925
+ </testcase>
1926
+ <testcase classname="useSvgSettings() when an existing icon is being edited and the selected node has no src uses the default settings" name="useSvgSettings() when an existing icon is being edited and the selected node has no src uses the default settings" time="0.007">
1927
+ </testcase>
1928
+ <testcase classname="useSvgSettings() when an existing icon is edited while the tray is already open loads the correct metadata" name="useSvgSettings() when an existing icon is edited while the tray is already open loads the correct metadata" time="0.015">
1929
+ </testcase>
1930
+ </testsuite>
1931
+ <testsuite name="RCE Plugins &gt; LtiTool" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:25" time="0.675" tests="3">
1932
+ <testcase classname="RCE Plugins &gt; LtiTool renters the tool title" name="RCE Plugins &gt; LtiTool renters the tool title" time="0.019">
1933
+ </testcase>
1934
+ <testcase classname="RCE Plugins &gt; LtiTool renters the tool image" name="RCE Plugins &gt; LtiTool renters the tool image" time="0.009">
1935
+ </testcase>
1936
+ <testcase classname="RCE Plugins &gt; LtiTool renders the tool description" name="RCE Plugins &gt; LtiTool renders the tool description" time="0.009">
1937
+ </testcase>
1938
+ </testsuite>
1939
+ <testsuite name="UploadFile: UrlPanel" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:26" time="0.366" tests="1">
1940
+ <testcase classname="UploadFile: UrlPanel calls setFileUrl when the file url input changes" name="UploadFile: UrlPanel calls setFileUrl when the file url input changes" time="0.017">
1941
+ </testcase>
1942
+ </testsuite>
1943
+ <testsuite name="RCE Plugins &gt; LtiTool" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:26" time="0.713" tests="3">
1944
+ <testcase classname="RCE Plugins &gt; LtiTool renders View description when first rendered" name="RCE Plugins &gt; LtiTool renders View description when first rendered" time="0.014">
1945
+ </testcase>
1946
+ <testcase classname="RCE Plugins &gt; LtiTool renders description when expanded" name="RCE Plugins &gt; LtiTool renders description when expanded" time="0.021">
1947
+ </testcase>
1948
+ <testcase classname="RCE Plugins &gt; LtiTool renders View description when collapsed" name="RCE Plugins &gt; LtiTool renders View description when collapsed" time="0.013">
1949
+ </testcase>
1950
+ </testsuite>
1951
+ <testsuite name="createCroppedImageSvg()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:27" time="0.342" tests="14">
1952
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt;" name="createCroppedImageSvg() builds a &lt;svg /&gt;" time="0.002">
1953
+ </testcase>
1954
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with all transform params" name="createCroppedImageSvg() builds a &lt;svg /&gt; with all transform params" time="0.001">
1955
+ </testcase>
1956
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with scaleRatio 1.0" name="createCroppedImageSvg() builds a &lt;svg /&gt; with scaleRatio 1.0" time="0.001">
1957
+ </testcase>
1958
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with scaleRatio 1.5" name="createCroppedImageSvg() builds a &lt;svg /&gt; with scaleRatio 1.5" time="0.001">
1959
+ </testcase>
1960
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with scaleRatio 2.0" name="createCroppedImageSvg() builds a &lt;svg /&gt; with scaleRatio 2.0" time="0.001">
1961
+ </testcase>
1962
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with rotation 90º" name="createCroppedImageSvg() builds a &lt;svg /&gt; with rotation 90º" time="0.001">
1963
+ </testcase>
1964
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with rotation 180º" name="createCroppedImageSvg() builds a &lt;svg /&gt; with rotation 180º" time="0.001">
1965
+ </testcase>
1966
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with rotation -90º" name="createCroppedImageSvg() builds a &lt;svg /&gt; with rotation -90º" time="0.001">
1967
+ </testcase>
1968
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units negative translateX" name="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units negative translateX" time="0.001">
1969
+ </testcase>
1970
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units positive translateX" name="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units positive translateX" time="0.001">
1971
+ </testcase>
1972
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units negative translateY" name="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units negative translateY" time="0.001">
1973
+ </testcase>
1974
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units positive translateY" name="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units positive translateY" time="0">
1975
+ </testcase>
1976
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units negative translateX and translateY" name="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units negative translateX and translateY" time="0.001">
1977
+ </testcase>
1978
+ <testcase classname="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units positive translateX and translateY" name="createCroppedImageSvg() builds a &lt;svg /&gt; with translation units positive translateX and translateY" time="0.001">
1979
+ </testcase>
1980
+ </testsuite>
1981
+ <testsuite name="process()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:27" time="0.545" tests="3">
1982
+ <testcase classname="process() when the file type matches the SVG processor processes the file with the SVG processor" name="process() when the file type matches the SVG processor processes the file with the SVG processor" time="0.002">
1983
+ </testcase>
1984
+ <testcase classname="process() when the file type does not match a processor returns undefined" name="process() when the file type does not match a processor returns undefined" time="0.001">
1985
+ </testcase>
1986
+ <testcase classname="process() when no file is given returns undefined" name="process() when no file is given returns undefined" time="0">
1987
+ </testcase>
1988
+ </testsuite>
1989
+ <testsuite name="buildSvg()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:28" time="0.218" tests="1">
1990
+ <testcase classname="buildSvg() builds the crop shape svg" name="buildSvg() builds the crop shape svg" time="0.002">
1991
+ </testcase>
1992
+ </testsuite>
1993
+ <testsuite name="calculateScaleRatio()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:28" time="0.564" tests="27">
1994
+ <testcase classname="calculateScaleRatio() when ratio exceeds maximum ratio" name="calculateScaleRatio() when ratio exceeds maximum ratio" time="0">
1995
+ </testcase>
1996
+ <testcase classname="calculateScaleRatio() when ratio exceeds minimum ratio" name="calculateScaleRatio() when ratio exceeds minimum ratio" time="0.001">
1997
+ </testcase>
1998
+ <testcase classname="calculateScaleRatio() when ratio is between thresholds" name="calculateScaleRatio() when ratio is between thresholds" time="0">
1999
+ </testcase>
2000
+ <testcase classname="calculateScalePercentage() when ratio exceeds maximum percentage" name="calculateScalePercentage() when ratio exceeds maximum percentage" time="0">
2001
+ </testcase>
2002
+ <testcase classname="calculateScalePercentage() when ratio exceeds minimum percentage" name="calculateScalePercentage() when ratio exceeds minimum percentage" time="0">
2003
+ </testcase>
2004
+ <testcase classname="calculateScalePercentage() when ratio is between thresholds" name="calculateScalePercentage() when ratio is between thresholds" time="0">
2005
+ </testcase>
2006
+ <testcase classname="calculateRotation() when rotation angle is 360" name="calculateRotation() when rotation angle is 360" time="0">
2007
+ </testcase>
2008
+ <testcase classname="calculateRotation() when rotation angle is -360" name="calculateRotation() when rotation angle is -360" time="0.001">
2009
+ </testcase>
2010
+ <testcase classname="calculateRotation() when rotation angle exceeds 360" name="calculateRotation() when rotation angle exceeds 360" time="0">
2011
+ </testcase>
2012
+ <testcase classname="calculateRotation() when rotation angle is lower than -360" name="calculateRotation() when rotation angle is lower than -360" time="0.001">
2013
+ </testcase>
2014
+ <testcase classname="calculateRotation() when rotation angle is between thresholds positive" name="calculateRotation() when rotation angle is between thresholds positive" time="0">
2015
+ </testcase>
2016
+ <testcase classname="calculateRotation() when rotation angle is between thresholds negative" name="calculateRotation() when rotation angle is between thresholds negative" time="0.001">
2017
+ </testcase>
2018
+ <testcase classname="calculateRotation() when rotation angle is zero" name="calculateRotation() when rotation angle is zero" time="0">
2019
+ </testcase>
2020
+ <testcase classname="getNearestRectAngle() when should rotate to left 1º" name="getNearestRectAngle() when should rotate to left 1º" time="0">
2021
+ </testcase>
2022
+ <testcase classname="getNearestRectAngle() when should rotate to left 45º" name="getNearestRectAngle() when should rotate to left 45º" time="0">
2023
+ </testcase>
2024
+ <testcase classname="getNearestRectAngle() when should rotate to left 89º" name="getNearestRectAngle() when should rotate to left 89º" time="0">
2025
+ </testcase>
2026
+ <testcase classname="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 0º" name="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 0º" time="0.001">
2027
+ </testcase>
2028
+ <testcase classname="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 90º" name="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 90º" time="0">
2029
+ </testcase>
2030
+ <testcase classname="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 180º" name="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 180º" time="0.001">
2031
+ </testcase>
2032
+ <testcase classname="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 270º" name="getNearestRectAngle() when should rotate to left and rotation angle is divisible by 90 270º" time="0">
2033
+ </testcase>
2034
+ <testcase classname="getNearestRectAngle() when should rotate to right 1º" name="getNearestRectAngle() when should rotate to right 1º" time="0">
2035
+ </testcase>
2036
+ <testcase classname="getNearestRectAngle() when should rotate to right 45º" name="getNearestRectAngle() when should rotate to right 45º" time="0">
2037
+ </testcase>
2038
+ <testcase classname="getNearestRectAngle() when should rotate to right 89º" name="getNearestRectAngle() when should rotate to right 89º" time="0">
2039
+ </testcase>
2040
+ <testcase classname="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 0º" name="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 0º" time="0">
2041
+ </testcase>
2042
+ <testcase classname="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 90º" name="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 90º" time="0.001">
2043
+ </testcase>
2044
+ <testcase classname="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 180º" name="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 180º" time="0">
2045
+ </testcase>
2046
+ <testcase classname="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 270º" name="getNearestRectAngle() when should rotate to right and rotation angle is divisible by 90 270º" time="0">
2047
+ </testcase>
2048
+ </testsuite>
2049
+ <testsuite name="isAnUnsupportedGifPngImage()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:28" time="0.268" tests="8">
2050
+ <testcase classname="isAnUnsupportedGifPngImage() returns true for a heavy GIF image" name="isAnUnsupportedGifPngImage() returns true for a heavy GIF image" time="0.001">
2051
+ </testcase>
2052
+ <testcase classname="isAnUnsupportedGifPngImage() returns true for a heavy PNG image" name="isAnUnsupportedGifPngImage() returns true for a heavy PNG image" time="0.001">
2053
+ </testcase>
2054
+ <testcase classname="isAnUnsupportedGifPngImage() returns false based on mime types for jpeg images" name="isAnUnsupportedGifPngImage() returns false based on mime types for jpeg images" time="0">
2055
+ </testcase>
2056
+ <testcase classname="isAnUnsupportedGifPngImage() returns false based on mime types for webp images" name="isAnUnsupportedGifPngImage() returns false based on mime types for webp images" time="0">
2057
+ </testcase>
2058
+ <testcase classname="isAnUnsupportedGifPngImage() returns false based on mime types for bmp images" name="isAnUnsupportedGifPngImage() returns false based on mime types for bmp images" time="0">
2059
+ </testcase>
2060
+ <testcase classname="isAnUnsupportedGifPngImage() returns false based on mime types for tiff images" name="isAnUnsupportedGifPngImage() returns false based on mime types for tiff images" time="0">
2061
+ </testcase>
2062
+ <testcase classname="isAnUnsupportedGifPngImage() returns false based on size for gif images with small size" name="isAnUnsupportedGifPngImage() returns false based on size for gif images with small size" time="0.001">
2063
+ </testcase>
2064
+ <testcase classname="isAnUnsupportedGifPngImage() returns false based on size for png images with small size" name="isAnUnsupportedGifPngImage() returns false based on size for png images with small size" time="0">
2065
+ </testcase>
2066
+ </testsuite>
2067
+ <testsuite name="buildShape()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:29" time="0.345" tests="7">
2068
+ <testcase classname="buildShape() builds a square" name="buildShape() builds a square" time="0.001">
2069
+ </testcase>
2070
+ <testcase classname="buildShape() builds a circle" name="buildShape() builds a circle" time="0.001">
2071
+ </testcase>
2072
+ <testcase classname="buildShape() builds a diamond" name="buildShape() builds a diamond" time="0">
2073
+ </testcase>
2074
+ <testcase classname="buildShape() builds a pentagon" name="buildShape() builds a pentagon" time="0.001">
2075
+ </testcase>
2076
+ <testcase classname="buildShape() builds a hexagon" name="buildShape() builds a hexagon" time="0.001">
2077
+ </testcase>
2078
+ <testcase classname="buildShape() builds an octagon" name="buildShape() builds an octagon" time="0.001">
2079
+ </testcase>
2080
+ <testcase classname="buildShape() builds a star" name="buildShape() builds a star" time="0.001">
2081
+ </testcase>
2082
+ </testsuite>
2083
+ <testsuite name="process()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:29" time="0.534" tests="3">
2084
+ <testcase classname="process() when the file includes icon maker type returns the icon maker category" name="process() when the file includes icon maker type returns the icon maker category" time="0">
2085
+ </testcase>
2086
+ <testcase classname="process() when the file does not include Icon Maker icon type returns undefined" name="process() when the file does not include Icon Maker icon type returns undefined" time="0">
2087
+ </testcase>
2088
+ <testcase classname="process() when an exception is raised returns undefined" name="process() when an exception is raised returns undefined" time="0.001">
2089
+ </testcase>
2090
+ </testsuite>
2091
+ <testsuite name="buildMetadata() / parseMetadata()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:30" time="0.394" tests="1">
2092
+ <testcase classname="buildMetadata() / parseMetadata() builds metadata element and parse it back" name="buildMetadata() / parseMetadata() builds metadata element and parse it back" time="0.005">
2093
+ </testcase>
2094
+ </testsuite>
2095
+ <testsuite name="createSvgElement()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:30" time="0.752" tests="3">
2096
+ <testcase classname="createSvgElement() builds a &lt;svg /&gt;" name="createSvgElement() builds a &lt;svg /&gt;" time="0.001">
2097
+ </testcase>
2098
+ <testcase classname="createSvgElement() builds a &lt;rect /&gt;" name="createSvgElement() builds a &lt;rect /&gt;" time="0">
2099
+ </testcase>
2100
+ <testcase classname="createSvgElement() builds a &lt;svg /&gt; with attributes" name="createSvgElement() builds a &lt;svg /&gt; with attributes" time="0.001">
2101
+ </testcase>
2102
+ </testsuite>
2103
+ <testsuite name="UnsplashPanel" errors="0" failures="0" skipped="8" timestamp="2022-09-14T15:37:31" time="0.774" tests="8">
2104
+ <testcase classname="UnsplashPanel fires off searches when the user types in the search box" name="UnsplashPanel fires off searches when the user types in the search box" time="0">
2105
+ <skipped/>
2106
+ </testcase>
2107
+ <testcase classname="UnsplashPanel displays results after searching" name="UnsplashPanel displays results after searching" time="0">
2108
+ <skipped/>
2109
+ </testcase>
2110
+ <testcase classname="UnsplashPanel shows pagination controls when there are more than one page of results" name="UnsplashPanel shows pagination controls when there are more than one page of results" time="0">
2111
+ <skipped/>
2112
+ </testcase>
2113
+ <testcase classname="UnsplashPanel does not show pagination when there is only one page of results" name="UnsplashPanel does not show pagination when there is only one page of results" time="0">
2114
+ <skipped/>
2115
+ </testcase>
2116
+ <testcase classname="UnsplashPanel selects an image, calling setUnsplashData, when clicking an image" name="UnsplashPanel selects an image, calling setUnsplashData, when clicking an image" time="0">
2117
+ <skipped/>
2118
+ </testcase>
2119
+ <testcase classname="UnsplashPanel shows a message indicating that there were no results if there are no results" name="UnsplashPanel shows a message indicating that there were no results if there are no results" time="0">
2120
+ <skipped/>
2121
+ </testcase>
2122
+ <testcase classname="UnsplashPanel announces a message to screenreaders indicating the number of results" name="UnsplashPanel announces a message to screenreaders indicating the number of results" time="0">
2123
+ <skipped/>
2124
+ </testcase>
2125
+ <testcase classname="UnsplashPanel Attribution shows attribution when an image has focus" name="UnsplashPanel Attribution shows attribution when an image has focus" time="0">
2126
+ <skipped/>
2127
+ </testcase>
2128
+ </testsuite>
2129
+ <testsuite name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:32" time="22.961" tests="30">
2130
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray renders the create view" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray renders the create view" time="0.817">
2131
+ </testcase>
2132
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray closes the tray" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray closes the tray" time="0.821">
2133
+ </testcase>
2134
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray does not close the tray when the user has unsaved changes" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray does not close the tray when the user has unsaved changes" time="0.96">
2135
+ </testcase>
2136
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray inserts a placeholder when an icon is inserted" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray inserts a placeholder when an icon is inserted" time="0.586">
2137
+ </testcase>
2138
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when the user has not created a valid icon does not fire off the icon upload callback" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when the user has not created a valid icon does not fire off the icon upload callback" time="0.453">
2139
+ </testcase>
2140
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when the user has not created a valid icon shows an error message" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when the user has not created a valid icon shows an error message" time="0.464">
2141
+ </testcase>
2142
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray focus management when the close button is focused and the user does a forward tab moves focus to the &quot;name&quot; input" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray focus management when the close button is focused and the user does a forward tab moves focus to the &quot;name&quot; input" time="0.324">
2143
+ </testcase>
2144
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray focus management when the close button is focused and the user does a reverse tab moves focus to the apply button" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray focus management when the close button is focused and the user does a reverse tab moves focus to the apply button" time="0.319">
2145
+ </testcase>
2146
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray uploads the svg with correct content" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray uploads the svg with correct content" time="0.547">
2147
+ </testcase>
2148
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray uploads the svg with overwrite if &quot;replace all&quot; is checked" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray uploads the svg with overwrite if &quot;replace all&quot; is checked" time="1.547">
2149
+ </testcase>
2150
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray alt text handling writes content to the editor with alt text when it is present" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray alt text handling writes content to the editor with alt text when it is present" time="0.689">
2151
+ </testcase>
2152
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray alt text handling writes content to the editor without alt attribute when no alt text entered" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray alt text handling writes content to the editor without alt attribute when no alt text entered" time="1.311">
2153
+ </testcase>
2154
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray alt text handling writes content to the editor with alt=&quot;&quot; if is decorative" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray alt text handling writes content to the editor with alt=&quot;&quot; if is decorative" time="1.008">
2155
+ </testcase>
2156
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray the &quot;replace all instances&quot; checkbox disables the name field when checked" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray the &quot;replace all instances&quot; checkbox disables the name field when checked" time="0.601">
2157
+ </testcase>
2158
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray the &quot;replace all instances&quot; checkbox does not disable the name field when not checked" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray the &quot;replace all instances&quot; checkbox does not disable the name field when not checked" time="0.79">
2159
+ </testcase>
2160
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray the &quot;replace all instances&quot; checkbox does not disable the name field on new icons" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray the &quot;replace all instances&quot; checkbox does not disable the name field on new icons" time="0.32">
2161
+ </testcase>
2162
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when submitting disables the footer" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when submitting disables the footer" time="0.496">
2163
+ </testcase>
2164
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when submitting shows a spinner" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when submitting shows a spinner" time="0.502">
2165
+ </testcase>
2166
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being created loads the standard SVG metadata" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being created loads the standard SVG metadata" time="0.349">
2167
+ </testcase>
2168
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited renders the edit view" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited renders the edit view" time="0.772">
2169
+ </testcase>
2170
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited inserts a placeholder when an icon is saved" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited inserts a placeholder when an icon is saved" time="0.84">
2171
+ </testcase>
2172
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited loads the standard SVG metadata" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited loads the standard SVG metadata" time="0.672">
2173
+ </testcase>
2174
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited loads the text-related SVG metadata" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited loads the text-related SVG metadata" time="0.681">
2175
+ </testcase>
2176
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited when an icon has styling from RCE checks that the icon keeps attributes from RCE" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited when an icon has styling from RCE checks that the icon keeps attributes from RCE" time="0.857">
2177
+ </testcase>
2178
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited when loading the tray renders a spinner" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray when an icon is being edited when loading the tray renders a spinner" time="0.626">
2179
+ </testcase>
2180
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have no none option when they represent outline color" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have no none option when they represent outline color" time="0.376">
2181
+ </testcase>
2182
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have no none option when they represent text color" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have no none option when they represent text color" time="0.376">
2183
+ </testcase>
2184
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have no none option when they represent single color image" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have no none option when they represent single color image" time="1.241">
2185
+ </testcase>
2186
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have a none option when they represent icon color" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have a none option when they represent icon color" time="1.052">
2187
+ </testcase>
2188
+ <testcase classname="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have a none option when they represent text background color" name="RCE &quot;Icon Maker&quot; Plugin &gt; IconMakerTray color inputs have a none option when they represent text background color" time="0.542">
2189
+ </testcase>
2190
+ </testsuite>
2191
+ <testsuite name="FileBrowser" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:37:55" time="10.301" tests="17">
2192
+ <testcase classname="FileBrowser componentDidMount() does not fetch the context root folder" name="FileBrowser componentDidMount() does not fetch the context root folder" time="0.123">
2193
+ </testcase>
2194
+ <testcase classname="FileBrowser componentDidMount() fetches and renders the user root folder" name="FileBrowser componentDidMount() fetches and renders the user root folder" time="0.159">
2195
+ </testcase>
2196
+ <testcase classname="FileBrowser componentDidMount() fetches root user folder data" name="FileBrowser componentDidMount() fetches root user folder data" time="0.17">
2197
+ </testcase>
2198
+ <testcase classname="FileBrowser componentDidMount() fetches root user folder files" name="FileBrowser componentDidMount() fetches root user folder files" time="0.281">
2199
+ </testcase>
2200
+ <testcase classname="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches and renders the context root folder" name="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches and renders the context root folder" time="0.03">
2201
+ </testcase>
2202
+ <testcase classname="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches and renders the user root folder" name="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches and renders the user root folder" time="0.027">
2203
+ </testcase>
2204
+ <testcase classname="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches course folder files" name="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches course folder files" time="0.077">
2205
+ </testcase>
2206
+ <testcase classname="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches root user folder files" name="FileBrowser componentDidMount() when &quot;useContextAssets&quot; is true fetches root user folder files" time="0.065">
2207
+ </testcase>
2208
+ <testcase classname="FileBrowser file icon is an img thumbnail if the file is an image and has a thumbnailUrl" name="FileBrowser file icon is an img thumbnail if the file is an image and has a thumbnailUrl" time="0.931">
2209
+ </testcase>
2210
+ <testcase classname="FileBrowser file icon is an Image icon if the file is an image without a thumbnailUrl" name="FileBrowser file icon is an Image icon if the file is an image without a thumbnailUrl" time="0.78">
2211
+ </testcase>
2212
+ <testcase classname="FileBrowser file icon is an MsWord icon if the file is a document" name="FileBrowser file icon is an MsWord icon if the file is a document" time="0.827">
2213
+ </testcase>
2214
+ <testcase classname="FileBrowser file icon is an MsPpt icon if the file is a slide deck" name="FileBrowser file icon is an MsPpt icon if the file is a slide deck" time="0.792">
2215
+ </testcase>
2216
+ <testcase classname="FileBrowser file icon is a Pdf icon if the file is a pdf" name="FileBrowser file icon is a Pdf icon if the file is a pdf" time="0.834">
2217
+ </testcase>
2218
+ <testcase classname="FileBrowser file icon is a MsExcel icon if the file is a spreadsheet" name="FileBrowser file icon is a MsExcel icon if the file is a spreadsheet" time="0.828">
2219
+ </testcase>
2220
+ <testcase classname="FileBrowser file icon is a Video icon if the file is a video" name="FileBrowser file icon is a Video icon if the file is a video" time="0.81">
2221
+ </testcase>
2222
+ <testcase classname="FileBrowser file icon is an Audio icon if the file is audio" name="FileBrowser file icon is an Audio icon if the file is audio" time="0.884">
2223
+ </testcase>
2224
+ <testcase classname="FileBrowser file icon is a Document icon if the file does not fit in the other categories" name="FileBrowser file icon is a Document icon if the file does not fit in the other categories" time="0.798">
2225
+ </testcase>
2226
+ </testsuite>
2227
+ <testsuite name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray" errors="0" failures="0" skipped="1" timestamp="2022-09-14T15:38:05" time="3.87" tests="23">
2228
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray is optionally rendered open" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray is optionally rendered open" time="0.191">
2229
+ </testcase>
2230
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray is optionally rendered closed" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray is optionally rendered closed" time="0.005">
2231
+ </testcase>
2232
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray is labeled with &quot;Video Options Tray&quot;" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray is labeled with &quot;Video Options Tray&quot;" time="0.092">
2233
+ </testcase>
2234
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray Title field uses the value of titleText in the given video options" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray Title field uses the value of titleText in the given video options" time="0.091">
2235
+ </testcase>
2236
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray Title field is blank when the given video options titleText is blank" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray Title field is blank when the given video options titleText is blank" time="0.087">
2237
+ </testcase>
2238
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Display Options&quot; field is set to &quot;embed&quot; by default" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Display Options&quot; field is set to &quot;embed&quot; by default" time="0.086">
2239
+ </testcase>
2240
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Display Options&quot; field can be set to &quot;Display Text Link&quot;" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Display Options&quot; field can be set to &quot;Display Text Link&quot;" time="0.132">
2241
+ </testcase>
2242
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Display Options&quot; field can be reset to &quot;Embed Image&quot;" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Display Options&quot; field can be reset to &quot;Embed Image&quot;" time="0.165">
2243
+ </testcase>
2244
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field is set using the given image options" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field is set using the given image options" time="0.084">
2245
+ </testcase>
2246
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field can be re-set to &quot;Medium&quot;" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field can be re-set to &quot;Medium&quot;" time="0.219">
2247
+ </testcase>
2248
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field can be set to &quot;Large&quot;" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field can be set to &quot;Large&quot;" time="0.138">
2249
+ </testcase>
2250
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field can be set to &quot;Custom&quot;" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field can be set to &quot;Custom&quot;" time="0.17">
2251
+ </testcase>
2252
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field requires 320px custom width" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Size&quot; field requires 320px custom width" time="0.102">
2253
+ </testcase>
2254
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Closed Captions Panel&quot; is displayed when feature flag is true" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Closed Captions Panel&quot; is displayed when feature flag is true" time="0.07">
2255
+ </testcase>
2256
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Closed Captions Panel&quot; does not steal focus when changing other parts of the tray" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Closed Captions Panel&quot; does not steal focus when changing other parts of the tray" time="0.105">
2257
+ </testcase>
2258
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Done&quot; button when Title Text is present is enabled" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Done&quot; button when Title Text is present is enabled" time="0.107">
2259
+ </testcase>
2260
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Done&quot; button when Title Text is not present is disabled " name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Done&quot; button when Title Text is not present is disabled " time="0.078">
2261
+ </testcase>
2262
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Done&quot; button when Title Text is not present is enabled when &quot;Display Text Link&quot; is selected" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &quot;Done&quot; button when Title Text is not present is enabled when &quot;Display Text Link&quot; is selected" time="0.106">
2263
+ </testcase>
2264
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked prevents the default click handler" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked prevents the default click handler" time="0.1">
2265
+ </testcase>
2266
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked calls the .onSave prop" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked calls the .onSave prop" time="0.099">
2267
+ </testcase>
2268
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked when calling the .onSave prop includes the Title Text" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked when calling the .onSave prop includes the Title Text" time="0.1">
2269
+ </testcase>
2270
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked when calling the .onSave prop includes the &quot;Display As&quot; setting" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked when calling the .onSave prop includes the &quot;Display As&quot; setting" time="0.145">
2271
+ </testcase>
2272
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked when calling the .onSave prop includes the size to be applied" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray when clicked when calling the .onSave prop includes the size to be applied" time="0">
2273
+ <skipped/>
2274
+ </testcase>
2275
+ </testsuite>
2276
+ <testsuite name="MemoizedEquationEditorToolbar" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:09" time="3.231" tests="2">
2277
+ <testcase classname="MemoizedEquationEditorToolbar renders all buttons" name="MemoizedEquationEditorToolbar renders all buttons" time="2.267">
2278
+ </testcase>
2279
+ <testcase classname="MemoizedEquationEditorToolbar calls executeCommand on button click" name="MemoizedEquationEditorToolbar calls executeCommand on button click" time="0.167">
2280
+ </testcase>
2281
+ </testsuite>
2282
+ <testsuite name="handleUpload()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:12" time="2.707" tests="4">
2283
+ <testcase classname="handleUpload() with a file size error calls onUploadComplete with the file size error" name="handleUpload() with a file size error calls onUploadComplete with the file size error" time="0.002">
2284
+ </testcase>
2285
+ <testcase classname="Instructure Media Plugin: clickCallback adds the canvas-rce-upload-container element when opened" name="Instructure Media Plugin: clickCallback adds the canvas-rce-upload-container element when opened" time="1.642">
2286
+ </testcase>
2287
+ <testcase classname="Instructure Media Plugin: clickCallback does not add the canvas-rce-upload-container element when opened if it exists already" name="Instructure Media Plugin: clickCallback does not add the canvas-rce-upload-container element when opened if it exists already" time="0.056">
2288
+ </testcase>
2289
+ <testcase classname="Instructure Media Plugin: clickCallback opens the UploadMedia modal when called" name="Instructure Media Plugin: clickCallback opens the UploadMedia modal when called" time="0.143">
2290
+ </testcase>
2291
+ </testsuite>
2292
+ <testsuite name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:15" time="2.291" tests="10">
2293
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open opens the tray" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open opens the tray" time="0.166">
2294
+ </testcase>
2295
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open uses the selected video from the editor" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open uses the selected video from the editor" time="0.11">
2296
+ </testcase>
2297
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" time="0.188">
2298
+ </testcase>
2299
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is already open for the given editor keeps the tray open" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #showTrayForEditor() when the tray is already open for the given editor keeps the tray open" time="0.181">
2300
+ </testcase>
2301
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #hideTrayForEditor() closes the tray when open for the given editor" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #hideTrayForEditor() closes the tray when open for the given editor" time="0.195">
2302
+ </testcase>
2303
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #hideTrayForEditor() does not close the tray when open for a different editor" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #hideTrayForEditor() does not close the tray when open for a different editor" time="0.18">
2304
+ </testcase>
2305
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #hideTrayForEditor() does nothing when the tray was not open" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #hideTrayForEditor() does nothing when the tray was not open" time="0.014">
2306
+ </testcase>
2307
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #_applyVideoOptions updates the video" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #_applyVideoOptions updates the video" time="0.169">
2308
+ </testcase>
2309
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #_applyVideoOptions does not updates the video w/o a media_object_id" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #_applyVideoOptions does not updates the video w/o a media_object_id" time="0.16">
2310
+ </testcase>
2311
+ <testcase classname="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #_applyVideoOptions replaces the video with a link" name="RCE &quot;Videos&quot; Plugin &gt; VideoOptionsTray &gt; TrayController #_applyVideoOptions replaces the video with a link" time="0.162">
2312
+ </testcase>
2313
+ </testsuite>
2314
+ <testsuite name="clickCallback()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:17" time="2.892" tests="3">
2315
+ <testcase classname="clickCallback() when the container does not exist creates the container" name="clickCallback() when the container does not exist creates the container" time="1.094">
2316
+ </testcase>
2317
+ <testcase classname="clickCallback() when the container does not exist mounts the component" name="clickCallback() when the container does not exist mounts the component" time="0.377">
2318
+ </testcase>
2319
+ <testcase classname="clickCallback() when the container exists re-mounts the component" name="clickCallback() when the container exists re-mounts the component" time="0.244">
2320
+ </testcase>
2321
+ </testsuite>
2322
+ <testsuite name="RCE &quot;Media&quot; Plugin &gt; MediaPanel" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:20" time="0.823" tests="10">
2323
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders empty notice" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders empty notice" time="0.01">
2324
+ </testcase>
2325
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders loading spinner" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders loading spinner" time="0.007">
2326
+ </testcase>
2327
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders media files" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders media files" time="0.044">
2328
+ </testcase>
2329
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel when there is a pending media file shows a &quot;pending&quot; message for the file" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel when there is a pending media file shows a &quot;pending&quot; message for the file" time="0.038">
2330
+ </testcase>
2331
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders load more button if there is more" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel renders load more button if there is more" time="0.046">
2332
+ </testcase>
2333
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel fetches initial data when mounted" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel fetches initial data when mounted" time="0.003">
2334
+ </testcase>
2335
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel fetches more when the load more button is clicked" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel fetches more when the load more button is clicked" time="0.031">
2336
+ </testcase>
2337
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel shows an error message if the fetch failed" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel shows an error message if the fetch failed" time="0.026">
2338
+ </testcase>
2339
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel shows spinner during initial load" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel shows spinner during initial load" time="0.004">
2340
+ </testcase>
2341
+ <testcase classname="RCE &quot;Media&quot; Plugin &gt; MediaPanel shows spinner while loading more" name="RCE &quot;Media&quot; Plugin &gt; MediaPanel shows spinner while loading more" time="0.029">
2342
+ </testcase>
2343
+ </testsuite>
2344
+ <testsuite name="RCE StatusBar" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:21" time="1.577" tests="16">
2345
+ <testcase classname="RCE StatusBar calls callback when clicking kb shortcut button" name="RCE StatusBar calls callback when clicking kb shortcut button" time="0.07">
2346
+ </testcase>
2347
+ <testcase classname="RCE StatusBar in WYSIWYG mode cycles focus with right arrow keys" name="RCE StatusBar in WYSIWYG mode cycles focus with right arrow keys" time="0.103">
2348
+ </testcase>
2349
+ <testcase classname="RCE StatusBar in WYSIWYG mode cycles focus with left arrow keys" name="RCE StatusBar in WYSIWYG mode cycles focus with left arrow keys" time="0.109">
2350
+ </testcase>
2351
+ <testcase classname="RCE StatusBar in WYSIWYG mode defaults to pretty html editor" name="RCE StatusBar in WYSIWYG mode defaults to pretty html editor" time="0.139">
2352
+ </testcase>
2353
+ <testcase classname="RCE StatusBar in WYSIWYG mode prefers raw html editor if specified" name="RCE StatusBar in WYSIWYG mode prefers raw html editor if specified" time="0.139">
2354
+ </testcase>
2355
+ <testcase classname="RCE StatusBar in WYSIWYG mode a11y checker start with no notifications" name="RCE StatusBar in WYSIWYG mode a11y checker start with no notifications" time="0.04">
2356
+ </testcase>
2357
+ <testcase classname="RCE StatusBar in WYSIWYG mode a11y checker start set a notification count" name="RCE StatusBar in WYSIWYG mode a11y checker start set a notification count" time="0.06">
2358
+ </testcase>
2359
+ <testcase classname="RCE StatusBar in WYSIWYG mode a11y checker set max notifications count" name="RCE StatusBar in WYSIWYG mode a11y checker set max notifications count" time="0.045">
2360
+ </testcase>
2361
+ <testcase classname="RCE StatusBar in raw HTML mode cycles focus with right arrow keys" name="RCE StatusBar in raw HTML mode cycles focus with right arrow keys" time="0.044">
2362
+ </testcase>
2363
+ <testcase classname="RCE StatusBar in raw HTML mode cycles focus with left arrow keys" name="RCE StatusBar in raw HTML mode cycles focus with left arrow keys" time="0.047">
2364
+ </testcase>
2365
+ <testcase classname="RCE StatusBar in pretty HTML mode cycles focus with right arrow keys" name="RCE StatusBar in pretty HTML mode cycles focus with right arrow keys" time="0.051">
2366
+ </testcase>
2367
+ <testcase classname="RCE StatusBar in pretty HTML mode cycles focus with left arrow keys" name="RCE StatusBar in pretty HTML mode cycles focus with left arrow keys" time="0.061">
2368
+ </testcase>
2369
+ <testcase classname="RCE StatusBar in readonly mode cycles focus with right arrow keys" name="RCE StatusBar in readonly mode cycles focus with right arrow keys" time="0.034">
2370
+ </testcase>
2371
+ <testcase classname="RCE StatusBar in readonly mode cycles focus with left arrow keys" name="RCE StatusBar in readonly mode cycles focus with left arrow keys" time="0.034">
2372
+ </testcase>
2373
+ <testcase classname="RCE StatusBar default focus button shifts button when entering edit mode" name="RCE StatusBar default focus button shifts button when entering edit mode" time="0.053">
2374
+ </testcase>
2375
+ <testcase classname="RCE StatusBar calls the callback when clicking the a11y checker button" name="RCE StatusBar calls the callback when clicking the a11y checker button" time="0.036">
2376
+ </testcase>
2377
+ </testsuite>
2378
+ <testsuite name="Instructure Image Plugin: clickCallback" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:23" time="1.665" tests="3">
2379
+ <testcase classname="Instructure Image Plugin: clickCallback adds the canvas-rce-upload-container element when opened" name="Instructure Image Plugin: clickCallback adds the canvas-rce-upload-container element when opened" time="1.139">
2380
+ </testcase>
2381
+ <testcase classname="Instructure Image Plugin: clickCallback does not add the canvas-rce-upload-container element when opened if it exists already" name="Instructure Image Plugin: clickCallback does not add the canvas-rce-upload-container element when opened if it exists already" time="0.065">
2382
+ </testcase>
2383
+ <testcase classname="Instructure Image Plugin: clickCallback opens the UploadImage modal when called" name="Instructure Image Plugin: clickCallback opens the UploadImage modal when called" time="0.202">
2384
+ </testcase>
2385
+ </testsuite>
2386
+ <testsuite name="SavedIconMakerList()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:24" time="0.718" tests="2">
2387
+ <testcase classname="SavedIconMakerList() renders the image list" name="SavedIconMakerList() renders the image list" time="0.044">
2388
+ </testcase>
2389
+ <testcase classname="SavedIconMakerList() when an image is clicked dispatches a &quot;loading&quot; action" name="SavedIconMakerList() when an image is clicked dispatches a &quot;loading&quot; action" time="0.029">
2390
+ </testcase>
2391
+ </testsuite>
2392
+ <testsuite name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:25" time="2.414" tests="7">
2393
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open opens the tray" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #showTrayForEditor() when the tray is not already open opens the tray" time="0.27">
2394
+ </testcase>
2395
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #showTrayForEditor() when the tray is open for a different editor keeps the tray open" time="0.153">
2396
+ </testcase>
2397
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #hideTrayForEditor() closes the tray when open for the given editor" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #hideTrayForEditor() closes the tray when open for the given editor" time="0.194">
2398
+ </testcase>
2399
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #hideTrayForEditor() does not close the tray when open for a different editor" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #hideTrayForEditor() does not close the tray when open for a different editor" time="0.135">
2400
+ </testcase>
2401
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #hideTrayForEditor() does nothing when the tray was not open" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #hideTrayForEditor() does nothing when the tray was not open" time="0.03">
2402
+ </testcase>
2403
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #_applyAudioOptions updates the audio" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #_applyAudioOptions updates the audio" time="0.106">
2404
+ </testcase>
2405
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #_dismissTray closes the tray" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray &gt; TrayController #_dismissTray closes the tray" time="0.218">
2406
+ </testcase>
2407
+ </testsuite>
2408
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; NavigationPanel" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:28" time="1.005" tests="3">
2409
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; NavigationPanel renders closed" name="RCE &quot;Links&quot; Plugin &gt; NavigationPanel renders closed" time="0.036">
2410
+ </testcase>
2411
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; NavigationPanel renders course navigation open" name="RCE &quot;Links&quot; Plugin &gt; NavigationPanel renders course navigation open" time="0.205">
2412
+ </testcase>
2413
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; NavigationPanel renders group navigation open" name="RCE &quot;Links&quot; Plugin &gt; NavigationPanel renders group navigation open" time="0.097">
2414
+ </testcase>
2415
+ </testsuite>
2416
+ <testsuite name="&lt;ColorInput /&gt;" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:29" time="1.063" tests="4">
2417
+ <testcase classname="&lt;ColorInput /&gt; renders the selected color preview" name="&lt;ColorInput /&gt; renders the selected color preview" time="0.05">
2418
+ </testcase>
2419
+ <testcase classname="&lt;ColorInput /&gt; renders no background when no color is selected" name="&lt;ColorInput /&gt; renders no background when no color is selected" time="0.021">
2420
+ </testcase>
2421
+ <testcase classname="&lt;ColorInput /&gt; changes the color by typing" name="&lt;ColorInput /&gt; changes the color by typing" time="0.23">
2422
+ </testcase>
2423
+ <testcase classname="&lt;ColorInput /&gt; changes the color using the predefined colors" name="&lt;ColorInput /&gt; changes the color using the predefined colors" time="0.148">
2424
+ </testcase>
2425
+ </testsuite>
2426
+ <testsuite name="RCE &quot;Documents&quot; Plugin &gt; Document" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:30" time="0.978" tests="21">
2427
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the date" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the date" time="0.026">
2428
+ </testcase>
2429
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders when the file is pending renders the disabled message" name="RCE &quot;Documents&quot; Plugin &gt; Document renders when the file is pending renders the disabled message" time="0.018">
2430
+ </testcase>
2431
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders when the file is pending does not add callbacks" name="RCE &quot;Documents&quot; Plugin &gt; Document renders when the file is pending does not add callbacks" time="0.013">
2432
+ </testcase>
2433
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the date that change by timezone" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the date that change by timezone" time="0.013">
2434
+ </testcase>
2435
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the display_name" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the display_name" time="0.014">
2436
+ </testcase>
2437
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the filename if there is no display_name" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the filename if there is no display_name" time="0.014">
2438
+ </testcase>
2439
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders as published" name="RCE &quot;Documents&quot; Plugin &gt; Document renders as published" time="0.012">
2440
+ </testcase>
2441
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders as unpublished" name="RCE &quot;Documents&quot; Plugin &gt; Document renders as unpublished" time="0.012">
2442
+ </testcase>
2443
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the doc icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the doc icon" time="0.013">
2444
+ </testcase>
2445
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the ppt icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the ppt icon" time="0.013">
2446
+ </testcase>
2447
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the word icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the word icon" time="0.016">
2448
+ </testcase>
2449
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the excel icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the excel icon" time="0.013">
2450
+ </testcase>
2451
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the pdf icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the pdf icon" time="0.014">
2452
+ </testcase>
2453
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the video icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the video icon" time="0.013">
2454
+ </testcase>
2455
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the audio icon" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the audio icon" time="0.012">
2456
+ </testcase>
2457
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document renders the drag handle only on hover" name="RCE &quot;Documents&quot; Plugin &gt; Document renders the drag handle only on hover" time="0.02">
2458
+ </testcase>
2459
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document handles input calls onClick when clicked" name="RCE &quot;Documents&quot; Plugin &gt; Document handles input calls onClick when clicked" time="0.013">
2460
+ </testcase>
2461
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document handles input passes all attributes to the click handler" name="RCE &quot;Documents&quot; Plugin &gt; Document handles input passes all attributes to the click handler" time="0.013">
2462
+ </testcase>
2463
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document handles input calls onClick on &lt;Enter&gt;" name="RCE &quot;Documents&quot; Plugin &gt; Document handles input calls onClick on &lt;Enter&gt;" time="0.013">
2464
+ </testcase>
2465
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document handles input calls onClick on &lt;Space&gt;" name="RCE &quot;Documents&quot; Plugin &gt; Document handles input calls onClick on &lt;Space&gt;" time="0.015">
2466
+ </testcase>
2467
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; Document handles input only shows drag handle on hover" name="RCE &quot;Documents&quot; Plugin &gt; Document handles input only shows drag handle on hover" time="0.02">
2468
+ </testcase>
2469
+ </testsuite>
2470
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; LinksPanel" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:31" time="1.015" tests="2">
2471
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinksPanel renders a links panel with accordion fully collapsed" name="RCE &quot;Links&quot; Plugin &gt; LinksPanel renders a links panel with accordion fully collapsed" time="0.106">
2472
+ </testcase>
2473
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; LinksPanel expands one panel at a time" name="RCE &quot;Links&quot; Plugin &gt; LinksPanel expands one panel at a time" time="0.192">
2474
+ </testcase>
2475
+ </testsuite>
2476
+ <testsuite name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:32" time="0.994" tests="10">
2477
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders empty notice" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders empty notice" time="0.01">
2478
+ </testcase>
2479
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders loading spinner" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders loading spinner" time="0.007">
2480
+ </testcase>
2481
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders documents" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders documents" time="0.04">
2482
+ </testcase>
2483
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders load more button if there is more" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel renders load more button if there is more" time="0.042">
2484
+ </testcase>
2485
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel fetches initial data when mounted" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel fetches initial data when mounted" time="0.003">
2486
+ </testcase>
2487
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel fetches more when the load more button is clicked" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel fetches more when the load more button is clicked" time="0.032">
2488
+ </testcase>
2489
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel shows an error message if the fetch failed" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel shows an error message if the fetch failed" time="0.031">
2490
+ </testcase>
2491
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel shows spinner during initial load" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel shows spinner during initial load" time="0.004">
2492
+ </testcase>
2493
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel shows spinner while loading more" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel shows spinner while loading more" time="0.027">
2494
+ </testcase>
2495
+ <testcase classname="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel refetches initial docs when sorting changes" name="RCE &quot;Documents&quot; Plugin &gt; DocumentsPanel refetches initial docs when sorting changes" time="0.005">
2496
+ </testcase>
2497
+ </testsuite>
2498
+ <testsuite name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:33" time="1.07" tests="4">
2499
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray is optionally rendered open" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray is optionally rendered open" time="0.096">
2500
+ </testcase>
2501
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray is optionally rendered closed" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray is optionally rendered closed" time="0.004">
2502
+ </testcase>
2503
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray is labeled with &quot;Audio Options Tray&quot;" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray is labeled with &quot;Audio Options Tray&quot;" time="0.056">
2504
+ </testcase>
2505
+ <testcase classname="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray when clicked calls the .onSave prop" name="RCE &quot;Audios&quot; Plugin &gt; AudioOptionsTray when clicked calls the .onSave prop" time="0.048">
2506
+ </testcase>
2507
+ </testsuite>
2508
+ <testsuite name="cropperSettingsReducer()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:34" time="0.596" tests="3">
2509
+ <testcase classname="cropperSettingsReducer() handles &quot;SetImage&quot; actions" name="cropperSettingsReducer() handles &quot;SetImage&quot; actions" time="0.001">
2510
+ </testcase>
2511
+ <testcase classname="cropperSettingsReducer() handles &quot;SetShape&quot; actions" name="cropperSettingsReducer() handles &quot;SetShape&quot; actions" time="0">
2512
+ </testcase>
2513
+ <testcase classname="cropperSettingsReducer() handles &quot;SetScaleRatio&quot; actions" name="cropperSettingsReducer() handles &quot;SetScaleRatio&quot; actions" time="0">
2514
+ </testcase>
2515
+ </testsuite>
2516
+ <testsuite name="registerEditToolbar()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:35" time="0.552" tests="4">
2517
+ <testcase classname="registerEditToolbar() adds the edit button" name="registerEditToolbar() adds the edit button" time="0.001">
2518
+ </testcase>
2519
+ <testcase classname="registerEditToolbar() adds the context toolbar with the button" name="registerEditToolbar() adds the context toolbar with the button" time="0.001">
2520
+ </testcase>
2521
+ <testcase classname="shouldShowEditButton() when the node contains the icon maker attr returns true" name="shouldShowEditButton() when the node contains the icon maker attr returns true" time="0.001">
2522
+ </testcase>
2523
+ <testcase classname="shouldShowEditButton() when the node does not contain the icon maker attr returns false" name="shouldShowEditButton() when the node does not contain the icon maker attr returns false" time="0">
2524
+ </testcase>
2525
+ </testsuite>
2526
+ <testsuite name="trayUtils" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:35" time="0.349" tests="3">
2527
+ <testcase classname="trayUtils getTrayHeight defaults tray height to 100vh when the masquerade bar is not present" name="trayUtils getTrayHeight defaults tray height to 100vh when the masquerade bar is not present" time="0.001">
2528
+ </testcase>
2529
+ <testcase classname="trayUtils getTrayHeight adjusts height by 50px when the masquerade bar is present" name="trayUtils getTrayHeight adjusts height by 50px when the masquerade bar is present" time="0.001">
2530
+ </testcase>
2531
+ <testcase classname="trayUtils getTrayHeight only checks for the masquerade bar once" name="trayUtils getTrayHeight only checks for the masquerade bar once" time="0.002">
2532
+ </testcase>
2533
+ </testsuite>
2534
+ <testsuite name="useDataUrl()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:35" time="0.262" tests="5">
2535
+ <testcase classname="useDataUrl() uses correct initial state" name="useDataUrl() uses correct initial state" time="0.005">
2536
+ </testcase>
2537
+ <testcase classname="useDataUrl() after fetching a resource sets the data URL" name="useDataUrl() after fetching a resource sets the data URL" time="0.008">
2538
+ </testcase>
2539
+ <testcase classname="useDataUrl() after fetching a resource sets &quot;loading&quot; to false after loading completes" name="useDataUrl() after fetching a resource sets &quot;loading&quot; to false after loading completes" time="0.01">
2540
+ </testcase>
2541
+ <testcase classname="useDataUrl() when an error occurs generating the data URL sets the error" name="useDataUrl() when an error occurs generating the data URL sets the error" time="0.004">
2542
+ </testcase>
2543
+ <testcase classname="useDataUrl() when an error occurs generating the data URL sets loading to &quot;false" name="useDataUrl() when an error occurs generating the data URL sets loading to &quot;false" time="0.003">
2544
+ </testcase>
2545
+ </testsuite>
2546
+ <testsuite name="buildShape()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:36" time="0.568" tests="32">
2547
+ <testcase classname="buildShape() when shape is square builds the x-small &lt;rect /&gt;" name="buildShape() when shape is square builds the x-small &lt;rect /&gt;" time="0.002">
2548
+ </testcase>
2549
+ <testcase classname="buildShape() when shape is square builds the small &lt;rect /&gt;" name="buildShape() when shape is square builds the small &lt;rect /&gt;" time="0.001">
2550
+ </testcase>
2551
+ <testcase classname="buildShape() when shape is square builds the medium &lt;rect /&gt;" name="buildShape() when shape is square builds the medium &lt;rect /&gt;" time="0.001">
2552
+ </testcase>
2553
+ <testcase classname="buildShape() when shape is square builds the large &lt;rect /&gt;" name="buildShape() when shape is square builds the large &lt;rect /&gt;" time="0">
2554
+ </testcase>
2555
+ <testcase classname="buildShape() when shape is circle builds the x-small &lt;circle /&gt;" name="buildShape() when shape is circle builds the x-small &lt;circle /&gt;" time="0">
2556
+ </testcase>
2557
+ <testcase classname="buildShape() when shape is circle builds the small &lt;circle /&gt;" name="buildShape() when shape is circle builds the small &lt;circle /&gt;" time="0.001">
2558
+ </testcase>
2559
+ <testcase classname="buildShape() when shape is circle builds the medium &lt;circle /&gt;" name="buildShape() when shape is circle builds the medium &lt;circle /&gt;" time="0.001">
2560
+ </testcase>
2561
+ <testcase classname="buildShape() when shape is circle builds the large &lt;circle /&gt;" name="buildShape() when shape is circle builds the large &lt;circle /&gt;" time="0">
2562
+ </testcase>
2563
+ <testcase classname="buildShape() when shape is triangle builds the x-small &lt;path /&gt;" name="buildShape() when shape is triangle builds the x-small &lt;path /&gt;" time="0">
2564
+ </testcase>
2565
+ <testcase classname="buildShape() when shape is triangle builds the small &lt;path /&gt;" name="buildShape() when shape is triangle builds the small &lt;path /&gt;" time="0.001">
2566
+ </testcase>
2567
+ <testcase classname="buildShape() when shape is triangle builds the medium &lt;path /&gt;" name="buildShape() when shape is triangle builds the medium &lt;path /&gt;" time="0">
2568
+ </testcase>
2569
+ <testcase classname="buildShape() when shape is triangle builds the large &lt;path /&gt;" name="buildShape() when shape is triangle builds the large &lt;path /&gt;" time="0.001">
2570
+ </testcase>
2571
+ <testcase classname="buildShape() when shape is diamond builds the x-small &lt;path /&gt;" name="buildShape() when shape is diamond builds the x-small &lt;path /&gt;" time="0.001">
2572
+ </testcase>
2573
+ <testcase classname="buildShape() when shape is diamond builds the small &lt;path /&gt;" name="buildShape() when shape is diamond builds the small &lt;path /&gt;" time="0">
2574
+ </testcase>
2575
+ <testcase classname="buildShape() when shape is diamond builds the medium &lt;path /&gt;" name="buildShape() when shape is diamond builds the medium &lt;path /&gt;" time="0.001">
2576
+ </testcase>
2577
+ <testcase classname="buildShape() when shape is diamond builds the large &lt;path /&gt;" name="buildShape() when shape is diamond builds the large &lt;path /&gt;" time="0">
2578
+ </testcase>
2579
+ <testcase classname="buildShape() when shape is pentagon builds the x-small &lt;path /&gt;" name="buildShape() when shape is pentagon builds the x-small &lt;path /&gt;" time="0">
2580
+ </testcase>
2581
+ <testcase classname="buildShape() when shape is pentagon builds the small &lt;path /&gt;" name="buildShape() when shape is pentagon builds the small &lt;path /&gt;" time="0.001">
2582
+ </testcase>
2583
+ <testcase classname="buildShape() when shape is pentagon builds the medium &lt;path /&gt;" name="buildShape() when shape is pentagon builds the medium &lt;path /&gt;" time="0.001">
2584
+ </testcase>
2585
+ <testcase classname="buildShape() when shape is pentagon builds the large &lt;path /&gt;" name="buildShape() when shape is pentagon builds the large &lt;path /&gt;" time="0">
2586
+ </testcase>
2587
+ <testcase classname="buildShape() when shape is hexagon builds the x-small &lt;path /&gt;" name="buildShape() when shape is hexagon builds the x-small &lt;path /&gt;" time="0.001">
2588
+ </testcase>
2589
+ <testcase classname="buildShape() when shape is hexagon builds the small &lt;path /&gt;" name="buildShape() when shape is hexagon builds the small &lt;path /&gt;" time="0">
2590
+ </testcase>
2591
+ <testcase classname="buildShape() when shape is hexagon builds the medium &lt;path /&gt;" name="buildShape() when shape is hexagon builds the medium &lt;path /&gt;" time="0.01">
2592
+ </testcase>
2593
+ <testcase classname="buildShape() when shape is hexagon builds the large &lt;path /&gt;" name="buildShape() when shape is hexagon builds the large &lt;path /&gt;" time="0.001">
2594
+ </testcase>
2595
+ <testcase classname="buildShape() when shape is octagon builds the x-small &lt;path /&gt;" name="buildShape() when shape is octagon builds the x-small &lt;path /&gt;" time="0">
2596
+ </testcase>
2597
+ <testcase classname="buildShape() when shape is octagon builds the small &lt;path /&gt;" name="buildShape() when shape is octagon builds the small &lt;path /&gt;" time="0.001">
2598
+ </testcase>
2599
+ <testcase classname="buildShape() when shape is octagon builds the medium &lt;path /&gt;" name="buildShape() when shape is octagon builds the medium &lt;path /&gt;" time="0">
2600
+ </testcase>
2601
+ <testcase classname="buildShape() when shape is octagon builds the large &lt;path /&gt;" name="buildShape() when shape is octagon builds the large &lt;path /&gt;" time="0.001">
2602
+ </testcase>
2603
+ <testcase classname="buildShape() when shape is star builds the x-small &lt;path /&gt;" name="buildShape() when shape is star builds the x-small &lt;path /&gt;" time="0">
2604
+ </testcase>
2605
+ <testcase classname="buildShape() when shape is star builds the small &lt;path /&gt;" name="buildShape() when shape is star builds the small &lt;path /&gt;" time="0">
2606
+ </testcase>
2607
+ <testcase classname="buildShape() when shape is star builds the medium &lt;path /&gt;" name="buildShape() when shape is star builds the medium &lt;path /&gt;" time="0.001">
2608
+ </testcase>
2609
+ <testcase classname="buildShape() when shape is star builds the large &lt;path /&gt;" name="buildShape() when shape is star builds the large &lt;path /&gt;" time="0">
2610
+ </testcase>
2611
+ </testsuite>
2612
+ <testsuite name="fetchImages()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:36" time="1.476" tests="4">
2613
+ <testcase classname="fetchImages() sends the category" name="fetchImages() sends the category" time="0.004">
2614
+ </testcase>
2615
+ <testcase classname="fetchFilesForFolder() includes the &quot;uncategorized&quot; category in the request" name="fetchFilesForFolder() includes the &quot;uncategorized&quot; category in the request" time="0.002">
2616
+ </testcase>
2617
+ <testcase classname="fetchMedia fetches media documents" name="fetchMedia fetches media documents" time="0.007">
2618
+ </testcase>
2619
+ <testcase classname="saveClosedCaptions() with a captions file that is too large Notifies the user of a file size issue" name="saveClosedCaptions() with a captions file that is too large Notifies the user of a file size issue" time="0.098">
2620
+ </testcase>
2621
+ </testsuite>
2622
+ <testsuite name="contentRendering" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:38" time="0.797" tests="24">
2623
+ <testcase classname="contentRendering renderLink uses link data to build html" name="contentRendering renderLink uses link data to build html" time="0.004">
2624
+ </testcase>
2625
+ <testcase classname="contentRendering renderLink can use url if no href" name="contentRendering renderLink can use url if no href" time="0.001">
2626
+ </testcase>
2627
+ <testcase classname="contentRendering renderLink defaults title to &apos;Link&apos;" name="contentRendering renderLink defaults title to &apos;Link&apos;" time="0.001">
2628
+ </testcase>
2629
+ <testcase classname="contentRendering renderLink defaults contents to title" name="contentRendering renderLink defaults contents to title" time="0">
2630
+ </testcase>
2631
+ <testcase classname="contentRendering renderLink defaults contents to &apos;Link&apos; if no title either" name="contentRendering renderLink defaults contents to &apos;Link&apos; if no title either" time="0">
2632
+ </testcase>
2633
+ <testcase classname="contentRendering renderLink renders the link with all attributes" name="contentRendering renderLink renders the link with all attributes" time="0.001">
2634
+ </testcase>
2635
+ <testcase classname="contentRendering renderLink does not swizzle the url if not our host" name="contentRendering renderLink does not swizzle the url if not our host" time="0">
2636
+ </testcase>
2637
+ <testcase classname="contentRendering renderLink removes /preview when rendering a link" name="contentRendering renderLink removes /preview when rendering a link" time="0">
2638
+ </testcase>
2639
+ <testcase classname="contentRendering renderImage builds image html from image data" name="contentRendering renderImage builds image html from image data" time="0.001">
2640
+ </testcase>
2641
+ <testcase classname="contentRendering renderImage uses url if no href" name="contentRendering renderImage uses url if no href" time="0">
2642
+ </testcase>
2643
+ <testcase classname="contentRendering renderImage defaults alt text to image display_name" name="contentRendering renderImage defaults alt text to image display_name" time="0.001">
2644
+ </testcase>
2645
+ <testcase classname="contentRendering renderImage includes optional other attributes" name="contentRendering renderImage includes optional other attributes" time="0">
2646
+ </testcase>
2647
+ <testcase classname="contentRendering renderImage builds linked image html from linked image data" name="contentRendering renderImage builds linked image html from linked image data" time="0">
2648
+ </testcase>
2649
+ <testcase classname="contentRendering renderImage renders a linked image if object has link property" name="contentRendering renderImage renders a linked image if object has link property" time="0.001">
2650
+ </testcase>
2651
+ <testcase classname="contentRendering renderVideo builds html from tray video data" name="contentRendering renderVideo builds html from tray video data" time="0.001">
2652
+ </testcase>
2653
+ <testcase classname="contentRendering renderVideo builds html from uploaded video data" name="contentRendering renderVideo builds html from uploaded video data" time="0">
2654
+ </testcase>
2655
+ <testcase classname="contentRendering renderVideo builds html from canvas file data" name="contentRendering renderVideo builds html from canvas file data" time="0.001">
2656
+ </testcase>
2657
+ <testcase classname="contentRendering renderAudio builds the html from tray audio data" name="contentRendering renderAudio builds the html from tray audio data" time="0">
2658
+ </testcase>
2659
+ <testcase classname="contentRendering renderAudio builds the html from uploaded audio data" name="contentRendering renderAudio builds the html from uploaded audio data" time="0.001">
2660
+ </testcase>
2661
+ <testcase classname="contentRendering renderAudio builds html from canvas file data" name="contentRendering renderAudio builds html from canvas file data" time="0.001">
2662
+ </testcase>
2663
+ <testcase classname="contentRendering getMediaId() when all IDs are present returns media-id" name="contentRendering getMediaId() when all IDs are present returns media-id" time="0">
2664
+ </testcase>
2665
+ <testcase classname="contentRendering getMediaId() when media_entry_id, id, and file_id are present returns media_entry_id" name="contentRendering getMediaId() when media_entry_id, id, and file_id are present returns media_entry_id" time="0.001">
2666
+ </testcase>
2667
+ <testcase classname="contentRendering getMediaId() when id and file_id are present returns id" name="contentRendering getMediaId() when id and file_id are present returns id" time="0">
2668
+ </testcase>
2669
+ <testcase classname="contentRendering getMediaId() when file_id is present returns file_id" name="contentRendering getMediaId() when file_id is present returns file_id" time="0">
2670
+ </testcase>
2671
+ </testsuite>
2672
+ <testsuite name="RceFileBrowser" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:39" time="1.106" tests="2">
2673
+ <testcase classname="RceFileBrowser invokes onFileSelect callback with appropriate data when a file is selected" name="RceFileBrowser invokes onFileSelect callback with appropriate data when a file is selected" time="0.015">
2674
+ </testcase>
2675
+ <testcase classname="RceFileBrowser plumbs the media_id when a video file is selected" name="RceFileBrowser plumbs the media_id when a video file is selected" time="0.003">
2676
+ </testcase>
2677
+ </testsuite>
2678
+ <testsuite name="instructure_media_embed clickCallback" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:40" time="1.089" tests="3">
2679
+ <testcase classname="instructure_media_embed clickCallback adds the canvas-rce-embed-container element when opened" name="instructure_media_embed clickCallback adds the canvas-rce-embed-container element when opened" time="0.188">
2680
+ </testcase>
2681
+ <testcase classname="instructure_media_embed clickCallback does not add the canvas-rce-embed-container element when opened if it exists already" name="instructure_media_embed clickCallback does not add the canvas-rce-embed-container element when opened if it exists already" time="0.02">
2682
+ </testcase>
2683
+ <testcase classname="instructure_media_embed clickCallback opens the Embed modal when called" name="instructure_media_embed clickCallback opens the Embed modal when called" time="0.173">
2684
+ </testcase>
2685
+ </testsuite>
2686
+ <testsuite name="buildText()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:41" time="0.518" tests="32">
2687
+ <testcase classname="buildText() builds &lt;text /&gt; if text is valid" name="buildText() builds &lt;text /&gt; if text is valid" time="0.004">
2688
+ </testcase>
2689
+ <testcase classname="buildText() builds &lt;text /&gt; if text is must be multiline" name="buildText() builds &lt;text /&gt; if text is must be multiline" time="0.005">
2690
+ </testcase>
2691
+ <testcase classname="buildText() does not build &lt;text /&gt; if text is empty" name="buildText() does not build &lt;text /&gt; if text is empty" time="0">
2692
+ </testcase>
2693
+ <testcase classname="buildText() does not build &lt;text /&gt; if text has spaces" name="buildText() does not build &lt;text /&gt; if text has spaces" time="0.001">
2694
+ </testcase>
2695
+ <testcase classname="buildText() builds &lt;text /&gt; when text size is small" name="buildText() builds &lt;text /&gt; when text size is small" time="0.006">
2696
+ </testcase>
2697
+ <testcase classname="buildText() builds &lt;text /&gt; when text size is medium" name="buildText() builds &lt;text /&gt; when text size is medium" time="0.005">
2698
+ </testcase>
2699
+ <testcase classname="buildText() builds &lt;text /&gt; when text size is large" name="buildText() builds &lt;text /&gt; when text size is large" time="0.002">
2700
+ </testcase>
2701
+ <testcase classname="buildText() builds &lt;text /&gt; when text size is x-large" name="buildText() builds &lt;text /&gt; when text size is x-large" time="0.002">
2702
+ </testcase>
2703
+ <testcase classname="buildText() builds &lt;text /&gt; when text color is null" name="buildText() builds &lt;text /&gt; when text color is null" time="0.003">
2704
+ </testcase>
2705
+ <testcase classname="buildText() builds &lt;text /&gt; when text color is valid" name="buildText() builds &lt;text /&gt; when text color is valid" time="0.002">
2706
+ </testcase>
2707
+ <testcase classname="buildText() builds &lt;text /&gt; when text background color is null" name="buildText() builds &lt;text /&gt; when text background color is null" time="0.001">
2708
+ </testcase>
2709
+ <testcase classname="buildText() builds &lt;text /&gt; when text background color is valid" name="buildText() builds &lt;text /&gt; when text background color is valid" time="0.002">
2710
+ </testcase>
2711
+ <testcase classname="buildText() builds &lt;text /&gt; when text position is middle and it is a single line text" name="buildText() builds &lt;text /&gt; when text position is middle and it is a single line text" time="0.002">
2712
+ </testcase>
2713
+ <testcase classname="buildText() builds &lt;text /&gt; when text position is middle and it is a multi line text" name="buildText() builds &lt;text /&gt; when text position is middle and it is a multi line text" time="0.002">
2714
+ </testcase>
2715
+ <testcase classname="buildText() builds &lt;text /&gt; when text position is bottom-third and it is a single line text" name="buildText() builds &lt;text /&gt; when text position is bottom-third and it is a single line text" time="0.001">
2716
+ </testcase>
2717
+ <testcase classname="buildText() builds &lt;text /&gt; when text position is bottom-third and it is a multi line text" name="buildText() builds &lt;text /&gt; when text position is bottom-third and it is a multi line text" time="0.003">
2718
+ </testcase>
2719
+ <testcase classname="buildText() builds &lt;text /&gt; when text position is below and it is a single line text" name="buildText() builds &lt;text /&gt; when text position is below and it is a single line text" time="0.001">
2720
+ </testcase>
2721
+ <testcase classname="buildText() builds &lt;text /&gt; when text position is below and it is a multi line text" name="buildText() builds &lt;text /&gt; when text position is below and it is a multi line text" time="0.012">
2722
+ </testcase>
2723
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; if text is valid" name="buildTextBackground() builds &lt;path /&gt; if text is valid" time="0.002">
2724
+ </testcase>
2725
+ <testcase classname="buildTextBackground() does not build &lt;path /&gt; if text is empty" name="buildTextBackground() does not build &lt;path /&gt; if text is empty" time="0">
2726
+ </testcase>
2727
+ <testcase classname="buildTextBackground() does not build &lt;path /&gt; if text has spaces" name="buildTextBackground() does not build &lt;path /&gt; if text has spaces" time="0">
2728
+ </testcase>
2729
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; when text position is middle and it is a single line text" name="buildTextBackground() builds &lt;path /&gt; when text position is middle and it is a single line text" time="0">
2730
+ </testcase>
2731
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; when text position is middle and it is a multi line text" name="buildTextBackground() builds &lt;path /&gt; when text position is middle and it is a multi line text" time="0.001">
2732
+ </testcase>
2733
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; when text position is bottom-third and it is a single line text" name="buildTextBackground() builds &lt;path /&gt; when text position is bottom-third and it is a single line text" time="0">
2734
+ </testcase>
2735
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; when text position is bottom-third and it is a multi line text" name="buildTextBackground() builds &lt;path /&gt; when text position is bottom-third and it is a multi line text" time="0.001">
2736
+ </testcase>
2737
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; when text position is below and it is a single line text" name="buildTextBackground() builds &lt;path /&gt; when text position is below and it is a single line text" time="0.001">
2738
+ </testcase>
2739
+ <testcase classname="buildTextBackground() builds &lt;path /&gt; when text position is below and it is a multi line text" name="buildTextBackground() builds &lt;path /&gt; when text position is below and it is a multi line text" time="0.001">
2740
+ </testcase>
2741
+ <testcase classname="getContainerWidth() returns base size if is greater" name="getContainerWidth() returns base size if is greater" time="0">
2742
+ </testcase>
2743
+ <testcase classname="getContainerWidth() returns text width if is greater" name="getContainerWidth() returns text width if is greater" time="0.001">
2744
+ </testcase>
2745
+ <testcase classname="getContainerHeight() returns base size for default settings of text empty and textPosition below" name="getContainerHeight() returns base size for default settings of text empty and textPosition below" time="0">
2746
+ </testcase>
2747
+ <testcase classname="getContainerHeight() returns text background height calculation for non-empty string" name="getContainerHeight() returns text background height calculation for non-empty string" time="0">
2748
+ </testcase>
2749
+ <testcase classname="getContainerHeight() returns base size if text field only contains white space" name="getContainerHeight() returns base size if text field only contains white space" time="0">
2750
+ </testcase>
2751
+ </testsuite>
2752
+ <testsuite name="validateURL" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:42" time="0.317" tests="12">
2753
+ <testcase classname="validateURL accepts ftp URLs" name="validateURL accepts ftp URLs" time="0.001">
2754
+ </testcase>
2755
+ <testcase classname="validateURL accepts http URLs" name="validateURL accepts http URLs" time="0">
2756
+ </testcase>
2757
+ <testcase classname="validateURL accepts https URLs" name="validateURL accepts https URLs" time="0">
2758
+ </testcase>
2759
+ <testcase classname="validateURL accepts mailto URLs" name="validateURL accepts mailto URLs" time="0.001">
2760
+ </testcase>
2761
+ <testcase classname="validateURL accepts skype URLs" name="validateURL accepts skype URLs" time="0.001">
2762
+ </testcase>
2763
+ <testcase classname="validateURL accepts tel URLs" name="validateURL accepts tel URLs" time="0">
2764
+ </testcase>
2765
+ <testcase classname="validateURL accepts no protocol" name="validateURL accepts no protocol" time="0.001">
2766
+ </testcase>
2767
+ <testcase classname="validateURL accepts path only" name="validateURL accepts path only" time="0">
2768
+ </testcase>
2769
+ <testcase classname="validateURL rejects an invalid protol" name="validateURL rejects an invalid protol" time="0.016">
2770
+ </testcase>
2771
+ <testcase classname="validateURL rejects : only protol" name="validateURL rejects : only protol" time="0.001">
2772
+ </testcase>
2773
+ <testcase classname="validateURL rejects ftp and http URLs with no slashed" name="validateURL rejects ftp and http URLs with no slashed" time="0.002">
2774
+ </testcase>
2775
+ <testcase classname="validateURL reserves judgement on partial URLs" name="validateURL reserves judgement on partial URLs" time="0.002">
2776
+ </testcase>
2777
+ </testsuite>
2778
+ <testsuite name="RestoreAutoSaveModal" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:42" time="0.703" tests="4">
2779
+ <testcase classname="RestoreAutoSaveModal renders all its content" name="RestoreAutoSaveModal renders all its content" time="0.076">
2780
+ </testcase>
2781
+ <testcase classname="RestoreAutoSaveModal responds to clicking &quot;yes&quot;" name="RestoreAutoSaveModal responds to clicking &quot;yes&quot;" time="0.03">
2782
+ </testcase>
2783
+ <testcase classname="RestoreAutoSaveModal responds to clicking &quot;no&quot;" name="RestoreAutoSaveModal responds to clicking &quot;no&quot;" time="0.029">
2784
+ </testcase>
2785
+ <testcase classname="RestoreAutoSaveModal displays the auto saved content preview" name="RestoreAutoSaveModal displays the auto saved content preview" time="0.047">
2786
+ </testcase>
2787
+ </testsuite>
2788
+ <testsuite name="RceHtmlEditor" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:43" time="0.837" tests="3">
2789
+ <testcase classname="RceHtmlEditor renders" name="RceHtmlEditor renders" time="0.063">
2790
+ </testcase>
2791
+ <testcase classname="RceHtmlEditor beautifies the passed-in code" name="RceHtmlEditor beautifies the passed-in code" time="0.048">
2792
+ </testcase>
2793
+ <testcase classname="RceHtmlEditor does not add non-semantic whitespace when beautifying" name="RceHtmlEditor does not add non-semantic whitespace when beautifying" time="0.022">
2794
+ </testcase>
2795
+ </testsuite>
2796
+ <testsuite name="linkUtils" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:44" time="0.828" tests="10">
2797
+ <testcase classname="linkUtils IconBlank renders a blank icon" name="linkUtils IconBlank renders a blank icon" time="0.005">
2798
+ </testcase>
2799
+ <testcase classname="linkUtils getIcon returns assignment icon when course link type is an assignment" name="linkUtils getIcon returns assignment icon when course link type is an assignment" time="0.001">
2800
+ </testcase>
2801
+ <testcase classname="linkUtils getIcon returns discussion icon when course link type is an discussion" name="linkUtils getIcon returns discussion icon when course link type is an discussion" time="0">
2802
+ </testcase>
2803
+ <testcase classname="linkUtils getIcon returns module icon when course link type is an module" name="linkUtils getIcon returns module icon when course link type is an module" time="0">
2804
+ </testcase>
2805
+ <testcase classname="linkUtils getIcon returns quiz icon when course link type is an quiz" name="linkUtils getIcon returns quiz icon when course link type is an quiz" time="0">
2806
+ </testcase>
2807
+ <testcase classname="linkUtils getIcon returns new quiz icon when course link type is a new quiz" name="linkUtils getIcon returns new quiz icon when course link type is a new quiz" time="0">
2808
+ </testcase>
2809
+ <testcase classname="linkUtils getIcon returns announcement icon when course link type is an announcement" name="linkUtils getIcon returns announcement icon when course link type is an announcement" time="0.001">
2810
+ </testcase>
2811
+ <testcase classname="linkUtils getIcon returns document icon when course link type is an wiki page" name="linkUtils getIcon returns document icon when course link type is an wiki page" time="0">
2812
+ </testcase>
2813
+ <testcase classname="linkUtils getIcon returns blank icon when course link type is navigation" name="linkUtils getIcon returns blank icon when course link type is navigation" time="0.001">
2814
+ </testcase>
2815
+ <testcase classname="linkUtils getIcon returns document icon by default" name="linkUtils getIcon returns document icon by default" time="0">
2816
+ </testcase>
2817
+ </testsuite>
2818
+ <testsuite name="MathIcon" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:44" time="0.76" tests="2">
2819
+ <testcase classname="MathIcon renders an SVGIcon when given a valid command" name="MathIcon renders an SVGIcon when given a valid command" time="0.008">
2820
+ </testcase>
2821
+ <testcase classname="MathIcon renders a warning icon when given an invalid command" name="MathIcon renders a warning icon when given an invalid command" time="0.004">
2822
+ </testcase>
2823
+ </testsuite>
2824
+ <testsuite name="RCE StatusBar" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:45" time="0.57" tests="1">
2825
+ <testcase classname="RCE StatusBar simulates drag using the keyboard" name="RCE StatusBar simulates drag using the keyboard" time="0.014">
2826
+ </testcase>
2827
+ </testsuite>
2828
+ <testsuite name="fileTypeUtils" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:46" time="0.799" tests="11">
2829
+ <testcase classname="fileTypeUtils isImage detects audio types" name="fileTypeUtils isImage detects audio types" time="0.004">
2830
+ </testcase>
2831
+ <testcase classname="fileTypeUtils isAudioOrVideo detects audio types" name="fileTypeUtils isAudioOrVideo detects audio types" time="0">
2832
+ </testcase>
2833
+ <testcase classname="fileTypeUtils isAudioOrVideo detects video types" name="fileTypeUtils isAudioOrVideo detects video types" time="0">
2834
+ </testcase>
2835
+ <testcase classname="fileTypeUtils isVideo detects video types" name="fileTypeUtils isVideo detects video types" time="0.001">
2836
+ </testcase>
2837
+ <testcase classname="fileTypeUtils isAudio detects audio types" name="fileTypeUtils isAudio detects audio types" time="0">
2838
+ </testcase>
2839
+ <testcase classname="fileTypeUtils isText detects text types" name="fileTypeUtils isText detects text types" time="0">
2840
+ </testcase>
2841
+ <testcase classname="fileTypeUtils mediaPlayerURLFromFile creates url from input file&apos;s embedded_iframe_url" name="fileTypeUtils mediaPlayerURLFromFile creates url from input file&apos;s embedded_iframe_url" time="0.001">
2842
+ </testcase>
2843
+ <testcase classname="fileTypeUtils mediaPlayerURLFromFile creates url from file&apos;s media_entry_id" name="fileTypeUtils mediaPlayerURLFromFile creates url from file&apos;s media_entry_id" time="0">
2844
+ </testcase>
2845
+ <testcase classname="fileTypeUtils mediaPlayerURLFromFile creates url from file&apos;s url" name="fileTypeUtils mediaPlayerURLFromFile creates url from file&apos;s url" time="0.001">
2846
+ </testcase>
2847
+ <testcase classname="fileTypeUtils mediaPlayerURLFromFile returns undefined if the file isn&apos;t media" name="fileTypeUtils mediaPlayerURLFromFile returns undefined if the file isn&apos;t media" time="0">
2848
+ </testcase>
2849
+ <testcase classname="fileTypeUtils mediaPlayerURLFromFile includes the file verifier if it&apos;s part of the file&apos;s url" name="fileTypeUtils mediaPlayerURLFromFile includes the file verifier if it&apos;s part of the file&apos;s url" time="0.001">
2850
+ </testcase>
2851
+ </testsuite>
2852
+ <testsuite name="Editor/Sidebar bridge" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:47" time="0.222" tests="29">
2853
+ <testcase classname="Editor/Sidebar bridge focusEditor sets the active editor" name="Editor/Sidebar bridge focusEditor sets the active editor" time="0">
2854
+ </testcase>
2855
+ <testcase classname="Editor/Sidebar bridge focusEditor calls hideTrays if focus is changing" name="Editor/Sidebar bridge focusEditor calls hideTrays if focus is changing" time="0">
2856
+ </testcase>
2857
+ <testcase classname="Editor/Sidebar bridge focusEditor does not call hideTrays if focus is not changing" name="Editor/Sidebar bridge focusEditor does not call hideTrays if focus is not changing" time="0.001">
2858
+ </testcase>
2859
+ <testcase classname="Editor/Sidebar bridge blurEditor sets active editor to null if bluring the active editor" name="Editor/Sidebar bridge blurEditor sets active editor to null if bluring the active editor" time="0">
2860
+ </testcase>
2861
+ <testcase classname="Editor/Sidebar bridge blurEditor does not set the active editor to null if not bluring the active editor" name="Editor/Sidebar bridge blurEditor does not set the active editor to null if not bluring the active editor" time="0.001">
2862
+ </testcase>
2863
+ <testcase classname="Editor/Sidebar bridge blurEditor calls hideTrays if bluring the active editor" name="Editor/Sidebar bridge blurEditor calls hideTrays if bluring the active editor" time="0">
2864
+ </testcase>
2865
+ <testcase classname="Editor/Sidebar bridge blurEditor does not set call hideTrays if not bluring the active editor" name="Editor/Sidebar bridge blurEditor does not set call hideTrays if not bluring the active editor" time="0.001">
2866
+ </testcase>
2867
+ <testcase classname="Editor/Sidebar bridge hideTrays calls hideTray on each of the registered controllers" name="Editor/Sidebar bridge hideTrays calls hideTray on each of the registered controllers" time="0">
2868
+ </testcase>
2869
+ <testcase classname="Editor/Sidebar bridge detachEditor given active editor clears the active editor" name="Editor/Sidebar bridge detachEditor given active editor clears the active editor" time="0.001">
2870
+ </testcase>
2871
+ <testcase classname="Editor/Sidebar bridge detachEditor given some other editor leaves the active editor alone" name="Editor/Sidebar bridge detachEditor given some other editor leaves the active editor alone" time="0">
2872
+ </testcase>
2873
+ <testcase classname="Editor/Sidebar bridge renderEditor sets the active editor" name="Editor/Sidebar bridge renderEditor sets the active editor" time="0.001">
2874
+ </testcase>
2875
+ <testcase classname="Editor/Sidebar bridge renderEditor accepts the first editor rendered when many rendered in a row" name="Editor/Sidebar bridge renderEditor accepts the first editor rendered when many rendered in a row" time="0">
2876
+ </testcase>
2877
+ <testcase classname="Editor/Sidebar bridge content insertion insertLink insertLink with an active editor forwards the link to createLink" name="Editor/Sidebar bridge content insertion insertLink insertLink with an active editor forwards the link to createLink" time="0.001">
2878
+ </testcase>
2879
+ <testcase classname="Editor/Sidebar bridge content insertion insertLink insertLink with no active editor is a no-op, but warns" name="Editor/Sidebar bridge content insertion insertLink insertLink with no active editor is a no-op, but warns" time="0.007">
2880
+ </testcase>
2881
+ <testcase classname="Editor/Sidebar bridge content insertion insertLink adds selectionDetails to links" name="Editor/Sidebar bridge content insertion insertLink adds selectionDetails to links" time="0.001">
2882
+ </testcase>
2883
+ <testcase classname="Editor/Sidebar bridge content insertion insertLink calls hideTray after inserting a link" name="Editor/Sidebar bridge content insertion insertLink calls hideTray after inserting a link" time="0">
2884
+ </testcase>
2885
+ <testcase classname="Editor/Sidebar bridge content insertion insertLink inserts the placeholder when asked" name="Editor/Sidebar bridge content insertion insertLink inserts the placeholder when asked" time="0.001">
2886
+ </testcase>
2887
+ <testcase classname="Editor/Sidebar bridge content insertion insertLink does not insert the placeholder if the user has selected text" name="Editor/Sidebar bridge content insertion insertLink does not insert the placeholder if the user has selected text" time="0.001">
2888
+ </testcase>
2889
+ <testcase classname="Editor/Sidebar bridge content insertion insertFileLink inserts a link" name="Editor/Sidebar bridge content insertion insertFileLink inserts a link" time="0.001">
2890
+ </testcase>
2891
+ <testcase classname="Editor/Sidebar bridge content insertion insertFileLink embeds an image if it is browser supported" name="Editor/Sidebar bridge content insertion insertFileLink embeds an image if it is browser supported" time="0.001">
2892
+ </testcase>
2893
+ <testcase classname="Editor/Sidebar bridge content insertion insertFileLink inserts link if the file is not browser supported" name="Editor/Sidebar bridge content insertion insertFileLink inserts link if the file is not browser supported" time="0.001">
2894
+ </testcase>
2895
+ <testcase classname="Editor/Sidebar bridge content insertion insertFileLink embeds media" name="Editor/Sidebar bridge content insertion insertFileLink embeds media" time="0.001">
2896
+ </testcase>
2897
+ <testcase classname="Editor/Sidebar bridge content insertion embedMedia inserts video when media is video" name="Editor/Sidebar bridge content insertion embedMedia inserts video when media is video" time="0.001">
2898
+ </testcase>
2899
+ <testcase classname="Editor/Sidebar bridge content insertion embedMedia inserts audio when media is audio" name="Editor/Sidebar bridge content insertion embedMedia inserts audio when media is audio" time="0">
2900
+ </testcase>
2901
+ <testcase classname="Editor/Sidebar bridge content insertion insertEmbedCode inserts embed code" name="Editor/Sidebar bridge content insertion insertEmbedCode inserts embed code" time="0.001">
2902
+ </testcase>
2903
+ <testcase classname="Editor/Sidebar bridge content insertion upload support removes the placeholder" name="Editor/Sidebar bridge content insertion upload support removes the placeholder" time="0">
2904
+ </testcase>
2905
+ <testcase classname="Editor/Sidebar bridge content insertion upload support shows an error message" name="Editor/Sidebar bridge content insertion upload support shows an error message" time="0.001">
2906
+ </testcase>
2907
+ <testcase classname="Editor/Sidebar bridge content insertion get uploadMediaTranslations requires mediaTranslations if it needs to" name="Editor/Sidebar bridge content insertion get uploadMediaTranslations requires mediaTranslations if it needs to" time="0.003">
2908
+ </testcase>
2909
+ <testcase classname="Editor/Sidebar bridge content insertion get uploadMediaTranslations uses the cached value if available" name="Editor/Sidebar bridge content insertion get uploadMediaTranslations uses the cached value if available" time="0.001">
2910
+ </testcase>
2911
+ </testsuite>
2912
+ <testsuite name="RCE &gt; Common &gt; Incremental Loading" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:47" time="0.453" tests="12">
2913
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading initial records query is executed upon mounting" name="RCE &gt; Common &gt; Incremental Loading initial records query is executed upon mounting" time="0.005">
2914
+ </testcase>
2915
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading initial records query is executed when sortBy changes" name="RCE &gt; Common &gt; Incremental Loading initial records query is executed when sortBy changes" time="0.003">
2916
+ </testcase>
2917
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading initial records query is executed when contextType changes" name="RCE &gt; Common &gt; Incremental Loading initial records query is executed when contextType changes" time="0.003">
2918
+ </testcase>
2919
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading initial records query is executed when searchString changes" name="RCE &gt; Common &gt; Incremental Loading initial records query is executed when searchString changes" time="0.003">
2920
+ </testcase>
2921
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading initial records query is not executed if nothing changes" name="RCE &gt; Common &gt; Incremental Loading initial records query is not executed if nothing changes" time="0.003">
2922
+ </testcase>
2923
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading Loading Status has no status during the initial load" name="RCE &gt; Common &gt; Incremental Loading Loading Status has no status during the initial load" time="0.003">
2924
+ </testcase>
2925
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading Loading Status after the initial load resolves displays the count of records loaded" name="RCE &gt; Common &gt; Incremental Loading Loading Status after the initial load resolves displays the count of records loaded" time="0.025">
2926
+ </testcase>
2927
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading Loading Status after a subsequent load resolves displays the count of only the records just loaded" name="RCE &gt; Common &gt; Incremental Loading Loading Status after a subsequent load resolves displays the count of only the records just loaded" time="0.014">
2928
+ </testcase>
2929
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button is not displayed during the initial load" name="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button is not displayed during the initial load" time="0.002">
2930
+ </testcase>
2931
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button after the initial load resolves is displayed when there are more records to load" name="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button after the initial load resolves is displayed when there are more records to load" time="0.015">
2932
+ </testcase>
2933
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button after the initial load resolves is not displayed when there are no more records to load" name="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button after the initial load resolves is not displayed when there are no more records to load" time="0.009">
2934
+ </testcase>
2935
+ <testcase classname="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button when clicked loads more records" name="RCE &gt; Common &gt; Incremental Loading &quot;Load More&quot; button when clicked loads more records" time="0.011">
2936
+ </testcase>
2937
+ </testsuite>
2938
+ <testsuite name="round" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:47" time="0.205" tests="2">
2939
+ <testcase classname="round rounds to the specified number of decimal places" name="round rounds to the specified number of decimal places" time="0.001">
2940
+ </testcase>
2941
+ <testcase classname="round throws when given a bad arguments" name="round throws when given a bad arguments" time="0.006">
2942
+ </testcase>
2943
+ </testsuite>
2944
+ <testsuite name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:48" time="0.308" tests="85">
2945
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .altText is the alt text of the image when present" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .altText is the alt text of the image when present" time="0.003">
2946
+ </testcase>
2947
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .altText is blank when absent on the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .altText is blank when absent on the image" time="0.001">
2948
+ </testcase>
2949
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedHeight is the numeric height applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedHeight is the numeric height applied to the image" time="0.001">
2950
+ </testcase>
2951
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedHeight is null when no height has been applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedHeight is null when no height has been applied to the image" time="0.001">
2952
+ </testcase>
2953
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedWidth is the numeric width applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedWidth is the numeric width applied to the image" time="0.001">
2954
+ </testcase>
2955
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedWidth is null when no width has been applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedWidth is null when no width has been applied to the image" time="0.001">
2956
+ </testcase>
2957
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;small&quot; when the applied width equals the small image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;small&quot; when the applied width equals the small image preset width" time="0.001">
2958
+ </testcase>
2959
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;medium&quot; when the applied width equals the medium image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;medium&quot; when the applied width equals the medium image preset width" time="0.001">
2960
+ </testcase>
2961
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;large&quot; when the applied width equals the large image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;large&quot; when the applied width equals the large image preset width" time="0.002">
2962
+ </testcase>
2963
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;extra large&quot; when the applied width equals the extra large image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;extra large&quot; when the applied width equals the extra large image preset width" time="0.001">
2964
+ </testcase>
2965
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;custom&quot; when the applied width is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied width is larger than the applied height is &quot;custom&quot; when the applied width is any other numerical value" time="0.001">
2966
+ </testcase>
2967
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;small&quot; when the applied height equals the small image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;small&quot; when the applied height equals the small image preset height" time="0.001">
2968
+ </testcase>
2969
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;medium&quot; when the applied height equals the medium image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;medium&quot; when the applied height equals the medium image preset height" time="0.001">
2970
+ </testcase>
2971
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;large&quot; when the applied height equals the large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;large&quot; when the applied height equals the large image preset height" time="0.001">
2972
+ </testcase>
2973
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;extra large&quot; when the applied height equals the extra large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;extra large&quot; when the applied height equals the extra large image preset height" time="0.001">
2974
+ </testcase>
2975
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;custom&quot; when the applied height is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has an applied width and height when the applied height is larger than the applied width is &quot;custom&quot; when the applied height is any other numerical value" time="0">
2976
+ </testcase>
2977
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;small&quot; when the applied width equals the small image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;small&quot; when the applied width equals the small image preset width" time="0">
2978
+ </testcase>
2979
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;medium&quot; when the applied width equals the medium image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;medium&quot; when the applied width equals the medium image preset width" time="0">
2980
+ </testcase>
2981
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;large&quot; when the applied width equals the large image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;large&quot; when the applied width equals the large image preset width" time="0.002">
2982
+ </testcase>
2983
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;extra large&quot; when the applied width equals the extra large image preset width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;extra large&quot; when the applied width equals the extra large image preset width" time="0.006">
2984
+ </testcase>
2985
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;custom&quot; when the applied width is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the applied width is larger than the natural height is &quot;custom&quot; when the applied width is any other numerical value" time="0.002">
2986
+ </testcase>
2987
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;small&quot; when the natural height equals the small image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;small&quot; when the natural height equals the small image preset height" time="0.001">
2988
+ </testcase>
2989
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;medium&quot; when the natural height equals the medium image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;medium&quot; when the natural height equals the medium image preset height" time="0.001">
2990
+ </testcase>
2991
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;large&quot; when the natural height equals the large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;large&quot; when the natural height equals the large image preset height" time="0">
2992
+ </testcase>
2993
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;extra large&quot; when the natural height equals the extra large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;extra large&quot; when the natural height equals the extra large image preset height" time="0.001">
2994
+ </testcase>
2995
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;custom&quot; when the natural height is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied width when the natural height is larger than the applied width is &quot;custom&quot; when the natural height is any other numerical value" time="0.001">
2996
+ </testcase>
2997
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;small&quot; when the applied height equals the small image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;small&quot; when the applied height equals the small image preset height" time="0.001">
2998
+ </testcase>
2999
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;medium&quot; when the applied height equals the medium image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;medium&quot; when the applied height equals the medium image preset height" time="0">
3000
+ </testcase>
3001
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;large&quot; when the applied height equals the large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;large&quot; when the applied height equals the large image preset height" time="0">
3002
+ </testcase>
3003
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;extra large&quot; when the applied height equals the extra large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;extra large&quot; when the applied height equals the extra large image preset height" time="0.003">
3004
+ </testcase>
3005
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;custom&quot; when the applied height is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the applied height is larger than the natural width is &quot;custom&quot; when the applied height is any other numerical value" time="0">
3006
+ </testcase>
3007
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;small&quot; when the natural height equals the small image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;small&quot; when the natural height equals the small image preset height" time="0">
3008
+ </testcase>
3009
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;medium&quot; when the natural height equals the medium image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;medium&quot; when the natural height equals the medium image preset height" time="0.001">
3010
+ </testcase>
3011
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;large&quot; when the natural height equals the large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;large&quot; when the natural height equals the large image preset height" time="0.002">
3012
+ </testcase>
3013
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;extra large&quot; when the natural height equals the extra large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;extra large&quot; when the natural height equals the extra large image preset height" time="0.001">
3014
+ </testcase>
3015
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;custom&quot; when the natural height is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has only an applied height when the natural width is larger than the applied height is &quot;custom&quot; when the natural height is any other numerical value" time="0">
3016
+ </testcase>
3017
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;small&quot; when the natural height equals the small image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;small&quot; when the natural height equals the small image preset height" time="0">
3018
+ </testcase>
3019
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;medium&quot; when the natural height equals the medium image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;medium&quot; when the natural height equals the medium image preset height" time="0">
3020
+ </testcase>
3021
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;large&quot; when the natural height equals the large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;large&quot; when the natural height equals the large image preset height" time="0.001">
3022
+ </testcase>
3023
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;extra large&quot; when the natural height equals the extra large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;extra large&quot; when the natural height equals the extra large image preset height" time="0.003">
3024
+ </testcase>
3025
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;custom&quot; when the natural height is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural height is larger than the natural width is &quot;custom&quot; when the natural height is any other numerical value" time="0.001">
3026
+ </testcase>
3027
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;small&quot; when the natural height equals the small image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;small&quot; when the natural height equals the small image preset height" time="0">
3028
+ </testcase>
3029
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;medium&quot; when the natural height equals the medium image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;medium&quot; when the natural height equals the medium image preset height" time="0">
3030
+ </testcase>
3031
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;large&quot; when the natural height equals the large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;large&quot; when the natural height equals the large image preset height" time="0.001">
3032
+ </testcase>
3033
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;extra large&quot; when the natural height equals the extra large image preset height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;extra large&quot; when the natural height equals the extra large image preset height" time="0.001">
3034
+ </testcase>
3035
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;custom&quot; when the natural height is any other numerical value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .imageSize when the image has no applied dimensions when the natural width is larger than the natural height is &quot;custom&quot; when the natural height is any other numerical value" time="0.001">
3036
+ </testcase>
3037
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when have some attributes on the image element is true when the image has no alt text" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when have some attributes on the image element is true when the image has no alt text" time="0">
3038
+ </testcase>
3039
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when have some attributes on the image element is false when the image has alt text" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when have some attributes on the image element is false when the image has alt text" time="0.001">
3040
+ </testcase>
3041
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage is blank when absent on the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage is blank when absent on the image" time="0.001">
3042
+ </testcase>
3043
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when role=&quot;presentation&quot; is true" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when role=&quot;presentation&quot; is true" time="0.001">
3044
+ </testcase>
3045
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when role != &quot;presentation&quot; is false" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when role != &quot;presentation&quot; is false" time="0">
3046
+ </testcase>
3047
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when there is no role is false" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .isDecorativeImage when there is no role is false" time="0.002">
3048
+ </testcase>
3049
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage width when applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage width when applied to the image" time="0">
3050
+ </testcase>
3051
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage height when applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage height when applied to the image" time="0.002">
3052
+ </testcase>
3053
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage attribute when percentage width and height applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage attribute when percentage width and height applied to the image" time="0.001">
3054
+ </testcase>
3055
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage attribute when percentage and pixels width/height applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is the percentage attribute when percentage and pixels width/height applied to the image" time="0">
3056
+ </testcase>
3057
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is 100 when no percentage width or height has been applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .appliedPercentage is 100 when no percentage width or height has been applied to the image" time="0">
3058
+ </testcase>
3059
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage width applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage width applied to the image" time="0.001">
3060
+ </testcase>
3061
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage height applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage height applied to the image" time="0.001">
3062
+ </testcase>
3063
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage width and height applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage width and height applied to the image" time="0.001">
3064
+ </testcase>
3065
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage width and pixels height applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is true when percentage width and pixels height applied to the image" time="0.001">
3066
+ </testcase>
3067
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is false when no percentage width or height has been applied to the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() .usePercentageUnits is false when no percentage width or height has been applied to the image" time="0.002">
3068
+ </testcase>
3069
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() sets .naturalHeight to the natural height of the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() sets .naturalHeight to the natural height of the image" time="0.001">
3070
+ </testcase>
3071
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() sets .naturalWidth to the natural width of the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() sets .naturalWidth to the natural width of the image" time="0">
3072
+ </testcase>
3073
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() sets .url to the src of the image" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .fromImageEmbed() sets .url to the src of the image" time="0.001">
3074
+ </testcase>
3075
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForHeight() scales an image to the target height" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForHeight() scales an image to the target height" time="0">
3076
+ </testcase>
3077
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForHeight() respects the minimum height of 10px" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForHeight() respects the minimum height of 10px" time="0.001">
3078
+ </testcase>
3079
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForHeight() respects the minimum width of 10px" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForHeight() respects the minimum width of 10px" time="0">
3080
+ </testcase>
3081
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForWidth() scales an image to the target width" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForWidth() scales an image to the target width" time="0">
3082
+ </testcase>
3083
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForWidth() respects the minimum width of 10px" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForWidth() respects the minimum width of 10px" time="0.001">
3084
+ </testcase>
3085
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForWidth() respects the minimum height of 10px" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleImageForWidth() respects the minimum height of 10px" time="0">
3086
+ </testcase>
3087
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;small&apos; image size" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;small&apos; image size" time="0.001">
3088
+ </testcase>
3089
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;medium&apos; image size" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;medium&apos; image size" time="0">
3090
+ </testcase>
3091
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;large&apos; image size" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;large&apos; image size" time="0">
3092
+ </testcase>
3093
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;extra-large&apos; image size" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() scales to fit the &apos;extra-large&apos; image size" time="0.001">
3094
+ </testcase>
3095
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() returns the given width and height for the &apos;custom&apos; image size" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .scaleToSize() returns the given width and height for the &apos;custom&apos; image size" time="0">
3096
+ </testcase>
3097
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Small&apos; when given &apos;small&apos;" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Small&apos; when given &apos;small&apos;" time="0">
3098
+ </testcase>
3099
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Medium&apos; when given &apos;medium&apos;" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Medium&apos; when given &apos;medium&apos;" time="0">
3100
+ </testcase>
3101
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Large&apos; when given &apos;large&apos;" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Large&apos; when given &apos;large&apos;" time="0">
3102
+ </testcase>
3103
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Extra Large&apos; when given &apos;extra-large&apos;" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Extra Large&apos; when given &apos;extra-large&apos;" time="0.001">
3104
+ </testcase>
3105
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Custom&apos; when given &apos;custom&apos;" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Custom&apos; when given &apos;custom&apos;" time="0">
3106
+ </testcase>
3107
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Custom&apos; when given any other value" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions .labelForImageSize() returns &apos;Custom&apos; when given any other value" time="0">
3108
+ </testcase>
3109
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions fromVideoEmbed gets the title" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions fromVideoEmbed gets the title" time="0.01">
3110
+ </testcase>
3111
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions fromVideoEmbed gets the tracks" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions fromVideoEmbed gets the tracks" time="0.01">
3112
+ </testcase>
3113
+ <testcase classname="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions fromVideoEmbed gets the preset size" name="RCE &gt; Plugins &gt; Instructure Image &gt; ImageEmbedOptions fromVideoEmbed gets the preset size" time="0.007">
3114
+ </testcase>
3115
+ </testsuite>
3116
+ <testsuite name="RCE &quot;Links&quot; Plugin &gt; AccordionSection" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:48" time="0.645" tests="3">
3117
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; AccordionSection renders closed" name="RCE &quot;Links&quot; Plugin &gt; AccordionSection renders closed" time="0.031">
3118
+ </testcase>
3119
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; AccordionSection renders open" name="RCE &quot;Links&quot; Plugin &gt; AccordionSection renders open" time="0.013">
3120
+ </testcase>
3121
+ <testcase classname="RCE &quot;Links&quot; Plugin &gt; AccordionSection calls onToggle when toggling" name="RCE &quot;Links&quot; Plugin &gt; AccordionSection calls onToggle when toggling" time="0.012">
3122
+ </testcase>
3123
+ </testsuite>
3124
+ <testsuite name="PreviewIcon()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:48" time="0.328" tests="11">
3125
+ <testcase classname="PreviewIcon() renders with the correct width" name="PreviewIcon() renders with the correct width" time="0.01">
3126
+ </testcase>
3127
+ <testcase classname="PreviewIcon() renders with the correct height" name="PreviewIcon() renders with the correct height" time="0.004">
3128
+ </testcase>
3129
+ <testcase classname="PreviewIcon() does not render a spinner" name="PreviewIcon() does not render a spinner" time="0.003">
3130
+ </testcase>
3131
+ <testcase classname="PreviewIcon() does not have a checkered background by default" name="PreviewIcon() does not have a checkered background by default" time="0.003">
3132
+ </testcase>
3133
+ <testcase classname="PreviewIcon() when an image data URL is provided uses the image in the preview" name="PreviewIcon() when an image data URL is provided uses the image in the preview" time="0.005">
3134
+ </testcase>
3135
+ <testcase classname="PreviewIcon() when a color is provided renders the given color" name="PreviewIcon() when a color is provided renders the given color" time="0.01">
3136
+ </testcase>
3137
+ <testcase classname="PreviewIcon() when the &quot;large&quot; variant is specified renders with the correct width" name="PreviewIcon() when the &quot;large&quot; variant is specified renders with the correct width" time="0.004">
3138
+ </testcase>
3139
+ <testcase classname="PreviewIcon() when the &quot;large&quot; variant is specified renders with the correct height" name="PreviewIcon() when the &quot;large&quot; variant is specified renders with the correct height" time="0.004">
3140
+ </testcase>
3141
+ <testcase classname="PreviewIcon() when the &quot;large&quot; variant is specified uses the correct gradient" name="PreviewIcon() when the &quot;large&quot; variant is specified uses the correct gradient" time="0.004">
3142
+ </testcase>
3143
+ <testcase classname="PreviewIcon() when &quot;loading&quot; is true renders a spinner" name="PreviewIcon() when &quot;loading&quot; is true renders a spinner" time="0.012">
3144
+ </testcase>
3145
+ <testcase classname="PreviewIcon() when &quot;checkered&quot; is true has a checkered background" name="PreviewIcon() when &quot;checkered&quot; is true has a checkered background" time="0.009">
3146
+ </testcase>
3147
+ </testsuite>
3148
+ <testsuite name="ShowOnFocusButton" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:49" time="1.102" tests="3">
3149
+ <testcase classname="ShowOnFocusButton renders the button regardless of focus" name="ShowOnFocusButton renders the button regardless of focus" time="0.115">
3150
+ </testcase>
3151
+ <testcase classname="ShowOnFocusButton renders off screen when not focused" name="ShowOnFocusButton renders off screen when not focused" time="0.019">
3152
+ </testcase>
3153
+ <testcase classname="ShowOnFocusButton renders visibly on screen when focused" name="ShowOnFocusButton renders visibly on screen when focused" time="0.028">
3154
+ </testcase>
3155
+ </testsuite>
3156
+ <testsuite name="RCE Plugins &gt; FixedContentTray" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:50" time="0.992" tests="4">
3157
+ <testcase classname="RCE Plugins &gt; FixedContentTray renders header" name="RCE Plugins &gt; FixedContentTray renders header" time="0.017">
3158
+ </testcase>
3159
+ <testcase classname="RCE Plugins &gt; FixedContentTray renders body" name="RCE Plugins &gt; FixedContentTray renders body" time="0.009">
3160
+ </testcase>
3161
+ <testcase classname="RCE Plugins &gt; FixedContentTray renders footer" name="RCE Plugins &gt; FixedContentTray renders footer" time="0.008">
3162
+ </testcase>
3163
+ <testcase classname="RCE Plugins &gt; FixedContentTray renders body &amp; footer in same item" name="RCE Plugins &gt; FixedContentTray renders body &amp; footer in same item" time="0.015">
3164
+ </testcase>
3165
+ </testsuite>
3166
+ <testsuite name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:51" time="0.405" tests="40">
3167
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() sets the height to the target height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() sets the height to the target height" time="0">
3168
+ </testcase>
3169
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() scales the width proportionally with the height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() scales the width proportionally with the height" time="0">
3170
+ </testcase>
3171
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is below minimum height sets the height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is below minimum height sets the height to the minimum height" time="0">
3172
+ </testcase>
3173
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is below minimum height scales the width proportionally with the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is below minimum height scales the width proportionally with the minimum height" time="0">
3174
+ </testcase>
3175
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when no minimum height is set uses zero as the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when no minimum height is set uses zero as the minimum height" time="0">
3176
+ </testcase>
3177
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when no minimum height is set scales the width proportionally with the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when no minimum height is set scales the width proportionally with the minimum height" time="0">
3178
+ </testcase>
3179
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width below minimum width scales the height proportionally with the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width below minimum width scales the height proportionally with the minimum width" time="0">
3180
+ </testcase>
3181
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width below minimum width sets the width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width below minimum width sets the width to the minimum width" time="0">
3182
+ </testcase>
3183
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width fractionally below minimum width scales the height proportionally with the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width fractionally below minimum width scales the height proportionally with the minimum width" time="0">
3184
+ </testcase>
3185
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width fractionally below minimum width sets the width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height scales the width fractionally below minimum width sets the width to the minimum width" time="0.001">
3186
+ </testcase>
3187
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the height can be reduced further than the width scales the height proportionally with the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the height can be reduced further than the width scales the height proportionally with the minimum width" time="0">
3188
+ </testcase>
3189
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the height can be reduced further than the width sets the width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the height can be reduced further than the width sets the width to the minimum width" time="0.001">
3190
+ </testcase>
3191
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the width can be reduced further than the height sets the height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the width can be reduced further than the height sets the height to the minimum height" time="0">
3192
+ </testcase>
3193
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the width can be reduced further than the height scales the width proportionally with the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height and scaled width are below minimums when the width can be reduced further than the height scales the width proportionally with the minimum height" time="0">
3194
+ </testcase>
3195
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a small fraction sets the height to the target height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a small fraction sets the height to the target height" time="0.001">
3196
+ </testcase>
3197
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a small fraction rounds the scaled width down to a whole number" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a small fraction rounds the scaled width down to a whole number" time="0">
3198
+ </testcase>
3199
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a large fraction sets the height to the target height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a large fraction sets the height to the target height" time="0.001">
3200
+ </testcase>
3201
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a large fraction rounds the scaled width up to a whole number" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the scaled width has a large fraction rounds the scaled width up to a whole number" time="0">
3202
+ </testcase>
3203
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is null sets the height to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is null sets the height to null" time="0.001">
3204
+ </testcase>
3205
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is null sets the width to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForHeight() when the target height is null sets the width to null" time="0">
3206
+ </testcase>
3207
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() sets the width to the target width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() sets the width to the target width" time="0.001">
3208
+ </testcase>
3209
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() scales the height proportionally with the width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() scales the height proportionally with the width" time="0">
3210
+ </testcase>
3211
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is below minimum width sets the width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is below minimum width sets the width to the minimum width" time="0.001">
3212
+ </testcase>
3213
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is below minimum width scales the height proportionally with the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is below minimum width scales the height proportionally with the minimum width" time="0">
3214
+ </testcase>
3215
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when no minimum width is set uses zero as the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when no minimum width is set uses zero as the minimum width" time="0">
3216
+ </testcase>
3217
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when no minimum width is set scales the height proportionally with the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when no minimum width is set scales the height proportionally with the minimum width" time="0">
3218
+ </testcase>
3219
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height below minimum height scales the width proportionally with the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height below minimum height scales the width proportionally with the minimum height" time="0">
3220
+ </testcase>
3221
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height below minimum height sets the height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height below minimum height sets the height to the minimum height" time="0.001">
3222
+ </testcase>
3223
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height fractionally below minimum height scales the width proportionally with the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height fractionally below minimum height scales the width proportionally with the minimum height" time="0">
3224
+ </testcase>
3225
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height fractionally below minimum height sets the height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width scales the height fractionally below minimum height sets the height to the minimum height" time="0.001">
3226
+ </testcase>
3227
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the width can be reduced further than the height scales the width proportionally with the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the width can be reduced further than the height scales the width proportionally with the minimum height" time="0">
3228
+ </testcase>
3229
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the width can be reduced further than the height sets the height to the minimum height" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the width can be reduced further than the height sets the height to the minimum height" time="0">
3230
+ </testcase>
3231
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the height can be reduced further than the width sets the width to the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the height can be reduced further than the width sets the width to the minimum width" time="0.001">
3232
+ </testcase>
3233
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the height can be reduced further than the width scales the height proportionally with the minimum width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width and scaled height are below minimums when the height can be reduced further than the width scales the height proportionally with the minimum width" time="0">
3234
+ </testcase>
3235
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a small fraction sets the width to the target width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a small fraction sets the width to the target width" time="0">
3236
+ </testcase>
3237
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a small fraction rounds the scaled height down to a whole number" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a small fraction rounds the scaled height down to a whole number" time="0.001">
3238
+ </testcase>
3239
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a large fraction sets the width to the target width" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a large fraction sets the width to the target width" time="0">
3240
+ </testcase>
3241
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a large fraction rounds the scaled height up to a whole number" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the scaled height has a large fraction rounds the scaled height up to a whole number" time="0">
3242
+ </testcase>
3243
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is null sets the width to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is null sets the width to null" time="0.001">
3244
+ </testcase>
3245
+ <testcase classname="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is null sets the height to null" name="RCE &gt; Plugins &gt; Shared &gt; DimensionsUtils .scaleForWidth() when the target width is null sets the height to null" time="0">
3246
+ </testcase>
3247
+ </testsuite>
3248
+ <testsuite name="buildSvg()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:51" time="0.237" tests="16">
3249
+ <testcase classname="buildSvg() builds the icon svg" name="buildSvg() builds the icon svg" time="0.004">
3250
+ </testcase>
3251
+ <testcase classname="buildSvg() builds the icon svg when is preview mode" name="buildSvg() builds the icon svg when is preview mode" time="0.002">
3252
+ </testcase>
3253
+ <testcase classname="buildSvg() builds the icon svg with text" name="buildSvg() builds the icon svg with text" time="0.008">
3254
+ </testcase>
3255
+ <testcase classname="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is x-small" name="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is x-small" time="0.001">
3256
+ </testcase>
3257
+ <testcase classname="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is small" name="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is small" time="0.002">
3258
+ </testcase>
3259
+ <testcase classname="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is medium" name="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is medium" time="0.001">
3260
+ </testcase>
3261
+ <testcase classname="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is large" name="buildSvgWrapper() builds the &lt;svg /&gt; wrapper when size is large" time="0.001">
3262
+ </testcase>
3263
+ <testcase classname="buildGroup() builds the &lt;g /&gt; element when color is set" name="buildGroup() builds the &lt;g /&gt; element when color is set" time="0.001">
3264
+ </testcase>
3265
+ <testcase classname="buildGroup() builds the &lt;g /&gt; element when color is not set" name="buildGroup() builds the &lt;g /&gt; element when color is not set" time="0">
3266
+ </testcase>
3267
+ <testcase classname="buildGroup() builds the &lt;g /&gt; element when color is not set and is preview mode" name="buildGroup() builds the &lt;g /&gt; element when color is not set and is preview mode" time="0">
3268
+ </testcase>
3269
+ <testcase classname="buildGroup() builds the &lt;g /&gt; element when outlineColor is not set" name="buildGroup() builds the &lt;g /&gt; element when outlineColor is not set" time="0.001">
3270
+ </testcase>
3271
+ <testcase classname="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;none&quot;" name="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;none&quot;" time="0">
3272
+ </testcase>
3273
+ <testcase classname="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;small&quot;" name="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;small&quot;" time="0.001">
3274
+ </testcase>
3275
+ <testcase classname="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;medium&quot;" name="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;medium&quot;" time="0">
3276
+ </testcase>
3277
+ <testcase classname="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;large&quot;" name="buildGroup() when outlineSize is set builds the &lt;g /&gt; element when outlineSize is &quot;large&quot;" time="0.001">
3278
+ </testcase>
3279
+ <testcase classname="buildStylesheet() builds the &lt;style /&gt; element" name="buildStylesheet() builds the &lt;style /&gt; element" time="0.001">
3280
+ </testcase>
3281
+ </testsuite>
3282
+ <testsuite name="transformShape()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:52" time="0.806" tests="68">
3283
+ <testcase classname="transformShape() when the shape is a pentagon with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a pentagon with x-small shape sets the correct dimension attributes" time="0.002">
3284
+ </testcase>
3285
+ <testcase classname="transformShape() when the shape is a pentagon with x-small shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a pentagon with x-small shape uses &quot;55%&quot; for the Y position" time="0.002">
3286
+ </testcase>
3287
+ <testcase classname="transformShape() when the shape is a pentagon with small shape sets the correct dimension attributes" name="transformShape() when the shape is a pentagon with small shape sets the correct dimension attributes" time="0.004">
3288
+ </testcase>
3289
+ <testcase classname="transformShape() when the shape is a pentagon with small shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a pentagon with small shape uses &quot;55%&quot; for the Y position" time="0.001">
3290
+ </testcase>
3291
+ <testcase classname="transformShape() when the shape is a pentagon with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a pentagon with medium shape sets the correct dimension attributes" time="0.001">
3292
+ </testcase>
3293
+ <testcase classname="transformShape() when the shape is a pentagon with medium shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a pentagon with medium shape uses &quot;55%&quot; for the Y position" time="0.001">
3294
+ </testcase>
3295
+ <testcase classname="transformShape() when the shape is a pentagon with large shape sets the correct dimension attributes" name="transformShape() when the shape is a pentagon with large shape sets the correct dimension attributes" time="0.001">
3296
+ </testcase>
3297
+ <testcase classname="transformShape() when the shape is a pentagon with large shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a pentagon with large shape uses &quot;55%&quot; for the Y position" time="0.001">
3298
+ </testcase>
3299
+ <testcase classname="transformShape() when the shape is a triangle with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a triangle with x-small shape sets the correct dimension attributes" time="0.003">
3300
+ </testcase>
3301
+ <testcase classname="transformShape() when the shape is a triangle with x-small shape uses &quot;65%&quot; for the Y position" name="transformShape() when the shape is a triangle with x-small shape uses &quot;65%&quot; for the Y position" time="0.001">
3302
+ </testcase>
3303
+ <testcase classname="transformShape() when the shape is a triangle with small shape sets the correct dimension attributes" name="transformShape() when the shape is a triangle with small shape sets the correct dimension attributes" time="0.001">
3304
+ </testcase>
3305
+ <testcase classname="transformShape() when the shape is a triangle with small shape uses &quot;65%&quot; for the Y position" name="transformShape() when the shape is a triangle with small shape uses &quot;65%&quot; for the Y position" time="0.001">
3306
+ </testcase>
3307
+ <testcase classname="transformShape() when the shape is a triangle with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a triangle with medium shape sets the correct dimension attributes" time="0.001">
3308
+ </testcase>
3309
+ <testcase classname="transformShape() when the shape is a triangle with medium shape uses &quot;65%&quot; for the Y position" name="transformShape() when the shape is a triangle with medium shape uses &quot;65%&quot; for the Y position" time="0.002">
3310
+ </testcase>
3311
+ <testcase classname="transformShape() when the shape is a triangle with large shape sets the correct dimension attributes" name="transformShape() when the shape is a triangle with large shape sets the correct dimension attributes" time="0.003">
3312
+ </testcase>
3313
+ <testcase classname="transformShape() when the shape is a triangle with large shape uses &quot;65%&quot; for the Y position" name="transformShape() when the shape is a triangle with large shape uses &quot;65%&quot; for the Y position" time="0.001">
3314
+ </testcase>
3315
+ <testcase classname="transformShape() when the shape is a star with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a star with x-small shape sets the correct dimension attributes" time="0.002">
3316
+ </testcase>
3317
+ <testcase classname="transformShape() when the shape is a star with x-small shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a star with x-small shape uses &quot;55%&quot; for the Y position" time="0.001">
3318
+ </testcase>
3319
+ <testcase classname="transformShape() when the shape is a star with small shape sets the correct dimension attributes" name="transformShape() when the shape is a star with small shape sets the correct dimension attributes" time="0.002">
3320
+ </testcase>
3321
+ <testcase classname="transformShape() when the shape is a star with small shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a star with small shape uses &quot;55%&quot; for the Y position" time="0.001">
3322
+ </testcase>
3323
+ <testcase classname="transformShape() when the shape is a star with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a star with medium shape sets the correct dimension attributes" time="0.005">
3324
+ </testcase>
3325
+ <testcase classname="transformShape() when the shape is a star with medium shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a star with medium shape uses &quot;55%&quot; for the Y position" time="0.002">
3326
+ </testcase>
3327
+ <testcase classname="transformShape() when the shape is a star with large shape sets the correct dimension attributes" name="transformShape() when the shape is a star with large shape sets the correct dimension attributes" time="0.001">
3328
+ </testcase>
3329
+ <testcase classname="transformShape() when the shape is a star with large shape uses &quot;55%&quot; for the Y position" name="transformShape() when the shape is a star with large shape uses &quot;55%&quot; for the Y position" time="0.001">
3330
+ </testcase>
3331
+ <testcase classname="transformShape() when the shape is a square with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a square with x-small shape sets the correct dimension attributes" time="0.001">
3332
+ </testcase>
3333
+ <testcase classname="transformShape() when the shape is a square with small shape sets the correct dimension attributes" name="transformShape() when the shape is a square with small shape sets the correct dimension attributes" time="0.004">
3334
+ </testcase>
3335
+ <testcase classname="transformShape() when the shape is a square with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a square with medium shape sets the correct dimension attributes" time="0.001">
3336
+ </testcase>
3337
+ <testcase classname="transformShape() when the shape is a square with large shape sets the correct dimension attributes" name="transformShape() when the shape is a square with large shape sets the correct dimension attributes" time="0.001">
3338
+ </testcase>
3339
+ <testcase classname="transformShape() when the shape is a circle with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a circle with x-small shape sets the correct dimension attributes" time="0.001">
3340
+ </testcase>
3341
+ <testcase classname="transformShape() when the shape is a circle with small shape sets the correct dimension attributes" name="transformShape() when the shape is a circle with small shape sets the correct dimension attributes" time="0.002">
3342
+ </testcase>
3343
+ <testcase classname="transformShape() when the shape is a circle with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a circle with medium shape sets the correct dimension attributes" time="0.002">
3344
+ </testcase>
3345
+ <testcase classname="transformShape() when the shape is a circle with large shape sets the correct dimension attributes" name="transformShape() when the shape is a circle with large shape sets the correct dimension attributes" time="0.005">
3346
+ </testcase>
3347
+ <testcase classname="transformShape() when the shape is a hexagon with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a hexagon with x-small shape sets the correct dimension attributes" time="0.001">
3348
+ </testcase>
3349
+ <testcase classname="transformShape() when the shape is a hexagon with small shape sets the correct dimension attributes" name="transformShape() when the shape is a hexagon with small shape sets the correct dimension attributes" time="0.001">
3350
+ </testcase>
3351
+ <testcase classname="transformShape() when the shape is a hexagon with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a hexagon with medium shape sets the correct dimension attributes" time="0.001">
3352
+ </testcase>
3353
+ <testcase classname="transformShape() when the shape is a hexagon with large shape sets the correct dimension attributes" name="transformShape() when the shape is a hexagon with large shape sets the correct dimension attributes" time="0.002">
3354
+ </testcase>
3355
+ <testcase classname="transformShape() when the shape is a octagon with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a octagon with x-small shape sets the correct dimension attributes" time="0.001">
3356
+ </testcase>
3357
+ <testcase classname="transformShape() when the shape is a octagon with small shape sets the correct dimension attributes" name="transformShape() when the shape is a octagon with small shape sets the correct dimension attributes" time="0.002">
3358
+ </testcase>
3359
+ <testcase classname="transformShape() when the shape is a octagon with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a octagon with medium shape sets the correct dimension attributes" time="0.001">
3360
+ </testcase>
3361
+ <testcase classname="transformShape() when the shape is a octagon with large shape sets the correct dimension attributes" name="transformShape() when the shape is a octagon with large shape sets the correct dimension attributes" time="0.001">
3362
+ </testcase>
3363
+ <testcase classname="transformShape() when the shape is a diamond with x-small shape sets the correct dimension attributes" name="transformShape() when the shape is a diamond with x-small shape sets the correct dimension attributes" time="0.001">
3364
+ </testcase>
3365
+ <testcase classname="transformShape() when the shape is a diamond with small shape sets the correct dimension attributes" name="transformShape() when the shape is a diamond with small shape sets the correct dimension attributes" time="0.002">
3366
+ </testcase>
3367
+ <testcase classname="transformShape() when the shape is a diamond with medium shape sets the correct dimension attributes" name="transformShape() when the shape is a diamond with medium shape sets the correct dimension attributes" time="0.004">
3368
+ </testcase>
3369
+ <testcase classname="transformShape() when the shape is a diamond with large shape sets the correct dimension attributes" name="transformShape() when the shape is a diamond with large shape sets the correct dimension attributes" time="0.001">
3370
+ </testcase>
3371
+ <testcase classname="transformShape() when no transform overrides are set (default case) with x-small icon size sets the x position" name="transformShape() when no transform overrides are set (default case) with x-small icon size sets the x position" time="0.001">
3372
+ </testcase>
3373
+ <testcase classname="transformShape() when no transform overrides are set (default case) with x-small icon size sets the y position" name="transformShape() when no transform overrides are set (default case) with x-small icon size sets the y position" time="0.001">
3374
+ </testcase>
3375
+ <testcase classname="transformShape() when no transform overrides are set (default case) with x-small icon size sets the width" name="transformShape() when no transform overrides are set (default case) with x-small icon size sets the width" time="0.002">
3376
+ </testcase>
3377
+ <testcase classname="transformShape() when no transform overrides are set (default case) with x-small icon size sets the height" name="transformShape() when no transform overrides are set (default case) with x-small icon size sets the height" time="0.002">
3378
+ </testcase>
3379
+ <testcase classname="transformShape() when no transform overrides are set (default case) with x-small icon size sets the translation in the X direction" name="transformShape() when no transform overrides are set (default case) with x-small icon size sets the translation in the X direction" time="0.005">
3380
+ </testcase>
3381
+ <testcase classname="transformShape() when no transform overrides are set (default case) with x-small icon size sets the translation in the Y direction" name="transformShape() when no transform overrides are set (default case) with x-small icon size sets the translation in the Y direction" time="0.001">
3382
+ </testcase>
3383
+ <testcase classname="transformShape() when no transform overrides are set (default case) with small icon size sets the x position" name="transformShape() when no transform overrides are set (default case) with small icon size sets the x position" time="0.001">
3384
+ </testcase>
3385
+ <testcase classname="transformShape() when no transform overrides are set (default case) with small icon size sets the y position" name="transformShape() when no transform overrides are set (default case) with small icon size sets the y position" time="0.001">
3386
+ </testcase>
3387
+ <testcase classname="transformShape() when no transform overrides are set (default case) with small icon size sets the width" name="transformShape() when no transform overrides are set (default case) with small icon size sets the width" time="0.001">
3388
+ </testcase>
3389
+ <testcase classname="transformShape() when no transform overrides are set (default case) with small icon size sets the height" name="transformShape() when no transform overrides are set (default case) with small icon size sets the height" time="0.001">
3390
+ </testcase>
3391
+ <testcase classname="transformShape() when no transform overrides are set (default case) with small icon size sets the translation in the X direction" name="transformShape() when no transform overrides are set (default case) with small icon size sets the translation in the X direction" time="0.005">
3392
+ </testcase>
3393
+ <testcase classname="transformShape() when no transform overrides are set (default case) with small icon size sets the translation in the Y direction" name="transformShape() when no transform overrides are set (default case) with small icon size sets the translation in the Y direction" time="0.001">
3394
+ </testcase>
3395
+ <testcase classname="transformShape() when no transform overrides are set (default case) with medium icon size sets the x position" name="transformShape() when no transform overrides are set (default case) with medium icon size sets the x position" time="0.001">
3396
+ </testcase>
3397
+ <testcase classname="transformShape() when no transform overrides are set (default case) with medium icon size sets the y position" name="transformShape() when no transform overrides are set (default case) with medium icon size sets the y position" time="0.001">
3398
+ </testcase>
3399
+ <testcase classname="transformShape() when no transform overrides are set (default case) with medium icon size sets the width" name="transformShape() when no transform overrides are set (default case) with medium icon size sets the width" time="0.001">
3400
+ </testcase>
3401
+ <testcase classname="transformShape() when no transform overrides are set (default case) with medium icon size sets the height" name="transformShape() when no transform overrides are set (default case) with medium icon size sets the height" time="0.001">
3402
+ </testcase>
3403
+ <testcase classname="transformShape() when no transform overrides are set (default case) with medium icon size sets the translation in the X direction" name="transformShape() when no transform overrides are set (default case) with medium icon size sets the translation in the X direction" time="0.004">
3404
+ </testcase>
3405
+ <testcase classname="transformShape() when no transform overrides are set (default case) with medium icon size sets the translation in the Y direction" name="transformShape() when no transform overrides are set (default case) with medium icon size sets the translation in the Y direction" time="0.001">
3406
+ </testcase>
3407
+ <testcase classname="transformShape() when no transform overrides are set (default case) with large icon size sets the x position" name="transformShape() when no transform overrides are set (default case) with large icon size sets the x position" time="0.001">
3408
+ </testcase>
3409
+ <testcase classname="transformShape() when no transform overrides are set (default case) with large icon size sets the y position" name="transformShape() when no transform overrides are set (default case) with large icon size sets the y position" time="0.001">
3410
+ </testcase>
3411
+ <testcase classname="transformShape() when no transform overrides are set (default case) with large icon size sets the width" name="transformShape() when no transform overrides are set (default case) with large icon size sets the width" time="0.001">
3412
+ </testcase>
3413
+ <testcase classname="transformShape() when no transform overrides are set (default case) with large icon size sets the height" name="transformShape() when no transform overrides are set (default case) with large icon size sets the height" time="0.001">
3414
+ </testcase>
3415
+ <testcase classname="transformShape() when no transform overrides are set (default case) with large icon size sets the translation in the X direction" name="transformShape() when no transform overrides are set (default case) with large icon size sets the translation in the X direction" time="0.005">
3416
+ </testcase>
3417
+ <testcase classname="transformShape() when no transform overrides are set (default case) with large icon size sets the translation in the Y direction" name="transformShape() when no transform overrides are set (default case) with large icon size sets the translation in the Y direction" time="0.001">
3418
+ </testcase>
3419
+ </testsuite>
3420
+ <testsuite name="detect if icon maker form has changes" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:53" time="0.781" tests="42">
3421
+ <testcase classname="detect if icon maker form has changes hasNameChange returns false if names match exactly" name="detect if icon maker form has changes hasNameChange returns false if names match exactly" time="0.001">
3422
+ </testcase>
3423
+ <testcase classname="detect if icon maker form has changes hasNameChange returns true if names do not match exactly" name="detect if icon maker form has changes hasNameChange returns true if names do not match exactly" time="0.001">
3424
+ </testcase>
3425
+ <testcase classname="detect if icon maker form has changes hasAltChange returns false if alt texts match exactly" name="detect if icon maker form has changes hasAltChange returns false if alt texts match exactly" time="0">
3426
+ </testcase>
3427
+ <testcase classname="detect if icon maker form has changes hasAltChange returns true if alt texts do not match exactly" name="detect if icon maker form has changes hasAltChange returns true if alt texts do not match exactly" time="0">
3428
+ </testcase>
3429
+ <testcase classname="detect if icon maker form has changes hasShapeNameChange returns false if shape names match exactly" name="detect if icon maker form has changes hasShapeNameChange returns false if shape names match exactly" time="0.002">
3430
+ </testcase>
3431
+ <testcase classname="detect if icon maker form has changes hasShapeNameChange returns true if shape names do not match exactly" name="detect if icon maker form has changes hasShapeNameChange returns true if shape names do not match exactly" time="0">
3432
+ </testcase>
3433
+ <testcase classname="detect if icon maker form has changes hasShapeSizeChange returns false if shape sizes match exactly" name="detect if icon maker form has changes hasShapeSizeChange returns false if shape sizes match exactly" time="0.001">
3434
+ </testcase>
3435
+ <testcase classname="detect if icon maker form has changes hasShapeSizeChange returns true if shape sizes do not match exactly" name="detect if icon maker form has changes hasShapeSizeChange returns true if shape sizes do not match exactly" time="0">
3436
+ </testcase>
3437
+ <testcase classname="detect if icon maker form has changes hasColorNameChange returns false if color names match exactly" name="detect if icon maker form has changes hasColorNameChange returns false if color names match exactly" time="0">
3438
+ </testcase>
3439
+ <testcase classname="detect if icon maker form has changes hasColorNameChange returns true if color names do not match exactly" name="detect if icon maker form has changes hasColorNameChange returns true if color names do not match exactly" time="0">
3440
+ </testcase>
3441
+ <testcase classname="detect if icon maker form has changes hasColorNameChange returns false if both color names are null" name="detect if icon maker form has changes hasColorNameChange returns false if both color names are null" time="0">
3442
+ </testcase>
3443
+ <testcase classname="detect if icon maker form has changes hasColorNameChange returns true if one color is null and the other is a valid color" name="detect if icon maker form has changes hasColorNameChange returns true if one color is null and the other is a valid color" time="0.001">
3444
+ </testcase>
3445
+ <testcase classname="detect if icon maker form has changes hasOutlineSizeChange returns false if color outline sizes match exactly" name="detect if icon maker form has changes hasOutlineSizeChange returns false if color outline sizes match exactly" time="0">
3446
+ </testcase>
3447
+ <testcase classname="detect if icon maker form has changes hasOutlineSizeChange returns true if color outline sizes do not match exactly" name="detect if icon maker form has changes hasOutlineSizeChange returns true if color outline sizes do not match exactly" time="0">
3448
+ </testcase>
3449
+ <testcase classname="detect if icon maker form has changes hasOutlineColorChange returns false if outline colors match exactly" name="detect if icon maker form has changes hasOutlineColorChange returns false if outline colors match exactly" time="0.001">
3450
+ </testcase>
3451
+ <testcase classname="detect if icon maker form has changes hasOutlineColorChange returns true if outline colors do not match exactly" name="detect if icon maker form has changes hasOutlineColorChange returns true if outline colors do not match exactly" time="0">
3452
+ </testcase>
3453
+ <testcase classname="detect if icon maker form has changes hasTextChange returns false if text entries match exactly" name="detect if icon maker form has changes hasTextChange returns false if text entries match exactly" time="0.001">
3454
+ </testcase>
3455
+ <testcase classname="detect if icon maker form has changes hasTextChange returns true if text entries do not match exactly" name="detect if icon maker form has changes hasTextChange returns true if text entries do not match exactly" time="0">
3456
+ </testcase>
3457
+ <testcase classname="detect if icon maker form has changes hasTextSizeChange returns false if text sizes match exactly" name="detect if icon maker form has changes hasTextSizeChange returns false if text sizes match exactly" time="0.001">
3458
+ </testcase>
3459
+ <testcase classname="detect if icon maker form has changes hasTextSizeChange returns true if text sizes do not match exactly" name="detect if icon maker form has changes hasTextSizeChange returns true if text sizes do not match exactly" time="0.001">
3460
+ </testcase>
3461
+ <testcase classname="detect if icon maker form has changes hasTextColorChange returns false if text colors match exactly" name="detect if icon maker form has changes hasTextColorChange returns false if text colors match exactly" time="0">
3462
+ </testcase>
3463
+ <testcase classname="detect if icon maker form has changes hasTextColorChange returns true if text colors do not match exactly" name="detect if icon maker form has changes hasTextColorChange returns true if text colors do not match exactly" time="0.001">
3464
+ </testcase>
3465
+ <testcase classname="detect if icon maker form has changes hasTextBackgroundColorChange returns false if text background colors match exactly" name="detect if icon maker form has changes hasTextBackgroundColorChange returns false if text background colors match exactly" time="0">
3466
+ </testcase>
3467
+ <testcase classname="detect if icon maker form has changes hasTextBackgroundColorChange returns true if text background colors do not match exactly" name="detect if icon maker form has changes hasTextBackgroundColorChange returns true if text background colors do not match exactly" time="0.001">
3468
+ </testcase>
3469
+ <testcase classname="detect if icon maker form has changes hasTextPositionChange returns false if text positions match exactly" name="detect if icon maker form has changes hasTextPositionChange returns false if text positions match exactly" time="0">
3470
+ </testcase>
3471
+ <testcase classname="detect if icon maker form has changes hasTextPositionChange returns true if text positions do not match exactly" name="detect if icon maker form has changes hasTextPositionChange returns true if text positions do not match exactly" time="0.001">
3472
+ </testcase>
3473
+ <testcase classname="detect if icon maker form has changes hasImageSettingsChange returns false if image settings match exactly" name="detect if icon maker form has changes hasImageSettingsChange returns false if image settings match exactly" time="0.001">
3474
+ </testcase>
3475
+ <testcase classname="detect if icon maker form has changes hasImageSettingsChange returns true if image settings do not match exactly" name="detect if icon maker form has changes hasImageSettingsChange returns true if image settings do not match exactly" time="0">
3476
+ </testcase>
3477
+ <testcase classname="detect if icon maker form has changes hasChanges returns false if all properties match exactly" name="detect if icon maker form has changes hasChanges returns false if all properties match exactly" time="0">
3478
+ </testcase>
3479
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if imageSettings property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if imageSettings property is not an exact match" time="0">
3480
+ </testcase>
3481
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if textPosition property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if textPosition property is not an exact match" time="0">
3482
+ </testcase>
3483
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if textBackgroundColor property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if textBackgroundColor property is not an exact match" time="0">
3484
+ </testcase>
3485
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if textColor property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if textColor property is not an exact match" time="0">
3486
+ </testcase>
3487
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if textSize property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if textSize property is not an exact match" time="0">
3488
+ </testcase>
3489
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if text property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if text property is not an exact match" time="0.001">
3490
+ </testcase>
3491
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if outlineColor property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if outlineColor property is not an exact match" time="0">
3492
+ </testcase>
3493
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if outlineSize property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if outlineSize property is not an exact match" time="0">
3494
+ </testcase>
3495
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if color property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if color property is not an exact match" time="0">
3496
+ </testcase>
3497
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if size property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if size property is not an exact match" time="0">
3498
+ </testcase>
3499
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if shape property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if shape property is not an exact match" time="0.001">
3500
+ </testcase>
3501
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if alt property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if alt property is not an exact match" time="0">
3502
+ </testcase>
3503
+ <testcase classname="detect if icon maker form has changes hasChanges returns true if name property is not an exact match" name="detect if icon maker form has changes hasChanges returns true if name property is not an exact match" time="0.001">
3504
+ </testcase>
3505
+ </testsuite>
3506
+ <testsuite name="imageSection()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:53" time="0.213" tests="9">
3507
+ <testcase classname="imageSection() handles &quot;ClearMode&quot; actions" name="imageSection() handles &quot;ClearMode&quot; actions" time="0.001">
3508
+ </testcase>
3509
+ <testcase classname="imageSection() handles &quot;Course&quot; actions" name="imageSection() handles &quot;Course&quot; actions" time="0">
3510
+ </testcase>
3511
+ <testcase classname="imageSection() handles &quot;Upload&quot; actions" name="imageSection() handles &quot;Upload&quot; actions" time="0.001">
3512
+ </testcase>
3513
+ <testcase classname="imageSection() handles &quot;SingleColor&quot; actions" name="imageSection() handles &quot;SingleColor&quot; actions" time="0">
3514
+ </testcase>
3515
+ <testcase classname="imageSection() handles &quot;MultiColor&quot; actions" name="imageSection() handles &quot;MultiColor&quot; actions" time="0.001">
3516
+ </testcase>
3517
+ <testcase classname="imageSection() handles &quot;StartLoading&quot; actions" name="imageSection() handles &quot;StartLoading&quot; actions" time="0">
3518
+ </testcase>
3519
+ <testcase classname="imageSection() handles &quot;StopLoading&quot; actions" name="imageSection() handles &quot;StopLoading&quot; actions" time="0.001">
3520
+ </testcase>
3521
+ <testcase classname="imageSection() handles &quot;SetImage&quot; actions" name="imageSection() handles &quot;SetImage&quot; actions" time="0">
3522
+ </testcase>
3523
+ <testcase classname="imageSection() handles &quot;SetImageName&quot; actions" name="imageSection() handles &quot;SetImageName&quot; actions" time="0">
3524
+ </testcase>
3525
+ </testsuite>
3526
+ <testsuite name="splitTextIntoLines()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:54" time="0.459" tests="16">
3527
+ <testcase classname="splitTextIntoLines() returns empty list if text is empty" name="splitTextIntoLines() returns empty list if text is empty" time="0">
3528
+ </testcase>
3529
+ <testcase classname="splitTextIntoLines() returns empty list if text is has just spaces" name="splitTextIntoLines() returns empty list if text is has just spaces" time="0">
3530
+ </testcase>
3531
+ <testcase classname="splitTextIntoLines() returns empty list if max limit is lower than 1" name="splitTextIntoLines() returns empty list if max limit is lower than 1" time="0.001">
3532
+ </testcase>
3533
+ <testcase classname="splitTextIntoLines() returns a one-item list when a text that is lower than the limit" name="splitTextIntoLines() returns a one-item list when a text that is lower than the limit" time="0">
3534
+ </testcase>
3535
+ <testcase classname="splitTextIntoLines() returns a lines list when a text that exceeds limit" name="splitTextIntoLines() returns a lines list when a text that exceeds limit" time="0.001">
3536
+ </testcase>
3537
+ <testcase classname="splitTextIntoLines() returns a lines list when a text contains a long word that exceeds limit" name="splitTextIntoLines() returns a lines list when a text contains a long word that exceeds limit" time="0">
3538
+ </testcase>
3539
+ <testcase classname="splitTextIntoLines() does not count beginning or trailing whitespace when computing lines" name="splitTextIntoLines() does not count beginning or trailing whitespace when computing lines" time="0.001">
3540
+ </testcase>
3541
+ <testcase classname="splitTextIntoLines() returns empty array when text is whitespace only" name="splitTextIntoLines() returns empty array when text is whitespace only" time="0">
3542
+ </testcase>
3543
+ <testcase classname="splitTextIntoLines() ignores consecutive whitespaces" name="splitTextIntoLines() ignores consecutive whitespaces" time="0.001">
3544
+ </testcase>
3545
+ <testcase classname="splitTextIntoLines() ignores consecutive tabs" name="splitTextIntoLines() ignores consecutive tabs" time="0">
3546
+ </testcase>
3547
+ <testcase classname="splitTextIntoLines() ignores consecutive line breaks" name="splitTextIntoLines() ignores consecutive line breaks" time="0">
3548
+ </testcase>
3549
+ <testcase classname="splitTextIntoLines() beginning or trailing whitespaces" name="splitTextIntoLines() beginning or trailing whitespaces" time="0">
3550
+ </testcase>
3551
+ <testcase classname="splitTextIntoLines() beginning or trailing tabs" name="splitTextIntoLines() beginning or trailing tabs" time="0">
3552
+ </testcase>
3553
+ <testcase classname="splitTextIntoLines() beginning or trailing line breaks" name="splitTextIntoLines() beginning or trailing line breaks" time="0.001">
3554
+ </testcase>
3555
+ <testcase classname="convertFileToBase64() executes readAsDataURL with correct arguments" name="convertFileToBase64() executes readAsDataURL with correct arguments" time="0.002">
3556
+ </testcase>
3557
+ <testcase classname="decode() decodes html entities" name="decode() decodes html entities" time="0.002">
3558
+ </testcase>
3559
+ </testsuite>
3560
+ <testsuite name="containsAdvancedSyntax" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:54" time="0.328" tests="2">
3561
+ <testcase classname="containsAdvancedSyntax flags equations containing any advanced command" name="containsAdvancedSyntax flags equations containing any advanced command" time="0.015">
3562
+ </testcase>
3563
+ <testcase classname="containsAdvancedSyntax does not flag equations that do not contain advanced commands" name="containsAdvancedSyntax does not flag equations that do not contain advanced commands" time="0">
3564
+ </testcase>
3565
+ </testsuite>
3566
+ <testsuite name="useDebouncedValue()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:54" time="0.408" tests="4">
3567
+ <testcase classname="useDebouncedValue() sets the immediate value to the current value on first render" name="useDebouncedValue() sets the immediate value to the current value on first render" time="0.006">
3568
+ </testcase>
3569
+ <testcase classname="useDebouncedValue() updates the immediate value when the current value changes" name="useDebouncedValue() updates the immediate value when the current value changes" time="0.005">
3570
+ </testcase>
3571
+ <testcase classname="useDebouncedValue() calls the onChange handler" name="useDebouncedValue() calls the onChange handler" time="0.003">
3572
+ </testcase>
3573
+ <testcase classname="useDebouncedValue() when the initial value is falsey and the current value changes to be truthy updates the immediate value" name="useDebouncedValue() when the initial value is falsey and the current value changes to be truthy updates the immediate value" time="0.006">
3574
+ </testcase>
3575
+ </testsuite>
3576
+ <testsuite name="dateUtils" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:55" time="0.828" tests="11">
3577
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (-) current timezone &gt; (-) target timezone (no DST)" name="dateUtils applyTimezoneOffsetToDate with a (-) current timezone &gt; (-) target timezone (no DST)" time="0.006">
3578
+ </testcase>
3579
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (-) current timezone &gt; (-) target timezone (DST)" name="dateUtils applyTimezoneOffsetToDate with a (-) current timezone &gt; (-) target timezone (DST)" time="0.001">
3580
+ </testcase>
3581
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (-) current timezone &lt; (-) target timezone" name="dateUtils applyTimezoneOffsetToDate with a (-) current timezone &lt; (-) target timezone" time="0.002">
3582
+ </testcase>
3583
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (+) current timezone &lt; (+) target timezone" name="dateUtils applyTimezoneOffsetToDate with a (+) current timezone &lt; (+) target timezone" time="0.001">
3584
+ </testcase>
3585
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (+) current timezone (DST) &gt; (+) target timezone" name="dateUtils applyTimezoneOffsetToDate with a (+) current timezone (DST) &gt; (+) target timezone" time="0.002">
3586
+ </testcase>
3587
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (+) current timezone (no DST) &gt; (+) target timezone" name="dateUtils applyTimezoneOffsetToDate with a (+) current timezone (no DST) &gt; (+) target timezone" time="0.001">
3588
+ </testcase>
3589
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (-) current timezone and (+) target timezone" name="dateUtils applyTimezoneOffsetToDate with a (-) current timezone and (+) target timezone" time="0.001">
3590
+ </testcase>
3591
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with a (+) current timezone and (-) target timezone" name="dateUtils applyTimezoneOffsetToDate with a (+) current timezone and (-) target timezone" time="0.001">
3592
+ </testcase>
3593
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with same (-) current and target timezones" name="dateUtils applyTimezoneOffsetToDate with same (-) current and target timezones" time="0.001">
3594
+ </testcase>
3595
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with same (+) current and target timezones" name="dateUtils applyTimezoneOffsetToDate with same (+) current and target timezones" time="0.001">
3596
+ </testcase>
3597
+ <testcase classname="dateUtils applyTimezoneOffsetToDate with same 00:00 current and target timezones" name="dateUtils applyTimezoneOffsetToDate with same 00:00 current and target timezones" time="0.001">
3598
+ </testcase>
3599
+ </testsuite>
3600
+ <testsuite name="svgSettings()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:56" time="0.517" tests="10">
3601
+ <testcase classname="svgSettings() handles &quot;SetEncodedImage&quot; actions" name="svgSettings() handles &quot;SetEncodedImage&quot; actions" time="0.001">
3602
+ </testcase>
3603
+ <testcase classname="svgSettings() handles &quot;SetEncodedImageType&quot; actions" name="svgSettings() handles &quot;SetEncodedImageType&quot; actions" time="0.001">
3604
+ </testcase>
3605
+ <testcase classname="svgSettings() handles &quot;SetEncodedImageName&quot; actions" name="svgSettings() handles &quot;SetEncodedImageName&quot; actions" time="0">
3606
+ </testcase>
3607
+ <testcase classname="svgSettings() handles &quot;SetX&quot;" name="svgSettings() handles &quot;SetX&quot;" time="0.001">
3608
+ </testcase>
3609
+ <testcase classname="svgSettings() handles &quot;SetY&quot;" name="svgSettings() handles &quot;SetY&quot;" time="0">
3610
+ </testcase>
3611
+ <testcase classname="svgSettings() handles &quot;SetWidth&quot;" name="svgSettings() handles &quot;SetWidth&quot;" time="0.001">
3612
+ </testcase>
3613
+ <testcase classname="svgSettings() handles &quot;SetHeight&quot;" name="svgSettings() handles &quot;SetHeight&quot;" time="0">
3614
+ </testcase>
3615
+ <testcase classname="svgSettings() handles &quot;SetTranslateX&quot;" name="svgSettings() handles &quot;SetTranslateX&quot;" time="0.001">
3616
+ </testcase>
3617
+ <testcase classname="svgSettings() handles &quot;SetTranslateY&quot;" name="svgSettings() handles &quot;SetTranslateY&quot;" time="0">
3618
+ </testcase>
3619
+ <testcase classname="svgSettings() with an unrecognized action does not modify the state" name="svgSettings() with an unrecognized action does not modify the state" time="0.001">
3620
+ </testcase>
3621
+ </testsuite>
3622
+ <testsuite name="advancedPreference" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:56" time="0.201" tests="4">
3623
+ <testcase classname="advancedPreference isSet returns false if the default key is not set to true" name="advancedPreference isSet returns false if the default key is not set to true" time="0.001">
3624
+ </testcase>
3625
+ <testcase classname="advancedPreference isSet returns true if the default key is set to true" name="advancedPreference isSet returns true if the default key is set to true" time="0.001">
3626
+ </testcase>
3627
+ <testcase classname="advancedPreference set sets the default key value to true" name="advancedPreference set sets the default key value to true" time="0">
3628
+ </testcase>
3629
+ <testcase classname="advancedPreference clear removes the default key from the store" name="advancedPreference clear removes the default key from the store" time="0.001">
3630
+ </testcase>
3631
+ </testsuite>
3632
+ <testsuite name="defaultTinymceConfig" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:57" time="0.271" tests="2">
3633
+ <testcase classname="defaultTinymceConfig when allowed html tags and attributes have been established with valid_elements and extended_valid_elements matches the expected list" name="defaultTinymceConfig when allowed html tags and attributes have been established with valid_elements and extended_valid_elements matches the expected list" time="0">
3634
+ </testcase>
3635
+ <testcase classname="defaultTinymceConfig when tags and attributes that are not allowed in tinymce have been established does not match on any in not allowed array" name="defaultTinymceConfig when tags and attributes that are not allowed in tinymce have been established does not match on any in not allowed array" time="0.011">
3636
+ </testcase>
3637
+ </testsuite>
3638
+ <testsuite name="userOS" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:57" time="0.497" tests="6">
3639
+ <testcase classname="userOS when the user is running a Mac OS determineUserOS returns Mac" name="userOS when the user is running a Mac OS determineUserOS returns Mac" time="0.001">
3640
+ </testcase>
3641
+ <testcase classname="userOS when the user is running a Mac OS determineOSDependentKey returns the correct value" name="userOS when the user is running a Mac OS determineOSDependentKey returns the correct value" time="0">
3642
+ </testcase>
3643
+ <testcase classname="userOS when the user is running a Windows OS determineUserOS returns Windows" name="userOS when the user is running a Windows OS determineUserOS returns Windows" time="0">
3644
+ </testcase>
3645
+ <testcase classname="userOS when the user is running a Windows OS determineOSDependentKey returns the correct value" name="userOS when the user is running a Windows OS determineOSDependentKey returns the correct value" time="0">
3646
+ </testcase>
3647
+ <testcase classname="userOS when the user is running something other than Mac or Windows determineUserOS returns Other" name="userOS when the user is running something other than Mac or Windows determineUserOS returns Other" time="0">
3648
+ </testcase>
3649
+ <testcase classname="userOS when the user is running something other than Mac or Windows determineOSDependentKey returns the correct value" name="userOS when the user is running something other than Mac or Windows determineOSDependentKey returns the correct value" time="0">
3650
+ </testcase>
3651
+ </testsuite>
3652
+ <testsuite name="icon validation" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:57" time="0.191" tests="13">
3653
+ <testcase classname="icon validation hasBackgroundColor is false if the icon has no background color" name="icon validation hasBackgroundColor is false if the icon has no background color" time="0">
3654
+ </testcase>
3655
+ <testcase classname="icon validation hasBackgroundColor is true if the icon has a background color" name="icon validation hasBackgroundColor is true if the icon has a background color" time="0.001">
3656
+ </testcase>
3657
+ <testcase classname="icon validation hasText is false if the icon has no text" name="icon validation hasText is false if the icon has no text" time="0">
3658
+ </testcase>
3659
+ <testcase classname="icon validation hasText is true if the icon has text" name="icon validation hasText is true if the icon has text" time="0.001">
3660
+ </testcase>
3661
+ <testcase classname="icon validation hasImage is false if the icon has no image" name="icon validation hasImage is false if the icon has no image" time="0">
3662
+ </testcase>
3663
+ <testcase classname="icon validation hasImage is true if the icon has an image" name="icon validation hasImage is true if the icon has an image" time="0.001">
3664
+ </testcase>
3665
+ <testcase classname="icon validation hasOutline is false if the outline size is none" name="icon validation hasOutline is false if the outline size is none" time="0">
3666
+ </testcase>
3667
+ <testcase classname="icon validation hasOutline is true if the outline size is not none" name="icon validation hasOutline is true if the outline size is not none" time="0">
3668
+ </testcase>
3669
+ <testcase classname="icon validation validIcon is false if none of the criteria are met" name="icon validation validIcon is false if none of the criteria are met" time="0">
3670
+ </testcase>
3671
+ <testcase classname="icon validation validIcon is true if the icon has a background color" name="icon validation validIcon is true if the icon has a background color" time="0">
3672
+ </testcase>
3673
+ <testcase classname="icon validation validIcon is true if the icon has text" name="icon validation validIcon is true if the icon has text" time="0.001">
3674
+ </testcase>
3675
+ <testcase classname="icon validation validIcon is true if the icon has an image" name="icon validation validIcon is true if the icon has an image" time="0">
3676
+ </testcase>
3677
+ <testcase classname="icon validation validIcon is true if the icon outline size is not none" name="icon validation validIcon is true if the icon outline size is not none" time="0">
3678
+ </testcase>
3679
+ </testsuite>
3680
+ <testsuite name="buildError()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:58" time="0.292" tests="8">
3681
+ <testcase classname="buildError() when the errorContext indicates a quota issue yields the appropriate error message" name="buildError() when the errorContext indicates a quota issue yields the appropriate error message" time="0.001">
3682
+ </testcase>
3683
+ <testcase classname="buildError() when the errorContext indicates a quota issue yields an error variant" name="buildError() when the errorContext indicates a quota issue yields an error variant" time="0">
3684
+ </testcase>
3685
+ <testcase classname="buildError() when the error indicates a caption size issue yields the appropriate error message" name="buildError() when the error indicates a caption size issue yields the appropriate error message" time="0.001">
3686
+ </testcase>
3687
+ <testcase classname="buildError() when the error indicates a caption size issue yields an error variant" name="buildError() when the error indicates a caption size issue yields an error variant" time="0">
3688
+ </testcase>
3689
+ <testcase classname="buildError() when the errorContext indicates captions file failed to save yields the appropriate error message" name="buildError() when the errorContext indicates captions file failed to save yields the appropriate error message" time="0.001">
3690
+ </testcase>
3691
+ <testcase classname="buildError() when the errorContext indicates captions file failed to save yields an error variant" name="buildError() when the errorContext indicates captions file failed to save yields an error variant" time="0">
3692
+ </testcase>
3693
+ <testcase classname="buildError() when the the errorContext and error don&apos;t match an error class yields the default error message" name="buildError() when the the errorContext and error don&apos;t match an error class yields the default error message" time="0.001">
3694
+ </testcase>
3695
+ <testcase classname="buildError() when the the errorContext and error don&apos;t match an error class yields an error variant" name="buildError() when the the errorContext and error don&apos;t match an error class yields an error variant" time="0">
3696
+ </testcase>
3697
+ </testsuite>
3698
+ <testsuite name="RCEGlobals" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:58" time="0.507" tests="6">
3699
+ <testcase classname="RCEGlobals features sets the global features exactly once" name="RCEGlobals features sets the global features exactly once" time="0">
3700
+ </testcase>
3701
+ <testcase classname="RCEGlobals features returns the features" name="RCEGlobals features returns the features" time="0.001">
3702
+ </testcase>
3703
+ <testcase classname="RCEGlobals features does not allow modfication of features directly" name="RCEGlobals features does not allow modfication of features directly" time="0.005">
3704
+ </testcase>
3705
+ <testcase classname="RCEGlobals config sets the global config exactly once" name="RCEGlobals config sets the global config exactly once" time="0.001">
3706
+ </testcase>
3707
+ <testcase classname="RCEGlobals config returns the config" name="RCEGlobals config returns the config" time="0">
3708
+ </testcase>
3709
+ <testcase classname="RCEGlobals config does not allow modfication of config directly" name="RCEGlobals config does not allow modfication of config directly" time="0.001">
3710
+ </testcase>
3711
+ </testsuite>
3712
+ <testsuite name="AlertHandler" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:58" time="0.189" tests="2">
3713
+ <testcase classname="AlertHandler handleAlert throws an error if alertFun hasn&apos;t been set" name="AlertHandler handleAlert throws an error if alertFun hasn&apos;t been set" time="0.005">
3714
+ </testcase>
3715
+ <testcase classname="AlertHandler handleAlert calls alertFunc when it has been set" name="AlertHandler handleAlert calls alertFunc when it has been set" time="0">
3716
+ </testcase>
3717
+ </testsuite>
3718
+ <testsuite name="buildDownloadUrl()" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:59" time="0.308" tests="4">
3719
+ <testcase classname="buildDownloadUrl() when url is blank throws an error" name="buildDownloadUrl() when url is blank throws an error" time="0.001">
3720
+ </testcase>
3721
+ <testcase classname="buildDownloadUrl() when url is relative throws an error" name="buildDownloadUrl() when url is relative throws an error" time="0">
3722
+ </testcase>
3723
+ <testcase classname="buildDownloadUrl() when url is absolute when the url contains query params adds the new param and leaves the existing params" name="buildDownloadUrl() when url is absolute when the url contains query params adds the new param and leaves the existing params" time="0.002">
3724
+ </testcase>
3725
+ <testcase classname="buildDownloadUrl() when url is absolute when the url has no query params creates a new query string and adds the new param" name="buildDownloadUrl() when url is absolute when the url has no query params creates a new query string and adds the new param" time="0.001">
3726
+ </testcase>
3727
+ </testsuite>
3728
+ <testsuite name="checkerboardStyle" errors="0" failures="0" skipped="0" timestamp="2022-09-14T15:38:59" time="0.457" tests="2">
3729
+ <testcase classname="checkerboardStyle creates 4px squares when passed squareSize 4" name="checkerboardStyle creates 4px squares when passed squareSize 4" time="0.001">
3730
+ </testcase>
3731
+ <testcase classname="checkerboardStyle creates 8px squares when passed squareSize 8" name="checkerboardStyle creates 8px squares when passed squareSize 8" time="0">
3732
+ </testcase>
3733
+ </testsuite>
3
3734
  </testsuites>