@webwriter/quiz 1.1.2 → 1.1.5
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/.github/workflows/publish.yml +8 -0
- package/LICENSE +6 -6
- package/custom.d.ts +175 -175
- package/dist/widgets/webwriter-choice-item.js +69 -205
- package/dist/widgets/webwriter-choice.js +99 -214
- package/dist/widgets/webwriter-cloze-gap.js +74 -213
- package/dist/widgets/webwriter-cloze.js +71 -204
- package/dist/widgets/webwriter-mark.js +72 -205
- package/dist/widgets/webwriter-order-item.js +68 -201
- package/dist/widgets/webwriter-order.js +99 -209
- package/dist/widgets/webwriter-pairing-item.js +57 -160
- package/dist/widgets/webwriter-pairing.js +69 -196
- package/dist/widgets/webwriter-quiz.js +72 -211
- package/dist/widgets/webwriter-speech.js +71 -204
- package/dist/widgets/webwriter-task-explainer.js +57 -160
- package/dist/widgets/webwriter-task-hint.js +55 -158
- package/dist/widgets/webwriter-task-prompt.js +61 -170
- package/dist/widgets/webwriter-task.js +80 -205
- package/dist/widgets/webwriter-text.js +94 -205
- package/lit-localize.json +14 -14
- package/localization/bg.xlf +72 -69
- package/localization/cs.xlf +72 -69
- package/localization/da.xlf +72 -69
- package/localization/de.xlf +77 -74
- package/localization/el.xlf +72 -69
- package/localization/es.xlf +72 -69
- package/localization/et.xlf +72 -69
- package/localization/fi.xlf +72 -69
- package/localization/fr.xlf +72 -69
- package/localization/generated/bg.ts +30 -29
- package/localization/generated/cs.ts +30 -29
- package/localization/generated/da.ts +30 -29
- package/localization/generated/de.ts +30 -29
- package/localization/generated/el.ts +30 -29
- package/localization/generated/es.ts +30 -29
- package/localization/generated/et.ts +30 -29
- package/localization/generated/fi.ts +30 -29
- package/localization/generated/fr.ts +30 -29
- package/localization/generated/hu.ts +30 -29
- package/localization/generated/id.ts +30 -29
- package/localization/generated/index.js +2 -2
- package/localization/generated/it.ts +30 -29
- package/localization/generated/ja.ts +30 -29
- package/localization/generated/ko.ts +30 -29
- package/localization/generated/locale-codes.js +79 -79
- package/localization/generated/lt.ts +30 -29
- package/localization/generated/lv.ts +30 -29
- package/localization/generated/nb.ts +30 -29
- package/localization/generated/nl.ts +30 -29
- package/localization/generated/pl.ts +30 -29
- package/localization/generated/pt-BR.ts +30 -29
- package/localization/generated/pt-PT.ts +30 -29
- package/localization/generated/ro.ts +30 -29
- package/localization/generated/ru.ts +30 -29
- package/localization/generated/sk.ts +30 -29
- package/localization/generated/sl.ts +30 -29
- package/localization/generated/sv.ts +30 -29
- package/localization/generated/tr.ts +30 -29
- package/localization/generated/uk.ts +30 -29
- package/localization/generated/zh-hans.ts +30 -29
- package/localization/hu.xlf +72 -69
- package/localization/id.xlf +72 -69
- package/localization/it.xlf +72 -69
- package/localization/ja.xlf +72 -69
- package/localization/ko.xlf +72 -69
- package/localization/lt.xlf +72 -69
- package/localization/lv.xlf +72 -69
- package/localization/nb.xlf +72 -69
- package/localization/nl.xlf +72 -69
- package/localization/pl.xlf +72 -69
- package/localization/pt-BR.xlf +72 -69
- package/localization/pt-PT.xlf +72 -69
- package/localization/ro.xlf +72 -69
- package/localization/ru.xlf +72 -69
- package/localization/sk.xlf +72 -69
- package/localization/sl.xlf +72 -69
- package/localization/sv.xlf +72 -69
- package/localization/tr.xlf +72 -69
- package/localization/uk.xlf +72 -69
- package/localization/zh-hans.xlf +72 -69
- package/package.json +4 -3
- package/src/lib/combobox.ts +455 -455
- package/src/lib/highlighter-fill.svg +5 -5
- package/src/snippets/Beispiel-Choice.html +57 -57
- package/src/snippets/Beispiel-Mark.html +13 -13
- package/src/snippets/Beispiel-Order.html +52 -52
- package/src/snippets/Beispiel-Text.html +20 -20
- 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 +256 -253
- package/src/widgets/webwriter-choice.ts +352 -336
- package/src/widgets/webwriter-cloze-gap.ts +215 -215
- package/src/widgets/webwriter-cloze.ts +135 -135
- package/src/widgets/webwriter-mark.ts +431 -431
- package/src/widgets/webwriter-order-item.ts +440 -440
- package/src/widgets/webwriter-order.ts +326 -309
- package/src/widgets/webwriter-pairing-item.ts +160 -160
- package/src/widgets/webwriter-pairing.ts +192 -192
- package/src/widgets/webwriter-quiz.ts +281 -281
- package/src/widgets/webwriter-speech.ts +272 -272
- package/src/widgets/webwriter-task-explainer.ts +42 -42
- package/src/widgets/webwriter-task-hint.ts +22 -22
- package/src/widgets/webwriter-task-prompt.ts +23 -23
- package/src/widgets/webwriter-task.ts +554 -546
- package/src/widgets/webwriter-text.ts +176 -155
- package/tsconfig.json +6 -6
|
@@ -82,6 +82,7 @@ var init_bg = __esm({
|
|
|
82
82
|
"sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442 \u0437\u0430 \u0434\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u0438`,
|
|
83
83
|
"scd1dd6ff53d0d01a": `\u041E\u043F\u0438\u0442\u0430\u0439\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E`,
|
|
84
84
|
"sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u043E\u0442\u0433\u043E\u0432\u043E\u0440\u0438\u0442\u0435 \u0441\u0438`,
|
|
85
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
85
86
|
"sb0aadaa04e658ad6": `Choice`,
|
|
86
87
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
87
88
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -112,6 +113,7 @@ var init_cs = __esm({
|
|
|
112
113
|
"sc56e9323f076a11e": `Text, do kter\xE9ho se p\u0159id\xE1vaj\xED mezery`,
|
|
113
114
|
"scd1dd6ff53d0d01a": `Zkuste to znovu`,
|
|
114
115
|
"sd26e8d4eef55e341": `Zkontrolujte sv\xE9 odpov\u011Bdi`,
|
|
116
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
115
117
|
"sb0aadaa04e658ad6": `Choice`,
|
|
116
118
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
117
119
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -142,6 +144,7 @@ var init_da = __esm({
|
|
|
142
144
|
"sc56e9323f076a11e": `Tekst til at tilf\xF8je mellemrum til`,
|
|
143
145
|
"scd1dd6ff53d0d01a": `Pr\xF8v igen`,
|
|
144
146
|
"sd26e8d4eef55e341": `Tjek dine svar`,
|
|
147
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
145
148
|
"sb0aadaa04e658ad6": `Choice`,
|
|
146
149
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
147
150
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -176,7 +179,8 @@ var init_de = __esm({
|
|
|
176
179
|
"sb3d4f79d9d8b71e5": `Einreichen`,
|
|
177
180
|
"sc56e9323f076a11e": `Text zum Hinzuf\xFCgen von L\xFCcken`,
|
|
178
181
|
"scd1dd6ff53d0d01a": `Erneut versuchen`,
|
|
179
|
-
"sd26e8d4eef55e341": `\xDCberpr\xFCfen Sie Ihre Antworten
|
|
182
|
+
"sd26e8d4eef55e341": `\xDCberpr\xFCfen Sie Ihre Antworten`,
|
|
183
|
+
"saf8b589e65febbd2": `Save answer`
|
|
180
184
|
};
|
|
181
185
|
}
|
|
182
186
|
});
|
|
@@ -202,6 +206,7 @@ var init_el = __esm({
|
|
|
202
206
|
"sc56e9323f076a11e": `\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03C4\u03B5 \u03BA\u03B5\u03BD\u03AC`,
|
|
203
207
|
"scd1dd6ff53d0d01a": `\u0394\u03BF\u03BA\u03B9\u03BC\u03AC\u03C3\u03C4\u03B5 \u03BE\u03B1\u03BD\u03AC`,
|
|
204
208
|
"sd26e8d4eef55e341": `\u0395\u03BB\u03AD\u03B3\u03BE\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03B1\u03C2`,
|
|
209
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
205
210
|
"sb0aadaa04e658ad6": `Choice`,
|
|
206
211
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
207
212
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -232,6 +237,7 @@ var init_es = __esm({
|
|
|
232
237
|
"sc56e9323f076a11e": `Texto al que a\xF1adir huecos`,
|
|
233
238
|
"scd1dd6ff53d0d01a": `Int\xE9ntalo de nuevo`,
|
|
234
239
|
"sd26e8d4eef55e341": `Comprueba tus respuestas`,
|
|
240
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
235
241
|
"sb0aadaa04e658ad6": `Choice`,
|
|
236
242
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
237
243
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -262,6 +268,7 @@ var init_et = __esm({
|
|
|
262
268
|
"sc56e9323f076a11e": `Tekst, millele lisada l\xFCngad`,
|
|
263
269
|
"scd1dd6ff53d0d01a": `Proovi uuesti`,
|
|
264
270
|
"sd26e8d4eef55e341": `Kontrollige oma vastuseid`,
|
|
271
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
265
272
|
"sb0aadaa04e658ad6": `Choice`,
|
|
266
273
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
267
274
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -292,6 +299,7 @@ var init_fi = __esm({
|
|
|
292
299
|
"sc56e9323f076a11e": `Teksti, johon lis\xE4t\xE4\xE4n aukkoja`,
|
|
293
300
|
"scd1dd6ff53d0d01a": `Yrit\xE4 uudelleen`,
|
|
294
301
|
"sd26e8d4eef55e341": `Tarkista vastauksesi`,
|
|
302
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
295
303
|
"sb0aadaa04e658ad6": `Choice`,
|
|
296
304
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
297
305
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -322,6 +330,7 @@ var init_fr = __esm({
|
|
|
322
330
|
"sc56e9323f076a11e": `Texte \xE0 ajouter aux lacunes`,
|
|
323
331
|
"scd1dd6ff53d0d01a": `R\xE9essayer`,
|
|
324
332
|
"sd26e8d4eef55e341": `V\xE9rifiez vos r\xE9ponses`,
|
|
333
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
325
334
|
"sb0aadaa04e658ad6": `Choice`,
|
|
326
335
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
327
336
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -352,6 +361,7 @@ var init_hu = __esm({
|
|
|
352
361
|
"sc56e9323f076a11e": `H\xE9zagok hozz\xE1ad\xE1s\xE1ra szolg\xE1l\xF3 sz\xF6veg`,
|
|
353
362
|
"scd1dd6ff53d0d01a": `Pr\xF3b\xE1lja \xFAjra`,
|
|
354
363
|
"sd26e8d4eef55e341": `Ellen\u0151rizze v\xE1laszait`,
|
|
364
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
355
365
|
"sb0aadaa04e658ad6": `Choice`,
|
|
356
366
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
357
367
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -382,6 +392,7 @@ var init_id = __esm({
|
|
|
382
392
|
"sc56e9323f076a11e": `Teks yang akan ditambahkan celah`,
|
|
383
393
|
"scd1dd6ff53d0d01a": `Coba lagi`,
|
|
384
394
|
"sd26e8d4eef55e341": `Periksa jawaban Anda`,
|
|
395
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
385
396
|
"sb0aadaa04e658ad6": `Choice`,
|
|
386
397
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
387
398
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -412,6 +423,7 @@ var init_it = __esm({
|
|
|
412
423
|
"sc56e9323f076a11e": `Testo a cui aggiungere spazi vuoti`,
|
|
413
424
|
"scd1dd6ff53d0d01a": `Riprova`,
|
|
414
425
|
"sd26e8d4eef55e341": `Controllare le risposte`,
|
|
426
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
415
427
|
"sb0aadaa04e658ad6": `Choice`,
|
|
416
428
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
417
429
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -442,6 +454,7 @@ var init_ja = __esm({
|
|
|
442
454
|
"sc56e9323f076a11e": `\u30AE\u30E3\u30C3\u30D7\u3092\u8FFD\u52A0\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
|
|
443
455
|
"scd1dd6ff53d0d01a": `\u518D\u8A66\u884C`,
|
|
444
456
|
"sd26e8d4eef55e341": `\u7B54\u3048\u3092\u30C1\u30A7\u30C3\u30AF\u3059\u308B`,
|
|
457
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
445
458
|
"sb0aadaa04e658ad6": `Choice`,
|
|
446
459
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
447
460
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -472,6 +485,7 @@ var init_ko = __esm({
|
|
|
472
485
|
"sc56e9323f076a11e": `\uACF5\uBC31\uC744 \uCD94\uAC00\uD560 \uD14D\uC2A4\uD2B8`,
|
|
473
486
|
"scd1dd6ff53d0d01a": `\uB2E4\uC2DC \uC2DC\uB3C4`,
|
|
474
487
|
"sd26e8d4eef55e341": `\uB2F5\uBCC0 \uD655\uC778`,
|
|
488
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
475
489
|
"sb0aadaa04e658ad6": `Choice`,
|
|
476
490
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
477
491
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -502,6 +516,7 @@ var init_lt = __esm({
|
|
|
502
516
|
"sc56e9323f076a11e": `Tekstas, prie kurio pridedami tarpai`,
|
|
503
517
|
"scd1dd6ff53d0d01a": `Pabandykite dar kart\u0105`,
|
|
504
518
|
"sd26e8d4eef55e341": `Patikrinkite savo atsakymus`,
|
|
519
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
505
520
|
"sb0aadaa04e658ad6": `Choice`,
|
|
506
521
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
507
522
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -532,6 +547,7 @@ var init_lv = __esm({
|
|
|
532
547
|
"sc56e9323f076a11e": `Teksts, kam pievienot atstarpes`,
|
|
533
548
|
"scd1dd6ff53d0d01a": `M\u0113\u0123iniet v\u0113lreiz`,
|
|
534
549
|
"sd26e8d4eef55e341": `P\u0101rbaudiet savas atbildes`,
|
|
550
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
535
551
|
"sb0aadaa04e658ad6": `Choice`,
|
|
536
552
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
537
553
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -562,6 +578,7 @@ var init_nb = __esm({
|
|
|
562
578
|
"sc56e9323f076a11e": `Tekst for \xE5 legge til mellomrom`,
|
|
563
579
|
"scd1dd6ff53d0d01a": `Pr\xF8v igjen`,
|
|
564
580
|
"sd26e8d4eef55e341": `Sjekk svarene dine`,
|
|
581
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
565
582
|
"sb0aadaa04e658ad6": `Choice`,
|
|
566
583
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
567
584
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -592,6 +609,7 @@ var init_nl = __esm({
|
|
|
592
609
|
"sc56e9323f076a11e": `Tekst om gaten aan toe te voegen`,
|
|
593
610
|
"scd1dd6ff53d0d01a": `Probeer het opnieuw`,
|
|
594
611
|
"sd26e8d4eef55e341": `Controleer je antwoorden`,
|
|
612
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
595
613
|
"sb0aadaa04e658ad6": `Choice`,
|
|
596
614
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
597
615
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -622,6 +640,7 @@ var init_pl = __esm({
|
|
|
622
640
|
"sc56e9323f076a11e": `Tekst do dodania przerw`,
|
|
623
641
|
"scd1dd6ff53d0d01a": `Spr\xF3buj ponownie`,
|
|
624
642
|
"sd26e8d4eef55e341": `Sprawd\u017A swoje odpowiedzi`,
|
|
643
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
625
644
|
"sb0aadaa04e658ad6": `Choice`,
|
|
626
645
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
627
646
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -652,6 +671,7 @@ var init_pt_BR = __esm({
|
|
|
652
671
|
"sc56e9323f076a11e": `Texto para adicionar lacunas`,
|
|
653
672
|
"scd1dd6ff53d0d01a": `Tente novamente`,
|
|
654
673
|
"sd26e8d4eef55e341": `Verifique suas respostas`,
|
|
674
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
655
675
|
"sb0aadaa04e658ad6": `Choice`,
|
|
656
676
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
657
677
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -682,6 +702,7 @@ var init_pt_PT = __esm({
|
|
|
682
702
|
"sc56e9323f076a11e": `Texto para adicionar lacunas`,
|
|
683
703
|
"scd1dd6ff53d0d01a": `Tentar novamente`,
|
|
684
704
|
"sd26e8d4eef55e341": `Verifique as suas respostas`,
|
|
705
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
685
706
|
"sb0aadaa04e658ad6": `Choice`,
|
|
686
707
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
687
708
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -712,6 +733,7 @@ var init_ro = __esm({
|
|
|
712
733
|
"sc56e9323f076a11e": `Text la care s\u0103 ad\u0103uga\u021Bi spa\u021Bii libere`,
|
|
713
734
|
"scd1dd6ff53d0d01a": `\xCEncerca\u021Bi din nou`,
|
|
714
735
|
"sd26e8d4eef55e341": `Verific\u0103-\u021Bi r\u0103spunsurile`,
|
|
736
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
715
737
|
"sb0aadaa04e658ad6": `Choice`,
|
|
716
738
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
717
739
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -742,6 +764,7 @@ var init_ru = __esm({
|
|
|
742
764
|
"sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u043F\u0440\u043E\u0431\u0435\u043B\u043E\u0432`,
|
|
743
765
|
"scd1dd6ff53d0d01a": `\u041F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437`,
|
|
744
766
|
"sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0441\u0432\u043E\u0438 \u043E\u0442\u0432\u0435\u0442\u044B`,
|
|
767
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
745
768
|
"sb0aadaa04e658ad6": `Choice`,
|
|
746
769
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
747
770
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -772,6 +795,7 @@ var init_sk = __esm({
|
|
|
772
795
|
"sc56e9323f076a11e": `Text na pridanie medzier`,
|
|
773
796
|
"scd1dd6ff53d0d01a": `Sk\xFAste to znova`,
|
|
774
797
|
"sd26e8d4eef55e341": `Skontrolujte svoje odpovede`,
|
|
798
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
775
799
|
"sb0aadaa04e658ad6": `Choice`,
|
|
776
800
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
777
801
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -802,6 +826,7 @@ var init_sl = __esm({
|
|
|
802
826
|
"sc56e9323f076a11e": `Besedilo za dodajanje presledkov`,
|
|
803
827
|
"scd1dd6ff53d0d01a": `Poskusite znova`,
|
|
804
828
|
"sd26e8d4eef55e341": `Preverite svoje odgovore`,
|
|
829
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
805
830
|
"sb0aadaa04e658ad6": `Choice`,
|
|
806
831
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
807
832
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -832,6 +857,7 @@ var init_sv = __esm({
|
|
|
832
857
|
"sc56e9323f076a11e": `Text att l\xE4gga till luckor i`,
|
|
833
858
|
"scd1dd6ff53d0d01a": `F\xF6rs\xF6k igen`,
|
|
834
859
|
"sd26e8d4eef55e341": `Kontrollera dina svar`,
|
|
860
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
835
861
|
"sb0aadaa04e658ad6": `Choice`,
|
|
836
862
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
837
863
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -862,6 +888,7 @@ var init_tr = __esm({
|
|
|
862
888
|
"sc56e9323f076a11e": `Bo\u015Fluk eklenecek metin`,
|
|
863
889
|
"scd1dd6ff53d0d01a": `Tekrar deneyin`,
|
|
864
890
|
"sd26e8d4eef55e341": `Cevaplar\u0131n\u0131z\u0131 kontrol edin`,
|
|
891
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
865
892
|
"sb0aadaa04e658ad6": `Choice`,
|
|
866
893
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
867
894
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -892,6 +919,7 @@ var init_uk = __esm({
|
|
|
892
919
|
"sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442, \u0434\u043E \u044F\u043A\u043E\u0433\u043E \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u0434\u043E\u0434\u0430\u0442\u0438 \u043F\u0440\u043E\u0431\u0456\u043B\u0438`,
|
|
893
920
|
"scd1dd6ff53d0d01a": `\u0421\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0449\u0435 \u0440\u0430\u0437.`,
|
|
894
921
|
"sd26e8d4eef55e341": `\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0441\u0432\u043E\u0457 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0456`,
|
|
922
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
895
923
|
"sb0aadaa04e658ad6": `Choice`,
|
|
896
924
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
897
925
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -922,6 +950,7 @@ var init_zh_hans = __esm({
|
|
|
922
950
|
"sc56e9323f076a11e": `\u4E3A\u6587\u672C\u6DFB\u52A0\u95F4\u9699`,
|
|
923
951
|
"scd1dd6ff53d0d01a": `\u518D\u8BD5\u4E00\u6B21`,
|
|
924
952
|
"sd26e8d4eef55e341": `\u68C0\u67E5\u7B54\u6848`,
|
|
953
|
+
"saf8b589e65febbd2": `Save answer`,
|
|
925
954
|
"sb0aadaa04e658ad6": `Choice`,
|
|
926
955
|
"s2ba5f4d8f3bd7c57": `Order`,
|
|
927
956
|
"s2492f5fb1b05b45e": `Text`,
|
|
@@ -956,15 +985,15 @@ var n = class {
|
|
|
956
985
|
};
|
|
957
986
|
var r = (t7) => new n("string" == typeof t7 ? t7 : t7 + "", void 0, s);
|
|
958
987
|
var i = (t7, ...e10) => {
|
|
959
|
-
const o9 = 1 === t7.length ? t7[0] : e10.reduce((e11, s4, o10) => e11 + ((t8) => {
|
|
988
|
+
const o9 = 1 === t7.length ? t7[0] : e10.reduce(((e11, s4, o10) => e11 + ((t8) => {
|
|
960
989
|
if (true === t8._$cssResult$) return t8.cssText;
|
|
961
990
|
if ("number" == typeof t8) return t8;
|
|
962
991
|
throw Error("Value passed to 'css' function must be a 'css' function result: " + t8 + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
|
|
963
|
-
})(s4) + t7[o10 + 1], t7[0]);
|
|
992
|
+
})(s4) + t7[o10 + 1]), t7[0]);
|
|
964
993
|
return new n(o9, t7, s);
|
|
965
994
|
};
|
|
966
995
|
var S = (s4, o9) => {
|
|
967
|
-
if (e) s4.adoptedStyleSheets = o9.map((t7) => t7 instanceof CSSStyleSheet ? t7 : t7.styleSheet);
|
|
996
|
+
if (e) s4.adoptedStyleSheets = o9.map(((t7) => t7 instanceof CSSStyleSheet ? t7 : t7.styleSheet));
|
|
968
997
|
else for (const e10 of o9) {
|
|
969
998
|
const o10 = document.createElement("style"), n7 = t.litNonce;
|
|
970
999
|
void 0 !== n7 && o10.setAttribute("nonce", n7), o10.textContent = e10.cssText, s4.appendChild(o10);
|
|
@@ -1083,7 +1112,7 @@ var b = class extends HTMLElement {
|
|
|
1083
1112
|
super(), this._$Ep = void 0, this.isUpdatePending = false, this.hasUpdated = false, this._$Em = null, this._$Ev();
|
|
1084
1113
|
}
|
|
1085
1114
|
_$Ev() {
|
|
1086
|
-
this._$ES = new Promise((t7) => this.enableUpdating = t7), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t7) => t7(this));
|
|
1115
|
+
this._$ES = new Promise(((t7) => this.enableUpdating = t7)), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach(((t7) => t7(this)));
|
|
1087
1116
|
}
|
|
1088
1117
|
addController(t7) {
|
|
1089
1118
|
(this._$EO ??= /* @__PURE__ */ new Set()).add(t7), void 0 !== this.renderRoot && this.isConnected && t7.hostConnected?.();
|
|
@@ -1101,12 +1130,12 @@ var b = class extends HTMLElement {
|
|
|
1101
1130
|
return S(t7, this.constructor.elementStyles), t7;
|
|
1102
1131
|
}
|
|
1103
1132
|
connectedCallback() {
|
|
1104
|
-
this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t7) => t7.hostConnected?.());
|
|
1133
|
+
this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach(((t7) => t7.hostConnected?.()));
|
|
1105
1134
|
}
|
|
1106
1135
|
enableUpdating(t7) {
|
|
1107
1136
|
}
|
|
1108
1137
|
disconnectedCallback() {
|
|
1109
|
-
this._$EO?.forEach((t7) => t7.hostDisconnected?.());
|
|
1138
|
+
this._$EO?.forEach(((t7) => t7.hostDisconnected?.()));
|
|
1110
1139
|
}
|
|
1111
1140
|
attributeChangedCallback(t7, s4, i7) {
|
|
1112
1141
|
this._$AK(t7, i7);
|
|
@@ -1161,7 +1190,7 @@ var b = class extends HTMLElement {
|
|
|
1161
1190
|
let t7 = false;
|
|
1162
1191
|
const s4 = this._$AL;
|
|
1163
1192
|
try {
|
|
1164
|
-
t7 = this.shouldUpdate(s4), t7 ? (this.willUpdate(s4), this._$EO?.forEach((t8) => t8.hostUpdate?.()), this.update(s4)) : this._$EU();
|
|
1193
|
+
t7 = this.shouldUpdate(s4), t7 ? (this.willUpdate(s4), this._$EO?.forEach(((t8) => t8.hostUpdate?.())), this.update(s4)) : this._$EU();
|
|
1165
1194
|
} catch (s5) {
|
|
1166
1195
|
throw t7 = false, this._$EU(), s5;
|
|
1167
1196
|
}
|
|
@@ -1170,7 +1199,7 @@ var b = class extends HTMLElement {
|
|
|
1170
1199
|
willUpdate(t7) {
|
|
1171
1200
|
}
|
|
1172
1201
|
_$AE(t7) {
|
|
1173
|
-
this._$EO?.forEach((t8) => t8.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t7)), this.updated(t7);
|
|
1202
|
+
this._$EO?.forEach(((t8) => t8.hostUpdated?.())), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t7)), this.updated(t7);
|
|
1174
1203
|
}
|
|
1175
1204
|
_$EU() {
|
|
1176
1205
|
this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = false;
|
|
@@ -1185,7 +1214,7 @@ var b = class extends HTMLElement {
|
|
|
1185
1214
|
return true;
|
|
1186
1215
|
}
|
|
1187
1216
|
update(t7) {
|
|
1188
|
-
this._$Ej &&= this._$Ej.forEach((t8) => this._$EC(t8, this[t8])), this._$EU();
|
|
1217
|
+
this._$Ej &&= this._$Ej.forEach(((t8) => this._$EC(t8, this[t8]))), this._$EU();
|
|
1189
1218
|
}
|
|
1190
1219
|
updated(t7) {
|
|
1191
1220
|
}
|
|
@@ -2259,9 +2288,9 @@ __publicField2(LitElementWw, "actions", {});
|
|
|
2259
2288
|
|
|
2260
2289
|
// node_modules/@lit/reactive-element/decorators/custom-element.js
|
|
2261
2290
|
var t4 = (t7) => (e10, o9) => {
|
|
2262
|
-
void 0 !== o9 ? o9.addInitializer(() => {
|
|
2291
|
+
void 0 !== o9 ? o9.addInitializer((() => {
|
|
2263
2292
|
customElements.define(t7, e10);
|
|
2264
|
-
}) : customElements.define(t7, e10);
|
|
2293
|
+
})) : customElements.define(t7, e10);
|
|
2265
2294
|
};
|
|
2266
2295
|
|
|
2267
2296
|
// node_modules/@lit/reactive-element/decorators/property.js
|
|
@@ -2332,7 +2361,7 @@ function o6(o9) {
|
|
|
2332
2361
|
const { slot: r8, selector: s4 } = o9 ?? {}, c6 = "slot" + (r8 ? `[name=${r8}]` : ":not([name])");
|
|
2333
2362
|
return e5(e10, n7, { get() {
|
|
2334
2363
|
const t7 = this.renderRoot?.querySelector(c6), e11 = t7?.assignedElements(o9) ?? [];
|
|
2335
|
-
return void 0 === s4 ? e11 : e11.filter((t8) => t8.matches(s4));
|
|
2364
|
+
return void 0 === s4 ? e11 : e11.filter(((t8) => t8.matches(s4)));
|
|
2336
2365
|
} });
|
|
2337
2366
|
};
|
|
2338
2367
|
}
|
|
@@ -4024,11 +4053,11 @@ var e9 = e8(class extends i5 {
|
|
|
4024
4053
|
if (super(t7), t7.type !== t6.ATTRIBUTE || "class" !== t7.name || t7.strings?.length > 2) throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.");
|
|
4025
4054
|
}
|
|
4026
4055
|
render(t7) {
|
|
4027
|
-
return " " + Object.keys(t7).filter((s4) => t7[s4]).join(" ") + " ";
|
|
4056
|
+
return " " + Object.keys(t7).filter(((s4) => t7[s4])).join(" ") + " ";
|
|
4028
4057
|
}
|
|
4029
4058
|
update(s4, [i7]) {
|
|
4030
4059
|
if (void 0 === this.st) {
|
|
4031
|
-
this.st = /* @__PURE__ */ new Set(), void 0 !== s4.strings && (this.nt = new Set(s4.strings.join(" ").split(/\s/).filter((t7) => "" !== t7)));
|
|
4060
|
+
this.st = /* @__PURE__ */ new Set(), void 0 !== s4.strings && (this.nt = new Set(s4.strings.join(" ").split(/\s/).filter(((t7) => "" !== t7))));
|
|
4032
4061
|
for (const t7 in i7) i7[t7] && !this.nt?.has(t7) && this.st.add(t7);
|
|
4033
4062
|
return this.render(i7);
|
|
4034
4063
|
}
|
|
@@ -4047,11 +4076,11 @@ var a4 = Symbol.for("");
|
|
|
4047
4076
|
var o7 = (t7) => {
|
|
4048
4077
|
if (t7?.r === a4) return t7?._$litStatic$;
|
|
4049
4078
|
};
|
|
4050
|
-
var i6 = (t7, ...r8) => ({ _$litStatic$: r8.reduce((r9, e10, a5) => r9 + ((t8) => {
|
|
4079
|
+
var i6 = (t7, ...r8) => ({ _$litStatic$: r8.reduce(((r9, e10, a5) => r9 + ((t8) => {
|
|
4051
4080
|
if (void 0 !== t8._$litStatic$) return t8._$litStatic$;
|
|
4052
4081
|
throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t8}. Use 'unsafeStatic' to pass non-literal values, but
|
|
4053
4082
|
take care to ensure page security.`);
|
|
4054
|
-
})(e10) + t7[a5 + 1], t7[0]), r: a4 });
|
|
4083
|
+
})(e10) + t7[a5 + 1]), t7[0]), r: a4 });
|
|
4055
4084
|
var l4 = /* @__PURE__ */ new Map();
|
|
4056
4085
|
var n6 = (t7) => (r8, ...e10) => {
|
|
4057
4086
|
const a5 = e10.length;
|
|
@@ -5607,7 +5636,7 @@ var joinStringsAndValues = (strings, values, valueOrder) => {
|
|
|
5607
5636
|
};
|
|
5608
5637
|
|
|
5609
5638
|
// node_modules/@lit/localize/internal/default-msg.js
|
|
5610
|
-
var defaultMsg = (template) => isStrTagged(template) ? joinStringsAndValues(template.strings, template.values) : template;
|
|
5639
|
+
var defaultMsg = ((template) => isStrTagged(template) ? joinStringsAndValues(template.strings, template.values) : template);
|
|
5611
5640
|
|
|
5612
5641
|
// node_modules/@lit/localize/init/install.js
|
|
5613
5642
|
var msg = defaultMsg;
|
|
@@ -5729,7 +5758,7 @@ var loading = new Deferred();
|
|
|
5729
5758
|
loading.resolve();
|
|
5730
5759
|
var requestId = 0;
|
|
5731
5760
|
var configureLocalization = (config) => {
|
|
5732
|
-
_installMsgImplementation((template, options) => runtimeMsg(templates, template, options));
|
|
5761
|
+
_installMsgImplementation(((template, options) => runtimeMsg(templates, template, options)));
|
|
5733
5762
|
activeLocale = sourceLocale2 = config.sourceLocale;
|
|
5734
5763
|
validLocales = new Set(config.targetLocales);
|
|
5735
5764
|
validLocales.add(config.sourceLocale);
|
|
@@ -5845,9 +5874,14 @@ var WebwriterChoice = class extends (_a2 = LitElementWw, _mode_dec = [n5({ type:
|
|
|
5845
5874
|
})], _randomOrder_dec = [n5({ type: Boolean, attribute: true, reflect: true }), option({
|
|
5846
5875
|
type: Boolean,
|
|
5847
5876
|
label: { "en": "Random Choice Order", "de": "Zuf\xE4llige Reihenfolge" }
|
|
5848
|
-
})], _showSolution_dec = [n5({ type:
|
|
5849
|
-
type:
|
|
5850
|
-
label: { "
|
|
5877
|
+
})], _showSolution_dec = [n5({ type: String, attribute: true, reflect: true }), option({
|
|
5878
|
+
type: "select",
|
|
5879
|
+
label: { "de": "L\xF6sung anzeigen", "en": "Show solution" },
|
|
5880
|
+
options: [
|
|
5881
|
+
{ value: "right", label: { "en": "Right answers", "de": "Korrekte Antworten" } },
|
|
5882
|
+
{ value: "both", label: { "en": "all (indicator)", "de": "Alle (Indikator)" } },
|
|
5883
|
+
{ value: "full", label: { "en": "all (conclusive)", "de": "Alle (vollst\xE4ndig)" } }
|
|
5884
|
+
]
|
|
5851
5885
|
})], _slotEl_dec = [e6("slot")], _addItem_dec = [action()], _items_dec = [o6()], _value_dec = [n5({ type: Array, attribute: false })], _itemsSlotEl_dec = [e6("#items-slot")], _a2) {
|
|
5852
5886
|
constructor() {
|
|
5853
5887
|
super(...arguments);
|
|
@@ -5855,7 +5889,7 @@ var WebwriterChoice = class extends (_a2 = LitElementWw, _mode_dec = [n5({ type:
|
|
|
5855
5889
|
__publicField(this, "localize", generated_default);
|
|
5856
5890
|
__privateAdd(this, _mode, __runInitializers(_init2, 8, this, "single")), __runInitializers(_init2, 11, this);
|
|
5857
5891
|
__privateAdd(this, _randomOrder, __runInitializers(_init2, 12, this, false)), __runInitializers(_init2, 15, this);
|
|
5858
|
-
__privateAdd(this, _showSolution, __runInitializers(_init2, 16, this,
|
|
5892
|
+
__privateAdd(this, _showSolution, __runInitializers(_init2, 16, this, "right")), __runInitializers(_init2, 19, this);
|
|
5859
5893
|
__privateAdd(this, _slotEl, __runInitializers(_init2, 20, this)), __runInitializers(_init2, 23, this);
|
|
5860
5894
|
__privateAdd(this, _items, __runInitializers(_init2, 24, this)), __runInitializers(_init2, 27, this);
|
|
5861
5895
|
__privateAdd(this, _value, []);
|
|
@@ -5889,6 +5923,7 @@ var WebwriterChoice = class extends (_a2 = LitElementWw, _mode_dec = [n5({ type:
|
|
|
5889
5923
|
this.items.forEach((item) => value.includes(item.id) ? item.valid = true : null);
|
|
5890
5924
|
}
|
|
5891
5925
|
reportSolution() {
|
|
5926
|
+
console.log(this.solution, this.items);
|
|
5892
5927
|
let itemActive = false;
|
|
5893
5928
|
this.items.forEach((item) => {
|
|
5894
5929
|
itemActive = itemActive || item.active;
|
|
@@ -5905,26 +5940,38 @@ var WebwriterChoice = class extends (_a2 = LitElementWw, _mode_dec = [n5({ type:
|
|
|
5905
5940
|
this.items.forEach((item) => item.valid = true);
|
|
5906
5941
|
return;
|
|
5907
5942
|
}
|
|
5943
|
+
let wrongSolution = false;
|
|
5908
5944
|
this.items.forEach(
|
|
5909
5945
|
(item) => {
|
|
5946
|
+
console.log(!(item.active === item.valid), item.active, item.valid);
|
|
5910
5947
|
item.valid = (this.solution ?? []).includes(item.id);
|
|
5911
|
-
if (item.active != item.valid
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5948
|
+
if (item.active != item.valid) {
|
|
5949
|
+
wrongSolution = true;
|
|
5950
|
+
if (this.showSolution != "full") {
|
|
5951
|
+
this.items.forEach((item2) => {
|
|
5952
|
+
item2.showSolution = false;
|
|
5953
|
+
});
|
|
5954
|
+
}
|
|
5915
5955
|
}
|
|
5916
5956
|
item.style.pointerEvents = "none";
|
|
5917
5957
|
}
|
|
5918
5958
|
);
|
|
5959
|
+
if (wrongSolution) {
|
|
5960
|
+
if (this.showSolution != "right") {
|
|
5961
|
+
this.style.backgroundColor = "#F9B5C4";
|
|
5962
|
+
}
|
|
5963
|
+
} else {
|
|
5964
|
+
this.style.backgroundColor = "#BCE194";
|
|
5965
|
+
}
|
|
5919
5966
|
}
|
|
5920
5967
|
reset() {
|
|
5921
5968
|
this.items.forEach((item) => {
|
|
5922
5969
|
item.valid = void 0;
|
|
5923
5970
|
item.active = false;
|
|
5924
5971
|
item.showSolution = true;
|
|
5925
|
-
item.style.pointerEvents = "auto";
|
|
5972
|
+
item.style.pointerEvents = "auto", this.style.backgroundColor = "";
|
|
5926
5973
|
});
|
|
5927
|
-
this.shuffleItems();
|
|
5974
|
+
if (this.randomOrder) this.shuffleItems();
|
|
5928
5975
|
}
|
|
5929
5976
|
addItem() {
|
|
5930
5977
|
const choiceItem = this.ownerDocument.createElement("webwriter-choice-item");
|
|
@@ -6120,20 +6167,18 @@ export {
|
|
|
6120
6167
|
*)
|
|
6121
6168
|
|
|
6122
6169
|
@lit/reactive-element/reactive-element.js:
|
|
6123
|
-
(**
|
|
6124
|
-
* @license
|
|
6125
|
-
* Copyright 2017 Google LLC
|
|
6126
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6127
|
-
*)
|
|
6128
|
-
|
|
6129
6170
|
lit-html/lit-html.js:
|
|
6130
|
-
(**
|
|
6131
|
-
* @license
|
|
6132
|
-
* Copyright 2017 Google LLC
|
|
6133
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6134
|
-
*)
|
|
6135
|
-
|
|
6136
6171
|
lit-element/lit-element.js:
|
|
6172
|
+
@lit/reactive-element/decorators/custom-element.js:
|
|
6173
|
+
@lit/reactive-element/decorators/property.js:
|
|
6174
|
+
@lit/reactive-element/decorators/state.js:
|
|
6175
|
+
@lit/reactive-element/decorators/event-options.js:
|
|
6176
|
+
@lit/reactive-element/decorators/base.js:
|
|
6177
|
+
@lit/reactive-element/decorators/query.js:
|
|
6178
|
+
@lit/reactive-element/decorators/query-all.js:
|
|
6179
|
+
@lit/reactive-element/decorators/query-async.js:
|
|
6180
|
+
@lit/reactive-element/decorators/query-assigned-nodes.js:
|
|
6181
|
+
lit-html/directive.js:
|
|
6137
6182
|
(**
|
|
6138
6183
|
* @license
|
|
6139
6184
|
* Copyright 2017 Google LLC
|
|
@@ -6256,206 +6301,46 @@ lit-html/is-server.js:
|
|
|
6256
6301
|
*)
|
|
6257
6302
|
*)
|
|
6258
6303
|
|
|
6259
|
-
@lit/reactive-element/decorators/custom-element.js:
|
|
6260
|
-
(**
|
|
6261
|
-
* @license
|
|
6262
|
-
* Copyright 2017 Google LLC
|
|
6263
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6264
|
-
*)
|
|
6265
|
-
|
|
6266
|
-
@lit/reactive-element/decorators/property.js:
|
|
6267
|
-
(**
|
|
6268
|
-
* @license
|
|
6269
|
-
* Copyright 2017 Google LLC
|
|
6270
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6271
|
-
*)
|
|
6272
|
-
|
|
6273
|
-
@lit/reactive-element/decorators/state.js:
|
|
6274
|
-
(**
|
|
6275
|
-
* @license
|
|
6276
|
-
* Copyright 2017 Google LLC
|
|
6277
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6278
|
-
*)
|
|
6279
|
-
|
|
6280
|
-
@lit/reactive-element/decorators/event-options.js:
|
|
6281
|
-
(**
|
|
6282
|
-
* @license
|
|
6283
|
-
* Copyright 2017 Google LLC
|
|
6284
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6285
|
-
*)
|
|
6286
|
-
|
|
6287
|
-
@lit/reactive-element/decorators/base.js:
|
|
6288
|
-
(**
|
|
6289
|
-
* @license
|
|
6290
|
-
* Copyright 2017 Google LLC
|
|
6291
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6292
|
-
*)
|
|
6293
|
-
|
|
6294
|
-
@lit/reactive-element/decorators/query.js:
|
|
6295
|
-
(**
|
|
6296
|
-
* @license
|
|
6297
|
-
* Copyright 2017 Google LLC
|
|
6298
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6299
|
-
*)
|
|
6300
|
-
|
|
6301
|
-
@lit/reactive-element/decorators/query-all.js:
|
|
6302
|
-
(**
|
|
6303
|
-
* @license
|
|
6304
|
-
* Copyright 2017 Google LLC
|
|
6305
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6306
|
-
*)
|
|
6307
|
-
|
|
6308
|
-
@lit/reactive-element/decorators/query-async.js:
|
|
6309
|
-
(**
|
|
6310
|
-
* @license
|
|
6311
|
-
* Copyright 2017 Google LLC
|
|
6312
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6313
|
-
*)
|
|
6314
|
-
|
|
6315
6304
|
@lit/reactive-element/decorators/query-assigned-elements.js:
|
|
6316
|
-
(**
|
|
6317
|
-
* @license
|
|
6318
|
-
* Copyright 2021 Google LLC
|
|
6319
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6320
|
-
*)
|
|
6321
|
-
|
|
6322
|
-
@lit/reactive-element/decorators/query-assigned-nodes.js:
|
|
6323
|
-
(**
|
|
6324
|
-
* @license
|
|
6325
|
-
* Copyright 2017 Google LLC
|
|
6326
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6327
|
-
*)
|
|
6328
|
-
|
|
6329
|
-
lit-html/directive-helpers.js:
|
|
6330
|
-
(**
|
|
6331
|
-
* @license
|
|
6332
|
-
* Copyright 2020 Google LLC
|
|
6333
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6334
|
-
*)
|
|
6335
|
-
|
|
6336
|
-
lit-html/directive.js:
|
|
6337
|
-
(**
|
|
6338
|
-
* @license
|
|
6339
|
-
* Copyright 2017 Google LLC
|
|
6340
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6341
|
-
*)
|
|
6342
|
-
|
|
6343
|
-
lit-html/directives/class-map.js:
|
|
6344
|
-
(**
|
|
6345
|
-
* @license
|
|
6346
|
-
* Copyright 2018 Google LLC
|
|
6347
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6348
|
-
*)
|
|
6349
|
-
|
|
6350
|
-
lit-html/static.js:
|
|
6351
|
-
(**
|
|
6352
|
-
* @license
|
|
6353
|
-
* Copyright 2020 Google LLC
|
|
6354
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6355
|
-
*)
|
|
6356
|
-
|
|
6357
|
-
lit-html/directives/if-defined.js:
|
|
6358
|
-
(**
|
|
6359
|
-
* @license
|
|
6360
|
-
* Copyright 2018 Google LLC
|
|
6361
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6362
|
-
*)
|
|
6363
|
-
|
|
6364
|
-
lit-html/directives/live.js:
|
|
6365
|
-
(**
|
|
6366
|
-
* @license
|
|
6367
|
-
* Copyright 2020 Google LLC
|
|
6368
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6369
|
-
*)
|
|
6370
|
-
|
|
6371
6305
|
@lit/localize/internal/locale-status-event.js:
|
|
6372
|
-
(**
|
|
6373
|
-
* @license
|
|
6374
|
-
* Copyright 2021 Google LLC
|
|
6375
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6376
|
-
*)
|
|
6377
|
-
|
|
6378
6306
|
@lit/localize/internal/str-tag.js:
|
|
6379
|
-
(**
|
|
6380
|
-
* @license
|
|
6381
|
-
* Copyright 2021 Google LLC
|
|
6382
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6383
|
-
*)
|
|
6384
|
-
|
|
6385
6307
|
@lit/localize/internal/types.js:
|
|
6386
|
-
(**
|
|
6387
|
-
* @license
|
|
6388
|
-
* Copyright 2021 Google LLC
|
|
6389
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6390
|
-
*)
|
|
6391
|
-
|
|
6392
6308
|
@lit/localize/internal/default-msg.js:
|
|
6393
|
-
(**
|
|
6394
|
-
* @license
|
|
6395
|
-
* Copyright 2021 Google LLC
|
|
6396
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6397
|
-
*)
|
|
6398
|
-
|
|
6399
6309
|
@lit/localize/internal/localized-controller.js:
|
|
6400
|
-
(**
|
|
6401
|
-
* @license
|
|
6402
|
-
* Copyright 2021 Google LLC
|
|
6403
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6404
|
-
*)
|
|
6405
|
-
|
|
6406
6310
|
@lit/localize/internal/localized-decorator.js:
|
|
6311
|
+
@lit/localize/internal/runtime-msg.js:
|
|
6312
|
+
@lit/localize/init/runtime.js:
|
|
6313
|
+
@lit/localize/init/transform.js:
|
|
6407
6314
|
(**
|
|
6408
6315
|
* @license
|
|
6409
6316
|
* Copyright 2021 Google LLC
|
|
6410
6317
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
6411
6318
|
*)
|
|
6412
6319
|
|
|
6320
|
+
lit-html/directive-helpers.js:
|
|
6321
|
+
lit-html/static.js:
|
|
6322
|
+
lit-html/directives/live.js:
|
|
6413
6323
|
@lit/localize/internal/deferred.js:
|
|
6414
|
-
(**
|
|
6415
|
-
* @license
|
|
6416
|
-
* Copyright 2020 Google LLC
|
|
6417
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6418
|
-
*)
|
|
6419
|
-
|
|
6420
|
-
@lit/localize/internal/fnv1a64.js:
|
|
6421
|
-
(**
|
|
6422
|
-
* @license
|
|
6423
|
-
* Copyright 2014 Travis Webb
|
|
6424
|
-
* SPDX-License-Identifier: MIT
|
|
6425
|
-
*)
|
|
6426
|
-
|
|
6427
6324
|
@lit/localize/internal/id-generation.js:
|
|
6325
|
+
@lit/localize/lit-localize.js:
|
|
6428
6326
|
(**
|
|
6429
6327
|
* @license
|
|
6430
6328
|
* Copyright 2020 Google LLC
|
|
6431
6329
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
6432
6330
|
*)
|
|
6433
6331
|
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
* @license
|
|
6437
|
-
* Copyright 2021 Google LLC
|
|
6438
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6439
|
-
*)
|
|
6440
|
-
|
|
6441
|
-
@lit/localize/init/runtime.js:
|
|
6442
|
-
(**
|
|
6443
|
-
* @license
|
|
6444
|
-
* Copyright 2021 Google LLC
|
|
6445
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
6446
|
-
*)
|
|
6447
|
-
|
|
6448
|
-
@lit/localize/init/transform.js:
|
|
6332
|
+
lit-html/directives/class-map.js:
|
|
6333
|
+
lit-html/directives/if-defined.js:
|
|
6449
6334
|
(**
|
|
6450
6335
|
* @license
|
|
6451
|
-
* Copyright
|
|
6336
|
+
* Copyright 2018 Google LLC
|
|
6452
6337
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
6453
6338
|
*)
|
|
6454
6339
|
|
|
6455
|
-
@lit/localize/
|
|
6340
|
+
@lit/localize/internal/fnv1a64.js:
|
|
6456
6341
|
(**
|
|
6457
6342
|
* @license
|
|
6458
|
-
* Copyright
|
|
6459
|
-
* SPDX-License-Identifier:
|
|
6343
|
+
* Copyright 2014 Travis Webb
|
|
6344
|
+
* SPDX-License-Identifier: MIT
|
|
6460
6345
|
*)
|
|
6461
6346
|
*/
|