@windward/core 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. package/.idea/codeStyles/Project.xml +58 -0
  2. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  3. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/php-docker-settings.xml +24 -0
  6. package/.idea/php.xml +19 -0
  7. package/.idea/vcs.xml +6 -0
  8. package/.idea/watcherTasks.xml +4 -0
  9. package/.idea/windward-ui-plugin-core.iml +8 -0
  10. package/components/Content/Blocks/Image.vue +36 -14
  11. package/components/Content/Blocks/OpenResponse.vue +159 -0
  12. package/components/Content/Blocks/OpenResponseCollate.vue +185 -0
  13. package/components/Settings/ImageSettings.vue +10 -0
  14. package/components/Settings/OpenResponseCollateSettings.vue +171 -0
  15. package/components/Settings/OpenResponseSettings.vue +81 -0
  16. package/components/Settings/TextEditorSettings.vue +1 -0
  17. package/components/utils/TinyMCEWrapper.vue +21 -4
  18. package/components/utils/assets/tinymce/css/content.scss +1 -1
  19. package/coverage/clover.xml +223 -0
  20. package/coverage/coverage-final.json +16 -0
  21. package/coverage/lcov-report/base.css +224 -0
  22. package/coverage/lcov-report/block-navigation.js +87 -0
  23. package/coverage/lcov-report/components/Content/Blocks/Accordion.vue.html +430 -0
  24. package/coverage/lcov-report/components/Content/Blocks/Image.vue.html +394 -0
  25. package/coverage/lcov-report/components/Content/Blocks/Math.vue.html +262 -0
  26. package/coverage/lcov-report/components/Content/Blocks/RichText.vue.html +295 -0
  27. package/coverage/lcov-report/components/Content/Blocks/Tab.vue.html +415 -0
  28. package/coverage/lcov-report/components/Content/Blocks/Table.vue.html +667 -0
  29. package/coverage/lcov-report/components/Content/Blocks/Video.vue.html +2275 -0
  30. package/coverage/lcov-report/components/Content/Blocks/index.html +206 -0
  31. package/coverage/lcov-report/components/utils/ContentViewer.vue.html +199 -0
  32. package/coverage/lcov-report/components/utils/MathExpressionEditor.vue.html +919 -0
  33. package/coverage/lcov-report/components/utils/MathLiveWrapper.vue.html +343 -0
  34. package/coverage/lcov-report/components/utils/TinyMCEWrapper.vue.html +271 -0
  35. package/coverage/lcov-report/components/utils/index.html +161 -0
  36. package/coverage/lcov-report/config/index.html +116 -0
  37. package/coverage/lcov-report/config/tinymce.config.js.html +493 -0
  38. package/coverage/lcov-report/favicon.png +0 -0
  39. package/coverage/lcov-report/helpers/MathHelper.ts.html +793 -0
  40. package/coverage/lcov-report/helpers/index.html +116 -0
  41. package/coverage/lcov-report/helpers/tinymce/index.html +116 -0
  42. package/coverage/lcov-report/helpers/tinymce/plugin.ts.html +334 -0
  43. package/coverage/lcov-report/index.html +191 -0
  44. package/coverage/lcov-report/prettify.css +1 -0
  45. package/coverage/lcov-report/prettify.js +2 -0
  46. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  47. package/coverage/lcov-report/sorter.js +196 -0
  48. package/coverage/lcov-report/test/index.html +116 -0
  49. package/coverage/lcov-report/test/mocks.js.html +457 -0
  50. package/coverage/lcov.info +403 -0
  51. package/helpers/tinymce/plugin.ts +1 -1
  52. package/i18n/en-US/components/content/blocks/index.ts +4 -0
  53. package/i18n/en-US/components/content/blocks/open_response.ts +5 -0
  54. package/i18n/en-US/components/content/blocks/open_response_collate.ts +7 -0
  55. package/i18n/en-US/components/settings/image.ts +3 -1
  56. package/i18n/en-US/components/settings/index.ts +5 -1
  57. package/i18n/en-US/components/settings/open_response.ts +5 -0
  58. package/i18n/en-US/components/settings/open_response_collate.ts +6 -0
  59. package/i18n/en-US/shared/content_blocks.ts +2 -0
  60. package/i18n/en-US/shared/settings.ts +3 -1
  61. package/i18n/es-ES/components/content/blocks/index.ts +4 -0
  62. package/i18n/es-ES/components/content/blocks/open_response.ts +6 -0
  63. package/i18n/es-ES/components/content/blocks/open_response_collate.ts +7 -0
  64. package/i18n/es-ES/components/settings/image.ts +3 -1
  65. package/i18n/es-ES/components/settings/index.ts +4 -0
  66. package/i18n/es-ES/components/settings/open_response.ts +5 -0
  67. package/i18n/es-ES/components/settings/open_response_collate.ts +7 -0
  68. package/i18n/es-ES/shared/content_blocks.ts +2 -0
  69. package/i18n/es-ES/shared/settings.ts +3 -0
  70. package/i18n/sv-SE/components/content/blocks/index.ts +4 -0
  71. package/i18n/sv-SE/components/content/blocks/open_response.ts +6 -0
  72. package/i18n/sv-SE/components/content/blocks/open_response_collate.ts +7 -0
  73. package/i18n/sv-SE/components/settings/image.ts +3 -1
  74. package/i18n/sv-SE/components/settings/index.ts +5 -1
  75. package/i18n/sv-SE/components/settings/open_response.ts +5 -0
  76. package/i18n/sv-SE/components/settings/open_response_collate.ts +6 -0
  77. package/i18n/sv-SE/shared/content_blocks.ts +2 -0
  78. package/i18n/sv-SE/shared/settings.ts +2 -0
  79. package/lib/helpers/GlossaryHelper.d.ts +9 -0
  80. package/lib/helpers/GlossaryHelper.js +118 -0
  81. package/lib/helpers/GlossaryTerm.d.ts +10 -0
  82. package/lib/helpers/GlossaryTerm.js +22 -0
  83. package/lib/helpers/MathHelper.d.ts +99 -0
  84. package/lib/helpers/MathHelper.js +194 -0
  85. package/lib/helpers/tinymce/plugin.d.ts +2 -0
  86. package/lib/helpers/tinymce/plugin.js +86 -0
  87. package/lib/i18n/en-US/components/content/blocks/image.d.ts +6 -0
  88. package/lib/i18n/en-US/components/content/blocks/image.js +7 -0
  89. package/lib/i18n/en-US/components/content/blocks/index.d.ts +75 -0
  90. package/lib/i18n/en-US/components/content/blocks/index.js +14 -0
  91. package/lib/i18n/en-US/components/content/blocks/tab.d.ts +5 -0
  92. package/lib/i18n/en-US/components/content/blocks/tab.js +6 -0
  93. package/lib/i18n/en-US/components/content/blocks/table.d.ts +5 -0
  94. package/lib/i18n/en-US/components/content/blocks/table.js +6 -0
  95. package/lib/i18n/en-US/components/content/blocks/user_upload.d.ts +13 -0
  96. package/lib/i18n/en-US/components/content/blocks/user_upload.js +14 -0
  97. package/lib/i18n/en-US/components/content/blocks/video.d.ts +48 -0
  98. package/lib/i18n/en-US/components/content/blocks/video.js +49 -0
  99. package/lib/i18n/en-US/components/content/index.d.ts +77 -0
  100. package/lib/i18n/en-US/components/content/index.js +6 -0
  101. package/lib/i18n/en-US/components/index.d.ts +140 -0
  102. package/lib/i18n/en-US/components/index.js +12 -0
  103. package/lib/i18n/en-US/components/navigation/image.d.ts +5 -0
  104. package/lib/i18n/en-US/components/navigation/image.js +6 -0
  105. package/lib/i18n/en-US/components/navigation/index.d.ts +10 -0
  106. package/lib/i18n/en-US/components/navigation/index.js +8 -0
  107. package/lib/i18n/en-US/components/navigation/user_upload.d.ts +4 -0
  108. package/lib/i18n/en-US/components/navigation/user_upload.js +5 -0
  109. package/lib/i18n/en-US/components/settings/clickable_icon.d.ts +6 -0
  110. package/lib/i18n/en-US/components/settings/clickable_icon.js +7 -0
  111. package/lib/i18n/en-US/components/settings/image.d.ts +2 -0
  112. package/lib/i18n/en-US/components/settings/image.js +3 -0
  113. package/lib/i18n/en-US/components/settings/index.d.ts +39 -0
  114. package/lib/i18n/en-US/components/settings/index.js +14 -0
  115. package/lib/i18n/en-US/components/settings/text_editor.d.ts +8 -0
  116. package/lib/i18n/en-US/components/settings/text_editor.js +9 -0
  117. package/lib/i18n/en-US/components/settings/user_upload.d.ts +12 -0
  118. package/lib/i18n/en-US/components/settings/user_upload.js +13 -0
  119. package/lib/i18n/en-US/components/settings/video.d.ts +13 -0
  120. package/lib/i18n/en-US/components/settings/video.js +14 -0
  121. package/lib/i18n/en-US/components/utils/index.d.ts +15 -0
  122. package/lib/i18n/en-US/components/utils/index.js +6 -0
  123. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.d.ts +13 -0
  124. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.js +14 -0
  125. package/lib/i18n/en-US/index.d.ts +197 -0
  126. package/lib/i18n/en-US/index.js +16 -0
  127. package/lib/i18n/en-US/modules/index.d.ts +2 -0
  128. package/lib/i18n/en-US/modules/index.js +6 -0
  129. package/lib/i18n/en-US/pages/glossary.d.ts +8 -0
  130. package/lib/i18n/en-US/pages/glossary.js +9 -0
  131. package/lib/i18n/en-US/pages/index.d.ts +13 -0
  132. package/lib/i18n/en-US/pages/index.js +8 -0
  133. package/lib/i18n/en-US/pages/user_upload.d.ts +4 -0
  134. package/lib/i18n/en-US/pages/user_upload.js +5 -0
  135. package/lib/i18n/en-US/shared/content_blocks.d.ts +20 -0
  136. package/lib/i18n/en-US/shared/content_blocks.js +21 -0
  137. package/lib/i18n/en-US/shared/index.d.ts +39 -0
  138. package/lib/i18n/en-US/shared/index.js +10 -0
  139. package/lib/i18n/en-US/shared/menu.d.ts +4 -0
  140. package/lib/i18n/en-US/shared/menu.js +5 -0
  141. package/lib/i18n/en-US/shared/settings.d.ts +15 -0
  142. package/lib/i18n/en-US/shared/settings.js +16 -0
  143. package/lib/i18n/en-US.d.ts +197 -0
  144. package/lib/i18n/en-US.js +15 -0
  145. package/lib/models/UserFileAsset.d.ts +5 -0
  146. package/lib/models/UserFileAsset.js +37 -0
  147. package/package.json +1 -1
  148. package/plugin.js +43 -0
  149. package/test/Components/Content/Blocks/OpenResponse.spec.js +31 -0
  150. package/test/Components/Content/Blocks/OpenResponseCollate.spec.js +36 -0
  151. package/test/Components/Settings/OpenResponseCollateSettings.spec.js +20 -0
  152. package/test/Components/Settings/OpenResponseSettings.spec.js +20 -0
  153. package/test/__mocks__/helpersMock.js +3 -0
  154. package/test/__mocks__/modelMock.js +4 -0
