@windward/core 0.1.0 → 0.1.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.
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/Accordion.vue +7 -2
  11. package/components/Content/Blocks/Email.vue +248 -0
  12. package/components/Content/Blocks/Image.vue +1 -1
  13. package/components/Content/Blocks/OpenResponse.vue +2 -2
  14. package/components/Content/Blocks/Tab.vue +7 -3
  15. package/components/Content/Blocks/UserUpload.vue +2 -2
  16. package/components/Settings/AccordionSettings.vue +9 -1
  17. package/components/Settings/EmailSettings.vue +216 -0
  18. package/components/Settings/ImageSettings.vue +1 -1
  19. package/components/Settings/OpenResponseCollateSettings.vue +1 -1
  20. package/components/Settings/OpenResponseSettings.vue +1 -1
  21. package/components/Settings/TabSettings.vue +7 -1
  22. package/components/Settings/TextEditorSettings.vue +1 -1
  23. package/components/Settings/UserUploadSettings.vue +1 -1
  24. package/components/utils/FillInBlank/FillInBlankInput.vue +5 -0
  25. package/components/utils/TinyMCEWrapper.vue +1 -1
  26. package/coverage/clover.xml +223 -0
  27. package/coverage/coverage-final.json +16 -0
  28. package/coverage/lcov-report/base.css +224 -0
  29. package/coverage/lcov-report/block-navigation.js +87 -0
  30. package/coverage/lcov-report/components/Content/Blocks/Accordion.vue.html +430 -0
  31. package/coverage/lcov-report/components/Content/Blocks/Image.vue.html +394 -0
  32. package/coverage/lcov-report/components/Content/Blocks/Math.vue.html +262 -0
  33. package/coverage/lcov-report/components/Content/Blocks/RichText.vue.html +295 -0
  34. package/coverage/lcov-report/components/Content/Blocks/Tab.vue.html +415 -0
  35. package/coverage/lcov-report/components/Content/Blocks/Table.vue.html +667 -0
  36. package/coverage/lcov-report/components/Content/Blocks/Video.vue.html +2275 -0
  37. package/coverage/lcov-report/components/Content/Blocks/index.html +206 -0
  38. package/coverage/lcov-report/components/utils/ContentViewer.vue.html +199 -0
  39. package/coverage/lcov-report/components/utils/MathExpressionEditor.vue.html +919 -0
  40. package/coverage/lcov-report/components/utils/MathLiveWrapper.vue.html +343 -0
  41. package/coverage/lcov-report/components/utils/TinyMCEWrapper.vue.html +271 -0
  42. package/coverage/lcov-report/components/utils/index.html +161 -0
  43. package/coverage/lcov-report/config/index.html +116 -0
  44. package/coverage/lcov-report/config/tinymce.config.js.html +493 -0
  45. package/coverage/lcov-report/favicon.png +0 -0
  46. package/coverage/lcov-report/helpers/MathHelper.ts.html +793 -0
  47. package/coverage/lcov-report/helpers/index.html +116 -0
  48. package/coverage/lcov-report/helpers/tinymce/index.html +116 -0
  49. package/coverage/lcov-report/helpers/tinymce/plugin.ts.html +334 -0
  50. package/coverage/lcov-report/index.html +191 -0
  51. package/coverage/lcov-report/prettify.css +1 -0
  52. package/coverage/lcov-report/prettify.js +2 -0
  53. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  54. package/coverage/lcov-report/sorter.js +196 -0
  55. package/coverage/lcov-report/test/index.html +116 -0
  56. package/coverage/lcov-report/test/mocks.js.html +457 -0
  57. package/coverage/lcov.info +403 -0
  58. package/helpers/MathHelper.ts +3 -3
  59. package/i18n/en-US/components/content/blocks/email.ts +12 -0
  60. package/i18n/en-US/components/content/blocks/index.ts +3 -1
  61. package/i18n/en-US/components/settings/email.ts +9 -0
  62. package/i18n/en-US/components/settings/index.ts +2 -0
  63. package/i18n/en-US/shared/content_blocks.ts +1 -1
  64. package/i18n/en-US/shared/settings.ts +3 -0
  65. package/i18n/es-ES/components/content/blocks/email.ts +12 -0
  66. package/i18n/es-ES/components/content/blocks/index.ts +3 -1
  67. package/i18n/es-ES/components/settings/email.ts +9 -0
  68. package/i18n/es-ES/components/settings/index.ts +3 -1
  69. package/i18n/es-ES/shared/content_blocks.ts +1 -1
  70. package/i18n/es-ES/shared/settings.ts +3 -0
  71. package/i18n/sv-SE/components/content/blocks/email.ts +12 -0
  72. package/i18n/sv-SE/components/content/blocks/index.ts +3 -1
  73. package/i18n/sv-SE/components/settings/email.ts +9 -0
  74. package/i18n/sv-SE/components/settings/index.ts +3 -1
  75. package/i18n/sv-SE/shared/content_blocks.ts +1 -1
  76. package/i18n/sv-SE/shared/settings.ts +3 -0
  77. package/lib/helpers/GlossaryHelper.d.ts +9 -0
  78. package/lib/helpers/GlossaryHelper.js +118 -0
  79. package/lib/helpers/GlossaryTerm.d.ts +10 -0
  80. package/lib/helpers/GlossaryTerm.js +22 -0
  81. package/lib/helpers/MathHelper.d.ts +99 -0
  82. package/lib/helpers/MathHelper.js +194 -0
  83. package/lib/helpers/tinymce/plugin.d.ts +2 -0
  84. package/lib/helpers/tinymce/plugin.js +86 -0
  85. package/lib/i18n/en-US/components/content/blocks/image.d.ts +6 -0
  86. package/lib/i18n/en-US/components/content/blocks/image.js +7 -0
  87. package/lib/i18n/en-US/components/content/blocks/index.d.ts +75 -0
  88. package/lib/i18n/en-US/components/content/blocks/index.js +14 -0
  89. package/lib/i18n/en-US/components/content/blocks/tab.d.ts +5 -0
  90. package/lib/i18n/en-US/components/content/blocks/tab.js +6 -0
  91. package/lib/i18n/en-US/components/content/blocks/table.d.ts +5 -0
  92. package/lib/i18n/en-US/components/content/blocks/table.js +6 -0
  93. package/lib/i18n/en-US/components/content/blocks/user_upload.d.ts +13 -0
  94. package/lib/i18n/en-US/components/content/blocks/user_upload.js +14 -0
  95. package/lib/i18n/en-US/components/content/blocks/video.d.ts +48 -0
  96. package/lib/i18n/en-US/components/content/blocks/video.js +49 -0
  97. package/lib/i18n/en-US/components/content/index.d.ts +77 -0
  98. package/lib/i18n/en-US/components/content/index.js +6 -0
  99. package/lib/i18n/en-US/components/index.d.ts +140 -0
  100. package/lib/i18n/en-US/components/index.js +12 -0
  101. package/lib/i18n/en-US/components/navigation/image.d.ts +5 -0
  102. package/lib/i18n/en-US/components/navigation/image.js +6 -0
  103. package/lib/i18n/en-US/components/navigation/index.d.ts +10 -0
  104. package/lib/i18n/en-US/components/navigation/index.js +8 -0
  105. package/lib/i18n/en-US/components/navigation/user_upload.d.ts +4 -0
  106. package/lib/i18n/en-US/components/navigation/user_upload.js +5 -0
  107. package/lib/i18n/en-US/components/settings/clickable_icon.d.ts +6 -0
  108. package/lib/i18n/en-US/components/settings/clickable_icon.js +7 -0
  109. package/lib/i18n/en-US/components/settings/image.d.ts +2 -0
  110. package/lib/i18n/en-US/components/settings/image.js +3 -0
  111. package/lib/i18n/en-US/components/settings/index.d.ts +39 -0
  112. package/lib/i18n/en-US/components/settings/index.js +14 -0
  113. package/lib/i18n/en-US/components/settings/text_editor.d.ts +8 -0
  114. package/lib/i18n/en-US/components/settings/text_editor.js +9 -0
  115. package/lib/i18n/en-US/components/settings/user_upload.d.ts +12 -0
  116. package/lib/i18n/en-US/components/settings/user_upload.js +13 -0
  117. package/lib/i18n/en-US/components/settings/video.d.ts +13 -0
  118. package/lib/i18n/en-US/components/settings/video.js +14 -0
  119. package/lib/i18n/en-US/components/utils/index.d.ts +15 -0
  120. package/lib/i18n/en-US/components/utils/index.js +6 -0
  121. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.d.ts +13 -0
  122. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.js +14 -0
  123. package/lib/i18n/en-US/index.d.ts +197 -0
  124. package/lib/i18n/en-US/index.js +16 -0
  125. package/lib/i18n/en-US/modules/index.d.ts +2 -0
  126. package/lib/i18n/en-US/modules/index.js +6 -0
  127. package/lib/i18n/en-US/pages/glossary.d.ts +8 -0
  128. package/lib/i18n/en-US/pages/glossary.js +9 -0
  129. package/lib/i18n/en-US/pages/index.d.ts +13 -0
  130. package/lib/i18n/en-US/pages/index.js +8 -0
  131. package/lib/i18n/en-US/pages/user_upload.d.ts +4 -0
  132. package/lib/i18n/en-US/pages/user_upload.js +5 -0
  133. package/lib/i18n/en-US/shared/content_blocks.d.ts +20 -0
  134. package/lib/i18n/en-US/shared/content_blocks.js +21 -0
  135. package/lib/i18n/en-US/shared/index.d.ts +39 -0
  136. package/lib/i18n/en-US/shared/index.js +10 -0
  137. package/lib/i18n/en-US/shared/menu.d.ts +4 -0
  138. package/lib/i18n/en-US/shared/menu.js +5 -0
  139. package/lib/i18n/en-US/shared/settings.d.ts +15 -0
  140. package/lib/i18n/en-US/shared/settings.js +16 -0
  141. package/lib/i18n/en-US.d.ts +197 -0
  142. package/lib/i18n/en-US.js +15 -0
  143. package/lib/models/UserFileAsset.d.ts +5 -0
  144. package/lib/models/UserFileAsset.js +37 -0
  145. package/package.json +1 -1
  146. package/plugin.js +21 -0
  147. package/test/Components/Content/Blocks/Accordion.spec.js +2 -0
  148. package/test/Components/Content/Blocks/BlockQuote.spec.js +2 -0
  149. package/test/Components/Content/Blocks/Email.spec.js +23 -0
  150. package/test/Components/Content/Blocks/Feedback.spec.js +1 -0
  151. package/test/Components/Content/Blocks/Math.spec.js +1 -0
  152. package/test/Components/Content/Blocks/Tab.spec.js +1 -0
  153. package/test/Components/Settings/EmailSettings.spec.js +45 -0
  154. package/test/__mocks__/componentsMock.js +6 -0
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ user_uploads: 'User Uploads',
5
+ dialog_view: 'View Uploads',
6
+ instructions: 'Instructions:',
7
+ instructions_none: 'None',
8
+ instructions_title: 'Student instructions:',
9
+ must_save: 'You must save this block before users can make uploads',
10
+ uploaded: 'Uploaded',
11
+ name: 'Name',
12
+ size: 'Size',
13
+ download: 'Download',
14
+ };
@@ -0,0 +1,48 @@
1
+ declare const _default: {
2
+ tabs: {
3
+ video: string;
4
+ poster: string;
5
+ preroll: string;
6
+ postroll: string;
7
+ };
8
+ forms: {
9
+ unsaved: string;
10
+ cancel: string;
11
+ confirm: string;
12
+ };
13
+ video: {
14
+ title: string;
15
+ configure_blurb: string;
16
+ not_configured_title: string;
17
+ edit_prompt: string;
18
+ autoplay: string;
19
+ controls: string;
20
+ loop: string;
21
+ muted: string;
22
+ disablepictureinpicture: string;
23
+ poster: string;
24
+ playback_rates: string;
25
+ rewind: string;
26
+ playsinline: string;
27
+ captionsmenu: string;
28
+ playlistmenu: string;
29
+ playlistautoadvance: string;
30
+ };
31
+ caption: {
32
+ title: string;
33
+ configure_blurb: string;
34
+ };
35
+ poster: {
36
+ title: string;
37
+ configure_blurb: string;
38
+ };
39
+ preroll: {
40
+ title: string;
41
+ configure_blurb: string;
42
+ };
43
+ postroll: {
44
+ title: string;
45
+ configure_blurb: string;
46
+ };
47
+ };
48
+ export default _default;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ tabs: {
5
+ video: 'Video',
6
+ poster: 'Poster',
7
+ preroll: 'Preroll',
8
+ postroll: 'Postroll',
9
+ },
10
+ forms: {
11
+ unsaved: 'You have unsaved changes. Would you like to save them?',
12
+ cancel: 'Cancel',
13
+ confirm: 'Confirm',
14
+ },
15
+ video: {
16
+ title: 'Video File',
17
+ configure_blurb: 'Upload a video file (.mp4 or .webm), pick one from the file manager, or add via the public URL',
18
+ not_configured_title: 'Video not configured',
19
+ edit_prompt: 'Edit this block to get started',
20
+ autoplay: 'Autoplay on load',
21
+ controls: 'Show Controls',
22
+ loop: 'Loop video',
23
+ muted: 'Start muted',
24
+ disablepictureinpicture: 'Disable picture-in-picture button',
25
+ poster: 'Video poster',
26
+ playback_rates: 'Playback Rates',
27
+ rewind: 'Allow 10 Second Rewind',
28
+ playsinline: 'Disable fullscreen and force inline viewing',
29
+ captionsmenu: 'Show the interactive captions menu',
30
+ playlistmenu: 'Show playlist menu (Requires more than 1 video selected to show)',
31
+ playlistautoadvance: 'Auto-advance the playlist on media end',
32
+ },
33
+ caption: {
34
+ title: 'Captions File',
35
+ configure_blurb: 'Upload a captions file (.vtt or .xml), pick one from the file manager, or add via the public URL',
36
+ },
37
+ poster: {
38
+ title: 'Poster Image File',
39
+ configure_blurb: 'Upload a poster file (.png or .jpg), pick one from the file manager, or add via the public URL. This is the image that appears before the video is played.',
40
+ },
41
+ preroll: {
42
+ title: 'Preroll Video File',
43
+ configure_blurb: 'Upload a preroll video file (.mp4 or .webm), pick one from the file manager, or add via the public URL',
44
+ },
45
+ postroll: {
46
+ title: 'Postroll Video File',
47
+ configure_blurb: 'Upload a postroll video file (.mp4 or .webm), pick one from the file manager, or add via the public URL',
48
+ },
49
+ };
@@ -0,0 +1,77 @@
1
+ declare const _default: {
2
+ blocks: {
3
+ user_upload: {
4
+ user_uploads: string;
5
+ dialog_view: string;
6
+ instructions: string;
7
+ instructions_none: string;
8
+ instructions_title: string;
9
+ must_save: string;
10
+ uploaded: string;
11
+ name: string;
12
+ size: string;
13
+ download: string;
14
+ };
15
+ image: {
16
+ title: string;
17
+ description: string;
18
+ no_image_url: string;
19
+ };
20
+ video: {
21
+ tabs: {
22
+ video: string;
23
+ poster: string;
24
+ preroll: string;
25
+ postroll: string;
26
+ };
27
+ forms: {
28
+ unsaved: string;
29
+ cancel: string;
30
+ confirm: string;
31
+ };
32
+ video: {
33
+ title: string;
34
+ configure_blurb: string;
35
+ not_configured_title: string;
36
+ edit_prompt: string;
37
+ autoplay: string;
38
+ controls: string;
39
+ loop: string;
40
+ muted: string;
41
+ disablepictureinpicture: string;
42
+ poster: string;
43
+ playback_rates: string;
44
+ rewind: string;
45
+ playsinline: string;
46
+ captionsmenu: string;
47
+ playlistmenu: string;
48
+ playlistautoadvance: string;
49
+ };
50
+ caption: {
51
+ title: string;
52
+ configure_blurb: string;
53
+ };
54
+ poster: {
55
+ title: string;
56
+ configure_blurb: string;
57
+ };
58
+ preroll: {
59
+ title: string;
60
+ configure_blurb: string;
61
+ };
62
+ postroll: {
63
+ title: string;
64
+ configure_blurb: string;
65
+ };
66
+ };
67
+ table: {
68
+ column: string;
69
+ row: string;
70
+ };
71
+ tab: {
72
+ add_tab: string;
73
+ delete_tab: string;
74
+ };
75
+ };
76
+ };
77
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var blocks_1 = require("./blocks");
4
+ exports.default = {
5
+ blocks: blocks_1.default,
6
+ };
@@ -0,0 +1,140 @@
1
+ declare const _default: {
2
+ content: {
3
+ blocks: {
4
+ user_upload: {
5
+ user_uploads: string;
6
+ dialog_view: string;
7
+ instructions: string;
8
+ instructions_none: string;
9
+ instructions_title: string;
10
+ must_save: string;
11
+ uploaded: string;
12
+ name: string;
13
+ size: string;
14
+ download: string;
15
+ };
16
+ image: {
17
+ title: string;
18
+ description: string;
19
+ no_image_url: string;
20
+ };
21
+ video: {
22
+ tabs: {
23
+ video: string;
24
+ poster: string;
25
+ preroll: string;
26
+ postroll: string;
27
+ };
28
+ forms: {
29
+ unsaved: string;
30
+ cancel: string;
31
+ confirm: string;
32
+ };
33
+ video: {
34
+ title: string;
35
+ configure_blurb: string;
36
+ not_configured_title: string;
37
+ edit_prompt: string;
38
+ autoplay: string;
39
+ controls: string;
40
+ loop: string;
41
+ muted: string;
42
+ disablepictureinpicture: string;
43
+ poster: string;
44
+ playback_rates: string;
45
+ rewind: string;
46
+ playsinline: string;
47
+ captionsmenu: string;
48
+ playlistmenu: string;
49
+ playlistautoadvance: string;
50
+ };
51
+ caption: {
52
+ title: string;
53
+ configure_blurb: string;
54
+ };
55
+ poster: {
56
+ title: string;
57
+ configure_blurb: string;
58
+ };
59
+ preroll: {
60
+ title: string;
61
+ configure_blurb: string;
62
+ };
63
+ postroll: {
64
+ title: string;
65
+ configure_blurb: string;
66
+ };
67
+ };
68
+ table: {
69
+ column: string;
70
+ row: string;
71
+ };
72
+ tab: {
73
+ add_tab: string;
74
+ delete_tab: string;
75
+ };
76
+ };
77
+ };
78
+ settings: {
79
+ image: {};
80
+ user_upload: {
81
+ accept_multiple: string;
82
+ accept_types: string;
83
+ types: {
84
+ all: string;
85
+ all_image: string;
86
+ all_word: string;
87
+ all_excel: string;
88
+ all_zip: string;
89
+ };
90
+ };
91
+ text_editor: {
92
+ glossary: string;
93
+ Text_editor: string;
94
+ verified_terms: string;
95
+ unverified_terms: string;
96
+ no_glossary: string;
97
+ };
98
+ video: {
99
+ title: string;
100
+ sources: string;
101
+ playback: string;
102
+ no_sources: string;
103
+ default_filename: string;
104
+ playlist: string;
105
+ playlist_name: string;
106
+ playlist_name_source_required: string;
107
+ playlist_add: string;
108
+ playlist_remove: string;
109
+ };
110
+ clickable_icon: {
111
+ title: string;
112
+ description: string;
113
+ information: string;
114
+ };
115
+ };
116
+ navigation: {
117
+ user_upload: {
118
+ title: string;
119
+ };
120
+ image: {
121
+ default_alt: string;
122
+ default_aria_described: string;
123
+ };
124
+ };
125
+ utils: {
126
+ tiny_mce_wrapper: {
127
+ glossary: string;
128
+ term: string;
129
+ alternate_forms: string;
130
+ definition: string;
131
+ related_terms: string;
132
+ table: {
133
+ default: string;
134
+ excel: string;
135
+ ledger: string;
136
+ };
137
+ };
138
+ };
139
+ };
140
+ export default _default;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var content_1 = require("./content");
4
+ var settings_1 = require("./settings");
5
+ var index_1 = require("./navigation/index");
6
+ var index_2 = require("./utils/index");
7
+ exports.default = {
8
+ content: content_1.default,
9
+ settings: settings_1.default,
10
+ navigation: index_1.default,
11
+ utils: index_2.default,
12
+ };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ default_alt: string;
3
+ default_aria_described: string;
4
+ };
5
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ default_alt: 'Alt text',
5
+ default_aria_described: 'Aria described by',
6
+ };
@@ -0,0 +1,10 @@
1
+ declare const _default: {
2
+ user_upload: {
3
+ title: string;
4
+ };
5
+ image: {
6
+ default_alt: string;
7
+ default_aria_described: string;
8
+ };
9
+ };
10
+ export default _default;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var user_upload_1 = require("./user_upload");
4
+ var image_1 = require("./image");
5
+ exports.default = {
6
+ user_upload: user_upload_1.default,
7
+ image: image_1.default,
8
+ };
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ title: string;
3
+ };
4
+ export default _default;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ title: 'User Uploads',
5
+ };
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ description: string;
4
+ information: string;
5
+ };
6
+ export default _default;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ title: 'Title',
5
+ description: 'Description',
6
+ information: 'Click on each of the list items below for more information.'
7
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: {};
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {};
@@ -0,0 +1,39 @@
1
+ declare const _default: {
2
+ image: {};
3
+ user_upload: {
4
+ accept_multiple: string;
5
+ accept_types: string;
6
+ types: {
7
+ all: string;
8
+ all_image: string;
9
+ all_word: string;
10
+ all_excel: string;
11
+ all_zip: string;
12
+ };
13
+ };
14
+ text_editor: {
15
+ glossary: string;
16
+ Text_editor: string;
17
+ verified_terms: string;
18
+ unverified_terms: string;
19
+ no_glossary: string;
20
+ };
21
+ video: {
22
+ title: string;
23
+ sources: string;
24
+ playback: string;
25
+ no_sources: string;
26
+ default_filename: string;
27
+ playlist: string;
28
+ playlist_name: string;
29
+ playlist_name_source_required: string;
30
+ playlist_add: string;
31
+ playlist_remove: string;
32
+ };
33
+ clickable_icon: {
34
+ title: string;
35
+ description: string;
36
+ information: string;
37
+ };
38
+ };
39
+ export default _default;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var image_1 = require("./image");
4
+ var user_upload_1 = require("./user_upload");
5
+ var text_editor_1 = require("./text_editor");
6
+ var video_1 = require("./video");
7
+ var clickable_icon_1 = require("./clickable_icon");
8
+ exports.default = {
9
+ image: image_1.default,
10
+ user_upload: user_upload_1.default,
11
+ text_editor: text_editor_1.default,
12
+ video: video_1.default,
13
+ clickable_icon: clickable_icon_1.default
14
+ };
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ glossary: string;
3
+ Text_editor: string;
4
+ verified_terms: string;
5
+ unverified_terms: string;
6
+ no_glossary: string;
7
+ };
8
+ export default _default;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ glossary: 'Glossary',
5
+ Text_editor: 'Editor',
6
+ verified_terms: 'verified terms',
7
+ unverified_terms: 'unverified terms',
8
+ no_glossary: 'No glossary Terms detected',
9
+ };
@@ -0,0 +1,12 @@
1
+ declare const _default: {
2
+ accept_multiple: string;
3
+ accept_types: string;
4
+ types: {
5
+ all: string;
6
+ all_image: string;
7
+ all_word: string;
8
+ all_excel: string;
9
+ all_zip: string;
10
+ };
11
+ };
12
+ export default _default;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ accept_multiple: 'Multiple Files',
5
+ accept_types: 'Allowed File Types',
6
+ types: {
7
+ all: 'All File Types',
8
+ all_image: 'Images - .jpg, .png, .gif',
9
+ all_word: 'Documents - .doc and .docx',
10
+ all_excel: 'Spreadsheets - .xls and .xlsx',
11
+ all_zip: 'Compressed - .zip',
12
+ },
13
+ };
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ title: string;
3
+ sources: string;
4
+ playback: string;
5
+ no_sources: string;
6
+ default_filename: string;
7
+ playlist: string;
8
+ playlist_name: string;
9
+ playlist_name_source_required: string;
10
+ playlist_add: string;
11
+ playlist_remove: string;
12
+ };
13
+ export default _default;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ title: 'Video Title',
5
+ sources: 'Sources',
6
+ playback: 'Playback',
7
+ no_sources: 'No Sources Configured',
8
+ default_filename: 'Video',
9
+ playlist: 'Videos in Playlist',
10
+ playlist_name: 'Name in Playlist',
11
+ playlist_name_source_required: 'Select a source before naming this playlist item',
12
+ playlist_add: 'Add a playlist item',
13
+ playlist_remove: 'Remove this playlist item',
14
+ };
@@ -0,0 +1,15 @@
1
+ declare const _default: {
2
+ tiny_mce_wrapper: {
3
+ glossary: string;
4
+ term: string;
5
+ alternate_forms: string;
6
+ definition: string;
7
+ related_terms: string;
8
+ table: {
9
+ default: string;
10
+ excel: string;
11
+ ledger: string;
12
+ };
13
+ };
14
+ };
15
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tiny_mce_wrapper_1 = require("./tiny_mce_wrapper");
4
+ exports.default = {
5
+ tiny_mce_wrapper: tiny_mce_wrapper_1.default,
6
+ };
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ glossary: string;
3
+ term: string;
4
+ alternate_forms: string;
5
+ definition: string;
6
+ related_terms: string;
7
+ table: {
8
+ default: string;
9
+ excel: string;
10
+ ledger: string;
11
+ };
12
+ };
13
+ export default _default;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ glossary: 'Glossary',
5
+ term: 'Glossary Term',
6
+ alternate_forms: 'Alternate Forms',
7
+ definition: 'definition',
8
+ related_terms: 'related terms',
9
+ table: {
10
+ default: 'Default Table',
11
+ excel: 'Excel Table',
12
+ ledger: 'Ledger Table',
13
+ },
14
+ };