@windward/core 0.2.1 → 0.2.2
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/components/Content/Blocks/Accordion.vue +13 -4
- package/components/Content/Blocks/Email.vue +61 -23
- package/components/Content/Blocks/Feedback.vue +2 -1
- package/components/Content/Blocks/Image.vue +7 -0
- package/components/Content/Blocks/OpenResponseCollate.vue +1 -1
- package/components/Content/Blocks/UserUpload.vue +2 -2
- package/components/Settings/AccordionSettings.vue +36 -11
- package/components/Settings/EmailSettings.vue +61 -19
- package/components/Settings/MathSettings.vue +6 -4
- package/components/Settings/ScenarioChoiceSettings.vue +54 -47
- package/components/Settings/TabSettings.vue +3 -1
- package/components/Settings/TextEditorSettings.vue +72 -30
- package/components/Settings/UserUploadSettings.vue +3 -3
- package/components/Settings/VideoSettings.vue +2 -2
- package/components/utils/MathExpressionEditor.vue +4 -5
- package/components/utils/TinyMCEWrapper.vue +33 -8
- package/components/utils/glossary/CourseGlossary.vue +45 -32
- package/config/tinymce.config.ts +2 -1
- package/helpers/tinymce/plugin.ts +18 -4
- package/i18n/en-US/components/content/blocks/email.ts +2 -0
- package/i18n/en-US/components/settings/accordion.ts +2 -1
- package/i18n/en-US/components/settings/email.ts +1 -0
- package/i18n/en-US/components/settings/text_editor.ts +4 -1
- package/i18n/es-ES/components/content/blocks/email.ts +2 -0
- package/i18n/es-ES/components/settings/accordion.ts +2 -1
- package/i18n/es-ES/components/settings/email.ts +1 -0
- package/i18n/es-ES/components/settings/text_editor.ts +4 -1
- package/i18n/sv-SE/components/content/blocks/email.ts +2 -0
- package/i18n/sv-SE/components/settings/accordion.ts +1 -0
- package/i18n/sv-SE/components/settings/email.ts +1 -0
- package/i18n/sv-SE/components/settings/text_editor.ts +4 -1
- package/package.json +1 -1
- package/test/Components/Settings/EmailSettings.spec.js +18 -2
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
glossary: 'Glosario',
|
|
3
|
-
|
|
3
|
+
text_editor: 'Editor',
|
|
4
4
|
verified_terms: 'términos verificados',
|
|
5
5
|
unverified_terms: 'términos no verificados',
|
|
6
6
|
no_glossary: 'No se detectaron los términos del glosario',
|
|
7
|
+
click_to_expand: 'Haga Click ampliar el editor',
|
|
8
|
+
click_to_hide_editor: 'Haga click para esconder el editor',
|
|
9
|
+
click_to_hide_glossary: 'Haga click para esconder el glosario',
|
|
7
10
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
glossary: 'Ordlista',
|
|
3
|
-
|
|
3
|
+
text_editor: 'Editor',
|
|
4
4
|
verified_terms: 'verifierade villkor',
|
|
5
5
|
unverified_terms: 'overifierade termer',
|
|
6
6
|
no_glossary: 'Ingen ordlista Termer upptäckt',
|
|
7
|
+
click_to_expand: 'klicka för att förbruka',
|
|
8
|
+
click_to_hide_editor: 'klicka för att dölja editorn',
|
|
9
|
+
click_to_hide_glossary: 'klicka för att dölja ordlistan',
|
|
7
10
|
}
|
package/package.json
CHANGED
|
@@ -27,8 +27,24 @@ describe('EmailSettings', () => {
|
|
|
27
27
|
})
|
|
28
28
|
wrapper.vm.onAddElement()
|
|
29
29
|
expect(wrapper.vm.$data.block.metadata.config.emails).toEqual([
|
|
30
|
-
{
|
|
31
|
-
|
|
30
|
+
{
|
|
31
|
+
from: '',
|
|
32
|
+
to: '',
|
|
33
|
+
cc: '',
|
|
34
|
+
body: '',
|
|
35
|
+
initials: '',
|
|
36
|
+
subject: '',
|
|
37
|
+
tinymce_expand: false,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
from: '',
|
|
41
|
+
to: '',
|
|
42
|
+
cc: '',
|
|
43
|
+
body: '',
|
|
44
|
+
initials: '',
|
|
45
|
+
subject: '',
|
|
46
|
+
tinymce_expand: false,
|
|
47
|
+
},
|
|
32
48
|
])
|
|
33
49
|
})
|
|
34
50
|
|