@instructure/canvas-rce 5.1.2-alpha.7 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DEVELOPMENT.md +1 -1
- package/canvas/lib/defaultTinymceConfig.js +1 -1
- package/canvas/lib/rce/RCEWrapper.js +2 -2
- package/canvas/lib/rce/editorLanguage.js +1 -0
- package/canvas/lib/rce/normalizeLocale.js +1 -1
- package/canvas/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/canvas/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/canvas/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/canvas/lib/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/canvas/lib/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/canvas/lib/rce/plugins/instructure_image/ImageEmbedOptions.js +19 -5
- package/canvas/lib/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -3
- package/canvas/lib/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +166 -0
- package/canvas/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +172 -0
- package/canvas/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +1 -1
- package/canvas/lib/rce/plugins/instructure_record/plugin.js +21 -3
- package/canvas/lib/rce/plugins/shared/ContentSelection.js +48 -8
- package/canvas/lib/rce/plugins/shared/DimensionsInput/index.js +74 -17
- package/canvas/lib/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/canvas/lib/rce/plugins/shared/ImageOptionsForm.js +2 -1
- package/canvas/lib/translations/locales/ar.js +18 -0
- package/canvas/lib/translations/locales/ca.js +18 -0
- package/canvas/lib/translations/locales/cy.js +18 -0
- package/canvas/lib/translations/locales/da-x-k12.js +21 -0
- package/canvas/lib/translations/locales/da.js +18 -0
- package/canvas/lib/translations/locales/de.js +18 -0
- package/canvas/lib/translations/locales/el.js +3 -0
- package/canvas/lib/translations/locales/en-AU-x-unimelb.js +18 -0
- package/canvas/lib/translations/locales/en-GB-x-ukhe.js +18 -0
- package/canvas/lib/translations/locales/en.js +30 -0
- package/canvas/lib/translations/locales/en_AU.js +18 -0
- package/canvas/lib/translations/locales/en_CA.js +21 -0
- package/canvas/lib/translations/locales/en_CY.js +18 -0
- package/canvas/lib/translations/locales/en_GB.js +18 -0
- package/canvas/lib/translations/locales/es.js +18 -0
- package/canvas/lib/translations/locales/es_ES.js +18 -0
- package/canvas/lib/translations/locales/fa_IR.js +3 -0
- package/canvas/lib/translations/locales/fi.js +18 -0
- package/canvas/lib/translations/locales/fr.js +18 -0
- package/canvas/lib/translations/locales/fr_CA.js +18 -0
- package/canvas/lib/translations/locales/he.js +3 -0
- package/canvas/lib/translations/locales/ht.js +18 -0
- package/canvas/lib/translations/locales/hu.js +3 -0
- package/canvas/lib/translations/locales/hy.js +3 -0
- package/canvas/lib/translations/locales/is.js +18 -0
- package/canvas/lib/translations/locales/it.js +18 -0
- package/canvas/lib/translations/locales/ja.js +18 -0
- package/canvas/lib/translations/locales/ko.js +3 -0
- package/canvas/lib/translations/locales/nb-x-k12.js +21 -0
- package/canvas/lib/translations/locales/nb.js +18 -0
- package/canvas/lib/translations/locales/nl.js +18 -0
- package/canvas/lib/translations/locales/nn.js +15 -0
- package/canvas/lib/translations/locales/pl.js +18 -0
- package/canvas/lib/translations/locales/pt.js +20 -2
- package/canvas/lib/translations/locales/pt_BR.js +18 -0
- package/canvas/lib/translations/locales/ru.js +18 -0
- package/canvas/lib/translations/locales/sl.js +18 -0
- package/canvas/lib/translations/locales/sv-x-k12.js +21 -0
- package/canvas/lib/translations/locales/sv.js +18 -0
- package/canvas/lib/translations/locales/th.js +20 -0
- package/canvas/lib/translations/locales/tr.js +3 -0
- package/canvas/lib/translations/locales/uk_UA.js +3 -0
- package/canvas/lib/translations/locales/zh-Hans.js +18 -0
- package/canvas/lib/translations/locales/zh-Hant.js +18 -0
- package/canvas/lib/translations/locales/zh.js +18 -0
- package/canvas/lib/translations/locales/zh_HK.js +18 -0
- package/canvas/lib/translations/tinymce/th.js +481 -0
- package/canvas/package.json +5 -5
- package/coverage/canvas-rce-jest.xml +1367 -1188
- package/es/defaultTinymceConfig.js +1 -1
- package/es/rce/RCEWrapper.js +2 -2
- package/es/rce/editorLanguage.js +1 -0
- package/es/rce/normalizeLocale.js +1 -1
- package/es/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/es/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/es/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/es/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/es/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/es/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/es/rce/plugins/instructure_record/plugin.js +22 -5
- package/es/rce/plugins/shared/ContentSelection.js +44 -8
- package/es/rce/plugins/shared/DimensionsInput/index.js +74 -17
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/es/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/es/translations/locales/ar.js +18 -0
- package/es/translations/locales/ca.js +18 -0
- package/es/translations/locales/cy.js +18 -0
- package/es/translations/locales/da-x-k12.js +21 -0
- package/es/translations/locales/da.js +18 -0
- package/es/translations/locales/de.js +18 -0
- package/es/translations/locales/el.js +3 -0
- package/es/translations/locales/en-AU-x-unimelb.js +18 -0
- package/es/translations/locales/en-GB-x-ukhe.js +18 -0
- package/es/translations/locales/en.js +30 -0
- package/es/translations/locales/en_AU.js +18 -0
- package/es/translations/locales/en_CA.js +21 -0
- package/es/translations/locales/en_CY.js +18 -0
- package/es/translations/locales/en_GB.js +18 -0
- package/es/translations/locales/es.js +18 -0
- package/es/translations/locales/es_ES.js +18 -0
- package/es/translations/locales/fa_IR.js +3 -0
- package/es/translations/locales/fi.js +18 -0
- package/es/translations/locales/fr.js +18 -0
- package/es/translations/locales/fr_CA.js +18 -0
- package/es/translations/locales/he.js +3 -0
- package/es/translations/locales/ht.js +18 -0
- package/es/translations/locales/hu.js +3 -0
- package/es/translations/locales/hy.js +3 -0
- package/es/translations/locales/is.js +18 -0
- package/es/translations/locales/it.js +18 -0
- package/es/translations/locales/ja.js +18 -0
- package/es/translations/locales/ko.js +3 -0
- package/es/translations/locales/nb-x-k12.js +21 -0
- package/es/translations/locales/nb.js +18 -0
- package/es/translations/locales/nl.js +18 -0
- package/es/translations/locales/nn.js +15 -0
- package/es/translations/locales/pl.js +18 -0
- package/es/translations/locales/pt.js +20 -2
- package/es/translations/locales/pt_BR.js +18 -0
- package/es/translations/locales/ru.js +18 -0
- package/es/translations/locales/sl.js +18 -0
- package/es/translations/locales/sv-x-k12.js +21 -0
- package/es/translations/locales/sv.js +18 -0
- package/es/translations/locales/th.js +19 -0
- package/es/translations/locales/tr.js +3 -0
- package/es/translations/locales/uk_UA.js +3 -0
- package/es/translations/locales/zh-Hans.js +18 -0
- package/es/translations/locales/zh-Hant.js +18 -0
- package/es/translations/locales/zh.js +18 -0
- package/es/translations/locales/zh_HK.js +18 -0
- package/es/translations/tinymce/th.js +479 -0
- package/lib/defaultTinymceConfig.js +1 -1
- package/lib/rce/RCEWrapper.js +2 -2
- package/lib/rce/editorLanguage.js +1 -0
- package/lib/rce/normalizeLocale.js +1 -1
- package/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/rce/plugins/instructure_image/ImageEmbedOptions.js +19 -5
- package/lib/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -3
- package/lib/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +166 -0
- package/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +172 -0
- package/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +1 -1
- package/lib/rce/plugins/instructure_record/plugin.js +21 -3
- package/lib/rce/plugins/shared/ContentSelection.js +48 -8
- package/lib/rce/plugins/shared/DimensionsInput/index.js +74 -17
- package/lib/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/rce/plugins/shared/ImageOptionsForm.js +2 -1
- package/lib/translated/ar/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ar/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ar/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ar/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ar/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ar/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ar/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ar/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ar/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ar/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ar/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ar/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ar/modules/translations/locales/da.js +18 -0
- package/lib/translated/ar/modules/translations/locales/de.js +18 -0
- package/lib/translated/ar/modules/translations/locales/el.js +3 -0
- package/lib/translated/ar/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en.js +30 -0
- package/lib/translated/ar/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ar/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ar/modules/translations/locales/es.js +18 -0
- package/lib/translated/ar/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ar/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ar/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ar/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ar/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ar/modules/translations/locales/he.js +3 -0
- package/lib/translated/ar/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ar/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ar/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ar/modules/translations/locales/is.js +18 -0
- package/lib/translated/ar/modules/translations/locales/it.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ar/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ar/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ar/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ar/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ar/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ar/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ar/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ar/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ar/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ar/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ar/modules/translations/locales/th.js +19 -0
- package/lib/translated/ar/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ar/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ar/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ar/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ar/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ar/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ar/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ca/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ca/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ca/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ca/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ca/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ca/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ca/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ca/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ca/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ca/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ca/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ca/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ca/modules/translations/locales/da.js +18 -0
- package/lib/translated/ca/modules/translations/locales/de.js +18 -0
- package/lib/translated/ca/modules/translations/locales/el.js +3 -0
- package/lib/translated/ca/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en.js +30 -0
- package/lib/translated/ca/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ca/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ca/modules/translations/locales/es.js +18 -0
- package/lib/translated/ca/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ca/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ca/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ca/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ca/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ca/modules/translations/locales/he.js +3 -0
- package/lib/translated/ca/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ca/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ca/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ca/modules/translations/locales/is.js +18 -0
- package/lib/translated/ca/modules/translations/locales/it.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ca/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ca/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ca/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ca/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ca/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ca/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ca/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ca/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ca/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ca/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ca/modules/translations/locales/th.js +19 -0
- package/lib/translated/ca/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ca/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ca/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ca/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ca/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ca/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ca/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/cy/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/cy/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/cy/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/cy/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/cy/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/cy/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/cy/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/cy/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/cy/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/cy/modules/translations/locales/ar.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ca.js +18 -0
- package/lib/translated/cy/modules/translations/locales/cy.js +18 -0
- package/lib/translated/cy/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/cy/modules/translations/locales/da.js +18 -0
- package/lib/translated/cy/modules/translations/locales/de.js +18 -0
- package/lib/translated/cy/modules/translations/locales/el.js +3 -0
- package/lib/translated/cy/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en.js +30 -0
- package/lib/translated/cy/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/cy/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/cy/modules/translations/locales/es.js +18 -0
- package/lib/translated/cy/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/cy/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/cy/modules/translations/locales/fi.js +18 -0
- package/lib/translated/cy/modules/translations/locales/fr.js +18 -0
- package/lib/translated/cy/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/cy/modules/translations/locales/he.js +3 -0
- package/lib/translated/cy/modules/translations/locales/ht.js +18 -0
- package/lib/translated/cy/modules/translations/locales/hu.js +3 -0
- package/lib/translated/cy/modules/translations/locales/hy.js +3 -0
- package/lib/translated/cy/modules/translations/locales/is.js +18 -0
- package/lib/translated/cy/modules/translations/locales/it.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ja.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ko.js +3 -0
- package/lib/translated/cy/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/cy/modules/translations/locales/nb.js +18 -0
- package/lib/translated/cy/modules/translations/locales/nl.js +18 -0
- package/lib/translated/cy/modules/translations/locales/nn.js +15 -0
- package/lib/translated/cy/modules/translations/locales/pl.js +18 -0
- package/lib/translated/cy/modules/translations/locales/pt.js +20 -2
- package/lib/translated/cy/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ru.js +18 -0
- package/lib/translated/cy/modules/translations/locales/sl.js +18 -0
- package/lib/translated/cy/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/cy/modules/translations/locales/sv.js +18 -0
- package/lib/translated/cy/modules/translations/locales/th.js +19 -0
- package/lib/translated/cy/modules/translations/locales/tr.js +3 -0
- package/lib/translated/cy/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/cy/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/cy/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/cy/modules/translations/locales/zh.js +18 -0
- package/lib/translated/cy/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/cy/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/da/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/da/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/da/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/da/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/da/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/da/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/da/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/da/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/da/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/da/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/da/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/da/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/da/modules/translations/locales/ar.js +18 -0
- package/lib/translated/da/modules/translations/locales/ca.js +18 -0
- package/lib/translated/da/modules/translations/locales/cy.js +18 -0
- package/lib/translated/da/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/da/modules/translations/locales/da.js +18 -0
- package/lib/translated/da/modules/translations/locales/de.js +18 -0
- package/lib/translated/da/modules/translations/locales/el.js +3 -0
- package/lib/translated/da/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/da/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/da/modules/translations/locales/en.js +30 -0
- package/lib/translated/da/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/da/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/da/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/da/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/da/modules/translations/locales/es.js +18 -0
- package/lib/translated/da/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/da/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/da/modules/translations/locales/fi.js +18 -0
- package/lib/translated/da/modules/translations/locales/fr.js +18 -0
- package/lib/translated/da/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/da/modules/translations/locales/he.js +3 -0
- package/lib/translated/da/modules/translations/locales/ht.js +18 -0
- package/lib/translated/da/modules/translations/locales/hu.js +3 -0
- package/lib/translated/da/modules/translations/locales/hy.js +3 -0
- package/lib/translated/da/modules/translations/locales/is.js +18 -0
- package/lib/translated/da/modules/translations/locales/it.js +18 -0
- package/lib/translated/da/modules/translations/locales/ja.js +18 -0
- package/lib/translated/da/modules/translations/locales/ko.js +3 -0
- package/lib/translated/da/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/da/modules/translations/locales/nb.js +18 -0
- package/lib/translated/da/modules/translations/locales/nl.js +18 -0
- package/lib/translated/da/modules/translations/locales/nn.js +15 -0
- package/lib/translated/da/modules/translations/locales/pl.js +18 -0
- package/lib/translated/da/modules/translations/locales/pt.js +20 -2
- package/lib/translated/da/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/da/modules/translations/locales/ru.js +18 -0
- package/lib/translated/da/modules/translations/locales/sl.js +18 -0
- package/lib/translated/da/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/da/modules/translations/locales/sv.js +18 -0
- package/lib/translated/da/modules/translations/locales/th.js +19 -0
- package/lib/translated/da/modules/translations/locales/tr.js +3 -0
- package/lib/translated/da/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/da/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/da/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/da/modules/translations/locales/zh.js +18 -0
- package/lib/translated/da/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/da/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/da-x-k12/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/da-x-k12/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/da-x-k12/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/da-x-k12/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/PreviewIcon.js +1 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/da-x-k12/modules/translations/locales/ar.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ca.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/cy.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/da.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/de.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/el.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en.js +30 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/es.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fi.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fr.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/he.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ht.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/hu.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/hy.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/is.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/it.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ja.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ko.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nb.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nl.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nn.js +15 -0
- package/lib/translated/da-x-k12/modules/translations/locales/pl.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/pt.js +20 -2
- package/lib/translated/da-x-k12/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ru.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/sl.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/sv.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/th.js +19 -0
- package/lib/translated/da-x-k12/modules/translations/locales/tr.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/de/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/de/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/de/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/de/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/de/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/de/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/de/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/de/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/de/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/de/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/de/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/de/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/de/modules/translations/locales/ar.js +18 -0
- package/lib/translated/de/modules/translations/locales/ca.js +18 -0
- package/lib/translated/de/modules/translations/locales/cy.js +18 -0
- package/lib/translated/de/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/de/modules/translations/locales/da.js +18 -0
- package/lib/translated/de/modules/translations/locales/de.js +18 -0
- package/lib/translated/de/modules/translations/locales/el.js +3 -0
- package/lib/translated/de/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/de/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/de/modules/translations/locales/en.js +30 -0
- package/lib/translated/de/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/de/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/de/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/de/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/de/modules/translations/locales/es.js +18 -0
- package/lib/translated/de/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/de/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/de/modules/translations/locales/fi.js +18 -0
- package/lib/translated/de/modules/translations/locales/fr.js +18 -0
- package/lib/translated/de/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/de/modules/translations/locales/he.js +3 -0
- package/lib/translated/de/modules/translations/locales/ht.js +18 -0
- package/lib/translated/de/modules/translations/locales/hu.js +3 -0
- package/lib/translated/de/modules/translations/locales/hy.js +3 -0
- package/lib/translated/de/modules/translations/locales/is.js +18 -0
- package/lib/translated/de/modules/translations/locales/it.js +18 -0
- package/lib/translated/de/modules/translations/locales/ja.js +18 -0
- package/lib/translated/de/modules/translations/locales/ko.js +3 -0
- package/lib/translated/de/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/de/modules/translations/locales/nb.js +18 -0
- package/lib/translated/de/modules/translations/locales/nl.js +18 -0
- package/lib/translated/de/modules/translations/locales/nn.js +15 -0
- package/lib/translated/de/modules/translations/locales/pl.js +18 -0
- package/lib/translated/de/modules/translations/locales/pt.js +20 -2
- package/lib/translated/de/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/de/modules/translations/locales/ru.js +18 -0
- package/lib/translated/de/modules/translations/locales/sl.js +18 -0
- package/lib/translated/de/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/de/modules/translations/locales/sv.js +18 -0
- package/lib/translated/de/modules/translations/locales/th.js +19 -0
- package/lib/translated/de/modules/translations/locales/tr.js +3 -0
- package/lib/translated/de/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/de/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/de/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/de/modules/translations/locales/zh.js +18 -0
- package/lib/translated/de/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/de/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/el/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/el/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/el/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/el/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/el/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/el/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/el/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/el/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/el/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/el/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/el/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/el/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/el/modules/translations/locales/ar.js +18 -0
- package/lib/translated/el/modules/translations/locales/ca.js +18 -0
- package/lib/translated/el/modules/translations/locales/cy.js +18 -0
- package/lib/translated/el/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/el/modules/translations/locales/da.js +18 -0
- package/lib/translated/el/modules/translations/locales/de.js +18 -0
- package/lib/translated/el/modules/translations/locales/el.js +3 -0
- package/lib/translated/el/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/el/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/el/modules/translations/locales/en.js +30 -0
- package/lib/translated/el/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/el/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/el/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/el/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/el/modules/translations/locales/es.js +18 -0
- package/lib/translated/el/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/el/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/el/modules/translations/locales/fi.js +18 -0
- package/lib/translated/el/modules/translations/locales/fr.js +18 -0
- package/lib/translated/el/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/el/modules/translations/locales/he.js +3 -0
- package/lib/translated/el/modules/translations/locales/ht.js +18 -0
- package/lib/translated/el/modules/translations/locales/hu.js +3 -0
- package/lib/translated/el/modules/translations/locales/hy.js +3 -0
- package/lib/translated/el/modules/translations/locales/is.js +18 -0
- package/lib/translated/el/modules/translations/locales/it.js +18 -0
- package/lib/translated/el/modules/translations/locales/ja.js +18 -0
- package/lib/translated/el/modules/translations/locales/ko.js +3 -0
- package/lib/translated/el/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/el/modules/translations/locales/nb.js +18 -0
- package/lib/translated/el/modules/translations/locales/nl.js +18 -0
- package/lib/translated/el/modules/translations/locales/nn.js +15 -0
- package/lib/translated/el/modules/translations/locales/pl.js +18 -0
- package/lib/translated/el/modules/translations/locales/pt.js +20 -2
- package/lib/translated/el/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/el/modules/translations/locales/ru.js +18 -0
- package/lib/translated/el/modules/translations/locales/sl.js +18 -0
- package/lib/translated/el/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/el/modules/translations/locales/sv.js +18 -0
- package/lib/translated/el/modules/translations/locales/th.js +19 -0
- package/lib/translated/el/modules/translations/locales/tr.js +3 -0
- package/lib/translated/el/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/el/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/el/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/el/modules/translations/locales/zh.js +18 -0
- package/lib/translated/el/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/el/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en/modules/translations/locales/da.js +18 -0
- package/lib/translated/en/modules/translations/locales/de.js +18 -0
- package/lib/translated/en/modules/translations/locales/el.js +3 -0
- package/lib/translated/en/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en/modules/translations/locales/en.js +30 -0
- package/lib/translated/en/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en/modules/translations/locales/es.js +18 -0
- package/lib/translated/en/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en/modules/translations/locales/he.js +3 -0
- package/lib/translated/en/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en/modules/translations/locales/is.js +18 -0
- package/lib/translated/en/modules/translations/locales/it.js +18 -0
- package/lib/translated/en/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en/modules/translations/locales/th.js +19 -0
- package/lib/translated/en/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en-AU-x-unimelb/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en-AU-x-unimelb/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/da.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/de.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/el.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en.js +30 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/es.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/he.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/is.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/it.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/th.js +19 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en-GB-x-ukhe/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en-GB-x-ukhe/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/da.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/de.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/el.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en.js +30 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/es.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/he.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/is.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/it.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/th.js +19 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_AU/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_AU/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_AU/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_AU/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_AU/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_AU/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_AU/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_AU/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_AU/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_AU/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_AU/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_AU/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_CA/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_CA/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_CA/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_CA/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_CA/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_CA/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_CA/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_CA/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_CA/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_CA/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_CA/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_CA/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_CY/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_CY/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_CY/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_CY/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_CY/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_CY/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_CY/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_CY/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_CY/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_CY/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_CY/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_CY/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_GB/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_GB/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_GB/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_GB/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_GB/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_GB/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_GB/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_GB/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_GB/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_GB/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_GB/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_GB/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/es/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/es/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/es/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/es/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/es/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/es/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/es/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/es/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/es/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/es/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/es/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/es/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/es/modules/translations/locales/ar.js +18 -0
- package/lib/translated/es/modules/translations/locales/ca.js +18 -0
- package/lib/translated/es/modules/translations/locales/cy.js +18 -0
- package/lib/translated/es/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/es/modules/translations/locales/da.js +18 -0
- package/lib/translated/es/modules/translations/locales/de.js +18 -0
- package/lib/translated/es/modules/translations/locales/el.js +3 -0
- package/lib/translated/es/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/es/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/es/modules/translations/locales/en.js +30 -0
- package/lib/translated/es/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/es/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/es/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/es/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/es/modules/translations/locales/es.js +18 -0
- package/lib/translated/es/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/es/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/es/modules/translations/locales/fi.js +18 -0
- package/lib/translated/es/modules/translations/locales/fr.js +18 -0
- package/lib/translated/es/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/es/modules/translations/locales/he.js +3 -0
- package/lib/translated/es/modules/translations/locales/ht.js +18 -0
- package/lib/translated/es/modules/translations/locales/hu.js +3 -0
- package/lib/translated/es/modules/translations/locales/hy.js +3 -0
- package/lib/translated/es/modules/translations/locales/is.js +18 -0
- package/lib/translated/es/modules/translations/locales/it.js +18 -0
- package/lib/translated/es/modules/translations/locales/ja.js +18 -0
- package/lib/translated/es/modules/translations/locales/ko.js +3 -0
- package/lib/translated/es/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/es/modules/translations/locales/nb.js +18 -0
- package/lib/translated/es/modules/translations/locales/nl.js +18 -0
- package/lib/translated/es/modules/translations/locales/nn.js +15 -0
- package/lib/translated/es/modules/translations/locales/pl.js +18 -0
- package/lib/translated/es/modules/translations/locales/pt.js +20 -2
- package/lib/translated/es/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/es/modules/translations/locales/ru.js +18 -0
- package/lib/translated/es/modules/translations/locales/sl.js +18 -0
- package/lib/translated/es/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/es/modules/translations/locales/sv.js +18 -0
- package/lib/translated/es/modules/translations/locales/th.js +19 -0
- package/lib/translated/es/modules/translations/locales/tr.js +3 -0
- package/lib/translated/es/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/es/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/es/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/es/modules/translations/locales/zh.js +18 -0
- package/lib/translated/es/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/es/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/es_ES/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/es_ES/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/es_ES/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/es_ES/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/es_ES/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/es_ES/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/es_ES/modules/translations/locales/ar.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ca.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/cy.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/da.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/de.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/el.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en.js +30 -0
- package/lib/translated/es_ES/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/es.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/fi.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/fr.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/he.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/ht.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/hu.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/hy.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/is.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/it.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ja.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ko.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/nb.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/nl.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/nn.js +15 -0
- package/lib/translated/es_ES/modules/translations/locales/pl.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/pt.js +20 -2
- package/lib/translated/es_ES/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ru.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/sl.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/sv.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/th.js +19 -0
- package/lib/translated/es_ES/modules/translations/locales/tr.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/zh.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/es_ES/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fa_IR/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fa_IR/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fa_IR/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fa_IR/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fa_IR/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fa_IR/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fa_IR/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/da.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/de.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/el.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en.js +30 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/es.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/he.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/is.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/it.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fa_IR/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fa_IR/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/th.js +19 -0
- package/lib/translated/fa_IR/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fa_IR/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fi/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fi/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fi/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fi/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fi/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fi/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fi/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fi/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fi/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fi/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fi/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fi/modules/translations/locales/da.js +18 -0
- package/lib/translated/fi/modules/translations/locales/de.js +18 -0
- package/lib/translated/fi/modules/translations/locales/el.js +3 -0
- package/lib/translated/fi/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en.js +30 -0
- package/lib/translated/fi/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fi/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fi/modules/translations/locales/es.js +18 -0
- package/lib/translated/fi/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fi/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fi/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fi/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fi/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fi/modules/translations/locales/he.js +3 -0
- package/lib/translated/fi/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fi/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fi/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fi/modules/translations/locales/is.js +18 -0
- package/lib/translated/fi/modules/translations/locales/it.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fi/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fi/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fi/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fi/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fi/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fi/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fi/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fi/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fi/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fi/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fi/modules/translations/locales/th.js +19 -0
- package/lib/translated/fi/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fi/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fi/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fi/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fi/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fi/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fi/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fr/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fr/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fr/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fr/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fr/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fr/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fr/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fr/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fr/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fr/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fr/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fr/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fr/modules/translations/locales/da.js +18 -0
- package/lib/translated/fr/modules/translations/locales/de.js +18 -0
- package/lib/translated/fr/modules/translations/locales/el.js +3 -0
- package/lib/translated/fr/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en.js +30 -0
- package/lib/translated/fr/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fr/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fr/modules/translations/locales/es.js +18 -0
- package/lib/translated/fr/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fr/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fr/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fr/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fr/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fr/modules/translations/locales/he.js +3 -0
- package/lib/translated/fr/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fr/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fr/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fr/modules/translations/locales/is.js +18 -0
- package/lib/translated/fr/modules/translations/locales/it.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fr/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fr/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fr/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fr/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fr/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fr/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fr/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fr/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fr/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fr/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fr/modules/translations/locales/th.js +19 -0
- package/lib/translated/fr/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fr/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fr/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fr/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fr/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fr/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fr/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fr_CA/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fr_CA/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fr_CA/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fr_CA/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fr_CA/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fr_CA/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fr_CA/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/da.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/de.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/el.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en.js +30 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/es.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/he.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/is.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/it.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fr_CA/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fr_CA/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/th.js +19 -0
- package/lib/translated/fr_CA/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fr_CA/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/he/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/he/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/he/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/he/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/he/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/he/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/he/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/he/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/he/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/he/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/he/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/he/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/he/modules/translations/locales/ar.js +18 -0
- package/lib/translated/he/modules/translations/locales/ca.js +18 -0
- package/lib/translated/he/modules/translations/locales/cy.js +18 -0
- package/lib/translated/he/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/he/modules/translations/locales/da.js +18 -0
- package/lib/translated/he/modules/translations/locales/de.js +18 -0
- package/lib/translated/he/modules/translations/locales/el.js +3 -0
- package/lib/translated/he/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/he/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/he/modules/translations/locales/en.js +30 -0
- package/lib/translated/he/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/he/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/he/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/he/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/he/modules/translations/locales/es.js +18 -0
- package/lib/translated/he/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/he/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/he/modules/translations/locales/fi.js +18 -0
- package/lib/translated/he/modules/translations/locales/fr.js +18 -0
- package/lib/translated/he/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/he/modules/translations/locales/he.js +3 -0
- package/lib/translated/he/modules/translations/locales/ht.js +18 -0
- package/lib/translated/he/modules/translations/locales/hu.js +3 -0
- package/lib/translated/he/modules/translations/locales/hy.js +3 -0
- package/lib/translated/he/modules/translations/locales/is.js +18 -0
- package/lib/translated/he/modules/translations/locales/it.js +18 -0
- package/lib/translated/he/modules/translations/locales/ja.js +18 -0
- package/lib/translated/he/modules/translations/locales/ko.js +3 -0
- package/lib/translated/he/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/he/modules/translations/locales/nb.js +18 -0
- package/lib/translated/he/modules/translations/locales/nl.js +18 -0
- package/lib/translated/he/modules/translations/locales/nn.js +15 -0
- package/lib/translated/he/modules/translations/locales/pl.js +18 -0
- package/lib/translated/he/modules/translations/locales/pt.js +20 -2
- package/lib/translated/he/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/he/modules/translations/locales/ru.js +18 -0
- package/lib/translated/he/modules/translations/locales/sl.js +18 -0
- package/lib/translated/he/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/he/modules/translations/locales/sv.js +18 -0
- package/lib/translated/he/modules/translations/locales/th.js +19 -0
- package/lib/translated/he/modules/translations/locales/tr.js +3 -0
- package/lib/translated/he/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/he/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/he/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/he/modules/translations/locales/zh.js +18 -0
- package/lib/translated/he/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/he/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ht/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ht/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ht/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ht/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ht/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ht/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ht/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ht/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ht/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ht/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ht/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ht/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ht/modules/translations/locales/da.js +18 -0
- package/lib/translated/ht/modules/translations/locales/de.js +18 -0
- package/lib/translated/ht/modules/translations/locales/el.js +3 -0
- package/lib/translated/ht/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en.js +30 -0
- package/lib/translated/ht/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ht/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ht/modules/translations/locales/es.js +18 -0
- package/lib/translated/ht/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ht/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ht/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ht/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ht/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ht/modules/translations/locales/he.js +3 -0
- package/lib/translated/ht/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ht/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ht/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ht/modules/translations/locales/is.js +18 -0
- package/lib/translated/ht/modules/translations/locales/it.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ht/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ht/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ht/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ht/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ht/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ht/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ht/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ht/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ht/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ht/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ht/modules/translations/locales/th.js +19 -0
- package/lib/translated/ht/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ht/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ht/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ht/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ht/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ht/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ht/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/hu/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/hu/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/hu/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/hu/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/hu/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/hu/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/hu/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/hu/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/hu/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/hu/modules/translations/locales/ar.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ca.js +18 -0
- package/lib/translated/hu/modules/translations/locales/cy.js +18 -0
- package/lib/translated/hu/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/hu/modules/translations/locales/da.js +18 -0
- package/lib/translated/hu/modules/translations/locales/de.js +18 -0
- package/lib/translated/hu/modules/translations/locales/el.js +3 -0
- package/lib/translated/hu/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en.js +30 -0
- package/lib/translated/hu/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/hu/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/hu/modules/translations/locales/es.js +18 -0
- package/lib/translated/hu/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/hu/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/hu/modules/translations/locales/fi.js +18 -0
- package/lib/translated/hu/modules/translations/locales/fr.js +18 -0
- package/lib/translated/hu/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/hu/modules/translations/locales/he.js +3 -0
- package/lib/translated/hu/modules/translations/locales/ht.js +18 -0
- package/lib/translated/hu/modules/translations/locales/hu.js +3 -0
- package/lib/translated/hu/modules/translations/locales/hy.js +3 -0
- package/lib/translated/hu/modules/translations/locales/is.js +18 -0
- package/lib/translated/hu/modules/translations/locales/it.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ja.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ko.js +3 -0
- package/lib/translated/hu/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/hu/modules/translations/locales/nb.js +18 -0
- package/lib/translated/hu/modules/translations/locales/nl.js +18 -0
- package/lib/translated/hu/modules/translations/locales/nn.js +15 -0
- package/lib/translated/hu/modules/translations/locales/pl.js +18 -0
- package/lib/translated/hu/modules/translations/locales/pt.js +20 -2
- package/lib/translated/hu/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ru.js +18 -0
- package/lib/translated/hu/modules/translations/locales/sl.js +18 -0
- package/lib/translated/hu/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/hu/modules/translations/locales/sv.js +18 -0
- package/lib/translated/hu/modules/translations/locales/th.js +19 -0
- package/lib/translated/hu/modules/translations/locales/tr.js +3 -0
- package/lib/translated/hu/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/hu/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/hu/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/hu/modules/translations/locales/zh.js +18 -0
- package/lib/translated/hu/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/hu/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/hy/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/hy/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/hy/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/hy/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/hy/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/hy/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/hy/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/hy/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/hy/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/hy/modules/translations/locales/ar.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ca.js +18 -0
- package/lib/translated/hy/modules/translations/locales/cy.js +18 -0
- package/lib/translated/hy/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/hy/modules/translations/locales/da.js +18 -0
- package/lib/translated/hy/modules/translations/locales/de.js +18 -0
- package/lib/translated/hy/modules/translations/locales/el.js +3 -0
- package/lib/translated/hy/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en.js +30 -0
- package/lib/translated/hy/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/hy/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/hy/modules/translations/locales/es.js +18 -0
- package/lib/translated/hy/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/hy/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/hy/modules/translations/locales/fi.js +18 -0
- package/lib/translated/hy/modules/translations/locales/fr.js +18 -0
- package/lib/translated/hy/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/hy/modules/translations/locales/he.js +3 -0
- package/lib/translated/hy/modules/translations/locales/ht.js +18 -0
- package/lib/translated/hy/modules/translations/locales/hu.js +3 -0
- package/lib/translated/hy/modules/translations/locales/hy.js +3 -0
- package/lib/translated/hy/modules/translations/locales/is.js +18 -0
- package/lib/translated/hy/modules/translations/locales/it.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ja.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ko.js +3 -0
- package/lib/translated/hy/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/hy/modules/translations/locales/nb.js +18 -0
- package/lib/translated/hy/modules/translations/locales/nl.js +18 -0
- package/lib/translated/hy/modules/translations/locales/nn.js +15 -0
- package/lib/translated/hy/modules/translations/locales/pl.js +18 -0
- package/lib/translated/hy/modules/translations/locales/pt.js +20 -2
- package/lib/translated/hy/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ru.js +18 -0
- package/lib/translated/hy/modules/translations/locales/sl.js +18 -0
- package/lib/translated/hy/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/hy/modules/translations/locales/sv.js +18 -0
- package/lib/translated/hy/modules/translations/locales/th.js +19 -0
- package/lib/translated/hy/modules/translations/locales/tr.js +3 -0
- package/lib/translated/hy/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/hy/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/hy/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/hy/modules/translations/locales/zh.js +18 -0
- package/lib/translated/hy/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/hy/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/is/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/is/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/is/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/is/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/is/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/is/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/is/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/is/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/is/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/is/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/is/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/is/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/is/modules/translations/locales/ar.js +18 -0
- package/lib/translated/is/modules/translations/locales/ca.js +18 -0
- package/lib/translated/is/modules/translations/locales/cy.js +18 -0
- package/lib/translated/is/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/is/modules/translations/locales/da.js +18 -0
- package/lib/translated/is/modules/translations/locales/de.js +18 -0
- package/lib/translated/is/modules/translations/locales/el.js +3 -0
- package/lib/translated/is/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/is/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/is/modules/translations/locales/en.js +30 -0
- package/lib/translated/is/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/is/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/is/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/is/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/is/modules/translations/locales/es.js +18 -0
- package/lib/translated/is/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/is/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/is/modules/translations/locales/fi.js +18 -0
- package/lib/translated/is/modules/translations/locales/fr.js +18 -0
- package/lib/translated/is/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/is/modules/translations/locales/he.js +3 -0
- package/lib/translated/is/modules/translations/locales/ht.js +18 -0
- package/lib/translated/is/modules/translations/locales/hu.js +3 -0
- package/lib/translated/is/modules/translations/locales/hy.js +3 -0
- package/lib/translated/is/modules/translations/locales/is.js +18 -0
- package/lib/translated/is/modules/translations/locales/it.js +18 -0
- package/lib/translated/is/modules/translations/locales/ja.js +18 -0
- package/lib/translated/is/modules/translations/locales/ko.js +3 -0
- package/lib/translated/is/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/is/modules/translations/locales/nb.js +18 -0
- package/lib/translated/is/modules/translations/locales/nl.js +18 -0
- package/lib/translated/is/modules/translations/locales/nn.js +15 -0
- package/lib/translated/is/modules/translations/locales/pl.js +18 -0
- package/lib/translated/is/modules/translations/locales/pt.js +20 -2
- package/lib/translated/is/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/is/modules/translations/locales/ru.js +18 -0
- package/lib/translated/is/modules/translations/locales/sl.js +18 -0
- package/lib/translated/is/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/is/modules/translations/locales/sv.js +18 -0
- package/lib/translated/is/modules/translations/locales/th.js +19 -0
- package/lib/translated/is/modules/translations/locales/tr.js +3 -0
- package/lib/translated/is/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/is/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/is/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/is/modules/translations/locales/zh.js +18 -0
- package/lib/translated/is/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/is/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/it/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/it/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/it/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/it/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/it/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/it/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/it/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/it/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/it/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/it/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/it/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/it/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/it/modules/translations/locales/ar.js +18 -0
- package/lib/translated/it/modules/translations/locales/ca.js +18 -0
- package/lib/translated/it/modules/translations/locales/cy.js +18 -0
- package/lib/translated/it/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/it/modules/translations/locales/da.js +18 -0
- package/lib/translated/it/modules/translations/locales/de.js +18 -0
- package/lib/translated/it/modules/translations/locales/el.js +3 -0
- package/lib/translated/it/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/it/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/it/modules/translations/locales/en.js +30 -0
- package/lib/translated/it/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/it/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/it/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/it/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/it/modules/translations/locales/es.js +18 -0
- package/lib/translated/it/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/it/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/it/modules/translations/locales/fi.js +18 -0
- package/lib/translated/it/modules/translations/locales/fr.js +18 -0
- package/lib/translated/it/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/it/modules/translations/locales/he.js +3 -0
- package/lib/translated/it/modules/translations/locales/ht.js +18 -0
- package/lib/translated/it/modules/translations/locales/hu.js +3 -0
- package/lib/translated/it/modules/translations/locales/hy.js +3 -0
- package/lib/translated/it/modules/translations/locales/is.js +18 -0
- package/lib/translated/it/modules/translations/locales/it.js +18 -0
- package/lib/translated/it/modules/translations/locales/ja.js +18 -0
- package/lib/translated/it/modules/translations/locales/ko.js +3 -0
- package/lib/translated/it/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/it/modules/translations/locales/nb.js +18 -0
- package/lib/translated/it/modules/translations/locales/nl.js +18 -0
- package/lib/translated/it/modules/translations/locales/nn.js +15 -0
- package/lib/translated/it/modules/translations/locales/pl.js +18 -0
- package/lib/translated/it/modules/translations/locales/pt.js +20 -2
- package/lib/translated/it/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/it/modules/translations/locales/ru.js +18 -0
- package/lib/translated/it/modules/translations/locales/sl.js +18 -0
- package/lib/translated/it/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/it/modules/translations/locales/sv.js +18 -0
- package/lib/translated/it/modules/translations/locales/th.js +19 -0
- package/lib/translated/it/modules/translations/locales/tr.js +3 -0
- package/lib/translated/it/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/it/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/it/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/it/modules/translations/locales/zh.js +18 -0
- package/lib/translated/it/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/it/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ja/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ja/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ja/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ja/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ja/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ja/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ja/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ja/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ja/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ja/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ja/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ja/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ja/modules/translations/locales/da.js +18 -0
- package/lib/translated/ja/modules/translations/locales/de.js +18 -0
- package/lib/translated/ja/modules/translations/locales/el.js +3 -0
- package/lib/translated/ja/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en.js +30 -0
- package/lib/translated/ja/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ja/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ja/modules/translations/locales/es.js +18 -0
- package/lib/translated/ja/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ja/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ja/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ja/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ja/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ja/modules/translations/locales/he.js +3 -0
- package/lib/translated/ja/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ja/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ja/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ja/modules/translations/locales/is.js +18 -0
- package/lib/translated/ja/modules/translations/locales/it.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ja/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ja/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ja/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ja/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ja/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ja/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ja/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ja/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ja/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ja/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ja/modules/translations/locales/th.js +19 -0
- package/lib/translated/ja/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ja/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ja/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ja/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ja/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ja/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ja/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ko/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ko/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ko/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ko/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ko/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ko/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ko/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ko/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ko/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ko/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ko/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ko/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ko/modules/translations/locales/da.js +18 -0
- package/lib/translated/ko/modules/translations/locales/de.js +18 -0
- package/lib/translated/ko/modules/translations/locales/el.js +3 -0
- package/lib/translated/ko/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en.js +30 -0
- package/lib/translated/ko/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ko/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ko/modules/translations/locales/es.js +18 -0
- package/lib/translated/ko/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ko/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ko/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ko/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ko/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ko/modules/translations/locales/he.js +3 -0
- package/lib/translated/ko/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ko/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ko/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ko/modules/translations/locales/is.js +18 -0
- package/lib/translated/ko/modules/translations/locales/it.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ko/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ko/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ko/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ko/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ko/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ko/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ko/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ko/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ko/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ko/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ko/modules/translations/locales/th.js +19 -0
- package/lib/translated/ko/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ko/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ko/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ko/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ko/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ko/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ko/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/mi/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/mi/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/mi/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/mi/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/mi/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/mi/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/mi/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/mi/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/mi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/mi/modules/translations/locales/ar.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ca.js +18 -0
- package/lib/translated/mi/modules/translations/locales/cy.js +18 -0
- package/lib/translated/mi/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/mi/modules/translations/locales/da.js +18 -0
- package/lib/translated/mi/modules/translations/locales/de.js +18 -0
- package/lib/translated/mi/modules/translations/locales/el.js +3 -0
- package/lib/translated/mi/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en.js +30 -0
- package/lib/translated/mi/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/mi/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/mi/modules/translations/locales/es.js +18 -0
- package/lib/translated/mi/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/mi/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/mi/modules/translations/locales/fi.js +18 -0
- package/lib/translated/mi/modules/translations/locales/fr.js +18 -0
- package/lib/translated/mi/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/mi/modules/translations/locales/he.js +3 -0
- package/lib/translated/mi/modules/translations/locales/ht.js +18 -0
- package/lib/translated/mi/modules/translations/locales/hu.js +3 -0
- package/lib/translated/mi/modules/translations/locales/hy.js +3 -0
- package/lib/translated/mi/modules/translations/locales/is.js +18 -0
- package/lib/translated/mi/modules/translations/locales/it.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ja.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ko.js +3 -0
- package/lib/translated/mi/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/mi/modules/translations/locales/nb.js +18 -0
- package/lib/translated/mi/modules/translations/locales/nl.js +18 -0
- package/lib/translated/mi/modules/translations/locales/nn.js +15 -0
- package/lib/translated/mi/modules/translations/locales/pl.js +18 -0
- package/lib/translated/mi/modules/translations/locales/pt.js +20 -2
- package/lib/translated/mi/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ru.js +18 -0
- package/lib/translated/mi/modules/translations/locales/sl.js +18 -0
- package/lib/translated/mi/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/mi/modules/translations/locales/sv.js +18 -0
- package/lib/translated/mi/modules/translations/locales/th.js +19 -0
- package/lib/translated/mi/modules/translations/locales/tr.js +3 -0
- package/lib/translated/mi/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/mi/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/mi/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/mi/modules/translations/locales/zh.js +18 -0
- package/lib/translated/mi/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/mi/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nb/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nb/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nb/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nb/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nb/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nb/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nb/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nb/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nb/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nb/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nb/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nb/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nb/modules/translations/locales/da.js +18 -0
- package/lib/translated/nb/modules/translations/locales/de.js +18 -0
- package/lib/translated/nb/modules/translations/locales/el.js +3 -0
- package/lib/translated/nb/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en.js +30 -0
- package/lib/translated/nb/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nb/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nb/modules/translations/locales/es.js +18 -0
- package/lib/translated/nb/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nb/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nb/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nb/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nb/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nb/modules/translations/locales/he.js +3 -0
- package/lib/translated/nb/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nb/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nb/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nb/modules/translations/locales/is.js +18 -0
- package/lib/translated/nb/modules/translations/locales/it.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nb/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nb/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nb/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nb/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nb/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nb/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nb/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nb/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nb/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nb/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nb/modules/translations/locales/th.js +19 -0
- package/lib/translated/nb/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nb/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nb/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nb/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nb/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nb/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nb/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nb-x-k12/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nb-x-k12/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nb-x-k12/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nb-x-k12/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/PreviewIcon.js +1 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nb-x-k12/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/da.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/de.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/el.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en.js +30 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/es.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/he.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/is.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/it.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nb-x-k12/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/th.js +19 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nl/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nl/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nl/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nl/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nl/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nl/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nl/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nl/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nl/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nl/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nl/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nl/modules/translations/locales/da.js +18 -0
- package/lib/translated/nl/modules/translations/locales/de.js +18 -0
- package/lib/translated/nl/modules/translations/locales/el.js +3 -0
- package/lib/translated/nl/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en.js +30 -0
- package/lib/translated/nl/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nl/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nl/modules/translations/locales/es.js +18 -0
- package/lib/translated/nl/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nl/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nl/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nl/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nl/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nl/modules/translations/locales/he.js +3 -0
- package/lib/translated/nl/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nl/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nl/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nl/modules/translations/locales/is.js +18 -0
- package/lib/translated/nl/modules/translations/locales/it.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nl/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nl/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nl/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nl/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nl/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nl/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nl/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nl/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nl/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nl/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nl/modules/translations/locales/th.js +19 -0
- package/lib/translated/nl/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nl/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nl/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nl/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nl/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nl/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nl/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nn/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nn/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nn/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nn/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nn/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nn/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nn/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nn/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nn/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nn/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nn/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nn/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nn/modules/translations/locales/da.js +18 -0
- package/lib/translated/nn/modules/translations/locales/de.js +18 -0
- package/lib/translated/nn/modules/translations/locales/el.js +3 -0
- package/lib/translated/nn/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en.js +30 -0
- package/lib/translated/nn/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nn/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nn/modules/translations/locales/es.js +18 -0
- package/lib/translated/nn/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nn/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nn/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nn/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nn/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nn/modules/translations/locales/he.js +3 -0
- package/lib/translated/nn/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nn/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nn/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nn/modules/translations/locales/is.js +18 -0
- package/lib/translated/nn/modules/translations/locales/it.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nn/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nn/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nn/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nn/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nn/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nn/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nn/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nn/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nn/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nn/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nn/modules/translations/locales/th.js +19 -0
- package/lib/translated/nn/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nn/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nn/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nn/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nn/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nn/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nn/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/pl/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/pl/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/pl/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/pl/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/pl/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/pl/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/pl/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/pl/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/pl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/pl/modules/translations/locales/ar.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ca.js +18 -0
- package/lib/translated/pl/modules/translations/locales/cy.js +18 -0
- package/lib/translated/pl/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/pl/modules/translations/locales/da.js +18 -0
- package/lib/translated/pl/modules/translations/locales/de.js +18 -0
- package/lib/translated/pl/modules/translations/locales/el.js +3 -0
- package/lib/translated/pl/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en.js +30 -0
- package/lib/translated/pl/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/pl/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/pl/modules/translations/locales/es.js +18 -0
- package/lib/translated/pl/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/pl/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/pl/modules/translations/locales/fi.js +18 -0
- package/lib/translated/pl/modules/translations/locales/fr.js +18 -0
- package/lib/translated/pl/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/pl/modules/translations/locales/he.js +3 -0
- package/lib/translated/pl/modules/translations/locales/ht.js +18 -0
- package/lib/translated/pl/modules/translations/locales/hu.js +3 -0
- package/lib/translated/pl/modules/translations/locales/hy.js +3 -0
- package/lib/translated/pl/modules/translations/locales/is.js +18 -0
- package/lib/translated/pl/modules/translations/locales/it.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ja.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ko.js +3 -0
- package/lib/translated/pl/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/pl/modules/translations/locales/nb.js +18 -0
- package/lib/translated/pl/modules/translations/locales/nl.js +18 -0
- package/lib/translated/pl/modules/translations/locales/nn.js +15 -0
- package/lib/translated/pl/modules/translations/locales/pl.js +18 -0
- package/lib/translated/pl/modules/translations/locales/pt.js +20 -2
- package/lib/translated/pl/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ru.js +18 -0
- package/lib/translated/pl/modules/translations/locales/sl.js +18 -0
- package/lib/translated/pl/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/pl/modules/translations/locales/sv.js +18 -0
- package/lib/translated/pl/modules/translations/locales/th.js +19 -0
- package/lib/translated/pl/modules/translations/locales/tr.js +3 -0
- package/lib/translated/pl/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/pl/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/pl/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/pl/modules/translations/locales/zh.js +18 -0
- package/lib/translated/pl/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/pl/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/pt/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/pt/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/pt/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/pt/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/pt/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_links/components/Link.js +2 -2
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/pt/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/pt/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/pt/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/pt/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/pt/modules/translations/locales/ar.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ca.js +18 -0
- package/lib/translated/pt/modules/translations/locales/cy.js +18 -0
- package/lib/translated/pt/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/pt/modules/translations/locales/da.js +18 -0
- package/lib/translated/pt/modules/translations/locales/de.js +18 -0
- package/lib/translated/pt/modules/translations/locales/el.js +3 -0
- package/lib/translated/pt/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en.js +30 -0
- package/lib/translated/pt/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/pt/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/pt/modules/translations/locales/es.js +18 -0
- package/lib/translated/pt/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/pt/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/pt/modules/translations/locales/fi.js +18 -0
- package/lib/translated/pt/modules/translations/locales/fr.js +18 -0
- package/lib/translated/pt/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/pt/modules/translations/locales/he.js +3 -0
- package/lib/translated/pt/modules/translations/locales/ht.js +18 -0
- package/lib/translated/pt/modules/translations/locales/hu.js +3 -0
- package/lib/translated/pt/modules/translations/locales/hy.js +3 -0
- package/lib/translated/pt/modules/translations/locales/is.js +18 -0
- package/lib/translated/pt/modules/translations/locales/it.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ja.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ko.js +3 -0
- package/lib/translated/pt/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/pt/modules/translations/locales/nb.js +18 -0
- package/lib/translated/pt/modules/translations/locales/nl.js +18 -0
- package/lib/translated/pt/modules/translations/locales/nn.js +15 -0
- package/lib/translated/pt/modules/translations/locales/pl.js +18 -0
- package/lib/translated/pt/modules/translations/locales/pt.js +20 -2
- package/lib/translated/pt/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ru.js +18 -0
- package/lib/translated/pt/modules/translations/locales/sl.js +18 -0
- package/lib/translated/pt/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/pt/modules/translations/locales/sv.js +18 -0
- package/lib/translated/pt/modules/translations/locales/th.js +19 -0
- package/lib/translated/pt/modules/translations/locales/tr.js +3 -0
- package/lib/translated/pt/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/pt/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/pt/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/pt/modules/translations/locales/zh.js +18 -0
- package/lib/translated/pt/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/pt/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/pt_BR/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/pt_BR/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/pt_BR/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/pt_BR/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/pt_BR/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/pt_BR/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/pt_BR/modules/translations/locales/ar.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ca.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/cy.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/da.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/de.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/el.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en.js +30 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/es.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/fi.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/fr.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/he.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/ht.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/hu.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/hy.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/is.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/it.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ja.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ko.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/nb.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/nl.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/nn.js +15 -0
- package/lib/translated/pt_BR/modules/translations/locales/pl.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/pt.js +20 -2
- package/lib/translated/pt_BR/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ru.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/sl.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/sv.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/th.js +19 -0
- package/lib/translated/pt_BR/modules/translations/locales/tr.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/pt_BR/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ru/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ru/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ru/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ru/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ru/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ru/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ru/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ru/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ru/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ru/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ru/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ru/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ru/modules/translations/locales/da.js +18 -0
- package/lib/translated/ru/modules/translations/locales/de.js +18 -0
- package/lib/translated/ru/modules/translations/locales/el.js +3 -0
- package/lib/translated/ru/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en.js +30 -0
- package/lib/translated/ru/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ru/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ru/modules/translations/locales/es.js +18 -0
- package/lib/translated/ru/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ru/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ru/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ru/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ru/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ru/modules/translations/locales/he.js +3 -0
- package/lib/translated/ru/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ru/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ru/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ru/modules/translations/locales/is.js +18 -0
- package/lib/translated/ru/modules/translations/locales/it.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ru/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ru/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ru/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ru/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ru/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ru/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ru/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ru/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ru/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ru/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ru/modules/translations/locales/th.js +19 -0
- package/lib/translated/ru/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ru/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ru/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ru/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ru/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ru/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ru/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/se/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/se/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/se/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/se/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/se/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/se/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/se/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/se/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/se/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/se/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/se/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/se/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/se/modules/translations/locales/ar.js +18 -0
- package/lib/translated/se/modules/translations/locales/ca.js +18 -0
- package/lib/translated/se/modules/translations/locales/cy.js +18 -0
- package/lib/translated/se/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/se/modules/translations/locales/da.js +18 -0
- package/lib/translated/se/modules/translations/locales/de.js +18 -0
- package/lib/translated/se/modules/translations/locales/el.js +3 -0
- package/lib/translated/se/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/se/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/se/modules/translations/locales/en.js +30 -0
- package/lib/translated/se/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/se/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/se/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/se/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/se/modules/translations/locales/es.js +18 -0
- package/lib/translated/se/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/se/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/se/modules/translations/locales/fi.js +18 -0
- package/lib/translated/se/modules/translations/locales/fr.js +18 -0
- package/lib/translated/se/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/se/modules/translations/locales/he.js +3 -0
- package/lib/translated/se/modules/translations/locales/ht.js +18 -0
- package/lib/translated/se/modules/translations/locales/hu.js +3 -0
- package/lib/translated/se/modules/translations/locales/hy.js +3 -0
- package/lib/translated/se/modules/translations/locales/is.js +18 -0
- package/lib/translated/se/modules/translations/locales/it.js +18 -0
- package/lib/translated/se/modules/translations/locales/ja.js +18 -0
- package/lib/translated/se/modules/translations/locales/ko.js +3 -0
- package/lib/translated/se/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/se/modules/translations/locales/nb.js +18 -0
- package/lib/translated/se/modules/translations/locales/nl.js +18 -0
- package/lib/translated/se/modules/translations/locales/nn.js +15 -0
- package/lib/translated/se/modules/translations/locales/pl.js +18 -0
- package/lib/translated/se/modules/translations/locales/pt.js +20 -2
- package/lib/translated/se/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/se/modules/translations/locales/ru.js +18 -0
- package/lib/translated/se/modules/translations/locales/sl.js +18 -0
- package/lib/translated/se/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/se/modules/translations/locales/sv.js +18 -0
- package/lib/translated/se/modules/translations/locales/th.js +19 -0
- package/lib/translated/se/modules/translations/locales/tr.js +3 -0
- package/lib/translated/se/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/se/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/se/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/se/modules/translations/locales/zh.js +18 -0
- package/lib/translated/se/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/se/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/sl/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/sl/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/sl/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/sl/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/sl/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/sl/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/sl/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/sl/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/sl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/sl/modules/translations/locales/ar.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ca.js +18 -0
- package/lib/translated/sl/modules/translations/locales/cy.js +18 -0
- package/lib/translated/sl/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/sl/modules/translations/locales/da.js +18 -0
- package/lib/translated/sl/modules/translations/locales/de.js +18 -0
- package/lib/translated/sl/modules/translations/locales/el.js +3 -0
- package/lib/translated/sl/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en.js +30 -0
- package/lib/translated/sl/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/sl/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/sl/modules/translations/locales/es.js +18 -0
- package/lib/translated/sl/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/sl/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/sl/modules/translations/locales/fi.js +18 -0
- package/lib/translated/sl/modules/translations/locales/fr.js +18 -0
- package/lib/translated/sl/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/sl/modules/translations/locales/he.js +3 -0
- package/lib/translated/sl/modules/translations/locales/ht.js +18 -0
- package/lib/translated/sl/modules/translations/locales/hu.js +3 -0
- package/lib/translated/sl/modules/translations/locales/hy.js +3 -0
- package/lib/translated/sl/modules/translations/locales/is.js +18 -0
- package/lib/translated/sl/modules/translations/locales/it.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ja.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ko.js +3 -0
- package/lib/translated/sl/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/sl/modules/translations/locales/nb.js +18 -0
- package/lib/translated/sl/modules/translations/locales/nl.js +18 -0
- package/lib/translated/sl/modules/translations/locales/nn.js +15 -0
- package/lib/translated/sl/modules/translations/locales/pl.js +18 -0
- package/lib/translated/sl/modules/translations/locales/pt.js +20 -2
- package/lib/translated/sl/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ru.js +18 -0
- package/lib/translated/sl/modules/translations/locales/sl.js +18 -0
- package/lib/translated/sl/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/sl/modules/translations/locales/sv.js +18 -0
- package/lib/translated/sl/modules/translations/locales/th.js +19 -0
- package/lib/translated/sl/modules/translations/locales/tr.js +3 -0
- package/lib/translated/sl/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/sl/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/sl/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/sl/modules/translations/locales/zh.js +18 -0
- package/lib/translated/sl/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/sl/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/sv/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/sv/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/sv/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/sv/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/sv/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/sv/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/sv/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/sv/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/sv/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/sv/modules/translations/locales/ar.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ca.js +18 -0
- package/lib/translated/sv/modules/translations/locales/cy.js +18 -0
- package/lib/translated/sv/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/sv/modules/translations/locales/da.js +18 -0
- package/lib/translated/sv/modules/translations/locales/de.js +18 -0
- package/lib/translated/sv/modules/translations/locales/el.js +3 -0
- package/lib/translated/sv/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en.js +30 -0
- package/lib/translated/sv/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/sv/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/sv/modules/translations/locales/es.js +18 -0
- package/lib/translated/sv/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/sv/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/sv/modules/translations/locales/fi.js +18 -0
- package/lib/translated/sv/modules/translations/locales/fr.js +18 -0
- package/lib/translated/sv/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/sv/modules/translations/locales/he.js +3 -0
- package/lib/translated/sv/modules/translations/locales/ht.js +18 -0
- package/lib/translated/sv/modules/translations/locales/hu.js +3 -0
- package/lib/translated/sv/modules/translations/locales/hy.js +3 -0
- package/lib/translated/sv/modules/translations/locales/is.js +18 -0
- package/lib/translated/sv/modules/translations/locales/it.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ja.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ko.js +3 -0
- package/lib/translated/sv/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/sv/modules/translations/locales/nb.js +18 -0
- package/lib/translated/sv/modules/translations/locales/nl.js +18 -0
- package/lib/translated/sv/modules/translations/locales/nn.js +15 -0
- package/lib/translated/sv/modules/translations/locales/pl.js +18 -0
- package/lib/translated/sv/modules/translations/locales/pt.js +20 -2
- package/lib/translated/sv/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ru.js +18 -0
- package/lib/translated/sv/modules/translations/locales/sl.js +18 -0
- package/lib/translated/sv/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/sv/modules/translations/locales/sv.js +18 -0
- package/lib/translated/sv/modules/translations/locales/th.js +19 -0
- package/lib/translated/sv/modules/translations/locales/tr.js +3 -0
- package/lib/translated/sv/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/sv/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/sv/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/sv/modules/translations/locales/zh.js +18 -0
- package/lib/translated/sv/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/sv/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/sv-x-k12/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/sv-x-k12/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/sv-x-k12/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/sv-x-k12/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/PreviewIcon.js +1 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/sv-x-k12/modules/translations/locales/ar.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ca.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/cy.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/da.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/de.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/el.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en.js +30 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/es.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fi.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fr.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/he.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ht.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/hu.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/hy.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/is.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/it.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ja.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ko.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nb.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nl.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nn.js +15 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/pl.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/pt.js +20 -2
- package/lib/translated/sv-x-k12/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ru.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/sl.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/sv.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/th.js +19 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/tr.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/th/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/th/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/th/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/th/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/th/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/th/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/th/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/th/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/th/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/th/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/th/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/th/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/th/modules/translations/locales/ar.js +18 -0
- package/lib/translated/th/modules/translations/locales/ca.js +18 -0
- package/lib/translated/th/modules/translations/locales/cy.js +18 -0
- package/lib/translated/th/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/th/modules/translations/locales/da.js +18 -0
- package/lib/translated/th/modules/translations/locales/de.js +18 -0
- package/lib/translated/th/modules/translations/locales/el.js +3 -0
- package/lib/translated/th/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/th/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/th/modules/translations/locales/en.js +30 -0
- package/lib/translated/th/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/th/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/th/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/th/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/th/modules/translations/locales/es.js +18 -0
- package/lib/translated/th/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/th/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/th/modules/translations/locales/fi.js +18 -0
- package/lib/translated/th/modules/translations/locales/fr.js +18 -0
- package/lib/translated/th/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/th/modules/translations/locales/he.js +3 -0
- package/lib/translated/th/modules/translations/locales/ht.js +18 -0
- package/lib/translated/th/modules/translations/locales/hu.js +3 -0
- package/lib/translated/th/modules/translations/locales/hy.js +3 -0
- package/lib/translated/th/modules/translations/locales/is.js +18 -0
- package/lib/translated/th/modules/translations/locales/it.js +18 -0
- package/lib/translated/th/modules/translations/locales/ja.js +18 -0
- package/lib/translated/th/modules/translations/locales/ko.js +3 -0
- package/lib/translated/th/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/th/modules/translations/locales/nb.js +18 -0
- package/lib/translated/th/modules/translations/locales/nl.js +18 -0
- package/lib/translated/th/modules/translations/locales/nn.js +15 -0
- package/lib/translated/th/modules/translations/locales/pl.js +18 -0
- package/lib/translated/th/modules/translations/locales/pt.js +20 -2
- package/lib/translated/th/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/th/modules/translations/locales/ru.js +18 -0
- package/lib/translated/th/modules/translations/locales/sl.js +18 -0
- package/lib/translated/th/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/th/modules/translations/locales/sv.js +18 -0
- package/lib/translated/th/modules/translations/locales/th.js +19 -0
- package/lib/translated/th/modules/translations/locales/tr.js +3 -0
- package/lib/translated/th/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/th/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/th/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/th/modules/translations/locales/zh.js +18 -0
- package/lib/translated/th/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/th/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/tr/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/tr/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/tr/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/tr/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/tr/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/tr/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/tr/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/tr/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/tr/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/tr/modules/translations/locales/ar.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ca.js +18 -0
- package/lib/translated/tr/modules/translations/locales/cy.js +18 -0
- package/lib/translated/tr/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/tr/modules/translations/locales/da.js +18 -0
- package/lib/translated/tr/modules/translations/locales/de.js +18 -0
- package/lib/translated/tr/modules/translations/locales/el.js +3 -0
- package/lib/translated/tr/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en.js +30 -0
- package/lib/translated/tr/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/tr/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/tr/modules/translations/locales/es.js +18 -0
- package/lib/translated/tr/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/tr/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/tr/modules/translations/locales/fi.js +18 -0
- package/lib/translated/tr/modules/translations/locales/fr.js +18 -0
- package/lib/translated/tr/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/tr/modules/translations/locales/he.js +3 -0
- package/lib/translated/tr/modules/translations/locales/ht.js +18 -0
- package/lib/translated/tr/modules/translations/locales/hu.js +3 -0
- package/lib/translated/tr/modules/translations/locales/hy.js +3 -0
- package/lib/translated/tr/modules/translations/locales/is.js +18 -0
- package/lib/translated/tr/modules/translations/locales/it.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ja.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ko.js +3 -0
- package/lib/translated/tr/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/tr/modules/translations/locales/nb.js +18 -0
- package/lib/translated/tr/modules/translations/locales/nl.js +18 -0
- package/lib/translated/tr/modules/translations/locales/nn.js +15 -0
- package/lib/translated/tr/modules/translations/locales/pl.js +18 -0
- package/lib/translated/tr/modules/translations/locales/pt.js +20 -2
- package/lib/translated/tr/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ru.js +18 -0
- package/lib/translated/tr/modules/translations/locales/sl.js +18 -0
- package/lib/translated/tr/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/tr/modules/translations/locales/sv.js +18 -0
- package/lib/translated/tr/modules/translations/locales/th.js +19 -0
- package/lib/translated/tr/modules/translations/locales/tr.js +3 -0
- package/lib/translated/tr/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/tr/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/tr/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/tr/modules/translations/locales/zh.js +18 -0
- package/lib/translated/tr/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/tr/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/uk_UA/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/uk_UA/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/uk_UA/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/uk_UA/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/uk_UA/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/uk_UA/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/uk_UA/modules/translations/locales/ar.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ca.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/cy.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/da.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/de.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/el.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en.js +30 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/es.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/fi.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/fr.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/he.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/ht.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/hu.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/hy.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/is.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/it.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ja.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ko.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/nb.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/nl.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/nn.js +15 -0
- package/lib/translated/uk_UA/modules/translations/locales/pl.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/pt.js +20 -2
- package/lib/translated/uk_UA/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ru.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/sl.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/sv.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/th.js +19 -0
- package/lib/translated/uk_UA/modules/translations/locales/tr.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/uk_UA/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh-Hans/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh-Hans/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh-Hans/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh-Hans/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh-Hans/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh-Hans/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh-Hans/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh-Hans/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh-Hant/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh-Hant/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh-Hant/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh-Hant/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh-Hant/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh-Hant/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh-Hant/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh-Hant/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh_HK/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh_HK/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh_HK/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh_HK/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh_HK/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh_HK/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh_HK/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh_HK/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh_HK/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh_HK/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh_HK/modules/translations/tinymce/th.js +479 -0
- package/lib/translations/locales/ar.js +18 -0
- package/lib/translations/locales/ca.js +18 -0
- package/lib/translations/locales/cy.js +18 -0
- package/lib/translations/locales/da-x-k12.js +21 -0
- package/lib/translations/locales/da.js +18 -0
- package/lib/translations/locales/de.js +18 -0
- package/lib/translations/locales/el.js +3 -0
- package/lib/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translations/locales/en.js +30 -0
- package/lib/translations/locales/en_AU.js +18 -0
- package/lib/translations/locales/en_CA.js +21 -0
- package/lib/translations/locales/en_CY.js +18 -0
- package/lib/translations/locales/en_GB.js +18 -0
- package/lib/translations/locales/es.js +18 -0
- package/lib/translations/locales/es_ES.js +18 -0
- package/lib/translations/locales/fa_IR.js +3 -0
- package/lib/translations/locales/fi.js +18 -0
- package/lib/translations/locales/fr.js +18 -0
- package/lib/translations/locales/fr_CA.js +18 -0
- package/lib/translations/locales/he.js +3 -0
- package/lib/translations/locales/ht.js +18 -0
- package/lib/translations/locales/hu.js +3 -0
- package/lib/translations/locales/hy.js +3 -0
- package/lib/translations/locales/is.js +18 -0
- package/lib/translations/locales/it.js +18 -0
- package/lib/translations/locales/ja.js +18 -0
- package/lib/translations/locales/ko.js +3 -0
- package/lib/translations/locales/nb-x-k12.js +21 -0
- package/lib/translations/locales/nb.js +18 -0
- package/lib/translations/locales/nl.js +18 -0
- package/lib/translations/locales/nn.js +15 -0
- package/lib/translations/locales/pl.js +18 -0
- package/lib/translations/locales/pt.js +20 -2
- package/lib/translations/locales/pt_BR.js +18 -0
- package/lib/translations/locales/ru.js +18 -0
- package/lib/translations/locales/sl.js +18 -0
- package/lib/translations/locales/sv-x-k12.js +21 -0
- package/lib/translations/locales/sv.js +18 -0
- package/lib/translations/locales/th.js +20 -0
- package/lib/translations/locales/tr.js +3 -0
- package/lib/translations/locales/uk_UA.js +3 -0
- package/lib/translations/locales/zh-Hans.js +18 -0
- package/lib/translations/locales/zh-Hant.js +18 -0
- package/lib/translations/locales/zh.js +18 -0
- package/lib/translations/locales/zh_HK.js +18 -0
- package/lib/translations/tinymce/th.js +481 -0
- package/package.json +5 -5
|
@@ -42,12 +42,21 @@ describe('buildShape()', () => {
|
|
|
42
42
|
/>
|
|
43
43
|
`);
|
|
44
44
|
});
|
|
45
|
-
it('builds a
|
|
45
|
+
it('builds a diamond', () => {
|
|
46
46
|
expect(buildShapeMask({
|
|
47
|
-
shape: '
|
|
47
|
+
shape: 'diamond'
|
|
48
48
|
})).toMatchInlineSnapshot(`
|
|
49
49
|
<path
|
|
50
|
-
d="M175 0L350
|
|
50
|
+
d="M175 0L350 175L175 350L0 175L175 0Z"
|
|
51
|
+
/>
|
|
52
|
+
`);
|
|
53
|
+
});
|
|
54
|
+
it('builds a pentagon', () => {
|
|
55
|
+
expect(buildShapeMask({
|
|
56
|
+
shape: 'pentagon'
|
|
57
|
+
})).toMatchInlineSnapshot(`
|
|
58
|
+
<path
|
|
59
|
+
d="M175 0L350 136.71L295.15999999999997 350H54.84L0 136.71L175 0L175 0Z"
|
|
51
60
|
/>
|
|
52
61
|
`);
|
|
53
62
|
});
|
|
@@ -74,7 +83,7 @@ describe('buildShape()', () => {
|
|
|
74
83
|
shape: 'star'
|
|
75
84
|
})).toMatchInlineSnapshot(`
|
|
76
85
|
<path
|
|
77
|
-
d="M175 0L215.01 136.71H350L237.27 211.47L295.15999999999997 350L175 257.04L54.84 350L112.72999999999999 211.47L0 136.71H134.99L175
|
|
86
|
+
d="M175 0L215.01 136.71H350L237.27 211.47L295.15999999999997 350L175 257.04L54.84 350L112.72999999999999 211.47L0 136.71H134.99L175 0Z"
|
|
78
87
|
/>
|
|
79
88
|
`);
|
|
80
89
|
});
|
|
@@ -31,6 +31,12 @@ export function buildShapeMask({
|
|
|
31
31
|
case 'triangle':
|
|
32
32
|
return buildTriangle();
|
|
33
33
|
|
|
34
|
+
case 'diamond':
|
|
35
|
+
return buildDiamond();
|
|
36
|
+
|
|
37
|
+
case 'pentagon':
|
|
38
|
+
return buildPentagon();
|
|
39
|
+
|
|
34
40
|
case 'hexagon':
|
|
35
41
|
return buildHexagon();
|
|
36
42
|
|
|
@@ -70,6 +76,21 @@ function buildTriangle() {
|
|
|
70
76
|
});
|
|
71
77
|
}
|
|
72
78
|
|
|
79
|
+
function buildDiamond() {
|
|
80
|
+
return createSvgElement('path', {
|
|
81
|
+
d: `M${SHAPE_CONTAINER_LENGTH / 2} 0L${SHAPE_CONTAINER_LENGTH} ${SHAPE_CONTAINER_LENGTH / 2}L${SHAPE_CONTAINER_LENGTH / 2} ${SHAPE_CONTAINER_LENGTH}L0 ${SHAPE_CONTAINER_LENGTH / 2}L${SHAPE_CONTAINER_LENGTH / 2} 0Z`
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function buildPentagon() {
|
|
86
|
+
const half = round(SHAPE_CONTAINER_LENGTH / 2, 2);
|
|
87
|
+
const alpha = round(0.3906 * SHAPE_CONTAINER_LENGTH, 2);
|
|
88
|
+
const beta = round(0.3433 * SHAPE_CONTAINER_LENGTH, 2);
|
|
89
|
+
return createSvgElement('path', {
|
|
90
|
+
d: `M${half} 0L${SHAPE_CONTAINER_LENGTH} ${alpha}L${half + beta} ${SHAPE_CONTAINER_LENGTH}H${half - beta}L0 ${alpha}L${half} 0L${half} 0Z`
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
73
94
|
function buildHexagon() {
|
|
74
95
|
const leg = round(0.2895 * SHAPE_CONTAINER_LENGTH, 2);
|
|
75
96
|
return createSvgElement('path', {
|
|
@@ -94,6 +115,6 @@ function buildStar() {
|
|
|
94
115
|
const zeta = round(0.3433 * SHAPE_CONTAINER_LENGTH, 2);
|
|
95
116
|
const eta = round(0.7344 * SHAPE_CONTAINER_LENGTH, 2);
|
|
96
117
|
return createSvgElement('path', {
|
|
97
|
-
d: `M${half} 0L${half + alpha} ${beta}H${SHAPE_CONTAINER_LENGTH}L${half + gamma} ${delta}L${half + zeta} ${SHAPE_CONTAINER_LENGTH}L${half} ${eta}L${half - zeta} ${SHAPE_CONTAINER_LENGTH}L${half - gamma} ${delta}L0 ${beta}H${half - alpha}L${half}
|
|
118
|
+
d: `M${half} 0L${half + alpha} ${beta}H${SHAPE_CONTAINER_LENGTH}L${half + gamma} ${delta}L${half + zeta} ${SHAPE_CONTAINER_LENGTH}L${half} ${eta}L${half - zeta} ${SHAPE_CONTAINER_LENGTH}L${half - gamma} ${delta}L0 ${beta}H${half - alpha}L${half} 0Z`
|
|
98
119
|
});
|
|
99
120
|
}
|
|
@@ -19,7 +19,7 @@ import React from 'react';
|
|
|
19
19
|
import { Flex } from '@instructure/ui-flex';
|
|
20
20
|
import { SimpleSelect } from '@instructure/ui-simple-select';
|
|
21
21
|
import formatMessage from "../../../../../format-message.js";
|
|
22
|
-
const SHAPES = ['square', 'circle', 'triangle', 'hexagon', 'octagon', 'star'];
|
|
22
|
+
const SHAPES = ['square', 'circle', 'triangle', 'diamond', 'pentagon', 'hexagon', 'octagon', 'star'];
|
|
23
23
|
const SIZES = ['x-small', 'small', 'medium', 'large'];
|
|
24
24
|
export const ShapeSection = ({
|
|
25
25
|
settings,
|
|
@@ -62,6 +62,8 @@ const SHAPE_DESCRIPTION = {
|
|
|
62
62
|
square: "Tapawha",
|
|
63
63
|
circle: "Porohita",
|
|
64
64
|
triangle: "Tapatoru",
|
|
65
|
+
diamond: "Diamond",
|
|
66
|
+
pentagon: "Pentagon",
|
|
65
67
|
hexagon: "Tapaono",
|
|
66
68
|
octagon: "Tapawaru",
|
|
67
69
|
star: "Whet\u016B"
|
package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js
CHANGED
|
@@ -173,6 +173,92 @@ describe('buildShape()', () => {
|
|
|
173
173
|
`);
|
|
174
174
|
});
|
|
175
175
|
});
|
|
176
|
+
describe('when shape is diamond', () => {
|
|
177
|
+
beforeEach(() => {
|
|
178
|
+
settings = _objectSpread(_objectSpread({}, settings), {}, {
|
|
179
|
+
shape: 'diamond'
|
|
180
|
+
});
|
|
181
|
+
});
|
|
182
|
+
it('builds the x-small <path />', () => {
|
|
183
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
184
|
+
size: 'x-small'
|
|
185
|
+
}))).toMatchInlineSnapshot(`
|
|
186
|
+
<path
|
|
187
|
+
d="M33 4L66 33L33 66L4 33L33 4Z"
|
|
188
|
+
/>
|
|
189
|
+
`);
|
|
190
|
+
});
|
|
191
|
+
it('builds the small <path />', () => {
|
|
192
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
193
|
+
size: 'small'
|
|
194
|
+
}))).toMatchInlineSnapshot(`
|
|
195
|
+
<path
|
|
196
|
+
d="M57 4L114 57L57 114L4 57L57 4Z"
|
|
197
|
+
/>
|
|
198
|
+
`);
|
|
199
|
+
});
|
|
200
|
+
it('builds the medium <path />', () => {
|
|
201
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
202
|
+
size: 'medium'
|
|
203
|
+
}))).toMatchInlineSnapshot(`
|
|
204
|
+
<path
|
|
205
|
+
d="M75 4L150 75L75 150L4 75L75 4Z"
|
|
206
|
+
/>
|
|
207
|
+
`);
|
|
208
|
+
});
|
|
209
|
+
it('builds the large <path />', () => {
|
|
210
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
211
|
+
size: 'large'
|
|
212
|
+
}))).toMatchInlineSnapshot(`
|
|
213
|
+
<path
|
|
214
|
+
d="M105 4L210 105L105 210L4 105L105 4Z"
|
|
215
|
+
/>
|
|
216
|
+
`);
|
|
217
|
+
});
|
|
218
|
+
});
|
|
219
|
+
describe('when shape is pentagon', () => {
|
|
220
|
+
beforeEach(() => {
|
|
221
|
+
settings = _objectSpread(_objectSpread({}, settings), {}, {
|
|
222
|
+
shape: 'pentagon'
|
|
223
|
+
});
|
|
224
|
+
});
|
|
225
|
+
it('builds the x-small <path />', () => {
|
|
226
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
227
|
+
size: 'x-small'
|
|
228
|
+
}))).toMatchInlineSnapshot(`
|
|
229
|
+
<path
|
|
230
|
+
d="M37.0623 14L61 32.75L53.5195 62H21.1039L13 32.75L37.0623 14Z"
|
|
231
|
+
/>
|
|
232
|
+
`);
|
|
233
|
+
});
|
|
234
|
+
it('builds the small <path />', () => {
|
|
235
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
236
|
+
size: 'small'
|
|
237
|
+
}))).toMatchInlineSnapshot(`
|
|
238
|
+
<path
|
|
239
|
+
d="M61.1247 13L109 50.5L94.039 109H29.2078L13 50.5L61.1247 13Z"
|
|
240
|
+
/>
|
|
241
|
+
`);
|
|
242
|
+
});
|
|
243
|
+
it('builds the medium <path />', () => {
|
|
244
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
245
|
+
size: 'medium'
|
|
246
|
+
}))).toMatchInlineSnapshot(`
|
|
247
|
+
<path
|
|
248
|
+
d="M79.1714 13L145 64.56L124.429 145H35.285L13 64.5625L79.1714 13Z"
|
|
249
|
+
/>
|
|
250
|
+
`);
|
|
251
|
+
});
|
|
252
|
+
it('builds the large <path />', () => {
|
|
253
|
+
expect(buildShape(_objectSpread(_objectSpread({}, settings), {}, {
|
|
254
|
+
size: 'large'
|
|
255
|
+
}))).toMatchInlineSnapshot(`
|
|
256
|
+
<path
|
|
257
|
+
d="M109.249 13L205 88L175.078 205H45.4156L13 88L109.249 13Z"
|
|
258
|
+
/>
|
|
259
|
+
`);
|
|
260
|
+
});
|
|
261
|
+
});
|
|
176
262
|
describe('when shape is hexagon', () => {
|
|
177
263
|
beforeEach(() => {
|
|
178
264
|
settings = _objectSpread(_objectSpread({}, settings), {}, {
|
|
@@ -30,6 +30,12 @@ export function buildShape({
|
|
|
30
30
|
case 'triangle':
|
|
31
31
|
return buildTriangle(size);
|
|
32
32
|
|
|
33
|
+
case 'diamond':
|
|
34
|
+
return buildDiamond(size);
|
|
35
|
+
|
|
36
|
+
case 'pentagon':
|
|
37
|
+
return buildPentagon(size);
|
|
38
|
+
|
|
33
39
|
case 'hexagon':
|
|
34
40
|
return buildHexagon(size);
|
|
35
41
|
|
|
@@ -145,6 +151,60 @@ function buildTriangle(size) {
|
|
|
145
151
|
}
|
|
146
152
|
}
|
|
147
153
|
|
|
154
|
+
function buildDiamond(size) {
|
|
155
|
+
switch (size) {
|
|
156
|
+
case 'x-small':
|
|
157
|
+
return createSvgElement('path', {
|
|
158
|
+
d: 'M33 4L66 33L33 66L4 33L33 4Z'
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
case 'small':
|
|
162
|
+
return createSvgElement('path', {
|
|
163
|
+
d: 'M57 4L114 57L57 114L4 57L57 4Z'
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
case 'medium':
|
|
167
|
+
return createSvgElement('path', {
|
|
168
|
+
d: 'M75 4L150 75L75 150L4 75L75 4Z'
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
case 'large':
|
|
172
|
+
return createSvgElement('path', {
|
|
173
|
+
d: 'M105 4L210 105L105 210L4 105L105 4Z'
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
default:
|
|
177
|
+
throw new Error(`Invalid size: ${size}`);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
function buildPentagon(size) {
|
|
182
|
+
switch (size) {
|
|
183
|
+
case 'x-small':
|
|
184
|
+
return createSvgElement('path', {
|
|
185
|
+
d: 'M37.0623 14L61 32.75L53.5195 62H21.1039L13 32.75L37.0623 14Z'
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
case 'small':
|
|
189
|
+
return createSvgElement('path', {
|
|
190
|
+
d: 'M61.1247 13L109 50.5L94.039 109H29.2078L13 50.5L61.1247 13Z'
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
case 'medium':
|
|
194
|
+
return createSvgElement('path', {
|
|
195
|
+
d: 'M79.1714 13L145 64.56L124.429 145H35.285L13 64.5625L79.1714 13Z'
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
case 'large':
|
|
199
|
+
return createSvgElement('path', {
|
|
200
|
+
d: 'M109.249 13L205 88L175.078 205H45.4156L13 88L109.249 13Z'
|
|
201
|
+
});
|
|
202
|
+
|
|
203
|
+
default:
|
|
204
|
+
throw new Error(`Invalid size: ${size}`);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
148
208
|
function buildHexagon(size) {
|
|
149
209
|
switch (size) {
|
|
150
210
|
case 'x-small':
|
|
@@ -22,6 +22,7 @@ import { scaleForHeight, scaleForWidth } from "../shared/DimensionUtils.js";
|
|
|
22
22
|
export const MIN_HEIGHT = 10;
|
|
23
23
|
export const MIN_WIDTH = 10;
|
|
24
24
|
export const MIN_WIDTH_VIDEO = 320;
|
|
25
|
+
export const MIN_PERCENTAGE = 10;
|
|
25
26
|
export const SMALL = 'small';
|
|
26
27
|
export const MEDIUM = 'medium';
|
|
27
28
|
export const LARGE = 'large';
|
|
@@ -52,15 +53,27 @@ function imageSizeFromKnownOptions(imageOptions) {
|
|
|
52
53
|
return sizeByMaximumDimension[largestDimension] || CUSTOM;
|
|
53
54
|
}
|
|
54
55
|
|
|
56
|
+
function getPercentageUnitsFromAttributes($element) {
|
|
57
|
+
const getAttribute = attribute => $element.hasAttribute(attribute) ? $element.getAttribute(attribute) : $element[attribute];
|
|
58
|
+
|
|
59
|
+
const widthValue = getAttribute('width');
|
|
60
|
+
const heightValue = getAttribute('height');
|
|
61
|
+
const value = [widthValue, heightValue].find(v => /\d+(?:\.\d+)?%/.test(v));
|
|
62
|
+
return value ? Math.round(Number.parseInt(value, 10)) : null;
|
|
63
|
+
}
|
|
64
|
+
|
|
55
65
|
export function fromImageEmbed($element) {
|
|
56
66
|
const altText = $element.getAttribute('alt');
|
|
67
|
+
const percentageUnits = getPercentageUnitsFromAttributes($element);
|
|
57
68
|
const imageOptions = {
|
|
58
|
-
altText: altText || '',
|
|
59
|
-
appliedHeight: parsedOrNull($element, 'height'),
|
|
60
69
|
appliedWidth: parsedOrNull($element, 'width'),
|
|
61
|
-
|
|
62
|
-
naturalHeight: $element.naturalHeight,
|
|
70
|
+
appliedHeight: parsedOrNull($element, 'height'),
|
|
63
71
|
naturalWidth: $element.naturalWidth,
|
|
72
|
+
naturalHeight: $element.naturalHeight,
|
|
73
|
+
appliedPercentage: percentageUnits || 100,
|
|
74
|
+
usePercentageUnits: !!percentageUnits,
|
|
75
|
+
altText: altText || '',
|
|
76
|
+
isDecorativeImage: altText !== null && altText.replace(/\s/g, '') === '',
|
|
64
77
|
url: $element.src
|
|
65
78
|
};
|
|
66
79
|
imageOptions.imageSize = imageSizeFromKnownOptions(imageOptions);
|
|
@@ -36,6 +36,8 @@ describe('RCE "Images" Plugin > ImageOptionsTray', () => {
|
|
|
36
36
|
isDecorativeImage: false,
|
|
37
37
|
naturalHeight: 200,
|
|
38
38
|
naturalWidth: 100,
|
|
39
|
+
appliedPercentage: 100,
|
|
40
|
+
usePercentageUnits: false,
|
|
39
41
|
url: 'https://www.fillmurray.com/200/100'
|
|
40
42
|
},
|
|
41
43
|
onRequestClose: jest.fn(),
|
|
@@ -287,6 +289,21 @@ describe('RCE "Images" Plugin > ImageOptionsTray', () => {
|
|
|
287
289
|
|
|
288
290
|
expect(appliedHeight).toEqual(400);
|
|
289
291
|
});
|
|
292
|
+
it.skip('includes the width and height to be applied', async () => {
|
|
293
|
+
props.appliedPercentage = 95;
|
|
294
|
+
props.usePercentageUnits = false;
|
|
295
|
+
renderComponent();
|
|
296
|
+
await tray.setSize('Large');
|
|
297
|
+
tray.$doneButton.click();
|
|
298
|
+
|
|
299
|
+
const _props$onSave$mock$ca9 = _slicedToArray(props.onSave.mock.calls[0], 1),
|
|
300
|
+
_props$onSave$mock$ca10 = _props$onSave$mock$ca9[0],
|
|
301
|
+
appliedWidth = _props$onSave$mock$ca10.appliedWidth,
|
|
302
|
+
appliedHeight = _props$onSave$mock$ca10.appliedHeight;
|
|
303
|
+
|
|
304
|
+
expect(appliedWidth).toEqual(50);
|
|
305
|
+
expect(appliedHeight).toEqual(50);
|
|
306
|
+
});
|
|
290
307
|
});
|
|
291
308
|
});
|
|
292
309
|
});
|
|
@@ -23,7 +23,7 @@ import { Button, CloseButton } from '@instructure/ui-buttons';
|
|
|
23
23
|
import { Heading } from '@instructure/ui-heading';
|
|
24
24
|
import { Flex } from '@instructure/ui-flex';
|
|
25
25
|
import { Tray } from '@instructure/ui-tray';
|
|
26
|
-
import { CUSTOM, MIN_HEIGHT, MIN_WIDTH, scaleToSize } from "../ImageEmbedOptions.js";
|
|
26
|
+
import { CUSTOM, MIN_HEIGHT, MIN_WIDTH, MIN_PERCENTAGE, scaleToSize } from "../ImageEmbedOptions.js";
|
|
27
27
|
import formatMessage from "../../../../format-message.js";
|
|
28
28
|
import { useDimensionsState } from "../../shared/DimensionsInput/index.js";
|
|
29
29
|
import ImageOptionsForm from "../../shared/ImageOptionsForm.js";
|
|
@@ -85,7 +85,8 @@ export default function ImageOptionsTray(props) {
|
|
|
85
85
|
|
|
86
86
|
const dimensionsState = useDimensionsState(imageOptions, {
|
|
87
87
|
minHeight: MIN_HEIGHT,
|
|
88
|
-
minWidth: MIN_WIDTH
|
|
88
|
+
minWidth: MIN_WIDTH,
|
|
89
|
+
minPercentage: MIN_PERCENTAGE
|
|
89
90
|
});
|
|
90
91
|
useEffect(() => {
|
|
91
92
|
let isValidURL;
|
|
@@ -201,8 +202,13 @@ export default function ImageOptionsTray(props) {
|
|
|
201
202
|
let appliedWidth = imageWidth;
|
|
202
203
|
|
|
203
204
|
if (imageSize === CUSTOM) {
|
|
204
|
-
|
|
205
|
-
|
|
205
|
+
if (dimensionsState.usePercentageUnits) {
|
|
206
|
+
appliedHeight = `${dimensionsState.percentage}%`;
|
|
207
|
+
appliedWidth = `${dimensionsState.percentage}%`;
|
|
208
|
+
} else {
|
|
209
|
+
appliedHeight = dimensionsState.height;
|
|
210
|
+
appliedWidth = dimensionsState.width;
|
|
211
|
+
}
|
|
206
212
|
}
|
|
207
213
|
|
|
208
214
|
onSave({
|
package/lib/translated/mi/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js
CHANGED
|
@@ -336,6 +336,52 @@ describe('RCE > Plugins > Instructure Image > ImageEmbedOptions', () => {
|
|
|
336
336
|
});
|
|
337
337
|
});
|
|
338
338
|
});
|
|
339
|
+
describe('.appliedPercentage', () => {
|
|
340
|
+
it('is the percentage width when applied to the image', () => {
|
|
341
|
+
$image.setAttribute('width', '50%');
|
|
342
|
+
expect(getImageOptions().appliedPercentage).toEqual(50);
|
|
343
|
+
});
|
|
344
|
+
it('is the percentage height when applied to the image', () => {
|
|
345
|
+
$image.setAttribute('height', '60%');
|
|
346
|
+
expect(getImageOptions().appliedPercentage).toEqual(60);
|
|
347
|
+
});
|
|
348
|
+
it('is the percentage attribute when percentage width and height applied to the image', () => {
|
|
349
|
+
$image.setAttribute('width', '50%');
|
|
350
|
+
$image.setAttribute('height', '60%');
|
|
351
|
+
expect(getImageOptions().appliedPercentage).toEqual(50);
|
|
352
|
+
});
|
|
353
|
+
it('is the percentage attribute when percentage and pixels width/height applied to the image', () => {
|
|
354
|
+
$image.setAttribute('width', '50%');
|
|
355
|
+
$image.setAttribute('height', '30px');
|
|
356
|
+
expect(getImageOptions().appliedPercentage).toEqual(50);
|
|
357
|
+
});
|
|
358
|
+
it('is 100 when no percentage width or height has been applied to the image', () => {
|
|
359
|
+
expect(getImageOptions().appliedPercentage).toEqual(100);
|
|
360
|
+
});
|
|
361
|
+
});
|
|
362
|
+
describe('.usePercentageUnits', () => {
|
|
363
|
+
it('is true when percentage width applied to the image', () => {
|
|
364
|
+
$image.setAttribute('width', '50%');
|
|
365
|
+
expect(getImageOptions().usePercentageUnits).toEqual(true);
|
|
366
|
+
});
|
|
367
|
+
it('is true when percentage height applied to the image', () => {
|
|
368
|
+
$image.setAttribute('height', '60%');
|
|
369
|
+
expect(getImageOptions().usePercentageUnits).toEqual(true);
|
|
370
|
+
});
|
|
371
|
+
it('is true when percentage width and height applied to the image', () => {
|
|
372
|
+
$image.setAttribute('width', '50%');
|
|
373
|
+
$image.setAttribute('height', '60%');
|
|
374
|
+
expect(getImageOptions().usePercentageUnits).toEqual(true);
|
|
375
|
+
});
|
|
376
|
+
it('is true when percentage width and pixels height applied to the image', () => {
|
|
377
|
+
$image.setAttribute('width', '50%');
|
|
378
|
+
$image.setAttribute('height', '30px');
|
|
379
|
+
expect(getImageOptions().usePercentageUnits).toEqual(true);
|
|
380
|
+
});
|
|
381
|
+
it('is false when no percentage width or height has been applied to the image', () => {
|
|
382
|
+
expect(getImageOptions().usePercentageUnits).toEqual(false);
|
|
383
|
+
});
|
|
384
|
+
});
|
|
339
385
|
it('sets .naturalHeight to the natural height of the image', () => {
|
|
340
386
|
expect(getImageOptions().naturalHeight).toEqual(480);
|
|
341
387
|
});
|
package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2021 - present Instructure, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Canvas.
|
|
5
|
+
*
|
|
6
|
+
* Canvas is free software: you can redistribute it and/or modify it under
|
|
7
|
+
* the terms of the GNU Affero General Public License as published by the Free
|
|
8
|
+
* Software Foundation, version 3 of the License.
|
|
9
|
+
*
|
|
10
|
+
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
11
|
+
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
12
|
+
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
13
|
+
* details.
|
|
14
|
+
*
|
|
15
|
+
* You should have received a copy of the GNU Affero General Public License along
|
|
16
|
+
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
|
+
*/
|
|
18
|
+
import React from 'react';
|
|
19
|
+
import ReactDOM from 'react-dom';
|
|
20
|
+
import bridge from "../../../../bridge/index.js";
|
|
21
|
+
import { asAudioElement, findMediaPlayerIframe } from "../../shared/ContentSelection.js";
|
|
22
|
+
import AudioOptionsTray from "./index.js";
|
|
23
|
+
export const CONTAINER_ID = 'instructure-audio-options-tray-container';
|
|
24
|
+
export default class TrayController {
|
|
25
|
+
constructor() {
|
|
26
|
+
this._isOpen = false;
|
|
27
|
+
this._shouldOpen = false;
|
|
28
|
+
this._editor = null;
|
|
29
|
+
this._audioContainer = null;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
get container() {
|
|
33
|
+
let _container = document.getElementById(CONTAINER_ID);
|
|
34
|
+
|
|
35
|
+
if (_container == null) {
|
|
36
|
+
_container = document.createElement('div');
|
|
37
|
+
_container.id = CONTAINER_ID;
|
|
38
|
+
document.body.appendChild(_container);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return _container;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
get isOpen() {
|
|
45
|
+
return this._isOpen;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
showTrayForEditor(editor) {
|
|
49
|
+
this._shouldOpen = true;
|
|
50
|
+
this._editor = editor;
|
|
51
|
+
this._audioContainer = findMediaPlayerIframe(editor.selection.getNode());
|
|
52
|
+
|
|
53
|
+
if (bridge.focusedEditor) {
|
|
54
|
+
// Dismiss any content trays that may already be open
|
|
55
|
+
bridge.hideTrays();
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const trayProps = bridge.trayProps.get(editor);
|
|
59
|
+
|
|
60
|
+
this._renderTray(trayProps);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
hideTrayForEditor(editor) {
|
|
64
|
+
if (this._editor === editor) {
|
|
65
|
+
this._dismissTray();
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
_dismissTray() {
|
|
70
|
+
if (this._audioContainer) {
|
|
71
|
+
this._editor.selection.select(this._audioContainer);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
this._resetController();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
_resetController() {
|
|
78
|
+
this._shouldOpen = false;
|
|
79
|
+
|
|
80
|
+
this._renderTray();
|
|
81
|
+
|
|
82
|
+
this._editor = null;
|
|
83
|
+
this._audioContainer = null;
|
|
84
|
+
const elem = document.getElementById(CONTAINER_ID);
|
|
85
|
+
return elem.parentNode.removeChild(elem);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
_applyAudioOptions(audioOptions) {
|
|
89
|
+
if (!audioOptions.media_object_id || audioOptions.media_object_id === 'undefined') {
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
const container = this._audioContainer;
|
|
94
|
+
return audioOptions.updateMediaObject({
|
|
95
|
+
media_object_id: audioOptions.media_object_id,
|
|
96
|
+
subtitles: audioOptions.subtitles
|
|
97
|
+
}).then(() => container === null || container === void 0 ? void 0 : container.contentWindow.location.reload()).catch(ex => {
|
|
98
|
+
// eslint-disable-next-line no-console
|
|
99
|
+
console.error('Failed updating audio captions', ex);
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
_renderTray(trayProps) {
|
|
104
|
+
let audioOptions = {};
|
|
105
|
+
|
|
106
|
+
if (this._shouldOpen) {
|
|
107
|
+
audioOptions = asAudioElement(this._audioContainer);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
const element = /*#__PURE__*/React.createElement(AudioOptionsTray, {
|
|
111
|
+
audioOptions: audioOptions,
|
|
112
|
+
onEntered: () => {
|
|
113
|
+
this._isOpen = true;
|
|
114
|
+
},
|
|
115
|
+
onExited: () => {
|
|
116
|
+
bridge.focusActiveEditor(false);
|
|
117
|
+
this._isOpen = false;
|
|
118
|
+
},
|
|
119
|
+
onSave: options => {
|
|
120
|
+
this._applyAudioOptions(options);
|
|
121
|
+
|
|
122
|
+
this._dismissTray();
|
|
123
|
+
},
|
|
124
|
+
onDismiss: () => this._dismissTray(),
|
|
125
|
+
open: this._shouldOpen,
|
|
126
|
+
trayProps: trayProps
|
|
127
|
+
});
|
|
128
|
+
ReactDOM.render(element, this.container);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2021 - present Instructure, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Canvas.
|
|
5
|
+
*
|
|
6
|
+
* Canvas is free software: you can redistribute it and/or modify it under
|
|
7
|
+
* the terms of the GNU Affero General Public License as published by the Free
|
|
8
|
+
* Software Foundation, version 3 of the License.
|
|
9
|
+
*
|
|
10
|
+
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
11
|
+
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
12
|
+
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
13
|
+
* details.
|
|
14
|
+
*
|
|
15
|
+
* You should have received a copy of the GNU Affero General Public License along
|
|
16
|
+
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
|
+
*/
|
|
18
|
+
import React from 'react';
|
|
19
|
+
import { render } from '@testing-library/react';
|
|
20
|
+
import AudioOptionsTray from "../index.js";
|
|
21
|
+
import AudioOptionsTrayDriver from "./AudioOptionsTrayDriver.js";
|
|
22
|
+
describe('RCE "Audios" Plugin > AudioOptionsTray', () => {
|
|
23
|
+
let props;
|
|
24
|
+
let tray;
|
|
25
|
+
beforeEach(() => {
|
|
26
|
+
props = {
|
|
27
|
+
onRequestClose: jest.fn(),
|
|
28
|
+
onSave: jest.fn(),
|
|
29
|
+
open: true,
|
|
30
|
+
audioOptions: {
|
|
31
|
+
id: 'm-audio-id'
|
|
32
|
+
},
|
|
33
|
+
trayOptions: {
|
|
34
|
+
host: 'localhost:3001',
|
|
35
|
+
jwt: 'someuglyvalue'
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
function renderComponent() {
|
|
41
|
+
render( /*#__PURE__*/React.createElement(AudioOptionsTray, props));
|
|
42
|
+
tray = AudioOptionsTrayDriver.find();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
it('is optionally rendered open', () => {
|
|
46
|
+
props.open = true;
|
|
47
|
+
renderComponent();
|
|
48
|
+
expect(tray).not.toBeNull();
|
|
49
|
+
});
|
|
50
|
+
it('is optionally rendered closed', () => {
|
|
51
|
+
props.open = false;
|
|
52
|
+
renderComponent();
|
|
53
|
+
expect(tray).toBeNull();
|
|
54
|
+
});
|
|
55
|
+
it('is labeled with "Audio Options Tray"', () => {
|
|
56
|
+
renderComponent();
|
|
57
|
+
expect(tray.label).toEqual('Audio Options Tray');
|
|
58
|
+
});
|
|
59
|
+
it('when clicked calls the .onSave prop', () => {
|
|
60
|
+
renderComponent();
|
|
61
|
+
tray.$doneButton.click();
|
|
62
|
+
expect(props.onSave).toHaveBeenCalledTimes(1);
|
|
63
|
+
});
|
|
64
|
+
});
|