@webwriter/quiz 1.0.5 → 1.0.6
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/LICENSE +6 -6
- package/custom.d.ts +175 -175
- package/dist/widgets/webwriter-choice-item.css +1 -1
- package/dist/widgets/webwriter-choice-item.js +1886 -802
- package/dist/widgets/webwriter-choice.css +1 -1
- package/dist/widgets/webwriter-choice.js +1943 -846
- package/dist/widgets/webwriter-cloze-gap.css +1 -1
- package/dist/widgets/webwriter-cloze-gap.js +1988 -902
- package/dist/widgets/webwriter-cloze.css +1 -1
- package/dist/widgets/webwriter-cloze.js +1833 -748
- package/dist/widgets/webwriter-mark.css +1 -1
- package/dist/widgets/webwriter-mark.js +1848 -762
- package/dist/widgets/webwriter-order-item.css +1 -1
- package/dist/widgets/webwriter-order-item.js +1884 -799
- package/dist/widgets/webwriter-order.css +1 -1
- package/dist/widgets/webwriter-order.js +1882 -790
- package/dist/widgets/webwriter-pairing-item.css +1 -1
- package/dist/widgets/webwriter-pairing-item.js +1718 -614
- package/dist/widgets/webwriter-pairing.css +1 -1
- package/dist/widgets/webwriter-pairing.js +1873 -781
- package/dist/widgets/webwriter-quiz.css +1 -1
- package/dist/widgets/webwriter-quiz.js +2241 -1026
- package/dist/widgets/webwriter-speech.css +1 -1
- package/dist/widgets/webwriter-speech.js +2179 -961
- package/dist/widgets/webwriter-task-explainer.css +1 -1
- package/dist/widgets/webwriter-task-explainer.js +1704 -600
- package/dist/widgets/webwriter-task-hint.css +1 -1
- package/dist/widgets/webwriter-task-hint.js +1695 -591
- package/dist/widgets/webwriter-task-prompt.css +1 -1
- package/dist/widgets/webwriter-task-prompt.js +1670 -566
- package/dist/widgets/webwriter-task.css +1 -1
- package/dist/widgets/webwriter-task.js +2361 -1143
- package/dist/widgets/webwriter-text.css +1 -1
- package/dist/widgets/webwriter-text.js +1876 -770
- package/icon.svg +1 -0
- package/lit-localize.json +15 -0
- package/localization/bg.xlf +54 -0
- package/localization/cs.xlf +54 -0
- package/localization/da.xlf +54 -0
- package/localization/de.xlf +54 -0
- package/localization/el.xlf +54 -0
- package/localization/es.xlf +54 -0
- package/localization/et.xlf +54 -0
- package/localization/fi.xlf +54 -0
- package/localization/fr.xlf +54 -0
- package/localization/generated/bg.ts +25 -0
- package/localization/generated/cs.ts +25 -0
- package/localization/generated/da.ts +25 -0
- package/localization/generated/de.ts +25 -0
- package/localization/generated/el.ts +25 -0
- package/localization/generated/es.ts +25 -0
- package/localization/generated/et.ts +25 -0
- package/localization/generated/fi.ts +25 -0
- package/localization/generated/fr.ts +25 -0
- package/localization/generated/hu.ts +25 -0
- package/localization/generated/id.ts +25 -0
- package/localization/generated/index.js +3 -0
- package/localization/generated/it.ts +25 -0
- package/localization/generated/ja.ts +25 -0
- package/localization/generated/ko.ts +25 -0
- package/localization/generated/locale-codes.js +79 -0
- package/localization/generated/lt.ts +25 -0
- package/localization/generated/lv.ts +25 -0
- package/localization/generated/nb.ts +25 -0
- package/localization/generated/nl.ts +25 -0
- package/localization/generated/pl.ts +25 -0
- package/localization/generated/pt-BR.ts +25 -0
- package/localization/generated/pt-PT.ts +25 -0
- package/localization/generated/ro.ts +25 -0
- package/localization/generated/ru.ts +25 -0
- package/localization/generated/sk.ts +25 -0
- package/localization/generated/sl.ts +25 -0
- package/localization/generated/sv.ts +25 -0
- package/localization/generated/tr.ts +25 -0
- package/localization/generated/uk.ts +25 -0
- package/localization/generated/zh-hans.ts +25 -0
- package/localization/hu.xlf +54 -0
- package/localization/id.xlf +54 -0
- package/localization/it.xlf +54 -0
- package/localization/ja.xlf +54 -0
- package/localization/ko.xlf +54 -0
- package/localization/lt.xlf +54 -0
- package/localization/lv.xlf +54 -0
- package/localization/nb.xlf +54 -0
- package/localization/nl.xlf +54 -0
- package/localization/pl.xlf +54 -0
- package/localization/pt-BR.xlf +54 -0
- package/localization/pt-PT.xlf +54 -0
- package/localization/ro.xlf +54 -0
- package/localization/ru.xlf +54 -0
- package/localization/sk.xlf +54 -0
- package/localization/sl.xlf +54 -0
- package/localization/sv.xlf +54 -0
- package/localization/tr.xlf +54 -0
- package/localization/uk.xlf +54 -0
- package/localization/zh-hans.xlf +54 -0
- package/package.json +206 -198
- package/src/lib/combobox.ts +455 -455
- package/src/lib/highlighter-fill.svg +5 -5
- package/src/snippets/Beispiel-Choice.html +57 -0
- package/src/snippets/Beispiel-Mark.html +14 -0
- package/src/snippets/Beispiel-Order.html +52 -0
- package/src/snippets/Beispiel-Text.html +20 -0
- package/src/snippets/choice.html +7 -7
- package/src/snippets/cloze.html +3 -3
- package/src/snippets/mark.html +3 -3
- package/src/snippets/order.html +7 -7
- package/src/snippets/pairing.html +9 -9
- package/src/snippets/speech.html +3 -3
- package/src/snippets/text.html +3 -3
- package/src/snippets/wordsearch.html +3 -3
- package/src/widgets/webwriter-choice-item.ts +250 -250
- package/src/widgets/webwriter-choice.ts +314 -309
- package/src/widgets/webwriter-cloze-gap.ts +215 -216
- package/src/widgets/webwriter-cloze.ts +135 -135
- package/src/widgets/webwriter-mark.ts +431 -434
- package/src/widgets/webwriter-order-item.ts +437 -436
- package/src/widgets/webwriter-order.ts +284 -279
- package/src/widgets/webwriter-pairing-item.ts +160 -155
- package/src/widgets/webwriter-pairing.ts +192 -187
- package/src/widgets/webwriter-quiz.ts +281 -280
- package/src/widgets/webwriter-speech.ts +272 -267
- package/src/widgets/webwriter-task-explainer.ts +42 -37
- package/src/widgets/webwriter-task-hint.ts +22 -16
- package/src/widgets/webwriter-task-prompt.ts +23 -17
- package/src/widgets/webwriter-task.ts +546 -543
- package/src/widgets/webwriter-text.ts +135 -130
- package/tsconfig.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="20" height="20" fill="currentColor" class="bi bi-highlighter" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path style="fill:#ffffff;stroke-width:0.0388979" d="M 12.979378,2.8366808 11.180665,1.1061689 11.312696,0.99938614 c 0.224798,-0.18180931 0.45821,-0.26011138 0.787279,-0.26410617 0.520565,-0.006315 0.605828,0.0505579 1.812273,1.20892583 1.20551,1.1574723 1.264697,1.239359 1.259768,1.7428933 -0.003,0.3118719 -0.08504,0.5291149 -0.285756,0.7571853 l -0.108172,0.1229081 z" id="path310" />
|
|
3
|
-
<path style="fill:#ffffff;stroke-width:0.0327363" d="M 4.3293683,11.575933 C 2.3884046,9.6659098 2.3670623,9.6434959 2.4318197,9.5830841 2.4678415,9.5494798 4.3833896,7.8593211 6.6885933,5.827176 8.993797,3.795031 10.924803,2.0910543 10.97972,2.0405615 l 0.09985,-0.091804 1.524504,1.5011639 1.524504,1.501164 -3.894388,4.2701545 C 8.0922741,11.569823 6.329137,13.495058 6.316105,13.499537 6.3030731,13.504037 5.4090417,12.638394 4.3293683,11.575933 Z" id="path306" />
|
|
4
|
-
<path style="fill:#ffffff;stroke-width:0.0401442" d="m 3.0376721,12.881037 -0.8289193,-0.721793 0.011549,-0.90713 0.011549,-0.907129 1.8721139,1.628923 1.8721139,1.628923 H 4.9213333 3.8665914 Z" id="path308" />
|
|
5
|
-
<path fill-rule="evenodd" d="m 11.096,0.644 a 2,2 0 0 1 2.791,0.036 l 1.433,1.433 a 2,2 0 0 1 0.035,2.791 l -0.413,0.435 -8.07,8.995 A 0.5,0.5 0 0 1 6.5,14.5 h -3 A 0.5,0.5 0 0 1 3.266,14.442 L 2.854,14.854 A 0.5,0.5 0 0 1 2.5,15 h -2 A 0.5,0.5 0 0 1 0.146,14.146 L 1.558,12.734 A 0.5,0.5 0 0 1 1.5,12.5 v -3 A 0.5,0.5 0 0 1 1.666,9.128 l 8.995,-8.07 z M 10.981,2.114 2.727,9.52 6.48,13.273 13.886,5.019 Z m 3.585,2.17 0.064,-0.068 A 1,1 0 0 0 14.613,2.82 L 13.18,1.387 A 1,1 0 0 0 11.784,1.369 L 11.716,1.434 Z M 5.293,13.5 2.5,10.707 v 1.586 L 3.707,13.5 Z" id="path2" />
|
|
1
|
+
<svg width="20" height="20" fill="currentColor" class="bi bi-highlighter" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path style="fill:#ffffff;stroke-width:0.0388979" d="M 12.979378,2.8366808 11.180665,1.1061689 11.312696,0.99938614 c 0.224798,-0.18180931 0.45821,-0.26011138 0.787279,-0.26410617 0.520565,-0.006315 0.605828,0.0505579 1.812273,1.20892583 1.20551,1.1574723 1.264697,1.239359 1.259768,1.7428933 -0.003,0.3118719 -0.08504,0.5291149 -0.285756,0.7571853 l -0.108172,0.1229081 z" id="path310" />
|
|
3
|
+
<path style="fill:#ffffff;stroke-width:0.0327363" d="M 4.3293683,11.575933 C 2.3884046,9.6659098 2.3670623,9.6434959 2.4318197,9.5830841 2.4678415,9.5494798 4.3833896,7.8593211 6.6885933,5.827176 8.993797,3.795031 10.924803,2.0910543 10.97972,2.0405615 l 0.09985,-0.091804 1.524504,1.5011639 1.524504,1.501164 -3.894388,4.2701545 C 8.0922741,11.569823 6.329137,13.495058 6.316105,13.499537 6.3030731,13.504037 5.4090417,12.638394 4.3293683,11.575933 Z" id="path306" />
|
|
4
|
+
<path style="fill:#ffffff;stroke-width:0.0401442" d="m 3.0376721,12.881037 -0.8289193,-0.721793 0.011549,-0.90713 0.011549,-0.907129 1.8721139,1.628923 1.8721139,1.628923 H 4.9213333 3.8665914 Z" id="path308" />
|
|
5
|
+
<path fill-rule="evenodd" d="m 11.096,0.644 a 2,2 0 0 1 2.791,0.036 l 1.433,1.433 a 2,2 0 0 1 0.035,2.791 l -0.413,0.435 -8.07,8.995 A 0.5,0.5 0 0 1 6.5,14.5 h -3 A 0.5,0.5 0 0 1 3.266,14.442 L 2.854,14.854 A 0.5,0.5 0 0 1 2.5,15 h -2 A 0.5,0.5 0 0 1 0.146,14.146 L 1.558,12.734 A 0.5,0.5 0 0 1 1.5,12.5 v -3 A 0.5,0.5 0 0 1 1.666,9.128 l 8.995,-8.07 z M 10.981,2.114 2.727,9.52 6.48,13.273 13.886,5.019 Z m 3.585,2.17 0.064,-0.068 A 1,1 0 0 0 14.613,2.82 L 13.18,1.387 A 1,1 0 0 0 11.784,1.369 L 11.716,1.434 Z M 5.293,13.5 2.5,10.707 v 1.586 L 3.707,13.5 Z" id="path2" />
|
|
6
6
|
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<webwriter-task
|
|
2
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
3
|
+
id="ww-e782e8fc-527e-4179-8e2e-d5d515a72e01"
|
|
4
|
+
solution="data:application/octet-stream;base64,wEvYCTVh6LB1Tj7Rysh5Bf176dwhmpRmS4tgi/GfLvZQW0vHiSJf7NyLxEG2Rxmi2D3wy75QQESJDnA="
|
|
5
|
+
iv="data:application/octet-stream;base64,/KZr600zHqfeRMwQ"
|
|
6
|
+
salt="data:application/octet-stream;base64,5c4v616VGpv+r1qsw1yong=="
|
|
7
|
+
hint=""
|
|
8
|
+
>
|
|
9
|
+
<webwriter-task-prompt
|
|
10
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
11
|
+
id="ww-0cabba93-6581-4511-b7c9-a163fe842c93"
|
|
12
|
+
slot="prompt"
|
|
13
|
+
>
|
|
14
|
+
<p>Welchen Vorgang betreiben Pflanzen?</p>
|
|
15
|
+
</webwriter-task-prompt>
|
|
16
|
+
<webwriter-task-hint
|
|
17
|
+
class="ww-widget ww-v1.0.6-local"
|
|
18
|
+
id="ww-fe237123-7753-4a01-b8d6-4a194dc66300"
|
|
19
|
+
slot="hint"
|
|
20
|
+
>
|
|
21
|
+
<p>Das ist eine Hilfestellung</p>
|
|
22
|
+
</webwriter-task-hint>
|
|
23
|
+
<webwriter-choice
|
|
24
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
25
|
+
id="ww-d45a21c9-0df0-4b4c-83ee-0ecf9c792652"
|
|
26
|
+
mode="single"
|
|
27
|
+
>
|
|
28
|
+
<webwriter-choice-item
|
|
29
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
30
|
+
id="ww-83b9ba07-a808-4b79-8585-3585343f3544"
|
|
31
|
+
layout="list"
|
|
32
|
+
>
|
|
33
|
+
<p>Autoklavierung</p>
|
|
34
|
+
</webwriter-choice-item>
|
|
35
|
+
<webwriter-choice-item
|
|
36
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
37
|
+
id="ww-e1082cc3-0f67-4716-9512-cb70287c87a5"
|
|
38
|
+
layout="list"
|
|
39
|
+
>
|
|
40
|
+
<p>Stickstoffkreislauf</p>
|
|
41
|
+
</webwriter-choice-item>
|
|
42
|
+
<webwriter-choice-item
|
|
43
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
44
|
+
id="ww-d3474662-343b-4beb-b032-b3903bba8c47"
|
|
45
|
+
layout="list"
|
|
46
|
+
>
|
|
47
|
+
<p>Photosynthese</p>
|
|
48
|
+
</webwriter-choice-item>
|
|
49
|
+
<webwriter-choice-item
|
|
50
|
+
class="ww-v1.0.5 ww-widget ww-v1.0.6-local"
|
|
51
|
+
id="ww-311b80e8-d513-4685-a33d-c9effc81c356"
|
|
52
|
+
layout="list"
|
|
53
|
+
>
|
|
54
|
+
<p>Konduktometrie</p>
|
|
55
|
+
</webwriter-choice-item>
|
|
56
|
+
</webwriter-choice>
|
|
57
|
+
</webwriter-task>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<webwriter-task class="ww-widget ww-v1.0.6-local"
|
|
2
|
+
id="ww-246aa4b7-788c-436e-a377-21cd42bd2189"
|
|
3
|
+
solution="data:application/octet-stream;base64,nWbpKpMC0ngEO5xQpIsatmqJjQXK2tjOhDmkA2CWZ/5a73gt5/kfJTpgM219qY5HkTUdVE0EIRFFK0y9mtF8nJOp7+3WkD68KIQtM4untbrs68adjKGSXAhlWxaMr/6lZV9o7PUWKox9M1zUmCtbiEnYwuDNzEyR7nqczZ6ScNKsJljzlhxUVzxNuD1u1dLGRWx4hAme7Giv4sYFgZEGoOa/1AiqeJfSX0suY0yJ0qF5LolnTlSDEeQMr9wxgKqS/NEuya9rKvSdDh3q4NM9VeQtj7mnVOTeoIwwkD4W5Txv0i3GWnKSddtseZrADrmwjtIaC5WF/QdEZJM8rVZG6RLrqJ2Sdh3P+UYaXnUs5e0CLSAt3PSIhh1MjY3Oe+7PaHGhKSoIVHJB9tXBfacTpxw6+HVTadJ1XmXESGbsTJKxg4f052onjfiqT3zLrLPgiG+Kny2jm7o6BUBjJoL6qbrTzOe69nQr+fYu2J6mPyrMVwJOH/cAPb32gxbgWyMPI+vh3nM20S0z21qqiB2N/QCyugjR7Nnq4tqPeKtOF3UbeR2G92HvBjOHZllBqLmNzqJDOs4ojccRXZ9p4v3xjuZSYQczCF/p7QZKGDCMiQJW0wI7iKFOPOuhBT7LRFlD5SixRj2RyIC4VtvMSa9hlukegQrRb+ajKfH4ZrLv69ml6VClbdonNeov1ds1y5JCozaKUZw7nksg+pFSCQ4g5Ao94B+OQUg8wn/aWW7FLhxIwaSdwBWo+k1tJ2Tyvv9RWajbEG1+O+IDQhOx/TxAZ6aOL96aivu+fL7fhPjeMT0UjrgSEOUd175189GiqSTFP4xfxQxxeBPPVnTFy58vUxBeoSGlcP/n+8bUsM46cysIMNe6D1ZkWwdU8aryKGf6+caB8k8MMDhhwzQkYOdi2I8LAHO2BRiuqftcDJA1CMkvybCJticXafG1noCXyQGxdSeDTX74WT6S2Nk9LhQGwkNBCg43w7ZH0E9+MdvoUMXORJtBjEENIJjVZpuu02DPj7oUniZ11rPQMNdl20ItBD21Oei5Y1QYxuxXBEXHLUJowRIkunJidllZU+rugeW+7ZhHqqxTnTTQoZkvH5NKxIWVjptMcPBRNt6D98jZIHn2kqCIM0TwdPEHMwsFUfCEr7gMGwqk5GLMyiBzRKZuCoeyU0KF8xygHi5MQN8Gz+AqPJAuJMsd4fRj8nYrVccqbcDFd9PkHDoSpXO1IC4aJuFxxoqjqvehnhLvTv4X+0XxEvnevtphGrg/Z+k7h9A1SD2KVnWT0wCJIRfLInvzLsRZjduaTlZCEDfyIffKx0Y5RottxetnEVFv8oc4EdgeqdrD9szdYawa1yhvu/lFm7FFWhqMrWjau3nWeWYq8HjWyOqQ9R7urdAsm78QHP0G4sKLCcPV9oZ561JRbuaoZ5uNa5Qxfr0rbovbns3P0abw5ucXU/z6c8okK28NWs+A99/YqvR6pYOp3CjXaf8sSn2rhIEk+A2uQUAKbACuonB6SxjN6ANOXbHDxMtXSsGMtfDJh304xHx/hqSbjgzwLXtMGp+GDW2A2FYa+KLW6y1oLV9vYFqaY1Cxqo6PFoz1ezNEYPbOIbqkXq7B5+jzp1jvH8wl1JaaZtw8eapLt7UVzLZKsouhye2IEtFDdGOYdFEMpuG/+dXxq7EWIIxQ8iRrzNFndObui5xbJGVkorL7okUGzE0qs0+voZdprTehG41y+Ftw5HeqoaPWJc7FLIP6zxHDQNdAY5LhDku92qoV0UBNDfKmvC9fy8SqNxc="
|
|
4
|
+
iv="data:application/octet-stream;base64,RglzKK4RP/kcz5R9"
|
|
5
|
+
salt="data:application/octet-stream;base64,boaqfSsVoyze0QaIUcV61w==">
|
|
6
|
+
<webwriter-task-prompt class="ww-widget ww-v1.0.6-local"
|
|
7
|
+
id="ww-11e51927-d8a2-4b8b-ad45-442e4ca9dfb7"
|
|
8
|
+
slot="prompt">
|
|
9
|
+
<p>Markiere alle Verben im nachfolgenden Satz.</p>
|
|
10
|
+
</webwriter-task-prompt>
|
|
11
|
+
<webwriter-mark class="ww-widget ww-v1.0.6-local"
|
|
12
|
+
id="ww-cacc7fb5-7d16-4fba-a569-273b6d756fa1"
|
|
13
|
+
value="[]">Jemand musste Josef K. verleumdet haben, denn ohne dass er etwas Böses getan hätte, wurde er eines Morgens verhaftet. »Wie ein Hund!« sagte er, es war, als sollte die Scham ihn überleben. Als Gregor Samsa eines Morgens aus unruhigen Träumen erwachte, fand er sich in seinem Bett zu einem ungeheueren</webwriter-mark>
|
|
14
|
+
</webwriter-task>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<webwriter-task
|
|
2
|
+
class="ww-widget ww-v1.0.6-local"
|
|
3
|
+
id="ww-9e8dbb09-f884-44f1-9c5c-fb7fb9afaba5"
|
|
4
|
+
solution="data:application/octet-stream;base64,b9v1gruH6y/u/D67OBtN/NDF2C9eMsUQ3djIKA9iXMTHa7BwrEBqKOhxXmnr4NRQIaFJvT2SUBCUtrUtUxNYwrvb8dKYPz2NY3upQNzV0t3hhiYR5bQ6dxoOAQfQiXhVtBLUQMKx51Tib6f2NXDy+OTgF17OxlJeJilZuAT7jAf9xHfSFP1iww15dzoexo/h8pfV5UsIRUxBFjgSZneTVt4+tVJK7Fw3gXha/KrA94VxlibXIhY1FjQ="
|
|
5
|
+
iv="data:application/octet-stream;base64,9LFdWn/mCmdKKnSe"
|
|
6
|
+
salt="data:application/octet-stream;base64,uhJ+FIhdsapUlt0TG7zdNQ=="
|
|
7
|
+
>
|
|
8
|
+
<webwriter-task-prompt
|
|
9
|
+
class="ww-widget ww-v1.0.6-local"
|
|
10
|
+
id="ww-93746971-3523-4ffa-a00c-154ab29805d4"
|
|
11
|
+
slot="prompt"
|
|
12
|
+
>
|
|
13
|
+
<p>Ordne die Tiere absteigend nach ihrer Größe!</p>
|
|
14
|
+
</webwriter-task-prompt>
|
|
15
|
+
<webwriter-order
|
|
16
|
+
class="ww-widget ww-v1.0.6-local"
|
|
17
|
+
id="ww-e90b3acd-887f-4278-9a96-da59338033cd"
|
|
18
|
+
>
|
|
19
|
+
<webwriter-order-item
|
|
20
|
+
class="ww-widget ww-v1.0.6-local"
|
|
21
|
+
draggable="true"
|
|
22
|
+
id="ww-88b734b1-4bde-4ffd-9f16-40a1dd5dc0a5"
|
|
23
|
+
layout="list"
|
|
24
|
+
>
|
|
25
|
+
<p>Mensch</p>
|
|
26
|
+
</webwriter-order-item>
|
|
27
|
+
<webwriter-order-item
|
|
28
|
+
class="ww-widget ww-v1.0.6-local"
|
|
29
|
+
draggable="true"
|
|
30
|
+
id="ww-08b84571-cb72-4ca2-9fe1-72bf7c8c6394"
|
|
31
|
+
layout="list"
|
|
32
|
+
>
|
|
33
|
+
<p>Hamster</p>
|
|
34
|
+
</webwriter-order-item>
|
|
35
|
+
<webwriter-order-item
|
|
36
|
+
class="ww-widget ww-v1.0.6-local"
|
|
37
|
+
draggable="true"
|
|
38
|
+
id="ww-d5bd5831-9d73-453a-a377-63861e73953e"
|
|
39
|
+
layout="list"
|
|
40
|
+
>
|
|
41
|
+
<p>Ameise</p>
|
|
42
|
+
</webwriter-order-item>
|
|
43
|
+
<webwriter-order-item
|
|
44
|
+
class="ww-widget ww-v1.0.6-local"
|
|
45
|
+
draggable="true"
|
|
46
|
+
id="ww-5d76bec6-35f1-4f30-bfff-56136fed3fab"
|
|
47
|
+
layout="list"
|
|
48
|
+
>
|
|
49
|
+
<p>Bärtierchen</p>
|
|
50
|
+
</webwriter-order-item>
|
|
51
|
+
</webwriter-order>
|
|
52
|
+
</webwriter-task>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<webwriter-task
|
|
2
|
+
class="ww-widget ww-v1.0.6-local"
|
|
3
|
+
id="ww-53692699-0dc3-46b5-90b6-b2a24eaf372d"
|
|
4
|
+
solution="data:application/octet-stream;base64,UIJ61afPKfdX4WsmgNwlZAoD1H0+FdhqQkKY37d+im4h"
|
|
5
|
+
iv="data:application/octet-stream;base64,1Nid4IukVZEjN8If"
|
|
6
|
+
salt="data:application/octet-stream;base64,+eEKmHuNtNcgomgGbgNWew=="
|
|
7
|
+
>
|
|
8
|
+
<webwriter-task-prompt
|
|
9
|
+
class="ww-widget ww-v1.0.6-local"
|
|
10
|
+
id="ww-79d0713b-f910-4557-8f80-621bfd03a3ca"
|
|
11
|
+
slot="prompt"
|
|
12
|
+
>
|
|
13
|
+
<p>Wie hieß der erste Bundeskanzler der Bundesrepublik Deutschland?</p>
|
|
14
|
+
</webwriter-task-prompt>
|
|
15
|
+
<webwriter-text
|
|
16
|
+
class="ww-widget ww-v1.0.6-local"
|
|
17
|
+
id="ww-0fcb1fa8-0f98-40d9-96db-b23f633e4c53"
|
|
18
|
+
type="long-text"
|
|
19
|
+
></webwriter-text>
|
|
20
|
+
</webwriter-task>
|
package/src/snippets/choice.html
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-choice>
|
|
4
|
-
<webwriter-choice-item>
|
|
5
|
-
<p></p>
|
|
6
|
-
</webwriter-choice-item>
|
|
7
|
-
</webwriter-choice>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-choice>
|
|
4
|
+
<webwriter-choice-item>
|
|
5
|
+
<p></p>
|
|
6
|
+
</webwriter-choice-item>
|
|
7
|
+
</webwriter-choice>
|
|
8
8
|
</webwriter-task>
|
package/src/snippets/cloze.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-cloze><p></p></webwriter-cloze>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-cloze><p></p></webwriter-cloze>
|
|
4
4
|
</webwriter-task>
|
package/src/snippets/mark.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-mark><p></p></webwriter-mark>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-mark><p></p></webwriter-mark>
|
|
4
4
|
</webwriter-task>
|
package/src/snippets/order.html
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-order>
|
|
4
|
-
<webwriter-order-item>
|
|
5
|
-
<p></p>
|
|
6
|
-
</webwriter-order-item>
|
|
7
|
-
</webwriter-order>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-order>
|
|
4
|
+
<webwriter-order-item>
|
|
5
|
+
<p></p>
|
|
6
|
+
</webwriter-order-item>
|
|
7
|
+
</webwriter-order>
|
|
8
8
|
</webwriter-task>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-pairing>
|
|
4
|
-
<webwriter-pairing-item>
|
|
5
|
-
<picture>
|
|
6
|
-
<img>
|
|
7
|
-
</picture>
|
|
8
|
-
</webwriter-pairing-item>
|
|
9
|
-
</webwriter-pairing>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-pairing>
|
|
4
|
+
<webwriter-pairing-item>
|
|
5
|
+
<picture>
|
|
6
|
+
<img>
|
|
7
|
+
</picture>
|
|
8
|
+
</webwriter-pairing-item>
|
|
9
|
+
</webwriter-pairing>
|
|
10
10
|
</webwriter-task>
|
package/src/snippets/speech.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-speech></webwriter-speech>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-speech></webwriter-speech>
|
|
4
4
|
</webwriter-task>
|
package/src/snippets/text.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-text></webwriter-text>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-text></webwriter-text>
|
|
4
4
|
</webwriter-task>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<webwriter-task>
|
|
2
|
-
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
-
<webwriter-wordsearch></webwriter-wordsearch>
|
|
1
|
+
<webwriter-task>
|
|
2
|
+
<webwriter-task-prompt slot="prompt"><p></p></webwriter-task-prompt>
|
|
3
|
+
<webwriter-wordsearch></webwriter-wordsearch>
|
|
4
4
|
</webwriter-task>
|