@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
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {html} from "lit"
|
|
2
|
-
import {LitElementWw} from "@webwriter/lit"
|
|
3
|
-
import {customElement} from "lit/decorators.js"
|
|
4
|
-
import "@shoelace-style/shoelace/dist/themes/light.css"
|
|
5
|
-
|
|
6
|
-
import LOCALIZE from "../../localization/generated"
|
|
7
|
-
import {msg} from "@lit/localize"
|
|
8
|
-
|
|
9
|
-
declare global {interface HTMLElementTagNameMap {
|
|
10
|
-
"webwriter-task-hint": WebwriterTaskHint;
|
|
11
|
-
}}
|
|
12
|
-
|
|
13
|
-
@customElement("webwriter-task-hint")
|
|
14
|
-
export class WebwriterTaskHint extends LitElementWw {
|
|
15
|
-
|
|
16
|
-
localize = LOCALIZE
|
|
17
|
-
|
|
18
|
-
render() {
|
|
19
|
-
return html`<slot>
|
|
20
|
-
|
|
21
|
-
</slot>`
|
|
22
|
-
}
|
|
1
|
+
import {html} from "lit"
|
|
2
|
+
import {LitElementWw} from "@webwriter/lit"
|
|
3
|
+
import {customElement} from "lit/decorators.js"
|
|
4
|
+
import "@shoelace-style/shoelace/dist/themes/light.css"
|
|
5
|
+
|
|
6
|
+
import LOCALIZE from "../../localization/generated"
|
|
7
|
+
import {msg} from "@lit/localize"
|
|
8
|
+
|
|
9
|
+
declare global {interface HTMLElementTagNameMap {
|
|
10
|
+
"webwriter-task-hint": WebwriterTaskHint;
|
|
11
|
+
}}
|
|
12
|
+
|
|
13
|
+
@customElement("webwriter-task-hint")
|
|
14
|
+
export class WebwriterTaskHint extends LitElementWw {
|
|
15
|
+
|
|
16
|
+
localize = LOCALIZE
|
|
17
|
+
|
|
18
|
+
render() {
|
|
19
|
+
return html`<slot>
|
|
20
|
+
|
|
21
|
+
</slot>`
|
|
22
|
+
}
|
|
23
23
|
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import {html} from "lit"
|
|
2
|
-
import {LitElementWw} from "@webwriter/lit"
|
|
3
|
-
import {customElement} from "lit/decorators.js"
|
|
4
|
-
import "@shoelace-style/shoelace/dist/themes/light.css"
|
|
5
|
-
import { styleMap } from "lit/directives/style-map.js"
|
|
6
|
-
|
|
7
|
-
import LOCALIZE from "../../localization/generated"
|
|
8
|
-
import {msg} from "@lit/localize"
|
|
9
|
-
|
|
10
|
-
declare global {interface HTMLElementTagNameMap {
|
|
11
|
-
"webwriter-task-prompt": WebwriterTaskPrompt;
|
|
12
|
-
}}
|
|
13
|
-
|
|
14
|
-
@customElement("webwriter-task-prompt")
|
|
15
|
-
export class WebwriterTaskPrompt extends LitElementWw {
|
|
16
|
-
|
|
17
|
-
localize = LOCALIZE
|
|
18
|
-
|
|
19
|
-
render() {
|
|
20
|
-
return html`<slot style=${styleMap({"--ww-placeholder": `"${msg("Prompt")}"`})}>
|
|
21
|
-
|
|
22
|
-
</slot>`
|
|
23
|
-
}
|
|
1
|
+
import {html} from "lit"
|
|
2
|
+
import {LitElementWw} from "@webwriter/lit"
|
|
3
|
+
import {customElement} from "lit/decorators.js"
|
|
4
|
+
import "@shoelace-style/shoelace/dist/themes/light.css"
|
|
5
|
+
import { styleMap } from "lit/directives/style-map.js"
|
|
6
|
+
|
|
7
|
+
import LOCALIZE from "../../localization/generated"
|
|
8
|
+
import {msg} from "@lit/localize"
|
|
9
|
+
|
|
10
|
+
declare global {interface HTMLElementTagNameMap {
|
|
11
|
+
"webwriter-task-prompt": WebwriterTaskPrompt;
|
|
12
|
+
}}
|
|
13
|
+
|
|
14
|
+
@customElement("webwriter-task-prompt")
|
|
15
|
+
export class WebwriterTaskPrompt extends LitElementWw {
|
|
16
|
+
|
|
17
|
+
localize = LOCALIZE
|
|
18
|
+
|
|
19
|
+
render() {
|
|
20
|
+
return html`<slot style=${styleMap({"--ww-placeholder": `"${msg("Prompt")}"`})}>
|
|
21
|
+
|
|
22
|
+
</slot>`
|
|
23
|
+
}
|
|
24
24
|
}
|