@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
|
@@ -19,7 +19,8 @@ import React from 'react';
|
|
|
19
19
|
import { render } from '@testing-library/react';
|
|
20
20
|
import DimensionsInput, { useDimensionsState } from "../index.js";
|
|
21
21
|
import DimensionsInputDriver from "./DimensionsInputDriver.js";
|
|
22
|
-
const
|
|
22
|
+
const W_AND_H_NAN_ERROR = 'Width and height must be numbers';
|
|
23
|
+
const PERCENTAGE_NAN_ERROR = 'Percentage must be a number';
|
|
23
24
|
const ASPECT_MESSAGE = 'Aspect ratio will be preserved';
|
|
24
25
|
describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
25
26
|
let $container;
|
|
@@ -34,12 +35,15 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
34
35
|
initialState = {
|
|
35
36
|
appliedHeight: 300,
|
|
36
37
|
appliedWidth: 150,
|
|
38
|
+
appliedPercentage: 70,
|
|
39
|
+
usePercentageUnits: false,
|
|
37
40
|
naturalHeight: 200,
|
|
38
41
|
naturalWidth: 100
|
|
39
42
|
};
|
|
40
43
|
props = {
|
|
41
44
|
minWidth: 30,
|
|
42
|
-
minHeight: 60
|
|
45
|
+
minHeight: 60,
|
|
46
|
+
minPercentage: 10
|
|
43
47
|
};
|
|
44
48
|
});
|
|
45
49
|
afterEach(() => {
|
|
@@ -50,10 +54,12 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
50
54
|
function SpecComponent() {
|
|
51
55
|
const _props = props,
|
|
52
56
|
minHeight = _props.minHeight,
|
|
53
|
-
minWidth = _props.minWidth
|
|
57
|
+
minWidth = _props.minWidth,
|
|
58
|
+
minPercentage = _props.minPercentage;
|
|
54
59
|
dimensionsState = useDimensionsState(initialState, {
|
|
55
60
|
minHeight,
|
|
56
|
-
minWidth
|
|
61
|
+
minWidth,
|
|
62
|
+
minPercentage
|
|
57
63
|
});
|
|
58
64
|
return /*#__PURE__*/React.createElement(DimensionsInput, Object.assign({
|
|
59
65
|
dimensionsState: dimensionsState
|
|
@@ -64,18 +70,51 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
64
70
|
component = render( /*#__PURE__*/React.createElement(SpecComponent, null), {
|
|
65
71
|
container: $container
|
|
66
72
|
});
|
|
67
|
-
dimensions = new DimensionsInputDriver($container
|
|
73
|
+
dimensions = new DimensionsInputDriver($container);
|
|
68
74
|
}
|
|
69
75
|
|
|
70
76
|
function buildMinDimensionsError() {
|
|
71
77
|
return `Must be at least ${props.minWidth} x ${props.minHeight}px`;
|
|
72
78
|
}
|
|
73
79
|
|
|
80
|
+
function buildMinPercentageError() {
|
|
81
|
+
return `Must be at least ${props.minPercentage}%`;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
describe('"Pixels" radio button', () => {
|
|
85
|
+
beforeEach(() => {
|
|
86
|
+
initialState.usePercentageUnits = false;
|
|
87
|
+
renderComponent();
|
|
88
|
+
});
|
|
89
|
+
it('is selected', () => {
|
|
90
|
+
expect(dimensions.pixelsRadioButton.checked).toEqual(true);
|
|
91
|
+
});
|
|
92
|
+
it('is not selected', () => {
|
|
93
|
+
expect(dimensions.percentageRadioButton.checked).toEqual(false);
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
describe('"Percentage" radio button', () => {
|
|
97
|
+
beforeEach(() => {
|
|
98
|
+
initialState.usePercentageUnits = true;
|
|
99
|
+
renderComponent();
|
|
100
|
+
});
|
|
101
|
+
it('is selected', () => {
|
|
102
|
+
expect(dimensions.percentageRadioButton.checked).toEqual(true);
|
|
103
|
+
});
|
|
104
|
+
it('is not selected', () => {
|
|
105
|
+
expect(dimensions.pixelsRadioButton.checked).toEqual(false);
|
|
106
|
+
});
|
|
107
|
+
});
|
|
74
108
|
describe('"Width" field', () => {
|
|
75
109
|
it('is present', () => {
|
|
76
110
|
renderComponent();
|
|
77
111
|
expect(dimensions.width).not.toBeNull();
|
|
78
112
|
});
|
|
113
|
+
it('is not present', () => {
|
|
114
|
+
initialState.usePercentageUnits = true;
|
|
115
|
+
renderComponent();
|
|
116
|
+
expect(dimensions.width).toBeNull();
|
|
117
|
+
});
|
|
79
118
|
describe('when a width has been applied to the element', () => {
|
|
80
119
|
it('uses the applied width as the field value', () => {
|
|
81
120
|
renderComponent();
|
|
@@ -197,7 +236,7 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
197
236
|
expect(dimensionsState.isValid).toEqual(false);
|
|
198
237
|
});
|
|
199
238
|
it('displays a validation error with the field', () => {
|
|
200
|
-
expect(dimensions.messageTexts).toEqual([
|
|
239
|
+
expect(dimensions.messageTexts).toEqual([W_AND_H_NAN_ERROR]);
|
|
201
240
|
});
|
|
202
241
|
});
|
|
203
242
|
describe('when the value is less than the minimum', () => {
|
|
@@ -453,6 +492,11 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
453
492
|
renderComponent();
|
|
454
493
|
expect(dimensions.height).not.toBeNull();
|
|
455
494
|
});
|
|
495
|
+
it('is not present', () => {
|
|
496
|
+
initialState.usePercentageUnits = true;
|
|
497
|
+
renderComponent();
|
|
498
|
+
expect(dimensions.height).toBeNull();
|
|
499
|
+
});
|
|
456
500
|
describe('when a height has been applied to the element', () => {
|
|
457
501
|
it('uses the applied height as the field value', () => {
|
|
458
502
|
renderComponent();
|
|
@@ -573,7 +617,7 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
573
617
|
expect(dimensionsState.isValid).toEqual(false);
|
|
574
618
|
});
|
|
575
619
|
it('displays a validation error with the field', () => {
|
|
576
|
-
expect(dimensions.messageTexts).toEqual([
|
|
620
|
+
expect(dimensions.messageTexts).toEqual([W_AND_H_NAN_ERROR]);
|
|
577
621
|
});
|
|
578
622
|
});
|
|
579
623
|
describe('when the value is less than the minimum', () => {
|
|
@@ -832,4 +876,276 @@ describe('RCE > Plugins > Shared > DimensionsInput', () => {
|
|
|
832
876
|
});
|
|
833
877
|
});
|
|
834
878
|
});
|
|
879
|
+
describe('"Percentage" field', () => {
|
|
880
|
+
beforeEach(() => {
|
|
881
|
+
initialState.usePercentageUnits = true;
|
|
882
|
+
});
|
|
883
|
+
it('is present', () => {
|
|
884
|
+
renderComponent();
|
|
885
|
+
expect(dimensions.percentage).not.toBeNull();
|
|
886
|
+
});
|
|
887
|
+
it('is not present', () => {
|
|
888
|
+
initialState.usePercentageUnits = false;
|
|
889
|
+
renderComponent();
|
|
890
|
+
expect(dimensions.percentage).toBeNull();
|
|
891
|
+
});
|
|
892
|
+
describe('when the value changes', () => {
|
|
893
|
+
beforeEach(renderComponent);
|
|
894
|
+
it('updates the value in the field', () => {
|
|
895
|
+
dimensions.percentage.setValue('95');
|
|
896
|
+
expect(dimensions.percentage.value).toEqual('95');
|
|
897
|
+
});
|
|
898
|
+
describe('when the value includes whitespace', () => {
|
|
899
|
+
it('preserves the whitespace in the field', () => {
|
|
900
|
+
dimensions.percentage.setValue(' 120 ');
|
|
901
|
+
expect(dimensions.percentage.value).toEqual(' 120 ');
|
|
902
|
+
});
|
|
903
|
+
it('ignores whitespace in the dimensions state height', () => {
|
|
904
|
+
dimensions.percentage.setValue(' 50 ');
|
|
905
|
+
expect(dimensionsState.percentage).toEqual(50);
|
|
906
|
+
});
|
|
907
|
+
});
|
|
908
|
+
describe('when the value is a decimal number', () => {
|
|
909
|
+
it('preserves the decimal value in the field', () => {
|
|
910
|
+
dimensions.percentage.setValue('19.51');
|
|
911
|
+
expect(dimensions.percentage.value).toEqual('19.51');
|
|
912
|
+
});
|
|
913
|
+
it('sets the dimensions state height with the rounded integer', () => {
|
|
914
|
+
dimensions.percentage.setValue('19.51');
|
|
915
|
+
expect(dimensionsState.percentage).toEqual(20);
|
|
916
|
+
});
|
|
917
|
+
});
|
|
918
|
+
describe('when the value is cleared', () => {
|
|
919
|
+
beforeEach(() => {
|
|
920
|
+
dimensions.percentage.setValue('');
|
|
921
|
+
});
|
|
922
|
+
it('sets the dimensions state percentage to null', () => {
|
|
923
|
+
expect(dimensionsState.percentage).toBeNull();
|
|
924
|
+
});
|
|
925
|
+
it('sets the dimensions state as invalid', () => {
|
|
926
|
+
expect(dimensionsState.isValid).toEqual(false);
|
|
927
|
+
});
|
|
928
|
+
});
|
|
929
|
+
describe('when the value is not a number', () => {
|
|
930
|
+
beforeEach(() => {
|
|
931
|
+
dimensions.percentage.setValue('twelve');
|
|
932
|
+
});
|
|
933
|
+
it('preserves the invalid value in the field', () => {
|
|
934
|
+
expect(dimensions.percentage.value).toEqual('twelve');
|
|
935
|
+
});
|
|
936
|
+
it('sets the dimensions state percentage to NaN', () => {
|
|
937
|
+
expect(dimensionsState.percentage).toBeNaN();
|
|
938
|
+
});
|
|
939
|
+
});
|
|
940
|
+
describe('when the value is not a finite number', () => {
|
|
941
|
+
beforeEach(() => {
|
|
942
|
+
dimensions.percentage.setValue('Infinity');
|
|
943
|
+
});
|
|
944
|
+
it('preserves the value in the field', () => {
|
|
945
|
+
expect(dimensions.percentage.value).toEqual('Infinity');
|
|
946
|
+
});
|
|
947
|
+
it('sets the dimensions state height to NaN', () => {
|
|
948
|
+
expect(dimensionsState.percentage).toBeNaN();
|
|
949
|
+
});
|
|
950
|
+
it('sets the dimensions state as invalid', () => {
|
|
951
|
+
expect(dimensionsState.isValid).toEqual(false);
|
|
952
|
+
});
|
|
953
|
+
it('displays a validation error with the field', () => {
|
|
954
|
+
expect(dimensions.messageTexts).toEqual([PERCENTAGE_NAN_ERROR]);
|
|
955
|
+
});
|
|
956
|
+
});
|
|
957
|
+
describe('when the value is less than the minimum', () => {
|
|
958
|
+
beforeEach(() => {
|
|
959
|
+
dimensions.percentage.setValue(props.minPercentage);
|
|
960
|
+
dimensions.percentage.setValue(props.minPercentage - 1);
|
|
961
|
+
});
|
|
962
|
+
it('displays a validation error with the field', () => {
|
|
963
|
+
expect(dimensions.messageTexts).toEqual([buildMinPercentageError()]);
|
|
964
|
+
});
|
|
965
|
+
it('sets the dimensions state as invalid', () => {
|
|
966
|
+
expect(dimensionsState.isValid).toEqual(false);
|
|
967
|
+
});
|
|
968
|
+
});
|
|
969
|
+
describe('when the value becomes valid', () => {
|
|
970
|
+
beforeEach(() => {
|
|
971
|
+
dimensions.percentage.setValue(props.minPercentage - 1);
|
|
972
|
+
dimensions.percentage.setValue(props.minPercentage);
|
|
973
|
+
});
|
|
974
|
+
it('removes the validation error from the field', () => {
|
|
975
|
+
expect(dimensions.messageTexts).toEqual([ASPECT_MESSAGE]);
|
|
976
|
+
});
|
|
977
|
+
it('sets the dimensions state as valid', () => {
|
|
978
|
+
expect(dimensionsState.isValid).toEqual(true);
|
|
979
|
+
});
|
|
980
|
+
});
|
|
981
|
+
describe('when the value remains invalid', () => {
|
|
982
|
+
beforeEach(() => {
|
|
983
|
+
dimensions.percentage.setValue('');
|
|
984
|
+
dimensions.percentage.setValue(1);
|
|
985
|
+
});
|
|
986
|
+
it('displays a validation error with the field', () => {
|
|
987
|
+
expect(dimensions.messageTexts).toEqual([buildMinPercentageError()]);
|
|
988
|
+
});
|
|
989
|
+
it('sets the dimensions state as invalid', () => {
|
|
990
|
+
expect(dimensionsState.isValid).toEqual(false);
|
|
991
|
+
});
|
|
992
|
+
});
|
|
993
|
+
});
|
|
994
|
+
describe('when decremented', () => {
|
|
995
|
+
describe('when a percentage has been applied to the element', () => {
|
|
996
|
+
beforeEach(() => {
|
|
997
|
+
renderComponent();
|
|
998
|
+
dimensions.percentage.decrement();
|
|
999
|
+
});
|
|
1000
|
+
it('decrements the applied percentage for the field value', () => {
|
|
1001
|
+
expect(dimensions.percentage.value).toEqual(`${initialState.appliedPercentage - 1}`);
|
|
1002
|
+
});
|
|
1003
|
+
it('decrements the applied percentage for the dimensions state percentage', () => {
|
|
1004
|
+
expect(dimensionsState.percentage).toEqual(initialState.appliedPercentage - 1);
|
|
1005
|
+
});
|
|
1006
|
+
});
|
|
1007
|
+
describe('when no percentage has been applied to the element', () => {
|
|
1008
|
+
beforeEach(() => {
|
|
1009
|
+
initialState.appliedPercentage = null;
|
|
1010
|
+
renderComponent();
|
|
1011
|
+
dimensions.percentage.decrement();
|
|
1012
|
+
});
|
|
1013
|
+
it('decrements the full percentage for the field value', () => {
|
|
1014
|
+
expect(dimensions.percentage.value).toEqual('99');
|
|
1015
|
+
});
|
|
1016
|
+
it('decrements the full percentage for the dimensions state percentage', () => {
|
|
1017
|
+
expect(dimensionsState.percentage).toEqual(99);
|
|
1018
|
+
});
|
|
1019
|
+
});
|
|
1020
|
+
describe('when the applied percentage is less than the minimum percentage', () => {
|
|
1021
|
+
beforeEach(() => {
|
|
1022
|
+
initialState.appliedPercentage = props.minPercentage - 1;
|
|
1023
|
+
renderComponent();
|
|
1024
|
+
dimensions.percentage.decrement();
|
|
1025
|
+
});
|
|
1026
|
+
it('uses the minimum percentage for the field value', () => {
|
|
1027
|
+
expect(dimensions.percentage.value).toEqual(`${props.minPercentage}`);
|
|
1028
|
+
});
|
|
1029
|
+
it('uses the minimum percentage for the dimensions state percentage', () => {
|
|
1030
|
+
expect(dimensionsState.percentage).toEqual(props.minPercentage);
|
|
1031
|
+
});
|
|
1032
|
+
it('removes the validation error from the field', () => {
|
|
1033
|
+
expect(dimensions.messageTexts).toEqual([ASPECT_MESSAGE]);
|
|
1034
|
+
});
|
|
1035
|
+
it('sets the dimensions state as valid', () => {
|
|
1036
|
+
expect(dimensionsState.isValid).toEqual(true);
|
|
1037
|
+
});
|
|
1038
|
+
});
|
|
1039
|
+
describe('when the value had been cleared', () => {
|
|
1040
|
+
beforeEach(() => {
|
|
1041
|
+
renderComponent();
|
|
1042
|
+
dimensions.percentage.setValue('');
|
|
1043
|
+
dimensions.percentage.decrement();
|
|
1044
|
+
});
|
|
1045
|
+
it('decrements the initial percentage for the field value', () => {
|
|
1046
|
+
expect(dimensions.percentage.value).toEqual(`${initialState.appliedPercentage - 1}`);
|
|
1047
|
+
});
|
|
1048
|
+
it('decrements the initial percentage for the dimensions state percentage', () => {
|
|
1049
|
+
expect(dimensionsState.percentage).toEqual(initialState.appliedPercentage - 1);
|
|
1050
|
+
});
|
|
1051
|
+
it('removes the validation error from the field', () => {
|
|
1052
|
+
expect(dimensions.messageTexts).toEqual([ASPECT_MESSAGE]);
|
|
1053
|
+
});
|
|
1054
|
+
it('sets the dimensions state as valid', () => {
|
|
1055
|
+
expect(dimensionsState.isValid).toEqual(true);
|
|
1056
|
+
});
|
|
1057
|
+
});
|
|
1058
|
+
describe('when the value is not a number', () => {
|
|
1059
|
+
beforeEach(() => {
|
|
1060
|
+
renderComponent();
|
|
1061
|
+
dimensions.percentage.setValue('twelve');
|
|
1062
|
+
dimensions.percentage.decrement();
|
|
1063
|
+
});
|
|
1064
|
+
it('preserves the invalid value in the field', () => {
|
|
1065
|
+
expect(dimensions.percentage.value).toEqual('twelve');
|
|
1066
|
+
});
|
|
1067
|
+
it('sets the dimensions state percentage to NaN', () => {
|
|
1068
|
+
expect(dimensionsState.percentage).toBeNaN();
|
|
1069
|
+
});
|
|
1070
|
+
});
|
|
1071
|
+
});
|
|
1072
|
+
describe('when incremented', () => {
|
|
1073
|
+
describe('when a percentage has been applied to the element', () => {
|
|
1074
|
+
beforeEach(() => {
|
|
1075
|
+
renderComponent();
|
|
1076
|
+
dimensions.percentage.increment();
|
|
1077
|
+
});
|
|
1078
|
+
it('increments the applied height for the field value', () => {
|
|
1079
|
+
expect(dimensions.percentage.value).toEqual(`${initialState.appliedPercentage + 1}`);
|
|
1080
|
+
});
|
|
1081
|
+
it('increments the applied height for the dimensions state height', () => {
|
|
1082
|
+
expect(dimensionsState.percentage).toEqual(initialState.appliedPercentage + 1);
|
|
1083
|
+
});
|
|
1084
|
+
});
|
|
1085
|
+
describe('when no percentage has been applied to the element', () => {
|
|
1086
|
+
beforeEach(() => {
|
|
1087
|
+
initialState.appliedPercentage = null;
|
|
1088
|
+
renderComponent();
|
|
1089
|
+
dimensions.percentage.increment();
|
|
1090
|
+
});
|
|
1091
|
+
it('increments the full percentage for the field value', () => {
|
|
1092
|
+
expect(dimensions.percentage.value).toEqual('101');
|
|
1093
|
+
});
|
|
1094
|
+
it('increments the full percentage for the dimensions state percentage', () => {
|
|
1095
|
+
expect(dimensionsState.percentage).toEqual(101);
|
|
1096
|
+
});
|
|
1097
|
+
});
|
|
1098
|
+
describe('when the applied percentage is less than the minimum percentage', () => {
|
|
1099
|
+
beforeEach(() => {
|
|
1100
|
+
initialState.appliedPercentage = props.minPercentage - 2;
|
|
1101
|
+
renderComponent();
|
|
1102
|
+
dimensions.percentage.increment();
|
|
1103
|
+
});
|
|
1104
|
+
it('uses the minimum percentage for the field value', () => {
|
|
1105
|
+
expect(dimensions.percentage.value).toEqual(`${props.minPercentage}`);
|
|
1106
|
+
});
|
|
1107
|
+
it('uses the minimum percentage for the dimensions state percentage', () => {
|
|
1108
|
+
expect(dimensionsState.percentage).toEqual(props.minPercentage);
|
|
1109
|
+
});
|
|
1110
|
+
it('removes the validation error from the field', () => {
|
|
1111
|
+
expect(dimensions.messageTexts).toEqual([ASPECT_MESSAGE]);
|
|
1112
|
+
});
|
|
1113
|
+
it('sets the dimensions state as valid', () => {
|
|
1114
|
+
expect(dimensionsState.isValid).toEqual(true);
|
|
1115
|
+
});
|
|
1116
|
+
});
|
|
1117
|
+
describe('when the value had been cleared', () => {
|
|
1118
|
+
beforeEach(() => {
|
|
1119
|
+
renderComponent();
|
|
1120
|
+
dimensions.percentage.setValue('');
|
|
1121
|
+
dimensions.percentage.increment();
|
|
1122
|
+
});
|
|
1123
|
+
it('increments the initial percentage for the field value', () => {
|
|
1124
|
+
expect(dimensions.percentage.value).toEqual(`${initialState.appliedPercentage + 1}`);
|
|
1125
|
+
});
|
|
1126
|
+
it('increments the initial percentage for the dimensions state height', () => {
|
|
1127
|
+
expect(dimensionsState.percentage).toEqual(initialState.appliedPercentage + 1);
|
|
1128
|
+
});
|
|
1129
|
+
it('removes the validation error from the field', () => {
|
|
1130
|
+
expect(dimensions.messageTexts).toEqual([ASPECT_MESSAGE]);
|
|
1131
|
+
});
|
|
1132
|
+
it('sets the dimensions state as valid', () => {
|
|
1133
|
+
expect(dimensionsState.isValid).toEqual(true);
|
|
1134
|
+
});
|
|
1135
|
+
});
|
|
1136
|
+
describe('when the value is not a number', () => {
|
|
1137
|
+
beforeEach(() => {
|
|
1138
|
+
renderComponent();
|
|
1139
|
+
dimensions.percentage.setValue('twelve');
|
|
1140
|
+
dimensions.percentage.increment();
|
|
1141
|
+
});
|
|
1142
|
+
it('preserves the invalid value in the field', () => {
|
|
1143
|
+
expect(dimensions.percentage.value).toEqual('twelve');
|
|
1144
|
+
});
|
|
1145
|
+
it('sets the dimensions state percentage to NaN', () => {
|
|
1146
|
+
expect(dimensionsState.percentage).toBeNaN();
|
|
1147
|
+
});
|
|
1148
|
+
});
|
|
1149
|
+
});
|
|
1150
|
+
});
|
|
835
1151
|
});
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
17
|
*/
|
|
18
18
|
import NumberInputDriver from "./NumberInputDriver.js";
|
|
19
|
+
import { queryByLabelText, getByTestId } from '@testing-library/react';
|
|
19
20
|
export default class DimensionsInputDriver {
|
|
20
21
|
static find($parent) {
|
|
21
22
|
const $fieldset = [...$parent.querySelectorAll('fieldset')].find($element => $element.textContent.includes('Dimensions'));
|
|
@@ -27,26 +28,48 @@ export default class DimensionsInputDriver {
|
|
|
27
28
|
return new DimensionsInputDriver($fieldset);
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
constructor($
|
|
31
|
-
this.$
|
|
31
|
+
constructor($parent) {
|
|
32
|
+
this.$typeSelector = $parent.firstChild;
|
|
33
|
+
this.$dimensionsInput = $parent.lastChild;
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
get width() {
|
|
35
|
-
|
|
37
|
+
const $container = getByTestId(this.$dimensionsInput, 'input-number-container');
|
|
38
|
+
return NumberInputDriver.findByLabelText('Width', $container);
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
get height() {
|
|
39
|
-
|
|
42
|
+
const $container = getByTestId(this.$dimensionsInput, 'input-number-container');
|
|
43
|
+
return NumberInputDriver.findByLabelText('Height', $container);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
get percentage() {
|
|
47
|
+
const $container = getByTestId(this.$dimensionsInput, 'input-number-container');
|
|
48
|
+
return NumberInputDriver.findByLabelText('Percentage', $container);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
get pixelsRadioButton() {
|
|
52
|
+
const $parent = getByTestId(this.$typeSelector, 'dimension-type');
|
|
53
|
+
return queryByLabelText($parent, 'Pixels', {
|
|
54
|
+
exact: false
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
get percentageRadioButton() {
|
|
59
|
+
const $parent = getByTestId(this.$typeSelector, 'dimension-type');
|
|
60
|
+
return queryByLabelText($parent, 'Percentage', {
|
|
61
|
+
exact: false
|
|
62
|
+
});
|
|
40
63
|
}
|
|
41
64
|
|
|
42
65
|
get messageTexts() {
|
|
43
|
-
const messagesId = this.$
|
|
66
|
+
const messagesId = this.$dimensionsInput.getAttribute('aria-describedby');
|
|
44
67
|
|
|
45
68
|
if (messagesId == null) {
|
|
46
69
|
return [];
|
|
47
70
|
}
|
|
48
71
|
|
|
49
|
-
return [...this.$
|
|
72
|
+
return [...this.$dimensionsInput.querySelectorAll(`#${messagesId} > *`)].map($message => $message.textContent.trim());
|
|
50
73
|
}
|
|
51
74
|
|
|
52
75
|
}
|
|
@@ -21,37 +21,84 @@ import { ScreenReaderContent } from '@instructure/ui-a11y-content';
|
|
|
21
21
|
import { FormFieldGroup } from '@instructure/ui-form-field';
|
|
22
22
|
import { IconLockLine } from '@instructure/ui-icons';
|
|
23
23
|
import { Flex } from '@instructure/ui-flex';
|
|
24
|
+
import { RadioInput, RadioInputGroup } from '@instructure/ui-radio-input';
|
|
24
25
|
import formatMessage from "../../../../format-message.js";
|
|
25
26
|
import DimensionInput from "./DimensionInput.js";
|
|
26
27
|
export { default as useDimensionsState } from "./useDimensionsState.js";
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
minWidth = props.minWidth;
|
|
31
|
-
let messages = [{
|
|
28
|
+
|
|
29
|
+
const getMessage = (dimensionsState, minWidth, minHeight, minPercentage) => {
|
|
30
|
+
let result = {
|
|
32
31
|
text: "A rela\xE7\xE3o de aspeto ser\xE1 preservada",
|
|
33
32
|
type: 'hint'
|
|
34
|
-
}
|
|
33
|
+
};
|
|
35
34
|
|
|
36
|
-
if (
|
|
37
|
-
|
|
35
|
+
if (dimensionsState.usePercentageUnits) {
|
|
36
|
+
if (!dimensionsState.isNumeric) {
|
|
37
|
+
result = {
|
|
38
|
+
text: "Percentage must be a number",
|
|
39
|
+
type: 'error'
|
|
40
|
+
};
|
|
41
|
+
} else if (!dimensionsState.isAtLeastMinimums) {
|
|
42
|
+
result = {
|
|
43
|
+
text: "Deve ser pelo menos " + minPercentage + "%",
|
|
44
|
+
type: 'error'
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
} else if (!dimensionsState.isNumeric) {
|
|
48
|
+
result = {
|
|
38
49
|
text: "Largura e altura devem ser n\xFAmeros",
|
|
39
50
|
type: 'error'
|
|
40
|
-
}
|
|
51
|
+
};
|
|
41
52
|
} else if (!dimensionsState.isAtLeastMinimums) {
|
|
42
|
-
|
|
53
|
+
result = {
|
|
43
54
|
text: "Deve ter pelo menos " + minWidth + " x " + minHeight + "px",
|
|
44
55
|
type: 'error'
|
|
45
|
-
}
|
|
56
|
+
};
|
|
46
57
|
}
|
|
47
58
|
|
|
48
|
-
return
|
|
59
|
+
return result;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export default function DimensionsInput(props) {
|
|
63
|
+
const dimensionsState = props.dimensionsState,
|
|
64
|
+
minHeight = props.minHeight,
|
|
65
|
+
minWidth = props.minWidth,
|
|
66
|
+
minPercentage = props.minPercentage;
|
|
67
|
+
const message = getMessage(dimensionsState, minWidth, minHeight, minPercentage);
|
|
68
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Flex, {
|
|
69
|
+
direction: "column"
|
|
70
|
+
}, /*#__PURE__*/React.createElement(Flex.Item, {
|
|
71
|
+
padding: "small"
|
|
72
|
+
}, /*#__PURE__*/React.createElement(RadioInputGroup, {
|
|
73
|
+
"data-testid": "dimension-type",
|
|
74
|
+
name: "dimension-type",
|
|
75
|
+
description: "Tipo de dimens\xE3o",
|
|
76
|
+
onChange: e => {
|
|
77
|
+
dimensionsState.setUsePercentageUnits(e.target.value === 'percentage');
|
|
78
|
+
},
|
|
79
|
+
value: dimensionsState.usePercentageUnits ? 'percentage' : 'pixels'
|
|
80
|
+
}, /*#__PURE__*/React.createElement(RadioInput, {
|
|
81
|
+
label: "Pixels",
|
|
82
|
+
value: "pixels"
|
|
83
|
+
}), /*#__PURE__*/React.createElement(RadioInput, {
|
|
84
|
+
label: "Porcentagem",
|
|
85
|
+
value: "percentage"
|
|
86
|
+
})))), /*#__PURE__*/React.createElement(FormFieldGroup, {
|
|
49
87
|
description: /*#__PURE__*/React.createElement(ScreenReaderContent, null, "Dimens\xF5es"),
|
|
50
|
-
messages:
|
|
88
|
+
messages: [message]
|
|
51
89
|
}, /*#__PURE__*/React.createElement(Flex, {
|
|
52
90
|
alignItems: "start",
|
|
53
|
-
direction: "row"
|
|
54
|
-
|
|
91
|
+
direction: "row",
|
|
92
|
+
"data-testid": "input-number-container"
|
|
93
|
+
}, dimensionsState.usePercentageUnits ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Flex.Item, {
|
|
94
|
+
shouldShrink: true,
|
|
95
|
+
shouldGrow: true
|
|
96
|
+
}, /*#__PURE__*/React.createElement(DimensionInput, {
|
|
97
|
+
dimensionState: dimensionsState.percentageState,
|
|
98
|
+
label: "Porcentagem"
|
|
99
|
+
})), /*#__PURE__*/React.createElement(Flex.Item, {
|
|
100
|
+
padding: "x-small small"
|
|
101
|
+
}, "%")) : /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Flex.Item, {
|
|
55
102
|
shrink: true
|
|
56
103
|
}, /*#__PURE__*/React.createElement(DimensionInput, {
|
|
57
104
|
dimensionState: dimensionsState.widthState,
|
|
@@ -65,7 +112,7 @@ export default function DimensionsInput(props) {
|
|
|
65
112
|
dimensionState: dimensionsState.heightState,
|
|
66
113
|
label: "Altura",
|
|
67
114
|
minValue: minHeight
|
|
68
|
-
}))));
|
|
115
|
+
}))))));
|
|
69
116
|
}
|
|
70
117
|
DimensionsInput.propTypes = {
|
|
71
118
|
dimensionsState: shape({
|
|
@@ -75,12 +122,20 @@ DimensionsInput.propTypes = {
|
|
|
75
122
|
setInputValue: func.isRequired
|
|
76
123
|
}).isRequired,
|
|
77
124
|
isNumeric: bool.isRequired,
|
|
125
|
+
usePercentageUnits: bool.isRequired,
|
|
126
|
+
setUsePercentageUnits: func.isRequired,
|
|
78
127
|
widthState: shape({
|
|
79
128
|
addOffset: func.isRequired,
|
|
80
129
|
inputValue: string.isRequired,
|
|
81
130
|
setInputValue: func.isRequired
|
|
131
|
+
}).isRequired,
|
|
132
|
+
percentageState: shape({
|
|
133
|
+
addOffset: func.isRequired,
|
|
134
|
+
inputValue: string.isRequired,
|
|
135
|
+
setInputValue: func.isRequired
|
|
82
136
|
}).isRequired
|
|
83
137
|
}),
|
|
84
138
|
minHeight: number.isRequired,
|
|
85
|
-
minWidth: number.isRequired
|
|
139
|
+
minWidth: number.isRequired,
|
|
140
|
+
minPercentage: number.isRequired
|
|
86
141
|
};
|