@@ -0,0 +1,403 @@
1
+ TN:
2
+ SF:components/Content/Blocks/Accordion.vue
3
+ FNF:0
4
+ FNH:0
5
+ DA:53,1
6
+ DA:54,1
7
+ DA:55,1
8
+ LF:3
9
+ LH:3
10
+ BRF:0
11
+ BRH:0
12
+ end_of_record
13
+ TN:
14
+ SF:components/Content/Blocks/Image.vue
15
+ FNF:0
16
+ FNH:0
17
+ DA:50,1
18
+ DA:51,1
19
+ DA:52,1
20
+ LF:3
21
+ LH:3
22
+ BRF:0
23
+ BRH:0
24
+ end_of_record
25
+ TN:
26
+ SF:components/Content/Blocks/Math.vue
27
+ FNF:0
28
+ FNH:0
29
+ DA:20,1
30
+ DA:21,1
31
+ DA:22,1
32
+ LF:3
33
+ LH:3
34
+ BRF:0
35
+ BRH:0
36
+ end_of_record
37
+ TN:
38
+ SF:components/Content/Blocks/RichText.vue
39
+ FNF:0
40
+ FNH:0
41
+ DA:20,1
42
+ DA:21,1
43
+ DA:22,1
44
+ DA:23,1
45
+ LF:4
46
+ LH:4
47
+ BRF:0
48
+ BRH:0
49
+ end_of_record
50
+ TN:
51
+ SF:components/Content/Blocks/Tab.vue
52
+ FNF:0
53
+ FNH:0
54
+ DA:57,1
55
+ DA:58,1
56
+ DA:59,1
57
+ LF:3
58
+ LH:3
59
+ BRF:0
60
+ BRH:0
61
+ end_of_record
62
+ TN:
63
+ SF:components/Content/Blocks/Table.vue
64
+ FNF:0
65
+ FNH:0
66
+ DA:95,1
67
+ LF:1
68
+ LH:1
69
+ BRF:0
70
+ BRH:0
71
+ end_of_record
72
+ TN:
73
+ SF:components/Content/Blocks/Video.vue
74
+ FNF:0
75
+ FNH:0
76
+ DA:296,1
77
+ DA:297,1
78
+ DA:298,1
79
+ DA:299,1
80
+ LF:4
81
+ LH:4
82
+ BRF:0
83
+ BRH:0
84
+ end_of_record
85
+ TN:
86
+ SF:components/utils/ContentViewer.vue
87
+ FNF:0
88
+ FNH:0
89
+ DA:6,3
90
+ LF:1
91
+ LH:1
92
+ BRF:0
93
+ BRH:0
94
+ end_of_record
95
+ TN:
96
+ SF:components/utils/MathExpressionEditor.vue
97
+ FNF:0
98
+ FNH:0
99
+ DA:107,1
100
+ DA:108,1
101
+ DA:109,1
102
+ LF:3
103
+ LH:3
104
+ BRF:0
105
+ BRH:0
106
+ end_of_record
107
+ TN:
108
+ SF:components/utils/MathLiveWrapper.vue
109
+ FNF:0
110
+ FNH:0
111
+ DA:6,1
112
+ DA:7,1
113
+ DA:8,1
114
+ LF:3
115
+ LH:3
116
+ BRF:0
117
+ BRH:0
118
+ end_of_record
119
+ TN:
120
+ SF:components/utils/TinyMCEWrapper.vue
121
+ FNF:0
122
+ FNH:0
123
+ DA:15,3
124
+ DA:16,3
125
+ LF:2
126
+ LH:2
127
+ BRF:0
128
+ BRH:0
129
+ end_of_record
130
+ TN:
131
+ SF:config/tinymce.config.js
132
+ FNF:0
133
+ FNH:0
134
+ LF:0
135
+ LH:0
136
+ BRF:0
137
+ BRH:0
138
+ end_of_record
139
+ TN:
140
+ SF:helpers/MathHelper.ts
141
+ FN:4,(anonymous_0)
142
+ FN:17,(anonymous_2)
143
+ FN:30,(anonymous_3)
144
+ FN:43,(anonymous_4)
145
+ FN:55,(anonymous_5)
146
+ FN:59,(anonymous_6)
147
+ FN:76,(anonymous_7)
148
+ FN:80,(anonymous_8)
149
+ FN:110,(anonymous_9)
150
+ FN:124,(anonymous_10)
151
+ FN:129,(anonymous_11)
152
+ FN:152,(anonymous_12)
153
+ FN:157,(anonymous_13)
154
+ FN:182,(anonymous_14)
155
+ FN:196,(anonymous_15)
156
+ FN:207,(anonymous_16)
157
+ FN:226,(anonymous_17)
158
+ FNF:17
159
+ FNH:17
160
+ FNDA:5,(anonymous_0)
161
+ FNDA:3,(anonymous_2)
162
+ FNDA:2,(anonymous_3)
163
+ FNDA:2,(anonymous_4)
164
+ FNDA:3,(anonymous_5)
165
+ FNDA:2,(anonymous_6)
166
+ FNDA:3,(anonymous_7)
167
+ FNDA:2,(anonymous_8)
168
+ FNDA:2,(anonymous_9)
169
+ FNDA:3,(anonymous_10)
170
+ FNDA:3,(anonymous_11)
171
+ FNDA:3,(anonymous_12)
172
+ FNDA:2,(anonymous_13)
173
+ FNDA:2,(anonymous_14)
174
+ FNDA:1,(anonymous_15)
175
+ FNDA:2,(anonymous_16)
176
+ FNDA:2,(anonymous_17)
177
+ DA:1,5
178
+ DA:2,5
179
+ DA:3,5
180
+ DA:4,5
181
+ DA:8,5
182
+ DA:17,5
183
+ DA:18,3
184
+ DA:20,3
185
+ DA:30,5
186
+ DA:31,2
187
+ DA:33,2
188
+ DA:43,5
189
+ DA:44,2
190
+ DA:46,2
191
+ DA:55,5
192
+ DA:56,3
193
+ DA:57,3
194
+ DA:58,3
195
+ DA:59,2
196
+ DA:60,2
197
+ DA:67,3
198
+ DA:76,5
199
+ DA:77,3
200
+ DA:78,3
201
+ DA:79,3
202
+ DA:80,2
203
+ DA:81,2
204
+ DA:82,2
205
+ DA:83,1
206
+ DA:90,2
207
+ DA:91,1
208
+ DA:101,3
209
+ DA:110,5
210
+ DA:112,2
211
+ DA:114,2
212
+ DA:124,5
213
+ DA:125,3
214
+ DA:127,3
215
+ DA:128,3
216
+ DA:129,2
217
+ DA:130,3
218
+ DA:142,3
219
+ DA:152,5
220
+ DA:153,3
221
+ DA:155,3
222
+ DA:156,3
223
+ DA:157,2
224
+ DA:158,2
225
+ DA:159,2
226
+ DA:172,3
227
+ DA:182,5
228
+ DA:183,2
229
+ DA:196,5
230
+ DA:197,1
231
+ DA:207,5
232
+ DA:208,2
233
+ DA:210,2
234
+ DA:211,2
235
+ DA:212,1
236
+ DA:213,1
237
+ DA:216,1
238
+ DA:226,5
239
+ DA:227,2
240
+ DA:229,2
241
+ DA:230,2
242
+ DA:231,1
243
+ DA:234,1
244
+ DA:236,5
245
+ LF:68
246
+ LH:68
247
+ BRDA:58,0,0,2
248
+ BRDA:79,1,0,2
249
+ BRDA:82,2,0,1
250
+ BRDA:90,3,0,1
251
+ BRDA:128,4,0,2
252
+ BRDA:156,5,0,2
253
+ BRDA:211,6,0,1
254
+ BRDA:230,7,0,1
255
+ BRF:8
256
+ BRH:8
257
+ end_of_record
258
+ TN:
259
+ SF:helpers/tinymce/plugin.ts
260
+ FN:1,(anonymous_0)
261
+ FN:5,(anonymous_1)
262
+ FN:22,(anonymous_2)
263
+ FN:36,(anonymous_3)
264
+ FN:52,(anonymous_4)
265
+ FN:56,(anonymous_5)
266
+ FN:59,setOnClickEquationContent
267
+ FN:72,(anonymous_7)
268
+ FNF:8
269
+ FNH:0
270
+ FNDA:0,(anonymous_0)
271
+ FNDA:0,(anonymous_1)
272
+ FNDA:0,(anonymous_2)
273
+ FNDA:0,(anonymous_3)
274
+ FNDA:0,(anonymous_4)
275
+ FNDA:0,(anonymous_5)
276
+ FNDA:0,setOnClickEquationContent
277
+ FNDA:0,(anonymous_7)
278
+ DA:1,3
279
+ DA:5,0
280
+ DA:6,0
281
+ DA:23,0
282
+ DA:24,0
283
+ DA:26,0
284
+ DA:32,0
285
+ DA:33,0
286
+ DA:37,0
287
+ DA:39,0
288
+ DA:40,0
289
+ DA:42,0
290
+ DA:43,0
291
+ DA:49,0
292
+ DA:53,0
293
+ DA:56,0
294
+ DA:57,0
295
+ DA:60,0
296
+ DA:61,0
297
+ DA:66,0
298
+ DA:67,0
299
+ DA:68,0
300
+ DA:69,0
301
+ DA:72,0
302
+ DA:73,0
303
+ DA:74,0
304
+ DA:83,3
305
+ LF:27
306
+ LH:2
307
+ BRDA:23,0,0,0
308
+ BRDA:37,1,0,0
309
+ BRDA:37,1,1,0
310
+ BRDA:68,2,0,0
311
+ BRF:4
312
+ BRH:0
313
+ end_of_record
314
+ TN:
315
+ SF:test/mocks.js
316
+ FN:7,(anonymous_0)
317
+ FN:8,(anonymous_1)
318
+ FN:9,(anonymous_2)
319
+ FN:10,(anonymous_3)
320
+ FN:11,(anonymous_4)
321
+ FN:12,(anonymous_5)
322
+ FN:13,(anonymous_6)
323
+ FN:14,(anonymous_7)
324
+ FN:15,(anonymous_8)
325
+ FN:19,(anonymous_9)
326
+ FN:22,(anonymous_10)
327
+ FN:26,(anonymous_11)
328
+ FN:42,(anonymous_12)
329
+ FN:44,(anonymous_13)
330
+ FN:62,(anonymous_14)
331
+ FN:73,(anonymous_15)
332
+ FN:74,(anonymous_16)
333
+ FN:77,(anonymous_17)
334
+ FN:78,(anonymous_18)
335
+ FN:101,(anonymous_19)
336
+ FN:102,(anonymous_20)
337
+ FN:106,(anonymous_21)
338
+ FN:110,(anonymous_22)
339
+ FN:111,(anonymous_23)
340
+ FN:112,(anonymous_24)
341
+ FN:113,(anonymous_25)
342
+ FNF:26
343
+ FNH:1
344
+ FNDA:0,(anonymous_0)
345
+ FNDA:0,(anonymous_1)
346
+ FNDA:0,(anonymous_2)
347
+ FNDA:0,(anonymous_3)
348
+ FNDA:0,(anonymous_4)
349
+ FNDA:0,(anonymous_5)
350
+ FNDA:0,(anonymous_6)
351
+ FNDA:0,(anonymous_7)
352
+ FNDA:0,(anonymous_8)
353
+ FNDA:0,(anonymous_9)
354
+ FNDA:0,(anonymous_10)
355
+ FNDA:0,(anonymous_11)
356
+ FNDA:0,(anonymous_12)
357
+ FNDA:0,(anonymous_13)
358
+ FNDA:0,(anonymous_14)
359
+ FNDA:0,(anonymous_15)
360
+ FNDA:0,(anonymous_16)
361
+ FNDA:2,(anonymous_17)
362
+ FNDA:0,(anonymous_18)
363
+ FNDA:0,(anonymous_19)
364
+ FNDA:0,(anonymous_20)
365
+ FNDA:0,(anonymous_21)
366
+ FNDA:0,(anonymous_22)
367
+ FNDA:0,(anonymous_23)
368
+ FNDA:0,(anonymous_24)
369
+ FNDA:0,(anonymous_25)
370
+ DA:2,7
371
+ DA:3,7
372
+ DA:4,7
373
+ DA:7,7
374
+ DA:8,7
375
+ DA:9,7
376
+ DA:10,7
377
+ DA:11,7
378
+ DA:12,7
379
+ DA:13,7
380
+ DA:14,7
381
+ DA:15,7
382
+ DA:17,7
383
+ DA:20,0
384
+ DA:23,0
385
+ DA:24,0
386
+ DA:26,0
387
+ DA:27,0
388
+ DA:31,0
389
+ DA:38,7
390
+ DA:45,0
391
+ DA:77,2
392
+ DA:78,0
393
+ DA:118,7
394
+ DA:119,7
395
+ DA:120,7
396
+ DA:121,7
397
+ DA:122,7
398
+ DA:124,7
399
+ LF:29
400
+ LH:21
401
+ BRF:0
402
+ BRH:0
403
+ end_of_record
@@ -66,7 +66,7 @@ const WindwardPlugins = function (editor: any) {
66
66
  setOnClickEquationContent(editor)
67
67
  setOnClickFillInBlank(editor)
68
68
  })
