@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 i4 = 0, fns = array[flags >> 1], n6 = fns && fns.length; i4 < n6; i4++) flags & 1 ? fns[i4].call(self) : value = fns[i4].call(self, value);
29
+ for (var i7 = 0, fns = array[flags >> 1], n7 = fns && fns.length; i7 < n7; i7++) flags & 1 ? fns[i7].call(self) : value = fns[i7].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 i4 = decorators.length - 1; i4 >= 0; i4--) {
41
+ k3 ? p4 && k3 < 4 && __name(extra, (k3 > 2 ? "set " : k3 > 1 ? "get " : "") + name) : __name(target, name);
42
+ for (var i7 = decorators.length - 1; i7 >= 0; i7--) {
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[i4])(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[i7])(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(t5, e6, o4) {
56
- if (this._$cssResult$ = true, o4 !== s) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
57
- this.cssText = t5, this.t = e6;
793
+ constructor(t6, e7, o6) {
794
+ if (this._$cssResult$ = true, o6 !== s) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
795
+ this.cssText = t6, this.t = e7;
58
796
  }
59
797
  get styleSheet() {
60
- let t5 = this.o;
61
- const s3 = this.t;
62
- if (e && void 0 === t5) {
63
- const e6 = void 0 !== s3 && 1 === s3.length;
64
- e6 && (t5 = o.get(s3)), void 0 === t5 && ((this.o = t5 = new CSSStyleSheet()).replaceSync(this.cssText), e6 && o.set(s3, t5));
798
+ let t6 = this.o;
799
+ const s4 = this.t;
800
+ if (e && void 0 === t6) {
801
+ const e7 = void 0 !== s4 && 1 === s4.length;
802
+ e7 && (t6 = o.get(s4)), void 0 === t6 && ((this.o = t6 = new CSSStyleSheet()).replaceSync(this.cssText), e7 && o.set(s4, t6));
65
803
  }
66
- return t5;
804
+ return t6;
67
805
  }
68
806
  toString() {
69
807
  return this.cssText;
70
808
  }
71
809
  };
72
- var r = (t5) => new n("string" == typeof t5 ? t5 : t5 + "", void 0, s);
73
- var S = (s3, o4) => {
74
- if (e) s3.adoptedStyleSheets = o4.map((t5) => t5 instanceof CSSStyleSheet ? t5 : t5.styleSheet);
75
- else for (const e6 of o4) {
76
- const o5 = document.createElement("style"), n6 = t.litNonce;
77
- void 0 !== n6 && o5.setAttribute("nonce", n6), o5.textContent = e6.cssText, s3.appendChild(o5);
810
+ var r = (t6) => new n("string" == typeof t6 ? t6 : t6 + "", void 0, s);
811
+ var S = (s4, o6) => {
812
+ if (e) s4.adoptedStyleSheets = o6.map((t6) => t6 instanceof CSSStyleSheet ? t6 : t6.styleSheet);
813
+ else for (const e7 of o6) {
814
+ const o7 = document.createElement("style"), n7 = t.litNonce;
815
+ void 0 !== n7 && o7.setAttribute("nonce", n7), o7.textContent = e7.cssText, s4.appendChild(o7);
78
816
  }
79
817
  };
80
- var c = e ? (t5) => t5 : (t5) => t5 instanceof CSSStyleSheet ? ((t6) => {
81
- let e6 = "";
82
- for (const s3 of t6.cssRules) e6 += s3.cssText;
83
- return r(e6);
84
- })(t5) : t5;
818
+ var c = e ? (t6) => t6 : (t6) => t6 instanceof CSSStyleSheet ? ((t7) => {
819
+ let e7 = "";
820
+ for (const s4 of t7.cssRules) e7 += s4.cssText;
821
+ return r(e7);
822
+ })(t6) : t6;
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 = (t5, s3) => t5;
93
- var u = { toAttribute(t5, s3) {
94
- switch (s3) {
830
+ var d = (t6, s4) => t6;
831
+ var u = { toAttribute(t6, s4) {
832
+ switch (s4) {
95
833
  case Boolean:
96
- t5 = t5 ? l : null;
834
+ t6 = t6 ? l : null;
97
835
  break;
98
836
  case Object:
99
837
  case Array:
100
- t5 = null == t5 ? t5 : JSON.stringify(t5);
838
+ t6 = null == t6 ? t6 : JSON.stringify(t6);
101
839
  }
102
- return t5;
103
- }, fromAttribute(t5, s3) {
104
- let i4 = t5;
105
- switch (s3) {
840
+ return t6;
841
+ }, fromAttribute(t6, s4) {
842
+ let i7 = t6;
843
+ switch (s4) {
106
844
  case Boolean:
107
- i4 = null !== t5;
845
+ i7 = null !== t6;
108
846
  break;
109
847
  case Number:
110
- i4 = null === t5 ? null : Number(t5);
848
+ i7 = null === t6 ? null : Number(t6);
111
849
  break;
112
850
  case Object:
113
851
  case Array:
114
852
  try {
115
- i4 = JSON.parse(t5);
116
- } catch (t6) {
117
- i4 = null;
853
+ i7 = JSON.parse(t6);
854
+ } catch (t7) {
855
+ i7 = null;
118
856
  }
119
857
  }
120
- return i4;
858
+ return i7;
121
859
  } };
122
- var f = (t5, s3) => !i2(t5, s3);
860
+ var f = (t6, s4) => !i2(t6, 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(t5) {
127
- this._$Ei(), (this.l ??= []).push(t5);
864
+ static addInitializer(t6) {
865
+ this._$Ei(), (this.l ??= []).push(t6);
128
866
  }
129
867
  static get observedAttributes() {
130
868
  return this.finalize(), this._$Eh && [...this._$Eh.keys()];
131
869
  }
132
- static createProperty(t5, s3 = y) {
133
- if (s3.state && (s3.attribute = false), this._$Ei(), this.elementProperties.set(t5, s3), !s3.noAccessor) {
134
- const i4 = Symbol(), r4 = this.getPropertyDescriptor(t5, i4, s3);
135
- void 0 !== r4 && e2(this.prototype, t5, r4);
870
+ static createProperty(t6, s4 = y) {
871
+ if (s4.state && (s4.attribute = false), this._$Ei(), this.elementProperties.set(t6, s4), !s4.noAccessor) {
872
+ const i7 = Symbol(), r6 = this.getPropertyDescriptor(t6, i7, s4);
873
+ void 0 !== r6 && e2(this.prototype, t6, r6);
136
874
  }
137
875
  }
138
- static getPropertyDescriptor(t5, s3, i4) {
139
- const { get: e6, set: h5 } = r2(this.prototype, t5) ?? { get() {
140
- return this[s3];
141
- }, set(t6) {
142
- this[s3] = t6;
876
+ static getPropertyDescriptor(t6, s4, i7) {
877
+ const { get: e7, set: h4 } = r2(this.prototype, t6) ?? { get() {
878
+ return this[s4];
879
+ }, set(t7) {
880
+ this[s4] = t7;
143
881
  } };
144
882
  return { get() {
145
- return e6?.call(this);
146
- }, set(s4) {
147
- const r4 = e6?.call(this);
148
- h5.call(this, s4), this.requestUpdate(t5, r4, i4);
883
+ return e7?.call(this);
884
+ }, set(s5) {
885
+ const r6 = e7?.call(this);
886
+ h4.call(this, s5), this.requestUpdate(t6, r6, i7);
149
887
  }, configurable: true, enumerable: true };
150
888
  }
151
- static getPropertyOptions(t5) {
152
- return this.elementProperties.get(t5) ?? y;
889
+ static getPropertyOptions(t6) {
890
+ return this.elementProperties.get(t6) ?? y;
153
891
  }
154
892
  static _$Ei() {
155
893
  if (this.hasOwnProperty(d("elementProperties"))) return;
156
- const t5 = n2(this);
157
- t5.finalize(), void 0 !== t5.l && (this.l = [...t5.l]), this.elementProperties = new Map(t5.elementProperties);
894
+ const t6 = n2(this);
895
+ t6.finalize(), void 0 !== t6.l && (this.l = [...t6.l]), this.elementProperties = new Map(t6.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 t6 = this.properties, s3 = [...h(t6), ...o2(t6)];
163
- for (const i4 of s3) this.createProperty(i4, t6[i4]);
900
+ const t7 = this.properties, s4 = [...h(t7), ...o2(t7)];
901
+ for (const i7 of s4) this.createProperty(i7, t7[i7]);
164
902
  }
165
- const t5 = this[Symbol.metadata];
166
- if (null !== t5) {
167
- const s3 = litPropertyMetadata.get(t5);
168
- if (void 0 !== s3) for (const [t6, i4] of s3) this.elementProperties.set(t6, i4);
903
+ const t6 = this[Symbol.metadata];
904
+ if (null !== t6) {
905
+ const s4 = litPropertyMetadata.get(t6);
906
+ if (void 0 !== s4) for (const [t7, i7] of s4) this.elementProperties.set(t7, i7);
169
907
  }
170
908
  this._$Eh = /* @__PURE__ */ new Map();
171
- for (const [t6, s3] of this.elementProperties) {
172
- const i4 = this._$Eu(t6, s3);
173
- void 0 !== i4 && this._$Eh.set(i4, t6);
909
+ for (const [t7, s4] of this.elementProperties) {
910
+ const i7 = this._$Eu(t7, s4);
911
+ void 0 !== i7 && this._$Eh.set(i7, t7);
174
912
  }
175
913
  this.elementStyles = this.finalizeStyles(this.styles);
176
914
  }
177
- static finalizeStyles(s3) {
178
- const i4 = [];
179
- if (Array.isArray(s3)) {
180
- const e6 = new Set(s3.flat(1 / 0).reverse());
181
- for (const s4 of e6) i4.unshift(c(s4));
182
- } else void 0 !== s3 && i4.push(c(s3));
183
- return i4;
915
+ static finalizeStyles(s4) {
916
+ const i7 = [];
917
+ if (Array.isArray(s4)) {
918
+ const e7 = new Set(s4.flat(1 / 0).reverse());
919
+ for (const s5 of e7) i7.unshift(c(s5));
920
+ } else void 0 !== s4 && i7.push(c(s4));
921
+ return i7;
184
922
  }
185
- static _$Eu(t5, s3) {
186
- const i4 = s3.attribute;
187
- return false === i4 ? void 0 : "string" == typeof i4 ? i4 : "string" == typeof t5 ? t5.toLowerCase() : void 0;
923
+ static _$Eu(t6, s4) {
924
+ const i7 = s4.attribute;
925
+ return false === i7 ? void 0 : "string" == typeof i7 ? i7 : "string" == typeof t6 ? t6.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((t5) => this.enableUpdating = t5), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t5) => t5(this));
931
+ this._$ES = new Promise((t6) => this.enableUpdating = t6), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t6) => t6(this));
194
932
  }
195
- addController(t5) {
196
- (this._$EO ??= /* @__PURE__ */ new Set()).add(t5), void 0 !== this.renderRoot && this.isConnected && t5.hostConnected?.();
933
+ addController(t6) {
934
+ (this._$EO ??= /* @__PURE__ */ new Set()).add(t6), void 0 !== this.renderRoot && this.isConnected && t6.hostConnected?.();
197
935
  }
198
- removeController(t5) {
199
- this._$EO?.delete(t5);
936
+ removeController(t6) {
937
+ this._$EO?.delete(t6);
200
938
  }
201
939
  _$E_() {
202
- const t5 = /* @__PURE__ */ new Map(), s3 = this.constructor.elementProperties;
203
- for (const i4 of s3.keys()) this.hasOwnProperty(i4) && (t5.set(i4, this[i4]), delete this[i4]);
204
- t5.size > 0 && (this._$Ep = t5);
940
+ const t6 = /* @__PURE__ */ new Map(), s4 = this.constructor.elementProperties;
941
+ for (const i7 of s4.keys()) this.hasOwnProperty(i7) && (t6.set(i7, this[i7]), delete this[i7]);
942
+ t6.size > 0 && (this._$Ep = t6);
205
943
  }
206
944
  createRenderRoot() {
207
- const t5 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
208
- return S(t5, this.constructor.elementStyles), t5;
945
+ const t6 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
946
+ return S(t6, this.constructor.elementStyles), t6;
209
947
  }
210
948
  connectedCallback() {
211
- this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t5) => t5.hostConnected?.());
949
+ this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t6) => t6.hostConnected?.());
212
950
  }
213
- enableUpdating(t5) {
951
+ enableUpdating(t6) {
214
952
  }
215
953
  disconnectedCallback() {
216
- this._$EO?.forEach((t5) => t5.hostDisconnected?.());
954
+ this._$EO?.forEach((t6) => t6.hostDisconnected?.());
217
955
  }
218
- attributeChangedCallback(t5, s3, i4) {
219
- this._$AK(t5, i4);
956
+ attributeChangedCallback(t6, s4, i7) {
957
+ this._$AK(t6, i7);
220
958
  }
221
- _$EC(t5, s3) {
222
- const i4 = this.constructor.elementProperties.get(t5), e6 = this.constructor._$Eu(t5, i4);
223
- if (void 0 !== e6 && true === i4.reflect) {
224
- const r4 = (void 0 !== i4.converter?.toAttribute ? i4.converter : u).toAttribute(s3, i4.type);
225
- this._$Em = t5, null == r4 ? this.removeAttribute(e6) : this.setAttribute(e6, r4), this._$Em = null;
959
+ _$EC(t6, s4) {
960
+ const i7 = this.constructor.elementProperties.get(t6), e7 = this.constructor._$Eu(t6, i7);
961
+ if (void 0 !== e7 && true === i7.reflect) {
962
+ const r6 = (void 0 !== i7.converter?.toAttribute ? i7.converter : u).toAttribute(s4, i7.type);
963
+ this._$Em = t6, null == r6 ? this.removeAttribute(e7) : this.setAttribute(e7, r6), this._$Em = null;
226
964
  }
227
965
  }
228
- _$AK(t5, s3) {
229
- const i4 = this.constructor, e6 = i4._$Eh.get(t5);
230
- if (void 0 !== e6 && this._$Em !== e6) {
231
- const t6 = i4.getPropertyOptions(e6), r4 = "function" == typeof t6.converter ? { fromAttribute: t6.converter } : void 0 !== t6.converter?.fromAttribute ? t6.converter : u;
232
- this._$Em = e6, this[e6] = r4.fromAttribute(s3, t6.type), this._$Em = null;
966
+ _$AK(t6, s4) {
967
+ const i7 = this.constructor, e7 = i7._$Eh.get(t6);
968
+ if (void 0 !== e7 && this._$Em !== e7) {
969
+ const t7 = i7.getPropertyOptions(e7), r6 = "function" == typeof t7.converter ? { fromAttribute: t7.converter } : void 0 !== t7.converter?.fromAttribute ? t7.converter : u;
970
+ this._$Em = e7, this[e7] = r6.fromAttribute(s4, t7.type), this._$Em = null;
233
971
  }
234
972
  }
235
- requestUpdate(t5, s3, i4) {
236
- if (void 0 !== t5) {
237
- if (i4 ??= this.constructor.getPropertyOptions(t5), !(i4.hasChanged ?? f)(this[t5], s3)) return;
238
- this.P(t5, s3, i4);
973
+ requestUpdate(t6, s4, i7) {
974
+ if (void 0 !== t6) {
975
+ if (i7 ??= this.constructor.getPropertyOptions(t6), !(i7.hasChanged ?? f)(this[t6], s4)) return;
976
+ this.P(t6, s4, i7);
239
977
  }
240
978
  false === this.isUpdatePending && (this._$ES = this._$ET());
241
979
  }
242
- P(t5, s3, i4) {
243
- this._$AL.has(t5) || this._$AL.set(t5, s3), true === i4.reflect && this._$Em !== t5 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t5);
980
+ P(t6, s4, i7) {
981
+ this._$AL.has(t6) || this._$AL.set(t6, s4), true === i7.reflect && this._$Em !== t6 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t6);
244
982
  }
245
983
  async _$ET() {
246
984
  this.isUpdatePending = true;
247
985
  try {
248
986
  await this._$ES;
249
- } catch (t6) {
250
- Promise.reject(t6);
987
+ } catch (t7) {
988
+ Promise.reject(t7);
251
989
  }
252
- const t5 = this.scheduleUpdate();
253
- return null != t5 && await t5, !this.isUpdatePending;
990
+ const t6 = this.scheduleUpdate();
991
+ return null != t6 && await t6, !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 [t7, s4] of this._$Ep) this[t7] = s4;
1000
+ for (const [t8, s5] of this._$Ep) this[t8] = s5;
263
1001
  this._$Ep = void 0;
264
1002
  }
265
- const t6 = this.constructor.elementProperties;
266
- if (t6.size > 0) for (const [s4, i4] of t6) true !== i4.wrapped || this._$AL.has(s4) || void 0 === this[s4] || this.P(s4, this[s4], i4);
1003
+ const t7 = this.constructor.elementProperties;
1004
+ if (t7.size > 0) for (const [s5, i7] of t7) true !== i7.wrapped || this._$AL.has(s5) || void 0 === this[s5] || this.P(s5, this[s5], i7);
267
1005
  }
268
- let t5 = false;
269
- const s3 = this._$AL;
1006
+ let t6 = false;
1007
+ const s4 = this._$AL;
270
1008
  try {
271
- t5 = this.shouldUpdate(s3), t5 ? (this.willUpdate(s3), this._$EO?.forEach((t6) => t6.hostUpdate?.()), this.update(s3)) : this._$EU();
272
- } catch (s4) {
273
- throw t5 = false, this._$EU(), s4;
1009
+ t6 = this.shouldUpdate(s4), t6 ? (this.willUpdate(s4), this._$EO?.forEach((t7) => t7.hostUpdate?.()), this.update(s4)) : this._$EU();
1010
+ } catch (s5) {
1011
+ throw t6 = false, this._$EU(), s5;
274
1012
  }
275
- t5 && this._$AE(s3);
1013
+ t6 && this._$AE(s4);
276
1014
  }
277
- willUpdate(t5) {
1015
+ willUpdate(t6) {
278
1016
  }
279
- _$AE(t5) {
280
- this._$EO?.forEach((t6) => t6.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t5)), this.updated(t5);
1017
+ _$AE(t6) {
1018
+ this._$EO?.forEach((t7) => t7.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t6)), this.updated(t6);
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(t5) {
1029
+ shouldUpdate(t6) {
292
1030
  return true;
293
1031
  }
294
- update(t5) {
295
- this._$Ej &&= this._$Ej.forEach((t6) => this._$EC(t6, this[t6])), this._$EU();
1032
+ update(t6) {
1033
+ this._$Ej &&= this._$Ej.forEach((t7) => this._$EC(t7, this[t7])), this._$EU();
296
1034
  }
297
- updated(t5) {
1035
+ updated(t6) {
298
1036
  }
299
- firstUpdated(t5) {
1037
+ firstUpdated(t6) {
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: (t5) => t5 }) : 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 = (t5) => null === t5 || "object" != typeof t5 && "function" != typeof t5;
315
- var g = Array.isArray;
316
- var $ = (t5) => g(t5) || "function" == typeof t5?.[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: (t6) => t6 }) : 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 = (t6) => null === t6 || "object" != typeof t6 && "function" != typeof t6;
1053
+ var a2 = Array.isArray;
1054
+ var u2 = (t6) => a2(t6) || "function" == typeof t6?.[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 = (t5) => (i4, ...s3) => ({ _$litType$: t5, strings: i4, 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(t5, i4) {
335
- if (!g(t5) || !t5.hasOwnProperty("raw")) throw Error("invalid template strings array");
336
- return void 0 !== h2 ? h2.createHTML(i4) : i4;
1061
+ var p2 = /'/g;
1062
+ var g = /"/g;
1063
+ var $ = /^(?:script|style|textarea|title)$/i;
1064
+ var y2 = (t6) => (i7, ...s4) => ({ _$litType$: t6, strings: i7, 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(t6, i7) {
1073
+ if (!a2(t6) || !t6.hasOwnProperty("raw")) throw Error("invalid template strings array");
1074
+ return void 0 !== s2 ? s2.createHTML(i7) : i7;
337
1075
  }
338
- var U = (t5, i4) => {
339
- const s3 = t5.length - 1, e6 = [];
340
- let h5, o4 = 2 === i4 ? "<svg>" : 3 === i4 ? "<math>" : "", n6 = T;
341
- for (let i5 = 0; i5 < s3; i5++) {
342
- const s4 = t5[i5];
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 && t5[i5 + 1].startsWith("/>") ? " " : "";
346
- o4 += n6 === T ? s4 + _ : c5 >= 0 ? (e6.push(r4), s4.slice(0, c5) + f2 + s4.slice(c5) + v + u3) : s4 + v + (-2 === c5 ? i5 : u3);
347
- }
348
- return [N(t5, o4 + (t5[s3] || "<?>") + (2 === i4 ? "</svg>" : 3 === i4 ? "</math>" : "")), e6];
1076
+ var V = (t6, i7) => {
1077
+ const s4 = t6.length - 1, o6 = [];
1078
+ let r6, l4 = 2 === i7 ? "<svg>" : 3 === i7 ? "<math>" : "", c5 = f2;
1079
+ for (let i8 = 0; i8 < s4; i8++) {
1080
+ const s5 = t6[i8];
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 && t6[i8 + 1].startsWith("/>") ? " " : "";
1084
+ l4 += c5 === f2 ? s5 + n3 : d4 >= 0 ? (o6.push(a4), s5.slice(0, d4) + e3 + s5.slice(d4) + h2 + x3) : s5 + h2 + (-2 === d4 ? i8 : x3);
1085
+ }
1086
+ return [P(t6, l4 + (t6[s4] || "<?>") + (2 === i7 ? "</svg>" : 3 === i7 ? "</math>" : "")), o6];
349
1087
  };
350
- var B = class _B2 {
351
- constructor({ strings: t5, _$litType$: i4 }, s3) {
352
- let e6;
1088
+ var N = class _N {
1089
+ constructor({ strings: t6, _$litType$: s4 }, n7) {
1090
+ let r6;
353
1091
  this.parts = [];
354
- let h5 = 0, o4 = 0;
355
- const n6 = t5.length - 1, r4 = this.parts, [l3, a3] = U(t5, i4);
356
- if (this.el = _B2.createElement(l3, s3), I.currentNode = this.el.content, 2 === i4 || 3 === i4) {
357
- const t6 = this.el.content.firstChild;
358
- t6.replaceWith(...t6.childNodes);
1092
+ let c5 = 0, a4 = 0;
1093
+ const u4 = t6.length - 1, d4 = this.parts, [f4, v3] = V(t6, s4);
1094
+ if (this.el = _N.createElement(f4, n7), C.currentNode = this.el.content, 2 === s4 || 3 === s4) {
1095
+ const t7 = this.el.content.firstChild;
1096
+ t7.replaceWith(...t7.childNodes);
359
1097
  }
360
- for (; null !== (e6 = I.nextNode()) && r4.length < n6; ) {
361
- if (1 === e6.nodeType) {
362
- if (e6.hasAttributes()) for (const t6 of e6.getAttributeNames()) if (t6.endsWith(f2)) {
363
- const i5 = a3[o4++], s4 = e6.getAttribute(t6).split(v), n7 = /([.?@])?(.*)/.exec(i5);
364
- r4.push({ type: 1, index: h5, name: n7[2], strings: s4, ctor: "." === n7[1] ? Y : "?" === n7[1] ? Z : "@" === n7[1] ? q : G }), e6.removeAttribute(t6);
365
- } else t6.startsWith(v) && (r4.push({ type: 6, index: h5 }), e6.removeAttribute(t6));
366
- if (M.test(e6.tagName)) {
367
- const t6 = e6.textContent.split(v), i5 = t6.length - 1;
368
- if (i5 > 0) {
369
- e6.textContent = c3 ? c3.emptyScript : "";
370
- for (let s4 = 0; s4 < i5; s4++) e6.append(t6[s4], lt()), I.nextNode(), r4.push({ type: 2, index: ++h5 });
371
- e6.append(t6[i5], lt());
1098
+ for (; null !== (r6 = C.nextNode()) && d4.length < u4; ) {
1099
+ if (1 === r6.nodeType) {
1100
+ if (r6.hasAttributes()) for (const t7 of r6.getAttributeNames()) if (t7.endsWith(e3)) {
1101
+ const i7 = v3[a4++], s5 = r6.getAttribute(t7).split(h2), e7 = /([.?@])?(.*)/.exec(i7);
1102
+ d4.push({ type: 1, index: c5, name: e7[2], strings: s5, ctor: "." === e7[1] ? H : "?" === e7[1] ? I : "@" === e7[1] ? L : k }), r6.removeAttribute(t7);
1103
+ } else t7.startsWith(h2) && (d4.push({ type: 6, index: c5 }), r6.removeAttribute(t7));
1104
+ if ($.test(r6.tagName)) {
1105
+ const t7 = r6.textContent.split(h2), s5 = t7.length - 1;
1106
+ if (s5 > 0) {
1107
+ r6.textContent = i3 ? i3.emptyScript : "";
1108
+ for (let i7 = 0; i7 < s5; i7++) r6.append(t7[i7], l2()), C.nextNode(), d4.push({ type: 2, index: ++c5 });
1109
+ r6.append(t7[s5], l2());
372
1110
  }
373
1111
  }
374
- } else if (8 === e6.nodeType) if (e6.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 t6 = -1;
377
- for (; -1 !== (t6 = e6.data.indexOf(v, t6 + 1)); ) r4.push({ type: 7, index: h5 }), t6 += v.length - 1;
1114
+ let t7 = -1;
1115
+ for (; -1 !== (t7 = r6.data.indexOf(h2, t7 + 1)); ) d4.push({ type: 7, index: c5 }), t7 += h2.length - 1;
378
1116
  }
379
- h5++;
1117
+ c5++;
380
1118
  }
381
1119
  }
382
- static createElement(t5, i4) {
383
- const s3 = w.createElement("template");
384
- return s3.innerHTML = t5, s3;
1120
+ static createElement(t6, i7) {
1121
+ const s4 = r3.createElement("template");
1122
+ return s4.innerHTML = t6, s4;
385
1123
  }
386
1124
  };
387
- function z(t5, i4, s3 = t5, e6) {
388
- if (i4 === R) return i4;
389
- let h5 = void 0 !== e6 ? s3.o?.[e6] : s3.l;
390
- const o4 = st(i4) ? void 0 : i4._$litDirective$;
391
- return h5?.constructor !== o4 && (h5?._$AO?.(false), void 0 === o4 ? h5 = void 0 : (h5 = new o4(t5), h5._$AT(t5, s3, e6)), void 0 !== e6 ? (s3.o ??= [])[e6] = h5 : s3.l = h5), void 0 !== h5 && (i4 = z(t5, h5._$AS(t5, i4.values), h5, e6)), i4;
1125
+ function S2(t6, i7, s4 = t6, e7) {
1126
+ if (i7 === T) return i7;
1127
+ let h4 = void 0 !== e7 ? s4._$Co?.[e7] : s4._$Cl;
1128
+ const o6 = c3(i7) ? void 0 : i7._$litDirective$;
1129
+ return h4?.constructor !== o6 && (h4?._$AO?.(false), void 0 === o6 ? h4 = void 0 : (h4 = new o6(t6), h4._$AT(t6, s4, e7)), void 0 !== e7 ? (s4._$Co ??= [])[e7] = h4 : s4._$Cl = h4), void 0 !== h4 && (i7 = S2(t6, h4._$AS(t6, i7.values), h4, e7)), i7;
392
1130
  }
393
- var F = class {
394
- constructor(t5, i4) {
395
- this._$AV = [], this._$AN = void 0, this._$AD = t5, this._$AM = i4;
1131
+ var M = class {
1132
+ constructor(t6, i7) {
1133
+ this._$AV = [], this._$AN = void 0, this._$AD = t6, this._$AM = i7;
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(t5) {
404
- const { el: { content: i4 }, parts: s3 } = this._$AD, e6 = (t5?.creationScope ?? w).importNode(i4, true);
405
- I.currentNode = e6;
406
- let h5 = I.nextNode(), o4 = 0, n6 = 0, r4 = s3[0];
407
- for (; void 0 !== r4; ) {
408
- if (o4 === r4.index) {
409
- let i5;
410
- 2 === r4.type ? i5 = new et(h5, h5.nextSibling, this, t5) : 1 === r4.type ? i5 = new r4.ctor(h5, r4.name, r4.strings, this, t5) : 6 === r4.type && (i5 = new K(h5, this, t5)), this._$AV.push(i5), r4 = s3[++n6];
1141
+ u(t6) {
1142
+ const { el: { content: i7 }, parts: s4 } = this._$AD, e7 = (t6?.creationScope ?? r3).importNode(i7, true);
1143
+ C.currentNode = e7;
1144
+ let h4 = C.nextNode(), o6 = 0, n7 = 0, l4 = s4[0];
1145
+ for (; void 0 !== l4; ) {
1146
+ if (o6 === l4.index) {
1147
+ let i8;
1148
+ 2 === l4.type ? i8 = new R(h4, h4.nextSibling, this, t6) : 1 === l4.type ? i8 = new l4.ctor(h4, l4.name, l4.strings, this, t6) : 6 === l4.type && (i8 = new z(h4, this, t6)), this._$AV.push(i8), l4 = s4[++n7];
411
1149
  }
412
- o4 !== r4?.index && (h5 = I.nextNode(), o4++);
1150
+ o6 !== l4?.index && (h4 = C.nextNode(), o6++);
413
1151
  }
414
- return I.currentNode = w, e6;
1152
+ return C.currentNode = r3, e7;
415
1153
  }
416
- p(t5) {
417
- let i4 = 0;
418
- for (const s3 of this._$AV) void 0 !== s3 && (void 0 !== s3.strings ? (s3._$AI(t5, s3, i4), i4 += s3.strings.length - 2) : s3._$AI(t5[i4])), i4++;
1154
+ p(t6) {
1155
+ let i7 = 0;
1156
+ for (const s4 of this._$AV) void 0 !== s4 && (void 0 !== s4.strings ? (s4._$AI(t6, s4, i7), i7 += s4.strings.length - 2) : s4._$AI(t6[i7])), i7++;
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(t5, i4, s3, e6) {
426
- this.type = 2, this._$AH = D, this._$AN = void 0, this._$AA = t5, this._$AB = i4, this._$AM = s3, this.options = e6, this.v = e6?.isConnected ?? true;
1163
+ constructor(t6, i7, s4, e7) {
1164
+ this.type = 2, this._$AH = E, this._$AN = void 0, this._$AA = t6, this._$AB = i7, this._$AM = s4, this.options = e7, this._$Cv = e7?.isConnected ?? true;
427
1165
  }
428
1166
  get parentNode() {
429
- let t5 = this._$AA.parentNode;
430
- const i4 = this._$AM;
431
- return void 0 !== i4 && 11 === t5?.nodeType && (t5 = i4.parentNode), t5;
1167
+ let t6 = this._$AA.parentNode;
1168
+ const i7 = this._$AM;
1169
+ return void 0 !== i7 && 11 === t6?.nodeType && (t6 = i7.parentNode), t6;
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(t5, i4 = this) {
440
- t5 = z(this, t5, i4), st(t5) ? t5 === D || null == t5 || "" === t5 ? (this._$AH !== D && this._$AR(), this._$AH = D) : t5 !== this._$AH && t5 !== R && this._(t5) : void 0 !== t5._$litType$ ? this.$(t5) : void 0 !== t5.nodeType ? this.T(t5) : $(t5) ? this.k(t5) : this._(t5);
1177
+ _$AI(t6, i7 = this) {
1178
+ t6 = S2(this, t6, i7), c3(t6) ? t6 === E || null == t6 || "" === t6 ? (this._$AH !== E && this._$AR(), this._$AH = E) : t6 !== this._$AH && t6 !== T && this._(t6) : void 0 !== t6._$litType$ ? this.$(t6) : void 0 !== t6.nodeType ? this.T(t6) : u2(t6) ? this.k(t6) : this._(t6);
441
1179
  }
442
- O(t5) {
443
- return this._$AA.parentNode.insertBefore(t5, this._$AB);
1180
+ O(t6) {
1181
+ return this._$AA.parentNode.insertBefore(t6, this._$AB);
444
1182
  }
445
- T(t5) {
446
- this._$AH !== t5 && (this._$AR(), this._$AH = this.O(t5));
1183
+ T(t6) {
1184
+ this._$AH !== t6 && (this._$AR(), this._$AH = this.O(t6));
447
1185
  }
448
- _(t5) {
449
- this._$AH !== D && st(this._$AH) ? this._$AA.nextSibling.data = t5 : this.T(w.createTextNode(t5)), this._$AH = t5;
1186
+ _(t6) {
1187
+ this._$AH !== E && c3(this._$AH) ? this._$AA.nextSibling.data = t6 : this.T(r3.createTextNode(t6)), this._$AH = t6;
450
1188
  }
451
- $(t5) {
452
- const { values: i4, _$litType$: s3 } = t5, e6 = "number" == typeof s3 ? this._$AC(t5) : (void 0 === s3.el && (s3.el = B.createElement(N(s3.h, s3.h[0]), this.options)), s3);
453
- if (this._$AH?._$AD === e6) this._$AH.p(i4);
1189
+ $(t6) {
1190
+ const { values: i7, _$litType$: s4 } = t6, e7 = "number" == typeof s4 ? this._$AC(t6) : (void 0 === s4.el && (s4.el = N.createElement(P(s4.h, s4.h[0]), this.options)), s4);
1191
+ if (this._$AH?._$AD === e7) this._$AH.p(i7);
454
1192
  else {
455
- const t6 = new F(e6, this), s4 = t6.u(this.options);
456
- t6.p(i4), this.T(s4), this._$AH = t6;
1193
+ const t7 = new M(e7, this), s5 = t7.u(this.options);
1194
+ t7.p(i7), this.T(s5), this._$AH = t7;
457
1195
  }
458
1196
  }
459
- _$AC(t5) {
460
- let i4 = V.get(t5.strings);
461
- return void 0 === i4 && V.set(t5.strings, i4 = new B(t5)), i4;
462
- }
463
- k(t5) {
464
- g(this._$AH) || (this._$AH = [], this._$AR());
465
- const i4 = this._$AH;
466
- let s3, e6 = 0;
467
- for (const h5 of t5) e6 === i4.length ? i4.push(s3 = new _et2(this.O(lt()), this.O(lt()), this, this.options)) : s3 = i4[e6], s3._$AI(h5), e6++;
468
- e6 < i4.length && (this._$AR(s3 && s3._$AB.nextSibling, e6), i4.length = e6);
469
- }
470
- _$AR(t5 = this._$AA.nextSibling, i4) {
471
- for (this._$AP?.(false, true, i4); t5 && t5 !== this._$AB; ) {
472
- const i5 = t5.nextSibling;
473
- t5.remove(), t5 = i5;
1197
+ _$AC(t6) {
1198
+ let i7 = A.get(t6.strings);
1199
+ return void 0 === i7 && A.set(t6.strings, i7 = new N(t6)), i7;
1200
+ }
1201
+ k(t6) {
1202
+ a2(this._$AH) || (this._$AH = [], this._$AR());
1203
+ const i7 = this._$AH;
1204
+ let s4, e7 = 0;
1205
+ for (const h4 of t6) e7 === i7.length ? i7.push(s4 = new _R(this.O(l2()), this.O(l2()), this, this.options)) : s4 = i7[e7], s4._$AI(h4), e7++;
1206
+ e7 < i7.length && (this._$AR(s4 && s4._$AB.nextSibling, e7), i7.length = e7);
1207
+ }
1208
+ _$AR(t6 = this._$AA.nextSibling, i7) {
1209
+ for (this._$AP?.(false, true, i7); t6 && t6 !== this._$AB; ) {
1210
+ const i8 = t6.nextSibling;
1211
+ t6.remove(), t6 = i8;
474
1212
  }
475
1213
  }
476
- setConnected(t5) {
477
- void 0 === this._$AM && (this.v = t5, this._$AP?.(t5));
1214
+ setConnected(t6) {
1215
+ void 0 === this._$AM && (this._$Cv = t6, this._$AP?.(t6));
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(t5, i4, s3, e6, h5) {
488
- this.type = 1, this._$AH = D, this._$AN = void 0, this.element = t5, this.name = i4, this._$AM = e6, 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(t6, i7, s4, e7, h4) {
1226
+ this.type = 1, this._$AH = E, this._$AN = void 0, this.element = t6, this.name = i7, this._$AM = e7, 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(t5, i4 = this, s3, e6) {
491
- const h5 = this.strings;
492
- let o4 = false;
493
- if (void 0 === h5) t5 = z(this, t5, i4, 0), o4 = !st(t5) || t5 !== this._$AH && t5 !== R, o4 && (this._$AH = t5);
1228
+ _$AI(t6, i7 = this, s4, e7) {
1229
+ const h4 = this.strings;
1230
+ let o6 = false;
1231
+ if (void 0 === h4) t6 = S2(this, t6, i7, 0), o6 = !c3(t6) || t6 !== this._$AH && t6 !== T, o6 && (this._$AH = t6);
494
1232
  else {
495
- const e7 = t5;
496
- let n6, r4;
497
- for (t5 = h5[0], n6 = 0; n6 < h5.length - 1; n6++) r4 = z(this, e7[s3 + n6], i4, n6), r4 === R && (r4 = this._$AH[n6]), o4 ||= !st(r4) || r4 !== this._$AH[n6], r4 === D ? t5 = D : t5 !== D && (t5 += (r4 ?? "") + h5[n6 + 1]), this._$AH[n6] = r4;
1233
+ const e8 = t6;
1234
+ let n7, r6;
1235
+ for (t6 = h4[0], n7 = 0; n7 < h4.length - 1; n7++) r6 = S2(this, e8[s4 + n7], i7, n7), r6 === T && (r6 = this._$AH[n7]), o6 ||= !c3(r6) || r6 !== this._$AH[n7], r6 === E ? t6 = E : t6 !== E && (t6 += (r6 ?? "") + h4[n7 + 1]), this._$AH[n7] = r6;
498
1236
  }
499
- o4 && !e6 && this.j(t5);
1237
+ o6 && !e7 && this.j(t6);
500
1238
  }
501
- j(t5) {
502
- t5 === D ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t5 ?? "");
1239
+ j(t6) {
1240
+ t6 === E ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t6 ?? "");
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(t5) {
510
- this.element[this.name] = t5 === D ? void 0 : t5;
1247
+ j(t6) {
1248
+ this.element[this.name] = t6 === E ? void 0 : t6;
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(t5) {
518
- this.element.toggleAttribute(this.name, !!t5 && t5 !== D);
1255
+ j(t6) {
1256
+ this.element.toggleAttribute(this.name, !!t6 && t6 !== E);
519
1257
  }
520
1258
  };
521
- var q = class extends G {
522
- constructor(t5, i4, s3, e6, h5) {
523
- super(t5, i4, s3, e6, h5), this.type = 5;
1259
+ var L = class extends k {
1260
+ constructor(t6, i7, s4, e7, h4) {
1261
+ super(t6, i7, s4, e7, h4), this.type = 5;
524
1262
  }
525
- _$AI(t5, i4 = this) {
526
- if ((t5 = z(this, t5, i4, 0) ?? D) === R) return;
527
- const s3 = this._$AH, e6 = t5 === D && s3 !== D || t5.capture !== s3.capture || t5.once !== s3.once || t5.passive !== s3.passive, h5 = t5 !== D && (s3 === D || e6);
528
- e6 && this.element.removeEventListener(this.name, this, s3), h5 && this.element.addEventListener(this.name, this, t5), this._$AH = t5;
1263
+ _$AI(t6, i7 = this) {
1264
+ if ((t6 = S2(this, t6, i7, 0) ?? E) === T) return;
1265
+ const s4 = this._$AH, e7 = t6 === E && s4 !== E || t6.capture !== s4.capture || t6.once !== s4.once || t6.passive !== s4.passive, h4 = t6 !== E && (s4 === E || e7);
1266
+ e7 && this.element.removeEventListener(this.name, this, s4), h4 && this.element.addEventListener(this.name, this, t6), this._$AH = t6;
529
1267
  }
530
- handleEvent(t5) {
531
- "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t5) : this._$AH.handleEvent(t5);
1268
+ handleEvent(t6) {
1269
+ "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t6) : this._$AH.handleEvent(t6);
532
1270
  }
533
1271
  };
534
- var K = class {
535
- constructor(t5, i4, s3) {
536
- this.element = t5, this.type = 6, this._$AN = void 0, this._$AM = i4, this.options = s3;
1272
+ var z = class {
1273
+ constructor(t6, i7, s4) {
1274
+ this.element = t6, this.type = 6, this._$AN = void 0, this._$AM = i7, this.options = s4;
537
1275
  }
538
1276
  get _$AU() {
539
1277
  return this._$AM._$AU;
540
1278
  }
541
- _$AI(t5) {
542
- z(this, t5);
1279
+ _$AI(t6) {
1280
+ S2(this, t6);
543
1281
  }
544
1282
  };
545
- var Re = n3.litHtmlPolyfillSupport;
546
- Re?.(B, et), (n3.litHtmlVersions ??= []).push("3.2.0");
547
- var Q = (t5, i4, s3) => {
548
- const e6 = s3?.renderBefore ?? i4;
549
- let h5 = e6._$litPart$;
550
- if (void 0 === h5) {
551
- const t6 = s3?.renderBefore ?? null;
552
- e6._$litPart$ = h5 = new et(i4.insertBefore(lt(), t6), t6, void 0, s3 ?? {});
553
- }
554
- return h5._$AI(t5), h5;
1283
+ var j = t2.litHtmlPolyfillSupport;
1284
+ j?.(N, R), (t2.litHtmlVersions ??= []).push("3.2.1");
1285
+ var B = (t6, i7, s4) => {
1286
+ const e7 = s4?.renderBefore ?? i7;
1287
+ let h4 = e7._$litPart$;
1288
+ if (void 0 === h4) {
1289
+ const t7 = s4?.renderBefore ?? null;
1290
+ e7._$litPart$ = h4 = new R(i7.insertBefore(l2(), t7), t7, void 0, s4 ?? {});
1291
+ }
1292
+ return h4._$AI(t6), 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 t5 = super.createRenderRoot();
564
- return this.renderOptions.renderBefore ??= t5.firstChild, t5;
1301
+ const t6 = super.createRenderRoot();
1302
+ return this.renderOptions.renderBefore ??= t6.firstChild, t6;
565
1303
  }
566
- update(t5) {
567
- const e6 = this.render();
568
- this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t5), this.o = Q(e6, this.renderRoot, this.renderOptions);
1304
+ update(t6) {
1305
+ const s4 = this.render();
1306
+ this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t6), 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 });
@@ -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;
662
- void 0 !== n52 && o5.setAttribute("nonce", n52), o5.textContent = e42.cssText, s22.appendChild(o5);
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 o52 = document.createElement("style"), n52 = t3.litNonce;
1400
+ void 0 !== n52 && o52.setAttribute("nonce", n52), o52.textContent = e42.cssText, s22.appendChild(o52);
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:
@@ -702,47 +1440,47 @@ var u2 = { toAttribute(t22, s22) {
702
1440
  }
703
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 i32 = Symbol(), r4 = this.getPropertyDescriptor(t22, i32, 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
1459
  static getPropertyDescriptor(t22, s22, i32) {
722
- const { get: e42, set: h42 } = r22(this.prototype, t22) ?? { get() {
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, i32);
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)];
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)];
746
1484
  for (const i32 of s22) this.createProperty(i32, t32[i32]);
747
1485
  }
748
1486
  const t22 = this[Symbol.metadata];
@@ -761,7 +1499,7 @@ var b2 = class extends HTMLElement {
761
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) i32.unshift(c4(s3));
1502
+ for (const s32 of e42) i32.unshift(c4(s32));
765
1503
  } else void 0 !== s22 && i32.push(c4(s22));
766
1504
  return i32;
767
1505
  }
@@ -804,20 +1542,20 @@ var b2 = class extends HTMLElement {
804
1542
  _$EC(t22, s22) {
805
1543
  const i32 = this.constructor.elementProperties.get(t22), e42 = this.constructor._$Eu(t22, i32);
806
1544
  if (void 0 !== e42 && true === i32.reflect) {
807
- const r4 = (void 0 !== i32.converter?.toAttribute ? i32.converter : u2).toAttribute(s22, i32.type);
808
- this._$Em = t22, null == r4 ? this.removeAttribute(e42) : this.setAttribute(e42, r4), this._$Em = null;
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
1550
  const i32 = this.constructor, e42 = i32._$Eh.get(t22);
813
1551
  if (void 0 !== e42 && this._$Em !== e42) {
814
- const t32 = i32.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
1556
  requestUpdate(t22, s22, i32) {
819
1557
  if (void 0 !== t22) {
820
- if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ?? f4)(this[t22], s22)) return;
1558
+ if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ?? f3)(this[t22], s22)) return;
821
1559
  this.P(t22, s22, i32);
822
1560
  }
823
1561
  false === this.isUpdatePending && (this._$ES = this._$ET());
@@ -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 [t42, s3] of this._$Ep) this[t42] = 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, i32] of t32) true !== i32.wrapped || this._$AL.has(s3) || void 0 === this[s3] || this.P(s3, this[s3], i32);
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,73 +1629,73 @@ 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
1645
  var P2 = (t22) => (i32, ...s22) => ({ _$litType$: t22, strings: i32, values: s22 });
908
- var ke2 = P2(1);
909
- var Oe2 = P2(2);
910
- var Se2 = P2(3);
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
1653
  function N2(t22, i32) {
916
1654
  if (!g2(t22) || !t22.hasOwnProperty("raw")) throw Error("invalid template strings array");
917
1655
  return void 0 !== h22 ? h22.createHTML(i32) : i32;
918
1656
  }
919
- var U2 = (t22, i32) => {
1657
+ var U = (t22, i32) => {
920
1658
  const s22 = t22.length - 1, e42 = [];
921
- let h42, o4 = 2 === i32 ? "<svg>" : 3 === i32 ? "<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 === i32 ? "</svg>" : 3 === i32 ? "</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
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, i32);
1673
+ let h4 = 0, o42 = 0;
1674
+ const n52 = t22.length - 1, r42 = this.parts, [l22, a22] = U(t22, i32);
937
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), n62 = /([.?@])?(.*)/.exec(i42);
1683
+ r42.push({ type: 1, index: h4, name: n62[2], strings: s32, ctor: "." === n62[1] ? Y : "?" === n62[1] ? Z : "@" === n62[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
1701
  static createElement(t22, i32) {
@@ -967,11 +1705,11 @@ var B2 = class _B {
967
1705
  };
968
1706
  function z2(t22, i32, s22 = t22, e42) {
969
1707
  if (i32 === R2) return i32;
970
- let h42 = void 0 !== e42 ? s22.o?.[e42] : s22.l;
971
- const o4 = st2(i32) ? void 0 : i32._$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 && (i32 = z2(t22, h42._$AS(t22, i32.values), h42, e42)), 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 {
1712
+ var F = class {
975
1713
  constructor(t22, i32) {
976
1714
  this._$AV = [], this._$AN = void 0, this._$AD = t22, this._$AM = i32;
977
1715
  }
@@ -984,13 +1722,13 @@ var F2 = class {
984
1722
  u(t22) {
985
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
  }
@@ -999,12 +1737,12 @@ var F2 = class {
999
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
1744
  constructor(t22, i32, s22, e42) {
1007
- this.type = 2, this._$AH = D2, this._$AN = void 0, this._$AA = t22, this._$AB = i32, this._$AM = s22, this.options = e42, this.v = e42?.isConnected ?? true;
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;
@@ -1018,7 +1756,7 @@ var et2 = class _et {
1018
1756
  return this._$AB;
1019
1757
  }
1020
1758
  _$AI(t22, i32 = this) {
1021
- t22 = z2(this, t22, i32), 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);
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,14 +1765,14 @@ 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
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);
1034
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(i32), 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) {
@@ -1045,74 +1783,74 @@ var et2 = class _et {
1045
1783
  g2(this._$AH) || (this._$AH = [], this._$AR());
1046
1784
  const i32 = this._$AH;
1047
1785
  let s22, e42 = 0;
1048
- for (const h42 of t22) e42 === i32.length ? i32.push(s22 = new _et(this.O(lt2()), this.O(lt2()), this, this.options)) : s22 = i32[e42], s22._$AI(h42), 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++;
1049
1787
  e42 < i32.length && (this._$AR(s22 && s22._$AB.nextSibling, e42), i32.length = e42);
1050
1788
  }
1051
1789
  _$AR(t22 = this._$AA.nextSibling, i32) {
1052
1790
  for (this._$AP?.(false, true, i32); t22 && t22 !== this._$AB; ) {
1053
- const i4 = t22.nextSibling;
1054
- t22.remove(), t22 = i4;
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, i32, s22, e42, h42) {
1069
- this.type = 1, this._$AH = D2, this._$AN = void 0, this.element = t22, this.name = i32, 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
1809
  _$AI(t22, i32 = this, s22, e42) {
1072
- const h42 = this.strings;
1073
- let o4 = false;
1074
- if (void 0 === h42) t22 = z2(this, t22, i32, 0), o4 = !st2(t22) || t22 !== this._$AH && t22 !== R2, o4 && (this._$AH = t22);
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
1814
  const e52 = t22;
1077
- let n52, r4;
1078
- for (t22 = h42[0], n52 = 0; n52 < h42.length - 1; n52++) r4 = z2(this, e52[s22 + n52], i32, 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;
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, i32, s22, e42, h42) {
1104
- super(t22, i32, 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
1844
  _$AI(t22, i32 = this) {
1107
- if ((t22 = z2(this, t22, i32, 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;
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 {
1853
+ var K = class {
1116
1854
  constructor(t22, i32, s22) {
1117
1855
  this.element = t22, this.type = 6, this._$AN = void 0, this._$AM = i32, this.options = s22;
1118
1856
  }
@@ -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, i32, s22) => {
1864
+ var Re = n32.litHtmlPolyfillSupport;
1865
+ Re?.(B2, et), (n32.litHtmlVersions ??= []).push("3.2.0");
1866
+ var Q = (t22, i32, s22) => {
1129
1867
  const e42 = s22?.renderBefore ?? i32;
1130
- let h42 = e42._$litPart$;
1131
- if (void 0 === h42) {
1868
+ let h4 = e42._$litPart$;
1869
+ if (void 0 === h4) {
1132
1870
  const t32 = s22?.renderBefore ?? null;
1133
- e42._$litPart$ = h42 = new et2(i32.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: i32 } = r4;
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;
1166
1904
  let s22 = globalThis.litPropertyMetadata.get(i32);
1167
- if (void 0 === s22 && globalThis.litPropertyMetadata.set(i32, s22 = /* @__PURE__ */ new Map()), s22.set(r4.name, t22), "accessor" === n52) {
1168
- const { name: o4 } = r4;
1169
- return { set(r5) {
1170
- const n6 = e42.get.call(this);
1171
- e42.set.call(this, r5), this.requestUpdate(o4, n6, t22);
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) {
1908
+ const n62 = e42.get.call(this);
1909
+ e42.set.call(this, r52), this.requestUpdate(o42, n62, t22);
1172
1910
  }, init(e52) {
1173
- return void 0 !== e52 && this.P(o4, void 0, t22), 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 n62 = this[o42];
1918
+ e42.call(this, r52), this.requestUpdate(o42, n62, 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, e52, o5) => {
1187
- const r4 = e52.hasOwnProperty(o5);
1188
- return e52.constructor.createProperty(o5, r4 ? { ...t32, wrapped: true } : t32), r4 ? Object.getOwnPropertyDescriptor(e52, o5) : void 0;
1189
- })(t22, e42, o4);
1924
+ return (e42, o42) => "object" == typeof o42 ? r32(t22, e42, o42) : ((t32, e52, o52) => {
1925
+ const r42 = e52.hasOwnProperty(o52);
1926
+ return e52.constructor.createProperty(o52, r42 ? { ...t32, wrapped: true } : t32), r42 ? Object.getOwnPropertyDescriptor(e52, o52) : 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,74 +2065,337 @@ _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 = (t5) => (e6, o4) => {
1328
- void 0 !== o4 ? o4.addInitializer(() => {
1329
- customElements.define(t5, e6);
1330
- }) : customElements.define(t5, e6);
2075
+ // node_modules/@lit/reactive-element/decorators/custom-element.js
2076
+ var t4 = (t6) => (e7, o6) => {
2077
+ void 0 !== o6 ? o6.addInitializer(() => {
2078
+ customElements.define(t6, e7);
2079
+ }) : customElements.define(t6, e7);
1331
2080
  };
1332
2081
 
1333
- // ../../node_modules/lit/node_modules/lit-html/directive.js
1334
- var t4 = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4, EVENT: 5, ELEMENT: 6 };
1335
- var e5 = (t5) => (...e6) => ({ _$litDirective$: t5, values: e6 });
1336
- var i3 = class {
1337
- constructor(t5) {
2082
+ // node_modules/lit-html/directive.js
2083
+ var t5 = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4, EVENT: 5, ELEMENT: 6 };
2084
+ var e6 = (t6) => (...e7) => ({ _$litDirective$: t6, values: e7 });
2085
+ var i5 = class {
2086
+ constructor(t6) {
1338
2087
  }
1339
2088
  get _$AU() {
1340
2089
  return this._$AM._$AU;
1341
2090
  }
1342
- _$AT(t5, e6, i4) {
1343
- this.t = t5, this._$AM = e6, this.i = i4;
2091
+ _$AT(t6, e7, i7) {
2092
+ this._$Ct = t6, this._$AM = e7, this._$Ci = i7;
1344
2093
  }
1345
- _$AS(t5, e6) {
1346
- return this.update(t5, e6);
2094
+ _$AS(t6, e7) {
2095
+ return this.update(t6, e7);
1347
2096
  }
1348
- update(t5, e6) {
1349
- return this.render(...e6);
2097
+ update(t6, e7) {
2098
+ return this.render(...e7);
1350
2099
  }
1351
2100
  };
1352
2101
 
1353
- // ../../node_modules/lit/node_modules/lit-html/directives/style-map.js
1354
- var ee = "important";
1355
- var ie = " !" + ee;
1356
- var se = e5(class extends i3 {
1357
- constructor(e6) {
1358
- if (super(e6), e6.type !== t4.ATTRIBUTE || "style" !== e6.name || e6.strings?.length > 2) throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.");
1359
- }
1360
- render(t5) {
1361
- return Object.keys(t5).reduce((e6, r4) => {
1362
- const s3 = t5[r4];
1363
- return null == s3 ? e6 : e6 + `${r4 = r4.includes("-") ? r4 : r4.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g, "-$&").toLowerCase()}:${s3};`;
2102
+ // node_modules/lit-html/directives/style-map.js
2103
+ var n6 = "important";
2104
+ var i6 = " !" + n6;
2105
+ var o5 = e6(class extends i5 {
2106
+ constructor(t6) {
2107
+ if (super(t6), t6.type !== t5.ATTRIBUTE || "style" !== t6.name || t6.strings?.length > 2) throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.");
2108
+ }
2109
+ render(t6) {
2110
+ return Object.keys(t6).reduce((e7, r6) => {
2111
+ const s4 = t6[r6];
2112
+ return null == s4 ? e7 : e7 + `${r6 = r6.includes("-") ? r6 : r6.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g, "-$&").toLowerCase()}:${s4};`;
1364
2113
  }, "");
1365
2114
  }
1366
- update(t5, [e6]) {
1367
- const { style: r4 } = t5.element;
1368
- if (void 0 === this.ft) return this.ft = new Set(Object.keys(e6)), this.render(e6);
1369
- for (const t6 of this.ft) null == e6[t6] && (this.ft.delete(t6), t6.includes("-") ? r4.removeProperty(t6) : r4[t6] = null);
1370
- for (const t6 in e6) {
1371
- const s3 = e6[t6];
1372
- if (null != s3) {
2115
+ update(e7, [r6]) {
2116
+ const { style: s4 } = e7.element;
2117
+ if (void 0 === this.ft) return this.ft = new Set(Object.keys(r6)), this.render(r6);
2118
+ for (const t6 of this.ft) null == r6[t6] && (this.ft.delete(t6), t6.includes("-") ? s4.removeProperty(t6) : s4[t6] = null);
2119
+ for (const t6 in r6) {
2120
+ const e8 = r6[t6];
2121
+ if (null != e8) {
1373
2122
  this.ft.add(t6);
1374
- const e7 = "string" == typeof s3 && s3.endsWith(ie);
1375
- t6.includes("-") || e7 ? r4.setProperty(t6, e7 ? s3.slice(0, -11) : s3, e7 ? ee : "") : r4[t6] = s3;
2123
+ const r7 = "string" == typeof e8 && e8.endsWith(i6);
2124
+ t6.includes("-") || r7 ? s4.setProperty(t6, r7 ? e8.slice(0, -11) : e8, r7 ? n6 : "") : s4[t6] = e8;
1376
2125
  }
1377
2126
  }
1378
- return R;
2127
+ return T;
2128
+ }
2129
+ });
2130
+
2131
+ // localization/generated/locale-codes.js
2132
+ var sourceLocale = `en`;
2133
+ var targetLocales = [
2134
+ `bg`,
2135
+ `cs`,
2136
+ `da`,
2137
+ `de`,
2138
+ `el`,
2139
+ `es`,
2140
+ `et`,
2141
+ `fi`,
2142
+ `fr`,
2143
+ `hu`,
2144
+ `id`,
2145
+ `it`,
2146
+ `ja`,
2147
+ `ko`,
2148
+ `lt`,
2149
+ `lv`,
2150
+ `nb`,
2151
+ `nl`,
2152
+ `pl`,
2153
+ `pt-BR`,
2154
+ `pt-PT`,
2155
+ `ro`,
2156
+ `ru`,
2157
+ `sk`,
2158
+ `sl`,
2159
+ `sv`,
2160
+ `tr`,
2161
+ `uk`,
2162
+ `zh-hans`
2163
+ ];
2164
+
2165
+ // node_modules/@lit/localize/internal/locale-status-event.js
2166
+ var LOCALE_STATUS_EVENT = "lit-localize-status";
2167
+
2168
+ // node_modules/@lit/localize/internal/str-tag.js
2169
+ var isStrTagged = (val) => typeof val !== "string" && "strTag" in val;
2170
+ var joinStringsAndValues = (strings, values, valueOrder) => {
2171
+ let concat = strings[0];
2172
+ for (let i7 = 1; i7 < strings.length; i7++) {
2173
+ concat += values[valueOrder ? valueOrder[i7 - 1] : i7 - 1];
2174
+ concat += strings[i7];
2175
+ }
2176
+ return concat;
2177
+ };
2178
+
2179
+ // node_modules/@lit/localize/internal/default-msg.js
2180
+ var defaultMsg = (template) => isStrTagged(template) ? joinStringsAndValues(template.strings, template.values) : template;
2181
+
2182
+ // node_modules/@lit/localize/init/install.js
2183
+ var msg = defaultMsg;
2184
+ var installed = false;
2185
+ function _installMsgImplementation(impl) {
2186
+ if (installed) {
2187
+ throw new Error("lit-localize can only be configured once");
2188
+ }
2189
+ msg = impl;
2190
+ installed = true;
2191
+ }
2192
+
2193
+ // node_modules/@lit/localize/internal/deferred.js
2194
+ var Deferred = class {
2195
+ constructor() {
2196
+ this.settled = false;
2197
+ this.promise = new Promise((resolve, reject) => {
2198
+ this._resolve = resolve;
2199
+ this._reject = reject;
2200
+ });
1379
2201
  }
2202
+ resolve(value) {
2203
+ this.settled = true;
2204
+ this._resolve(value);
2205
+ }
2206
+ reject(error) {
2207
+ this.settled = true;
2208
+ this._reject(error);
2209
+ }
2210
+ };
2211
+
2212
+ // node_modules/@lit/localize/internal/fnv1a64.js
2213
+ var hl = [];
2214
+ for (let i7 = 0; i7 < 256; i7++) {
2215
+ hl[i7] = (i7 >> 4 & 15).toString(16) + (i7 & 15).toString(16);
2216
+ }
2217
+ function fnv1a64(str) {
2218
+ let t0 = 0, v0 = 8997, t1 = 0, v1 = 33826, t22 = 0, v22 = 40164, t32 = 0, v3 = 52210;
2219
+ for (let i7 = 0; i7 < str.length; i7++) {
2220
+ v0 ^= str.charCodeAt(i7);
2221
+ t0 = v0 * 435;
2222
+ t1 = v1 * 435;
2223
+ t22 = v22 * 435;
2224
+ t32 = v3 * 435;
2225
+ t22 += v0 << 8;
2226
+ t32 += v1 << 8;
2227
+ t1 += t0 >>> 16;
2228
+ v0 = t0 & 65535;
2229
+ t22 += t1 >>> 16;
2230
+ v1 = t1 & 65535;
2231
+ v3 = t32 + (t22 >>> 16) & 65535;
2232
+ v22 = t22 & 65535;
2233
+ }
2234
+ 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];
2235
+ }
2236
+
2237
+ // node_modules/@lit/localize/internal/id-generation.js
2238
+ var HASH_DELIMITER = "";
2239
+ var HTML_PREFIX = "h";
2240
+ var STRING_PREFIX = "s";
2241
+ function generateMsgId(strings, isHtmlTagged) {
2242
+ return (isHtmlTagged ? HTML_PREFIX : STRING_PREFIX) + fnv1a64(typeof strings === "string" ? strings : strings.join(HASH_DELIMITER));
2243
+ }
2244
+
2245
+ // node_modules/@lit/localize/internal/runtime-msg.js
2246
+ var expressionOrders = /* @__PURE__ */ new WeakMap();
2247
+ var hashCache = /* @__PURE__ */ new Map();
2248
+ function runtimeMsg(templates31, template, options) {
2249
+ if (templates31) {
2250
+ const id = options?.id ?? generateId(template);
2251
+ const localized = templates31[id];
2252
+ if (localized) {
2253
+ if (typeof localized === "string") {
2254
+ return localized;
2255
+ } else if ("strTag" in localized) {
2256
+ return joinStringsAndValues(
2257
+ localized.strings,
2258
+ // Cast `template` because its type wasn't automatically narrowed (but
2259
+ // we know it must be the same type as `localized`).
2260
+ template.values,
2261
+ localized.values
2262
+ );
2263
+ } else {
2264
+ let order = expressionOrders.get(localized);
2265
+ if (order === void 0) {
2266
+ order = localized.values;
2267
+ expressionOrders.set(localized, order);
2268
+ }
2269
+ return {
2270
+ ...localized,
2271
+ values: order.map((i7) => template.values[i7])
2272
+ };
2273
+ }
2274
+ }
2275
+ }
2276
+ return defaultMsg(template);
2277
+ }
2278
+ function generateId(template) {
2279
+ const strings = typeof template === "string" ? template : template.strings;
2280
+ let id = hashCache.get(strings);
2281
+ if (id === void 0) {
2282
+ id = generateMsgId(strings, typeof template !== "string" && !("strTag" in template));
2283
+ hashCache.set(strings, id);
2284
+ }
2285
+ return id;
2286
+ }
2287
+
2288
+ // node_modules/@lit/localize/init/runtime.js
2289
+ function dispatchStatusEvent(detail) {
2290
+ window.dispatchEvent(new CustomEvent(LOCALE_STATUS_EVENT, { detail }));
2291
+ }
2292
+ var activeLocale = "";
2293
+ var loadingLocale;
2294
+ var sourceLocale2;
2295
+ var validLocales;
2296
+ var loadLocale;
2297
+ var templates;
2298
+ var loading = new Deferred();
2299
+ loading.resolve();
2300
+ var requestId = 0;
2301
+ var configureLocalization = (config) => {
2302
+ _installMsgImplementation((template, options) => runtimeMsg(templates, template, options));
2303
+ activeLocale = sourceLocale2 = config.sourceLocale;
2304
+ validLocales = new Set(config.targetLocales);
2305
+ validLocales.add(config.sourceLocale);
2306
+ loadLocale = config.loadLocale;
2307
+ return { getLocale, setLocale };
2308
+ };
2309
+ var getLocale = () => {
2310
+ return activeLocale;
2311
+ };
2312
+ var setLocale = (newLocale) => {
2313
+ if (newLocale === (loadingLocale ?? activeLocale)) {
2314
+ return loading.promise;
2315
+ }
2316
+ if (!validLocales || !loadLocale) {
2317
+ throw new Error("Internal error");
2318
+ }
2319
+ if (!validLocales.has(newLocale)) {
2320
+ throw new Error("Invalid locale code");
2321
+ }
2322
+ requestId++;
2323
+ const thisRequestId = requestId;
2324
+ loadingLocale = newLocale;
2325
+ if (loading.settled) {
2326
+ loading = new Deferred();
2327
+ }
2328
+ dispatchStatusEvent({ status: "loading", loadingLocale: newLocale });
2329
+ const localePromise = newLocale === sourceLocale2 ? (
2330
+ // We could switch to the source locale synchronously, but we prefer to
2331
+ // queue it on a microtask so that switching locales is consistently
2332
+ // asynchronous.
2333
+ Promise.resolve({ templates: void 0 })
2334
+ ) : loadLocale(newLocale);
2335
+ localePromise.then((mod) => {
2336
+ if (requestId === thisRequestId) {
2337
+ activeLocale = newLocale;
2338
+ loadingLocale = void 0;
2339
+ templates = mod.templates;
2340
+ dispatchStatusEvent({ status: "ready", readyLocale: newLocale });
2341
+ loading.resolve();
2342
+ }
2343
+ }, (err) => {
2344
+ if (requestId === thisRequestId) {
2345
+ dispatchStatusEvent({
2346
+ status: "error",
2347
+ errorLocale: newLocale,
2348
+ errorMessage: err.toString()
2349
+ });
2350
+ loading.reject(err);
2351
+ }
2352
+ });
2353
+ return loading.promise;
2354
+ };
2355
+
2356
+ // import("./**/*.ts") in localization/generated/index.js
2357
+ var globImport_ts = __glob({
2358
+ "./bg.ts": () => Promise.resolve().then(() => (init_bg(), bg_exports)),
2359
+ "./cs.ts": () => Promise.resolve().then(() => (init_cs(), cs_exports)),
2360
+ "./da.ts": () => Promise.resolve().then(() => (init_da(), da_exports)),
2361
+ "./de.ts": () => Promise.resolve().then(() => (init_de(), de_exports)),
2362
+ "./el.ts": () => Promise.resolve().then(() => (init_el(), el_exports)),
2363
+ "./es.ts": () => Promise.resolve().then(() => (init_es(), es_exports)),
2364
+ "./et.ts": () => Promise.resolve().then(() => (init_et(), et_exports)),
2365
+ "./fi.ts": () => Promise.resolve().then(() => (init_fi(), fi_exports)),
2366
+ "./fr.ts": () => Promise.resolve().then(() => (init_fr(), fr_exports)),
2367
+ "./hu.ts": () => Promise.resolve().then(() => (init_hu(), hu_exports)),
2368
+ "./id.ts": () => Promise.resolve().then(() => (init_id(), id_exports)),
2369
+ "./it.ts": () => Promise.resolve().then(() => (init_it(), it_exports)),
2370
+ "./ja.ts": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
2371
+ "./ko.ts": () => Promise.resolve().then(() => (init_ko(), ko_exports)),
2372
+ "./lt.ts": () => Promise.resolve().then(() => (init_lt(), lt_exports)),
2373
+ "./lv.ts": () => Promise.resolve().then(() => (init_lv(), lv_exports)),
2374
+ "./nb.ts": () => Promise.resolve().then(() => (init_nb(), nb_exports)),
2375
+ "./nl.ts": () => Promise.resolve().then(() => (init_nl(), nl_exports)),
2376
+ "./pl.ts": () => Promise.resolve().then(() => (init_pl(), pl_exports)),
2377
+ "./pt-BR.ts": () => Promise.resolve().then(() => (init_pt_BR(), pt_BR_exports)),
2378
+ "./pt-PT.ts": () => Promise.resolve().then(() => (init_pt_PT(), pt_PT_exports)),
2379
+ "./ro.ts": () => Promise.resolve().then(() => (init_ro(), ro_exports)),
2380
+ "./ru.ts": () => Promise.resolve().then(() => (init_ru(), ru_exports)),
2381
+ "./sk.ts": () => Promise.resolve().then(() => (init_sk(), sk_exports)),
2382
+ "./sl.ts": () => Promise.resolve().then(() => (init_sl(), sl_exports)),
2383
+ "./sv.ts": () => Promise.resolve().then(() => (init_sv(), sv_exports)),
2384
+ "./tr.ts": () => Promise.resolve().then(() => (init_tr(), tr_exports)),
2385
+ "./uk.ts": () => Promise.resolve().then(() => (init_uk(), uk_exports)),
2386
+ "./zh-hans.ts": () => Promise.resolve().then(() => (init_zh_hans(), zh_hans_exports))
1380
2387
  });
1381
2388
 
2389
+ // localization/generated/index.js
2390
+ var generated_default = configureLocalization({ sourceLocale, targetLocales, loadLocale: (locale) => globImport_ts(`./${locale}.ts`) });
2391
+
1382
2392
  // src/widgets/webwriter-task-prompt.ts
1383
2393
  var _WebwriterTaskPrompt_decorators, _init2, _a2;
1384
- _WebwriterTaskPrompt_decorators = [t3("webwriter-task-prompt")];
2394
+ _WebwriterTaskPrompt_decorators = [t4("webwriter-task-prompt")];
1385
2395
  var WebwriterTaskPrompt = class extends (_a2 = LitElementWw) {
2396
+ localize = generated_default;
1386
2397
  render() {
1387
- return ke`<slot style=${se({ "--ww-placeholder": `"Prompt"` })}>
2398
+ return x`<slot style=${o5({ "--ww-placeholder": `"${msg("Prompt")}"` })}>
1388
2399
 
1389
2400
  </slot>`;
1390
2401
  }
@@ -1432,6 +2443,115 @@ lit-html/is-server.js:
1432
2443
  * SPDX-License-Identifier: BSD-3-Clause
1433
2444
  *)
1434
2445
 
2446
+ @webwriter/lit/index.js:
2447
+ (*! Bundled license information:
2448
+
2449
+ @lit/reactive-element/css-tag.js:
2450
+ (**
2451
+ * @license
2452
+ * Copyright 2019 Google LLC
2453
+ * SPDX-License-Identifier: BSD-3-Clause
2454
+ *)
2455
+
2456
+ @lit/reactive-element/reactive-element.js:
2457
+ (**
2458
+ * @license
2459
+ * Copyright 2017 Google LLC
2460
+ * SPDX-License-Identifier: BSD-3-Clause
2461
+ *)
2462
+
2463
+ lit-html/lit-html.js:
2464
+ (**
2465
+ * @license
2466
+ * Copyright 2017 Google LLC
2467
+ * SPDX-License-Identifier: BSD-3-Clause
2468
+ *)
2469
+
2470
+ lit-element/lit-element.js:
2471
+ (**
2472
+ * @license
2473
+ * Copyright 2017 Google LLC
2474
+ * SPDX-License-Identifier: BSD-3-Clause
2475
+ *)
2476
+
2477
+ lit-html/is-server.js:
2478
+ (**
2479
+ * @license
2480
+ * Copyright 2022 Google LLC
2481
+ * SPDX-License-Identifier: BSD-3-Clause
2482
+ *)
2483
+
2484
+ @lit/reactive-element/decorators/custom-element.js:
2485
+ (**
2486
+ * @license
2487
+ * Copyright 2017 Google LLC
2488
+ * SPDX-License-Identifier: BSD-3-Clause
2489
+ *)
2490
+
2491
+ @lit/reactive-element/decorators/property.js:
2492
+ (**
2493
+ * @license
2494
+ * Copyright 2017 Google LLC
2495
+ * SPDX-License-Identifier: BSD-3-Clause
2496
+ *)
2497
+
2498
+ @lit/reactive-element/decorators/state.js:
2499
+ (**
2500
+ * @license
2501
+ * Copyright 2017 Google LLC
2502
+ * SPDX-License-Identifier: BSD-3-Clause
2503
+ *)
2504
+
2505
+ @lit/reactive-element/decorators/event-options.js:
2506
+ (**
2507
+ * @license
2508
+ * Copyright 2017 Google LLC
2509
+ * SPDX-License-Identifier: BSD-3-Clause
2510
+ *)
2511
+
2512
+ @lit/reactive-element/decorators/base.js:
2513
+ (**
2514
+ * @license
2515
+ * Copyright 2017 Google LLC
2516
+ * SPDX-License-Identifier: BSD-3-Clause
2517
+ *)
2518
+
2519
+ @lit/reactive-element/decorators/query.js:
2520
+ (**
2521
+ * @license
2522
+ * Copyright 2017 Google LLC
2523
+ * SPDX-License-Identifier: BSD-3-Clause
2524
+ *)
2525
+
2526
+ @lit/reactive-element/decorators/query-all.js:
2527
+ (**
2528
+ * @license
2529
+ * Copyright 2017 Google LLC
2530
+ * SPDX-License-Identifier: BSD-3-Clause
2531
+ *)
2532
+
2533
+ @lit/reactive-element/decorators/query-async.js:
2534
+ (**
2535
+ * @license
2536
+ * Copyright 2017 Google LLC
2537
+ * SPDX-License-Identifier: BSD-3-Clause
2538
+ *)
2539
+
2540
+ @lit/reactive-element/decorators/query-assigned-elements.js:
2541
+ (**
2542
+ * @license
2543
+ * Copyright 2021 Google LLC
2544
+ * SPDX-License-Identifier: BSD-3-Clause
2545
+ *)
2546
+
2547
+ @lit/reactive-element/decorators/query-assigned-nodes.js:
2548
+ (**
2549
+ * @license
2550
+ * Copyright 2017 Google LLC
2551
+ * SPDX-License-Identifier: BSD-3-Clause
2552
+ *)
2553
+ *)
2554
+
1435
2555
  @lit/reactive-element/decorators/custom-element.js:
1436
2556
  (**
1437
2557
  * @license
@@ -1501,125 +2621,109 @@ lit-html/is-server.js:
1501
2621
  * Copyright 2017 Google LLC
1502
2622
  * SPDX-License-Identifier: BSD-3-Clause
1503
2623
  *)
1504
- */
1505
- /*! Bundled license information:
1506
2624
 
1507
- @lit/reactive-element/css-tag.js:
1508
- (**
1509
- * @license
1510
- * Copyright 2019 Google LLC
1511
- * SPDX-License-Identifier: BSD-3-Clause
1512
- *)
1513
-
1514
- @lit/reactive-element/reactive-element.js:
1515
- (**
1516
- * @license
1517
- * Copyright 2017 Google LLC
1518
- * SPDX-License-Identifier: BSD-3-Clause
1519
- *)
1520
-
1521
- lit-html/lit-html.js:
2625
+ lit-html/directive.js:
1522
2626
  (**
1523
2627
  * @license
1524
2628
  * Copyright 2017 Google LLC
1525
2629
  * SPDX-License-Identifier: BSD-3-Clause
1526
2630
  *)
1527
2631
 
1528
- lit-element/lit-element.js:
2632
+ lit-html/directives/style-map.js:
1529
2633
  (**
1530
2634
  * @license
1531
- * Copyright 2017 Google LLC
2635
+ * Copyright 2018 Google LLC
1532
2636
  * SPDX-License-Identifier: BSD-3-Clause
1533
2637
  *)
1534
2638
 
1535
- lit-html/is-server.js:
2639
+ @lit/localize/internal/locale-status-event.js:
1536
2640
  (**
1537
2641
  * @license
1538
- * Copyright 2022 Google LLC
2642
+ * Copyright 2021 Google LLC
1539
2643
  * SPDX-License-Identifier: BSD-3-Clause
1540
2644
  *)
1541
2645
 
1542
- @lit/reactive-element/decorators/custom-element.js:
2646
+ @lit/localize/internal/str-tag.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/property.js:
2653
+ @lit/localize/internal/types.js:
1550
2654
  (**
1551
2655
  * @license
1552
- * Copyright 2017 Google LLC
2656
+ * Copyright 2021 Google LLC
1553
2657
  * SPDX-License-Identifier: BSD-3-Clause
1554
2658
  *)
1555
2659
 
1556
- @lit/reactive-element/decorators/state.js:
2660
+ @lit/localize/internal/default-msg.js:
1557
2661
  (**
1558
2662
  * @license
1559
- * Copyright 2017 Google LLC
2663
+ * Copyright 2021 Google LLC
1560
2664
  * SPDX-License-Identifier: BSD-3-Clause
1561
2665
  *)
1562
2666
 
1563
- @lit/reactive-element/decorators/event-options.js:
2667
+ @lit/localize/internal/localized-controller.js:
1564
2668
  (**
1565
2669
  * @license
1566
- * Copyright 2017 Google LLC
2670
+ * Copyright 2021 Google LLC
1567
2671
  * SPDX-License-Identifier: BSD-3-Clause
1568
2672
  *)
1569
2673
 
1570
- @lit/reactive-element/decorators/base.js:
2674
+ @lit/localize/internal/localized-decorator.js:
1571
2675
  (**
1572
2676
  * @license
1573
- * Copyright 2017 Google LLC
2677
+ * Copyright 2021 Google LLC
1574
2678
  * SPDX-License-Identifier: BSD-3-Clause
1575
2679
  *)
1576
2680
 
1577
- @lit/reactive-element/decorators/query.js:
2681
+ @lit/localize/internal/deferred.js:
1578
2682
  (**
1579
2683
  * @license
1580
- * Copyright 2017 Google LLC
2684
+ * Copyright 2020 Google LLC
1581
2685
  * SPDX-License-Identifier: BSD-3-Clause
1582
2686
  *)
1583
2687
 
1584
- @lit/reactive-element/decorators/query-all.js:
2688
+ @lit/localize/internal/fnv1a64.js:
1585
2689
  (**
1586
2690
  * @license
1587
- * Copyright 2017 Google LLC
1588
- * SPDX-License-Identifier: BSD-3-Clause
2691
+ * Copyright 2014 Travis Webb
2692
+ * SPDX-License-Identifier: MIT
1589
2693
  *)
1590
2694
 
1591
- @lit/reactive-element/decorators/query-async.js:
2695
+ @lit/localize/internal/id-generation.js:
1592
2696
  (**
1593
2697
  * @license
1594
- * Copyright 2017 Google LLC
2698
+ * Copyright 2020 Google LLC
1595
2699
  * SPDX-License-Identifier: BSD-3-Clause
1596
2700
  *)
1597
2701
 
1598
- @lit/reactive-element/decorators/query-assigned-elements.js:
2702
+ @lit/localize/internal/runtime-msg.js:
1599
2703
  (**
1600
2704
  * @license
1601
2705
  * Copyright 2021 Google LLC
1602
2706
  * SPDX-License-Identifier: BSD-3-Clause
1603
2707
  *)
1604
2708
 
1605
- @lit/reactive-element/decorators/query-assigned-nodes.js:
2709
+ @lit/localize/init/runtime.js:
1606
2710
  (**
1607
2711
  * @license
1608
- * Copyright 2017 Google LLC
2712
+ * Copyright 2021 Google LLC
1609
2713
  * SPDX-License-Identifier: BSD-3-Clause
1610
2714
  *)
1611
2715
 
1612
- lit-html/directive.js:
2716
+ @lit/localize/init/transform.js:
1613
2717
  (**
1614
2718
  * @license
1615
- * Copyright 2017 Google LLC
2719
+ * Copyright 2021 Google LLC
1616
2720
  * SPDX-License-Identifier: BSD-3-Clause
1617
2721
  *)
1618
2722
 
1619
- lit-html/directives/style-map.js:
2723
+ @lit/localize/lit-localize.js:
1620
2724
  (**
1621
2725
  * @license
1622
- * Copyright 2018 Google LLC
2726
+ * Copyright 2020 Google LLC
1623
2727
  * SPDX-License-Identifier: BSD-3-Clause
1624
2728
  *)
1625
2729
  */