@pie-element/ebsr 10.7.3-next.0 → 10.7.3-next.12

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 (66) hide show
  1. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
  2. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +4144 -0
  3. package/configure/node_modules/@pie-element/multiple-choice/LICENSE.md +5 -0
  4. package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
  5. package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
  6. package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
  7. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
  8. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +3316 -0
  9. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +202 -0
  10. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
  11. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +248 -0
  12. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
  13. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +597 -0
  14. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
  15. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
  16. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
  17. package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +18 -0
  18. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
  19. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +2281 -0
  20. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +34 -0
  21. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
  22. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +346 -0
  23. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
  24. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +28 -0
  25. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
  26. package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
  27. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +2993 -0
  28. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +2217 -0
  29. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
  30. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +61 -0
  31. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
  32. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
  33. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +1332 -0
  34. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +1015 -0
  35. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +427 -0
  36. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
  37. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +252 -0
  38. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
  39. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
  40. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
  41. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +388 -0
  42. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
  43. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +108 -0
  44. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
  45. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +469 -0
  46. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
  47. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
  48. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
  49. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +48 -0
  50. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
  51. package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +1 -0
  52. package/configure/node_modules/@pie-element/multiple-choice/module/controller.js +3611 -0
  53. package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +86 -0
  54. package/configure/node_modules/@pie-element/multiple-choice/module/element.js +1 -0
  55. package/configure/node_modules/@pie-element/multiple-choice/module/index.html +21 -0
  56. package/configure/node_modules/@pie-element/multiple-choice/module/manifest.json +10 -0
  57. package/configure/node_modules/@pie-element/multiple-choice/module/print-demo.js +124 -0
  58. package/configure/node_modules/@pie-element/multiple-choice/module/print.html +18 -0
  59. package/configure/node_modules/@pie-element/multiple-choice/module/print.js +1 -0
  60. package/configure/node_modules/@pie-element/multiple-choice/package.json +32 -0
  61. package/module/element.js +1 -1
  62. package/module/index.html +1 -1
  63. package/module/manifest.json +5 -1
  64. package/module/print.html +1 -1
  65. package/module/print.js +1 -1
  66. package/package.json +3 -3
@@ -0,0 +1,21 @@
1
+
2
+ <!doctype html>
3
+ <html>
4
+ <head>
5
+ <title>@pie-element/multiple-choice@9.20.1</title>
6
+ <script
7
+ type="module"
8
+ src="https://cdn.jsdelivr.net/npm/@pslb/demo-el@^1.0.0/dist/demo-el/demo-el.esm.js"></script>
9
+
10
+ <link
11
+ href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
12
+ rel="stylesheet"
13
+ />
14
+ <style>
15
+ html, body {
16
+ font-family: 'Roboto', sans-serif;
17
+ }
18
+ </style>
19
+ <script type="module" src="./demo.js"></script>
20
+ </head>
21
+ </html>
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@pie-element/multiple-choice",
3
+ "version": "9.20.1",
4
+ "modules": [
5
+ {
6
+ "name": "@pie-lib/shared-module",
7
+ "version": "^1.14.0"
8
+ }
9
+ ]
10
+ }
@@ -0,0 +1,124 @@
1
+ import PrintElement from './print.js';
2
+
3
+ var generate = {};
4
+
5
+ generate.model = (id, element) => ({
6
+ id,
7
+ element,
8
+ choiceMode: 'checkbox',
9
+ choicePrefix: 'numbers',
10
+ choices: [
11
+ {
12
+ correct: true,
13
+ value: 'sweden',
14
+ label: 'Sweden',
15
+ feedback: {
16
+ type: 'none',
17
+ value: '',
18
+ },
19
+ },
20
+ {
21
+ value: 'iceland',
22
+ label: 'Iceland',
23
+ feedback: {
24
+ type: 'none',
25
+ value: '',
26
+ },
27
+ rationale: 'Rationale for Iceland',
28
+ },
29
+ {
30
+ value: 'norway',
31
+ label: 'Norway',
32
+ feedback: {
33
+ type: 'none',
34
+ value: '',
35
+ },
36
+ rationale: 'Rationale for Norway',
37
+ },
38
+ {
39
+ correct: true,
40
+ value: 'finland',
41
+ label: 'Finland',
42
+ feedback: {
43
+ type: 'none',
44
+ value: '',
45
+ },
46
+ rationale: 'Rationale for Finland',
47
+ },
48
+ ],
49
+ extraCSSRules: {
50
+ names: ['red', 'blue'],
51
+ rules: `
52
+ .red {
53
+ color: red !important;
54
+ }
55
+
56
+ .blue {
57
+ color: blue !important;
58
+ }
59
+ `,
60
+ },
61
+ prompt: '',
62
+ promptEnabled: true,
63
+ toolbarEditorPosition: 'bottom',
64
+ rubricEnabled: false,
65
+ });
66
+
67
+ const { model } = generate;
68
+
69
+ var config = {
70
+ elements: {
71
+ 'multiple-choice': '../..',
72
+ },
73
+ models: [model('1', 'multiple-choice')],
74
+ };
75
+
76
+ // new init - just shows off print!
77
+
78
+ const init = async () => {
79
+ console.log('define the element...');
80
+ await Promise.all(
81
+ config.models.map(async (m) => {
82
+ try {
83
+ const printTag = `${m.element}-print`;
84
+ if (customElements.get(printTag)) {
85
+ return true;
86
+ } else {
87
+ customElements.define(printTag, PrintElement);
88
+ await customElements.whenDefined(printTag);
89
+ return true;
90
+ }
91
+ } catch (e) {
92
+ return false;
93
+ }
94
+ })
95
+ );
96
+
97
+ console.log('now apply the model...');
98
+ config.models.forEach((m) => {
99
+ const printTag = `${m.element}-print`;
100
+ const h3s = document.createElement('h3');
101
+ h3s.textContent = 'student mode';
102
+ document.body.appendChild(h3s);
103
+ const de = document.createElement(printTag);
104
+ document.body.appendChild(de);
105
+ de.options = {};
106
+ de.model = m;
107
+
108
+ const h3 = document.createElement('h3');
109
+ h3.textContent = 'instructor mode';
110
+ document.body.appendChild(h3);
111
+ const instr = document.createElement(printTag);
112
+ document.body.appendChild(instr);
113
+ instr.options = { mode: 'instructor' };
114
+ instr.model = JSON.parse(JSON.stringify(m));
115
+ });
116
+ };
117
+
118
+ init()
119
+ .then(() => {
120
+ console.log('ready');
121
+ })
122
+ .catch((e) => {
123
+ console.error(e);
124
+ });
@@ -0,0 +1,18 @@
1
+
2
+ <!doctype html>
3
+ <html>
4
+ <head>
5
+ <title>@pie-element/multiple-choice@9.20.1</title>
6
+ <link
7
+ href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
8
+ rel="stylesheet"
9
+ />
10
+ <style>
11
+ html, body {
12
+ font-family: 'Roboto', sans-serif;
13
+ }
14
+ </style>
15
+ <script type="module" src="./print-demo.js"></script>
16
+ </head>
17
+ <body></body>
18
+ </html>