@windward/core 0.5.1 → 0.6.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.
Files changed (130) 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/CHANGELOG.md +4 -0
  11. package/components/Content/Blocks/Accordion.vue +14 -0
  12. package/components/Content/Blocks/ClickableIcons.vue +23 -20
  13. package/components/Content/Blocks/FileDownload.vue +6 -8
  14. package/components/Content/Blocks/ScenarioChoice.vue +1 -1
  15. package/components/Settings/AccordionSettings.vue +124 -137
  16. package/components/Settings/BlockQuoteSettings.vue +33 -2
  17. package/components/Settings/ClickableIconsSettings.vue +30 -10
  18. package/components/Settings/EmailSettings.vue +31 -4
  19. package/components/Settings/FileDownloadSettings.vue +28 -3
  20. package/components/Settings/ScenarioChoiceSettings.vue +30 -7
  21. package/components/Settings/TabSettings.vue +13 -3
  22. package/components/Settings/TextEditorSettings.vue +14 -2
  23. package/components/Settings/UserUploadSettings.vue +24 -3
  24. package/components/Settings/VideoSettings.vue +31 -1
  25. package/components/utils/TinyMCEWrapper.vue +22 -1
  26. package/config/menu.config.json +475 -0
  27. package/coverage/clover.xml +223 -0
  28. package/coverage/coverage-final.json +16 -0
  29. package/coverage/lcov-report/base.css +224 -0
  30. package/coverage/lcov-report/block-navigation.js +87 -0
  31. package/coverage/lcov-report/components/Content/Blocks/Accordion.vue.html +430 -0
  32. package/coverage/lcov-report/components/Content/Blocks/Image.vue.html +394 -0
  33. package/coverage/lcov-report/components/Content/Blocks/Math.vue.html +262 -0
  34. package/coverage/lcov-report/components/Content/Blocks/RichText.vue.html +295 -0
  35. package/coverage/lcov-report/components/Content/Blocks/Tab.vue.html +415 -0
  36. package/coverage/lcov-report/components/Content/Blocks/Table.vue.html +667 -0
  37. package/coverage/lcov-report/components/Content/Blocks/Video.vue.html +2275 -0
  38. package/coverage/lcov-report/components/Content/Blocks/index.html +206 -0
  39. package/coverage/lcov-report/components/utils/ContentViewer.vue.html +199 -0
  40. package/coverage/lcov-report/components/utils/MathExpressionEditor.vue.html +919 -0
  41. package/coverage/lcov-report/components/utils/MathLiveWrapper.vue.html +343 -0
  42. package/coverage/lcov-report/components/utils/TinyMCEWrapper.vue.html +271 -0
  43. package/coverage/lcov-report/components/utils/index.html +161 -0
  44. package/coverage/lcov-report/config/index.html +116 -0
  45. package/coverage/lcov-report/config/tinymce.config.js.html +493 -0
  46. package/coverage/lcov-report/favicon.png +0 -0
  47. package/coverage/lcov-report/helpers/MathHelper.ts.html +793 -0
  48. package/coverage/lcov-report/helpers/index.html +116 -0
  49. package/coverage/lcov-report/helpers/tinymce/index.html +116 -0
  50. package/coverage/lcov-report/helpers/tinymce/plugin.ts.html +334 -0
  51. package/coverage/lcov-report/index.html +191 -0
  52. package/coverage/lcov-report/prettify.css +1 -0
  53. package/coverage/lcov-report/prettify.js +2 -0
  54. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  55. package/coverage/lcov-report/sorter.js +196 -0
  56. package/coverage/lcov-report/test/index.html +116 -0
  57. package/coverage/lcov-report/test/mocks.js.html +457 -0
  58. package/coverage/lcov.info +403 -0
  59. package/i18n/en-US/shared/settings.ts +3 -0
  60. package/i18n/es-ES/shared/settings.ts +3 -0
  61. package/i18n/sv-SE/shared/settings.ts +3 -0
  62. package/lib/helpers/GlossaryHelper.d.ts +9 -0
  63. package/lib/helpers/GlossaryHelper.js +118 -0
  64. package/lib/helpers/GlossaryTerm.d.ts +10 -0
  65. package/lib/helpers/GlossaryTerm.js +22 -0
  66. package/lib/helpers/MathHelper.d.ts +99 -0
  67. package/lib/helpers/MathHelper.js +194 -0
  68. package/lib/helpers/tinymce/plugin.d.ts +2 -0
  69. package/lib/helpers/tinymce/plugin.js +86 -0
  70. package/lib/i18n/en-US/components/content/blocks/image.d.ts +6 -0
  71. package/lib/i18n/en-US/components/content/blocks/image.js +7 -0
  72. package/lib/i18n/en-US/components/content/blocks/index.d.ts +75 -0
  73. package/lib/i18n/en-US/components/content/blocks/index.js +14 -0
  74. package/lib/i18n/en-US/components/content/blocks/tab.d.ts +5 -0
  75. package/lib/i18n/en-US/components/content/blocks/tab.js +6 -0
  76. package/lib/i18n/en-US/components/content/blocks/table.d.ts +5 -0
  77. package/lib/i18n/en-US/components/content/blocks/table.js +6 -0
  78. package/lib/i18n/en-US/components/content/blocks/user_upload.d.ts +13 -0
  79. package/lib/i18n/en-US/components/content/blocks/user_upload.js +14 -0
  80. package/lib/i18n/en-US/components/content/blocks/video.d.ts +48 -0
  81. package/lib/i18n/en-US/components/content/blocks/video.js +49 -0
  82. package/lib/i18n/en-US/components/content/index.d.ts +77 -0
  83. package/lib/i18n/en-US/components/content/index.js +6 -0
  84. package/lib/i18n/en-US/components/index.d.ts +140 -0
  85. package/lib/i18n/en-US/components/index.js +12 -0
  86. package/lib/i18n/en-US/components/navigation/image.d.ts +5 -0
  87. package/lib/i18n/en-US/components/navigation/image.js +6 -0
  88. package/lib/i18n/en-US/components/navigation/index.d.ts +10 -0
  89. package/lib/i18n/en-US/components/navigation/index.js +8 -0
  90. package/lib/i18n/en-US/components/navigation/user_upload.d.ts +4 -0
  91. package/lib/i18n/en-US/components/navigation/user_upload.js +5 -0
  92. package/lib/i18n/en-US/components/settings/clickable_icon.d.ts +6 -0
  93. package/lib/i18n/en-US/components/settings/clickable_icon.js +7 -0
  94. package/lib/i18n/en-US/components/settings/image.d.ts +2 -0
  95. package/lib/i18n/en-US/components/settings/image.js +3 -0
  96. package/lib/i18n/en-US/components/settings/index.d.ts +39 -0
  97. package/lib/i18n/en-US/components/settings/index.js +14 -0
  98. package/lib/i18n/en-US/components/settings/text_editor.d.ts +8 -0
  99. package/lib/i18n/en-US/components/settings/text_editor.js +9 -0
  100. package/lib/i18n/en-US/components/settings/user_upload.d.ts +12 -0
  101. package/lib/i18n/en-US/components/settings/user_upload.js +13 -0
  102. package/lib/i18n/en-US/components/settings/video.d.ts +13 -0
  103. package/lib/i18n/en-US/components/settings/video.js +14 -0
  104. package/lib/i18n/en-US/components/utils/index.d.ts +15 -0
  105. package/lib/i18n/en-US/components/utils/index.js +6 -0
  106. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.d.ts +13 -0
  107. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.js +14 -0
  108. package/lib/i18n/en-US/index.d.ts +197 -0
  109. package/lib/i18n/en-US/index.js +16 -0
  110. package/lib/i18n/en-US/modules/index.d.ts +2 -0
  111. package/lib/i18n/en-US/modules/index.js +6 -0
  112. package/lib/i18n/en-US/pages/glossary.d.ts +8 -0
  113. package/lib/i18n/en-US/pages/glossary.js +9 -0
  114. package/lib/i18n/en-US/pages/index.d.ts +13 -0
  115. package/lib/i18n/en-US/pages/index.js +8 -0
  116. package/lib/i18n/en-US/pages/user_upload.d.ts +4 -0
  117. package/lib/i18n/en-US/pages/user_upload.js +5 -0
  118. package/lib/i18n/en-US/shared/content_blocks.d.ts +20 -0
  119. package/lib/i18n/en-US/shared/content_blocks.js +21 -0
  120. package/lib/i18n/en-US/shared/index.d.ts +39 -0
  121. package/lib/i18n/en-US/shared/index.js +10 -0
  122. package/lib/i18n/en-US/shared/menu.d.ts +4 -0
  123. package/lib/i18n/en-US/shared/menu.js +5 -0
  124. package/lib/i18n/en-US/shared/settings.d.ts +15 -0
  125. package/lib/i18n/en-US/shared/settings.js +16 -0
  126. package/lib/i18n/en-US.d.ts +197 -0
  127. package/lib/i18n/en-US.js +15 -0
  128. package/lib/models/UserFileAsset.d.ts +5 -0
  129. package/lib/models/UserFileAsset.js +37 -0
  130. package/package.json +1 -1
