@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
|
@@ -10,13 +10,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
exports.asImageEmbed = asImageEmbed;
|
|
11
11
|
exports.asLink = asLink;
|
|
12
12
|
exports.asVideoElement = asVideoElement;
|
|
13
|
+
exports.asAudioElement = asAudioElement;
|
|
13
14
|
exports.getContentFromElement = getContentFromElement;
|
|
14
15
|
exports.getContentFromEditor = getContentFromEditor;
|
|
15
16
|
exports.getLinkContentFromEditor = getLinkContentFromEditor;
|
|
16
17
|
exports.isFileLink = isFileLink;
|
|
17
18
|
exports.isImageEmbed = isImageEmbed;
|
|
18
19
|
exports.isVideoElement = isVideoElement;
|
|
19
|
-
exports.
|
|
20
|
+
exports.isAudioElement = isAudioElement;
|
|
21
|
+
exports.findMediaPlayerIframe = findMediaPlayerIframe;
|
|
20
22
|
exports.DISPLAY_AS_EMBED_DISABLED = exports.DISPLAY_AS_EMBED = exports.DISPLAY_AS_LINK = exports.NONE_TYPE = exports.TEXT_TYPE = exports.VIDEO_EMBED_TYPE = exports.IMAGE_EMBED_TYPE = exports.FILE_LINK_TYPE = exports.LINK_TYPE = void 0;
|
|
21
23
|
|
|
22
24
|
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
|
@@ -27,6 +29,8 @@ var _contentInsertionUtils = require("../../contentInsertionUtils.js");
|
|
|
27
29
|
|
|
28
30
|
var url = _interopRequireWildcard(require("url"));
|
|
29
31
|
|
|
32
|
+
var _formatMessage = _interopRequireDefault(require("../../../format-message.js"));
|
|
33
|
+
|
|
30
34
|
/*
|
|
31
35
|
* Copyright (C) 2019 - present Instructure, Inc.
|
|
32
36
|
*
|
|
@@ -126,7 +130,7 @@ function asLink($element, editor) {
|
|
|
126
130
|
function asVideoElement($element) {
|
|
127
131
|
var _$videoElem$parentEle;
|
|
128
132
|
|
|
129
|
-
const $videoElem =
|
|
133
|
+
const $videoElem = findMediaPlayerIframe($element);
|
|
130
134
|
|
|
131
135
|
if (!isVideoElement($videoElem)) {
|
|
132
136
|
return null;
|
|
@@ -139,6 +143,39 @@ function asVideoElement($element) {
|
|
|
139
143
|
});
|
|
140
144
|
}
|
|
141
145
|
|
|
146
|
+
function asAudioElement($element) {
|
|
147
|
+
var _$element$parentEleme;
|
|
148
|
+
|
|
149
|
+
if (!$element) {
|
|
150
|
+
return null;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const $audioIframe = $element.tagName === 'IFRAME' ? $element : $element.firstElementChild;
|
|
154
|
+
const $tinymceIframeShim = $audioIframe.parentElement;
|
|
155
|
+
const title = ($audioIframe.getAttribute('title') || $tinymceIframeShim.getAttribute('data-mce-p-title') || '').replace((0, _formatMessage.default)('Video player for '), '');
|
|
156
|
+
const audioOptions = {
|
|
157
|
+
titleText: title,
|
|
158
|
+
id: ((_$element$parentEleme = $element.parentElement) === null || _$element$parentEleme === void 0 ? void 0 : _$element$parentEleme.getAttribute('data-mce-p-data-media-id')) || $element.getAttribute('data-mce-p-data-media-id')
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
if ($audioIframe.tagName === 'IFRAME') {
|
|
162
|
+
const audioDoc = $audioIframe.contentDocument;
|
|
163
|
+
|
|
164
|
+
try {
|
|
165
|
+
var _audioDoc$querySelect;
|
|
166
|
+
|
|
167
|
+
const trackSJson = (_audioDoc$querySelect = audioDoc.querySelector('[data-tracks]')) === null || _audioDoc$querySelect === void 0 ? void 0 : _audioDoc$querySelect.getAttribute('data-tracks');
|
|
168
|
+
|
|
169
|
+
if (trackSJson) {
|
|
170
|
+
audioOptions.tracks = JSON.parse(trackSJson);
|
|
171
|
+
} // eslint-disable-next-line no-empty
|
|
172
|
+
|
|
173
|
+
} catch (e) {}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
return audioOptions;
|
|
177
|
+
}
|
|
178
|
+
|
|
142
179
|
function asText($element, editor) {
|
|
143
180
|
const text = editor && editor.selection.getContent({
|
|
144
181
|
format: 'text'
|
|
@@ -206,7 +243,7 @@ function isImageEmbed($element) {
|
|
|
206
243
|
return !!asImageEmbed($element) && !$element.getAttribute('data-placeholder-for');
|
|
207
244
|
}
|
|
208
245
|
|
|
209
|
-
function
|
|
246
|
+
function isMediaElement($element, mediaType) {
|
|
210
247
|
var _tinymceIframeShim$fi;
|
|
211
248
|
|
|
212
249
|
// the video is hosted in an iframe, but tinymce
|
|
@@ -228,15 +265,18 @@ function isVideoElement($element) {
|
|
|
228
265
|
}
|
|
229
266
|
|
|
230
267
|
const media_type = tinymceIframeShim.getAttribute('data-mce-p-data-media-type');
|
|
268
|
+
return media_type === mediaType;
|
|
269
|
+
}
|
|
231
270
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
271
|
+
function isVideoElement($element) {
|
|
272
|
+
return isMediaElement($element, 'video');
|
|
273
|
+
}
|
|
235
274
|
|
|
236
|
-
|
|
275
|
+
function isAudioElement($element) {
|
|
276
|
+
return isMediaElement($element, 'audio');
|
|
237
277
|
}
|
|
238
278
|
|
|
239
|
-
function
|
|
279
|
+
function findMediaPlayerIframe(elem) {
|
|
240
280
|
var _elem$firstElementChi;
|
|
241
281
|
|
|
242
282
|
if (elem.tagName === 'IFRAME') {
|
|
@@ -25,6 +25,8 @@ var _uiIcons = require("@instructure/ui-icons");
|
|
|
25
25
|
|
|
26
26
|
var _uiFlex = require("@instructure/ui-flex");
|
|
27
27
|
|
|
28
|
+
var _uiRadioInput = require("@instructure/ui-radio-input");
|
|
29
|
+
|
|
28
30
|
var _formatMessage = _interopRequireDefault(require("../../../../format-message.js"));
|
|
29
31
|
|
|
30
32
|
var _DimensionInput = _interopRequireDefault(require("./DimensionInput.js"));
|
|
@@ -48,37 +50,84 @@ var _useDimensionsState = _interopRequireDefault(require("./useDimensionsState.j
|
|
|
48
50
|
* You should have received a copy of the GNU Affero General Public License along
|
|
49
51
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
50
52
|
*/
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
minHeight = props.minHeight,
|
|
54
|
-
minWidth = props.minWidth;
|
|
55
|
-
let messages = [{
|
|
53
|
+
const getMessage = (dimensionsState, minWidth, minHeight, minPercentage) => {
|
|
54
|
+
let result = {
|
|
56
55
|
text: (0, _formatMessage.default)('Aspect ratio will be preserved'),
|
|
57
56
|
type: 'hint'
|
|
58
|
-
}
|
|
57
|
+
};
|
|
59
58
|
|
|
60
|
-
if (
|
|
61
|
-
|
|
59
|
+
if (dimensionsState.usePercentageUnits) {
|
|
60
|
+
if (!dimensionsState.isNumeric) {
|
|
61
|
+
result = {
|
|
62
|
+
text: (0, _formatMessage.default)('Percentage must be a number'),
|
|
63
|
+
type: 'error'
|
|
64
|
+
};
|
|
65
|
+
} else if (!dimensionsState.isAtLeastMinimums) {
|
|
66
|
+
result = {
|
|
67
|
+
text: (0, _formatMessage.default)('Must be at least {percentage}%', {
|
|
68
|
+
percentage: minPercentage
|
|
69
|
+
}),
|
|
70
|
+
type: 'error'
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
} else if (!dimensionsState.isNumeric) {
|
|
74
|
+
result = {
|
|
62
75
|
text: (0, _formatMessage.default)('Width and height must be numbers'),
|
|
63
76
|
type: 'error'
|
|
64
|
-
}
|
|
77
|
+
};
|
|
65
78
|
} else if (!dimensionsState.isAtLeastMinimums) {
|
|
66
|
-
|
|
79
|
+
result = {
|
|
67
80
|
text: (0, _formatMessage.default)('Must be at least {width} x {height}px', {
|
|
68
81
|
width: minWidth,
|
|
69
82
|
height: minHeight
|
|
70
83
|
}),
|
|
71
84
|
type: 'error'
|
|
72
|
-
}
|
|
85
|
+
};
|
|
73
86
|
}
|
|
74
87
|
|
|
75
|
-
return
|
|
88
|
+
return result;
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
function DimensionsInput(props) {
|
|
92
|
+
const dimensionsState = props.dimensionsState,
|
|
93
|
+
minHeight = props.minHeight,
|
|
94
|
+
minWidth = props.minWidth,
|
|
95
|
+
minPercentage = props.minPercentage;
|
|
96
|
+
const message = getMessage(dimensionsState, minWidth, minHeight, minPercentage);
|
|
97
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_uiFlex.Flex, {
|
|
98
|
+
direction: "column"
|
|
99
|
+
}, /*#__PURE__*/_react.default.createElement(_uiFlex.Flex.Item, {
|
|
100
|
+
padding: "small"
|
|
101
|
+
}, /*#__PURE__*/_react.default.createElement(_uiRadioInput.RadioInputGroup, {
|
|
102
|
+
"data-testid": "dimension-type",
|
|
103
|
+
name: "dimension-type",
|
|
104
|
+
description: (0, _formatMessage.default)('Dimension type'),
|
|
105
|
+
onChange: e => {
|
|
106
|
+
dimensionsState.setUsePercentageUnits(e.target.value === 'percentage');
|
|
107
|
+
},
|
|
108
|
+
value: dimensionsState.usePercentageUnits ? 'percentage' : 'pixels'
|
|
109
|
+
}, /*#__PURE__*/_react.default.createElement(_uiRadioInput.RadioInput, {
|
|
110
|
+
label: (0, _formatMessage.default)('Pixels'),
|
|
111
|
+
value: "pixels"
|
|
112
|
+
}), /*#__PURE__*/_react.default.createElement(_uiRadioInput.RadioInput, {
|
|
113
|
+
label: (0, _formatMessage.default)('Percentage'),
|
|
114
|
+
value: "percentage"
|
|
115
|
+
})))), /*#__PURE__*/_react.default.createElement(_uiFormField.FormFieldGroup, {
|
|
76
116
|
description: /*#__PURE__*/_react.default.createElement(_uiA11yContent.ScreenReaderContent, null, (0, _formatMessage.default)('Dimensions')),
|
|
77
|
-
messages:
|
|
117
|
+
messages: [message]
|
|
78
118
|
}, /*#__PURE__*/_react.default.createElement(_uiFlex.Flex, {
|
|
79
119
|
alignItems: "start",
|
|
80
|
-
direction: "row"
|
|
81
|
-
|
|
120
|
+
direction: "row",
|
|
121
|
+
"data-testid": "input-number-container"
|
|
122
|
+
}, dimensionsState.usePercentageUnits ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_uiFlex.Flex.Item, {
|
|
123
|
+
shouldShrink: true,
|
|
124
|
+
shouldGrow: true
|
|
125
|
+
}, /*#__PURE__*/_react.default.createElement(_DimensionInput.default, {
|
|
126
|
+
dimensionState: dimensionsState.percentageState,
|
|
127
|
+
label: (0, _formatMessage.default)('Percentage')
|
|
128
|
+
})), /*#__PURE__*/_react.default.createElement(_uiFlex.Flex.Item, {
|
|
129
|
+
padding: "x-small small"
|
|
130
|
+
}, "%")) : /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_uiFlex.Flex.Item, {
|
|
82
131
|
shrink: true
|
|
83
132
|
}, /*#__PURE__*/_react.default.createElement(_DimensionInput.default, {
|
|
84
133
|
dimensionState: dimensionsState.widthState,
|
|
@@ -92,7 +141,7 @@ function DimensionsInput(props) {
|
|
|
92
141
|
dimensionState: dimensionsState.heightState,
|
|
93
142
|
label: (0, _formatMessage.default)('Height'),
|
|
94
143
|
minValue: minHeight
|
|
95
|
-
}))));
|
|
144
|
+
}))))));
|
|
96
145
|
}
|
|
97
146
|
|
|
98
147
|
DimensionsInput.propTypes = {
|
|
@@ -103,12 +152,20 @@ DimensionsInput.propTypes = {
|
|
|
103
152
|
setInputValue: _propTypes.func.isRequired
|
|
104
153
|
}).isRequired,
|
|
105
154
|
isNumeric: _propTypes.bool.isRequired,
|
|
155
|
+
usePercentageUnits: _propTypes.bool.isRequired,
|
|
156
|
+
setUsePercentageUnits: _propTypes.func.isRequired,
|
|
106
157
|
widthState: (0, _propTypes.shape)({
|
|
107
158
|
addOffset: _propTypes.func.isRequired,
|
|
108
159
|
inputValue: _propTypes.string.isRequired,
|
|
109
160
|
setInputValue: _propTypes.func.isRequired
|
|
161
|
+
}).isRequired,
|
|
162
|
+
percentageState: (0, _propTypes.shape)({
|
|
163
|
+
addOffset: _propTypes.func.isRequired,
|
|
164
|
+
inputValue: _propTypes.string.isRequired,
|
|
165
|
+
setInputValue: _propTypes.func.isRequired
|
|
110
166
|
}).isRequired
|
|
111
167
|
}),
|
|
112
168
|
minHeight: _propTypes.number.isRequired,
|
|
113
|
-
minWidth: _propTypes.number.isRequired
|
|
169
|
+
minWidth: _propTypes.number.isRequired,
|
|
170
|
+
minPercentage: _propTypes.number.isRequired
|
|
114
171
|
};
|
|
@@ -56,20 +56,27 @@ function inputValueFor(initialNumber) {
|
|
|
56
56
|
function useDimensionsState(initialDimensions, constraints) {
|
|
57
57
|
const appliedHeight = initialDimensions.appliedHeight,
|
|
58
58
|
appliedWidth = initialDimensions.appliedWidth,
|
|
59
|
+
appliedPercentage = initialDimensions.appliedPercentage,
|
|
59
60
|
naturalHeight = initialDimensions.naturalHeight,
|
|
60
|
-
naturalWidth = initialDimensions.naturalWidth
|
|
61
|
+
naturalWidth = initialDimensions.naturalWidth,
|
|
62
|
+
usePercentageUnits = initialDimensions.usePercentageUnits;
|
|
61
63
|
const minHeight = constraints.minHeight,
|
|
62
|
-
minWidth = constraints.minWidth
|
|
64
|
+
minWidth = constraints.minWidth,
|
|
65
|
+
minPercentage = constraints.minPercentage;
|
|
63
66
|
const initialNumericValues = {
|
|
64
|
-
height: appliedHeight || naturalHeight,
|
|
65
|
-
width: appliedWidth || naturalWidth
|
|
67
|
+
height: usePercentageUnits ? naturalHeight : appliedHeight || naturalHeight,
|
|
68
|
+
width: usePercentageUnits ? naturalWidth : appliedWidth || naturalWidth,
|
|
69
|
+
percentage: appliedPercentage || 100
|
|
66
70
|
};
|
|
67
71
|
|
|
68
72
|
const _useState = (0, _react.useState)({
|
|
73
|
+
usePercentageUnits,
|
|
69
74
|
inputHeight: inputValueFor(initialNumericValues.height),
|
|
70
75
|
inputWidth: inputValueFor(initialNumericValues.width),
|
|
76
|
+
inputPercentage: inputValueFor(initialNumericValues.percentage),
|
|
71
77
|
numericHeight: initialNumericValues.height,
|
|
72
|
-
numericWidth: initialNumericValues.width
|
|
78
|
+
numericWidth: initialNumericValues.width,
|
|
79
|
+
numericPercentage: initialNumericValues.percentage
|
|
73
80
|
}),
|
|
74
81
|
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
75
82
|
dimensions = _useState2[0],
|
|
@@ -77,11 +84,13 @@ function useDimensionsState(initialDimensions, constraints) {
|
|
|
77
84
|
|
|
78
85
|
const currentNumericValues = {
|
|
79
86
|
height: dimensions.numericHeight,
|
|
80
|
-
width: dimensions.numericWidth
|
|
87
|
+
width: dimensions.numericWidth,
|
|
88
|
+
percentage: dimensions.numericPercentage
|
|
81
89
|
};
|
|
82
90
|
const dimensionMinimums = {
|
|
83
91
|
height: minHeight,
|
|
84
|
-
width: minWidth
|
|
92
|
+
width: minWidth,
|
|
93
|
+
percentage: minPercentage
|
|
85
94
|
};
|
|
86
95
|
const dimensionScaleFns = {
|
|
87
96
|
height: _DimensionUtils.scaleForHeight,
|
|
@@ -89,40 +98,66 @@ function useDimensionsState(initialDimensions, constraints) {
|
|
|
89
98
|
};
|
|
90
99
|
|
|
91
100
|
function updateDimensions(attributes) {
|
|
92
|
-
setDimensions((0, _objectSpread2.default)((0, _objectSpread2.default)({}, attributes), {}, {
|
|
101
|
+
setDimensions((0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({}, dimensions), attributes), {}, {
|
|
93
102
|
numericHeight: normalizedNumber(attributes.numericHeight),
|
|
94
|
-
numericWidth: normalizedNumber(attributes.numericWidth)
|
|
103
|
+
numericWidth: normalizedNumber(attributes.numericWidth),
|
|
104
|
+
numericPercentage: normalizedNumber(attributes.numericPercentage)
|
|
95
105
|
}));
|
|
96
106
|
}
|
|
97
107
|
|
|
98
|
-
function
|
|
99
|
-
|
|
108
|
+
function scaleDimensions(dimensionName, number, scaleConstraints) {
|
|
109
|
+
let width, height, percentage;
|
|
110
|
+
|
|
111
|
+
if (dimensionName === 'percentage') {
|
|
112
|
+
width = naturalWidth;
|
|
113
|
+
height = naturalHeight;
|
|
114
|
+
percentage = number;
|
|
115
|
+
} else {
|
|
116
|
+
const scaleFn = dimensionScaleFns[dimensionName];
|
|
117
|
+
const scaledDimensions = scaleFn(naturalWidth, naturalHeight, number, scaleConstraints);
|
|
118
|
+
width = scaledDimensions.width;
|
|
119
|
+
height = scaledDimensions.height;
|
|
120
|
+
percentage = initialNumericValues.percentage;
|
|
121
|
+
}
|
|
100
122
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
123
|
+
return {
|
|
124
|
+
width,
|
|
125
|
+
height,
|
|
126
|
+
percentage
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
function setNumericDimension(dimensionName, number) {
|
|
131
|
+
const _scaleDimensions = scaleDimensions(dimensionName, number, constraints),
|
|
132
|
+
height = _scaleDimensions.height,
|
|
133
|
+
width = _scaleDimensions.width,
|
|
134
|
+
percentage = _scaleDimensions.percentage;
|
|
104
135
|
|
|
105
136
|
updateDimensions({
|
|
106
137
|
numericHeight: height,
|
|
107
138
|
numericWidth: width,
|
|
139
|
+
numericPercentage: percentage,
|
|
108
140
|
inputHeight: inputValueFor(height),
|
|
109
|
-
inputWidth: inputValueFor(width)
|
|
141
|
+
inputWidth: inputValueFor(width),
|
|
142
|
+
inputPercentage: inputValueFor(percentage)
|
|
110
143
|
});
|
|
111
144
|
}
|
|
112
145
|
|
|
113
146
|
function setDimensionValue(dimensionName, value) {
|
|
114
|
-
const scaleFn = dimensionScaleFns[dimensionName];
|
|
115
147
|
const number = parseAsInteger(value);
|
|
116
148
|
|
|
117
|
-
const
|
|
118
|
-
height =
|
|
119
|
-
width =
|
|
149
|
+
const _scaleDimensions2 = scaleDimensions(dimensionName, number),
|
|
150
|
+
height = _scaleDimensions2.height,
|
|
151
|
+
width = _scaleDimensions2.width,
|
|
152
|
+
percentage = _scaleDimensions2.percentage;
|
|
120
153
|
|
|
121
154
|
updateDimensions({
|
|
122
155
|
numericHeight: height,
|
|
123
156
|
numericWidth: width,
|
|
157
|
+
numericPercentage: percentage,
|
|
124
158
|
inputHeight: dimensionName === 'height' ? value : inputValueFor(height),
|
|
125
|
-
inputWidth: dimensionName === 'width' ? value : inputValueFor(width)
|
|
159
|
+
inputWidth: dimensionName === 'width' ? value : inputValueFor(width),
|
|
160
|
+
inputPercentage: dimensionName === 'percentage' ? value : inputValueFor(percentage)
|
|
126
161
|
});
|
|
127
162
|
}
|
|
128
163
|
|
|
@@ -163,15 +198,35 @@ function useDimensionsState(initialDimensions, constraints) {
|
|
|
163
198
|
}
|
|
164
199
|
|
|
165
200
|
};
|
|
166
|
-
const
|
|
167
|
-
|
|
201
|
+
const percentageState = {
|
|
202
|
+
inputValue: dimensions.inputPercentage,
|
|
203
|
+
|
|
204
|
+
addOffset(offset) {
|
|
205
|
+
offsetDimension('percentage', offset);
|
|
206
|
+
},
|
|
207
|
+
|
|
208
|
+
setInputValue(value) {
|
|
209
|
+
setDimensionValue('percentage', value);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
};
|
|
213
|
+
const isNumeric = dimensions.usePercentageUnits ? Number.isFinite(dimensions.numericPercentage) : [dimensions.numericHeight, dimensions.numericWidth].every(Number.isFinite);
|
|
214
|
+
const isAtLeastMinimums = dimensions.usePercentageUnits ? dimensions.numericPercentage >= minPercentage : dimensions.numericHeight >= minHeight && dimensions.numericWidth >= minWidth;
|
|
168
215
|
return {
|
|
169
|
-
|
|
216
|
+
widthState,
|
|
170
217
|
heightState,
|
|
218
|
+
percentageState,
|
|
171
219
|
isAtLeastMinimums,
|
|
172
220
|
isNumeric,
|
|
173
|
-
isValid: isAtLeastMinimums && isNumeric,
|
|
174
221
|
width: dimensions.numericWidth,
|
|
175
|
-
|
|
222
|
+
height: dimensions.numericHeight,
|
|
223
|
+
percentage: dimensions.numericPercentage,
|
|
224
|
+
usePercentageUnits: dimensions.usePercentageUnits,
|
|
225
|
+
setUsePercentageUnits: value => {
|
|
226
|
+
setDimensions((0, _objectSpread2.default)((0, _objectSpread2.default)({}, dimensions), {}, {
|
|
227
|
+
usePercentageUnits: value
|
|
228
|
+
}));
|
|
229
|
+
},
|
|
230
|
+
isValid: isAtLeastMinimums && isNumeric
|
|
176
231
|
};
|
|
177
232
|
}
|
|
@@ -147,7 +147,8 @@ const ImageOptionsForm = ({
|
|
|
147
147
|
dimensionsState: dimensionsState,
|
|
148
148
|
disabled: displayAs !== 'embed',
|
|
149
149
|
minHeight: _ImageEmbedOptions.MIN_HEIGHT,
|
|
150
|
-
minWidth: _ImageEmbedOptions.MIN_WIDTH
|
|
150
|
+
minWidth: _ImageEmbedOptions.MIN_WIDTH,
|
|
151
|
+
minPercentage: _ImageEmbedOptions.MIN_PERCENTAGE
|
|
151
152
|
}))));
|
|
152
153
|
};
|
|
153
154
|
|
|
@@ -71,7 +71,7 @@ const defaultTinymceConfig = {
|
|
|
71
71
|
// then edited.
|
|
72
72
|
//
|
|
73
73
|
// this list needs to be kept in sync with the list in gems/canvas_sanitize/lib/canvas_sanitize/canvas_sanitize.rb
|
|
74
|
-
valid_elements: '@[id|class|style|title|dir<ltr?rtl|lang|xml::lang|role],a[rel|rev|charset|hreflang|tabindex|accesskey|type|name|href|target|title|class],strong/b,em/i,strike,u,#p,-ol[type|compact],-ul[type|compact],-li,br,img[longdesc|usemap|src|border|alt|title|hspace|vspace|width|height|align|role],-sub,-sup,-blockquote[cite],-table[border=0|cellspacing|cellpadding|width|frame|rules|height|align|summary|bgcolor|background|bordercolor],-tr[rowspan|width|height|align|valign|bgcolor|background|bordercolor],tbody,thead,tfoot,#td[colspan|rowspan|width|height|align|valign|bgcolor|background|bordercolor|scope],#th[colspan|rowspan|width|height|align|valign|scope],caption,-div,-span,-code,-pre,address,-h1,-h2,-h3,-h4,-h5,-h6,hr[size|noshade],-font[face|size|color],dd,dl,dt,cite,abbr,acronym,del[datetime|cite],ins[datetime|cite],object[classid|width|height|codebase|*],param[name|value|_value],embed[type|width|height|src|*],
|
|
74
|
+
valid_elements: '@[id|class|style|title|dir<ltr?rtl|lang|xml::lang|role],a[rel|rev|charset|hreflang|tabindex|accesskey|type|name|href|target|title|class],strong/b,em/i,strike,u,#p,-ol[type|compact],-ul[type|compact],-li,br,img[longdesc|usemap|src|border|alt|title|hspace|vspace|width|height|align|role],-sub,-sup,-blockquote[cite],-table[border=0|cellspacing|cellpadding|width|frame|rules|height|align|summary|bgcolor|background|bordercolor],-tr[rowspan|width|height|align|valign|bgcolor|background|bordercolor],tbody,thead,tfoot,#td[colspan|rowspan|width|height|align|valign|bgcolor|background|bordercolor|scope],#th[colspan|rowspan|width|height|align|valign|scope],caption,-div,-span,-code,-pre,address,-h1,-h2,-h3,-h4,-h5,-h6,hr[size|noshade],-font[face|size|color],dd,dl,dt,cite,abbr,acronym,del[datetime|cite],ins[datetime|cite],object[classid|width|height|codebase|*],param[name|value|_value],embed[type|width|height|src|*],map[name],area[shape|coords|href|alt|target],bdo,col[align|char|charoff|span|valign|width],colgroup[align|char|charoff|span|valign|width],dfn,kbd,label[for],legend,q[cite],samp,small,tt,var,big,figure,figcaption,source[media|sizes|src|srcset|type],track,mark,article,aside,details,footer,header,nav,section,summary,time',
|
|
75
75
|
extended_valid_elements: "@[id|accesskey|class|dir|lang|style|tabindex|title|contenteditable|contextmenu|draggable|dropzone|hidden|longdesc|spellcheck|translate|align|role|aria-labelledby|aria-atomic|aria-busy|aria-controls|aria-describedby|aria-disabled|aria-dropeffect|aria-flowto|aria-grabbed|aria-haspopup|aria-hidden|aria-invalid|aria-label|aria-labelledby|aria-live|aria-owns|aria-relevant|aria-autocomplete|aria-checked|aria-disabled|aria-expanded|aria-haspopup|aria-hidden|aria-invalid|aria-label|aria-level|aria-multiline|aria-multiselectable|aria-orientation|aria-pressed|aria-readonly|aria-required|aria-selected|aria-sort|aria-valuemax|aria-valuemin|aria-valuenow|aria-valuetext],iframe[id|data-media-type|title|src|width|height|name|align|style|class|sandbox|allowfullscreen|webkitallowfullscreen|mozallowfullscreen|allow],i[iclass],a[hidden|href|target|rel|media|hreflang|type|charset|name|rev|shape|coords|download|alt],#p,li[value],-ol[reversed|start|type|compact],pre[width],table[border|summary|width|frame|rules|cellspacing|cellpadding|bgcolor],tbody[char|charoff|valign],td[colspan|rowspan|headers|abbr|axis|scope|align|char|charoff|valign|nowrap|bgcolor|width|height],tfoot[char|charoff|valign],th[colspan|rowspan|headers|scope|abbr|axis|align|char|charoff|valign|nowrap|bgcolor|width|height],thead[char|charoff|valign],tr[char|charoff|valign|bgcolor],-ul[compact],video[name|src|allowfullscreen|muted|poster|width|height|controls|playsinline],audio[name|src|muted|controls],annotation[href|xref|definitionURL|encoding|cd|name|src],annotation-xml[href|xref|definitionURL|encoding|cd|name|src],maction[href|xref|mathcolor|mathbackground|actiontype|selection],maligngroup[href|xref|mathcolor|mathbackground|groupalign],malignmark[href|xref|mathcolor|mathbackground|edge],math[xmlns|href|xref|display|maxwidth|overflow|altimg|altimg-width|altimg-height|altimg-valign|alttext|cdgroup|mathcolor|mathbackground|scriptlevel|displaystyle|scriptsizemultiplier|scriptminsize|infixlinebreakstyle|decimalpoint|mathvariant|mathsize|width|height|valign|form|fence|separator|lspace|rspace|stretchy|symmetric|maxsize|minsize|largeop|movablelimits|accent|linebreak|lineleading|linebreakstyle|linebreakmultchar|indentalign|indentshift|indenttarget|indentalignfirst|indentshiftfirst|indentalignlast|indentshiftlast|depth|lquote|rquote|linethickness|munalign|denomalign|bevelled|voffset|open|close|separators|notation|subscriptshift|superscriptshift|accentunder|align|rowalign|columnalign|groupalign|alignmentscope|columnwidth|rowspacing|columnspacing|rowlines|columnlines|frame|framespacing|equalrows|equalcolumns|side|minlabelspacing|rowspan|columnspan|edge|stackalign|charalign|charspacing|longdivstyle|position|shift|location|crossout|length|leftoverhang|rightoverhang|mslinethickness|selection],menclose[href|xref|mathcolor|mathbackground|notation],merror[href|xref|mathcolor|mathbackground],mfenced[href|xref|mathcolor|mathbackground|open|close|separators],mfrac[href|xref|mathcolor|mathbackground|linethickness|munalign|denomalign|bevelled],mglyph[href|xref|mathcolor|mathbackground|src|alt|width|height|valign],mi[href|xref|mathcolor|mathbackground|mathvariant|mathsize],mlabeledtr[href|xref|mathcolor|mathbackground],mlongdiv[href|xref|mathcolor|mathbackground|longdivstyle|align|stackalign|charalign|charspacing],mmultiscripts[href|xref|mathcolor|mathbackground|subscriptshift|superscriptshift],mn[href|xref|mathcolor|mathbackground|mathvariant|mathsize],mo[href|xref|mathcolor|mathbackground|mathvariant|mathsize|form|fence|separator|lspace|rspace|stretchy|symmetric|maxsize|minsize|largeop|movablelimits|accent|linebreak|lineleading|linebreakstyle|linebreakmultchar|indentalign|indentshift|indenttarget|indentalignfirst|indentshiftfirst|indentalignlast|indentshiftlast],mover[href|xref|mathcolor|mathbackground|accent|align],mpadded[href|xref|mathcolor|mathbackground|height|depth|width|lspace|voffset],mphantom[href|xref|mathcolor|mathbackground],mprescripts[href|xref|mathcolor|mathbackground],mroot[href|xref|mathcolor|mathbackground],mrow[href|xref|mathcolor|mathbackground],ms[href|xref|mathcolor|mathbackground|mathvariant|mathsize|lquote|rquote],mscarries[href|xref|mathcolor|mathbackground|position|location|crossout|scriptsizemultiplier],mscarry[href|xref|mathcolor|mathbackground|location|crossout],msgroup[href|xref|mathcolor|mathbackground|position|shift],msline[href|xref|mathcolor|mathbackground|position|length|leftoverhang|rightoverhang|mslinethickness],mspace[href|xref|mathcolor|mathbackground|mathvariant|mathsize],msqrt[href|xref|mathcolor|mathbackground],msrow[href|xref|mathcolor|mathbackground|position],mstack[href|xref|mathcolor|mathbackground|align|stackalign|charalign|charspacing],mstyle[href|xref|mathcolor|mathbackground|scriptlevel|displaystyle|scriptsizemultiplier|scriptminsize|infixlinebreakstyle|decimalpoint|mathvariant|mathsize|width|height|valign|form|fence|separator|lspace|rspace|stretchy|symmetric|maxsize|minsize|largeop|movablelimits|accent|linebreak|lineleading|linebreakstyle|linebreakmultchar|indentalign|indentshift|indenttarget|indentalignfirst|indentshiftfirst|indentalignlast|indentshiftlast|depth|lquote|rquote|linethickness|munalign|denomalign|bevelled|voffset|open|close|separators|notation|subscriptshift|superscriptshift|accentunder|align|rowalign|columnalign|groupalign|alignmentscope|columnwidth|rowspacing|columnspacing|rowlines|columnlines|frame|framespacing|equalrows|equalcolumns|side|minlabelspacing|rowspan|columnspan|edge|stackalign|charalign|charspacing|longdivstyle|position|shift|location|crossout|length|leftoverhang|rightoverhang|mslinethickness|selection],msub[href|xref|mathcolor|mathbackground|subscriptshift],msubsup[href|xref|mathcolor|mathbackground|subscriptshift|superscriptshift],msup[href|xref|mathcolor|mathbackground|superscriptshift],mtable[href|xref|mathcolor|mathbackground|align|rowalign|columnalign|groupalign|alignmentscope|columnwidth|width|rowspacing|columnspacing|rowlines|columnlines|frame|framespacing|equalrows|equalcolumns|displaystyle|side|minlabelspacing],mtd[href|xref|mathcolor|mathbackground|rowspan|columnspan|rowalign|columnalign|groupalign],mtext[href|xref|mathcolor|mathbackground|mathvariant|mathsize|width|height|depth|linebreak],mtr[href|xref|mathcolor|mathbackground|rowalign|columnalign|groupalign],munder[href|xref|mathcolor|mathbackground|accentunder|align],munderover[href|xref|mathcolor|mathbackground|accent|accentunder|align],none[href|xref|mathcolor|mathbackground],semantics[href|xref|definitionURL|encoding],picture,ruby,rp,rt,svg[*],g[*],circle[*]",
|
|
76
76
|
non_empty_elements: 'td th iframe video audio object script a i area base basefont br col frame hr img input isindex link meta param embed source wbr track ruby',
|
|
77
77
|
// tiny's external link create/edit dialog config
|
|
@@ -109,7 +109,7 @@ export const editorOptionsPropType = PropTypes.shape({
|
|
|
109
109
|
// for an `import` style solution
|
|
110
110
|
|
|
111
111
|
const styles = {
|
|
112
|
-
componentId: '
|
|
112
|
+
componentId: 'dyzZI',
|
|
113
113
|
template: function (theme) {
|
|
114
114
|
return `
|
|
115
115
|
|
|
@@ -167,7 +167,7 @@ const styles = {
|
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
.tox .tox-button {
|
|
170
|
-
background-color: ${theme.
|
|
170
|
+
background-color: ${theme.canvasPrimaryButtonHoverBackground || 'inherit'};
|
|
171
171
|
font-family: ${theme.canvasFontFamily || 'inherit'};
|
|
172
172
|
font-weight: ${theme.canvasButtonFontWeight || 'inherit'};
|
|
173
173
|
font-size: ${theme.canvasButtonFontSize || 'inherit'};
|
|
@@ -44,7 +44,7 @@ const mapping = {
|
|
|
44
44
|
}; // these are the recognized standard and custom locales. remember to extend
|
|
45
45
|
// this list when support for a locale is added.
|
|
46
46
|
|
|
47
|
-
const recognized = ['ar', 'bg', 'ca', 'cs', 'cy', 'da', 'da-x-k12', 'de', 'el', 'en', 'en-AU', 'en-AU-x-unimelb', 'en-GB', 'en-GB-x-lbs', 'en-GB-x-ukhe', 'es', 'es-ES', 'fa-IR', 'fi', 'fr', 'fr-CA', 'he', 'ht', 'hu', 'hy', 'is', 'it', 'ja', 'ko', 'mi', 'nb', 'nb-x-k12', 'nl', 'nn', 'pl', 'pt', 'pt-BR', 'ro', 'ru', 'sq', 'sr', 'sl', 'sv', 'sv-x-k12', 'tr', 'vi', 'zh-Hans', 'zh-Hant'];
|
|
47
|
+
const recognized = ['ar', 'bg', 'ca', 'cs', 'cy', 'da', 'da-x-k12', 'de', 'el', 'en', 'en-AU', 'en-AU-x-unimelb', 'en-GB', 'en-GB-x-lbs', 'en-GB-x-ukhe', 'es', 'es-ES', 'fa-IR', 'fi', 'fr', 'fr-CA', 'he', 'ht', 'hu', 'hy', 'is', 'it', 'ja', 'ko', 'mi', 'nb', 'nb-x-k12', 'nl', 'nn', 'pl', 'pt', 'pt-BR', 'ro', 'ru', 'sq', 'sr', 'sl', 'sv', 'sv-x-k12', 'th', 'tr', 'vi', 'zh-Hans', 'zh-Hant'];
|
|
48
48
|
export default function normalizeLocale(locale) {
|
|
49
49
|
if (!locale) {
|
|
50
50
|
// default to english
|
|
@@ -31,6 +31,12 @@ const SHAPE_OPTIONS = [{
|
|
|
31
31
|
}, {
|
|
32
32
|
id: 'triangle',
|
|
33
33
|
label: "\u0645\u062B\u0644\u062B"
|
|
34
|
+
}, {
|
|
35
|
+
id: 'diamond',
|
|
36
|
+
label: "\u0645\u0639\u064A\u0651\u0646"
|
|
37
|
+
}, {
|
|
38
|
+
id: 'pentagon',
|
|
39
|
+
label: "\u062E\u0645\u0627\u0633\u064A"
|
|
34
40
|
}, {
|
|
35
41
|
id: 'hexagon',
|
|
36
42
|
label: "\u0633\u062F\u0627\u0633\u064A"
|
|
@@ -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: "\u0645\u0631\u0628\u0639",
|
|
63
63
|
circle: "\u0627\u0644\u062F\u0627\u0626\u0631\u0629",
|
|
64
64
|
triangle: "\u0645\u062B\u0644\u062B",
|
|
65
|
+
diamond: "\u0645\u0639\u064A\u0651\u0646",
|
|
66
|
+
pentagon: "\u062E\u0645\u0627\u0633\u064A",
|
|
65
67
|
hexagon: "\u0633\u062F\u0627\u0633\u064A",
|
|
66
68
|
octagon: "\u062B\u0645\u0627\u0646\u064A",
|
|
67
69
|
star: "\u0646\u062C\u0645\u0629"
|