@webwriter/quiz 1.0.4 → 1.0.6

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