@@ -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
+ };
@@ -0,0 +1,197 @@
1
+ declare const _default: {
2
+ plugin: {
3
+ core: {
4
+ pages: {
5
+ user_upload: {
6
+ title: string;
7
+ };
8
+ glossary: {
9
+ title: string;
10
+ term: string;
11
+ related_term: string;
12
+ definition: string;
13
+ alternate_forms: string;
14
+ };
15
+ };
16
+ components: {
17
+ content: {
18
+ blocks: {
19
+ user_upload: {
20
+ user_uploads: string;
21
+ dialog_view: string;
22
+ instructions: string;
23
+ instructions_none: string;
24
+ instructions_title: string;
25
+ must_save: string;
26
+ uploaded: string;
27
+ name: string;
28
+ size: string;
29
+ download: string;
30
+ };
31
+ image: {
32
+ title: string;
33
+ description: string;
34
+ no_image_url: string;
35
+ };
36
+ video: {
37
+ tabs: {
38
+ video: string;
39
+ poster: string;
40
+ preroll: string;
41
+ postroll: string;
42
+ };
43
+ forms: {
44
+ unsaved: string;
45
+ cancel: string;
46
+ confirm: string;
47
+ };
48
+ video: {
49
+ title: string;
50
+ configure_blurb: string;
51
+ not_configured_title: string;
52
+ edit_prompt: string;
53
+ autoplay: string;
54
+ controls: string;
55
+ loop: string;
56
+ muted: string;
57
+ disablepictureinpicture: string;
58
+ poster: string;
59
+ playback_rates: string;
60
+ rewind: string;
61
+ playsinline: string;
62
+ captionsmenu: string;
63
+ playlistmenu: string;
64
+ playlistautoadvance: string;
65
+ };
66
+ caption: {
67
+ title: string;
68
+ configure_blurb: string;
69
+ };
70
+ poster: {
71
+ title: string;
72
+ configure_blurb: string;
73
+ };
74
+ preroll: {
75
+ title: string;
76
+ configure_blurb: string;
77
+ };
78
+ postroll: {
79
+ title: string;
80
+ configure_blurb: string;
81
+ };
82
+ };
83
+ table: {
84
+ column: string;
85
+ row: string;
86
+ };
87
+ tab: {
88
+ add_tab: string;
89
+ delete_tab: string;
90
+ };
91
+ };
92
+ };
93
+ settings: {
94
+ image: {};
95
+ user_upload: {
96
+ accept_multiple: string;
97
+ accept_types: string;
98
+ types: {
99
+ all: string;
100
+ all_image: string;
101
+ all_word: string;
102
+ all_excel: string;
103
+ all_zip: string;
104
+ };
105
+ };
106
+ text_editor: {
107
+ glossary: string;
108
+ Text_editor: string;
109
+ verified_terms: string;
110
+ unverified_terms: string;
111
+ no_glossary: string;
112
+ };
113
+ video: {
114
+ title: string;
115
+ sources: string;
116
+ playback: string;
117
+ no_sources: string;
118
+ default_filename: string;
119
+ playlist: string;
120
+ playlist_name: string;
121
+ playlist_name_source_required: string;
122
+ playlist_add: string;
123
+ playlist_remove: string;
124
+ };
125
+ clickable_icon: {
126
+ title: string;
127
+ description: string;
128
+ information: string;
129
+ };
130
+ };
131
+ navigation: {
132
+ user_upload: {
133
+ title: string;
134
+ };
135
+ image: {
136
+ default_alt: string;
137
+ default_aria_described: string;
138
+ };
139
+ };
140
+ utils: {
141
+ tiny_mce_wrapper: {
142
+ glossary: string;
143
+ term: string;
144
+ alternate_forms: string;
145
+ definition: string;
146
+ related_terms: string;
147
+ table: {
148
+ default: string;
149
+ excel: string;
150
+ ledger: string;
151
+ };
152
+ };
153
+ };
154
+ };
155
+ shared: {
156
+ content_blocks: {
157
+ title: {
158
+ assessment: string;
159
+ video: string;
160
+ default_table: string;
161
+ tab: string;
162
+ rich_text: string;
163
+ math: string;
164
+ accordion: string;
165
+ image: string;
166
+ user_upload: string;
167
+ clickable_icons: string;
168
+ };
169
+ grouping: {
170
+ basic: string;
171
+ multimedia: string;
172
+ placeholder: string;
173
+ };
174
+ };
175
+ settings: {
176
+ title: {
177
+ assessment: string;
178
+ image: string;
179
+ user_upload: string;
180
+ tab_settings: string;
181
+ text_editor: string;
182
+ clickable_icons: string;
183
+ accordion: string;
184
+ video: string;
185
+ table: string;
186
+ math: string;
187
+ };
188
+ };
189
+ menu: {
190
+ course_glossary: string;
191
+ };
192
+ };
193
+ modules: {};
194
+ };
195
+ };
196
+ };
197
+ export default _default;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var index_1 = require("./pages/index");
4
+ var index_2 = require("./components/index");
5
+ var index_3 = require("./shared/index");
6
+ var index_4 = require("./modules/index");
7
+ exports.default = {
8
+ plugin: {
9
+ core: {
10
+ pages: index_1.default,
11
+ components: index_2.default,
12
+ shared: index_3.default,
13
+ modules: index_4.default,
14
+ },
15
+ },
16
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: {};
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ // import example from './example'
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.default = {
5
+ // example,
6
+ };
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ title: string;
3
+ term: string;
4
+ related_term: string;
5
+ definition: string;
6
+ alternate_forms: string;
7
+ };
8
+ export default _default;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ title: 'Course Glossary',
5
+ term: 'Term',
6
+ related_term: 'Related Term',
7
+ definition: 'definition',
8
+ alternate_forms: 'Alternate Forms',
9
+ };
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ user_upload: {
3
+ title: string;
4
+ };
5
+ glossary: {
6
+ title: string;
7
+ term: string;
8
+ related_term: string;
9
+ definition: string;
10
+ alternate_forms: string;
11
+ };
12
+ };
13
+ export default _default;