@webwriter/quiz 1.1.3 → 2.0.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 (167) hide show
  1. package/.github/workflows/publish.yml +8 -0
  2. package/LICENSE +6 -6
  3. package/README.md +778 -0
  4. package/assets/icons/grip-horizontal.svg +8 -0
  5. package/assets/icons/grip-vertical.svg +8 -0
  6. package/assets/icons/truefalse.svg +6 -0
  7. package/custom-elements.json +2779 -0
  8. package/custom.d.ts +180 -176
  9. package/dist/api/index.d.ts +27 -0
  10. package/dist/api/index.js +40 -0
  11. package/dist/migrate.js +1434 -0
  12. package/dist/widgets/webwriter-choice-item.js +4036 -3895
  13. package/dist/widgets/webwriter-choice.js +2269 -5821
  14. package/dist/widgets/webwriter-gap-item.js +3987 -0
  15. package/dist/widgets/webwriter-gap.js +2908 -0
  16. package/dist/widgets/webwriter-mark.js +4335 -3489
  17. package/dist/widgets/webwriter-order-item.js +4014 -3306
  18. package/dist/widgets/webwriter-order.js +2944 -4386
  19. package/dist/widgets/webwriter-pairing-item.js +1058 -2421
  20. package/dist/widgets/webwriter-pairing.js +2993 -4383
  21. package/dist/widgets/webwriter-quiz-hint.js +2469 -0
  22. package/dist/widgets/webwriter-quiz.js +4933 -6099
  23. package/dist/widgets/webwriter-speech.js +6077 -5230
  24. package/dist/widgets/webwriter-task-prompt.js +4775 -2165
  25. package/dist/widgets/webwriter-task.js +2364 -8382
  26. package/dist/widgets/webwriter-text.js +4169 -4337
  27. package/dist/widgets/webwriter-true-false.js +4674 -0
  28. package/editing-config.json +106 -0
  29. package/lit-localize.json +21 -15
  30. package/localization/de.xlf +407 -74
  31. package/localization/es.xlf +407 -69
  32. package/localization/fr.xlf +407 -69
  33. package/localization/generated/de.ts +112 -29
  34. package/localization/generated/es.ts +112 -29
  35. package/localization/generated/fr.ts +112 -29
  36. package/localization/generated/index.d.ts +5 -0
  37. package/localization/generated/index.js +2 -2
  38. package/localization/generated/it.ts +112 -29
  39. package/localization/generated/locale-codes.js +31 -79
  40. package/localization/generated/nl.ts +112 -29
  41. package/localization/it.xlf +407 -69
  42. package/localization/nl.xlf +407 -69
  43. package/package.json +119 -252
  44. package/scripts/apply-translations.mjs +97 -0
  45. package/src/api/index.ts +72 -0
  46. package/src/lib/artboard.ts +686 -0
  47. package/src/lib/draggable-grid.ts +432 -0
  48. package/src/lib/encrypted-property.ts +202 -0
  49. package/src/lib/hint-popup.ts +152 -0
  50. package/src/lib/utils.ts +97 -0
  51. package/src/lib/webwriter-quirks.ts +121 -0
  52. package/src/migrate/index.ts +622 -0
  53. package/src/migrate/legacy-solution.ts +362 -0
  54. package/src/snippets/order.html +9 -8
  55. package/src/widgets/choice/webwriter-choice-item.ts +316 -0
  56. package/src/widgets/choice/webwriter-choice.ts +328 -0
  57. package/src/widgets/choice/webwriter-true-false.ts +113 -0
  58. package/src/widgets/dnd/webwriter-dnd-draggable.ts +28 -0
  59. package/src/widgets/dnd/webwriter-dnd-dropzone.ts +9 -0
  60. package/src/widgets/dnd/webwriter-dnd.ts +36 -0
  61. package/src/widgets/gap/webwriter-gap-item.ts +250 -0
  62. package/src/widgets/gap/webwriter-gap.ts +447 -0
  63. package/src/widgets/order/webwriter-order-item.ts +243 -0
  64. package/src/widgets/order/webwriter-order.ts +282 -0
  65. package/src/widgets/pairing/webwriter-pairing-item.ts +46 -0
  66. package/src/widgets/pairing/webwriter-pairing.ts +934 -0
  67. package/src/widgets/speech/audio-player.ts +325 -0
  68. package/src/widgets/speech/audio-recorder.ts +285 -0
  69. package/src/widgets/speech/waveform.ts +113 -0
  70. package/src/widgets/speech/webwriter-speech.ts +87 -0
  71. package/src/widgets/webwriter-mark.ts +374 -432
  72. package/src/widgets/webwriter-quiz-hint.ts +36 -0
  73. package/src/widgets/webwriter-quiz.ts +320 -282
  74. package/src/widgets/webwriter-task-prompt.ts +49 -24
  75. package/src/widgets/webwriter-task.ts +216 -547
  76. package/src/widgets/webwriter-text.ts +291 -156
  77. package/tsconfig.api.json +12 -0
  78. package/tsconfig.json +8 -7
  79. package/dist/widgets/webwriter-choice.css +0 -444
  80. package/dist/widgets/webwriter-cloze-gap.css +0 -444
  81. package/dist/widgets/webwriter-cloze-gap.js +0 -5866
  82. package/dist/widgets/webwriter-cloze.css +0 -444
  83. package/dist/widgets/webwriter-cloze.js +0 -3786
  84. package/dist/widgets/webwriter-mark.css +0 -444
  85. package/dist/widgets/webwriter-order.css +0 -444
  86. package/dist/widgets/webwriter-pairing-item.css +0 -444
  87. package/dist/widgets/webwriter-pairing.css +0 -444
  88. package/dist/widgets/webwriter-quiz.css +0 -444
  89. package/dist/widgets/webwriter-task-explainer.css +0 -444
  90. package/dist/widgets/webwriter-task-explainer.js +0 -2872
  91. package/dist/widgets/webwriter-task-hint.css +0 -444
  92. package/dist/widgets/webwriter-task-hint.js +0 -2811
  93. package/dist/widgets/webwriter-task.css +0 -444
  94. package/dist/widgets/webwriter-text.css +0 -444
  95. package/localization/bg.xlf +0 -69
  96. package/localization/cs.xlf +0 -69
  97. package/localization/da.xlf +0 -69
  98. package/localization/el.xlf +0 -69
  99. package/localization/et.xlf +0 -69
  100. package/localization/fi.xlf +0 -69
  101. package/localization/generated/bg.ts +0 -30
  102. package/localization/generated/cs.ts +0 -30
  103. package/localization/generated/da.ts +0 -30
  104. package/localization/generated/el.ts +0 -30
  105. package/localization/generated/et.ts +0 -30
  106. package/localization/generated/fi.ts +0 -30
  107. package/localization/generated/hu.ts +0 -30
  108. package/localization/generated/id.ts +0 -30
  109. package/localization/generated/ja.ts +0 -30
  110. package/localization/generated/ko.ts +0 -30
  111. package/localization/generated/lt.ts +0 -30
  112. package/localization/generated/lv.ts +0 -30
  113. package/localization/generated/nb.ts +0 -30
  114. package/localization/generated/pl.ts +0 -30
  115. package/localization/generated/pt-BR.ts +0 -30
  116. package/localization/generated/pt-PT.ts +0 -30
  117. package/localization/generated/ro.ts +0 -30
  118. package/localization/generated/ru.ts +0 -30
  119. package/localization/generated/sk.ts +0 -30
  120. package/localization/generated/sl.ts +0 -30
  121. package/localization/generated/sv.ts +0 -30
  122. package/localization/generated/tr.ts +0 -30
  123. package/localization/generated/uk.ts +0 -30
  124. package/localization/generated/zh-hans.ts +0 -30
  125. package/localization/hu.xlf +0 -69
  126. package/localization/id.xlf +0 -69
  127. package/localization/ja.xlf +0 -69
  128. package/localization/ko.xlf +0 -69
  129. package/localization/lt.xlf +0 -69
  130. package/localization/lv.xlf +0 -69
  131. package/localization/nb.xlf +0 -69
  132. package/localization/pl.xlf +0 -69
  133. package/localization/pt-BR.xlf +0 -69
  134. package/localization/pt-PT.xlf +0 -69
  135. package/localization/ro.xlf +0 -69
  136. package/localization/ru.xlf +0 -69
  137. package/localization/sk.xlf +0 -69
  138. package/localization/sl.xlf +0 -69
  139. package/localization/sv.xlf +0 -69
  140. package/localization/tr.xlf +0 -69
  141. package/localization/uk.xlf +0 -69
  142. package/localization/zh-hans.xlf +0 -69
  143. package/src/lib/combobox.ts +0 -456
  144. package/src/lib/highlighter-fill.svg +0 -6
  145. package/src/snippets/Beispiel-Choice.html +0 -57
  146. package/src/snippets/Beispiel-Mark.html +0 -14
  147. package/src/snippets/Beispiel-Order.html +0 -52
  148. package/src/snippets/Beispiel-Text.html +0 -20
  149. package/src/snippets/blank.html +0 -1
  150. package/src/snippets/choice.html +0 -8
  151. package/src/snippets/cloze.html +0 -4
  152. package/src/snippets/mark.html +0 -4
  153. package/src/snippets/pairing.html +0 -10
  154. package/src/snippets/speech.html +0 -4
  155. package/src/snippets/text.html +0 -4
  156. package/src/snippets/wordsearch.html +0 -4
  157. package/src/widgets/webwriter-choice-item.ts +0 -254
  158. package/src/widgets/webwriter-choice.ts +0 -353
  159. package/src/widgets/webwriter-cloze-gap.ts +0 -216
  160. package/src/widgets/webwriter-cloze.ts +0 -136
  161. package/src/widgets/webwriter-order-item.ts +0 -441
  162. package/src/widgets/webwriter-order.ts +0 -327
  163. package/src/widgets/webwriter-pairing-item.ts +0 -161
  164. package/src/widgets/webwriter-pairing.ts +0 -193
  165. package/src/widgets/webwriter-speech.ts +0 -273
  166. package/src/widgets/webwriter-task-explainer.ts +0 -43
  167. package/src/widgets/webwriter-task-hint.ts +0 -23
