@instructure/canvas-rce 5.10.0 → 5.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/Dockerfile +1 -1
- package/es/common/mimeClass.js +70 -67
- package/es/enhance-user-content/doc_previews.js +1 -1
- package/es/enhance-user-content/enhance_user_content.js +9 -1
- package/es/getThemeVars.js +3 -4
- package/es/rce/RCE.js +1 -3
- package/es/rce/RCEWrapper.js +3 -67
- package/es/rce/RceHtmlEditor.js +28 -8
- package/es/rce/plugins/instructure_links/components/Link.js +3 -9
- package/es/rce/plugins/instructure_links/components/LinkSet.js +4 -8
- package/es/rce/plugins/instructure_links/components/NoResults.js +5 -10
- package/es/rce/plugins/instructure_links/plugin.js +1 -7
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +1 -2
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogTray.js +6 -12
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionDialog.js +2 -2
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.js +1 -1
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +7 -2
- package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +3 -9
- package/es/rce/plugins/instructure_wordcount/components/WordCountModal.js +8 -16
- package/es/rce/plugins/shared/CanvasContentTray.js +7 -1
- package/es/rce/plugins/shared/fileTypeUtils.js +14 -6
- package/es/rce/plugins/tinymce-a11y-checker/components/{color-field.js → ColorField.js} +9 -7
- package/es/rce/plugins/tinymce-a11y-checker/components/checker.js +27 -24
- package/es/rce/root.js +1 -3
- package/es/rce/transformContent.js +8 -0
- package/es/sidebar/actions/upload.js +3 -1
- package/jest/jest-setup.js +2 -0
- package/lib/common/mimeClass.js +70 -67
- package/lib/enhance-user-content/doc_previews.js +1 -1
- package/lib/enhance-user-content/enhance_user_content.js +9 -1
- package/lib/getThemeVars.js +3 -4
- package/lib/rce/RCE.js +1 -3
- package/lib/rce/RCEWrapper.js +3 -67
- package/lib/rce/RceHtmlEditor.js +28 -8
- package/lib/rce/plugins/instructure_links/components/Link.js +3 -9
- package/lib/rce/plugins/instructure_links/components/LinkSet.js +4 -8
- package/lib/rce/plugins/instructure_links/components/NoResults.js +5 -10
- package/lib/rce/plugins/instructure_links/plugin.js +1 -7
- package/lib/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +1 -2
- package/lib/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogTray.js +6 -12
- package/lib/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionDialog.js +2 -2
- package/lib/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.js +1 -1
- package/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +7 -2
- package/lib/rce/plugins/instructure_record/VideoOptionsTray/index.js +3 -9
- package/lib/rce/plugins/instructure_wordcount/components/WordCountModal.js +8 -16
- package/lib/rce/plugins/shared/CanvasContentTray.js +7 -1
- package/lib/rce/plugins/shared/fileTypeUtils.js +14 -6
- package/lib/rce/plugins/tinymce-a11y-checker/components/{color-field.js → ColorField.js} +9 -7
- package/lib/rce/plugins/tinymce-a11y-checker/components/checker.js +27 -24
- package/lib/rce/root.js +1 -3
- package/lib/rce/transformContent.js +8 -0
- package/lib/sidebar/actions/upload.js +3 -1
- package/locales/en.json +1438 -89
- package/package.json +52 -51
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/canvas-rce",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.11.1",
|
|
4
4
|
"description": "A component wrapping Canvas's usage of Tinymce",
|
|
5
5
|
"main": "es/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"test:watch": "mocha 'test/**/*.test.js' --watch",
|
|
27
27
|
"test:coverage": "cross-env nyc -r html -r json node_modules/.bin/mocha 'test/**/*.test.js'",
|
|
28
28
|
"test:jest:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
|
29
|
+
"test:jest:watch": "node node_modules/.bin/jest --watch",
|
|
29
30
|
"debug": "inspect _mocha --no-timeouts --debug-brk 'test/**/*.test.js'",
|
|
30
31
|
"demo": "scripts/demo.sh",
|
|
31
32
|
"demo:clean": "rm -f github-pages/dist/*",
|
|
@@ -73,60 +74,60 @@
|
|
|
73
74
|
"instrument": false
|
|
74
75
|
},
|
|
75
76
|
"dependencies": {
|
|
77
|
+
"@instructure/canvas-theme": "^8",
|
|
76
78
|
"@instructure/canvas-media": "*",
|
|
77
|
-
"@instructure/
|
|
78
|
-
"@instructure/
|
|
79
|
-
"@instructure/emotion": "^8.38.1",
|
|
79
|
+
"@instructure/debounce": "^8",
|
|
80
|
+
"@instructure/emotion": "^8.39",
|
|
80
81
|
"@instructure/k5uploader": "*",
|
|
81
82
|
"@instructure/media-capture": "^9.0.0",
|
|
82
|
-
"@instructure/
|
|
83
|
-
"@instructure/ui-a11y-
|
|
84
|
-
"@instructure/ui-
|
|
85
|
-
"@instructure/ui-
|
|
86
|
-
"@instructure/ui-
|
|
87
|
-
"@instructure/ui-
|
|
88
|
-
"@instructure/ui-
|
|
89
|
-
"@instructure/ui-
|
|
90
|
-
"@instructure/ui-
|
|
91
|
-
"@instructure/ui-
|
|
92
|
-
"@instructure/ui-
|
|
93
|
-
"@instructure/ui-
|
|
94
|
-
"@instructure/ui-
|
|
95
|
-
"@instructure/ui-
|
|
96
|
-
"@instructure/ui-
|
|
97
|
-
"@instructure/ui-
|
|
98
|
-
"@instructure/ui-
|
|
99
|
-
"@instructure/ui-
|
|
100
|
-
"@instructure/ui-
|
|
101
|
-
"@instructure/ui-
|
|
83
|
+
"@instructure/theme-registry": "^8",
|
|
84
|
+
"@instructure/ui-a11y-content": "^8",
|
|
85
|
+
"@instructure/ui-a11y-utils": "^8",
|
|
86
|
+
"@instructure/ui-alerts": "^8",
|
|
87
|
+
"@instructure/ui-avatar": "^8",
|
|
88
|
+
"@instructure/ui-badge": "^8",
|
|
89
|
+
"@instructure/ui-billboard": "^8",
|
|
90
|
+
"@instructure/ui-buttons": "^8",
|
|
91
|
+
"@instructure/ui-checkbox": "^8",
|
|
92
|
+
"@instructure/ui-code-editor": "^8",
|
|
93
|
+
"@instructure/ui-color-utils": "^8",
|
|
94
|
+
"@instructure/ui-file-drop": "^8",
|
|
95
|
+
"@instructure/ui-flex": "^8",
|
|
96
|
+
"@instructure/ui-focusable": "^8",
|
|
97
|
+
"@instructure/ui-form-field": "^8",
|
|
98
|
+
"@instructure/ui-grid": "^8",
|
|
99
|
+
"@instructure/ui-heading": "^8",
|
|
100
|
+
"@instructure/ui-icons": "^8",
|
|
101
|
+
"@instructure/ui-img": "^8",
|
|
102
|
+
"@instructure/ui-link": "^8",
|
|
103
|
+
"@instructure/ui-list": "^8",
|
|
102
104
|
"@instructure/ui-media-player": "^9.0.0",
|
|
103
|
-
"@instructure/ui-menu": "^
|
|
104
|
-
"@instructure/ui-modal": "^
|
|
105
|
-
"@instructure/ui-motion": "^
|
|
106
|
-
"@instructure/ui-number-input": "^
|
|
107
|
-
"@instructure/ui-overlays": "^
|
|
108
|
-
"@instructure/ui-pagination": "^
|
|
109
|
-
"@instructure/ui-popover": "^
|
|
110
|
-
"@instructure/ui-radio-input": "^
|
|
111
|
-
"@instructure/ui-react-utils": "^
|
|
112
|
-
"@instructure/ui-simple-select": "^
|
|
113
|
-
"@instructure/ui-spinner": "^
|
|
114
|
-
"@instructure/ui-svg-images": "^
|
|
115
|
-
"@instructure/ui-table": "^
|
|
116
|
-
"@instructure/ui-tabs": "^
|
|
117
|
-
"@instructure/ui-text": "^
|
|
118
|
-
"@instructure/ui-text-area": "^
|
|
119
|
-
"@instructure/ui-text-input": "^
|
|
120
|
-
"@instructure/ui-
|
|
121
|
-
"@instructure/ui-
|
|
122
|
-
"@instructure/ui-
|
|
123
|
-
"@instructure/ui-
|
|
124
|
-
"@instructure/ui-
|
|
125
|
-
"@instructure/ui-
|
|
126
|
-
"@instructure/ui-
|
|
127
|
-
"@instructure/ui-
|
|
128
|
-
"@instructure/
|
|
129
|
-
"@instructure/uid": "^7",
|
|
105
|
+
"@instructure/ui-menu": "^8",
|
|
106
|
+
"@instructure/ui-modal": "^8",
|
|
107
|
+
"@instructure/ui-motion": "^8",
|
|
108
|
+
"@instructure/ui-number-input": "^8",
|
|
109
|
+
"@instructure/ui-overlays": "^8",
|
|
110
|
+
"@instructure/ui-pagination": "^8",
|
|
111
|
+
"@instructure/ui-popover": "^8",
|
|
112
|
+
"@instructure/ui-radio-input": "^8",
|
|
113
|
+
"@instructure/ui-react-utils": "^8",
|
|
114
|
+
"@instructure/ui-simple-select": "^8",
|
|
115
|
+
"@instructure/ui-spinner": "^8",
|
|
116
|
+
"@instructure/ui-svg-images": "^8",
|
|
117
|
+
"@instructure/ui-table": "^8",
|
|
118
|
+
"@instructure/ui-tabs": "^8",
|
|
119
|
+
"@instructure/ui-text": "^8",
|
|
120
|
+
"@instructure/ui-text-area": "^8",
|
|
121
|
+
"@instructure/ui-text-input": "^8",
|
|
122
|
+
"@instructure/ui-themes": "^8",
|
|
123
|
+
"@instructure/ui-toggle-details": "^8",
|
|
124
|
+
"@instructure/ui-tooltip": "^8",
|
|
125
|
+
"@instructure/ui-tray": "^8",
|
|
126
|
+
"@instructure/ui-tree-browser": "^8",
|
|
127
|
+
"@instructure/ui-truncate-text": "^8",
|
|
128
|
+
"@instructure/ui-utils": "^8",
|
|
129
|
+
"@instructure/ui-view": "^8",
|
|
130
|
+
"@instructure/uid": "^8",
|
|
130
131
|
"@sheerun/mutationobserver-shim": "^0.3.2",
|
|
131
132
|
"@tinymce/tinymce-react": "~3.8.4",
|
|
132
133
|
"aphrodite": "^2",
|