69
- editor.on('change', function () {
69
+ editor.on('SetContent', function () {
70
70
  setOnClickEquationContent(editor)
71
71
  setOnClickFillInBlank(editor)
72
72
  })
@@ -4,6 +4,8 @@ import video from './video'
4
4
  import table from './table'
5
5
  import tab from './tab'
6
6
  import feedback from './feedback'
7
+ import open_response from './open_response'
8
+ import open_response_collate from './open_response_collate'
7
9
 
8
10
  export default {
9
11
  user_upload,
@@ -12,4 +14,6 @@ export default {
12
14
  table,
13
15
  tab,
14
16
  feedback,
17
+ open_response,
18
+ open_response_collate,
15
19
  }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ initial_setup: 'Enter a prompt for this open response block to get started',
3
+ your_response: 'Your Response',
4
+ sample_response: 'Suggested/Sample Response',
5
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ download_document: 'Download Word Document',
3
+ no_response: '[no response]',
4
+ initial_setup:
5
+ 'Open the block settings and select Open Response blocks you want to collate for download',
6
+ generate_error: 'Failed to generate the document',
7
+ }
@@ -1 +1,3 @@
1
- export default {}
1
+ export default {
2
+ hide_background: 'Hide Background',
3
+ }
@@ -3,11 +3,15 @@ import user_upload from './user_upload'
3
3
  import text_editor from './text_editor'
4
4
  import video from './video'
5
5
  import clickable_icon from './clickable_icon'
6
+ import open_response from './open_response'
7
+ import open_response_collate from './open_response_collate'
6
8
 
7
9
  export default {
8
10
  image,
9
11
  user_upload,
10
12
  text_editor,
11
13
  video,
12
- clickable_icon
14
+ clickable_icon,
15
+ open_response,
16
+ open_response_collate,
13
17
  }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ question: 'Question',
3
+ sample_response: 'Suggested/Sample Response',
4
+ starting_text: 'Starting Text',
5
+ }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ instructions:
3
+ 'Check off open responses to collate. Drag the prompts to set the order you want the responses collated',
4
+ include_prompts: 'Include Prompts',
5
+ filename: 'Filename (Blank for current page name)',
6
+ }
@@ -7,6 +7,8 @@ export default {
7
7
  rich_text: 'Rich Text',
8
8
  math: 'Math',
9
9
  accordion: 'Accordion',
10
+ open_response: 'Open Response',
11
+ open_response_collate: 'Open Response Collate',
10
12
  image: 'Image',
11
13
  user_upload: 'User Upload',
12
14
  clickable_icons: 'Clickable Icons',
@@ -1,6 +1,8 @@
1
1
  export default {
2
2
  title: {
3
3
  assessment: 'Assessment Settings',
4
+ open_response: 'Open Response Settings',
5
+ open_response_collate: 'Open Response Collate Settings',
4
6
  image: 'Image Settings',
5
7
  user_upload: 'User Upload Settings',
6
8
  tab_settings: 'Tab Settings',
@@ -10,6 +12,6 @@ export default {
10
12
  video: 'Video Settings',
11
13
  table: 'Table Settings',
12
14
  math: 'Math Settings',
13
- feedback: 'Feedback Settings'
15
+ feedback: 'Feedback Settings',
14
16
  },
15
17
  }
@@ -4,6 +4,8 @@ import video from './video'
4
4
  import table from './table'
5
5
  import tab from './tab'
6
6
  import feedback from './feedback'
7
+ import open_response from './open_response'
8
+ import open_response_collate from './open_response_collate'
7
9
 
8
10
  export default {
9
11
  user_upload,
@@ -12,4 +14,6 @@ export default {
12
14
  table,
13
15
  tab,
14
16
  feedback,
17
+ open_response,
18
+ open_response_collate,
15
19
  }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ initial_setup:
3
+ 'Ingrese un mensaje para este bloque de respuesta abierto para comenzar',
4
+ your_response: 'Tu respuesta',
5
+ sample_response: 'Respuesta sugerida/de muestra',
6
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ download_document: 'Descargar documento de Word',
3
+ no_response: '[sin respuesta]',
4
+ initial_setup:
5
+ 'Abra la configuración del bloque y seleccione los bloques de respuesta abierta que desea recopilar para descargar',
6
+ generate_error: 'No se pudo generar el documento',
7
+ }
@@ -1 +1,3 @@
1
- export default {}
1
+ export default {
2
+ hide_background: 'Ocultar fondo',
3
+ }
@@ -3,6 +3,8 @@ import user_upload from './user_upload'
3
3
  import text_editor from './text_editor'
4
4
  import video from './video'
5
5
  import clickable_icon from './clickable_icon'
6
+ import open_response from './open_response'
7
+ import open_response_collate from './open_response_collate'
6
8
 
7
9
  export default {
8
10
  image,
@@ -10,4 +12,6 @@ export default {
10
12
  text_editor,
11
13
  video,
12
14
  clickable_icon,
15
+ open_response,
16
+ open_response_collate,
13
17
  }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ question: 'Pregunta',
3
+ sample_response: 'Respuesta sugerida/de muestra',
4
+ starting_text: 'Texto inicial',
5
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ instructions:
3
+ 'Marque las respuestas abiertas para cotejar. Arrastra las indicaciones para establecer el orden en el que deseas que se cotejen las respuestas',
4
+ include_prompts: 'Incluir mensajes',
5
+ filename:
6
+ 'Nombre de archivo (en blanco para el nombre de la página actual)',
7
+ }
@@ -7,6 +7,8 @@ export default {
7
7
  rich_text: 'Texto enriquecido',
8
8
  math: 'Matemáticas',
9
9
  accordion: 'Acordeón',
10
+ open_response: 'Respuesta abierta',
11
+ open_response_collate: 'Intercalación de respuesta abierta',
10
12
  image: 'Imagen',
11
13
  user_upload: 'Carga de usuario',
12
14
  clickable_icons: 'Iconos en los que se puede hacer clic',
@@ -1,6 +1,9 @@
1
1
  export default {
2
2
  title: {
3
3
  assessment: 'Configuración de evaluación',
4
+ open_response: 'Abrir configuración de respuesta',
5
+ open_response_collate:
6
+ 'Abrir configuración de clasificación de respuestas',
4
7
  image: 'Configuración de imagen',
5
8
  user_upload: 'Configuración de carga del usuario',
6
9
  tab_settings: 'Configuración de pestaña',
@@ -4,6 +4,8 @@ import video from './video'
4
4
  import table from './table'
5
5
  import tab from './tab'
6
6
  import feedback from './feedback'
7
+ import open_response from './open_response'
8
+ import open_response_collate from './open_response_collate'
7
9
 
8
10
  export default {
9
11
  user_upload,
@@ -12,4 +14,6 @@ export default {
12
14
  table,
13
15
  tab,
14
16
  feedback,
17
+ open_response,
18
+ open_response_collate,
15
19
  }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ initial_setup:
3
+ 'Ange en uppmaning för detta öppna svarsblock för att komma igång',
4
+ your_response: 'Ditt svar',
5
+ sample_response: 'Föreslagen/provsvar',
6
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ download_document: 'Ladda ner Word-dokument',
3
+ no_response: '[inget svar]',
4
+ initial_setup:
5
+ 'Öppna blockinställningarna och välj Öppna svarsblock som du vill sortera för nedladdning',
6
+ generate_error: 'Det gick inte att generera dokumentet',
7
+ }
@@ -1 +1,3 @@
1
- export default {}
1
+ export default {
2
+ hide_background: 'Dölj bakgrund',
3
+ }
@@ -3,11 +3,15 @@ import user_upload from './user_upload'
3
3
  import text_editor from './text_editor'
4
4
  import video from './video'
5
5
  import clickable_icon from './clickable_icon'
6
+ import open_response from './open_response'
7
+ import open_response_collate from './open_response_collate'
6
8
 
7
9
  export default {
8
10
  image,
9
11
  user_upload,
10
12
  text_editor,
11
13
  video,
12
- clickable_icon
14
+ clickable_icon,
15
+ open_response,
16
+ open_response_collate,
13
17
  }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ question: 'Fråga',
3
+ sample_response: 'Föreslagen/provsvar',
4
+ starting_text: 'Starttext',
5
+ }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ instructions:
3
+ 'Bocka av öppna svar för att sortera. Dra uppmaningarna för att ställa in den ordning du vill att svaren ska sorteras',
4
+ include_prompts: 'Inkludera uppmaningar',
5
+ filename: 'Filnamn (tomt för nuvarande sidnamn)',
6
+ }
@@ -7,6 +7,8 @@ export default {
7
7
  rich_text: 'Rich Text',
8
8
  math: 'Math',
9
9
  accordion: 'Accordion',
10
+ open_response: 'Öppet svar',
11
+ open_response_collate: 'Öppna svarssortering',
10
12
  image: 'Bild',
11
13
  user_upload: 'User Upload',
12
14
  clickable_icons: 'Klickbara ikoner',
@@ -1,6 +1,8 @@
1
1
  export default {
2
2
  title: {
3
3
  assessment: 'Bedömningsinställningar',
4
+ open_response: 'Öppna svarsinställningar',
5
+ open_response_collate: 'Öppna inställningar för svarssortering',
4
6
  image: 'Bildinställningar',
5
7
  user_upload: 'User Upload Settings',
6
8
  tab_settings: 'Flikinställningar',