@@ -1,2811 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __knownSymbol = (name, symbol) => (symbol = Symbol[name]) ? symbol : Symbol.for("Symbol." + name);
6
- var __typeError = (msg2) => {
7
- throw TypeError(msg2);
8
- };
9
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
10
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
11
- var __glob = (map) => (path) => {
12
- var fn = map[path];
13
- if (fn) return fn();
14
- throw new Error("Module not found in bundle: " + path);
15
- };
16
- var __esm = (fn, res) => function __init() {
17
- return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
18
- };
19
- var __export = (target, all) => {
20
- for (var name in all)
21
- __defProp(target, name, { get: all[name], enumerable: true });
22
- };
23
- var __decoratorStart = (base) => [, , , __create(base?.[__knownSymbol("metadata")] ?? null)];
24
- var __decoratorStrings = ["class", "method", "getter", "setter", "accessor", "field", "value", "get", "set"];
25
- var __expectFn = (fn) => fn !== void 0 && typeof fn !== "function" ? __typeError("Function expected") : fn;
26
- var __decoratorContext = (kind, name, done, metadata, fns) => ({ kind: __decoratorStrings[kind], name, metadata, addInitializer: (fn) => done._ ? __typeError("Already initialized") : fns.push(__expectFn(fn || null)) });
27
- var __decoratorMetadata = (array, target) => __defNormalProp(target, __knownSymbol("metadata"), array[3]);
28
- var __runInitializers = (array, flags, self, value) => {
29
- for (var i5 = 0, fns = array[flags >> 1], n6 = fns && fns.length; i5 < n6; i5++) flags & 1 ? fns[i5].call(self) : value = fns[i5].call(self, value);
30
- return value;
31
- };
32
- var __decorateElement = (array, flags, name, decorators, target, extra) => {
33
- var fn, it, done, ctx, access, k3 = flags & 7, s4 = !!(flags & 8), p4 = !!(flags & 16);
34
- var j3 = k3 > 3 ? array.length + 1 : k3 ? s4 ? 1 : 2 : 0, key = __decoratorStrings[k3 + 5];
35
- var initializers = k3 > 3 && (array[j3 - 1] = []), extraInitializers = array[j3] || (array[j3] = []);
36
- var desc = k3 && (!p4 && !s4 && (target = target.prototype), k3 < 5 && (k3 > 3 || !p4) && __getOwnPropDesc(k3 < 4 ? target : { get [name]() {
37
- return __privateGet(this, extra);
38
- }, set [name](x3) {
39
- return __privateSet(this, extra, x3);
40
- } }, name));
41
- k3 ? p4 && k3 < 4 && __name(extra, (k3 > 2 ? "set " : k3 > 1 ? "get " : "") + name) : __name(target, name);
42
- for (var i5 = decorators.length - 1; i5 >= 0; i5--) {
43
- ctx = __decoratorContext(k3, name, done = {}, array[3], extraInitializers);
44
- if (k3) {
45
- ctx.static = s4, ctx.private = p4, access = ctx.access = { has: p4 ? (x3) => __privateIn(target, x3) : (x3) => name in x3 };
46
- if (k3 ^ 3) access.get = p4 ? (x3) => (k3 ^ 1 ? __privateGet : __privateMethod)(x3, target, k3 ^ 4 ? extra : desc.get) : (x3) => x3[name];
47
- if (k3 > 2) access.set = p4 ? (x3, y4) => __privateSet(x3, target, y4, k3 ^ 4 ? extra : desc.set) : (x3, y4) => x3[name] = y4;
48
- }
49
- it = (0, decorators[i5])(k3 ? k3 < 4 ? p4 ? extra : desc[key] : k3 > 4 ? void 0 : { get: desc.get, set: desc.set } : target, ctx), done._ = 1;
50
- if (k3 ^ 4 || it === void 0) __expectFn(it) && (k3 > 4 ? initializers.unshift(it) : k3 ? p4 ? extra = it : desc[key] = it : target = it);
51
- else if (typeof it !== "object" || it === null) __typeError("Object expected");
52
- else __expectFn(fn = it.get) && (desc.get = fn), __expectFn(fn = it.set) && (desc.set = fn), __expectFn(fn = it.init) && initializers.unshift(fn);
53
- }
54
- return k3 || __decoratorMetadata(array, target), desc && __defProp(target, name, desc), p4 ? k3 ^ 4 ? extra : desc : target;
55
- };
56
- var __accessCheck = (obj, member, msg2) => member.has(obj) || __typeError("Cannot " + msg2);
57
- var __privateIn = (member, obj) => Object(obj) !== obj ? __typeError('Cannot use the "in" operator on this value') : member.has(obj);
58
- var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
59
- var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
60
- var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
61
-
62
- // localization/generated/bg.ts
63
- var bg_exports = {};
64
- __export(bg_exports, {
65
- templates: () => templates2
66
- });
67
- var templates2;
68
- var init_bg = __esm({
69
- "localization/generated/bg.ts"() {
70
- templates2 = {
71
- "s159928724265eb05": `\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043E\u043F\u0446\u0438\u044F`,
72
- "s1b23c41934894f30": `\u041E\u0431\u044F\u0441\u043D\u0435\u043D\u0438\u0435`,
73
- "s255857544a9d5ec0": `\u041D\u0443\u043B\u0438\u0440\u0430\u043D\u0435 \u043D\u0430`,
74
- "s4802e47fe2e95134": `\u041E\u043F\u0446\u0438\u044F`,
75
- "s54393bfa280ea55b": `\u041F\u043E\u0434\u0441\u043A\u0430\u0437\u043A\u0430`,
76
- "s7254ca27b16ae2d8": `\u0424\u0430\u043B\u0448\u0438\u0432`,
77
- "s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0437\u0430 \u043F\u043E\u0434\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043D\u0435`,
78
- "s85ea99fb52be3385": `\u0418\u0441\u0442\u0438\u043D\u0441\u043A\u0438`,
79
- "sb3d4f79d9d8b71e5": `\u041F\u043E\u0434\u0430\u0432\u0430\u043D\u0435 \u043D\u0430`,
80
- "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`,
81
- "scd1dd6ff53d0d01a": `\u041E\u043F\u0438\u0442\u0430\u0439\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E`,
82
- "sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u043E\u0442\u0433\u043E\u0432\u043E\u0440\u0438\u0442\u0435 \u0441\u0438`,
83
- "sb0aadaa04e658ad6": `Choice`,
84
- "s2ba5f4d8f3bd7c57": `Order`,
85
- "s2492f5fb1b05b45e": `Text`,
86
- "s49c940aecfef3ea0": `Mark`,
87
- "saa3efba1f0c816b7": `Speech`
88
- };
89
- }
90
- });
91
-
92
- // localization/generated/cs.ts
93
- var cs_exports = {};
94
- __export(cs_exports, {
95
- templates: () => templates3
96
- });
97
- var templates3;
98
- var init_cs = __esm({
99
- "localization/generated/cs.ts"() {
100
- templates3 = {
101
- "s159928724265eb05": `P\u0159idat mo\u017Enost`,
102
- "s1b23c41934894f30": `Vysv\u011Btlen\xED`,
103
- "s255857544a9d5ec0": `Obnoven\xED`,
104
- "s4802e47fe2e95134": `Mo\u017Enost`,
105
- "s54393bfa280ea55b": `Prompt`,
106
- "s7254ca27b16ae2d8": `False`,
107
- "s80dc9f56411917df": `Text ke zv\xFDrazn\u011Bn\xED`,
108
- "s85ea99fb52be3385": `Pravda`,
109
- "sb3d4f79d9d8b71e5": `Odeslat`,
110
- "sc56e9323f076a11e": `Text, do kter\xE9ho se p\u0159id\xE1vaj\xED mezery`,
111
- "scd1dd6ff53d0d01a": `Zkuste to znovu`,
112
- "sd26e8d4eef55e341": `Zkontrolujte sv\xE9 odpov\u011Bdi`,
113
- "sb0aadaa04e658ad6": `Choice`,
114
- "s2ba5f4d8f3bd7c57": `Order`,
115
- "s2492f5fb1b05b45e": `Text`,
116
- "s49c940aecfef3ea0": `Mark`,
117
- "saa3efba1f0c816b7": `Speech`
118
- };
119
- }
120
- });
121
-
122
- // localization/generated/da.ts
123
- var da_exports = {};
124
- __export(da_exports, {
125
- templates: () => templates4
126
- });
127
- var templates4;
128
- var init_da = __esm({
129
- "localization/generated/da.ts"() {
130
- templates4 = {
131
- "s159928724265eb05": `Tilf\xF8j mulighed`,
132
- "s1b23c41934894f30": `Forklaring`,
133
- "s255857544a9d5ec0": `Nulstil`,
134
- "s4802e47fe2e95134": `Mulighed`,
135
- "s54393bfa280ea55b": `Prompt`,
136
- "s7254ca27b16ae2d8": `Falsk`,
137
- "s80dc9f56411917df": `Tekst til at fremh\xE6ve`,
138
- "s85ea99fb52be3385": `Sandt`,
139
- "sb3d4f79d9d8b71e5": `Send ind`,
140
- "sc56e9323f076a11e": `Tekst til at tilf\xF8je mellemrum til`,
141
- "scd1dd6ff53d0d01a": `Pr\xF8v igen`,
142
- "sd26e8d4eef55e341": `Tjek dine svar`,
143
- "sb0aadaa04e658ad6": `Choice`,
144
- "s2ba5f4d8f3bd7c57": `Order`,
145
- "s2492f5fb1b05b45e": `Text`,
146
- "s49c940aecfef3ea0": `Mark`,
147
- "saa3efba1f0c816b7": `Speech`
148
- };
149
- }
150
- });
151
-
152
- // localization/generated/de.ts
153
- var de_exports = {};
154
- __export(de_exports, {
155
- templates: () => templates5
156
- });
157
- var templates5;
158
- var init_de = __esm({
159
- "localization/generated/de.ts"() {
160
- templates5 = {
161
- "s159928724265eb05": `Option hinzuf\xFCgen`,
162
- "s1b23c41934894f30": `Erl\xE4uterung`,
163
- "s2492f5fb1b05b45e": `Text`,
164
- "s255857544a9d5ec0": `Zur\xFCcksetzen`,
165
- "s2ba5f4d8f3bd7c57": `Sortieren`,
166
- "s4802e47fe2e95134": `Option`,
167
- "s49c940aecfef3ea0": `Markieren`,
168
- "s54393bfa280ea55b": `Aufgabe`,
169
- "s7254ca27b16ae2d8": `Falsch`,
170
- "s80dc9f56411917df": `Hervorzuhebender Text`,
171
- "s85ea99fb52be3385": `Wahr`,
172
- "saa3efba1f0c816b7": `Sprechen`,
173
- "sb0aadaa04e658ad6": `Ausw\xE4hlen`,
174
- "sb3d4f79d9d8b71e5": `Einreichen`,
175
- "sc56e9323f076a11e": `Text zum Hinzuf\xFCgen von L\xFCcken`,
176
- "scd1dd6ff53d0d01a": `Erneut versuchen`,
177
- "sd26e8d4eef55e341": `\xDCberpr\xFCfen Sie Ihre Antworten`
178
- };
179
- }
180
- });
181
-
182
- // localization/generated/el.ts
183
- var el_exports = {};
184
- __export(el_exports, {
185
- templates: () => templates6
186
- });
187
- var templates6;
188
- var init_el = __esm({
189
- "localization/generated/el.ts"() {
190
- templates6 = {
191
- "s159928724265eb05": `\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2`,
192
- "s1b23c41934894f30": `\u0395\u03C0\u03B5\u03BE\u03AE\u03B3\u03B7\u03C3\u03B7`,
193
- "s255857544a9d5ec0": `\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC`,
194
- "s4802e47fe2e95134": `\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE`,
195
- "s54393bfa280ea55b": `\u03A0\u03C1\u03BF\u03C4\u03C1\u03BF\u03C0\u03AE`,
196
- "s7254ca27b16ae2d8": `\u03A8\u03B5\u03C5\u03B4\u03AD\u03C2`,
197
- "s80dc9f56411917df": `\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B5\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7`,
198
- "s85ea99fb52be3385": `\u0391\u03BB\u03AE\u03B8\u03B5\u03B9\u03B1`,
199
- "sb3d4f79d9d8b71e5": `\u03A5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE`,
200
- "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`,
201
- "scd1dd6ff53d0d01a": `\u0394\u03BF\u03BA\u03B9\u03BC\u03AC\u03C3\u03C4\u03B5 \u03BE\u03B1\u03BD\u03AC`,
202
- "sd26e8d4eef55e341": `\u0395\u03BB\u03AD\u03B3\u03BE\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03B1\u03C2`,
203
- "sb0aadaa04e658ad6": `Choice`,
204
- "s2ba5f4d8f3bd7c57": `Order`,
205
- "s2492f5fb1b05b45e": `Text`,
206
- "s49c940aecfef3ea0": `Mark`,
207
- "saa3efba1f0c816b7": `Speech`
208
- };
209
- }
210
- });
211
-
212
- // localization/generated/es.ts
213
- var es_exports = {};
214
- __export(es_exports, {
215
- templates: () => templates7
216
- });
217
- var templates7;
218
- var init_es = __esm({
219
- "localization/generated/es.ts"() {
220
- templates7 = {
221
- "s159928724265eb05": `A\xF1adir opci\xF3n`,
222
- "s1b23c41934894f30": `Explicaci\xF3n`,
223
- "s255857544a9d5ec0": `Restablecer`,
224
- "s4802e47fe2e95134": `Opci\xF3n`,
225
- "s54393bfa280ea55b": `Pregunte a`,
226
- "s7254ca27b16ae2d8": `Falso`,
227
- "s80dc9f56411917df": `Texto a destacar`,
228
- "s85ea99fb52be3385": `Verdadero`,
229
- "sb3d4f79d9d8b71e5": `Enviar`,
230
- "sc56e9323f076a11e": `Texto al que a\xF1adir huecos`,
231
- "scd1dd6ff53d0d01a": `Int\xE9ntalo de nuevo`,
232
- "sd26e8d4eef55e341": `Comprueba tus respuestas`,
233
- "sb0aadaa04e658ad6": `Choice`,
234
- "s2ba5f4d8f3bd7c57": `Order`,
235
- "s2492f5fb1b05b45e": `Text`,
236
- "s49c940aecfef3ea0": `Mark`,
237
- "saa3efba1f0c816b7": `Speech`
238
- };
239
- }
240
- });
241
-
242
- // localization/generated/et.ts
243
- var et_exports = {};
244
- __export(et_exports, {
245
- templates: () => templates8
246
- });
247
- var templates8;
248
- var init_et = __esm({
249
- "localization/generated/et.ts"() {
250
- templates8 = {
251
- "s159928724265eb05": `Lisa v\xF5imalus`,
252
- "s1b23c41934894f30": `Selgitus`,
253
- "s255857544a9d5ec0": `Reset`,
254
- "s4802e47fe2e95134": `Valik`,
255
- "s54393bfa280ea55b": `Prompt`,
256
- "s7254ca27b16ae2d8": `Vale`,
257
- "s80dc9f56411917df": `Teksti esilet\xF5stmine`,
258
- "s85ea99fb52be3385": `T\xF5si`,
259
- "sb3d4f79d9d8b71e5": `Esita`,
260
- "sc56e9323f076a11e": `Tekst, millele lisada l\xFCngad`,
261
- "scd1dd6ff53d0d01a": `Proovi uuesti`,
262
- "sd26e8d4eef55e341": `Kontrollige oma vastuseid`,
263
- "sb0aadaa04e658ad6": `Choice`,
264
- "s2ba5f4d8f3bd7c57": `Order`,
265
- "s2492f5fb1b05b45e": `Text`,
266
- "s49c940aecfef3ea0": `Mark`,
267
- "saa3efba1f0c816b7": `Speech`
268
- };
269
- }
270
- });
271
-
272
- // localization/generated/fi.ts
273
- var fi_exports = {};
274
- __export(fi_exports, {
275
- templates: () => templates9
276
- });
277
- var templates9;
278
- var init_fi = __esm({
279
- "localization/generated/fi.ts"() {
280
- templates9 = {
281
- "s159928724265eb05": `Lis\xE4\xE4 vaihtoehto`,
282
- "s1b23c41934894f30": `Selitys`,
283
- "s255857544a9d5ec0": `Nollaa`,
284
- "s4802e47fe2e95134": `Vaihtoehto`,
285
- "s54393bfa280ea55b": `Kehotus`,
286
- "s7254ca27b16ae2d8": `False`,
287
- "s80dc9f56411917df": `Korostettava teksti`,
288
- "s85ea99fb52be3385": `Totta`,
289
- "sb3d4f79d9d8b71e5": `L\xE4het\xE4`,
290
- "sc56e9323f076a11e": `Teksti, johon lis\xE4t\xE4\xE4n aukkoja`,
291
- "scd1dd6ff53d0d01a": `Yrit\xE4 uudelleen`,
292
- "sd26e8d4eef55e341": `Tarkista vastauksesi`,
293
- "sb0aadaa04e658ad6": `Choice`,
294
- "s2ba5f4d8f3bd7c57": `Order`,
295
- "s2492f5fb1b05b45e": `Text`,
296
- "s49c940aecfef3ea0": `Mark`,
297
- "saa3efba1f0c816b7": `Speech`
298
- };
299
- }
300
- });
301
-
302
- // localization/generated/fr.ts
303
- var fr_exports = {};
304
- __export(fr_exports, {
305
- templates: () => templates10
306
- });
307
- var templates10;
308
- var init_fr = __esm({
309
- "localization/generated/fr.ts"() {
310
- templates10 = {
311
- "s159928724265eb05": `Ajouter une option`,
312
- "s1b23c41934894f30": `Explication`,
313
- "s255857544a9d5ec0": `Remise \xE0 z\xE9ro`,
314
- "s4802e47fe2e95134": `Option`,
315
- "s54393bfa280ea55b": `Prompt`,
316
- "s7254ca27b16ae2d8": `Faux`,
317
- "s80dc9f56411917df": `Texte \xE0 mettre en \xE9vidence`,
318
- "s85ea99fb52be3385": `Vrai`,
319
- "sb3d4f79d9d8b71e5": `Soumettre`,
320
- "sc56e9323f076a11e": `Texte \xE0 ajouter aux lacunes`,
321
- "scd1dd6ff53d0d01a": `R\xE9essayer`,
322
- "sd26e8d4eef55e341": `V\xE9rifiez vos r\xE9ponses`,
323
- "sb0aadaa04e658ad6": `Choice`,
324
- "s2ba5f4d8f3bd7c57": `Order`,
325
- "s2492f5fb1b05b45e": `Text`,
326
- "s49c940aecfef3ea0": `Mark`,
327
- "saa3efba1f0c816b7": `Speech`
328
- };
329
- }
330
- });
331
-
332
- // localization/generated/hu.ts
333
- var hu_exports = {};
334
- __export(hu_exports, {
335
- templates: () => templates11
336
- });
337
- var templates11;
338
- var init_hu = __esm({
339
- "localization/generated/hu.ts"() {
340
- templates11 = {
341
- "s159928724265eb05": `Opci\xF3 hozz\xE1ad\xE1sa`,
342
- "s1b23c41934894f30": `Magyar\xE1zat`,
343
- "s255857544a9d5ec0": `Reset`,
344
- "s4802e47fe2e95134": `Opci\xF3`,
345
- "s54393bfa280ea55b": `Prompt`,
346
- "s7254ca27b16ae2d8": `Hamis`,
347
- "s80dc9f56411917df": `Kiemelend\u0151 sz\xF6veg`,
348
- "s85ea99fb52be3385": `Igaz`,
349
- "sb3d4f79d9d8b71e5": `K\xFCldje be a`,
350
- "sc56e9323f076a11e": `H\xE9zagok hozz\xE1ad\xE1s\xE1ra szolg\xE1l\xF3 sz\xF6veg`,
351
- "scd1dd6ff53d0d01a": `Pr\xF3b\xE1lja \xFAjra`,
352
- "sd26e8d4eef55e341": `Ellen\u0151rizze v\xE1laszait`,
353
- "sb0aadaa04e658ad6": `Choice`,
354
- "s2ba5f4d8f3bd7c57": `Order`,
355
- "s2492f5fb1b05b45e": `Text`,
356
- "s49c940aecfef3ea0": `Mark`,
357
- "saa3efba1f0c816b7": `Speech`
358
- };
359
- }
360
- });
361
-
362
- // localization/generated/id.ts
363
- var id_exports = {};
364
- __export(id_exports, {
365
- templates: () => templates12
366
- });
367
- var templates12;
368
- var init_id = __esm({
369
- "localization/generated/id.ts"() {
370
- templates12 = {
371
- "s159928724265eb05": `Tambahkan Opsi`,
372
- "s1b23c41934894f30": `Penjelasan`,
373
- "s255857544a9d5ec0": `Atur ulang`,
374
- "s4802e47fe2e95134": `Opsi`,
375
- "s54393bfa280ea55b": `Cepat`,
376
- "s7254ca27b16ae2d8": `Salah`,
377
- "s80dc9f56411917df": `Teks untuk Disorot`,
378
- "s85ea99fb52be3385": `Benar`,
379
- "sb3d4f79d9d8b71e5": `Kirim`,
380
- "sc56e9323f076a11e": `Teks yang akan ditambahkan celah`,
381
- "scd1dd6ff53d0d01a": `Coba lagi`,
382
- "sd26e8d4eef55e341": `Periksa jawaban Anda`,
383
- "sb0aadaa04e658ad6": `Choice`,
384
- "s2ba5f4d8f3bd7c57": `Order`,
385
- "s2492f5fb1b05b45e": `Text`,
386
- "s49c940aecfef3ea0": `Mark`,
387
- "saa3efba1f0c816b7": `Speech`
388
- };
389
- }
390
- });
391
-
392
- // localization/generated/it.ts
393
- var it_exports = {};
394
- __export(it_exports, {
395
- templates: () => templates13
396
- });
397
- var templates13;
398
- var init_it = __esm({
399
- "localization/generated/it.ts"() {
400
- templates13 = {
401
- "s159928724265eb05": `Aggiungi opzione`,
402
- "s1b23c41934894f30": `Spiegazione`,
403
- "s255857544a9d5ec0": `Reset`,
404
- "s4802e47fe2e95134": `Opzione`,
405
- "s54393bfa280ea55b": `Prompt`,
406
- "s7254ca27b16ae2d8": `Falso`,
407
- "s80dc9f56411917df": `Testo da evidenziare`,
408
- "s85ea99fb52be3385": `Vero`,
409
- "sb3d4f79d9d8b71e5": `Invia`,
410
- "sc56e9323f076a11e": `Testo a cui aggiungere spazi vuoti`,
411
- "scd1dd6ff53d0d01a": `Riprova`,
412
- "sd26e8d4eef55e341": `Controllare le risposte`,
413
- "sb0aadaa04e658ad6": `Choice`,
414
- "s2ba5f4d8f3bd7c57": `Order`,
415
- "s2492f5fb1b05b45e": `Text`,
416
- "s49c940aecfef3ea0": `Mark`,
417
- "saa3efba1f0c816b7": `Speech`
418
- };
419
- }
420
- });
421
-
422
- // localization/generated/ja.ts
423
- var ja_exports = {};
424
- __export(ja_exports, {
425
- templates: () => templates14
426
- });
427
- var templates14;
428
- var init_ja = __esm({
429
- "localization/generated/ja.ts"() {
430
- templates14 = {
431
- "s159928724265eb05": `\u30AA\u30D7\u30B7\u30E7\u30F3\u8FFD\u52A0`,
432
- "s1b23c41934894f30": `\u8AAC\u660E`,
433
- "s255857544a9d5ec0": `\u30EA\u30BB\u30C3\u30C8`,
434
- "s4802e47fe2e95134": `\u30AA\u30D7\u30B7\u30E7\u30F3`,
435
- "s54393bfa280ea55b": `\u30D7\u30ED\u30F3\u30D7\u30C8`,
436
- "s7254ca27b16ae2d8": `\u507D`,
437
- "s80dc9f56411917df": `\u30CF\u30A4\u30E9\u30A4\u30C8\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
438
- "s85ea99fb52be3385": `\u771F`,
439
- "sb3d4f79d9d8b71e5": `\u6295\u7A3F\u3059\u308B`,
440
- "sc56e9323f076a11e": `\u30AE\u30E3\u30C3\u30D7\u3092\u8FFD\u52A0\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
441
- "scd1dd6ff53d0d01a": `\u518D\u8A66\u884C`,
442
- "sd26e8d4eef55e341": `\u7B54\u3048\u3092\u30C1\u30A7\u30C3\u30AF\u3059\u308B`,
443
- "sb0aadaa04e658ad6": `Choice`,
444
- "s2ba5f4d8f3bd7c57": `Order`,
445
- "s2492f5fb1b05b45e": `Text`,
446
- "s49c940aecfef3ea0": `Mark`,
447
- "saa3efba1f0c816b7": `Speech`
448
- };
449
- }
450
- });
451
-
452
- // localization/generated/ko.ts
453
- var ko_exports = {};
454
- __export(ko_exports, {
455
- templates: () => templates15
456
- });
457
- var templates15;
458
- var init_ko = __esm({
459
- "localization/generated/ko.ts"() {
460
- templates15 = {
461
- "s159928724265eb05": `\uC635\uC158 \uCD94\uAC00`,
462
- "s1b23c41934894f30": `\uC124\uBA85`,
463
- "s255857544a9d5ec0": `\uCD08\uAE30\uD654`,
464
- "s4802e47fe2e95134": `\uC635\uC158`,
465
- "s54393bfa280ea55b": `\uD504\uB86C\uD504\uD2B8`,
466
- "s7254ca27b16ae2d8": `False`,
467
- "s80dc9f56411917df": `\uAC15\uC870 \uD45C\uC2DC\uD560 \uD14D\uC2A4\uD2B8`,
468
- "s85ea99fb52be3385": `True`,
469
- "sb3d4f79d9d8b71e5": `\uC81C\uCD9C\uD558\uAE30`,
470
- "sc56e9323f076a11e": `\uACF5\uBC31\uC744 \uCD94\uAC00\uD560 \uD14D\uC2A4\uD2B8`,
471
- "scd1dd6ff53d0d01a": `\uB2E4\uC2DC \uC2DC\uB3C4`,
472
- "sd26e8d4eef55e341": `\uB2F5\uBCC0 \uD655\uC778`,
473
- "sb0aadaa04e658ad6": `Choice`,
474
- "s2ba5f4d8f3bd7c57": `Order`,
475
- "s2492f5fb1b05b45e": `Text`,
476
- "s49c940aecfef3ea0": `Mark`,
477
- "saa3efba1f0c816b7": `Speech`
478
- };
479
- }
480
- });
481
-
482
- // localization/generated/lt.ts
483
- var lt_exports = {};
484
- __export(lt_exports, {
485
- templates: () => templates16
486
- });
487
- var templates16;
488
- var init_lt = __esm({
489
- "localization/generated/lt.ts"() {
490
- templates16 = {
491
- "s159928724265eb05": `Prid\u0117ti parinkt\u012F`,
492
- "s1b23c41934894f30": `Paai\u0161kinimas`,
493
- "s255857544a9d5ec0": `I\u0161 naujo nustatyti`,
494
- "s4802e47fe2e95134": `Galimyb\u0117`,
495
- "s54393bfa280ea55b": `Paraginimas`,
496
- "s7254ca27b16ae2d8": `Klaidingas`,
497
- "s80dc9f56411917df": `Teksto pary\u0161kinimas`,
498
- "s85ea99fb52be3385": `Tiesa`,
499
- "sb3d4f79d9d8b71e5": `Pateikti`,
500
- "sc56e9323f076a11e": `Tekstas, prie kurio pridedami tarpai`,
501
- "scd1dd6ff53d0d01a": `Pabandykite dar kart\u0105`,
502
- "sd26e8d4eef55e341": `Patikrinkite savo atsakymus`,
503
- "sb0aadaa04e658ad6": `Choice`,
504
- "s2ba5f4d8f3bd7c57": `Order`,
505
- "s2492f5fb1b05b45e": `Text`,
506
- "s49c940aecfef3ea0": `Mark`,
507
- "saa3efba1f0c816b7": `Speech`
508
- };
509
- }
510
- });
511
-
512
- // localization/generated/lv.ts
513
- var lv_exports = {};
514
- __export(lv_exports, {
515
- templates: () => templates17
516
- });
517
- var templates17;
518
- var init_lv = __esm({
519
- "localization/generated/lv.ts"() {
520
- templates17 = {
521
- "s159928724265eb05": `Pievienot iesp\u0113ju`,
522
- "s1b23c41934894f30": `Paskaidrojums`,
523
- "s255857544a9d5ec0": `Atiestat\u012Bt`,
524
- "s4802e47fe2e95134": `Iesp\u0113ja`,
525
- "s54393bfa280ea55b": `Uzaicin\u0101jums`,
526
- "s7254ca27b16ae2d8": `Viltus`,
527
- "s80dc9f56411917df": `Teksta izcel\u0161ana`,
528
- "s85ea99fb52be3385": `True`,
529
- "sb3d4f79d9d8b71e5": `Iesniegt`,
530
- "sc56e9323f076a11e": `Teksts, kam pievienot atstarpes`,
531
- "scd1dd6ff53d0d01a": `M\u0113\u0123iniet v\u0113lreiz`,
532
- "sd26e8d4eef55e341": `P\u0101rbaudiet savas atbildes`,
533
- "sb0aadaa04e658ad6": `Choice`,
534
- "s2ba5f4d8f3bd7c57": `Order`,
535
- "s2492f5fb1b05b45e": `Text`,
536
- "s49c940aecfef3ea0": `Mark`,
537
- "saa3efba1f0c816b7": `Speech`
538
- };
539
- }
540
- });
541
-
542
- // localization/generated/nb.ts
543
- var nb_exports = {};
544
- __export(nb_exports, {
545
- templates: () => templates18
546
- });
547
- var templates18;
548
- var init_nb = __esm({
549
- "localization/generated/nb.ts"() {
550
- templates18 = {
551
- "s159928724265eb05": `Legg til alternativ`,
552
- "s1b23c41934894f30": `Forklaring`,
553
- "s255857544a9d5ec0": `Tilbakestill`,
554
- "s4802e47fe2e95134": `Alternativ`,
555
- "s54393bfa280ea55b": `Sp\xF8r`,
556
- "s7254ca27b16ae2d8": `Falsk`,
557
- "s80dc9f56411917df": `Tekst som skal fremheves`,
558
- "s85ea99fb52be3385": `Sant`,
559
- "sb3d4f79d9d8b71e5": `Send inn`,
560
- "sc56e9323f076a11e": `Tekst for \xE5 legge til mellomrom`,
561
- "scd1dd6ff53d0d01a": `Pr\xF8v igjen`,
562
- "sd26e8d4eef55e341": `Sjekk svarene dine`,
563
- "sb0aadaa04e658ad6": `Choice`,
564
- "s2ba5f4d8f3bd7c57": `Order`,
565
- "s2492f5fb1b05b45e": `Text`,
566
- "s49c940aecfef3ea0": `Mark`,
567
- "saa3efba1f0c816b7": `Speech`
568
- };
569
- }
570
- });
571
-
572
- // localization/generated/nl.ts
573
- var nl_exports = {};
574
- __export(nl_exports, {
575
- templates: () => templates19
576
- });
577
- var templates19;
578
- var init_nl = __esm({
579
- "localization/generated/nl.ts"() {
580
- templates19 = {
581
- "s159928724265eb05": `Optie toevoegen`,
582
- "s1b23c41934894f30": `Uitleg`,
583
- "s255857544a9d5ec0": `Reset`,
584
- "s4802e47fe2e95134": `Optie`,
585
- "s54393bfa280ea55b": `Prompt`,
586
- "s7254ca27b16ae2d8": `Valse`,
587
- "s80dc9f56411917df": `Te markeren tekst`,
588
- "s85ea99fb52be3385": `Echt`,
589
- "sb3d4f79d9d8b71e5": `Stuur in`,
590
- "sc56e9323f076a11e": `Tekst om gaten aan toe te voegen`,
591
- "scd1dd6ff53d0d01a": `Probeer het opnieuw`,
592
- "sd26e8d4eef55e341": `Controleer je antwoorden`,
593
- "sb0aadaa04e658ad6": `Choice`,
594
- "s2ba5f4d8f3bd7c57": `Order`,
595
- "s2492f5fb1b05b45e": `Text`,
596
- "s49c940aecfef3ea0": `Mark`,
597
- "saa3efba1f0c816b7": `Speech`
598
- };
599
- }
600
- });
601
-
602
- // localization/generated/pl.ts
603
- var pl_exports = {};
604
- __export(pl_exports, {
605
- templates: () => templates20
606
- });
607
- var templates20;
608
- var init_pl = __esm({
609
- "localization/generated/pl.ts"() {
610
- templates20 = {
611
- "s159928724265eb05": `Dodaj opcj\u0119`,
612
- "s1b23c41934894f30": `Wyja\u015Bnienie`,
613
- "s255857544a9d5ec0": `Reset`,
614
- "s4802e47fe2e95134": `Opcja`,
615
- "s54393bfa280ea55b": `Podpowied\u017A`,
616
- "s7254ca27b16ae2d8": `Fa\u0142sz`,
617
- "s80dc9f56411917df": `Tekst do pod\u015Bwietlenia`,
618
- "s85ea99fb52be3385": `Prawda`,
619
- "sb3d4f79d9d8b71e5": `Prze\u015Blij`,
620
- "sc56e9323f076a11e": `Tekst do dodania przerw`,
621
- "scd1dd6ff53d0d01a": `Spr\xF3buj ponownie`,
622
- "sd26e8d4eef55e341": `Sprawd\u017A swoje odpowiedzi`,
623
- "sb0aadaa04e658ad6": `Choice`,
624
- "s2ba5f4d8f3bd7c57": `Order`,
625
- "s2492f5fb1b05b45e": `Text`,
626
- "s49c940aecfef3ea0": `Mark`,
627
- "saa3efba1f0c816b7": `Speech`
628
- };
629
- }
630
- });
631
-
632
- // localization/generated/pt-BR.ts
633
- var pt_BR_exports = {};
634
- __export(pt_BR_exports, {
635
- templates: () => templates21
636
- });
637
- var templates21;
638
- var init_pt_BR = __esm({
639
- "localization/generated/pt-BR.ts"() {
640
- templates21 = {
641
- "s159928724265eb05": `Adicionar op\xE7\xE3o`,
642
- "s1b23c41934894f30": `Explica\xE7\xE3o`,
643
- "s255857544a9d5ec0": `Redefinir`,
644
- "s4802e47fe2e95134": `Op\xE7\xE3o`,
645
- "s54393bfa280ea55b": `Prompt`,
646
- "s7254ca27b16ae2d8": `Falso`,
647
- "s80dc9f56411917df": `Texto para destacar`,
648
- "s85ea99fb52be3385": `Verdadeiro`,
649
- "sb3d4f79d9d8b71e5": `Enviar`,
650
- "sc56e9323f076a11e": `Texto para adicionar lacunas`,
651
- "scd1dd6ff53d0d01a": `Tente novamente`,
652
- "sd26e8d4eef55e341": `Verifique suas respostas`,
653
- "sb0aadaa04e658ad6": `Choice`,
654
- "s2ba5f4d8f3bd7c57": `Order`,
655
- "s2492f5fb1b05b45e": `Text`,
656
- "s49c940aecfef3ea0": `Mark`,
657
- "saa3efba1f0c816b7": `Speech`
658
- };
659
- }
660
- });
661
-
662
- // localization/generated/pt-PT.ts
663
- var pt_PT_exports = {};
664
- __export(pt_PT_exports, {
665
- templates: () => templates22
666
- });
667
- var templates22;
668
- var init_pt_PT = __esm({
669
- "localization/generated/pt-PT.ts"() {
670
- templates22 = {
671
- "s159928724265eb05": `Adicionar op\xE7\xE3o`,
672
- "s1b23c41934894f30": `Explica\xE7\xE3o`,
673
- "s255857544a9d5ec0": `Reiniciar`,
674
- "s4802e47fe2e95134": `Op\xE7\xE3o`,
675
- "s54393bfa280ea55b": `Prompt`,
676
- "s7254ca27b16ae2d8": `Falso`,
677
- "s80dc9f56411917df": `Texto a real\xE7ar`,
678
- "s85ea99fb52be3385": `Verdadeiro`,
679
- "sb3d4f79d9d8b71e5": `Enviar`,
680
- "sc56e9323f076a11e": `Texto para adicionar lacunas`,
681
- "scd1dd6ff53d0d01a": `Tentar novamente`,
682
- "sd26e8d4eef55e341": `Verifique as suas respostas`,
683
- "sb0aadaa04e658ad6": `Choice`,
684
- "s2ba5f4d8f3bd7c57": `Order`,
685
- "s2492f5fb1b05b45e": `Text`,
686
- "s49c940aecfef3ea0": `Mark`,
687
- "saa3efba1f0c816b7": `Speech`
688
- };
689
- }
690
- });
691
-
692
- // localization/generated/ro.ts
693
- var ro_exports = {};
694
- __export(ro_exports, {
695
- templates: () => templates23
696
- });
697
- var templates23;
698
- var init_ro = __esm({
699
- "localization/generated/ro.ts"() {
700
- templates23 = {
701
- "s159928724265eb05": `Adaug\u0103 op\u021Biune`,
702
- "s1b23c41934894f30": `Explica\u021Bie`,
703
- "s255857544a9d5ec0": `Resetare`,
704
- "s4802e47fe2e95134": `Op\u021Biune`,
705
- "s54393bfa280ea55b": `Prompt`,
706
- "s7254ca27b16ae2d8": `Fals`,
707
- "s80dc9f56411917df": `Text pentru eviden\u021Biere`,
708
- "s85ea99fb52be3385": `Adev\u0103rat`,
709
- "sb3d4f79d9d8b71e5": `Trimite`,
710
- "sc56e9323f076a11e": `Text la care s\u0103 ad\u0103uga\u021Bi spa\u021Bii libere`,
711
- "scd1dd6ff53d0d01a": `\xCEncerca\u021Bi din nou`,
712
- "sd26e8d4eef55e341": `Verific\u0103-\u021Bi r\u0103spunsurile`,
713
- "sb0aadaa04e658ad6": `Choice`,
714
- "s2ba5f4d8f3bd7c57": `Order`,
715
- "s2492f5fb1b05b45e": `Text`,
716
- "s49c940aecfef3ea0": `Mark`,
717
- "saa3efba1f0c816b7": `Speech`
718
- };
719
- }
720
- });
721
-
722
- // localization/generated/ru.ts
723
- var ru_exports = {};
724
- __export(ru_exports, {
725
- templates: () => templates24
726
- });
727
- var templates24;
728
- var init_ru = __esm({
729
- "localization/generated/ru.ts"() {
730
- templates24 = {
731
- "s159928724265eb05": `\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043E\u043F\u0446\u0438\u044E`,
732
- "s1b23c41934894f30": `\u041F\u043E\u044F\u0441\u043D\u0435\u043D\u0438\u0435`,
733
- "s255857544a9d5ec0": `\u0421\u0431\u0440\u043E\u0441`,
734
- "s4802e47fe2e95134": `\u0412\u0430\u0440\u0438\u0430\u043D\u0442`,
735
- "s54393bfa280ea55b": `\u0421\u043F\u0440\u0430\u0432\u043A\u0430`,
736
- "s7254ca27b16ae2d8": `\u041B\u043E\u0436\u044C`,
737
- "s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u0438\u044F`,
738
- "s85ea99fb52be3385": `\u041F\u0440\u0430\u0432\u0434\u0430`,
739
- "sb3d4f79d9d8b71e5": `\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C`,
740
- "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`,
741
- "scd1dd6ff53d0d01a": `\u041F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437`,
742
- "sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0441\u0432\u043E\u0438 \u043E\u0442\u0432\u0435\u0442\u044B`,
743
- "sb0aadaa04e658ad6": `Choice`,
744
- "s2ba5f4d8f3bd7c57": `Order`,
745
- "s2492f5fb1b05b45e": `Text`,
746
- "s49c940aecfef3ea0": `Mark`,
747
- "saa3efba1f0c816b7": `Speech`
748
- };
749
- }
750
- });
751
-
752
- // localization/generated/sk.ts
753
- var sk_exports = {};
754
- __export(sk_exports, {
755
- templates: () => templates25
756
- });
757
- var templates25;
758
- var init_sk = __esm({
759
- "localization/generated/sk.ts"() {
760
- templates25 = {
761
- "s159928724265eb05": `Prida\u0165 mo\u017Enos\u0165`,
762
- "s1b23c41934894f30": `Vysvetlenie`,
763
- "s255857544a9d5ec0": `Obnovenie`,
764
- "s4802e47fe2e95134": `Mo\u017Enos\u0165`,
765
- "s54393bfa280ea55b": `Prompt`,
766
- "s7254ca27b16ae2d8": `False`,
767
- "s80dc9f56411917df": `Text na zv\xFDraznenie`,
768
- "s85ea99fb52be3385": `Pravda`,
769
- "sb3d4f79d9d8b71e5": `Odosla\u0165`,
770
- "sc56e9323f076a11e": `Text na pridanie medzier`,
771
- "scd1dd6ff53d0d01a": `Sk\xFAste to znova`,
772
- "sd26e8d4eef55e341": `Skontrolujte svoje odpovede`,
773
- "sb0aadaa04e658ad6": `Choice`,
774
- "s2ba5f4d8f3bd7c57": `Order`,
775
- "s2492f5fb1b05b45e": `Text`,
776
- "s49c940aecfef3ea0": `Mark`,
777
- "saa3efba1f0c816b7": `Speech`
778
- };
779
- }
780
- });
781
-
782
- // localization/generated/sl.ts
783
- var sl_exports = {};
784
- __export(sl_exports, {
785
- templates: () => templates26
786
- });
787
- var templates26;
788
- var init_sl = __esm({
789
- "localization/generated/sl.ts"() {
790
- templates26 = {
791
- "s159928724265eb05": `Dodajanje mo\u017Enosti`,
792
- "s1b23c41934894f30": `Razlaga:`,
793
- "s255857544a9d5ec0": `Ponastavitev`,
794
- "s4802e47fe2e95134": `Mo\u017Enost`,
795
- "s54393bfa280ea55b": `Poziv`,
796
- "s7254ca27b16ae2d8": `La\u017Eno`,
797
- "s80dc9f56411917df": `Besedilo za poudarjanje`,
798
- "s85ea99fb52be3385": `Resni\u010Dno`,
799
- "sb3d4f79d9d8b71e5": `Po\u0161lji`,
800
- "sc56e9323f076a11e": `Besedilo za dodajanje presledkov`,
801
- "scd1dd6ff53d0d01a": `Poskusite znova`,
802
- "sd26e8d4eef55e341": `Preverite svoje odgovore`,
803
- "sb0aadaa04e658ad6": `Choice`,
804
- "s2ba5f4d8f3bd7c57": `Order`,
805
- "s2492f5fb1b05b45e": `Text`,
806
- "s49c940aecfef3ea0": `Mark`,
807
- "saa3efba1f0c816b7": `Speech`
808
- };
809
- }
810
- });
811
-
812
- // localization/generated/sv.ts
813
- var sv_exports = {};
814
- __export(sv_exports, {
815
- templates: () => templates27
816
- });
817
- var templates27;
818
- var init_sv = __esm({
819
- "localization/generated/sv.ts"() {
820
- templates27 = {
821
- "s159928724265eb05": `L\xE4gg till alternativ`,
822
- "s1b23c41934894f30": `F\xF6rklaring`,
823
- "s255857544a9d5ec0": `\xC5terst\xE4llning`,
824
- "s4802e47fe2e95134": `Alternativ`,
825
- "s54393bfa280ea55b": `Fr\xE5gest\xE4llning`,
826
- "s7254ca27b16ae2d8": `Falsk`,
827
- "s80dc9f56411917df": `Text att lyfta fram`,
828
- "s85ea99fb52be3385": `Sant`,
829
- "sb3d4f79d9d8b71e5": `Skicka in`,
830
- "sc56e9323f076a11e": `Text att l\xE4gga till luckor i`,
831
- "scd1dd6ff53d0d01a": `F\xF6rs\xF6k igen`,
832
- "sd26e8d4eef55e341": `Kontrollera dina svar`,
833
- "sb0aadaa04e658ad6": `Choice`,
834
- "s2ba5f4d8f3bd7c57": `Order`,
835
- "s2492f5fb1b05b45e": `Text`,
836
- "s49c940aecfef3ea0": `Mark`,
837
- "saa3efba1f0c816b7": `Speech`
838
- };
839
- }
840
- });
841
-
842
- // localization/generated/tr.ts
843
- var tr_exports = {};
844
- __export(tr_exports, {
845
- templates: () => templates28
846
- });
847
- var templates28;
848
- var init_tr = __esm({
849
- "localization/generated/tr.ts"() {
850
- templates28 = {
851
- "s159928724265eb05": `Se\xE7enek Ekle`,
852
- "s1b23c41934894f30": `A\xE7\u0131klama`,
853
- "s255857544a9d5ec0": `S\u0131f\u0131rla`,
854
- "s4802e47fe2e95134": `Opsiyon`,
855
- "s54393bfa280ea55b": `\u0130stem`,
856
- "s7254ca27b16ae2d8": `Yanl\u0131\u015F`,
857
- "s80dc9f56411917df": `Vurgulanacak Metin`,
858
- "s85ea99fb52be3385": `Do\u011Fru`,
859
- "sb3d4f79d9d8b71e5": `G\xF6nder`,
860
- "sc56e9323f076a11e": `Bo\u015Fluk eklenecek metin`,
861
- "scd1dd6ff53d0d01a": `Tekrar deneyin`,
862
- "sd26e8d4eef55e341": `Cevaplar\u0131n\u0131z\u0131 kontrol edin`,
863
- "sb0aadaa04e658ad6": `Choice`,
864
- "s2ba5f4d8f3bd7c57": `Order`,
865
- "s2492f5fb1b05b45e": `Text`,
866
- "s49c940aecfef3ea0": `Mark`,
867
- "saa3efba1f0c816b7": `Speech`
868
- };
869
- }
870
- });
871
-
872
- // localization/generated/uk.ts
873
- var uk_exports = {};
874
- __export(uk_exports, {
875
- templates: () => templates29
876
- });
877
- var templates29;
878
- var init_uk = __esm({
879
- "localization/generated/uk.ts"() {
880
- templates29 = {
881
- "s159928724265eb05": `\u0414\u043E\u0434\u0430\u0442\u0438 \u043E\u043F\u0446\u0456\u044E`,
882
- "s1b23c41934894f30": `\u041F\u043E\u044F\u0441\u043D\u0435\u043D\u043D\u044F`,
883
- "s255857544a9d5ec0": `\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F`,
884
- "s4802e47fe2e95134": `\u0412\u0430\u0440\u0456\u0430\u043D\u0442`,
885
- "s54393bfa280ea55b": `\u0428\u0432\u0438\u0434\u043A\u043E`,
886
- "s7254ca27b16ae2d8": `\u041D\u0435\u043F\u0440\u0430\u0432\u0434\u0430.`,
887
- "s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0432\u0438\u0434\u0456\u043B\u0435\u043D\u043D\u044F`,
888
- "s85ea99fb52be3385": `\u041F\u0440\u0430\u0432\u0434\u0430.`,
889
- "sb3d4f79d9d8b71e5": `\u041D\u0430\u0434\u0456\u0441\u043B\u0430\u0442\u0438`,
890
- "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`,
891
- "scd1dd6ff53d0d01a": `\u0421\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0449\u0435 \u0440\u0430\u0437.`,
892
- "sd26e8d4eef55e341": `\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0441\u0432\u043E\u0457 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0456`,
893
- "sb0aadaa04e658ad6": `Choice`,
894
- "s2ba5f4d8f3bd7c57": `Order`,
895
- "s2492f5fb1b05b45e": `Text`,
896
- "s49c940aecfef3ea0": `Mark`,
897
- "saa3efba1f0c816b7": `Speech`
898
- };
899
- }
900
- });
901
-
902
- // localization/generated/zh-hans.ts
903
- var zh_hans_exports = {};
904
- __export(zh_hans_exports, {
905
- templates: () => templates30
906
- });
907
- var templates30;
908
- var init_zh_hans = __esm({
909
- "localization/generated/zh-hans.ts"() {
910
- templates30 = {
911
- "s159928724265eb05": `\u6DFB\u52A0\u9009\u9879`,
912
- "s1b23c41934894f30": `\u8BF4\u660E`,
913
- "s255857544a9d5ec0": `\u91CD\u7F6E`,
914
- "s4802e47fe2e95134": `\u9009\u9879`,
915
- "s54393bfa280ea55b": `\u63D0\u793A`,
916
- "s7254ca27b16ae2d8": `\u5047\u7684`,
917
- "s80dc9f56411917df": `\u7A81\u51FA\u663E\u793A\u6587\u672C`,
918
- "s85ea99fb52be3385": `\u6B63\u786E`,
919
- "sb3d4f79d9d8b71e5": `\u63D0\u4EA4`,
920
- "sc56e9323f076a11e": `\u4E3A\u6587\u672C\u6DFB\u52A0\u95F4\u9699`,
921
- "scd1dd6ff53d0d01a": `\u518D\u8BD5\u4E00\u6B21`,
922
- "sd26e8d4eef55e341": `\u68C0\u67E5\u7B54\u6848`,
923
- "sb0aadaa04e658ad6": `Choice`,
924
- "s2ba5f4d8f3bd7c57": `Order`,
925
- "s2492f5fb1b05b45e": `Text`,
926
- "s49c940aecfef3ea0": `Mark`,
927
- "saa3efba1f0c816b7": `Speech`
928
- };
929
- }
930
- });
931
-
932
- // node_modules/@lit/reactive-element/css-tag.js
933
- var t = globalThis;
934
- var e = t.ShadowRoot && (void 0 === t.ShadyCSS || t.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
935
- var s = Symbol();
936
- var o = /* @__PURE__ */ new WeakMap();
937
- var n = class {
938
- constructor(t5, e6, o5) {
939
- if (this._$cssResult$ = true, o5 !== s) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
940
- this.cssText = t5, this.t = e6;
941
- }
942
- get styleSheet() {
943
- let t5 = this.o;
944
- const s4 = this.t;
945
- if (e && void 0 === t5) {
946
- const e6 = void 0 !== s4 && 1 === s4.length;
947
- e6 && (t5 = o.get(s4)), void 0 === t5 && ((this.o = t5 = new CSSStyleSheet()).replaceSync(this.cssText), e6 && o.set(s4, t5));
948
- }
949
- return t5;
950
- }
951
- toString() {
952
- return this.cssText;
953
- }
954
- };
955
- var r = (t5) => new n("string" == typeof t5 ? t5 : t5 + "", void 0, s);
956
- var S = (s4, o5) => {
957
- if (e) s4.adoptedStyleSheets = o5.map((t5) => t5 instanceof CSSStyleSheet ? t5 : t5.styleSheet);
958
- else for (const e6 of o5) {
959
- const o6 = document.createElement("style"), n6 = t.litNonce;
960
- void 0 !== n6 && o6.setAttribute("nonce", n6), o6.textContent = e6.cssText, s4.appendChild(o6);
961
- }
962
- };
963
- var c = e ? (t5) => t5 : (t5) => t5 instanceof CSSStyleSheet ? ((t6) => {
964
- let e6 = "";
965
- for (const s4 of t6.cssRules) e6 += s4.cssText;
966
- return r(e6);
967
- })(t5) : t5;
968
-
969
- // node_modules/@lit/reactive-element/reactive-element.js
970
- var { is: i2, defineProperty: e2, getOwnPropertyDescriptor: r2, getOwnPropertyNames: h, getOwnPropertySymbols: o2, getPrototypeOf: n2 } = Object;
971
- var a = globalThis;
972
- var c2 = a.trustedTypes;
973
- var l = c2 ? c2.emptyScript : "";
974
- var p = a.reactiveElementPolyfillSupport;
975
- var d = (t5, s4) => t5;
976
- var u = { toAttribute(t5, s4) {
977
- switch (s4) {
978
- case Boolean:
979
- t5 = t5 ? l : null;
980
- break;
981
- case Object:
982
- case Array:
983
- t5 = null == t5 ? t5 : JSON.stringify(t5);
984
- }
985
- return t5;
986
- }, fromAttribute(t5, s4) {
987
- let i5 = t5;
988
- switch (s4) {
989
- case Boolean:
990
- i5 = null !== t5;
991
- break;
992
- case Number:
993
- i5 = null === t5 ? null : Number(t5);
994
- break;
995
- case Object:
996
- case Array:
997
- try {
998
- i5 = JSON.parse(t5);
999
- } catch (t6) {
1000
- i5 = null;
1001
- }
1002
- }
1003
- return i5;
1004
- } };
1005
- var f = (t5, s4) => !i2(t5, s4);
1006
- var y = { attribute: true, type: String, converter: u, reflect: false, hasChanged: f };
1007
- Symbol.metadata ??= Symbol("metadata"), a.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
1008
- var b = class extends HTMLElement {
1009
- static addInitializer(t5) {
1010
- this._$Ei(), (this.l ??= []).push(t5);
1011
- }
1012
- static get observedAttributes() {
1013
- return this.finalize(), this._$Eh && [...this._$Eh.keys()];
1014
- }
1015
- static createProperty(t5, s4 = y) {
1016
- if (s4.state && (s4.attribute = false), this._$Ei(), this.elementProperties.set(t5, s4), !s4.noAccessor) {
1017
- const i5 = Symbol(), r6 = this.getPropertyDescriptor(t5, i5, s4);
1018
- void 0 !== r6 && e2(this.prototype, t5, r6);
1019
- }
1020
- }
1021
- static getPropertyDescriptor(t5, s4, i5) {
1022
- const { get: e6, set: h4 } = r2(this.prototype, t5) ?? { get() {
1023
- return this[s4];
1024
- }, set(t6) {
1025
- this[s4] = t6;
1026
- } };
1027
- return { get() {
1028
- return e6?.call(this);
1029
- }, set(s5) {
1030
- const r6 = e6?.call(this);
1031
- h4.call(this, s5), this.requestUpdate(t5, r6, i5);
1032
- }, configurable: true, enumerable: true };
1033
- }
1034
- static getPropertyOptions(t5) {
1035
- return this.elementProperties.get(t5) ?? y;
1036
- }
1037
- static _$Ei() {
1038
- if (this.hasOwnProperty(d("elementProperties"))) return;
1039
- const t5 = n2(this);
1040
- t5.finalize(), void 0 !== t5.l && (this.l = [...t5.l]), this.elementProperties = new Map(t5.elementProperties);
1041
- }
1042
- static finalize() {
1043
- if (this.hasOwnProperty(d("finalized"))) return;
1044
- if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d("properties"))) {
1045
- const t6 = this.properties, s4 = [...h(t6), ...o2(t6)];
1046
- for (const i5 of s4) this.createProperty(i5, t6[i5]);
1047
- }
1048
- const t5 = this[Symbol.metadata];
1049
- if (null !== t5) {
1050
- const s4 = litPropertyMetadata.get(t5);
1051
- if (void 0 !== s4) for (const [t6, i5] of s4) this.elementProperties.set(t6, i5);
1052
- }
1053
- this._$Eh = /* @__PURE__ */ new Map();
1054
- for (const [t6, s4] of this.elementProperties) {
1055
- const i5 = this._$Eu(t6, s4);
1056
- void 0 !== i5 && this._$Eh.set(i5, t6);
1057
- }
1058
- this.elementStyles = this.finalizeStyles(this.styles);
1059
- }
1060
- static finalizeStyles(s4) {
1061
- const i5 = [];
1062
- if (Array.isArray(s4)) {
1063
- const e6 = new Set(s4.flat(1 / 0).reverse());
1064
- for (const s5 of e6) i5.unshift(c(s5));
1065
- } else void 0 !== s4 && i5.push(c(s4));
1066
- return i5;
1067
- }
1068
- static _$Eu(t5, s4) {
1069
- const i5 = s4.attribute;
1070
- return false === i5 ? void 0 : "string" == typeof i5 ? i5 : "string" == typeof t5 ? t5.toLowerCase() : void 0;
1071
- }
1072
- constructor() {
1073
- super(), this._$Ep = void 0, this.isUpdatePending = false, this.hasUpdated = false, this._$Em = null, this._$Ev();
1074
- }
1075
- _$Ev() {
1076
- this._$ES = new Promise((t5) => this.enableUpdating = t5), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t5) => t5(this));
1077
- }
1078
- addController(t5) {
1079
- (this._$EO ??= /* @__PURE__ */ new Set()).add(t5), void 0 !== this.renderRoot && this.isConnected && t5.hostConnected?.();
1080
- }
1081
- removeController(t5) {
1082
- this._$EO?.delete(t5);
1083
- }
1084
- _$E_() {
1085
- const t5 = /* @__PURE__ */ new Map(), s4 = this.constructor.elementProperties;
1086
- for (const i5 of s4.keys()) this.hasOwnProperty(i5) && (t5.set(i5, this[i5]), delete this[i5]);
1087
- t5.size > 0 && (this._$Ep = t5);
1088
- }
1089
- createRenderRoot() {
1090
- const t5 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
1091
- return S(t5, this.constructor.elementStyles), t5;
1092
- }
1093
- connectedCallback() {
1094
- this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t5) => t5.hostConnected?.());
1095
- }
1096
- enableUpdating(t5) {
1097
- }
1098
- disconnectedCallback() {
1099
- this._$EO?.forEach((t5) => t5.hostDisconnected?.());
1100
- }
1101
- attributeChangedCallback(t5, s4, i5) {
1102
- this._$AK(t5, i5);
1103
- }
1104
- _$EC(t5, s4) {
1105
- const i5 = this.constructor.elementProperties.get(t5), e6 = this.constructor._$Eu(t5, i5);
1106
- if (void 0 !== e6 && true === i5.reflect) {
1107
- const r6 = (void 0 !== i5.converter?.toAttribute ? i5.converter : u).toAttribute(s4, i5.type);
1108
- this._$Em = t5, null == r6 ? this.removeAttribute(e6) : this.setAttribute(e6, r6), this._$Em = null;
1109
- }
1110
- }
1111
- _$AK(t5, s4) {
1112
- const i5 = this.constructor, e6 = i5._$Eh.get(t5);
1113
- if (void 0 !== e6 && this._$Em !== e6) {
1114
- const t6 = i5.getPropertyOptions(e6), r6 = "function" == typeof t6.converter ? { fromAttribute: t6.converter } : void 0 !== t6.converter?.fromAttribute ? t6.converter : u;
1115
- this._$Em = e6, this[e6] = r6.fromAttribute(s4, t6.type), this._$Em = null;
1116
- }
1117
- }
1118
- requestUpdate(t5, s4, i5) {
1119
- if (void 0 !== t5) {
1120
- if (i5 ??= this.constructor.getPropertyOptions(t5), !(i5.hasChanged ?? f)(this[t5], s4)) return;
1121
- this.P(t5, s4, i5);
1122
- }
1123
- false === this.isUpdatePending && (this._$ES = this._$ET());
1124
- }
1125
- P(t5, s4, i5) {
1126
- this._$AL.has(t5) || this._$AL.set(t5, s4), true === i5.reflect && this._$Em !== t5 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t5);
1127
- }
1128
- async _$ET() {
1129
- this.isUpdatePending = true;
1130
- try {
1131
- await this._$ES;
1132
- } catch (t6) {
1133
- Promise.reject(t6);
1134
- }
1135
- const t5 = this.scheduleUpdate();
1136
- return null != t5 && await t5, !this.isUpdatePending;
1137
- }
1138
- scheduleUpdate() {
1139
- return this.performUpdate();
1140
- }
1141
- performUpdate() {
1142
- if (!this.isUpdatePending) return;
1143
- if (!this.hasUpdated) {
1144
- if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
1145
- for (const [t7, s5] of this._$Ep) this[t7] = s5;
1146
- this._$Ep = void 0;
1147
- }
1148
- const t6 = this.constructor.elementProperties;
1149
- if (t6.size > 0) for (const [s5, i5] of t6) true !== i5.wrapped || this._$AL.has(s5) || void 0 === this[s5] || this.P(s5, this[s5], i5);
1150
- }
1151
- let t5 = false;
1152
- const s4 = this._$AL;
1153
- try {
1154
- t5 = this.shouldUpdate(s4), t5 ? (this.willUpdate(s4), this._$EO?.forEach((t6) => t6.hostUpdate?.()), this.update(s4)) : this._$EU();
1155
- } catch (s5) {
1156
- throw t5 = false, this._$EU(), s5;
1157
- }
1158
- t5 && this._$AE(s4);
1159
- }
1160
- willUpdate(t5) {
1161
- }
1162
- _$AE(t5) {
1163
- this._$EO?.forEach((t6) => t6.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t5)), this.updated(t5);
1164
- }
1165
- _$EU() {
1166
- this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = false;
1167
- }
1168
- get updateComplete() {
1169
- return this.getUpdateComplete();
1170
- }
1171
- getUpdateComplete() {
1172
- return this._$ES;
1173
- }
1174
- shouldUpdate(t5) {
1175
- return true;
1176
- }
1177
- update(t5) {
1178
- this._$Ej &&= this._$Ej.forEach((t6) => this._$EC(t6, this[t6])), this._$EU();
1179
- }
1180
- updated(t5) {
1181
- }
1182
- firstUpdated(t5) {
1183
- }
1184
- };
1185
- b.elementStyles = [], b.shadowRootOptions = { mode: "open" }, b[d("elementProperties")] = /* @__PURE__ */ new Map(), b[d("finalized")] = /* @__PURE__ */ new Map(), p?.({ ReactiveElement: b }), (a.reactiveElementVersions ??= []).push("2.0.4");
1186
-
1187
- // node_modules/lit-html/lit-html.js
1188
- var t2 = globalThis;
1189
- var i3 = t2.trustedTypes;
1190
- var s2 = i3 ? i3.createPolicy("lit-html", { createHTML: (t5) => t5 }) : void 0;
1191
- var e3 = "$lit$";
1192
- var h2 = `lit$${Math.random().toFixed(9).slice(2)}$`;
1193
- var o3 = "?" + h2;
1194
- var n3 = `<${o3}>`;
1195
- var r3 = document;
1196
- var l2 = () => r3.createComment("");
1197
- var c3 = (t5) => null === t5 || "object" != typeof t5 && "function" != typeof t5;
1198
- var a2 = Array.isArray;
1199
- var u2 = (t5) => a2(t5) || "function" == typeof t5?.[Symbol.iterator];
1200
- var d2 = "[ \n\f\r]";
1201
- var f2 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
1202
- var v = /-->/g;
1203
- var _ = />/g;
1204
- var m = RegExp(`>|${d2}(?:([^\\s"'>=/]+)(${d2}*=${d2}*(?:[^
1205
- \f\r"'\`<>=]|("|')|))|$)`, "g");
1206
- var p2 = /'/g;
1207
- var g = /"/g;
1208
- var $ = /^(?:script|style|textarea|title)$/i;
1209
- var y2 = (t5) => (i5, ...s4) => ({ _$litType$: t5, strings: i5, values: s4 });
1210
- var x = y2(1);
1211
- var b2 = y2(2);
1212
- var w = y2(3);
1213
- var T = Symbol.for("lit-noChange");
1214
- var E = Symbol.for("lit-nothing");
1215
- var A = /* @__PURE__ */ new WeakMap();
1216
- var C = r3.createTreeWalker(r3, 129);
1217
- function P(t5, i5) {
1218
- if (!a2(t5) || !t5.hasOwnProperty("raw")) throw Error("invalid template strings array");
1219
- return void 0 !== s2 ? s2.createHTML(i5) : i5;
1220
- }
1221
- var V = (t5, i5) => {
1222
- const s4 = t5.length - 1, o5 = [];
1223
- let r6, l4 = 2 === i5 ? "<svg>" : 3 === i5 ? "<math>" : "", c5 = f2;
1224
- for (let i6 = 0; i6 < s4; i6++) {
1225
- const s5 = t5[i6];
1226
- let a4, u4, d4 = -1, y4 = 0;
1227
- for (; y4 < s5.length && (c5.lastIndex = y4, u4 = c5.exec(s5), null !== u4); ) y4 = c5.lastIndex, c5 === f2 ? "!--" === u4[1] ? c5 = v : void 0 !== u4[1] ? c5 = _ : void 0 !== u4[2] ? ($.test(u4[2]) && (r6 = RegExp("</" + u4[2], "g")), c5 = m) : void 0 !== u4[3] && (c5 = m) : c5 === m ? ">" === u4[0] ? (c5 = r6 ?? f2, d4 = -1) : void 0 === u4[1] ? d4 = -2 : (d4 = c5.lastIndex - u4[2].length, a4 = u4[1], c5 = void 0 === u4[3] ? m : '"' === u4[3] ? g : p2) : c5 === g || c5 === p2 ? c5 = m : c5 === v || c5 === _ ? c5 = f2 : (c5 = m, r6 = void 0);
1228
- const x3 = c5 === m && t5[i6 + 1].startsWith("/>") ? " " : "";
1229
- l4 += c5 === f2 ? s5 + n3 : d4 >= 0 ? (o5.push(a4), s5.slice(0, d4) + e3 + s5.slice(d4) + h2 + x3) : s5 + h2 + (-2 === d4 ? i6 : x3);
1230
- }
1231
- return [P(t5, l4 + (t5[s4] || "<?>") + (2 === i5 ? "</svg>" : 3 === i5 ? "</math>" : "")), o5];
1232
- };
1233
- var N = class _N {
1234
- constructor({ strings: t5, _$litType$: s4 }, n6) {
1235
- let r6;
1236
- this.parts = [];
1237
- let c5 = 0, a4 = 0;
1238
- const u4 = t5.length - 1, d4 = this.parts, [f4, v3] = V(t5, s4);
1239
- if (this.el = _N.createElement(f4, n6), C.currentNode = this.el.content, 2 === s4 || 3 === s4) {
1240
- const t6 = this.el.content.firstChild;
1241
- t6.replaceWith(...t6.childNodes);
1242
- }
1243
- for (; null !== (r6 = C.nextNode()) && d4.length < u4; ) {
1244
- if (1 === r6.nodeType) {
1245
- if (r6.hasAttributes()) for (const t6 of r6.getAttributeNames()) if (t6.endsWith(e3)) {
1246
- const i5 = v3[a4++], s5 = r6.getAttribute(t6).split(h2), e6 = /([.?@])?(.*)/.exec(i5);
1247
- d4.push({ type: 1, index: c5, name: e6[2], strings: s5, ctor: "." === e6[1] ? H : "?" === e6[1] ? I : "@" === e6[1] ? L : k }), r6.removeAttribute(t6);
1248
- } else t6.startsWith(h2) && (d4.push({ type: 6, index: c5 }), r6.removeAttribute(t6));
1249
- if ($.test(r6.tagName)) {
1250
- const t6 = r6.textContent.split(h2), s5 = t6.length - 1;
1251
- if (s5 > 0) {
1252
- r6.textContent = i3 ? i3.emptyScript : "";
1253
- for (let i5 = 0; i5 < s5; i5++) r6.append(t6[i5], l2()), C.nextNode(), d4.push({ type: 2, index: ++c5 });
1254
- r6.append(t6[s5], l2());
1255
- }
1256
- }
1257
- } else if (8 === r6.nodeType) if (r6.data === o3) d4.push({ type: 2, index: c5 });
1258
- else {
1259
- let t6 = -1;
1260
- for (; -1 !== (t6 = r6.data.indexOf(h2, t6 + 1)); ) d4.push({ type: 7, index: c5 }), t6 += h2.length - 1;
1261
- }
1262
- c5++;
1263
- }
1264
- }
1265
- static createElement(t5, i5) {
1266
- const s4 = r3.createElement("template");
1267
- return s4.innerHTML = t5, s4;
1268
- }
1269
- };
1270
- function S2(t5, i5, s4 = t5, e6) {
1271
- if (i5 === T) return i5;
1272
- let h4 = void 0 !== e6 ? s4._$Co?.[e6] : s4._$Cl;
1273
- const o5 = c3(i5) ? void 0 : i5._$litDirective$;
1274
- return h4?.constructor !== o5 && (h4?._$AO?.(false), void 0 === o5 ? h4 = void 0 : (h4 = new o5(t5), h4._$AT(t5, s4, e6)), void 0 !== e6 ? (s4._$Co ??= [])[e6] = h4 : s4._$Cl = h4), void 0 !== h4 && (i5 = S2(t5, h4._$AS(t5, i5.values), h4, e6)), i5;
1275
- }
1276
- var M = class {
1277
- constructor(t5, i5) {
1278
- this._$AV = [], this._$AN = void 0, this._$AD = t5, this._$AM = i5;
1279
- }
1280
- get parentNode() {
1281
- return this._$AM.parentNode;
1282
- }
1283
- get _$AU() {
1284
- return this._$AM._$AU;
1285
- }
1286
- u(t5) {
1287
- const { el: { content: i5 }, parts: s4 } = this._$AD, e6 = (t5?.creationScope ?? r3).importNode(i5, true);
1288
- C.currentNode = e6;
1289
- let h4 = C.nextNode(), o5 = 0, n6 = 0, l4 = s4[0];
1290
- for (; void 0 !== l4; ) {
1291
- if (o5 === l4.index) {
1292
- let i6;
1293
- 2 === l4.type ? i6 = new R(h4, h4.nextSibling, this, t5) : 1 === l4.type ? i6 = new l4.ctor(h4, l4.name, l4.strings, this, t5) : 6 === l4.type && (i6 = new z(h4, this, t5)), this._$AV.push(i6), l4 = s4[++n6];
1294
- }
1295
- o5 !== l4?.index && (h4 = C.nextNode(), o5++);
1296
- }
1297
- return C.currentNode = r3, e6;
1298
- }
1299
- p(t5) {
1300
- let i5 = 0;
1301
- for (const s4 of this._$AV) void 0 !== s4 && (void 0 !== s4.strings ? (s4._$AI(t5, s4, i5), i5 += s4.strings.length - 2) : s4._$AI(t5[i5])), i5++;
1302
- }
1303
- };
1304
- var R = class _R {
1305
- get _$AU() {
1306
- return this._$AM?._$AU ?? this._$Cv;
1307
- }
1308
- constructor(t5, i5, s4, e6) {
1309
- this.type = 2, this._$AH = E, this._$AN = void 0, this._$AA = t5, this._$AB = i5, this._$AM = s4, this.options = e6, this._$Cv = e6?.isConnected ?? true;
1310
- }
1311
- get parentNode() {
1312
- let t5 = this._$AA.parentNode;
1313
- const i5 = this._$AM;
1314
- return void 0 !== i5 && 11 === t5?.nodeType && (t5 = i5.parentNode), t5;
1315
- }
1316
- get startNode() {
1317
- return this._$AA;
1318
- }
1319
- get endNode() {
1320
- return this._$AB;
1321
- }
1322
- _$AI(t5, i5 = this) {
1323
- t5 = S2(this, t5, i5), c3(t5) ? t5 === E || null == t5 || "" === t5 ? (this._$AH !== E && this._$AR(), this._$AH = E) : t5 !== this._$AH && t5 !== T && this._(t5) : void 0 !== t5._$litType$ ? this.$(t5) : void 0 !== t5.nodeType ? this.T(t5) : u2(t5) ? this.k(t5) : this._(t5);
1324
- }
1325
- O(t5) {
1326
- return this._$AA.parentNode.insertBefore(t5, this._$AB);
1327
- }
1328
- T(t5) {
1329
- this._$AH !== t5 && (this._$AR(), this._$AH = this.O(t5));
1330
- }
1331
- _(t5) {
1332
- this._$AH !== E && c3(this._$AH) ? this._$AA.nextSibling.data = t5 : this.T(r3.createTextNode(t5)), this._$AH = t5;
1333
- }
1334
- $(t5) {
1335
- const { values: i5, _$litType$: s4 } = t5, e6 = "number" == typeof s4 ? this._$AC(t5) : (void 0 === s4.el && (s4.el = N.createElement(P(s4.h, s4.h[0]), this.options)), s4);
1336
- if (this._$AH?._$AD === e6) this._$AH.p(i5);
1337
- else {
1338
- const t6 = new M(e6, this), s5 = t6.u(this.options);
1339
- t6.p(i5), this.T(s5), this._$AH = t6;
1340
- }
1341
- }
1342
- _$AC(t5) {
1343
- let i5 = A.get(t5.strings);
1344
- return void 0 === i5 && A.set(t5.strings, i5 = new N(t5)), i5;
1345
- }
1346
- k(t5) {
1347
- a2(this._$AH) || (this._$AH = [], this._$AR());
1348
- const i5 = this._$AH;
1349
- let s4, e6 = 0;
1350
- for (const h4 of t5) e6 === i5.length ? i5.push(s4 = new _R(this.O(l2()), this.O(l2()), this, this.options)) : s4 = i5[e6], s4._$AI(h4), e6++;
1351
- e6 < i5.length && (this._$AR(s4 && s4._$AB.nextSibling, e6), i5.length = e6);
1352
- }
1353
- _$AR(t5 = this._$AA.nextSibling, i5) {
1354
- for (this._$AP?.(false, true, i5); t5 && t5 !== this._$AB; ) {
1355
- const i6 = t5.nextSibling;
1356
- t5.remove(), t5 = i6;
1357
- }
1358
- }
1359
- setConnected(t5) {
1360
- void 0 === this._$AM && (this._$Cv = t5, this._$AP?.(t5));
1361
- }
1362
- };
1363
- var k = class {
1364
- get tagName() {
1365
- return this.element.tagName;
1366
- }
1367
- get _$AU() {
1368
- return this._$AM._$AU;
1369
- }
1370
- constructor(t5, i5, s4, e6, h4) {
1371
- this.type = 1, this._$AH = E, this._$AN = void 0, this.element = t5, this.name = i5, this._$AM = e6, this.options = h4, s4.length > 2 || "" !== s4[0] || "" !== s4[1] ? (this._$AH = Array(s4.length - 1).fill(new String()), this.strings = s4) : this._$AH = E;
1372
- }
1373
- _$AI(t5, i5 = this, s4, e6) {
1374
- const h4 = this.strings;
1375
- let o5 = false;
1376
- if (void 0 === h4) t5 = S2(this, t5, i5, 0), o5 = !c3(t5) || t5 !== this._$AH && t5 !== T, o5 && (this._$AH = t5);
1377
- else {
1378
- const e7 = t5;
1379
- let n6, r6;
1380
- for (t5 = h4[0], n6 = 0; n6 < h4.length - 1; n6++) r6 = S2(this, e7[s4 + n6], i5, n6), r6 === T && (r6 = this._$AH[n6]), o5 ||= !c3(r6) || r6 !== this._$AH[n6], r6 === E ? t5 = E : t5 !== E && (t5 += (r6 ?? "") + h4[n6 + 1]), this._$AH[n6] = r6;
1381
- }
1382
- o5 && !e6 && this.j(t5);
1383
- }
1384
- j(t5) {
1385
- t5 === E ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t5 ?? "");
1386
- }
1387
- };
1388
- var H = class extends k {
1389
- constructor() {
1390
- super(...arguments), this.type = 3;
1391
- }
1392
- j(t5) {
1393
- this.element[this.name] = t5 === E ? void 0 : t5;
1394
- }
1395
- };
1396
- var I = class extends k {
1397
- constructor() {
1398
- super(...arguments), this.type = 4;
1399
- }
1400
- j(t5) {
1401
- this.element.toggleAttribute(this.name, !!t5 && t5 !== E);
1402
- }
1403
- };
1404
- var L = class extends k {
1405
- constructor(t5, i5, s4, e6, h4) {
1406
- super(t5, i5, s4, e6, h4), this.type = 5;
1407
- }
1408
- _$AI(t5, i5 = this) {
1409
- if ((t5 = S2(this, t5, i5, 0) ?? E) === T) return;
1410
- const s4 = this._$AH, e6 = t5 === E && s4 !== E || t5.capture !== s4.capture || t5.once !== s4.once || t5.passive !== s4.passive, h4 = t5 !== E && (s4 === E || e6);
1411
- e6 && this.element.removeEventListener(this.name, this, s4), h4 && this.element.addEventListener(this.name, this, t5), this._$AH = t5;
1412
- }
1413
- handleEvent(t5) {
1414
- "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t5) : this._$AH.handleEvent(t5);
1415
- }
1416
- };
1417
- var z = class {
1418
- constructor(t5, i5, s4) {
1419
- this.element = t5, this.type = 6, this._$AN = void 0, this._$AM = i5, this.options = s4;
1420
- }
1421
- get _$AU() {
1422
- return this._$AM._$AU;
1423
- }
1424
- _$AI(t5) {
1425
- S2(this, t5);
1426
- }
1427
- };
1428
- var j = t2.litHtmlPolyfillSupport;
1429
- j?.(N, R), (t2.litHtmlVersions ??= []).push("3.2.1");
1430
- var B = (t5, i5, s4) => {
1431
- const e6 = s4?.renderBefore ?? i5;
1432
- let h4 = e6._$litPart$;
1433
- if (void 0 === h4) {
1434
- const t6 = s4?.renderBefore ?? null;
1435
- e6._$litPart$ = h4 = new R(i5.insertBefore(l2(), t6), t6, void 0, s4 ?? {});
1436
- }
1437
- return h4._$AI(t5), h4;
1438
- };
1439
-
1440
- // node_modules/lit-element/lit-element.js
1441
- var r4 = class extends b {
1442
- constructor() {
1443
- super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
1444
- }
1445
- createRenderRoot() {
1446
- const t5 = super.createRenderRoot();
1447
- return this.renderOptions.renderBefore ??= t5.firstChild, t5;
1448
- }
1449
- update(t5) {
1450
- const s4 = this.render();
1451
- this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t5), this._$Do = B(s4, this.renderRoot, this.renderOptions);
1452
- }
1453
- connectedCallback() {
1454
- super.connectedCallback(), this._$Do?.setConnected(true);
1455
- }
1456
- disconnectedCallback() {
1457
- super.disconnectedCallback(), this._$Do?.setConnected(false);
1458
- }
1459
- render() {
1460
- return T;
1461
- }
1462
- };
1463
- r4._$litElement$ = true, r4["finalized"] = true, globalThis.litElementHydrateSupport?.({ LitElement: r4 });
1464
- var i4 = globalThis.litElementPolyfillSupport;
1465
- i4?.({ LitElement: r4 });
1466
- (globalThis.litElementVersions ??= []).push("4.1.1");
1467
-
1468
- // node_modules/@webwriter/lit/index.js
1469
- var __create2 = Object.create;
1470
- var __defProp2 = Object.defineProperty;
1471
- var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
1472
- var __knownSymbol2 = (name, symbol) => (symbol = Symbol[name]) ? symbol : Symbol.for("Symbol." + name);
1473
- var __typeError2 = (msg2) => {
1474
- throw TypeError(msg2);
1475
- };
1476
- var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
1477
- var __name2 = (target, value) => __defProp2(target, "name", { value, configurable: true });
1478
- var __decoratorStart2 = (base) => [, , , __create2(base?.[__knownSymbol2("metadata")] ?? null)];
1479
- var __decoratorStrings2 = ["class", "method", "getter", "setter", "accessor", "field", "value", "get", "set"];
1480
- var __expectFn2 = (fn) => fn !== void 0 && typeof fn !== "function" ? __typeError2("Function expected") : fn;
1481
- var __decoratorContext2 = (kind, name, done, metadata, fns) => ({ kind: __decoratorStrings2[kind], name, metadata, addInitializer: (fn) => done._ ? __typeError2("Already initialized") : fns.push(__expectFn2(fn || null)) });
1482
- var __decoratorMetadata2 = (array, target) => __defNormalProp2(target, __knownSymbol2("metadata"), array[3]);
1483
- var __runInitializers2 = (array, flags, self, value) => {
1484
- for (var i32 = 0, fns = array[flags >> 1], n52 = fns && fns.length; i32 < n52; i32++) flags & 1 ? fns[i32].call(self) : value = fns[i32].call(self, value);
1485
- return value;
1486
- };
1487
- var __decorateElement2 = (array, flags, name, decorators, target, extra) => {
1488
- var fn, it, done, ctx, access, k22 = flags & 7, s22 = !!(flags & 8), p22 = !!(flags & 16);
1489
- var j22 = k22 > 3 ? array.length + 1 : k22 ? s22 ? 1 : 2 : 0, key = __decoratorStrings2[k22 + 5];
1490
- var initializers = k22 > 3 && (array[j22 - 1] = []), extraInitializers = array[j22] || (array[j22] = []);
1491
- var desc = k22 && (!p22 && !s22 && (target = target.prototype), k22 < 5 && (k22 > 3 || !p22) && __getOwnPropDesc2(k22 < 4 ? target : { get [name]() {
1492
- return __privateGet2(this, extra);
1493
- }, set [name](x22) {
1494
- return __privateSet2(this, extra, x22);
1495
- } }, name));
1496
- k22 ? p22 && k22 < 4 && __name2(extra, (k22 > 2 ? "set " : k22 > 1 ? "get " : "") + name) : __name2(target, name);
1497
- for (var i32 = decorators.length - 1; i32 >= 0; i32--) {
1498
- ctx = __decoratorContext2(k22, name, done = {}, array[3], extraInitializers);
1499
- if (k22) {
1500
- ctx.static = s22, ctx.private = p22, access = ctx.access = { has: p22 ? (x22) => __privateIn2(target, x22) : (x22) => name in x22 };
1501
- if (k22 ^ 3) access.get = p22 ? (x22) => (k22 ^ 1 ? __privateGet2 : __privateMethod2)(x22, target, k22 ^ 4 ? extra : desc.get) : (x22) => x22[name];
1502
- if (k22 > 2) access.set = p22 ? (x22, y22) => __privateSet2(x22, target, y22, k22 ^ 4 ? extra : desc.set) : (x22, y22) => x22[name] = y22;
1503
- }
1504
- it = (0, decorators[i32])(k22 ? k22 < 4 ? p22 ? extra : desc[key] : k22 > 4 ? void 0 : { get: desc.get, set: desc.set } : target, ctx), done._ = 1;
1505
- if (k22 ^ 4 || it === void 0) __expectFn2(it) && (k22 > 4 ? initializers.unshift(it) : k22 ? p22 ? extra = it : desc[key] = it : target = it);
1506
- else if (typeof it !== "object" || it === null) __typeError2("Object expected");
1507
- else __expectFn2(fn = it.get) && (desc.get = fn), __expectFn2(fn = it.set) && (desc.set = fn), __expectFn2(fn = it.init) && initializers.unshift(fn);
1508
- }
1509
- return k22 || __decoratorMetadata2(array, target), desc && __defProp2(target, name, desc), p22 ? k22 ^ 4 ? extra : desc : target;
1510
- };
1511
- var __publicField = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
1512
- var __accessCheck2 = (obj, member, msg2) => member.has(obj) || __typeError2("Cannot " + msg2);
1513
- var __privateIn2 = (member, obj) => Object(obj) !== obj ? __typeError2('Cannot use the "in" operator on this value') : member.has(obj);
1514
- var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
1515
- var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError2("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
1516
- var __privateSet2 = (obj, member, value, setter) => (__accessCheck2(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
1517
- var __privateMethod2 = (obj, member, method) => (__accessCheck2(obj, member, "access private method"), method);
1518
- var t3 = globalThis;
1519
- var e4 = t3.ShadowRoot && (void 0 === t3.ShadyCSS || t3.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
1520
- var s3 = Symbol();
1521
- var o4 = /* @__PURE__ */ new WeakMap();
1522
- var n4 = class {
1523
- constructor(t22, e42, o42) {
1524
- if (this._$cssResult$ = true, o42 !== s3) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
1525
- this.cssText = t22, this.t = e42;
1526
- }
1527
- get styleSheet() {
1528
- let t22 = this.o;
1529
- const s22 = this.t;
1530
- if (e4 && void 0 === t22) {
1531
- const e42 = void 0 !== s22 && 1 === s22.length;
1532
- e42 && (t22 = o4.get(s22)), void 0 === t22 && ((this.o = t22 = new CSSStyleSheet()).replaceSync(this.cssText), e42 && o4.set(s22, t22));
1533
- }
1534
- return t22;
1535
- }
1536
- toString() {
1537
- return this.cssText;
1538
- }
1539
- };
1540
- var r5 = (t22) => new n4("string" == typeof t22 ? t22 : t22 + "", void 0, s3);
1541
- var S3 = (s22, o42) => {
1542
- if (e4) s22.adoptedStyleSheets = o42.map((t22) => t22 instanceof CSSStyleSheet ? t22 : t22.styleSheet);
1543
- else for (const e42 of o42) {
1544
- const o5 = document.createElement("style"), n52 = t3.litNonce;
1545
- void 0 !== n52 && o5.setAttribute("nonce", n52), o5.textContent = e42.cssText, s22.appendChild(o5);
1546
- }
1547
- };
1548
- var c4 = e4 ? (t22) => t22 : (t22) => t22 instanceof CSSStyleSheet ? ((t32) => {
1549
- let e42 = "";
1550
- for (const s22 of t32.cssRules) e42 += s22.cssText;
1551
- return r5(e42);
1552
- })(t22) : t22;
1553
- var { is: i22, defineProperty: e22, getOwnPropertyDescriptor: r22, getOwnPropertyNames: h3, getOwnPropertySymbols: o22, getPrototypeOf: n22 } = Object;
1554
- var a3 = globalThis;
1555
- var c22 = a3.trustedTypes;
1556
- var l3 = c22 ? c22.emptyScript : "";
1557
- var p3 = a3.reactiveElementPolyfillSupport;
1558
- var d3 = (t22, s22) => t22;
1559
- var u3 = { toAttribute(t22, s22) {
1560
- switch (s22) {
1561
- case Boolean:
1562
- t22 = t22 ? l3 : null;
1563
- break;
1564
- case Object:
1565
- case Array:
1566
- t22 = null == t22 ? t22 : JSON.stringify(t22);
1567
- }
1568
- return t22;
1569
- }, fromAttribute(t22, s22) {
1570
- let i32 = t22;
1571
- switch (s22) {
1572
- case Boolean:
1573
- i32 = null !== t22;
1574
- break;
1575
- case Number:
1576
- i32 = null === t22 ? null : Number(t22);
1577
- break;
1578
- case Object:
1579
- case Array:
1580
- try {
1581
- i32 = JSON.parse(t22);
1582
- } catch (t32) {
1583
- i32 = null;
1584
- }
1585
- }
1586
- return i32;
1587
- } };
1588
- var f3 = (t22, s22) => !i22(t22, s22);
1589
- var y3 = { attribute: true, type: String, converter: u3, reflect: false, hasChanged: f3 };
1590
- Symbol.metadata ??= Symbol("metadata"), a3.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
1591
- var b3 = class extends HTMLElement {
1592
- static addInitializer(t22) {
1593
- this._$Ei(), (this.l ??= []).push(t22);
1594
- }
1595
- static get observedAttributes() {
1596
- return this.finalize(), this._$Eh && [...this._$Eh.keys()];
1597
- }
1598
- static createProperty(t22, s22 = y3) {
1599
- if (s22.state && (s22.attribute = false), this._$Ei(), this.elementProperties.set(t22, s22), !s22.noAccessor) {
1600
- const i32 = Symbol(), r42 = this.getPropertyDescriptor(t22, i32, s22);
1601
- void 0 !== r42 && e22(this.prototype, t22, r42);
1602
- }
1603
- }
1604
- static getPropertyDescriptor(t22, s22, i32) {
1605
- const { get: e42, set: h4 } = r22(this.prototype, t22) ?? { get() {
1606
- return this[s22];
1607
- }, set(t32) {
1608
- this[s22] = t32;
1609
- } };
1610
- return { get() {
1611
- return e42?.call(this);
1612
- }, set(s32) {
1613
- const r42 = e42?.call(this);
1614
- h4.call(this, s32), this.requestUpdate(t22, r42, i32);
1615
- }, configurable: true, enumerable: true };
1616
- }
1617
- static getPropertyOptions(t22) {
1618
- return this.elementProperties.get(t22) ?? y3;
1619
- }
1620
- static _$Ei() {
1621
- if (this.hasOwnProperty(d3("elementProperties"))) return;
1622
- const t22 = n22(this);
1623
- t22.finalize(), void 0 !== t22.l && (this.l = [...t22.l]), this.elementProperties = new Map(t22.elementProperties);
1624
- }
1625
- static finalize() {
1626
- if (this.hasOwnProperty(d3("finalized"))) return;
1627
- if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d3("properties"))) {
1628
- const t32 = this.properties, s22 = [...h3(t32), ...o22(t32)];
1629
- for (const i32 of s22) this.createProperty(i32, t32[i32]);
1630
- }
1631
- const t22 = this[Symbol.metadata];
1632
- if (null !== t22) {
1633
- const s22 = litPropertyMetadata.get(t22);
1634
- if (void 0 !== s22) for (const [t32, i32] of s22) this.elementProperties.set(t32, i32);
1635
- }
1636
- this._$Eh = /* @__PURE__ */ new Map();
1637
- for (const [t32, s22] of this.elementProperties) {
1638
- const i32 = this._$Eu(t32, s22);
1639
- void 0 !== i32 && this._$Eh.set(i32, t32);
1640
- }
1641
- this.elementStyles = this.finalizeStyles(this.styles);
1642
- }
1643
- static finalizeStyles(s22) {
1644
- const i32 = [];
1645
- if (Array.isArray(s22)) {
1646
- const e42 = new Set(s22.flat(1 / 0).reverse());
1647
- for (const s32 of e42) i32.unshift(c4(s32));
1648
- } else void 0 !== s22 && i32.push(c4(s22));
1649
- return i32;
1650
- }
1651
- static _$Eu(t22, s22) {
1652
- const i32 = s22.attribute;
1653
- return false === i32 ? void 0 : "string" == typeof i32 ? i32 : "string" == typeof t22 ? t22.toLowerCase() : void 0;
1654
- }
1655
- constructor() {
1656
- super(), this._$Ep = void 0, this.isUpdatePending = false, this.hasUpdated = false, this._$Em = null, this._$Ev();
1657
- }
1658
- _$Ev() {
1659
- this._$ES = new Promise((t22) => this.enableUpdating = t22), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t22) => t22(this));
1660
- }
1661
- addController(t22) {
1662
- (this._$EO ??= /* @__PURE__ */ new Set()).add(t22), void 0 !== this.renderRoot && this.isConnected && t22.hostConnected?.();
1663
- }
1664
- removeController(t22) {
1665
- this._$EO?.delete(t22);
1666
- }
1667
- _$E_() {
1668
- const t22 = /* @__PURE__ */ new Map(), s22 = this.constructor.elementProperties;
1669
- for (const i32 of s22.keys()) this.hasOwnProperty(i32) && (t22.set(i32, this[i32]), delete this[i32]);
1670
- t22.size > 0 && (this._$Ep = t22);
1671
- }
1672
- createRenderRoot() {
1673
- const t22 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
1674
- return S3(t22, this.constructor.elementStyles), t22;
1675
- }
1676
- connectedCallback() {
1677
- this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t22) => t22.hostConnected?.());
1678
- }
1679
- enableUpdating(t22) {
1680
- }
1681
- disconnectedCallback() {
1682
- this._$EO?.forEach((t22) => t22.hostDisconnected?.());
1683
- }
1684
- attributeChangedCallback(t22, s22, i32) {
1685
- this._$AK(t22, i32);
1686
- }
1687
- _$EC(t22, s22) {
1688
- const i32 = this.constructor.elementProperties.get(t22), e42 = this.constructor._$Eu(t22, i32);
1689
- if (void 0 !== e42 && true === i32.reflect) {
1690
- const r42 = (void 0 !== i32.converter?.toAttribute ? i32.converter : u3).toAttribute(s22, i32.type);
1691
- this._$Em = t22, null == r42 ? this.removeAttribute(e42) : this.setAttribute(e42, r42), this._$Em = null;
1692
- }
1693
- }
1694
- _$AK(t22, s22) {
1695
- const i32 = this.constructor, e42 = i32._$Eh.get(t22);
1696
- if (void 0 !== e42 && this._$Em !== e42) {
1697
- const t32 = i32.getPropertyOptions(e42), r42 = "function" == typeof t32.converter ? { fromAttribute: t32.converter } : void 0 !== t32.converter?.fromAttribute ? t32.converter : u3;
1698
- this._$Em = e42, this[e42] = r42.fromAttribute(s22, t32.type), this._$Em = null;
1699
- }
1700
- }
1701
- requestUpdate(t22, s22, i32) {
1702
- if (void 0 !== t22) {
1703
- if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ?? f3)(this[t22], s22)) return;
1704
- this.P(t22, s22, i32);
1705
- }
1706
- false === this.isUpdatePending && (this._$ES = this._$ET());
1707
- }
1708
- P(t22, s22, i32) {
1709
- this._$AL.has(t22) || this._$AL.set(t22, s22), true === i32.reflect && this._$Em !== t22 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t22);
1710
- }
1711
- async _$ET() {
1712
- this.isUpdatePending = true;
1713
- try {
1714
- await this._$ES;
1715
- } catch (t32) {
1716
- Promise.reject(t32);
1717
- }
1718
- const t22 = this.scheduleUpdate();
1719
- return null != t22 && await t22, !this.isUpdatePending;
1720
- }
1721
- scheduleUpdate() {
1722
- return this.performUpdate();
1723
- }
1724
- performUpdate() {
1725
- if (!this.isUpdatePending) return;
1726
- if (!this.hasUpdated) {
1727
- if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
1728
- for (const [t42, s32] of this._$Ep) this[t42] = s32;
1729
- this._$Ep = void 0;
1730
- }
1731
- const t32 = this.constructor.elementProperties;
1732
- if (t32.size > 0) for (const [s32, i32] of t32) true !== i32.wrapped || this._$AL.has(s32) || void 0 === this[s32] || this.P(s32, this[s32], i32);
1733
- }
1734
- let t22 = false;
1735
- const s22 = this._$AL;
1736
- try {
1737
- t22 = this.shouldUpdate(s22), t22 ? (this.willUpdate(s22), this._$EO?.forEach((t32) => t32.hostUpdate?.()), this.update(s22)) : this._$EU();
1738
- } catch (s32) {
1739
- throw t22 = false, this._$EU(), s32;
1740
- }
1741
- t22 && this._$AE(s22);
1742
- }
1743
- willUpdate(t22) {
1744
- }
1745
- _$AE(t22) {
1746
- this._$EO?.forEach((t32) => t32.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t22)), this.updated(t22);
1747
- }
1748
- _$EU() {
1749
- this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = false;
1750
- }
1751
- get updateComplete() {
1752
- return this.getUpdateComplete();
1753
- }
1754
- getUpdateComplete() {
1755
- return this._$ES;
1756
- }
1757
- shouldUpdate(t22) {
1758
- return true;
1759
- }
1760
- update(t22) {
1761
- this._$Ej &&= this._$Ej.forEach((t32) => this._$EC(t32, this[t32])), this._$EU();
1762
- }
1763
- updated(t22) {
1764
- }
1765
- firstUpdated(t22) {
1766
- }
1767
- };
1768
- b3.elementStyles = [], b3.shadowRootOptions = { mode: "open" }, b3[d3("elementProperties")] = /* @__PURE__ */ new Map(), b3[d3("finalized")] = /* @__PURE__ */ new Map(), p3?.({ ReactiveElement: b3 }), (a3.reactiveElementVersions ??= []).push("2.0.4");
1769
- var n32 = globalThis;
1770
- var c32 = n32.trustedTypes;
1771
- var h22 = c32 ? c32.createPolicy("lit-html", { createHTML: (t22) => t22 }) : void 0;
1772
- var f22 = "$lit$";
1773
- var v2 = `lit$${Math.random().toFixed(9).slice(2)}$`;
1774
- var m2 = "?" + v2;
1775
- var _2 = `<${m2}>`;
1776
- var w2 = document;
1777
- var lt = () => w2.createComment("");
1778
- var st = (t22) => null === t22 || "object" != typeof t22 && "function" != typeof t22;
1779
- var g2 = Array.isArray;
1780
- var $2 = (t22) => g2(t22) || "function" == typeof t22?.[Symbol.iterator];
1781
- var x2 = "[ \n\f\r]";
1782
- var T2 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
1783
- var E2 = /-->/g;
1784
- var k2 = />/g;
1785
- var O = RegExp(`>|${x2}(?:([^\\s"'>=/]+)(${x2}*=${x2}*(?:[^
1786
- \f\r"'\`<>=]|("|')|))|$)`, "g");
1787
- var S22 = /'/g;
1788
- var j2 = /"/g;
1789
- var M2 = /^(?:script|style|textarea|title)$/i;
1790
- var P2 = (t22) => (i32, ...s22) => ({ _$litType$: t22, strings: i32, values: s22 });
1791
- var ke = P2(1);
1792
- var Oe = P2(2);
1793
- var Se = P2(3);
1794
- var R2 = Symbol.for("lit-noChange");
1795
- var D = Symbol.for("lit-nothing");
1796
- var V2 = /* @__PURE__ */ new WeakMap();
1797
- var I2 = w2.createTreeWalker(w2, 129);
1798
- function N2(t22, i32) {
1799
- if (!g2(t22) || !t22.hasOwnProperty("raw")) throw Error("invalid template strings array");
1800
- return void 0 !== h22 ? h22.createHTML(i32) : i32;
1801
- }
1802
- var U = (t22, i32) => {
1803
- const s22 = t22.length - 1, e42 = [];
1804
- let h4, o42 = 2 === i32 ? "<svg>" : 3 === i32 ? "<math>" : "", n52 = T2;
1805
- for (let i42 = 0; i42 < s22; i42++) {
1806
- const s32 = t22[i42];
1807
- let r42, l22, c42 = -1, a22 = 0;
1808
- for (; a22 < s32.length && (n52.lastIndex = a22, l22 = n52.exec(s32), null !== l22); ) a22 = n52.lastIndex, n52 === T2 ? "!--" === l22[1] ? n52 = E2 : void 0 !== l22[1] ? n52 = k2 : void 0 !== l22[2] ? (M2.test(l22[2]) && (h4 = RegExp("</" + l22[2], "g")), n52 = O) : void 0 !== l22[3] && (n52 = O) : n52 === O ? ">" === l22[0] ? (n52 = h4 ?? T2, c42 = -1) : void 0 === l22[1] ? c42 = -2 : (c42 = n52.lastIndex - l22[2].length, r42 = l22[1], n52 = void 0 === l22[3] ? O : '"' === l22[3] ? j2 : S22) : n52 === j2 || n52 === S22 ? n52 = O : n52 === E2 || n52 === k2 ? n52 = T2 : (n52 = O, h4 = void 0);
1809
- const u22 = n52 === O && t22[i42 + 1].startsWith("/>") ? " " : "";
1810
- o42 += n52 === T2 ? s32 + _2 : c42 >= 0 ? (e42.push(r42), s32.slice(0, c42) + f22 + s32.slice(c42) + v2 + u22) : s32 + v2 + (-2 === c42 ? i42 : u22);
1811
- }
1812
- return [N2(t22, o42 + (t22[s22] || "<?>") + (2 === i32 ? "</svg>" : 3 === i32 ? "</math>" : "")), e42];
1813
- };
1814
- var B2 = class _B {
1815
- constructor({ strings: t22, _$litType$: i32 }, s22) {
1816
- let e42;
1817
- this.parts = [];
1818
- let h4 = 0, o42 = 0;
1819
- const n52 = t22.length - 1, r42 = this.parts, [l22, a22] = U(t22, i32);
1820
- if (this.el = _B.createElement(l22, s22), I2.currentNode = this.el.content, 2 === i32 || 3 === i32) {
1821
- const t32 = this.el.content.firstChild;
1822
- t32.replaceWith(...t32.childNodes);
1823
- }
1824
- for (; null !== (e42 = I2.nextNode()) && r42.length < n52; ) {
1825
- if (1 === e42.nodeType) {
1826
- if (e42.hasAttributes()) for (const t32 of e42.getAttributeNames()) if (t32.endsWith(f22)) {
1827
- const i42 = a22[o42++], s32 = e42.getAttribute(t32).split(v2), n6 = /([.?@])?(.*)/.exec(i42);
1828
- r42.push({ type: 1, index: h4, name: n6[2], strings: s32, ctor: "." === n6[1] ? Y : "?" === n6[1] ? Z : "@" === n6[1] ? q : G }), e42.removeAttribute(t32);
1829
- } else t32.startsWith(v2) && (r42.push({ type: 6, index: h4 }), e42.removeAttribute(t32));
1830
- if (M2.test(e42.tagName)) {
1831
- const t32 = e42.textContent.split(v2), i42 = t32.length - 1;
1832
- if (i42 > 0) {
1833
- e42.textContent = c32 ? c32.emptyScript : "";
1834
- for (let s32 = 0; s32 < i42; s32++) e42.append(t32[s32], lt()), I2.nextNode(), r42.push({ type: 2, index: ++h4 });
1835
- e42.append(t32[i42], lt());
1836
- }
1837
- }
1838
- } else if (8 === e42.nodeType) if (e42.data === m2) r42.push({ type: 2, index: h4 });
1839
- else {
1840
- let t32 = -1;
1841
- for (; -1 !== (t32 = e42.data.indexOf(v2, t32 + 1)); ) r42.push({ type: 7, index: h4 }), t32 += v2.length - 1;
1842
- }
1843
- h4++;
1844
- }
1845
- }
1846
- static createElement(t22, i32) {
1847
- const s22 = w2.createElement("template");
1848
- return s22.innerHTML = t22, s22;
1849
- }
1850
- };
1851
- function z2(t22, i32, s22 = t22, e42) {
1852
- if (i32 === R2) return i32;
1853
- let h4 = void 0 !== e42 ? s22.o?.[e42] : s22.l;
1854
- const o42 = st(i32) ? void 0 : i32._$litDirective$;
1855
- return h4?.constructor !== o42 && (h4?._$AO?.(false), void 0 === o42 ? h4 = void 0 : (h4 = new o42(t22), h4._$AT(t22, s22, e42)), void 0 !== e42 ? (s22.o ??= [])[e42] = h4 : s22.l = h4), void 0 !== h4 && (i32 = z2(t22, h4._$AS(t22, i32.values), h4, e42)), i32;
1856
- }
1857
- var F = class {
1858
- constructor(t22, i32) {
1859
- this._$AV = [], this._$AN = void 0, this._$AD = t22, this._$AM = i32;
1860
- }
1861
- get parentNode() {
1862
- return this._$AM.parentNode;
1863
- }
1864
- get _$AU() {
1865
- return this._$AM._$AU;
1866
- }
1867
- u(t22) {
1868
- const { el: { content: i32 }, parts: s22 } = this._$AD, e42 = (t22?.creationScope ?? w2).importNode(i32, true);
1869
- I2.currentNode = e42;
1870
- let h4 = I2.nextNode(), o42 = 0, n52 = 0, r42 = s22[0];
1871
- for (; void 0 !== r42; ) {
1872
- if (o42 === r42.index) {
1873
- let i42;
1874
- 2 === r42.type ? i42 = new et(h4, h4.nextSibling, this, t22) : 1 === r42.type ? i42 = new r42.ctor(h4, r42.name, r42.strings, this, t22) : 6 === r42.type && (i42 = new K(h4, this, t22)), this._$AV.push(i42), r42 = s22[++n52];
1875
- }
1876
- o42 !== r42?.index && (h4 = I2.nextNode(), o42++);
1877
- }
1878
- return I2.currentNode = w2, e42;
1879
- }
1880
- p(t22) {
1881
- let i32 = 0;
1882
- for (const s22 of this._$AV) void 0 !== s22 && (void 0 !== s22.strings ? (s22._$AI(t22, s22, i32), i32 += s22.strings.length - 2) : s22._$AI(t22[i32])), i32++;
1883
- }
1884
- };
1885
- var et = class _et {
1886
- get _$AU() {
1887
- return this._$AM?._$AU ?? this.v;
1888
- }
1889
- constructor(t22, i32, s22, e42) {
1890
- this.type = 2, this._$AH = D, this._$AN = void 0, this._$AA = t22, this._$AB = i32, this._$AM = s22, this.options = e42, this.v = e42?.isConnected ?? true;
1891
- }
1892
- get parentNode() {
1893
- let t22 = this._$AA.parentNode;
1894
- const i32 = this._$AM;
1895
- return void 0 !== i32 && 11 === t22?.nodeType && (t22 = i32.parentNode), t22;
1896
- }
1897
- get startNode() {
1898
- return this._$AA;
1899
- }
1900
- get endNode() {
1901
- return this._$AB;
1902
- }
1903
- _$AI(t22, i32 = this) {
1904
- t22 = z2(this, t22, i32), st(t22) ? t22 === D || null == t22 || "" === t22 ? (this._$AH !== D && this._$AR(), this._$AH = D) : t22 !== this._$AH && t22 !== R2 && this._(t22) : void 0 !== t22._$litType$ ? this.$(t22) : void 0 !== t22.nodeType ? this.T(t22) : $2(t22) ? this.k(t22) : this._(t22);
1905
- }
1906
- O(t22) {
1907
- return this._$AA.parentNode.insertBefore(t22, this._$AB);
1908
- }
1909
- T(t22) {
1910
- this._$AH !== t22 && (this._$AR(), this._$AH = this.O(t22));
1911
- }
1912
- _(t22) {
1913
- this._$AH !== D && st(this._$AH) ? this._$AA.nextSibling.data = t22 : this.T(w2.createTextNode(t22)), this._$AH = t22;
1914
- }
1915
- $(t22) {
1916
- const { values: i32, _$litType$: s22 } = t22, e42 = "number" == typeof s22 ? this._$AC(t22) : (void 0 === s22.el && (s22.el = B2.createElement(N2(s22.h, s22.h[0]), this.options)), s22);
1917
- if (this._$AH?._$AD === e42) this._$AH.p(i32);
1918
- else {
1919
- const t32 = new F(e42, this), s32 = t32.u(this.options);
1920
- t32.p(i32), this.T(s32), this._$AH = t32;
1921
- }
1922
- }
1923
- _$AC(t22) {
1924
- let i32 = V2.get(t22.strings);
1925
- return void 0 === i32 && V2.set(t22.strings, i32 = new B2(t22)), i32;
1926
- }
1927
- k(t22) {
1928
- g2(this._$AH) || (this._$AH = [], this._$AR());
1929
- const i32 = this._$AH;
1930
- let s22, e42 = 0;
1931
- for (const h4 of t22) e42 === i32.length ? i32.push(s22 = new _et(this.O(lt()), this.O(lt()), this, this.options)) : s22 = i32[e42], s22._$AI(h4), e42++;
1932
- e42 < i32.length && (this._$AR(s22 && s22._$AB.nextSibling, e42), i32.length = e42);
1933
- }
1934
- _$AR(t22 = this._$AA.nextSibling, i32) {
1935
- for (this._$AP?.(false, true, i32); t22 && t22 !== this._$AB; ) {
1936
- const i42 = t22.nextSibling;
1937
- t22.remove(), t22 = i42;
1938
- }
1939
- }
1940
- setConnected(t22) {
1941
- void 0 === this._$AM && (this.v = t22, this._$AP?.(t22));
1942
- }
1943
- };
1944
- var G = class {
1945
- get tagName() {
1946
- return this.element.tagName;
1947
- }
1948
- get _$AU() {
1949
- return this._$AM._$AU;
1950
- }
1951
- constructor(t22, i32, s22, e42, h4) {
1952
- this.type = 1, this._$AH = D, this._$AN = void 0, this.element = t22, this.name = i32, this._$AM = e42, this.options = h4, s22.length > 2 || "" !== s22[0] || "" !== s22[1] ? (this._$AH = Array(s22.length - 1).fill(new String()), this.strings = s22) : this._$AH = D;
1953
- }
1954
- _$AI(t22, i32 = this, s22, e42) {
1955
- const h4 = this.strings;
1956
- let o42 = false;
1957
- if (void 0 === h4) t22 = z2(this, t22, i32, 0), o42 = !st(t22) || t22 !== this._$AH && t22 !== R2, o42 && (this._$AH = t22);
1958
- else {
1959
- const e52 = t22;
1960
- let n52, r42;
1961
- for (t22 = h4[0], n52 = 0; n52 < h4.length - 1; n52++) r42 = z2(this, e52[s22 + n52], i32, n52), r42 === R2 && (r42 = this._$AH[n52]), o42 ||= !st(r42) || r42 !== this._$AH[n52], r42 === D ? t22 = D : t22 !== D && (t22 += (r42 ?? "") + h4[n52 + 1]), this._$AH[n52] = r42;
1962
- }
1963
- o42 && !e42 && this.j(t22);
1964
- }
1965
- j(t22) {
1966
- t22 === D ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t22 ?? "");
1967
- }
1968
- };
1969
- var Y = class extends G {
1970
- constructor() {
1971
- super(...arguments), this.type = 3;
1972
- }
1973
- j(t22) {
1974
- this.element[this.name] = t22 === D ? void 0 : t22;
1975
- }
1976
- };
1977
- var Z = class extends G {
1978
- constructor() {
1979
- super(...arguments), this.type = 4;
1980
- }
1981
- j(t22) {
1982
- this.element.toggleAttribute(this.name, !!t22 && t22 !== D);
1983
- }
1984
- };
1985
- var q = class extends G {
1986
- constructor(t22, i32, s22, e42, h4) {
1987
- super(t22, i32, s22, e42, h4), this.type = 5;
1988
- }
1989
- _$AI(t22, i32 = this) {
1990
- if ((t22 = z2(this, t22, i32, 0) ?? D) === R2) return;
1991
- const s22 = this._$AH, e42 = t22 === D && s22 !== D || t22.capture !== s22.capture || t22.once !== s22.once || t22.passive !== s22.passive, h4 = t22 !== D && (s22 === D || e42);
1992
- e42 && this.element.removeEventListener(this.name, this, s22), h4 && this.element.addEventListener(this.name, this, t22), this._$AH = t22;
1993
- }
1994
- handleEvent(t22) {
1995
- "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t22) : this._$AH.handleEvent(t22);
1996
- }
1997
- };
1998
- var K = class {
1999
- constructor(t22, i32, s22) {
2000
- this.element = t22, this.type = 6, this._$AN = void 0, this._$AM = i32, this.options = s22;
2001
- }
2002
- get _$AU() {
2003
- return this._$AM._$AU;
2004
- }
2005
- _$AI(t22) {
2006
- z2(this, t22);
2007
- }
2008
- };
2009
- var Re = n32.litHtmlPolyfillSupport;
2010
- Re?.(B2, et), (n32.litHtmlVersions ??= []).push("3.2.0");
2011
- var Q = (t22, i32, s22) => {
2012
- const e42 = s22?.renderBefore ?? i32;
2013
- let h4 = e42._$litPart$;
2014
- if (void 0 === h4) {
2015
- const t32 = s22?.renderBefore ?? null;
2016
- e42._$litPart$ = h4 = new et(i32.insertBefore(lt(), t32), t32, void 0, s22 ?? {});
2017
- }
2018
- return h4._$AI(t22), h4;
2019
- };
2020
- var h32 = class extends b3 {
2021
- constructor() {
2022
- super(...arguments), this.renderOptions = { host: this }, this.o = void 0;
2023
- }
2024
- createRenderRoot() {
2025
- const t22 = super.createRenderRoot();
2026
- return this.renderOptions.renderBefore ??= t22.firstChild, t22;
2027
- }
2028
- update(t22) {
2029
- const e42 = this.render();
2030
- this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t22), this.o = Q(e42, this.renderRoot, this.renderOptions);
2031
- }
2032
- connectedCallback() {
2033
- super.connectedCallback(), this.o?.setConnected(true);
2034
- }
2035
- disconnectedCallback() {
2036
- super.disconnectedCallback(), this.o?.setConnected(false);
2037
- }
2038
- render() {
2039
- return R2;
2040
- }
2041
- };
2042
- h32._$litElement$ = true, h32["finalized"] = true, globalThis.litElementHydrateSupport?.({ LitElement: h32 });
2043
- var f32 = globalThis.litElementPolyfillSupport;
2044
- f32?.({ LitElement: h32 });
2045
- (globalThis.litElementVersions ??= []).push("4.1.0");
2046
- var o32 = { attribute: true, type: String, converter: u3, reflect: false, hasChanged: f3 };
2047
- var r32 = (t22 = o32, e42, r42) => {
2048
- const { kind: n52, metadata: i32 } = r42;
2049
- let s22 = globalThis.litPropertyMetadata.get(i32);
2050
- if (void 0 === s22 && globalThis.litPropertyMetadata.set(i32, s22 = /* @__PURE__ */ new Map()), s22.set(r42.name, t22), "accessor" === n52) {
2051
- const { name: o42 } = r42;
2052
- return { set(r52) {
2053
- const n6 = e42.get.call(this);
2054
- e42.set.call(this, r52), this.requestUpdate(o42, n6, t22);
2055
- }, init(e52) {
2056
- return void 0 !== e52 && this.P(o42, void 0, t22), e52;
2057
- } };
2058
- }
2059
- if ("setter" === n52) {
2060
- const { name: o42 } = r42;
2061
- return function(r52) {
2062
- const n6 = this[o42];
2063
- e42.call(this, r52), this.requestUpdate(o42, n6, t22);
2064
- };
2065
- }
2066
- throw Error("Unsupported decorator location: " + n52);
2067
- };
2068
- function n42(t22) {
2069
- return (e42, o42) => "object" == typeof o42 ? r32(t22, e42, o42) : ((t32, e52, o5) => {
2070
- const r42 = e52.hasOwnProperty(o5);
2071
- return e52.constructor.createProperty(o5, r42 ? { ...t32, wrapped: true } : t32), r42 ? Object.getOwnPropertyDescriptor(e52, o5) : void 0;
2072
- })(t22, e42, o42);
2073
- }
2074
- var appliedClassMixins = /* @__PURE__ */ new WeakMap();
2075
- function wasMixinPreviouslyApplied(mixin, superClass) {
2076
- let klass = superClass;
2077
- while (klass) {
2078
- if (appliedClassMixins.get(klass) === mixin) {
2079
- return true;
2080
- }
2081
- klass = Object.getPrototypeOf(klass);
2082
- }
2083
- return false;
2084
- }
2085
- function dedupeMixin(mixin) {
2086
- return (superClass) => {
2087
- if (wasMixinPreviouslyApplied(mixin, superClass)) {
2088
- return superClass;
2089
- }
2090
- const mixedClass = mixin(superClass);
2091
- appliedClassMixins.set(mixedClass, mixin);
2092
- return mixedClass;
2093
- };
2094
- }
2095
- var version = "3.0.0";
2096
- var versions = window.scopedElementsVersions || (window.scopedElementsVersions = []);
2097
- if (!versions.includes(version)) {
2098
- versions.push(version);
2099
- }
2100
- var ScopedElementsMixinImplementation = (superclass) => (
2101
- /** @type {ScopedElementsHost} */
2102
- class ScopedElementsHost extends superclass {
2103
- /**
2104
- * Obtains the scoped elements definitions map if specified.
2105
- *
2106
- * @type {ScopedElementsMap=}
2107
- */
2108
- static scopedElements;
2109
- static get scopedElementsVersion() {
2110
- return version;
2111
- }
2112
- /** @type {CustomElementRegistry=} */
2113
- static __registry;
2114
- /**
2115
- * Obtains the CustomElementRegistry associated to the ShadowRoot.
2116
- *
2117
- * @returns {CustomElementRegistry=}
2118
- */
2119
- get registry() {
2120
- return (
2121
- /** @type {typeof ScopedElementsHost} */
2122
- this.constructor.__registry
2123
- );
2124
- }
2125
- /**
2126
- * Set the CustomElementRegistry associated to the ShadowRoot
2127
- *
2128
- * @param {CustomElementRegistry} registry
2129
- */
2130
- set registry(registry) {
2131
- this.constructor.__registry = registry;
2132
- }
2133
- /**
2134
- * @param {ShadowRootInit} options
2135
- * @returns {ShadowRoot}
2136
- */
2137
- attachShadow(options) {
2138
- const { scopedElements } = (
2139
- /** @type {typeof ScopedElementsHost} */
2140
- this.constructor
2141
- );
2142
- const shouldCreateRegistry = !this.registry || // @ts-ignore
2143
- this.registry === this.constructor.__registry && !Object.prototype.hasOwnProperty.call(this.constructor, "__registry");
2144
- if (shouldCreateRegistry) {
2145
- this.registry = new CustomElementRegistry();
2146
- for (const [tagName, klass] of Object.entries(scopedElements ?? {})) {
2147
- this.registry.define(tagName, klass);
2148
- }
2149
- }
2150
- return super.attachShadow({
2151
- ...options,
2152
- // The polyfill currently expects the registry to be passed as `customElements`
2153
- customElements: this.registry,
2154
- // But the proposal has moved forward, and renamed it to `registry`
2155
- // For backwards compatibility, we pass it as both
2156
- registry: this.registry
2157
- });
2158
- }
2159
- }
2160
- );
2161
- var ScopedElementsMixin = dedupeMixin(ScopedElementsMixinImplementation);
2162
- var ScopedElementsMixinImplementation2 = (superclass) => (
2163
- /** @type {ScopedElementsHost} */
2164
- class ScopedElementsHost extends ScopedElementsMixin(superclass) {
2165
- createRenderRoot() {
2166
- const { shadowRootOptions, elementStyles } = (
2167
- /** @type {TypeofLitElement} */
2168
- this.constructor
2169
- );
2170
- const shadowRoot = this.attachShadow(shadowRootOptions);
2171
- this.renderOptions.creationScope = shadowRoot;
2172
- S3(shadowRoot, elementStyles);
2173
- this.renderOptions.renderBefore ??= shadowRoot.firstChild;
2174
- return shadowRoot;
2175
- }
2176
- }
2177
- );
2178
- var ScopedElementsMixin2 = dedupeMixin(ScopedElementsMixinImplementation2);
2179
- var _lang_dec;
2180
- var _contentEditable_dec;
2181
- var _a;
2182
- var _init;
2183
- var _contentEditable;
2184
- var _lang;
2185
- var LitElementWw = class extends (_a = ScopedElementsMixin2(h32), _contentEditable_dec = [n42({ type: String, attribute: true, reflect: true })], _lang_dec = [n42({ type: String, attribute: true, reflect: true })], _a) {
2186
- constructor() {
2187
- super(...arguments);
2188
- __runInitializers2(_init, 5, this);
2189
- __publicField(this, "options");
2190
- __publicField(this, "actions", {});
2191
- __publicField(this, "localize");
2192
- __privateAdd(this, _contentEditable, __runInitializers2(_init, 8, this)), __runInitializers2(_init, 11, this);
2193
- __privateAdd(this, _lang, "");
2194
- __publicField(this, "_inTransaction", false);
2195
- }
2196
- get lang() {
2197
- return (__privateGet2(this, _lang) || this.parentElement?.closest("[lang]")?.lang) ?? "";
2198
- }
2199
- set lang(value) {
2200
- __privateSet2(this, _lang, value);
2201
- this.localize.setLocale(value).finally(() => this.requestUpdate("lang"));
2202
- }
2203
- connectedCallback() {
2204
- super.connectedCallback();
2205
- this.localize.setLocale(this.lang).finally(() => this.requestUpdate());
2206
- this.getAttributeNames().forEach((k22) => this.setAttribute(k22, this.getAttribute(k22)));
2207
- }
2208
- };
2209
- _init = __decoratorStart2(_a);
2210
- _contentEditable = /* @__PURE__ */ new WeakMap();
2211
- _lang = /* @__PURE__ */ new WeakMap();
2212
- __decorateElement2(_init, 4, "contentEditable", _contentEditable_dec, LitElementWw, _contentEditable);
2213
- __decorateElement2(_init, 3, "lang", _lang_dec, LitElementWw);
2214
- __decoratorMetadata2(_init, LitElementWw);
2215
- __publicField(LitElementWw, "shadowRootOptions", { ...h32.shadowRootOptions });
2216
- __publicField(LitElementWw, "scopedElements", {});
2217
- __publicField(LitElementWw, "options", {});
2218
- __publicField(LitElementWw, "actions", {});
2219
-
2220
- // node_modules/@lit/reactive-element/decorators/custom-element.js
2221
- var t4 = (t5) => (e6, o5) => {
2222
- void 0 !== o5 ? o5.addInitializer(() => {
2223
- customElements.define(t5, e6);
2224
- }) : customElements.define(t5, e6);
2225
- };
2226
-
2227
- // localization/generated/locale-codes.js
2228
- var sourceLocale = `en`;
2229
- var targetLocales = [
2230
- `bg`,
2231
- `cs`,
2232
- `da`,
2233
- `de`,
2234
- `el`,
2235
- `es`,
2236
- `et`,
2237
- `fi`,
2238
- `fr`,
2239
- `hu`,
2240
- `id`,
2241
- `it`,
2242
- `ja`,
2243
- `ko`,
2244
- `lt`,
2245
- `lv`,
2246
- `nb`,
2247
- `nl`,
2248
- `pl`,
2249
- `pt-BR`,
2250
- `pt-PT`,
2251
- `ro`,
2252
- `ru`,
2253
- `sk`,
2254
- `sl`,
2255
- `sv`,
2256
- `tr`,
2257
- `uk`,
2258
- `zh-hans`
2259
- ];
2260
-
2261
- // node_modules/@lit/localize/internal/locale-status-event.js
2262
- var LOCALE_STATUS_EVENT = "lit-localize-status";
2263
-
2264
- // node_modules/@lit/localize/internal/str-tag.js
2265
- var isStrTagged = (val) => typeof val !== "string" && "strTag" in val;
2266
- var joinStringsAndValues = (strings, values, valueOrder) => {
2267
- let concat = strings[0];
2268
- for (let i5 = 1; i5 < strings.length; i5++) {
2269
- concat += values[valueOrder ? valueOrder[i5 - 1] : i5 - 1];
2270
- concat += strings[i5];
2271
- }
2272
- return concat;
2273
- };
2274
-
2275
- // node_modules/@lit/localize/internal/default-msg.js
2276
- var defaultMsg = (template) => isStrTagged(template) ? joinStringsAndValues(template.strings, template.values) : template;
2277
-
2278
- // node_modules/@lit/localize/init/install.js
2279
- var msg = defaultMsg;
2280
- var installed = false;
2281
- function _installMsgImplementation(impl) {
2282
- if (installed) {
2283
- throw new Error("lit-localize can only be configured once");
2284
- }
2285
- msg = impl;
2286
- installed = true;
2287
- }
2288
-
2289
- // node_modules/@lit/localize/internal/deferred.js
2290
- var Deferred = class {
2291
- constructor() {
2292
- this.settled = false;
2293
- this.promise = new Promise((resolve, reject) => {
2294
- this._resolve = resolve;
2295
- this._reject = reject;
2296
- });
2297
- }
2298
- resolve(value) {
2299
- this.settled = true;
2300
- this._resolve(value);
2301
- }
2302
- reject(error) {
2303
- this.settled = true;
2304
- this._reject(error);
2305
- }
2306
- };
2307
-
2308
- // node_modules/@lit/localize/internal/fnv1a64.js
2309
- var hl = [];
2310
- for (let i5 = 0; i5 < 256; i5++) {
2311
- hl[i5] = (i5 >> 4 & 15).toString(16) + (i5 & 15).toString(16);
2312
- }
2313
- function fnv1a64(str) {
2314
- let t0 = 0, v0 = 8997, t1 = 0, v1 = 33826, t22 = 0, v22 = 40164, t32 = 0, v3 = 52210;
2315
- for (let i5 = 0; i5 < str.length; i5++) {
2316
- v0 ^= str.charCodeAt(i5);
2317
- t0 = v0 * 435;
2318
- t1 = v1 * 435;
2319
- t22 = v22 * 435;
2320
- t32 = v3 * 435;
2321
- t22 += v0 << 8;
2322
- t32 += v1 << 8;
2323
- t1 += t0 >>> 16;
2324
- v0 = t0 & 65535;
2325
- t22 += t1 >>> 16;
2326
- v1 = t1 & 65535;
2327
- v3 = t32 + (t22 >>> 16) & 65535;
2328
- v22 = t22 & 65535;
2329
- }
2330
- return hl[v3 >> 8] + hl[v3 & 255] + hl[v22 >> 8] + hl[v22 & 255] + hl[v1 >> 8] + hl[v1 & 255] + hl[v0 >> 8] + hl[v0 & 255];
2331
- }
2332
-
2333
- // node_modules/@lit/localize/internal/id-generation.js
2334
- var HASH_DELIMITER = "";
2335
- var HTML_PREFIX = "h";
2336
- var STRING_PREFIX = "s";
2337
- function generateMsgId(strings, isHtmlTagged) {
2338
- return (isHtmlTagged ? HTML_PREFIX : STRING_PREFIX) + fnv1a64(typeof strings === "string" ? strings : strings.join(HASH_DELIMITER));
2339
- }
2340
-
2341
- // node_modules/@lit/localize/internal/runtime-msg.js
2342
- var expressionOrders = /* @__PURE__ */ new WeakMap();
2343
- var hashCache = /* @__PURE__ */ new Map();
2344
- function runtimeMsg(templates31, template, options) {
2345
- if (templates31) {
2346
- const id = options?.id ?? generateId(template);
2347
- const localized = templates31[id];
2348
- if (localized) {
2349
- if (typeof localized === "string") {
2350
- return localized;
2351
- } else if ("strTag" in localized) {
2352
- return joinStringsAndValues(
2353
- localized.strings,
2354
- // Cast `template` because its type wasn't automatically narrowed (but
2355
- // we know it must be the same type as `localized`).
2356
- template.values,
2357
- localized.values
2358
- );
2359
- } else {
2360
- let order = expressionOrders.get(localized);
2361
- if (order === void 0) {
2362
- order = localized.values;
2363
- expressionOrders.set(localized, order);
2364
- }
2365
- return {
2366
- ...localized,
2367
- values: order.map((i5) => template.values[i5])
2368
- };
2369
- }
2370
- }
2371
- }
2372
- return defaultMsg(template);
2373
- }
2374
- function generateId(template) {
2375
- const strings = typeof template === "string" ? template : template.strings;
2376
- let id = hashCache.get(strings);
2377
- if (id === void 0) {
2378
- id = generateMsgId(strings, typeof template !== "string" && !("strTag" in template));
2379
- hashCache.set(strings, id);
2380
- }
2381
- return id;
2382
- }
2383
-
2384
- // node_modules/@lit/localize/init/runtime.js
2385
- function dispatchStatusEvent(detail) {
2386
- window.dispatchEvent(new CustomEvent(LOCALE_STATUS_EVENT, { detail }));
2387
- }
2388
- var activeLocale = "";
2389
- var loadingLocale;
2390
- var sourceLocale2;
2391
- var validLocales;
2392
- var loadLocale;
2393
- var templates;
2394
- var loading = new Deferred();
2395
- loading.resolve();
2396
- var requestId = 0;
2397
- var configureLocalization = (config) => {
2398
- _installMsgImplementation((template, options) => runtimeMsg(templates, template, options));
2399
- activeLocale = sourceLocale2 = config.sourceLocale;
2400
- validLocales = new Set(config.targetLocales);
2401
- validLocales.add(config.sourceLocale);
2402
- loadLocale = config.loadLocale;
2403
- return { getLocale, setLocale };
2404
- };
2405
- var getLocale = () => {
2406
- return activeLocale;
2407
- };
2408
- var setLocale = (newLocale) => {
2409
- if (newLocale === (loadingLocale ?? activeLocale)) {
2410
- return loading.promise;
2411
- }
2412
- if (!validLocales || !loadLocale) {
2413
- throw new Error("Internal error");
2414
- }
2415
- if (!validLocales.has(newLocale)) {
2416
- throw new Error("Invalid locale code");
2417
- }
2418
- requestId++;
2419
- const thisRequestId = requestId;
2420
- loadingLocale = newLocale;
2421
- if (loading.settled) {
2422
- loading = new Deferred();
2423
- }
2424
- dispatchStatusEvent({ status: "loading", loadingLocale: newLocale });
2425
- const localePromise = newLocale === sourceLocale2 ? (
2426
- // We could switch to the source locale synchronously, but we prefer to
2427
- // queue it on a microtask so that switching locales is consistently
2428
- // asynchronous.
2429
- Promise.resolve({ templates: void 0 })
2430
- ) : loadLocale(newLocale);
2431
- localePromise.then((mod) => {
2432
- if (requestId === thisRequestId) {
2433
- activeLocale = newLocale;
2434
- loadingLocale = void 0;
2435
- templates = mod.templates;
2436
- dispatchStatusEvent({ status: "ready", readyLocale: newLocale });
2437
- loading.resolve();
2438
- }
2439
- }, (err) => {
2440
- if (requestId === thisRequestId) {
2441
- dispatchStatusEvent({
2442
- status: "error",
2443
- errorLocale: newLocale,
2444
- errorMessage: err.toString()
2445
- });
2446
- loading.reject(err);
2447
- }
2448
- });
2449
- return loading.promise;
2450
- };
2451
-
2452
- // import("./**/*.ts") in localization/generated/index.js
2453
- var globImport_ts = __glob({
2454
- "./bg.ts": () => Promise.resolve().then(() => (init_bg(), bg_exports)),
2455
- "./cs.ts": () => Promise.resolve().then(() => (init_cs(), cs_exports)),
2456
- "./da.ts": () => Promise.resolve().then(() => (init_da(), da_exports)),
2457
- "./de.ts": () => Promise.resolve().then(() => (init_de(), de_exports)),
2458
- "./el.ts": () => Promise.resolve().then(() => (init_el(), el_exports)),
2459
- "./es.ts": () => Promise.resolve().then(() => (init_es(), es_exports)),
2460
- "./et.ts": () => Promise.resolve().then(() => (init_et(), et_exports)),
2461
- "./fi.ts": () => Promise.resolve().then(() => (init_fi(), fi_exports)),
2462
- "./fr.ts": () => Promise.resolve().then(() => (init_fr(), fr_exports)),
2463
- "./hu.ts": () => Promise.resolve().then(() => (init_hu(), hu_exports)),
2464
- "./id.ts": () => Promise.resolve().then(() => (init_id(), id_exports)),
2465
- "./it.ts": () => Promise.resolve().then(() => (init_it(), it_exports)),
2466
- "./ja.ts": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
2467
- "./ko.ts": () => Promise.resolve().then(() => (init_ko(), ko_exports)),
2468
- "./lt.ts": () => Promise.resolve().then(() => (init_lt(), lt_exports)),
2469
- "./lv.ts": () => Promise.resolve().then(() => (init_lv(), lv_exports)),
2470
- "./nb.ts": () => Promise.resolve().then(() => (init_nb(), nb_exports)),
2471
- "./nl.ts": () => Promise.resolve().then(() => (init_nl(), nl_exports)),
2472
- "./pl.ts": () => Promise.resolve().then(() => (init_pl(), pl_exports)),
2473
- "./pt-BR.ts": () => Promise.resolve().then(() => (init_pt_BR(), pt_BR_exports)),
2474
- "./pt-PT.ts": () => Promise.resolve().then(() => (init_pt_PT(), pt_PT_exports)),
2475
- "./ro.ts": () => Promise.resolve().then(() => (init_ro(), ro_exports)),
2476
- "./ru.ts": () => Promise.resolve().then(() => (init_ru(), ru_exports)),
2477
- "./sk.ts": () => Promise.resolve().then(() => (init_sk(), sk_exports)),
2478
- "./sl.ts": () => Promise.resolve().then(() => (init_sl(), sl_exports)),
2479
- "./sv.ts": () => Promise.resolve().then(() => (init_sv(), sv_exports)),
2480
- "./tr.ts": () => Promise.resolve().then(() => (init_tr(), tr_exports)),
2481
- "./uk.ts": () => Promise.resolve().then(() => (init_uk(), uk_exports)),
2482
- "./zh-hans.ts": () => Promise.resolve().then(() => (init_zh_hans(), zh_hans_exports))
2483
- });
2484
-
2485
- // localization/generated/index.js
2486
- var generated_default = configureLocalization({ sourceLocale, targetLocales, loadLocale: (locale) => globImport_ts(`./${locale}.ts`) });
2487
-
2488
- // src/widgets/webwriter-task-hint.ts
2489
- var _WebwriterTaskHint_decorators, _init2, _a2;
2490
- _WebwriterTaskHint_decorators = [t4("webwriter-task-hint")];
2491
- var WebwriterTaskHint = class extends (_a2 = LitElementWw) {
2492
- localize = generated_default;
2493
- render() {
2494
- return x`<slot>
2495
-
2496
- </slot>`;
2497
- }
2498
- };
2499
- _init2 = __decoratorStart(_a2);
2500
- WebwriterTaskHint = __decorateElement(_init2, 0, "WebwriterTaskHint", _WebwriterTaskHint_decorators, WebwriterTaskHint);
2501
- __runInitializers(_init2, 1, WebwriterTaskHint);
2502
- export {
2503
- WebwriterTaskHint
2504
- };
2505
- /*! Bundled license information:
2506
-
2507
- @lit/reactive-element/css-tag.js:
2508
- (**
2509
- * @license
2510
- * Copyright 2019 Google LLC
2511
- * SPDX-License-Identifier: BSD-3-Clause
2512
- *)
2513
-
2514
- @lit/reactive-element/reactive-element.js:
2515
- (**
2516
- * @license
2517
- * Copyright 2017 Google LLC
2518
- * SPDX-License-Identifier: BSD-3-Clause
2519
- *)
2520
-
2521
- lit-html/lit-html.js:
2522
- (**
2523
- * @license
2524
- * Copyright 2017 Google LLC
2525
- * SPDX-License-Identifier: BSD-3-Clause
2526
- *)
2527
-
2528
- lit-element/lit-element.js:
2529
- (**
2530
- * @license
2531
- * Copyright 2017 Google LLC
2532
- * SPDX-License-Identifier: BSD-3-Clause
2533
- *)
2534
-
2535
- lit-html/is-server.js:
2536
- (**
2537
- * @license
2538
- * Copyright 2022 Google LLC
2539
- * SPDX-License-Identifier: BSD-3-Clause
2540
- *)
2541
-
2542
- @webwriter/lit/index.js:
2543
- (*! Bundled license information:
2544
-
2545
- @lit/reactive-element/css-tag.js:
2546
- (**
2547
- * @license
2548
- * Copyright 2019 Google LLC
2549
- * SPDX-License-Identifier: BSD-3-Clause
2550
- *)
2551
-
2552
- @lit/reactive-element/reactive-element.js:
2553
- (**
2554
- * @license
2555
- * Copyright 2017 Google LLC
2556
- * SPDX-License-Identifier: BSD-3-Clause
2557
- *)
2558
-
2559
- lit-html/lit-html.js:
2560
- (**
2561
- * @license
2562
- * Copyright 2017 Google LLC
2563
- * SPDX-License-Identifier: BSD-3-Clause
2564
- *)
2565
-
2566
- lit-element/lit-element.js:
2567
- (**
2568
- * @license
2569
- * Copyright 2017 Google LLC
2570
- * SPDX-License-Identifier: BSD-3-Clause
2571
- *)
2572
-
2573
- lit-html/is-server.js:
2574
- (**
2575
- * @license
2576
- * Copyright 2022 Google LLC
2577
- * SPDX-License-Identifier: BSD-3-Clause
2578
- *)
2579
-
2580
- @lit/reactive-element/decorators/custom-element.js:
2581
- (**
2582
- * @license
2583
- * Copyright 2017 Google LLC
2584
- * SPDX-License-Identifier: BSD-3-Clause
2585
- *)
2586
-
2587
- @lit/reactive-element/decorators/property.js:
2588
- (**
2589
- * @license
2590
- * Copyright 2017 Google LLC
2591
- * SPDX-License-Identifier: BSD-3-Clause
2592
- *)
2593
-
2594
- @lit/reactive-element/decorators/state.js:
2595
- (**
2596
- * @license
2597
- * Copyright 2017 Google LLC
2598
- * SPDX-License-Identifier: BSD-3-Clause
2599
- *)
2600
-
2601
- @lit/reactive-element/decorators/event-options.js:
2602
- (**
2603
- * @license
2604
- * Copyright 2017 Google LLC
2605
- * SPDX-License-Identifier: BSD-3-Clause
2606
- *)
2607
-
2608
- @lit/reactive-element/decorators/base.js:
2609
- (**
2610
- * @license
2611
- * Copyright 2017 Google LLC
2612
- * SPDX-License-Identifier: BSD-3-Clause
2613
- *)
2614
-
2615
- @lit/reactive-element/decorators/query.js:
2616
- (**
2617
- * @license
2618
- * Copyright 2017 Google LLC
2619
- * SPDX-License-Identifier: BSD-3-Clause
2620
- *)
2621
-
2622
- @lit/reactive-element/decorators/query-all.js:
2623
- (**
2624
- * @license
2625
- * Copyright 2017 Google LLC
2626
- * SPDX-License-Identifier: BSD-3-Clause
2627
- *)
2628
-
2629
- @lit/reactive-element/decorators/query-async.js:
2630
- (**
2631
- * @license
2632
- * Copyright 2017 Google LLC
2633
- * SPDX-License-Identifier: BSD-3-Clause
2634
- *)
2635
-
2636
- @lit/reactive-element/decorators/query-assigned-elements.js:
2637
- (**
2638
- * @license
2639
- * Copyright 2021 Google LLC
2640
- * SPDX-License-Identifier: BSD-3-Clause
2641
- *)
2642
-
2643
- @lit/reactive-element/decorators/query-assigned-nodes.js:
2644
- (**
2645
- * @license
2646
- * Copyright 2017 Google LLC
2647
- * SPDX-License-Identifier: BSD-3-Clause
2648
- *)
2649
- *)
2650
-
2651
- @lit/reactive-element/decorators/custom-element.js:
2652
- (**
2653
- * @license
2654
- * Copyright 2017 Google LLC
2655
- * SPDX-License-Identifier: BSD-3-Clause
2656
- *)
2657
-
2658
- @lit/reactive-element/decorators/property.js:
2659
- (**
2660
- * @license
2661
- * Copyright 2017 Google LLC
2662
- * SPDX-License-Identifier: BSD-3-Clause
2663
- *)
2664
-
2665
- @lit/reactive-element/decorators/state.js:
2666
- (**
2667
- * @license
2668
- * Copyright 2017 Google LLC
2669
- * SPDX-License-Identifier: BSD-3-Clause
2670
- *)
2671
-
2672
- @lit/reactive-element/decorators/event-options.js:
2673
- (**
2674
- * @license
2675
- * Copyright 2017 Google LLC
2676
- * SPDX-License-Identifier: BSD-3-Clause
2677
- *)
2678
-
2679
- @lit/reactive-element/decorators/base.js:
2680
- (**
2681
- * @license
2682
- * Copyright 2017 Google LLC
2683
- * SPDX-License-Identifier: BSD-3-Clause
2684
- *)
2685
-
2686
- @lit/reactive-element/decorators/query.js:
2687
- (**
2688
- * @license
2689
- * Copyright 2017 Google LLC
2690
- * SPDX-License-Identifier: BSD-3-Clause
2691
- *)
2692
-
2693
- @lit/reactive-element/decorators/query-all.js:
2694
- (**
2695
- * @license
2696
- * Copyright 2017 Google LLC
2697
- * SPDX-License-Identifier: BSD-3-Clause
2698
- *)
2699
-
2700
- @lit/reactive-element/decorators/query-async.js:
2701
- (**
2702
- * @license
2703
- * Copyright 2017 Google LLC
2704
- * SPDX-License-Identifier: BSD-3-Clause
2705
- *)
2706
-
2707
- @lit/reactive-element/decorators/query-assigned-elements.js:
2708
- (**
2709
- * @license
2710
- * Copyright 2021 Google LLC
2711
- * SPDX-License-Identifier: BSD-3-Clause
2712
- *)
2713
-
2714
- @lit/reactive-element/decorators/query-assigned-nodes.js:
2715
- (**
2716
- * @license
2717
- * Copyright 2017 Google LLC
2718
- * SPDX-License-Identifier: BSD-3-Clause
2719
- *)
2720
-
2721
- @lit/localize/internal/locale-status-event.js:
2722
- (**
2723
- * @license
2724
- * Copyright 2021 Google LLC
2725
- * SPDX-License-Identifier: BSD-3-Clause
2726
- *)
2727
-
2728
- @lit/localize/internal/str-tag.js:
2729
- (**
2730
- * @license
2731
- * Copyright 2021 Google LLC
2732
- * SPDX-License-Identifier: BSD-3-Clause
2733
- *)
2734
-
2735
- @lit/localize/internal/types.js:
2736
- (**
2737
- * @license
2738
- * Copyright 2021 Google LLC
2739
- * SPDX-License-Identifier: BSD-3-Clause
2740
- *)
2741
-
2742
- @lit/localize/internal/default-msg.js:
2743
- (**
2744
- * @license
2745
- * Copyright 2021 Google LLC
2746
- * SPDX-License-Identifier: BSD-3-Clause
2747
- *)
2748
-
2749
- @lit/localize/internal/localized-controller.js:
2750
- (**
2751
- * @license
2752
- * Copyright 2021 Google LLC
2753
- * SPDX-License-Identifier: BSD-3-Clause
2754
- *)
2755
-
2756
- @lit/localize/internal/localized-decorator.js:
2757
- (**
2758
- * @license
2759
- * Copyright 2021 Google LLC
2760
- * SPDX-License-Identifier: BSD-3-Clause
2761
- *)
2762
-
2763
- @lit/localize/internal/deferred.js:
2764
- (**
2765
- * @license
2766
- * Copyright 2020 Google LLC
2767
- * SPDX-License-Identifier: BSD-3-Clause
2768
- *)
2769
-
2770
- @lit/localize/internal/fnv1a64.js:
2771
- (**
2772
- * @license
2773
- * Copyright 2014 Travis Webb
2774
- * SPDX-License-Identifier: MIT
2775
- *)
2776
-
2777
- @lit/localize/internal/id-generation.js:
2778
- (**
2779
- * @license
2780
- * Copyright 2020 Google LLC
2781
- * SPDX-License-Identifier: BSD-3-Clause
2782
- *)
2783
-
2784
- @lit/localize/internal/runtime-msg.js:
2785
- (**
2786
- * @license
2787
- * Copyright 2021 Google LLC
2788
- * SPDX-License-Identifier: BSD-3-Clause
2789
- *)
2790
-
2791
- @lit/localize/init/runtime.js:
2792
- (**
2793
- * @license
2794
- * Copyright 2021 Google LLC
2795
- * SPDX-License-Identifier: BSD-3-Clause
2796
- *)
2797
-
2798
- @lit/localize/init/transform.js:
2799
- (**
2800
- * @license
2801
- * Copyright 2021 Google LLC
2802
- * SPDX-License-Identifier: BSD-3-Clause
2803
- *)
2804
-
2805
- @lit/localize/lit-localize.js:
2806
- (**
2807
- * @license
2808
- * Copyright 2020 Google LLC
2809
- * SPDX-License-Identifier: BSD-3-Clause
2810
- *)
2811
- */