@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,266 +1,1004 @@
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 i8 = 0, fns = array[flags >> 1], n8 = fns && fns.length; i8 < n8; i8++) flags & 1 ? fns[i8].call(self) : value = fns[i8].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 i8 = decorators.length - 1; i8 >= 0; i8--) {
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[i8])(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
56
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
44
- var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
57
+ var __accessCheck = (obj, member, msg2) => member.has(obj) || __typeError("Cannot " + msg2);
45
58
  var __privateIn = (member, obj) => Object(obj) !== obj ? __typeError('Cannot use the "in" operator on this value') : member.has(obj);
46
59
  var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
47
60
  var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
48
61
  var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
49
62
  var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
50
63
 
51
- // ../../node_modules/lit/node_modules/@lit/reactive-element/css-tag.js
64
+ // localization/generated/bg.ts
65
+ var bg_exports = {};
66
+ __export(bg_exports, {
67
+ templates: () => templates2
68
+ });
69
+ var templates2;
70
+ var init_bg = __esm({
71
+ "localization/generated/bg.ts"() {
72
+ templates2 = {
73
+ "s159928724265eb05": `\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043E\u043F\u0446\u0438\u044F`,
74
+ "s1b23c41934894f30": `\u041E\u0431\u044F\u0441\u043D\u0435\u043D\u0438\u0435`,
75
+ "s255857544a9d5ec0": `\u041D\u0443\u043B\u0438\u0440\u0430\u043D\u0435 \u043D\u0430`,
76
+ "s4802e47fe2e95134": `\u041E\u043F\u0446\u0438\u044F`,
77
+ "s54393bfa280ea55b": `\u041F\u043E\u0434\u0441\u043A\u0430\u0437\u043A\u0430`,
78
+ "s7254ca27b16ae2d8": `\u0424\u0430\u043B\u0448\u0438\u0432`,
79
+ "s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0437\u0430 \u043F\u043E\u0434\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043D\u0435`,
80
+ "s85ea99fb52be3385": `\u0418\u0441\u0442\u0438\u043D\u0441\u043A\u0438`,
81
+ "sb3d4f79d9d8b71e5": `\u041F\u043E\u0434\u0430\u0432\u0430\u043D\u0435 \u043D\u0430`,
82
+ "sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442 \u0437\u0430 \u0434\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u0438`,
83
+ "scd1dd6ff53d0d01a": `\u041E\u043F\u0438\u0442\u0430\u0439\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E`,
84
+ "sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u043E\u0442\u0433\u043E\u0432\u043E\u0440\u0438\u0442\u0435 \u0441\u0438`
85
+ };
86
+ }
87
+ });
88
+
89
+ // localization/generated/cs.ts
90
+ var cs_exports = {};
91
+ __export(cs_exports, {
92
+ templates: () => templates3
93
+ });
94
+ var templates3;
95
+ var init_cs = __esm({
96
+ "localization/generated/cs.ts"() {
97
+ templates3 = {
98
+ "s159928724265eb05": `P\u0159idat mo\u017Enost`,
99
+ "s1b23c41934894f30": `Vysv\u011Btlen\xED`,
100
+ "s255857544a9d5ec0": `Obnoven\xED`,
101
+ "s4802e47fe2e95134": `Mo\u017Enost`,
102
+ "s54393bfa280ea55b": `Prompt`,
103
+ "s7254ca27b16ae2d8": `False`,
104
+ "s80dc9f56411917df": `Text ke zv\xFDrazn\u011Bn\xED`,
105
+ "s85ea99fb52be3385": `Pravda`,
106
+ "sb3d4f79d9d8b71e5": `Odeslat`,
107
+ "sc56e9323f076a11e": `Text, do kter\xE9ho se p\u0159id\xE1vaj\xED mezery`,
108
+ "scd1dd6ff53d0d01a": `Zkuste to znovu`,
109
+ "sd26e8d4eef55e341": `Zkontrolujte sv\xE9 odpov\u011Bdi`
110
+ };
111
+ }
112
+ });
113
+
114
+ // localization/generated/da.ts
115
+ var da_exports = {};
116
+ __export(da_exports, {
117
+ templates: () => templates4
118
+ });
119
+ var templates4;
120
+ var init_da = __esm({
121
+ "localization/generated/da.ts"() {
122
+ templates4 = {
123
+ "s159928724265eb05": `Tilf\xF8j mulighed`,
124
+ "s1b23c41934894f30": `Forklaring`,
125
+ "s255857544a9d5ec0": `Nulstil`,
126
+ "s4802e47fe2e95134": `Mulighed`,
127
+ "s54393bfa280ea55b": `Prompt`,
128
+ "s7254ca27b16ae2d8": `Falsk`,
129
+ "s80dc9f56411917df": `Tekst til at fremh\xE6ve`,
130
+ "s85ea99fb52be3385": `Sandt`,
131
+ "sb3d4f79d9d8b71e5": `Send ind`,
132
+ "sc56e9323f076a11e": `Tekst til at tilf\xF8je mellemrum til`,
133
+ "scd1dd6ff53d0d01a": `Pr\xF8v igen`,
134
+ "sd26e8d4eef55e341": `Tjek dine svar`
135
+ };
136
+ }
137
+ });
138
+
139
+ // localization/generated/de.ts
140
+ var de_exports = {};
141
+ __export(de_exports, {
142
+ templates: () => templates5
143
+ });
144
+ var templates5;
145
+ var init_de = __esm({
146
+ "localization/generated/de.ts"() {
147
+ templates5 = {
148
+ "s159928724265eb05": `Option hinzuf\xFCgen`,
149
+ "s1b23c41934894f30": `Erl\xE4uterung`,
150
+ "s255857544a9d5ec0": `Zur\xFCcksetzen`,
151
+ "s4802e47fe2e95134": `Option`,
152
+ "s54393bfa280ea55b": `Eingabeaufforderung`,
153
+ "s7254ca27b16ae2d8": `Falsch`,
154
+ "s80dc9f56411917df": `Hervorzuhebender Text`,
155
+ "s85ea99fb52be3385": `Wahr`,
156
+ "sb3d4f79d9d8b71e5": `Einreichen`,
157
+ "sc56e9323f076a11e": `Text zum Hinzuf\xFCgen von L\xFCcken`,
158
+ "scd1dd6ff53d0d01a": `Erneut versuchen`,
159
+ "sd26e8d4eef55e341": `\xDCberpr\xFCfen Sie Ihre Antworten`
160
+ };
161
+ }
162
+ });
163
+
164
+ // localization/generated/el.ts
165
+ var el_exports = {};
166
+ __export(el_exports, {
167
+ templates: () => templates6
168
+ });
169
+ var templates6;
170
+ var init_el = __esm({
171
+ "localization/generated/el.ts"() {
172
+ templates6 = {
173
+ "s159928724265eb05": `\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2`,
174
+ "s1b23c41934894f30": `\u0395\u03C0\u03B5\u03BE\u03AE\u03B3\u03B7\u03C3\u03B7`,
175
+ "s255857544a9d5ec0": `\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC`,
176
+ "s4802e47fe2e95134": `\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE`,
177
+ "s54393bfa280ea55b": `\u03A0\u03C1\u03BF\u03C4\u03C1\u03BF\u03C0\u03AE`,
178
+ "s7254ca27b16ae2d8": `\u03A8\u03B5\u03C5\u03B4\u03AD\u03C2`,
179
+ "s80dc9f56411917df": `\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B5\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7`,
180
+ "s85ea99fb52be3385": `\u0391\u03BB\u03AE\u03B8\u03B5\u03B9\u03B1`,
181
+ "sb3d4f79d9d8b71e5": `\u03A5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE`,
182
+ "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`,
183
+ "scd1dd6ff53d0d01a": `\u0394\u03BF\u03BA\u03B9\u03BC\u03AC\u03C3\u03C4\u03B5 \u03BE\u03B1\u03BD\u03AC`,
184
+ "sd26e8d4eef55e341": `\u0395\u03BB\u03AD\u03B3\u03BE\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03B1\u03C2`
185
+ };
186
+ }
187
+ });
188
+
189
+ // localization/generated/es.ts
190
+ var es_exports = {};
191
+ __export(es_exports, {
192
+ templates: () => templates7
193
+ });
194
+ var templates7;
195
+ var init_es = __esm({
196
+ "localization/generated/es.ts"() {
197
+ templates7 = {
198
+ "s159928724265eb05": `A\xF1adir opci\xF3n`,
199
+ "s1b23c41934894f30": `Explicaci\xF3n`,
200
+ "s255857544a9d5ec0": `Restablecer`,
201
+ "s4802e47fe2e95134": `Opci\xF3n`,
202
+ "s54393bfa280ea55b": `Pregunte a`,
203
+ "s7254ca27b16ae2d8": `Falso`,
204
+ "s80dc9f56411917df": `Texto a destacar`,
205
+ "s85ea99fb52be3385": `Verdadero`,
206
+ "sb3d4f79d9d8b71e5": `Enviar`,
207
+ "sc56e9323f076a11e": `Texto al que a\xF1adir huecos`,
208
+ "scd1dd6ff53d0d01a": `Int\xE9ntalo de nuevo`,
209
+ "sd26e8d4eef55e341": `Comprueba tus respuestas`
210
+ };
211
+ }
212
+ });
213
+
214
+ // localization/generated/et.ts
215
+ var et_exports = {};
216
+ __export(et_exports, {
217
+ templates: () => templates8
218
+ });
219
+ var templates8;
220
+ var init_et = __esm({
221
+ "localization/generated/et.ts"() {
222
+ templates8 = {
223
+ "s159928724265eb05": `Lisa v\xF5imalus`,
224
+ "s1b23c41934894f30": `Selgitus`,
225
+ "s255857544a9d5ec0": `Reset`,
226
+ "s4802e47fe2e95134": `Valik`,
227
+ "s54393bfa280ea55b": `Prompt`,
228
+ "s7254ca27b16ae2d8": `Vale`,
229
+ "s80dc9f56411917df": `Teksti esilet\xF5stmine`,
230
+ "s85ea99fb52be3385": `T\xF5si`,
231
+ "sb3d4f79d9d8b71e5": `Esita`,
232
+ "sc56e9323f076a11e": `Tekst, millele lisada l\xFCngad`,
233
+ "scd1dd6ff53d0d01a": `Proovi uuesti`,
234
+ "sd26e8d4eef55e341": `Kontrollige oma vastuseid`
235
+ };
236
+ }
237
+ });
238
+
239
+ // localization/generated/fi.ts
240
+ var fi_exports = {};
241
+ __export(fi_exports, {
242
+ templates: () => templates9
243
+ });
244
+ var templates9;
245
+ var init_fi = __esm({
246
+ "localization/generated/fi.ts"() {
247
+ templates9 = {
248
+ "s159928724265eb05": `Lis\xE4\xE4 vaihtoehto`,
249
+ "s1b23c41934894f30": `Selitys`,
250
+ "s255857544a9d5ec0": `Nollaa`,
251
+ "s4802e47fe2e95134": `Vaihtoehto`,
252
+ "s54393bfa280ea55b": `Kehotus`,
253
+ "s7254ca27b16ae2d8": `False`,
254
+ "s80dc9f56411917df": `Korostettava teksti`,
255
+ "s85ea99fb52be3385": `Totta`,
256
+ "sb3d4f79d9d8b71e5": `L\xE4het\xE4`,
257
+ "sc56e9323f076a11e": `Teksti, johon lis\xE4t\xE4\xE4n aukkoja`,
258
+ "scd1dd6ff53d0d01a": `Yrit\xE4 uudelleen`,
259
+ "sd26e8d4eef55e341": `Tarkista vastauksesi`
260
+ };
261
+ }
262
+ });
263
+
264
+ // localization/generated/fr.ts
265
+ var fr_exports = {};
266
+ __export(fr_exports, {
267
+ templates: () => templates10
268
+ });
269
+ var templates10;
270
+ var init_fr = __esm({
271
+ "localization/generated/fr.ts"() {
272
+ templates10 = {
273
+ "s159928724265eb05": `Ajouter une option`,
274
+ "s1b23c41934894f30": `Explication`,
275
+ "s255857544a9d5ec0": `Remise \xE0 z\xE9ro`,
276
+ "s4802e47fe2e95134": `Option`,
277
+ "s54393bfa280ea55b": `Prompt`,
278
+ "s7254ca27b16ae2d8": `Faux`,
279
+ "s80dc9f56411917df": `Texte \xE0 mettre en \xE9vidence`,
280
+ "s85ea99fb52be3385": `Vrai`,
281
+ "sb3d4f79d9d8b71e5": `Soumettre`,
282
+ "sc56e9323f076a11e": `Texte \xE0 ajouter aux lacunes`,
283
+ "scd1dd6ff53d0d01a": `R\xE9essayer`,
284
+ "sd26e8d4eef55e341": `V\xE9rifiez vos r\xE9ponses`
285
+ };
286
+ }
287
+ });
288
+
289
+ // localization/generated/hu.ts
290
+ var hu_exports = {};
291
+ __export(hu_exports, {
292
+ templates: () => templates11
293
+ });
294
+ var templates11;
295
+ var init_hu = __esm({
296
+ "localization/generated/hu.ts"() {
297
+ templates11 = {
298
+ "s159928724265eb05": `Opci\xF3 hozz\xE1ad\xE1sa`,
299
+ "s1b23c41934894f30": `Magyar\xE1zat`,
300
+ "s255857544a9d5ec0": `Reset`,
301
+ "s4802e47fe2e95134": `Opci\xF3`,
302
+ "s54393bfa280ea55b": `Prompt`,
303
+ "s7254ca27b16ae2d8": `Hamis`,
304
+ "s80dc9f56411917df": `Kiemelend\u0151 sz\xF6veg`,
305
+ "s85ea99fb52be3385": `Igaz`,
306
+ "sb3d4f79d9d8b71e5": `K\xFCldje be a`,
307
+ "sc56e9323f076a11e": `H\xE9zagok hozz\xE1ad\xE1s\xE1ra szolg\xE1l\xF3 sz\xF6veg`,
308
+ "scd1dd6ff53d0d01a": `Pr\xF3b\xE1lja \xFAjra`,
309
+ "sd26e8d4eef55e341": `Ellen\u0151rizze v\xE1laszait`
310
+ };
311
+ }
312
+ });
313
+
314
+ // localization/generated/id.ts
315
+ var id_exports = {};
316
+ __export(id_exports, {
317
+ templates: () => templates12
318
+ });
319
+ var templates12;
320
+ var init_id = __esm({
321
+ "localization/generated/id.ts"() {
322
+ templates12 = {
323
+ "s159928724265eb05": `Tambahkan Opsi`,
324
+ "s1b23c41934894f30": `Penjelasan`,
325
+ "s255857544a9d5ec0": `Atur ulang`,
326
+ "s4802e47fe2e95134": `Opsi`,
327
+ "s54393bfa280ea55b": `Cepat`,
328
+ "s7254ca27b16ae2d8": `Salah`,
329
+ "s80dc9f56411917df": `Teks untuk Disorot`,
330
+ "s85ea99fb52be3385": `Benar`,
331
+ "sb3d4f79d9d8b71e5": `Kirim`,
332
+ "sc56e9323f076a11e": `Teks yang akan ditambahkan celah`,
333
+ "scd1dd6ff53d0d01a": `Coba lagi`,
334
+ "sd26e8d4eef55e341": `Periksa jawaban Anda`
335
+ };
336
+ }
337
+ });
338
+
339
+ // localization/generated/it.ts
340
+ var it_exports = {};
341
+ __export(it_exports, {
342
+ templates: () => templates13
343
+ });
344
+ var templates13;
345
+ var init_it = __esm({
346
+ "localization/generated/it.ts"() {
347
+ templates13 = {
348
+ "s159928724265eb05": `Aggiungi opzione`,
349
+ "s1b23c41934894f30": `Spiegazione`,
350
+ "s255857544a9d5ec0": `Reset`,
351
+ "s4802e47fe2e95134": `Opzione`,
352
+ "s54393bfa280ea55b": `Prompt`,
353
+ "s7254ca27b16ae2d8": `Falso`,
354
+ "s80dc9f56411917df": `Testo da evidenziare`,
355
+ "s85ea99fb52be3385": `Vero`,
356
+ "sb3d4f79d9d8b71e5": `Invia`,
357
+ "sc56e9323f076a11e": `Testo a cui aggiungere spazi vuoti`,
358
+ "scd1dd6ff53d0d01a": `Riprova`,
359
+ "sd26e8d4eef55e341": `Controllare le risposte`
360
+ };
361
+ }
362
+ });
363
+
364
+ // localization/generated/ja.ts
365
+ var ja_exports = {};
366
+ __export(ja_exports, {
367
+ templates: () => templates14
368
+ });
369
+ var templates14;
370
+ var init_ja = __esm({
371
+ "localization/generated/ja.ts"() {
372
+ templates14 = {
373
+ "s159928724265eb05": `\u30AA\u30D7\u30B7\u30E7\u30F3\u8FFD\u52A0`,
374
+ "s1b23c41934894f30": `\u8AAC\u660E`,
375
+ "s255857544a9d5ec0": `\u30EA\u30BB\u30C3\u30C8`,
376
+ "s4802e47fe2e95134": `\u30AA\u30D7\u30B7\u30E7\u30F3`,
377
+ "s54393bfa280ea55b": `\u30D7\u30ED\u30F3\u30D7\u30C8`,
378
+ "s7254ca27b16ae2d8": `\u507D`,
379
+ "s80dc9f56411917df": `\u30CF\u30A4\u30E9\u30A4\u30C8\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
380
+ "s85ea99fb52be3385": `\u771F`,
381
+ "sb3d4f79d9d8b71e5": `\u6295\u7A3F\u3059\u308B`,
382
+ "sc56e9323f076a11e": `\u30AE\u30E3\u30C3\u30D7\u3092\u8FFD\u52A0\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
383
+ "scd1dd6ff53d0d01a": `\u518D\u8A66\u884C`,
384
+ "sd26e8d4eef55e341": `\u7B54\u3048\u3092\u30C1\u30A7\u30C3\u30AF\u3059\u308B`
385
+ };
386
+ }
387
+ });
388
+
389
+ // localization/generated/ko.ts
390
+ var ko_exports = {};
391
+ __export(ko_exports, {
392
+ templates: () => templates15
393
+ });
394
+ var templates15;
395
+ var init_ko = __esm({
396
+ "localization/generated/ko.ts"() {
397
+ templates15 = {
398
+ "s159928724265eb05": `\uC635\uC158 \uCD94\uAC00`,
399
+ "s1b23c41934894f30": `\uC124\uBA85`,
400
+ "s255857544a9d5ec0": `\uCD08\uAE30\uD654`,
401
+ "s4802e47fe2e95134": `\uC635\uC158`,
402
+ "s54393bfa280ea55b": `\uD504\uB86C\uD504\uD2B8`,
403
+ "s7254ca27b16ae2d8": `False`,
404
+ "s80dc9f56411917df": `\uAC15\uC870 \uD45C\uC2DC\uD560 \uD14D\uC2A4\uD2B8`,
405
+ "s85ea99fb52be3385": `True`,
406
+ "sb3d4f79d9d8b71e5": `\uC81C\uCD9C\uD558\uAE30`,
407
+ "sc56e9323f076a11e": `\uACF5\uBC31\uC744 \uCD94\uAC00\uD560 \uD14D\uC2A4\uD2B8`,
408
+ "scd1dd6ff53d0d01a": `\uB2E4\uC2DC \uC2DC\uB3C4`,
409
+ "sd26e8d4eef55e341": `\uB2F5\uBCC0 \uD655\uC778`
410
+ };
411
+ }
412
+ });
413
+
414
+ // localization/generated/lt.ts
415
+ var lt_exports = {};
416
+ __export(lt_exports, {
417
+ templates: () => templates16
418
+ });
419
+ var templates16;
420
+ var init_lt = __esm({
421
+ "localization/generated/lt.ts"() {
422
+ templates16 = {
423
+ "s159928724265eb05": `Prid\u0117ti parinkt\u012F`,
424
+ "s1b23c41934894f30": `Paai\u0161kinimas`,
425
+ "s255857544a9d5ec0": `I\u0161 naujo nustatyti`,
426
+ "s4802e47fe2e95134": `Galimyb\u0117`,
427
+ "s54393bfa280ea55b": `Paraginimas`,
428
+ "s7254ca27b16ae2d8": `Klaidingas`,
429
+ "s80dc9f56411917df": `Teksto pary\u0161kinimas`,
430
+ "s85ea99fb52be3385": `Tiesa`,
431
+ "sb3d4f79d9d8b71e5": `Pateikti`,
432
+ "sc56e9323f076a11e": `Tekstas, prie kurio pridedami tarpai`,
433
+ "scd1dd6ff53d0d01a": `Pabandykite dar kart\u0105`,
434
+ "sd26e8d4eef55e341": `Patikrinkite savo atsakymus`
435
+ };
436
+ }
437
+ });
438
+
439
+ // localization/generated/lv.ts
440
+ var lv_exports = {};
441
+ __export(lv_exports, {
442
+ templates: () => templates17
443
+ });
444
+ var templates17;
445
+ var init_lv = __esm({
446
+ "localization/generated/lv.ts"() {
447
+ templates17 = {
448
+ "s159928724265eb05": `Pievienot iesp\u0113ju`,
449
+ "s1b23c41934894f30": `Paskaidrojums`,
450
+ "s255857544a9d5ec0": `Atiestat\u012Bt`,
451
+ "s4802e47fe2e95134": `Iesp\u0113ja`,
452
+ "s54393bfa280ea55b": `Uzaicin\u0101jums`,
453
+ "s7254ca27b16ae2d8": `Viltus`,
454
+ "s80dc9f56411917df": `Teksta izcel\u0161ana`,
455
+ "s85ea99fb52be3385": `True`,
456
+ "sb3d4f79d9d8b71e5": `Iesniegt`,
457
+ "sc56e9323f076a11e": `Teksts, kam pievienot atstarpes`,
458
+ "scd1dd6ff53d0d01a": `M\u0113\u0123iniet v\u0113lreiz`,
459
+ "sd26e8d4eef55e341": `P\u0101rbaudiet savas atbildes`
460
+ };
461
+ }
462
+ });
463
+
464
+ // localization/generated/nb.ts
465
+ var nb_exports = {};
466
+ __export(nb_exports, {
467
+ templates: () => templates18
468
+ });
469
+ var templates18;
470
+ var init_nb = __esm({
471
+ "localization/generated/nb.ts"() {
472
+ templates18 = {
473
+ "s159928724265eb05": `Legg til alternativ`,
474
+ "s1b23c41934894f30": `Forklaring`,
475
+ "s255857544a9d5ec0": `Tilbakestill`,
476
+ "s4802e47fe2e95134": `Alternativ`,
477
+ "s54393bfa280ea55b": `Sp\xF8r`,
478
+ "s7254ca27b16ae2d8": `Falsk`,
479
+ "s80dc9f56411917df": `Tekst som skal fremheves`,
480
+ "s85ea99fb52be3385": `Sant`,
481
+ "sb3d4f79d9d8b71e5": `Send inn`,
482
+ "sc56e9323f076a11e": `Tekst for \xE5 legge til mellomrom`,
483
+ "scd1dd6ff53d0d01a": `Pr\xF8v igjen`,
484
+ "sd26e8d4eef55e341": `Sjekk svarene dine`
485
+ };
486
+ }
487
+ });
488
+
489
+ // localization/generated/nl.ts
490
+ var nl_exports = {};
491
+ __export(nl_exports, {
492
+ templates: () => templates19
493
+ });
494
+ var templates19;
495
+ var init_nl = __esm({
496
+ "localization/generated/nl.ts"() {
497
+ templates19 = {
498
+ "s159928724265eb05": `Optie toevoegen`,
499
+ "s1b23c41934894f30": `Uitleg`,
500
+ "s255857544a9d5ec0": `Reset`,
501
+ "s4802e47fe2e95134": `Optie`,
502
+ "s54393bfa280ea55b": `Prompt`,
503
+ "s7254ca27b16ae2d8": `Valse`,
504
+ "s80dc9f56411917df": `Te markeren tekst`,
505
+ "s85ea99fb52be3385": `Echt`,
506
+ "sb3d4f79d9d8b71e5": `Stuur in`,
507
+ "sc56e9323f076a11e": `Tekst om gaten aan toe te voegen`,
508
+ "scd1dd6ff53d0d01a": `Probeer het opnieuw`,
509
+ "sd26e8d4eef55e341": `Controleer je antwoorden`
510
+ };
511
+ }
512
+ });
513
+
514
+ // localization/generated/pl.ts
515
+ var pl_exports = {};
516
+ __export(pl_exports, {
517
+ templates: () => templates20
518
+ });
519
+ var templates20;
520
+ var init_pl = __esm({
521
+ "localization/generated/pl.ts"() {
522
+ templates20 = {
523
+ "s159928724265eb05": `Dodaj opcj\u0119`,
524
+ "s1b23c41934894f30": `Wyja\u015Bnienie`,
525
+ "s255857544a9d5ec0": `Reset`,
526
+ "s4802e47fe2e95134": `Opcja`,
527
+ "s54393bfa280ea55b": `Podpowied\u017A`,
528
+ "s7254ca27b16ae2d8": `Fa\u0142sz`,
529
+ "s80dc9f56411917df": `Tekst do pod\u015Bwietlenia`,
530
+ "s85ea99fb52be3385": `Prawda`,
531
+ "sb3d4f79d9d8b71e5": `Prze\u015Blij`,
532
+ "sc56e9323f076a11e": `Tekst do dodania przerw`,
533
+ "scd1dd6ff53d0d01a": `Spr\xF3buj ponownie`,
534
+ "sd26e8d4eef55e341": `Sprawd\u017A swoje odpowiedzi`
535
+ };
536
+ }
537
+ });
538
+
539
+ // localization/generated/pt-BR.ts
540
+ var pt_BR_exports = {};
541
+ __export(pt_BR_exports, {
542
+ templates: () => templates21
543
+ });
544
+ var templates21;
545
+ var init_pt_BR = __esm({
546
+ "localization/generated/pt-BR.ts"() {
547
+ templates21 = {
548
+ "s159928724265eb05": `Adicionar op\xE7\xE3o`,
549
+ "s1b23c41934894f30": `Explica\xE7\xE3o`,
550
+ "s255857544a9d5ec0": `Redefinir`,
551
+ "s4802e47fe2e95134": `Op\xE7\xE3o`,
552
+ "s54393bfa280ea55b": `Prompt`,
553
+ "s7254ca27b16ae2d8": `Falso`,
554
+ "s80dc9f56411917df": `Texto para destacar`,
555
+ "s85ea99fb52be3385": `Verdadeiro`,
556
+ "sb3d4f79d9d8b71e5": `Enviar`,
557
+ "sc56e9323f076a11e": `Texto para adicionar lacunas`,
558
+ "scd1dd6ff53d0d01a": `Tente novamente`,
559
+ "sd26e8d4eef55e341": `Verifique suas respostas`
560
+ };
561
+ }
562
+ });
563
+
564
+ // localization/generated/pt-PT.ts
565
+ var pt_PT_exports = {};
566
+ __export(pt_PT_exports, {
567
+ templates: () => templates22
568
+ });
569
+ var templates22;
570
+ var init_pt_PT = __esm({
571
+ "localization/generated/pt-PT.ts"() {
572
+ templates22 = {
573
+ "s159928724265eb05": `Adicionar op\xE7\xE3o`,
574
+ "s1b23c41934894f30": `Explica\xE7\xE3o`,
575
+ "s255857544a9d5ec0": `Reiniciar`,
576
+ "s4802e47fe2e95134": `Op\xE7\xE3o`,
577
+ "s54393bfa280ea55b": `Prompt`,
578
+ "s7254ca27b16ae2d8": `Falso`,
579
+ "s80dc9f56411917df": `Texto a real\xE7ar`,
580
+ "s85ea99fb52be3385": `Verdadeiro`,
581
+ "sb3d4f79d9d8b71e5": `Enviar`,
582
+ "sc56e9323f076a11e": `Texto para adicionar lacunas`,
583
+ "scd1dd6ff53d0d01a": `Tentar novamente`,
584
+ "sd26e8d4eef55e341": `Verifique as suas respostas`
585
+ };
586
+ }
587
+ });
588
+
589
+ // localization/generated/ro.ts
590
+ var ro_exports = {};
591
+ __export(ro_exports, {
592
+ templates: () => templates23
593
+ });
594
+ var templates23;
595
+ var init_ro = __esm({
596
+ "localization/generated/ro.ts"() {
597
+ templates23 = {
598
+ "s159928724265eb05": `Adaug\u0103 op\u021Biune`,
599
+ "s1b23c41934894f30": `Explica\u021Bie`,
600
+ "s255857544a9d5ec0": `Resetare`,
601
+ "s4802e47fe2e95134": `Op\u021Biune`,
602
+ "s54393bfa280ea55b": `Prompt`,
603
+ "s7254ca27b16ae2d8": `Fals`,
604
+ "s80dc9f56411917df": `Text pentru eviden\u021Biere`,
605
+ "s85ea99fb52be3385": `Adev\u0103rat`,
606
+ "sb3d4f79d9d8b71e5": `Trimite`,
607
+ "sc56e9323f076a11e": `Text la care s\u0103 ad\u0103uga\u021Bi spa\u021Bii libere`,
608
+ "scd1dd6ff53d0d01a": `\xCEncerca\u021Bi din nou`,
609
+ "sd26e8d4eef55e341": `Verific\u0103-\u021Bi r\u0103spunsurile`
610
+ };
611
+ }
612
+ });
613
+
614
+ // localization/generated/ru.ts
615
+ var ru_exports = {};
616
+ __export(ru_exports, {
617
+ templates: () => templates24
618
+ });
619
+ var templates24;
620
+ var init_ru = __esm({
621
+ "localization/generated/ru.ts"() {
622
+ templates24 = {
623
+ "s159928724265eb05": `\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043E\u043F\u0446\u0438\u044E`,
624
+ "s1b23c41934894f30": `\u041F\u043E\u044F\u0441\u043D\u0435\u043D\u0438\u0435`,
625
+ "s255857544a9d5ec0": `\u0421\u0431\u0440\u043E\u0441`,
626
+ "s4802e47fe2e95134": `\u0412\u0430\u0440\u0438\u0430\u043D\u0442`,
627
+ "s54393bfa280ea55b": `\u0421\u043F\u0440\u0430\u0432\u043A\u0430`,
628
+ "s7254ca27b16ae2d8": `\u041B\u043E\u0436\u044C`,
629
+ "s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u0438\u044F`,
630
+ "s85ea99fb52be3385": `\u041F\u0440\u0430\u0432\u0434\u0430`,
631
+ "sb3d4f79d9d8b71e5": `\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C`,
632
+ "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`,
633
+ "scd1dd6ff53d0d01a": `\u041F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437`,
634
+ "sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0441\u0432\u043E\u0438 \u043E\u0442\u0432\u0435\u0442\u044B`
635
+ };
636
+ }
637
+ });
638
+
639
+ // localization/generated/sk.ts
640
+ var sk_exports = {};
641
+ __export(sk_exports, {
642
+ templates: () => templates25
643
+ });
644
+ var templates25;
645
+ var init_sk = __esm({
646
+ "localization/generated/sk.ts"() {
647
+ templates25 = {
648
+ "s159928724265eb05": `Prida\u0165 mo\u017Enos\u0165`,
649
+ "s1b23c41934894f30": `Vysvetlenie`,
650
+ "s255857544a9d5ec0": `Obnovenie`,
651
+ "s4802e47fe2e95134": `Mo\u017Enos\u0165`,
652
+ "s54393bfa280ea55b": `Prompt`,
653
+ "s7254ca27b16ae2d8": `False`,
654
+ "s80dc9f56411917df": `Text na zv\xFDraznenie`,
655
+ "s85ea99fb52be3385": `Pravda`,
656
+ "sb3d4f79d9d8b71e5": `Odosla\u0165`,
657
+ "sc56e9323f076a11e": `Text na pridanie medzier`,
658
+ "scd1dd6ff53d0d01a": `Sk\xFAste to znova`,
659
+ "sd26e8d4eef55e341": `Skontrolujte svoje odpovede`
660
+ };
661
+ }
662
+ });
663
+
664
+ // localization/generated/sl.ts
665
+ var sl_exports = {};
666
+ __export(sl_exports, {
667
+ templates: () => templates26
668
+ });
669
+ var templates26;
670
+ var init_sl = __esm({
671
+ "localization/generated/sl.ts"() {
672
+ templates26 = {
673
+ "s159928724265eb05": `Dodajanje mo\u017Enosti`,
674
+ "s1b23c41934894f30": `Razlaga:`,
675
+ "s255857544a9d5ec0": `Ponastavitev`,
676
+ "s4802e47fe2e95134": `Mo\u017Enost`,
677
+ "s54393bfa280ea55b": `Poziv`,
678
+ "s7254ca27b16ae2d8": `La\u017Eno`,
679
+ "s80dc9f56411917df": `Besedilo za poudarjanje`,
680
+ "s85ea99fb52be3385": `Resni\u010Dno`,
681
+ "sb3d4f79d9d8b71e5": `Po\u0161lji`,
682
+ "sc56e9323f076a11e": `Besedilo za dodajanje presledkov`,
683
+ "scd1dd6ff53d0d01a": `Poskusite znova`,
684
+ "sd26e8d4eef55e341": `Preverite svoje odgovore`
685
+ };
686
+ }
687
+ });
688
+
689
+ // localization/generated/sv.ts
690
+ var sv_exports = {};
691
+ __export(sv_exports, {
692
+ templates: () => templates27
693
+ });
694
+ var templates27;
695
+ var init_sv = __esm({
696
+ "localization/generated/sv.ts"() {
697
+ templates27 = {
698
+ "s159928724265eb05": `L\xE4gg till alternativ`,
699
+ "s1b23c41934894f30": `F\xF6rklaring`,
700
+ "s255857544a9d5ec0": `\xC5terst\xE4llning`,
701
+ "s4802e47fe2e95134": `Alternativ`,
702
+ "s54393bfa280ea55b": `Fr\xE5gest\xE4llning`,
703
+ "s7254ca27b16ae2d8": `Falsk`,
704
+ "s80dc9f56411917df": `Text att lyfta fram`,
705
+ "s85ea99fb52be3385": `Sant`,
706
+ "sb3d4f79d9d8b71e5": `Skicka in`,
707
+ "sc56e9323f076a11e": `Text att l\xE4gga till luckor i`,
708
+ "scd1dd6ff53d0d01a": `F\xF6rs\xF6k igen`,
709
+ "sd26e8d4eef55e341": `Kontrollera dina svar`
710
+ };
711
+ }
712
+ });
713
+
714
+ // localization/generated/tr.ts
715
+ var tr_exports = {};
716
+ __export(tr_exports, {
717
+ templates: () => templates28
718
+ });
719
+ var templates28;
720
+ var init_tr = __esm({
721
+ "localization/generated/tr.ts"() {
722
+ templates28 = {
723
+ "s159928724265eb05": `Se\xE7enek Ekle`,
724
+ "s1b23c41934894f30": `A\xE7\u0131klama`,
725
+ "s255857544a9d5ec0": `S\u0131f\u0131rla`,
726
+ "s4802e47fe2e95134": `Opsiyon`,
727
+ "s54393bfa280ea55b": `\u0130stem`,
728
+ "s7254ca27b16ae2d8": `Yanl\u0131\u015F`,
729
+ "s80dc9f56411917df": `Vurgulanacak Metin`,
730
+ "s85ea99fb52be3385": `Do\u011Fru`,
731
+ "sb3d4f79d9d8b71e5": `G\xF6nder`,
732
+ "sc56e9323f076a11e": `Bo\u015Fluk eklenecek metin`,
733
+ "scd1dd6ff53d0d01a": `Tekrar deneyin`,
734
+ "sd26e8d4eef55e341": `Cevaplar\u0131n\u0131z\u0131 kontrol edin`
735
+ };
736
+ }
737
+ });
738
+
739
+ // localization/generated/uk.ts
740
+ var uk_exports = {};
741
+ __export(uk_exports, {
742
+ templates: () => templates29
743
+ });
744
+ var templates29;
745
+ var init_uk = __esm({
746
+ "localization/generated/uk.ts"() {
747
+ templates29 = {
748
+ "s159928724265eb05": `\u0414\u043E\u0434\u0430\u0442\u0438 \u043E\u043F\u0446\u0456\u044E`,
749
+ "s1b23c41934894f30": `\u041F\u043E\u044F\u0441\u043D\u0435\u043D\u043D\u044F`,
750
+ "s255857544a9d5ec0": `\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F`,
751
+ "s4802e47fe2e95134": `\u0412\u0430\u0440\u0456\u0430\u043D\u0442`,
752
+ "s54393bfa280ea55b": `\u0428\u0432\u0438\u0434\u043A\u043E`,
753
+ "s7254ca27b16ae2d8": `\u041D\u0435\u043F\u0440\u0430\u0432\u0434\u0430.`,
754
+ "s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0432\u0438\u0434\u0456\u043B\u0435\u043D\u043D\u044F`,
755
+ "s85ea99fb52be3385": `\u041F\u0440\u0430\u0432\u0434\u0430.`,
756
+ "sb3d4f79d9d8b71e5": `\u041D\u0430\u0434\u0456\u0441\u043B\u0430\u0442\u0438`,
757
+ "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`,
758
+ "scd1dd6ff53d0d01a": `\u0421\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0449\u0435 \u0440\u0430\u0437.`,
759
+ "sd26e8d4eef55e341": `\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0441\u0432\u043E\u0457 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0456`
760
+ };
761
+ }
762
+ });
763
+
764
+ // localization/generated/zh-hans.ts
765
+ var zh_hans_exports = {};
766
+ __export(zh_hans_exports, {
767
+ templates: () => templates30
768
+ });
769
+ var templates30;
770
+ var init_zh_hans = __esm({
771
+ "localization/generated/zh-hans.ts"() {
772
+ templates30 = {
773
+ "s159928724265eb05": `\u6DFB\u52A0\u9009\u9879`,
774
+ "s1b23c41934894f30": `\u8BF4\u660E`,
775
+ "s255857544a9d5ec0": `\u91CD\u7F6E`,
776
+ "s4802e47fe2e95134": `\u9009\u9879`,
777
+ "s54393bfa280ea55b": `\u63D0\u793A`,
778
+ "s7254ca27b16ae2d8": `\u5047\u7684`,
779
+ "s80dc9f56411917df": `\u7A81\u51FA\u663E\u793A\u6587\u672C`,
780
+ "s85ea99fb52be3385": `\u6B63\u786E`,
781
+ "sb3d4f79d9d8b71e5": `\u63D0\u4EA4`,
782
+ "sc56e9323f076a11e": `\u4E3A\u6587\u672C\u6DFB\u52A0\u95F4\u9699`,
783
+ "scd1dd6ff53d0d01a": `\u518D\u8BD5\u4E00\u6B21`,
784
+ "sd26e8d4eef55e341": `\u68C0\u67E5\u7B54\u6848`
785
+ };
786
+ }
787
+ });
788
+
789
+ // node_modules/@lit/reactive-element/css-tag.js
52
790
  var t = globalThis;
53
791
  var e = t.ShadowRoot && (void 0 === t.ShadyCSS || t.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
54
792
  var s = Symbol();
55
793
  var o = /* @__PURE__ */ new WeakMap();
56
794
  var n = class {
57
- constructor(t5, e7, o6) {
58
- if (this._$cssResult$ = true, o6 !== s) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
59
- this.cssText = t5, this.t = e7;
795
+ constructor(t7, e10, o10) {
796
+ if (this._$cssResult$ = true, o10 !== s) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
797
+ this.cssText = t7, this.t = e10;
60
798
  }
61
799
  get styleSheet() {
62
- let t5 = this.o;
63
- const s3 = this.t;
64
- if (e && void 0 === t5) {
65
- const e7 = void 0 !== s3 && 1 === s3.length;
66
- e7 && (t5 = o.get(s3)), void 0 === t5 && ((this.o = t5 = new CSSStyleSheet()).replaceSync(this.cssText), e7 && o.set(s3, t5));
800
+ let t7 = this.o;
801
+ const s4 = this.t;
802
+ if (e && void 0 === t7) {
803
+ const e10 = void 0 !== s4 && 1 === s4.length;
804
+ e10 && (t7 = o.get(s4)), void 0 === t7 && ((this.o = t7 = new CSSStyleSheet()).replaceSync(this.cssText), e10 && o.set(s4, t7));
67
805
  }
68
- return t5;
806
+ return t7;
69
807
  }
70
808
  toString() {
71
809
  return this.cssText;
72
810
  }
73
811
  };
74
- var r = (t5) => new n("string" == typeof t5 ? t5 : t5 + "", void 0, s);
75
- var i = (t5, ...e7) => {
76
- const o6 = 1 === t5.length ? t5[0] : e7.reduce((e8, s3, o7) => e8 + ((t6) => {
77
- if (true === t6._$cssResult$) return t6.cssText;
78
- if ("number" == typeof t6) return t6;
79
- throw Error("Value passed to 'css' function must be a 'css' function result: " + t6 + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
80
- })(s3) + t5[o7 + 1], t5[0]);
81
- return new n(o6, t5, s);
812
+ var r = (t7) => new n("string" == typeof t7 ? t7 : t7 + "", void 0, s);
813
+ var i = (t7, ...e10) => {
814
+ const o10 = 1 === t7.length ? t7[0] : e10.reduce((e11, s4, o11) => e11 + ((t8) => {
815
+ if (true === t8._$cssResult$) return t8.cssText;
816
+ if ("number" == typeof t8) return t8;
817
+ throw Error("Value passed to 'css' function must be a 'css' function result: " + t8 + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
818
+ })(s4) + t7[o11 + 1], t7[0]);
819
+ return new n(o10, t7, s);
82
820
  };
83
- var S = (s3, o6) => {
84
- if (e) s3.adoptedStyleSheets = o6.map((t5) => t5 instanceof CSSStyleSheet ? t5 : t5.styleSheet);
85
- else for (const e7 of o6) {
86
- const o7 = document.createElement("style"), n6 = t.litNonce;
87
- void 0 !== n6 && o7.setAttribute("nonce", n6), o7.textContent = e7.cssText, s3.appendChild(o7);
821
+ var S = (s4, o10) => {
822
+ if (e) s4.adoptedStyleSheets = o10.map((t7) => t7 instanceof CSSStyleSheet ? t7 : t7.styleSheet);
823
+ else for (const e10 of o10) {
824
+ const o11 = document.createElement("style"), n8 = t.litNonce;
825
+ void 0 !== n8 && o11.setAttribute("nonce", n8), o11.textContent = e10.cssText, s4.appendChild(o11);
88
826
  }
89
827
  };
90
- var c = e ? (t5) => t5 : (t5) => t5 instanceof CSSStyleSheet ? ((t6) => {
91
- let e7 = "";
92
- for (const s3 of t6.cssRules) e7 += s3.cssText;
93
- return r(e7);
94
- })(t5) : t5;
828
+ var c = e ? (t7) => t7 : (t7) => t7 instanceof CSSStyleSheet ? ((t8) => {
829
+ let e10 = "";
830
+ for (const s4 of t8.cssRules) e10 += s4.cssText;
831
+ return r(e10);
832
+ })(t7) : t7;
95
833
 
96
- // ../../node_modules/lit/node_modules/@lit/reactive-element/reactive-element.js
834
+ // node_modules/@lit/reactive-element/reactive-element.js
97
835
  var { is: i2, defineProperty: e2, getOwnPropertyDescriptor: r2, getOwnPropertyNames: h, getOwnPropertySymbols: o2, getPrototypeOf: n2 } = Object;
98
836
  var a = globalThis;
99
837
  var c2 = a.trustedTypes;
100
838
  var l = c2 ? c2.emptyScript : "";
101
839
  var p = a.reactiveElementPolyfillSupport;
102
- var d = (t5, s3) => t5;
103
- var u = { toAttribute(t5, s3) {
104
- switch (s3) {
840
+ var d = (t7, s4) => t7;
841
+ var u = { toAttribute(t7, s4) {
842
+ switch (s4) {
105
843
  case Boolean:
106
- t5 = t5 ? l : null;
844
+ t7 = t7 ? l : null;
107
845
  break;
108
846
  case Object:
109
847
  case Array:
110
- t5 = null == t5 ? t5 : JSON.stringify(t5);
848
+ t7 = null == t7 ? t7 : JSON.stringify(t7);
111
849
  }
112
- return t5;
113
- }, fromAttribute(t5, s3) {
114
- let i4 = t5;
115
- switch (s3) {
850
+ return t7;
851
+ }, fromAttribute(t7, s4) {
852
+ let i8 = t7;
853
+ switch (s4) {
116
854
  case Boolean:
117
- i4 = null !== t5;
855
+ i8 = null !== t7;
118
856
  break;
119
857
  case Number:
120
- i4 = null === t5 ? null : Number(t5);
858
+ i8 = null === t7 ? null : Number(t7);
121
859
  break;
122
860
  case Object:
123
861
  case Array:
124
862
  try {
125
- i4 = JSON.parse(t5);
126
- } catch (t6) {
127
- i4 = null;
863
+ i8 = JSON.parse(t7);
864
+ } catch (t8) {
865
+ i8 = null;
128
866
  }
129
867
  }
130
- return i4;
868
+ return i8;
131
869
  } };
132
- var f = (t5, s3) => !i2(t5, s3);
870
+ var f = (t7, s4) => !i2(t7, s4);
133
871
  var y = { attribute: true, type: String, converter: u, reflect: false, hasChanged: f };
134
872
  Symbol.metadata ??= Symbol("metadata"), a.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
135
873
  var b = class extends HTMLElement {
136
- static addInitializer(t5) {
137
- this._$Ei(), (this.l ??= []).push(t5);
874
+ static addInitializer(t7) {
875
+ this._$Ei(), (this.l ??= []).push(t7);
138
876
  }
139
877
  static get observedAttributes() {
140
878
  return this.finalize(), this._$Eh && [...this._$Eh.keys()];
141
879
  }
142
- static createProperty(t5, s3 = y) {
143
- if (s3.state && (s3.attribute = false), this._$Ei(), this.elementProperties.set(t5, s3), !s3.noAccessor) {
144
- const i4 = Symbol(), r6 = this.getPropertyDescriptor(t5, i4, s3);
145
- void 0 !== r6 && e2(this.prototype, t5, r6);
880
+ static createProperty(t7, s4 = y) {
881
+ if (s4.state && (s4.attribute = false), this._$Ei(), this.elementProperties.set(t7, s4), !s4.noAccessor) {
882
+ const i8 = Symbol(), r8 = this.getPropertyDescriptor(t7, i8, s4);
883
+ void 0 !== r8 && e2(this.prototype, t7, r8);
146
884
  }
147
885
  }
148
- static getPropertyDescriptor(t5, s3, i4) {
149
- const { get: e7, set: h5 } = r2(this.prototype, t5) ?? { get() {
150
- return this[s3];
151
- }, set(t6) {
152
- this[s3] = t6;
886
+ static getPropertyDescriptor(t7, s4, i8) {
887
+ const { get: e10, set: h4 } = r2(this.prototype, t7) ?? { get() {
888
+ return this[s4];
889
+ }, set(t8) {
890
+ this[s4] = t8;
153
891
  } };
154
892
  return { get() {
155
- return e7?.call(this);
156
- }, set(s4) {
157
- const r6 = e7?.call(this);
158
- h5.call(this, s4), this.requestUpdate(t5, r6, i4);
893
+ return e10?.call(this);
894
+ }, set(s5) {
895
+ const r8 = e10?.call(this);
896
+ h4.call(this, s5), this.requestUpdate(t7, r8, i8);
159
897
  }, configurable: true, enumerable: true };
160
898
  }
161
- static getPropertyOptions(t5) {
162
- return this.elementProperties.get(t5) ?? y;
899
+ static getPropertyOptions(t7) {
900
+ return this.elementProperties.get(t7) ?? y;
163
901
  }
164
902
  static _$Ei() {
165
903
  if (this.hasOwnProperty(d("elementProperties"))) return;
166
- const t5 = n2(this);
167
- t5.finalize(), void 0 !== t5.l && (this.l = [...t5.l]), this.elementProperties = new Map(t5.elementProperties);
904
+ const t7 = n2(this);
905
+ t7.finalize(), void 0 !== t7.l && (this.l = [...t7.l]), this.elementProperties = new Map(t7.elementProperties);
168
906
  }
169
907
  static finalize() {
170
908
  if (this.hasOwnProperty(d("finalized"))) return;
171
909
  if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d("properties"))) {
172
- const t6 = this.properties, s3 = [...h(t6), ...o2(t6)];
173
- for (const i4 of s3) this.createProperty(i4, t6[i4]);
910
+ const t8 = this.properties, s4 = [...h(t8), ...o2(t8)];
911
+ for (const i8 of s4) this.createProperty(i8, t8[i8]);
174
912
  }
175
- const t5 = this[Symbol.metadata];
176
- if (null !== t5) {
177
- const s3 = litPropertyMetadata.get(t5);
178
- if (void 0 !== s3) for (const [t6, i4] of s3) this.elementProperties.set(t6, i4);
913
+ const t7 = this[Symbol.metadata];
914
+ if (null !== t7) {
915
+ const s4 = litPropertyMetadata.get(t7);
916
+ if (void 0 !== s4) for (const [t8, i8] of s4) this.elementProperties.set(t8, i8);
179
917
  }
180
918
  this._$Eh = /* @__PURE__ */ new Map();
181
- for (const [t6, s3] of this.elementProperties) {
182
- const i4 = this._$Eu(t6, s3);
183
- void 0 !== i4 && this._$Eh.set(i4, t6);
919
+ for (const [t8, s4] of this.elementProperties) {
920
+ const i8 = this._$Eu(t8, s4);
921
+ void 0 !== i8 && this._$Eh.set(i8, t8);
184
922
  }
185
923
  this.elementStyles = this.finalizeStyles(this.styles);
186
924
  }
187
- static finalizeStyles(s3) {
188
- const i4 = [];
189
- if (Array.isArray(s3)) {
190
- const e7 = new Set(s3.flat(1 / 0).reverse());
191
- for (const s4 of e7) i4.unshift(c(s4));
192
- } else void 0 !== s3 && i4.push(c(s3));
193
- return i4;
925
+ static finalizeStyles(s4) {
926
+ const i8 = [];
927
+ if (Array.isArray(s4)) {
928
+ const e10 = new Set(s4.flat(1 / 0).reverse());
929
+ for (const s5 of e10) i8.unshift(c(s5));
930
+ } else void 0 !== s4 && i8.push(c(s4));
931
+ return i8;
194
932
  }
195
- static _$Eu(t5, s3) {
196
- const i4 = s3.attribute;
197
- return false === i4 ? void 0 : "string" == typeof i4 ? i4 : "string" == typeof t5 ? t5.toLowerCase() : void 0;
933
+ static _$Eu(t7, s4) {
934
+ const i8 = s4.attribute;
935
+ return false === i8 ? void 0 : "string" == typeof i8 ? i8 : "string" == typeof t7 ? t7.toLowerCase() : void 0;
198
936
  }
199
937
  constructor() {
200
938
  super(), this._$Ep = void 0, this.isUpdatePending = false, this.hasUpdated = false, this._$Em = null, this._$Ev();
201
939
  }
202
940
  _$Ev() {
203
- this._$ES = new Promise((t5) => this.enableUpdating = t5), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t5) => t5(this));
941
+ this._$ES = new Promise((t7) => this.enableUpdating = t7), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t7) => t7(this));
204
942
  }
205
- addController(t5) {
206
- (this._$EO ??= /* @__PURE__ */ new Set()).add(t5), void 0 !== this.renderRoot && this.isConnected && t5.hostConnected?.();
943
+ addController(t7) {
944
+ (this._$EO ??= /* @__PURE__ */ new Set()).add(t7), void 0 !== this.renderRoot && this.isConnected && t7.hostConnected?.();
207
945
  }
208
- removeController(t5) {
209
- this._$EO?.delete(t5);
946
+ removeController(t7) {
947
+ this._$EO?.delete(t7);
210
948
  }
211
949
  _$E_() {
212
- const t5 = /* @__PURE__ */ new Map(), s3 = this.constructor.elementProperties;
213
- for (const i4 of s3.keys()) this.hasOwnProperty(i4) && (t5.set(i4, this[i4]), delete this[i4]);
214
- t5.size > 0 && (this._$Ep = t5);
950
+ const t7 = /* @__PURE__ */ new Map(), s4 = this.constructor.elementProperties;
951
+ for (const i8 of s4.keys()) this.hasOwnProperty(i8) && (t7.set(i8, this[i8]), delete this[i8]);
952
+ t7.size > 0 && (this._$Ep = t7);
215
953
  }
216
954
  createRenderRoot() {
217
- const t5 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
218
- return S(t5, this.constructor.elementStyles), t5;
955
+ const t7 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
956
+ return S(t7, this.constructor.elementStyles), t7;
219
957
  }
220
958
  connectedCallback() {
221
- this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t5) => t5.hostConnected?.());
959
+ this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t7) => t7.hostConnected?.());
222
960
  }
223
- enableUpdating(t5) {
961
+ enableUpdating(t7) {
224
962
  }
225
963
  disconnectedCallback() {
226
- this._$EO?.forEach((t5) => t5.hostDisconnected?.());
964
+ this._$EO?.forEach((t7) => t7.hostDisconnected?.());
227
965
  }
228
- attributeChangedCallback(t5, s3, i4) {
229
- this._$AK(t5, i4);
966
+ attributeChangedCallback(t7, s4, i8) {
967
+ this._$AK(t7, i8);
230
968
  }
231
- _$EC(t5, s3) {
232
- const i4 = this.constructor.elementProperties.get(t5), e7 = this.constructor._$Eu(t5, i4);
233
- if (void 0 !== e7 && true === i4.reflect) {
234
- const r6 = (void 0 !== i4.converter?.toAttribute ? i4.converter : u).toAttribute(s3, i4.type);
235
- this._$Em = t5, null == r6 ? this.removeAttribute(e7) : this.setAttribute(e7, r6), this._$Em = null;
969
+ _$EC(t7, s4) {
970
+ const i8 = this.constructor.elementProperties.get(t7), e10 = this.constructor._$Eu(t7, i8);
971
+ if (void 0 !== e10 && true === i8.reflect) {
972
+ const r8 = (void 0 !== i8.converter?.toAttribute ? i8.converter : u).toAttribute(s4, i8.type);
973
+ this._$Em = t7, null == r8 ? this.removeAttribute(e10) : this.setAttribute(e10, r8), this._$Em = null;
236
974
  }
237
975
  }
238
- _$AK(t5, s3) {
239
- const i4 = this.constructor, e7 = i4._$Eh.get(t5);
240
- if (void 0 !== e7 && this._$Em !== e7) {
241
- const t6 = i4.getPropertyOptions(e7), r6 = "function" == typeof t6.converter ? { fromAttribute: t6.converter } : void 0 !== t6.converter?.fromAttribute ? t6.converter : u;
242
- this._$Em = e7, this[e7] = r6.fromAttribute(s3, t6.type), this._$Em = null;
976
+ _$AK(t7, s4) {
977
+ const i8 = this.constructor, e10 = i8._$Eh.get(t7);
978
+ if (void 0 !== e10 && this._$Em !== e10) {
979
+ const t8 = i8.getPropertyOptions(e10), r8 = "function" == typeof t8.converter ? { fromAttribute: t8.converter } : void 0 !== t8.converter?.fromAttribute ? t8.converter : u;
980
+ this._$Em = e10, this[e10] = r8.fromAttribute(s4, t8.type), this._$Em = null;
243
981
  }
244
982
  }
245
- requestUpdate(t5, s3, i4) {
246
- if (void 0 !== t5) {
247
- if (i4 ??= this.constructor.getPropertyOptions(t5), !(i4.hasChanged ?? f)(this[t5], s3)) return;
248
- this.P(t5, s3, i4);
983
+ requestUpdate(t7, s4, i8) {
984
+ if (void 0 !== t7) {
985
+ if (i8 ??= this.constructor.getPropertyOptions(t7), !(i8.hasChanged ?? f)(this[t7], s4)) return;
986
+ this.P(t7, s4, i8);
249
987
  }
250
988
  false === this.isUpdatePending && (this._$ES = this._$ET());
251
989
  }
252
- P(t5, s3, i4) {
253
- this._$AL.has(t5) || this._$AL.set(t5, s3), true === i4.reflect && this._$Em !== t5 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t5);
990
+ P(t7, s4, i8) {
991
+ this._$AL.has(t7) || this._$AL.set(t7, s4), true === i8.reflect && this._$Em !== t7 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t7);
254
992
  }
255
993
  async _$ET() {
256
994
  this.isUpdatePending = true;
257
995
  try {
258
996
  await this._$ES;
259
- } catch (t6) {
260
- Promise.reject(t6);
997
+ } catch (t8) {
998
+ Promise.reject(t8);
261
999
  }
262
- const t5 = this.scheduleUpdate();
263
- return null != t5 && await t5, !this.isUpdatePending;
1000
+ const t7 = this.scheduleUpdate();
1001
+ return null != t7 && await t7, !this.isUpdatePending;
264
1002
  }
265
1003
  scheduleUpdate() {
266
1004
  return this.performUpdate();
@@ -269,25 +1007,25 @@ var b = class extends HTMLElement {
269
1007
  if (!this.isUpdatePending) return;
270
1008
  if (!this.hasUpdated) {
271
1009
  if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
272
- for (const [t7, s4] of this._$Ep) this[t7] = s4;
1010
+ for (const [t9, s5] of this._$Ep) this[t9] = s5;
273
1011
  this._$Ep = void 0;
274
1012
  }
275
- const t6 = this.constructor.elementProperties;
276
- 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);
1013
+ const t8 = this.constructor.elementProperties;
1014
+ if (t8.size > 0) for (const [s5, i8] of t8) true !== i8.wrapped || this._$AL.has(s5) || void 0 === this[s5] || this.P(s5, this[s5], i8);
277
1015
  }
278
- let t5 = false;
279
- const s3 = this._$AL;
1016
+ let t7 = false;
1017
+ const s4 = this._$AL;
280
1018
  try {
281
- t5 = this.shouldUpdate(s3), t5 ? (this.willUpdate(s3), this._$EO?.forEach((t6) => t6.hostUpdate?.()), this.update(s3)) : this._$EU();
282
- } catch (s4) {
283
- throw t5 = false, this._$EU(), s4;
1019
+ t7 = this.shouldUpdate(s4), t7 ? (this.willUpdate(s4), this._$EO?.forEach((t8) => t8.hostUpdate?.()), this.update(s4)) : this._$EU();
1020
+ } catch (s5) {
1021
+ throw t7 = false, this._$EU(), s5;
284
1022
  }
285
- t5 && this._$AE(s3);
1023
+ t7 && this._$AE(s4);
286
1024
  }
287
- willUpdate(t5) {
1025
+ willUpdate(t7) {
288
1026
  }
289
- _$AE(t5) {
290
- this._$EO?.forEach((t6) => t6.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t5)), this.updated(t5);
1027
+ _$AE(t7) {
1028
+ this._$EO?.forEach((t8) => t8.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t7)), this.updated(t7);
291
1029
  }
292
1030
  _$EU() {
293
1031
  this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = false;
@@ -298,111 +1036,111 @@ var b = class extends HTMLElement {
298
1036
  getUpdateComplete() {
299
1037
  return this._$ES;
300
1038
  }
301
- shouldUpdate(t5) {
1039
+ shouldUpdate(t7) {
302
1040
  return true;
303
1041
  }
304
- update(t5) {
305
- this._$Ej &&= this._$Ej.forEach((t6) => this._$EC(t6, this[t6])), this._$EU();
1042
+ update(t7) {
1043
+ this._$Ej &&= this._$Ej.forEach((t8) => this._$EC(t8, this[t8])), this._$EU();
306
1044
  }
307
- updated(t5) {
1045
+ updated(t7) {
308
1046
  }
309
- firstUpdated(t5) {
1047
+ firstUpdated(t7) {
310
1048
  }
311
1049
  };
312
1050
  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");
313
1051
 
314
- // ../../node_modules/lit/node_modules/lit-html/lit-html.js
315
- var n3 = globalThis;
316
- var c3 = n3.trustedTypes;
317
- var h2 = c3 ? c3.createPolicy("lit-html", { createHTML: (t5) => t5 }) : void 0;
318
- var f2 = "$lit$";
319
- var v = `lit$${Math.random().toFixed(9).slice(2)}$`;
320
- var m = "?" + v;
321
- var _ = `<${m}>`;
322
- var w = document;
323
- var lt = () => w.createComment("");
324
- var st = (t5) => null === t5 || "object" != typeof t5 && "function" != typeof t5;
325
- var g = Array.isArray;
326
- var $ = (t5) => g(t5) || "function" == typeof t5?.[Symbol.iterator];
327
- var x = "[ \n\f\r]";
328
- var T = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
329
- var E = /-->/g;
330
- var k = />/g;
331
- var O = RegExp(`>|${x}(?:([^\\s"'>=/]+)(${x}*=${x}*(?:[^
1052
+ // node_modules/lit-html/lit-html.js
1053
+ var t2 = globalThis;
1054
+ var i3 = t2.trustedTypes;
1055
+ var s2 = i3 ? i3.createPolicy("lit-html", { createHTML: (t7) => t7 }) : void 0;
1056
+ var e3 = "$lit$";
1057
+ var h2 = `lit$${Math.random().toFixed(9).slice(2)}$`;
1058
+ var o3 = "?" + h2;
1059
+ var n3 = `<${o3}>`;
1060
+ var r3 = document;
1061
+ var l2 = () => r3.createComment("");
1062
+ var c3 = (t7) => null === t7 || "object" != typeof t7 && "function" != typeof t7;
1063
+ var a2 = Array.isArray;
1064
+ var u2 = (t7) => a2(t7) || "function" == typeof t7?.[Symbol.iterator];
1065
+ var d2 = "[ \n\f\r]";
1066
+ var f2 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
1067
+ var v = /-->/g;
1068
+ var _ = />/g;
1069
+ var m = RegExp(`>|${d2}(?:([^\\s"'>=/]+)(${d2}*=${d2}*(?:[^
332
1070
  \f\r"'\`<>=]|("|')|))|$)`, "g");
333
- var S2 = /'/g;
334
- var j = /"/g;
335
- var M = /^(?:script|style|textarea|title)$/i;
336
- var P = (t5) => (i4, ...s3) => ({ _$litType$: t5, strings: i4, values: s3 });
337
- var ke = P(1);
338
- var Oe = P(2);
339
- var Se = P(3);
340
- var R = Symbol.for("lit-noChange");
341
- var D = Symbol.for("lit-nothing");
342
- var V = /* @__PURE__ */ new WeakMap();
343
- var I = w.createTreeWalker(w, 129);
344
- function N(t5, i4) {
345
- if (!g(t5) || !t5.hasOwnProperty("raw")) throw Error("invalid template strings array");
346
- return void 0 !== h2 ? h2.createHTML(i4) : i4;
1071
+ var p2 = /'/g;
1072
+ var g = /"/g;
1073
+ var $ = /^(?:script|style|textarea|title)$/i;
1074
+ var y2 = (t7) => (i8, ...s4) => ({ _$litType$: t7, strings: i8, values: s4 });
1075
+ var x = y2(1);
1076
+ var b2 = y2(2);
1077
+ var w = y2(3);
1078
+ var T = Symbol.for("lit-noChange");
1079
+ var E = Symbol.for("lit-nothing");
1080
+ var A = /* @__PURE__ */ new WeakMap();
1081
+ var C = r3.createTreeWalker(r3, 129);
1082
+ function P(t7, i8) {
1083
+ if (!a2(t7) || !t7.hasOwnProperty("raw")) throw Error("invalid template strings array");
1084
+ return void 0 !== s2 ? s2.createHTML(i8) : i8;
347
1085
  }
348
- var U = (t5, i4) => {
349
- const s3 = t5.length - 1, e7 = [];
350
- let h5, o6 = 2 === i4 ? "<svg>" : 3 === i4 ? "<math>" : "", n6 = T;
351
- for (let i5 = 0; i5 < s3; i5++) {
352
- const s4 = t5[i5];
353
- let r6, l3, c5 = -1, a3 = 0;
354
- 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, r6 = 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);
355
- const u3 = n6 === O && t5[i5 + 1].startsWith("/>") ? " " : "";
356
- o6 += n6 === T ? s4 + _ : c5 >= 0 ? (e7.push(r6), s4.slice(0, c5) + f2 + s4.slice(c5) + v + u3) : s4 + v + (-2 === c5 ? i5 : u3);
357
- }
358
- return [N(t5, o6 + (t5[s3] || "<?>") + (2 === i4 ? "</svg>" : 3 === i4 ? "</math>" : "")), e7];
1086
+ var V = (t7, i8) => {
1087
+ const s4 = t7.length - 1, o10 = [];
1088
+ let r8, l6 = 2 === i8 ? "<svg>" : 3 === i8 ? "<math>" : "", c6 = f2;
1089
+ for (let i9 = 0; i9 < s4; i9++) {
1090
+ const s5 = t7[i9];
1091
+ let a5, u6, d4 = -1, y4 = 0;
1092
+ for (; y4 < s5.length && (c6.lastIndex = y4, u6 = c6.exec(s5), null !== u6); ) y4 = c6.lastIndex, c6 === f2 ? "!--" === u6[1] ? c6 = v : void 0 !== u6[1] ? c6 = _ : void 0 !== u6[2] ? ($.test(u6[2]) && (r8 = RegExp("</" + u6[2], "g")), c6 = m) : void 0 !== u6[3] && (c6 = m) : c6 === m ? ">" === u6[0] ? (c6 = r8 ?? f2, d4 = -1) : void 0 === u6[1] ? d4 = -2 : (d4 = c6.lastIndex - u6[2].length, a5 = u6[1], c6 = void 0 === u6[3] ? m : '"' === u6[3] ? g : p2) : c6 === g || c6 === p2 ? c6 = m : c6 === v || c6 === _ ? c6 = f2 : (c6 = m, r8 = void 0);
1093
+ const x3 = c6 === m && t7[i9 + 1].startsWith("/>") ? " " : "";
1094
+ l6 += c6 === f2 ? s5 + n3 : d4 >= 0 ? (o10.push(a5), s5.slice(0, d4) + e3 + s5.slice(d4) + h2 + x3) : s5 + h2 + (-2 === d4 ? i9 : x3);
1095
+ }
1096
+ return [P(t7, l6 + (t7[s4] || "<?>") + (2 === i8 ? "</svg>" : 3 === i8 ? "</math>" : "")), o10];
359
1097
  };
360
- var B = class _B2 {
361
- constructor({ strings: t5, _$litType$: i4 }, s3) {
362
- let e7;
1098
+ var N = class _N {
1099
+ constructor({ strings: t7, _$litType$: s4 }, n8) {
1100
+ let r8;
363
1101
  this.parts = [];
364
- let h5 = 0, o6 = 0;
365
- const n6 = t5.length - 1, r6 = this.parts, [l3, a3] = U(t5, i4);
366
- if (this.el = _B2.createElement(l3, s3), I.currentNode = this.el.content, 2 === i4 || 3 === i4) {
367
- const t6 = this.el.content.firstChild;
368
- t6.replaceWith(...t6.childNodes);
369
- }
370
- for (; null !== (e7 = I.nextNode()) && r6.length < n6; ) {
371
- if (1 === e7.nodeType) {
372
- if (e7.hasAttributes()) for (const t6 of e7.getAttributeNames()) if (t6.endsWith(f2)) {
373
- const i5 = a3[o6++], s4 = e7.getAttribute(t6).split(v), n7 = /([.?@])?(.*)/.exec(i5);
374
- r6.push({ type: 1, index: h5, name: n7[2], strings: s4, ctor: "." === n7[1] ? Y : "?" === n7[1] ? Z : "@" === n7[1] ? q : G }), e7.removeAttribute(t6);
375
- } else t6.startsWith(v) && (r6.push({ type: 6, index: h5 }), e7.removeAttribute(t6));
376
- if (M.test(e7.tagName)) {
377
- const t6 = e7.textContent.split(v), i5 = t6.length - 1;
378
- if (i5 > 0) {
379
- e7.textContent = c3 ? c3.emptyScript : "";
380
- for (let s4 = 0; s4 < i5; s4++) e7.append(t6[s4], lt()), I.nextNode(), r6.push({ type: 2, index: ++h5 });
381
- e7.append(t6[i5], lt());
1102
+ let c6 = 0, a5 = 0;
1103
+ const u6 = t7.length - 1, d4 = this.parts, [f5, v3] = V(t7, s4);
1104
+ if (this.el = _N.createElement(f5, n8), C.currentNode = this.el.content, 2 === s4 || 3 === s4) {
1105
+ const t8 = this.el.content.firstChild;
1106
+ t8.replaceWith(...t8.childNodes);
1107
+ }
1108
+ for (; null !== (r8 = C.nextNode()) && d4.length < u6; ) {
1109
+ if (1 === r8.nodeType) {
1110
+ if (r8.hasAttributes()) for (const t8 of r8.getAttributeNames()) if (t8.endsWith(e3)) {
1111
+ const i8 = v3[a5++], s5 = r8.getAttribute(t8).split(h2), e10 = /([.?@])?(.*)/.exec(i8);
1112
+ d4.push({ type: 1, index: c6, name: e10[2], strings: s5, ctor: "." === e10[1] ? H : "?" === e10[1] ? I : "@" === e10[1] ? L : k }), r8.removeAttribute(t8);
1113
+ } else t8.startsWith(h2) && (d4.push({ type: 6, index: c6 }), r8.removeAttribute(t8));
1114
+ if ($.test(r8.tagName)) {
1115
+ const t8 = r8.textContent.split(h2), s5 = t8.length - 1;
1116
+ if (s5 > 0) {
1117
+ r8.textContent = i3 ? i3.emptyScript : "";
1118
+ for (let i8 = 0; i8 < s5; i8++) r8.append(t8[i8], l2()), C.nextNode(), d4.push({ type: 2, index: ++c6 });
1119
+ r8.append(t8[s5], l2());
382
1120
  }
383
1121
  }
384
- } else if (8 === e7.nodeType) if (e7.data === m) r6.push({ type: 2, index: h5 });
1122
+ } else if (8 === r8.nodeType) if (r8.data === o3) d4.push({ type: 2, index: c6 });
385
1123
  else {
386
- let t6 = -1;
387
- for (; -1 !== (t6 = e7.data.indexOf(v, t6 + 1)); ) r6.push({ type: 7, index: h5 }), t6 += v.length - 1;
1124
+ let t8 = -1;
1125
+ for (; -1 !== (t8 = r8.data.indexOf(h2, t8 + 1)); ) d4.push({ type: 7, index: c6 }), t8 += h2.length - 1;
388
1126
  }
389
- h5++;
1127
+ c6++;
390
1128
  }
391
1129
  }
392
- static createElement(t5, i4) {
393
- const s3 = w.createElement("template");
394
- return s3.innerHTML = t5, s3;
1130
+ static createElement(t7, i8) {
1131
+ const s4 = r3.createElement("template");
1132
+ return s4.innerHTML = t7, s4;
395
1133
  }
396
1134
  };
397
- function z(t5, i4, s3 = t5, e7) {
398
- if (i4 === R) return i4;
399
- let h5 = void 0 !== e7 ? s3.o?.[e7] : s3.l;
400
- const o6 = st(i4) ? void 0 : i4._$litDirective$;
401
- return h5?.constructor !== o6 && (h5?._$AO?.(false), void 0 === o6 ? h5 = void 0 : (h5 = new o6(t5), h5._$AT(t5, s3, e7)), void 0 !== e7 ? (s3.o ??= [])[e7] = h5 : s3.l = h5), void 0 !== h5 && (i4 = z(t5, h5._$AS(t5, i4.values), h5, e7)), i4;
1135
+ function S2(t7, i8, s4 = t7, e10) {
1136
+ if (i8 === T) return i8;
1137
+ let h4 = void 0 !== e10 ? s4._$Co?.[e10] : s4._$Cl;
1138
+ const o10 = c3(i8) ? void 0 : i8._$litDirective$;
1139
+ return h4?.constructor !== o10 && (h4?._$AO?.(false), void 0 === o10 ? h4 = void 0 : (h4 = new o10(t7), h4._$AT(t7, s4, e10)), void 0 !== e10 ? (s4._$Co ??= [])[e10] = h4 : s4._$Cl = h4), void 0 !== h4 && (i8 = S2(t7, h4._$AS(t7, i8.values), h4, e10)), i8;
402
1140
  }
403
- var F = class {
404
- constructor(t5, i4) {
405
- this._$AV = [], this._$AN = void 0, this._$AD = t5, this._$AM = i4;
1141
+ var M = class {
1142
+ constructor(t7, i8) {
1143
+ this._$AV = [], this._$AN = void 0, this._$AD = t7, this._$AM = i8;
406
1144
  }
407
1145
  get parentNode() {
408
1146
  return this._$AM.parentNode;
@@ -410,35 +1148,35 @@ var F = class {
410
1148
  get _$AU() {
411
1149
  return this._$AM._$AU;
412
1150
  }
413
- u(t5) {
414
- const { el: { content: i4 }, parts: s3 } = this._$AD, e7 = (t5?.creationScope ?? w).importNode(i4, true);
415
- I.currentNode = e7;
416
- let h5 = I.nextNode(), o6 = 0, n6 = 0, r6 = s3[0];
417
- for (; void 0 !== r6; ) {
418
- if (o6 === r6.index) {
419
- let i5;
420
- 2 === r6.type ? i5 = new et(h5, h5.nextSibling, this, t5) : 1 === r6.type ? i5 = new r6.ctor(h5, r6.name, r6.strings, this, t5) : 6 === r6.type && (i5 = new K(h5, this, t5)), this._$AV.push(i5), r6 = s3[++n6];
1151
+ u(t7) {
1152
+ const { el: { content: i8 }, parts: s4 } = this._$AD, e10 = (t7?.creationScope ?? r3).importNode(i8, true);
1153
+ C.currentNode = e10;
1154
+ let h4 = C.nextNode(), o10 = 0, n8 = 0, l6 = s4[0];
1155
+ for (; void 0 !== l6; ) {
1156
+ if (o10 === l6.index) {
1157
+ let i9;
1158
+ 2 === l6.type ? i9 = new R(h4, h4.nextSibling, this, t7) : 1 === l6.type ? i9 = new l6.ctor(h4, l6.name, l6.strings, this, t7) : 6 === l6.type && (i9 = new z(h4, this, t7)), this._$AV.push(i9), l6 = s4[++n8];
421
1159
  }
422
- o6 !== r6?.index && (h5 = I.nextNode(), o6++);
1160
+ o10 !== l6?.index && (h4 = C.nextNode(), o10++);
423
1161
  }
424
- return I.currentNode = w, e7;
1162
+ return C.currentNode = r3, e10;
425
1163
  }
426
- p(t5) {
427
- let i4 = 0;
428
- 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++;
1164
+ p(t7) {
1165
+ let i8 = 0;
1166
+ for (const s4 of this._$AV) void 0 !== s4 && (void 0 !== s4.strings ? (s4._$AI(t7, s4, i8), i8 += s4.strings.length - 2) : s4._$AI(t7[i8])), i8++;
429
1167
  }
430
1168
  };
431
- var et = class _et2 {
1169
+ var R = class _R {
432
1170
  get _$AU() {
433
- return this._$AM?._$AU ?? this.v;
1171
+ return this._$AM?._$AU ?? this._$Cv;
434
1172
  }
435
- constructor(t5, i4, s3, e7) {
436
- this.type = 2, this._$AH = D, this._$AN = void 0, this._$AA = t5, this._$AB = i4, this._$AM = s3, this.options = e7, this.v = e7?.isConnected ?? true;
1173
+ constructor(t7, i8, s4, e10) {
1174
+ this.type = 2, this._$AH = E, this._$AN = void 0, this._$AA = t7, this._$AB = i8, this._$AM = s4, this.options = e10, this._$Cv = e10?.isConnected ?? true;
437
1175
  }
438
1176
  get parentNode() {
439
- let t5 = this._$AA.parentNode;
440
- const i4 = this._$AM;
441
- return void 0 !== i4 && 11 === t5?.nodeType && (t5 = i4.parentNode), t5;
1177
+ let t7 = this._$AA.parentNode;
1178
+ const i8 = this._$AM;
1179
+ return void 0 !== i8 && 11 === t7?.nodeType && (t7 = i8.parentNode), t7;
442
1180
  }
443
1181
  get startNode() {
444
1182
  return this._$AA;
@@ -446,160 +1184,160 @@ var et = class _et2 {
446
1184
  get endNode() {
447
1185
  return this._$AB;
448
1186
  }
449
- _$AI(t5, i4 = this) {
450
- 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);
1187
+ _$AI(t7, i8 = this) {
1188
+ t7 = S2(this, t7, i8), c3(t7) ? t7 === E || null == t7 || "" === t7 ? (this._$AH !== E && this._$AR(), this._$AH = E) : t7 !== this._$AH && t7 !== T && this._(t7) : void 0 !== t7._$litType$ ? this.$(t7) : void 0 !== t7.nodeType ? this.T(t7) : u2(t7) ? this.k(t7) : this._(t7);
451
1189
  }
452
- O(t5) {
453
- return this._$AA.parentNode.insertBefore(t5, this._$AB);
1190
+ O(t7) {
1191
+ return this._$AA.parentNode.insertBefore(t7, this._$AB);
454
1192
  }
455
- T(t5) {
456
- this._$AH !== t5 && (this._$AR(), this._$AH = this.O(t5));
1193
+ T(t7) {
1194
+ this._$AH !== t7 && (this._$AR(), this._$AH = this.O(t7));
457
1195
  }
458
- _(t5) {
459
- this._$AH !== D && st(this._$AH) ? this._$AA.nextSibling.data = t5 : this.T(w.createTextNode(t5)), this._$AH = t5;
1196
+ _(t7) {
1197
+ this._$AH !== E && c3(this._$AH) ? this._$AA.nextSibling.data = t7 : this.T(r3.createTextNode(t7)), this._$AH = t7;
460
1198
  }
461
- $(t5) {
462
- const { values: i4, _$litType$: s3 } = t5, e7 = "number" == typeof s3 ? this._$AC(t5) : (void 0 === s3.el && (s3.el = B.createElement(N(s3.h, s3.h[0]), this.options)), s3);
463
- if (this._$AH?._$AD === e7) this._$AH.p(i4);
1199
+ $(t7) {
1200
+ const { values: i8, _$litType$: s4 } = t7, e10 = "number" == typeof s4 ? this._$AC(t7) : (void 0 === s4.el && (s4.el = N.createElement(P(s4.h, s4.h[0]), this.options)), s4);
1201
+ if (this._$AH?._$AD === e10) this._$AH.p(i8);
464
1202
  else {
465
- const t6 = new F(e7, this), s4 = t6.u(this.options);
466
- t6.p(i4), this.T(s4), this._$AH = t6;
1203
+ const t8 = new M(e10, this), s5 = t8.u(this.options);
1204
+ t8.p(i8), this.T(s5), this._$AH = t8;
467
1205
  }
468
1206
  }
469
- _$AC(t5) {
470
- let i4 = V.get(t5.strings);
471
- return void 0 === i4 && V.set(t5.strings, i4 = new B(t5)), i4;
1207
+ _$AC(t7) {
1208
+ let i8 = A.get(t7.strings);
1209
+ return void 0 === i8 && A.set(t7.strings, i8 = new N(t7)), i8;
472
1210
  }
473
- k(t5) {
474
- g(this._$AH) || (this._$AH = [], this._$AR());
475
- const i4 = this._$AH;
476
- let s3, e7 = 0;
477
- for (const h5 of t5) e7 === i4.length ? i4.push(s3 = new _et2(this.O(lt()), this.O(lt()), this, this.options)) : s3 = i4[e7], s3._$AI(h5), e7++;
478
- e7 < i4.length && (this._$AR(s3 && s3._$AB.nextSibling, e7), i4.length = e7);
1211
+ k(t7) {
1212
+ a2(this._$AH) || (this._$AH = [], this._$AR());
1213
+ const i8 = this._$AH;
1214
+ let s4, e10 = 0;
1215
+ for (const h4 of t7) e10 === i8.length ? i8.push(s4 = new _R(this.O(l2()), this.O(l2()), this, this.options)) : s4 = i8[e10], s4._$AI(h4), e10++;
1216
+ e10 < i8.length && (this._$AR(s4 && s4._$AB.nextSibling, e10), i8.length = e10);
479
1217
  }
480
- _$AR(t5 = this._$AA.nextSibling, i4) {
481
- for (this._$AP?.(false, true, i4); t5 && t5 !== this._$AB; ) {
482
- const i5 = t5.nextSibling;
483
- t5.remove(), t5 = i5;
1218
+ _$AR(t7 = this._$AA.nextSibling, i8) {
1219
+ for (this._$AP?.(false, true, i8); t7 && t7 !== this._$AB; ) {
1220
+ const i9 = t7.nextSibling;
1221
+ t7.remove(), t7 = i9;
484
1222
  }
485
1223
  }
486
- setConnected(t5) {
487
- void 0 === this._$AM && (this.v = t5, this._$AP?.(t5));
1224
+ setConnected(t7) {
1225
+ void 0 === this._$AM && (this._$Cv = t7, this._$AP?.(t7));
488
1226
  }
489
1227
  };
490
- var G = class {
1228
+ var k = class {
491
1229
  get tagName() {
492
1230
  return this.element.tagName;
493
1231
  }
494
1232
  get _$AU() {
495
1233
  return this._$AM._$AU;
496
1234
  }
497
- constructor(t5, i4, s3, e7, h5) {
498
- this.type = 1, this._$AH = D, this._$AN = void 0, this.element = t5, this.name = i4, this._$AM = e7, 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;
1235
+ constructor(t7, i8, s4, e10, h4) {
1236
+ this.type = 1, this._$AH = E, this._$AN = void 0, this.element = t7, this.name = i8, this._$AM = e10, 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;
499
1237
  }
500
- _$AI(t5, i4 = this, s3, e7) {
501
- const h5 = this.strings;
502
- let o6 = false;
503
- if (void 0 === h5) t5 = z(this, t5, i4, 0), o6 = !st(t5) || t5 !== this._$AH && t5 !== R, o6 && (this._$AH = t5);
1238
+ _$AI(t7, i8 = this, s4, e10) {
1239
+ const h4 = this.strings;
1240
+ let o10 = false;
1241
+ if (void 0 === h4) t7 = S2(this, t7, i8, 0), o10 = !c3(t7) || t7 !== this._$AH && t7 !== T, o10 && (this._$AH = t7);
504
1242
  else {
505
- const e8 = t5;
506
- let n6, r6;
507
- for (t5 = h5[0], n6 = 0; n6 < h5.length - 1; n6++) r6 = z(this, e8[s3 + n6], i4, n6), r6 === R && (r6 = this._$AH[n6]), o6 ||= !st(r6) || r6 !== this._$AH[n6], r6 === D ? t5 = D : t5 !== D && (t5 += (r6 ?? "") + h5[n6 + 1]), this._$AH[n6] = r6;
1243
+ const e11 = t7;
1244
+ let n8, r8;
1245
+ for (t7 = h4[0], n8 = 0; n8 < h4.length - 1; n8++) r8 = S2(this, e11[s4 + n8], i8, n8), r8 === T && (r8 = this._$AH[n8]), o10 ||= !c3(r8) || r8 !== this._$AH[n8], r8 === E ? t7 = E : t7 !== E && (t7 += (r8 ?? "") + h4[n8 + 1]), this._$AH[n8] = r8;
508
1246
  }
509
- o6 && !e7 && this.j(t5);
1247
+ o10 && !e10 && this.j(t7);
510
1248
  }
511
- j(t5) {
512
- t5 === D ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t5 ?? "");
1249
+ j(t7) {
1250
+ t7 === E ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t7 ?? "");
513
1251
  }
514
1252
  };
515
- var Y = class extends G {
1253
+ var H = class extends k {
516
1254
  constructor() {
517
1255
  super(...arguments), this.type = 3;
518
1256
  }
519
- j(t5) {
520
- this.element[this.name] = t5 === D ? void 0 : t5;
1257
+ j(t7) {
1258
+ this.element[this.name] = t7 === E ? void 0 : t7;
521
1259
  }
522
1260
  };
523
- var Z = class extends G {
1261
+ var I = class extends k {
524
1262
  constructor() {
525
1263
  super(...arguments), this.type = 4;
526
1264
  }
527
- j(t5) {
528
- this.element.toggleAttribute(this.name, !!t5 && t5 !== D);
1265
+ j(t7) {
1266
+ this.element.toggleAttribute(this.name, !!t7 && t7 !== E);
529
1267
  }
530
1268
  };
531
- var q = class extends G {
532
- constructor(t5, i4, s3, e7, h5) {
533
- super(t5, i4, s3, e7, h5), this.type = 5;
1269
+ var L = class extends k {
1270
+ constructor(t7, i8, s4, e10, h4) {
1271
+ super(t7, i8, s4, e10, h4), this.type = 5;
534
1272
  }
535
- _$AI(t5, i4 = this) {
536
- if ((t5 = z(this, t5, i4, 0) ?? D) === R) return;
537
- const s3 = this._$AH, e7 = t5 === D && s3 !== D || t5.capture !== s3.capture || t5.once !== s3.once || t5.passive !== s3.passive, h5 = t5 !== D && (s3 === D || e7);
538
- e7 && this.element.removeEventListener(this.name, this, s3), h5 && this.element.addEventListener(this.name, this, t5), this._$AH = t5;
1273
+ _$AI(t7, i8 = this) {
1274
+ if ((t7 = S2(this, t7, i8, 0) ?? E) === T) return;
1275
+ const s4 = this._$AH, e10 = t7 === E && s4 !== E || t7.capture !== s4.capture || t7.once !== s4.once || t7.passive !== s4.passive, h4 = t7 !== E && (s4 === E || e10);
1276
+ e10 && this.element.removeEventListener(this.name, this, s4), h4 && this.element.addEventListener(this.name, this, t7), this._$AH = t7;
539
1277
  }
540
- handleEvent(t5) {
541
- "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t5) : this._$AH.handleEvent(t5);
1278
+ handleEvent(t7) {
1279
+ "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t7) : this._$AH.handleEvent(t7);
542
1280
  }
543
1281
  };
544
- var K = class {
545
- constructor(t5, i4, s3) {
546
- this.element = t5, this.type = 6, this._$AN = void 0, this._$AM = i4, this.options = s3;
1282
+ var z = class {
1283
+ constructor(t7, i8, s4) {
1284
+ this.element = t7, this.type = 6, this._$AN = void 0, this._$AM = i8, this.options = s4;
547
1285
  }
548
1286
  get _$AU() {
549
1287
  return this._$AM._$AU;
550
1288
  }
551
- _$AI(t5) {
552
- z(this, t5);
1289
+ _$AI(t7) {
1290
+ S2(this, t7);
553
1291
  }
554
1292
  };
555
- var si = { M: f2, P: v, A: m, C: 1, L: U, R: F, D: $, V: z, I: et, H: G, N: Z, U: q, B: Y, F: K };
556
- var Re = n3.litHtmlPolyfillSupport;
557
- Re?.(B, et), (n3.litHtmlVersions ??= []).push("3.2.0");
558
- var Q = (t5, i4, s3) => {
559
- const e7 = s3?.renderBefore ?? i4;
560
- let h5 = e7._$litPart$;
561
- if (void 0 === h5) {
562
- const t6 = s3?.renderBefore ?? null;
563
- e7._$litPart$ = h5 = new et(i4.insertBefore(lt(), t6), t6, void 0, s3 ?? {});
564
- }
565
- return h5._$AI(t5), h5;
1293
+ var Z = { M: e3, P: h2, A: o3, C: 1, L: V, R: M, D: u2, V: S2, I: R, H: k, N: I, U: L, B: H, F: z };
1294
+ var j = t2.litHtmlPolyfillSupport;
1295
+ j?.(N, R), (t2.litHtmlVersions ??= []).push("3.2.1");
1296
+ var B = (t7, i8, s4) => {
1297
+ const e10 = s4?.renderBefore ?? i8;
1298
+ let h4 = e10._$litPart$;
1299
+ if (void 0 === h4) {
1300
+ const t8 = s4?.renderBefore ?? null;
1301
+ e10._$litPart$ = h4 = new R(i8.insertBefore(l2(), t8), t8, void 0, s4 ?? {});
1302
+ }
1303
+ return h4._$AI(t7), h4;
566
1304
  };
567
1305
 
568
- // ../../node_modules/lit/node_modules/lit-element/lit-element.js
569
- var h3 = class extends b {
1306
+ // node_modules/lit-element/lit-element.js
1307
+ var r4 = class extends b {
570
1308
  constructor() {
571
- super(...arguments), this.renderOptions = { host: this }, this.o = void 0;
1309
+ super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
572
1310
  }
573
1311
  createRenderRoot() {
574
- const t5 = super.createRenderRoot();
575
- return this.renderOptions.renderBefore ??= t5.firstChild, t5;
1312
+ const t7 = super.createRenderRoot();
1313
+ return this.renderOptions.renderBefore ??= t7.firstChild, t7;
576
1314
  }
577
- update(t5) {
578
- const e7 = this.render();
579
- this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t5), this.o = Q(e7, this.renderRoot, this.renderOptions);
1315
+ update(t7) {
1316
+ const s4 = this.render();
1317
+ this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t7), this._$Do = B(s4, this.renderRoot, this.renderOptions);
580
1318
  }
581
1319
  connectedCallback() {
582
- super.connectedCallback(), this.o?.setConnected(true);
1320
+ super.connectedCallback(), this._$Do?.setConnected(true);
583
1321
  }
584
1322
  disconnectedCallback() {
585
- super.disconnectedCallback(), this.o?.setConnected(false);
1323
+ super.disconnectedCallback(), this._$Do?.setConnected(false);
586
1324
  }
587
1325
  render() {
588
- return R;
1326
+ return T;
589
1327
  }
590
1328
  };
591
- h3._$litElement$ = true, h3["finalized"] = true, globalThis.litElementHydrateSupport?.({ LitElement: h3 });
592
- var f3 = globalThis.litElementPolyfillSupport;
593
- f3?.({ LitElement: h3 });
594
- (globalThis.litElementVersions ??= []).push("4.1.0");
1329
+ r4._$litElement$ = true, r4["finalized"] = true, globalThis.litElementHydrateSupport?.({ LitElement: r4 });
1330
+ var i4 = globalThis.litElementPolyfillSupport;
1331
+ i4?.({ LitElement: r4 });
1332
+ (globalThis.litElementVersions ??= []).push("4.1.1");
595
1333
 
596
- // ../lit/index.js
1334
+ // node_modules/@webwriter/lit/index.js
597
1335
  var __create2 = Object.create;
598
1336
  var __defProp2 = Object.defineProperty;
599
1337
  var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
600
1338
  var __knownSymbol2 = (name, symbol) => (symbol = Symbol[name]) ? symbol : Symbol.for("Symbol." + name);
601
- var __typeError2 = (msg) => {
602
- throw TypeError(msg);
1339
+ var __typeError2 = (msg2) => {
1340
+ throw TypeError(msg2);
603
1341
  };
604
1342
  var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
605
1343
  var __name2 = (target, value) => __defProp2(target, "name", { value, configurable: true });
@@ -637,27 +1375,27 @@ var __decorateElement2 = (array, flags, name, decorators, target, extra) => {
637
1375
  return k22 || __decoratorMetadata2(array, target), desc && __defProp2(target, name, desc), p22 ? k22 ^ 4 ? extra : desc : target;
638
1376
  };
639
1377
  var __publicField2 = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
640
- var __accessCheck2 = (obj, member, msg) => member.has(obj) || __typeError2("Cannot " + msg);
1378
+ var __accessCheck2 = (obj, member, msg2) => member.has(obj) || __typeError2("Cannot " + msg2);
641
1379
  var __privateIn2 = (member, obj) => Object(obj) !== obj ? __typeError2('Cannot use the "in" operator on this value') : member.has(obj);
642
1380
  var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
643
1381
  var __privateAdd2 = (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);
644
1382
  var __privateSet2 = (obj, member, value, setter) => (__accessCheck2(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
645
1383
  var __privateMethod2 = (obj, member, method) => (__accessCheck2(obj, member, "access private method"), method);
646
- var t2 = globalThis;
647
- var e3 = t2.ShadowRoot && (void 0 === t2.ShadyCSS || t2.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
648
- var s2 = Symbol();
649
- var o3 = /* @__PURE__ */ new WeakMap();
1384
+ var t3 = globalThis;
1385
+ var e4 = t3.ShadowRoot && (void 0 === t3.ShadyCSS || t3.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
1386
+ var s3 = Symbol();
1387
+ var o4 = /* @__PURE__ */ new WeakMap();
650
1388
  var n4 = class {
651
1389
  constructor(t22, e42, o42) {
652
- if (this._$cssResult$ = true, o42 !== s2) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
1390
+ if (this._$cssResult$ = true, o42 !== s3) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
653
1391
  this.cssText = t22, this.t = e42;
654
1392
  }
655
1393
  get styleSheet() {
656
1394
  let t22 = this.o;
657
1395
  const s22 = this.t;
658
- if (e3 && void 0 === t22) {
1396
+ if (e4 && void 0 === t22) {
659
1397
  const e42 = void 0 !== s22 && 1 === s22.length;
660
- e42 && (t22 = o3.get(s22)), void 0 === t22 && ((this.o = t22 = new CSSStyleSheet()).replaceSync(this.cssText), e42 && o3.set(s22, t22));
1398
+ e42 && (t22 = o4.get(s22)), void 0 === t22 && ((this.o = t22 = new CSSStyleSheet()).replaceSync(this.cssText), e42 && o4.set(s22, t22));
661
1399
  }
662
1400
  return t22;
663
1401
  }
@@ -665,29 +1403,29 @@ var n4 = class {
665
1403
  return this.cssText;
666
1404
  }
667
1405
  };
668
- var r3 = (t22) => new n4("string" == typeof t22 ? t22 : t22 + "", void 0, s2);
1406
+ var r5 = (t22) => new n4("string" == typeof t22 ? t22 : t22 + "", void 0, s3);
669
1407
  var S3 = (s22, o42) => {
670
- if (e3) s22.adoptedStyleSheets = o42.map((t22) => t22 instanceof CSSStyleSheet ? t22 : t22.styleSheet);
1408
+ if (e4) s22.adoptedStyleSheets = o42.map((t22) => t22 instanceof CSSStyleSheet ? t22 : t22.styleSheet);
671
1409
  else for (const e42 of o42) {
672
- const o52 = document.createElement("style"), n52 = t2.litNonce;
1410
+ const o52 = document.createElement("style"), n52 = t3.litNonce;
673
1411
  void 0 !== n52 && o52.setAttribute("nonce", n52), o52.textContent = e42.cssText, s22.appendChild(o52);
674
1412
  }
675
1413
  };
676
- var c4 = e3 ? (t22) => t22 : (t22) => t22 instanceof CSSStyleSheet ? ((t32) => {
1414
+ var c4 = e4 ? (t22) => t22 : (t22) => t22 instanceof CSSStyleSheet ? ((t32) => {
677
1415
  let e42 = "";
678
1416
  for (const s22 of t32.cssRules) e42 += s22.cssText;
679
- return r3(e42);
1417
+ return r5(e42);
680
1418
  })(t22) : t22;
681
- var { is: i22, defineProperty: e22, getOwnPropertyDescriptor: r22, getOwnPropertyNames: h4, getOwnPropertySymbols: o22, getPrototypeOf: n22 } = Object;
682
- var a2 = globalThis;
683
- var c22 = a2.trustedTypes;
684
- var l2 = c22 ? c22.emptyScript : "";
685
- var p2 = a2.reactiveElementPolyfillSupport;
686
- var d2 = (t22, s22) => t22;
687
- var u2 = { toAttribute(t22, s22) {
1419
+ var { is: i22, defineProperty: e22, getOwnPropertyDescriptor: r22, getOwnPropertyNames: h3, getOwnPropertySymbols: o22, getPrototypeOf: n22 } = Object;
1420
+ var a3 = globalThis;
1421
+ var c22 = a3.trustedTypes;
1422
+ var l3 = c22 ? c22.emptyScript : "";
1423
+ var p3 = a3.reactiveElementPolyfillSupport;
1424
+ var d3 = (t22, s22) => t22;
1425
+ var u3 = { toAttribute(t22, s22) {
688
1426
  switch (s22) {
689
1427
  case Boolean:
690
- t22 = t22 ? l2 : null;
1428
+ t22 = t22 ? l3 : null;
691
1429
  break;
692
1430
  case Object:
693
1431
  case Array:
@@ -713,47 +1451,47 @@ var u2 = { toAttribute(t22, s22) {
713
1451
  }
714
1452
  return i32;
715
1453
  } };
716
- var f4 = (t22, s22) => !i22(t22, s22);
717
- var y2 = { attribute: true, type: String, converter: u2, reflect: false, hasChanged: f4 };
718
- Symbol.metadata ??= Symbol("metadata"), a2.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
719
- var b2 = class extends HTMLElement {
1454
+ var f3 = (t22, s22) => !i22(t22, s22);
1455
+ var y3 = { attribute: true, type: String, converter: u3, reflect: false, hasChanged: f3 };
1456
+ Symbol.metadata ??= Symbol("metadata"), a3.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
1457
+ var b3 = class extends HTMLElement {
720
1458
  static addInitializer(t22) {
721
1459
  this._$Ei(), (this.l ??= []).push(t22);
722
1460
  }
723
1461
  static get observedAttributes() {
724
1462
  return this.finalize(), this._$Eh && [...this._$Eh.keys()];
725
1463
  }
726
- static createProperty(t22, s22 = y2) {
1464
+ static createProperty(t22, s22 = y3) {
727
1465
  if (s22.state && (s22.attribute = false), this._$Ei(), this.elementProperties.set(t22, s22), !s22.noAccessor) {
728
1466
  const i32 = Symbol(), r42 = this.getPropertyDescriptor(t22, i32, s22);
729
1467
  void 0 !== r42 && e22(this.prototype, t22, r42);
730
1468
  }
731
1469
  }
732
1470
  static getPropertyDescriptor(t22, s22, i32) {
733
- const { get: e42, set: h42 } = r22(this.prototype, t22) ?? { get() {
1471
+ const { get: e42, set: h4 } = r22(this.prototype, t22) ?? { get() {
734
1472
  return this[s22];
735
1473
  }, set(t32) {
736
1474
  this[s22] = t32;
737
1475
  } };
738
1476
  return { get() {
739
1477
  return e42?.call(this);
740
- }, set(s3) {
1478
+ }, set(s32) {
741
1479
  const r42 = e42?.call(this);
742
- h42.call(this, s3), this.requestUpdate(t22, r42, i32);
1480
+ h4.call(this, s32), this.requestUpdate(t22, r42, i32);
743
1481
  }, configurable: true, enumerable: true };
744
1482
  }
745
1483
  static getPropertyOptions(t22) {
746
- return this.elementProperties.get(t22) ?? y2;
1484
+ return this.elementProperties.get(t22) ?? y3;
747
1485
  }
748
1486
  static _$Ei() {
749
- if (this.hasOwnProperty(d2("elementProperties"))) return;
1487
+ if (this.hasOwnProperty(d3("elementProperties"))) return;
750
1488
  const t22 = n22(this);
751
1489
  t22.finalize(), void 0 !== t22.l && (this.l = [...t22.l]), this.elementProperties = new Map(t22.elementProperties);
752
1490
  }
753
1491
  static finalize() {
754
- if (this.hasOwnProperty(d2("finalized"))) return;
755
- if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d2("properties"))) {
756
- const t32 = this.properties, s22 = [...h4(t32), ...o22(t32)];
1492
+ if (this.hasOwnProperty(d3("finalized"))) return;
1493
+ if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d3("properties"))) {
1494
+ const t32 = this.properties, s22 = [...h3(t32), ...o22(t32)];
757
1495
  for (const i32 of s22) this.createProperty(i32, t32[i32]);
758
1496
  }
759
1497
  const t22 = this[Symbol.metadata];
@@ -772,7 +1510,7 @@ var b2 = class extends HTMLElement {
772
1510
  const i32 = [];
773
1511
  if (Array.isArray(s22)) {
774
1512
  const e42 = new Set(s22.flat(1 / 0).reverse());
775
- for (const s3 of e42) i32.unshift(c4(s3));
1513
+ for (const s32 of e42) i32.unshift(c4(s32));
776
1514
  } else void 0 !== s22 && i32.push(c4(s22));
777
1515
  return i32;
778
1516
  }
@@ -815,20 +1553,20 @@ var b2 = class extends HTMLElement {
815
1553
  _$EC(t22, s22) {
816
1554
  const i32 = this.constructor.elementProperties.get(t22), e42 = this.constructor._$Eu(t22, i32);
817
1555
  if (void 0 !== e42 && true === i32.reflect) {
818
- const r42 = (void 0 !== i32.converter?.toAttribute ? i32.converter : u2).toAttribute(s22, i32.type);
1556
+ const r42 = (void 0 !== i32.converter?.toAttribute ? i32.converter : u3).toAttribute(s22, i32.type);
819
1557
  this._$Em = t22, null == r42 ? this.removeAttribute(e42) : this.setAttribute(e42, r42), this._$Em = null;
820
1558
  }
821
1559
  }
822
1560
  _$AK(t22, s22) {
823
1561
  const i32 = this.constructor, e42 = i32._$Eh.get(t22);
824
1562
  if (void 0 !== e42 && this._$Em !== e42) {
825
- const t32 = i32.getPropertyOptions(e42), r42 = "function" == typeof t32.converter ? { fromAttribute: t32.converter } : void 0 !== t32.converter?.fromAttribute ? t32.converter : u2;
1563
+ const t32 = i32.getPropertyOptions(e42), r42 = "function" == typeof t32.converter ? { fromAttribute: t32.converter } : void 0 !== t32.converter?.fromAttribute ? t32.converter : u3;
826
1564
  this._$Em = e42, this[e42] = r42.fromAttribute(s22, t32.type), this._$Em = null;
827
1565
  }
828
1566
  }
829
1567
  requestUpdate(t22, s22, i32) {
830
1568
  if (void 0 !== t22) {
831
- if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ?? f4)(this[t22], s22)) return;
1569
+ if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ?? f3)(this[t22], s22)) return;
832
1570
  this.P(t22, s22, i32);
833
1571
  }
834
1572
  false === this.isUpdatePending && (this._$ES = this._$ET());
@@ -853,18 +1591,18 @@ var b2 = class extends HTMLElement {
853
1591
  if (!this.isUpdatePending) return;
854
1592
  if (!this.hasUpdated) {
855
1593
  if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
856
- for (const [t42, s3] of this._$Ep) this[t42] = s3;
1594
+ for (const [t42, s32] of this._$Ep) this[t42] = s32;
857
1595
  this._$Ep = void 0;
858
1596
  }
859
1597
  const t32 = this.constructor.elementProperties;
860
- 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);
1598
+ 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);
861
1599
  }
862
1600
  let t22 = false;
863
1601
  const s22 = this._$AL;
864
1602
  try {
865
1603
  t22 = this.shouldUpdate(s22), t22 ? (this.willUpdate(s22), this._$EO?.forEach((t32) => t32.hostUpdate?.()), this.update(s22)) : this._$EU();
866
- } catch (s3) {
867
- throw t22 = false, this._$EU(), s3;
1604
+ } catch (s32) {
1605
+ throw t22 = false, this._$EU(), s32;
868
1606
  }
869
1607
  t22 && this._$AE(s22);
870
1608
  }
@@ -893,7 +1631,7 @@ var b2 = class extends HTMLElement {
893
1631
  firstUpdated(t22) {
894
1632
  }
895
1633
  };
896
- 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");
1634
+ 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");
897
1635
  var n32 = globalThis;
898
1636
  var c32 = n32.trustedTypes;
899
1637
  var h22 = c32 ? c32.createPolicy("lit-html", { createHTML: (t22) => t22 }) : void 0;
@@ -902,40 +1640,40 @@ var v2 = `lit$${Math.random().toFixed(9).slice(2)}$`;
902
1640
  var m2 = "?" + v2;
903
1641
  var _2 = `<${m2}>`;
904
1642
  var w2 = document;
905
- var lt2 = () => w2.createComment("");
906
- var st2 = (t22) => null === t22 || "object" != typeof t22 && "function" != typeof t22;
1643
+ var lt = () => w2.createComment("");
1644
+ var st = (t22) => null === t22 || "object" != typeof t22 && "function" != typeof t22;
907
1645
  var g2 = Array.isArray;
908
1646
  var $2 = (t22) => g2(t22) || "function" == typeof t22?.[Symbol.iterator];
909
1647
  var x2 = "[ \n\f\r]";
910
1648
  var T2 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
911
1649
  var E2 = /-->/g;
912
1650
  var k2 = />/g;
913
- var O2 = RegExp(`>|${x2}(?:([^\\s"'>=/]+)(${x2}*=${x2}*(?:[^
1651
+ var O = RegExp(`>|${x2}(?:([^\\s"'>=/]+)(${x2}*=${x2}*(?:[^
914
1652
  \f\r"'\`<>=]|("|')|))|$)`, "g");
915
1653
  var S22 = /'/g;
916
1654
  var j2 = /"/g;
917
1655
  var M2 = /^(?:script|style|textarea|title)$/i;
918
1656
  var P2 = (t22) => (i32, ...s22) => ({ _$litType$: t22, strings: i32, values: s22 });
919
- var ke2 = P2(1);
920
- var Oe2 = P2(2);
921
- var Se2 = P2(3);
1657
+ var ke = P2(1);
1658
+ var Oe = P2(2);
1659
+ var Se = P2(3);
922
1660
  var R2 = Symbol.for("lit-noChange");
923
- var D2 = Symbol.for("lit-nothing");
1661
+ var D = Symbol.for("lit-nothing");
924
1662
  var V2 = /* @__PURE__ */ new WeakMap();
925
1663
  var I2 = w2.createTreeWalker(w2, 129);
926
1664
  function N2(t22, i32) {
927
1665
  if (!g2(t22) || !t22.hasOwnProperty("raw")) throw Error("invalid template strings array");
928
1666
  return void 0 !== h22 ? h22.createHTML(i32) : i32;
929
1667
  }
930
- var U2 = (t22, i32) => {
1668
+ var U = (t22, i32) => {
931
1669
  const s22 = t22.length - 1, e42 = [];
932
- let h42, o42 = 2 === i32 ? "<svg>" : 3 === i32 ? "<math>" : "", n52 = T2;
933
- for (let i4 = 0; i4 < s22; i4++) {
934
- const s3 = t22[i4];
1670
+ let h4, o42 = 2 === i32 ? "<svg>" : 3 === i32 ? "<math>" : "", n52 = T2;
1671
+ for (let i42 = 0; i42 < s22; i42++) {
1672
+ const s32 = t22[i42];
935
1673
  let r42, l22, c42 = -1, a22 = 0;
936
- 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, r42 = 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);
937
- const u22 = n52 === O2 && t22[i4 + 1].startsWith("/>") ? " " : "";
938
- o42 += n52 === T2 ? s3 + _2 : c42 >= 0 ? (e42.push(r42), s3.slice(0, c42) + f22 + s3.slice(c42) + v2 + u22) : s3 + v2 + (-2 === c42 ? i4 : u22);
1674
+ 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);
1675
+ const u22 = n52 === O && t22[i42 + 1].startsWith("/>") ? " " : "";
1676
+ 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);
939
1677
  }
940
1678
  return [N2(t22, o42 + (t22[s22] || "<?>") + (2 === i32 ? "</svg>" : 3 === i32 ? "</math>" : "")), e42];
941
1679
  };
@@ -943,8 +1681,8 @@ var B2 = class _B {
943
1681
  constructor({ strings: t22, _$litType$: i32 }, s22) {
944
1682
  let e42;
945
1683
  this.parts = [];
946
- let h42 = 0, o42 = 0;
947
- const n52 = t22.length - 1, r42 = this.parts, [l22, a22] = U2(t22, i32);
1684
+ let h4 = 0, o42 = 0;
1685
+ const n52 = t22.length - 1, r42 = this.parts, [l22, a22] = U(t22, i32);
948
1686
  if (this.el = _B.createElement(l22, s22), I2.currentNode = this.el.content, 2 === i32 || 3 === i32) {
949
1687
  const t32 = this.el.content.firstChild;
950
1688
  t32.replaceWith(...t32.childNodes);
@@ -952,23 +1690,23 @@ var B2 = class _B {
952
1690
  for (; null !== (e42 = I2.nextNode()) && r42.length < n52; ) {
953
1691
  if (1 === e42.nodeType) {
954
1692
  if (e42.hasAttributes()) for (const t32 of e42.getAttributeNames()) if (t32.endsWith(f22)) {
955
- const i4 = a22[o42++], s3 = e42.getAttribute(t32).split(v2), n6 = /([.?@])?(.*)/.exec(i4);
956
- r42.push({ type: 1, index: h42, name: n6[2], strings: s3, ctor: "." === n6[1] ? Y2 : "?" === n6[1] ? Z2 : "@" === n6[1] ? q2 : G2 }), e42.removeAttribute(t32);
957
- } else t32.startsWith(v2) && (r42.push({ type: 6, index: h42 }), e42.removeAttribute(t32));
1693
+ const i42 = a22[o42++], s32 = e42.getAttribute(t32).split(v2), n62 = /([.?@])?(.*)/.exec(i42);
1694
+ r42.push({ type: 1, index: h4, name: n62[2], strings: s32, ctor: "." === n62[1] ? Y : "?" === n62[1] ? Z2 : "@" === n62[1] ? q : G }), e42.removeAttribute(t32);
1695
+ } else t32.startsWith(v2) && (r42.push({ type: 6, index: h4 }), e42.removeAttribute(t32));
958
1696
  if (M2.test(e42.tagName)) {
959
- const t32 = e42.textContent.split(v2), i4 = t32.length - 1;
960
- if (i4 > 0) {
1697
+ const t32 = e42.textContent.split(v2), i42 = t32.length - 1;
1698
+ if (i42 > 0) {
961
1699
  e42.textContent = c32 ? c32.emptyScript : "";
962
- for (let s3 = 0; s3 < i4; s3++) e42.append(t32[s3], lt2()), I2.nextNode(), r42.push({ type: 2, index: ++h42 });
963
- e42.append(t32[i4], lt2());
1700
+ for (let s32 = 0; s32 < i42; s32++) e42.append(t32[s32], lt()), I2.nextNode(), r42.push({ type: 2, index: ++h4 });
1701
+ e42.append(t32[i42], lt());
964
1702
  }
965
1703
  }
966
- } else if (8 === e42.nodeType) if (e42.data === m2) r42.push({ type: 2, index: h42 });
1704
+ } else if (8 === e42.nodeType) if (e42.data === m2) r42.push({ type: 2, index: h4 });
967
1705
  else {
968
1706
  let t32 = -1;
969
- for (; -1 !== (t32 = e42.data.indexOf(v2, t32 + 1)); ) r42.push({ type: 7, index: h42 }), t32 += v2.length - 1;
1707
+ for (; -1 !== (t32 = e42.data.indexOf(v2, t32 + 1)); ) r42.push({ type: 7, index: h4 }), t32 += v2.length - 1;
970
1708
  }
971
- h42++;
1709
+ h4++;
972
1710
  }
973
1711
  }
974
1712
  static createElement(t22, i32) {
@@ -978,11 +1716,11 @@ var B2 = class _B {
978
1716
  };
979
1717
  function z2(t22, i32, s22 = t22, e42) {
980
1718
  if (i32 === R2) return i32;
981
- let h42 = void 0 !== e42 ? s22.o?.[e42] : s22.l;
982
- const o42 = st2(i32) ? void 0 : i32._$litDirective$;
983
- return h42?.constructor !== o42 && (h42?._$AO?.(false), void 0 === o42 ? h42 = void 0 : (h42 = new o42(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;
1719
+ let h4 = void 0 !== e42 ? s22.o?.[e42] : s22.l;
1720
+ const o42 = st(i32) ? void 0 : i32._$litDirective$;
1721
+ 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;
984
1722
  }
985
- var F2 = class {
1723
+ var F = class {
986
1724
  constructor(t22, i32) {
987
1725
  this._$AV = [], this._$AN = void 0, this._$AD = t22, this._$AM = i32;
988
1726
  }
@@ -995,13 +1733,13 @@ var F2 = class {
995
1733
  u(t22) {
996
1734
  const { el: { content: i32 }, parts: s22 } = this._$AD, e42 = (t22?.creationScope ?? w2).importNode(i32, true);
997
1735
  I2.currentNode = e42;
998
- let h42 = I2.nextNode(), o42 = 0, n52 = 0, r42 = s22[0];
1736
+ let h4 = I2.nextNode(), o42 = 0, n52 = 0, r42 = s22[0];
999
1737
  for (; void 0 !== r42; ) {
1000
1738
  if (o42 === r42.index) {
1001
- let i4;
1002
- 2 === r42.type ? i4 = new et2(h42, h42.nextSibling, this, t22) : 1 === r42.type ? i4 = new r42.ctor(h42, r42.name, r42.strings, this, t22) : 6 === r42.type && (i4 = new K2(h42, this, t22)), this._$AV.push(i4), r42 = s22[++n52];
1739
+ let i42;
1740
+ 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];
1003
1741
  }
1004
- o42 !== r42?.index && (h42 = I2.nextNode(), o42++);
1742
+ o42 !== r42?.index && (h4 = I2.nextNode(), o42++);
1005
1743
  }
1006
1744
  return I2.currentNode = w2, e42;
1007
1745
  }
@@ -1010,12 +1748,12 @@ var F2 = class {
1010
1748
  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++;
1011
1749
  }
1012
1750
  };
1013
- var et2 = class _et {
1751
+ var et = class _et {
1014
1752
  get _$AU() {
1015
1753
  return this._$AM?._$AU ?? this.v;
1016
1754
  }
1017
1755
  constructor(t22, i32, s22, e42) {
1018
- 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;
1756
+ 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;
1019
1757
  }
1020
1758
  get parentNode() {
1021
1759
  let t22 = this._$AA.parentNode;
@@ -1029,7 +1767,7 @@ var et2 = class _et {
1029
1767
  return this._$AB;
1030
1768
  }
1031
1769
  _$AI(t22, i32 = this) {
1032
- 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);
1770
+ 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);
1033
1771
  }
1034
1772
  O(t22) {
1035
1773
  return this._$AA.parentNode.insertBefore(t22, this._$AB);
@@ -1038,14 +1776,14 @@ var et2 = class _et {
1038
1776
  this._$AH !== t22 && (this._$AR(), this._$AH = this.O(t22));
1039
1777
  }
1040
1778
  _(t22) {
1041
- this._$AH !== D2 && st2(this._$AH) ? this._$AA.nextSibling.data = t22 : this.T(w2.createTextNode(t22)), this._$AH = t22;
1779
+ this._$AH !== D && st(this._$AH) ? this._$AA.nextSibling.data = t22 : this.T(w2.createTextNode(t22)), this._$AH = t22;
1042
1780
  }
1043
1781
  $(t22) {
1044
1782
  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);
1045
1783
  if (this._$AH?._$AD === e42) this._$AH.p(i32);
1046
1784
  else {
1047
- const t32 = new F2(e42, this), s3 = t32.u(this.options);
1048
- t32.p(i32), this.T(s3), this._$AH = t32;
1785
+ const t32 = new F(e42, this), s32 = t32.u(this.options);
1786
+ t32.p(i32), this.T(s32), this._$AH = t32;
1049
1787
  }
1050
1788
  }
1051
1789
  _$AC(t22) {
@@ -1056,74 +1794,74 @@ var et2 = class _et {
1056
1794
  g2(this._$AH) || (this._$AH = [], this._$AR());
1057
1795
  const i32 = this._$AH;
1058
1796
  let s22, e42 = 0;
1059
- 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++;
1797
+ 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++;
1060
1798
  e42 < i32.length && (this._$AR(s22 && s22._$AB.nextSibling, e42), i32.length = e42);
1061
1799
  }
1062
1800
  _$AR(t22 = this._$AA.nextSibling, i32) {
1063
1801
  for (this._$AP?.(false, true, i32); t22 && t22 !== this._$AB; ) {
1064
- const i4 = t22.nextSibling;
1065
- t22.remove(), t22 = i4;
1802
+ const i42 = t22.nextSibling;
1803
+ t22.remove(), t22 = i42;
1066
1804
  }
1067
1805
  }
1068
1806
  setConnected(t22) {
1069
1807
  void 0 === this._$AM && (this.v = t22, this._$AP?.(t22));
1070
1808
  }
1071
1809
  };
1072
- var G2 = class {
1810
+ var G = class {
1073
1811
  get tagName() {
1074
1812
  return this.element.tagName;
1075
1813
  }
1076
1814
  get _$AU() {
1077
1815
  return this._$AM._$AU;
1078
1816
  }
1079
- constructor(t22, i32, s22, e42, h42) {
1080
- 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;
1817
+ constructor(t22, i32, s22, e42, h4) {
1818
+ 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;
1081
1819
  }
1082
1820
  _$AI(t22, i32 = this, s22, e42) {
1083
- const h42 = this.strings;
1821
+ const h4 = this.strings;
1084
1822
  let o42 = false;
1085
- if (void 0 === h42) t22 = z2(this, t22, i32, 0), o42 = !st2(t22) || t22 !== this._$AH && t22 !== R2, o42 && (this._$AH = t22);
1823
+ if (void 0 === h4) t22 = z2(this, t22, i32, 0), o42 = !st(t22) || t22 !== this._$AH && t22 !== R2, o42 && (this._$AH = t22);
1086
1824
  else {
1087
1825
  const e52 = t22;
1088
1826
  let n52, r42;
1089
- for (t22 = h42[0], n52 = 0; n52 < h42.length - 1; n52++) r42 = z2(this, e52[s22 + n52], i32, n52), r42 === R2 && (r42 = this._$AH[n52]), o42 ||= !st2(r42) || r42 !== this._$AH[n52], r42 === D2 ? t22 = D2 : t22 !== D2 && (t22 += (r42 ?? "") + h42[n52 + 1]), this._$AH[n52] = r42;
1827
+ 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;
1090
1828
  }
1091
1829
  o42 && !e42 && this.j(t22);
1092
1830
  }
1093
1831
  j(t22) {
1094
- t22 === D2 ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t22 ?? "");
1832
+ t22 === D ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t22 ?? "");
1095
1833
  }
1096
1834
  };
1097
- var Y2 = class extends G2 {
1835
+ var Y = class extends G {
1098
1836
  constructor() {
1099
1837
  super(...arguments), this.type = 3;
1100
1838
  }
1101
1839
  j(t22) {
1102
- this.element[this.name] = t22 === D2 ? void 0 : t22;
1840
+ this.element[this.name] = t22 === D ? void 0 : t22;
1103
1841
  }
1104
1842
  };
1105
- var Z2 = class extends G2 {
1843
+ var Z2 = class extends G {
1106
1844
  constructor() {
1107
1845
  super(...arguments), this.type = 4;
1108
1846
  }
1109
1847
  j(t22) {
1110
- this.element.toggleAttribute(this.name, !!t22 && t22 !== D2);
1848
+ this.element.toggleAttribute(this.name, !!t22 && t22 !== D);
1111
1849
  }
1112
1850
  };
1113
- var q2 = class extends G2 {
1114
- constructor(t22, i32, s22, e42, h42) {
1115
- super(t22, i32, s22, e42, h42), this.type = 5;
1851
+ var q = class extends G {
1852
+ constructor(t22, i32, s22, e42, h4) {
1853
+ super(t22, i32, s22, e42, h4), this.type = 5;
1116
1854
  }
1117
1855
  _$AI(t22, i32 = this) {
1118
- if ((t22 = z2(this, t22, i32, 0) ?? D2) === R2) return;
1119
- 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);
1120
- e42 && this.element.removeEventListener(this.name, this, s22), h42 && this.element.addEventListener(this.name, this, t22), this._$AH = t22;
1856
+ if ((t22 = z2(this, t22, i32, 0) ?? D) === R2) return;
1857
+ 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);
1858
+ e42 && this.element.removeEventListener(this.name, this, s22), h4 && this.element.addEventListener(this.name, this, t22), this._$AH = t22;
1121
1859
  }
1122
1860
  handleEvent(t22) {
1123
1861
  "function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t22) : this._$AH.handleEvent(t22);
1124
1862
  }
1125
1863
  };
1126
- var K2 = class {
1864
+ var K = class {
1127
1865
  constructor(t22, i32, s22) {
1128
1866
  this.element = t22, this.type = 6, this._$AN = void 0, this._$AM = i32, this.options = s22;
1129
1867
  }
@@ -1134,18 +1872,18 @@ var K2 = class {
1134
1872
  z2(this, t22);
1135
1873
  }
1136
1874
  };
1137
- var Re2 = n32.litHtmlPolyfillSupport;
1138
- Re2?.(B2, et2), (n32.litHtmlVersions ??= []).push("3.2.0");
1139
- var Q2 = (t22, i32, s22) => {
1875
+ var Re = n32.litHtmlPolyfillSupport;
1876
+ Re?.(B2, et), (n32.litHtmlVersions ??= []).push("3.2.0");
1877
+ var Q = (t22, i32, s22) => {
1140
1878
  const e42 = s22?.renderBefore ?? i32;
1141
- let h42 = e42._$litPart$;
1142
- if (void 0 === h42) {
1879
+ let h4 = e42._$litPart$;
1880
+ if (void 0 === h4) {
1143
1881
  const t32 = s22?.renderBefore ?? null;
1144
- e42._$litPart$ = h42 = new et2(i32.insertBefore(lt2(), t32), t32, void 0, s22 ?? {});
1882
+ e42._$litPart$ = h4 = new et(i32.insertBefore(lt(), t32), t32, void 0, s22 ?? {});
1145
1883
  }
1146
- return h42._$AI(t22), h42;
1884
+ return h4._$AI(t22), h4;
1147
1885
  };
1148
- var h32 = class extends b2 {
1886
+ var h32 = class extends b3 {
1149
1887
  constructor() {
1150
1888
  super(...arguments), this.renderOptions = { host: this }, this.o = void 0;
1151
1889
  }
@@ -1155,7 +1893,7 @@ var h32 = class extends b2 {
1155
1893
  }
1156
1894
  update(t22) {
1157
1895
  const e42 = this.render();
1158
- this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t22), this.o = Q2(e42, this.renderRoot, this.renderOptions);
1896
+ this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t22), this.o = Q(e42, this.renderRoot, this.renderOptions);
1159
1897
  }
1160
1898
  connectedCallback() {
1161
1899
  super.connectedCallback(), this.o?.setConnected(true);
@@ -1171,15 +1909,15 @@ h32._$litElement$ = true, h32["finalized"] = true, globalThis.litElementHydrateS
1171
1909
  var f32 = globalThis.litElementPolyfillSupport;
1172
1910
  f32?.({ LitElement: h32 });
1173
1911
  (globalThis.litElementVersions ??= []).push("4.1.0");
1174
- var o32 = { attribute: true, type: String, converter: u2, reflect: false, hasChanged: f4 };
1912
+ var o32 = { attribute: true, type: String, converter: u3, reflect: false, hasChanged: f3 };
1175
1913
  var r32 = (t22 = o32, e42, r42) => {
1176
1914
  const { kind: n52, metadata: i32 } = r42;
1177
1915
  let s22 = globalThis.litPropertyMetadata.get(i32);
1178
1916
  if (void 0 === s22 && globalThis.litPropertyMetadata.set(i32, s22 = /* @__PURE__ */ new Map()), s22.set(r42.name, t22), "accessor" === n52) {
1179
1917
  const { name: o42 } = r42;
1180
1918
  return { set(r52) {
1181
- const n6 = e42.get.call(this);
1182
- e42.set.call(this, r52), this.requestUpdate(o42, n6, t22);
1919
+ const n62 = e42.get.call(this);
1920
+ e42.set.call(this, r52), this.requestUpdate(o42, n62, t22);
1183
1921
  }, init(e52) {
1184
1922
  return void 0 !== e52 && this.P(o42, void 0, t22), e52;
1185
1923
  } };
@@ -1187,8 +1925,8 @@ var r32 = (t22 = o32, e42, r42) => {
1187
1925
  if ("setter" === n52) {
1188
1926
  const { name: o42 } = r42;
1189
1927
  return function(r52) {
1190
- const n6 = this[o42];
1191
- e42.call(this, r52), this.requestUpdate(o42, n6, t22);
1928
+ const n62 = this[o42];
1929
+ e42.call(this, r52), this.requestUpdate(o42, n62, t22);
1192
1930
  };
1193
1931
  }
1194
1932
  throw Error("Unsupported decorator location: " + n52);
@@ -1313,14 +2051,24 @@ var _lang;
1313
2051
  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) {
1314
2052
  constructor() {
1315
2053
  super(...arguments);
2054
+ __runInitializers2(_init, 5, this);
1316
2055
  __publicField2(this, "options");
1317
2056
  __publicField2(this, "actions", {});
2057
+ __publicField2(this, "localize");
1318
2058
  __privateAdd2(this, _contentEditable, __runInitializers2(_init, 8, this)), __runInitializers2(_init, 11, this);
1319
- __privateAdd2(this, _lang, __runInitializers2(_init, 12, this)), __runInitializers2(_init, 15, this);
2059
+ __privateAdd2(this, _lang, "");
1320
2060
  __publicField2(this, "_inTransaction", false);
1321
2061
  }
2062
+ get lang() {
2063
+ return (__privateGet2(this, _lang) || this.parentElement?.closest("[lang]")?.lang) ?? "";
2064
+ }
2065
+ set lang(value) {
2066
+ __privateSet2(this, _lang, value);
2067
+ this.localize.setLocale(value).finally(() => this.requestUpdate("lang"));
2068
+ }
1322
2069
  connectedCallback() {
1323
2070
  super.connectedCallback();
2071
+ this.localize.setLocale(this.lang).finally(() => this.requestUpdate());
1324
2072
  this.getAttributeNames().forEach((k22) => this.setAttribute(k22, this.getAttribute(k22)));
1325
2073
  }
1326
2074
  };
@@ -1328,93 +2076,94 @@ _init = __decoratorStart2(_a);
1328
2076
  _contentEditable = /* @__PURE__ */ new WeakMap();
1329
2077
  _lang = /* @__PURE__ */ new WeakMap();
1330
2078
  __decorateElement2(_init, 4, "contentEditable", _contentEditable_dec, LitElementWw, _contentEditable);
1331
- __decorateElement2(_init, 4, "lang", _lang_dec, LitElementWw, _lang);
2079
+ __decorateElement2(_init, 3, "lang", _lang_dec, LitElementWw);
1332
2080
  __decoratorMetadata2(_init, LitElementWw);
1333
2081
  __publicField2(LitElementWw, "shadowRootOptions", { ...h32.shadowRootOptions });
2082
+ __publicField2(LitElementWw, "scopedElements", {});
1334
2083
  __publicField2(LitElementWw, "options", {});
1335
2084
  __publicField2(LitElementWw, "actions", {});
1336
2085
 
1337
- // ../../node_modules/lit/node_modules/@lit/reactive-element/decorators/custom-element.js
1338
- var t3 = (t5) => (e7, o6) => {
1339
- void 0 !== o6 ? o6.addInitializer(() => {
1340
- customElements.define(t5, e7);
1341
- }) : customElements.define(t5, e7);
2086
+ // node_modules/@lit/reactive-element/decorators/custom-element.js
2087
+ var t4 = (t7) => (e10, o10) => {
2088
+ void 0 !== o10 ? o10.addInitializer(() => {
2089
+ customElements.define(t7, e10);
2090
+ }) : customElements.define(t7, e10);
1342
2091
  };
1343
2092
 
1344
- // ../../node_modules/lit/node_modules/@lit/reactive-element/decorators/property.js
1345
- var o4 = { attribute: true, type: String, converter: u, reflect: false, hasChanged: f };
1346
- var r4 = (t5 = o4, e7, r6) => {
1347
- const { kind: n6, metadata: i4 } = r6;
1348
- let s3 = globalThis.litPropertyMetadata.get(i4);
1349
- if (void 0 === s3 && globalThis.litPropertyMetadata.set(i4, s3 = /* @__PURE__ */ new Map()), s3.set(r6.name, t5), "accessor" === n6) {
1350
- const { name: o6 } = r6;
1351
- return { set(r7) {
1352
- const n7 = e7.get.call(this);
1353
- e7.set.call(this, r7), this.requestUpdate(o6, n7, t5);
1354
- }, init(e8) {
1355
- return void 0 !== e8 && this.P(o6, void 0, t5), e8;
2093
+ // node_modules/@lit/reactive-element/decorators/property.js
2094
+ var o5 = { attribute: true, type: String, converter: u, reflect: false, hasChanged: f };
2095
+ var r6 = (t7 = o5, e10, r8) => {
2096
+ const { kind: n8, metadata: i8 } = r8;
2097
+ let s4 = globalThis.litPropertyMetadata.get(i8);
2098
+ if (void 0 === s4 && globalThis.litPropertyMetadata.set(i8, s4 = /* @__PURE__ */ new Map()), s4.set(r8.name, t7), "accessor" === n8) {
2099
+ const { name: o10 } = r8;
2100
+ return { set(r9) {
2101
+ const n9 = e10.get.call(this);
2102
+ e10.set.call(this, r9), this.requestUpdate(o10, n9, t7);
2103
+ }, init(e11) {
2104
+ return void 0 !== e11 && this.P(o10, void 0, t7), e11;
1356
2105
  } };
1357
2106
  }
1358
- if ("setter" === n6) {
1359
- const { name: o6 } = r6;
1360
- return function(r7) {
1361
- const n7 = this[o6];
1362
- e7.call(this, r7), this.requestUpdate(o6, n7, t5);
2107
+ if ("setter" === n8) {
2108
+ const { name: o10 } = r8;
2109
+ return function(r9) {
2110
+ const n9 = this[o10];
2111
+ e10.call(this, r9), this.requestUpdate(o10, n9, t7);
1363
2112
  };
1364
2113
  }
1365
- throw Error("Unsupported decorator location: " + n6);
2114
+ throw Error("Unsupported decorator location: " + n8);
1366
2115
  };
1367
- function n5(t5) {
1368
- return (e7, o6) => "object" == typeof o6 ? r4(t5, e7, o6) : ((t6, e8, o7) => {
1369
- const r6 = e8.hasOwnProperty(o7);
1370
- return e8.constructor.createProperty(o7, r6 ? { ...t6, wrapped: true } : t6), r6 ? Object.getOwnPropertyDescriptor(e8, o7) : void 0;
1371
- })(t5, e7, o6);
2116
+ function n5(t7) {
2117
+ return (e10, o10) => "object" == typeof o10 ? r6(t7, e10, o10) : ((t8, e11, o11) => {
2118
+ const r8 = e11.hasOwnProperty(o11);
2119
+ return e11.constructor.createProperty(o11, r8 ? { ...t8, wrapped: true } : t8), r8 ? Object.getOwnPropertyDescriptor(e11, o11) : void 0;
2120
+ })(t7, e10, o10);
1372
2121
  }
1373
2122
 
1374
- // ../../node_modules/lit/node_modules/@lit/reactive-element/decorators/state.js
1375
- function r5(r6) {
1376
- return n5({ ...r6, state: true, attribute: false });
2123
+ // node_modules/@lit/reactive-element/decorators/state.js
2124
+ function r7(r8) {
2125
+ return n5({ ...r8, state: true, attribute: false });
1377
2126
  }
1378
2127
 
1379
- // ../../node_modules/lit/node_modules/@lit/reactive-element/decorators/base.js
1380
- var e4 = (e7, t5, c5) => (c5.configurable = true, c5.enumerable = true, Reflect.decorate && "object" != typeof t5 && Object.defineProperty(e7, t5, c5), c5);
2128
+ // node_modules/@lit/reactive-element/decorators/base.js
2129
+ var e5 = (e10, t7, c6) => (c6.configurable = true, c6.enumerable = true, Reflect.decorate && "object" != typeof t7 && Object.defineProperty(e10, t7, c6), c6);
1381
2130
 
1382
- // ../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query.js
1383
- function e5(e7, r6) {
1384
- return (n6, s3, i4) => {
1385
- const o6 = (t5) => t5.renderRoot?.querySelector(e7) ?? null;
1386
- if (r6) {
1387
- const { get: e8, set: r7 } = "object" == typeof s3 ? n6 : i4 ?? (() => {
1388
- const t5 = Symbol();
2131
+ // node_modules/@lit/reactive-element/decorators/query.js
2132
+ function e6(e10, r8) {
2133
+ return (n8, s4, i8) => {
2134
+ const o10 = (t7) => t7.renderRoot?.querySelector(e10) ?? null;
2135
+ if (r8) {
2136
+ const { get: e11, set: r9 } = "object" == typeof s4 ? n8 : i8 ?? (() => {
2137
+ const t7 = Symbol();
1389
2138
  return { get() {
1390
- return this[t5];
1391
- }, set(e9) {
1392
- this[t5] = e9;
2139
+ return this[t7];
2140
+ }, set(e12) {
2141
+ this[t7] = e12;
1393
2142
  } };
1394
2143
  })();
1395
- return e4(n6, s3, { get() {
1396
- let t5 = e8.call(this);
1397
- return void 0 === t5 && (t5 = o6(this), (null !== t5 || this.hasUpdated) && r7.call(this, t5)), t5;
2144
+ return e5(n8, s4, { get() {
2145
+ let t7 = e11.call(this);
2146
+ return void 0 === t7 && (t7 = o10(this), (null !== t7 || this.hasUpdated) && r9.call(this, t7)), t7;
1398
2147
  } });
1399
2148
  }
1400
- return e4(n6, s3, { get() {
1401
- return o6(this);
2149
+ return e5(n8, s4, { get() {
2150
+ return o10(this);
1402
2151
  } });
1403
2152
  };
1404
2153
  }
1405
2154
 
1406
- // ../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query-assigned-elements.js
1407
- function o5(o6) {
1408
- return (e7, n6) => {
1409
- const { slot: r6, selector: s3 } = o6 ?? {}, c5 = "slot" + (r6 ? `[name=${r6}]` : ":not([name])");
1410
- return e4(e7, n6, { get() {
1411
- const t5 = this.renderRoot?.querySelector(c5), e8 = t5?.assignedElements(o6) ?? [];
1412
- return void 0 === s3 ? e8 : e8.filter((t6) => t6.matches(s3));
2155
+ // node_modules/@lit/reactive-element/decorators/query-assigned-elements.js
2156
+ function o6(o10) {
2157
+ return (e10, n8) => {
2158
+ const { slot: r8, selector: s4 } = o10 ?? {}, c6 = "slot" + (r8 ? `[name=${r8}]` : ":not([name])");
2159
+ return e5(e10, n8, { get() {
2160
+ const t7 = this.renderRoot?.querySelector(c6), e11 = t7?.assignedElements(o10) ?? [];
2161
+ return void 0 === s4 ? e11 : e11.filter((t8) => t8.matches(s4));
1413
2162
  } });
1414
2163
  };
1415
2164
  }
1416
2165
 
1417
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.6I2T3DLI.js
2166
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.6I2T3DLI.js
1418
2167
  var icon_button_styles_default = i`
1419
2168
  :host {
1420
2169
  display: inline-block;
@@ -1464,7 +2213,23 @@ var icon_button_styles_default = i`
1464
2213
  }
1465
2214
  `;
1466
2215
 
1467
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3Y6SB6QS.js
2216
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.QLXRCYS4.js
2217
+ var icon_styles_default = i`
2218
+ :host {
2219
+ display: inline-block;
2220
+ width: 1em;
2221
+ height: 1em;
2222
+ box-sizing: content-box !important;
2223
+ }
2224
+
2225
+ svg {
2226
+ display: block;
2227
+ height: 100%;
2228
+ width: 100%;
2229
+ }
2230
+ `;
2231
+
2232
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3Y6SB6QS.js
1468
2233
  var basePath = "";
1469
2234
  function setBasePath(path) {
1470
2235
  basePath = path;
@@ -1476,8 +2241,8 @@ function getBasePath(subpath = "") {
1476
2241
  if (configScript) {
1477
2242
  setBasePath(configScript.getAttribute("data-shoelace"));
1478
2243
  } else {
1479
- const fallbackScript = scripts.find((s3) => {
1480
- return /shoelace(\.min)?\.js($|\?)/.test(s3.src) || /shoelace-autoloader(\.min)?\.js($|\?)/.test(s3.src);
2244
+ const fallbackScript = scripts.find((s4) => {
2245
+ return /shoelace(\.min)?\.js($|\?)/.test(s4.src) || /shoelace-autoloader(\.min)?\.js($|\?)/.test(s4.src);
1481
2246
  });
1482
2247
  let path = "";
1483
2248
  if (fallbackScript) {
@@ -1489,14 +2254,14 @@ function getBasePath(subpath = "") {
1489
2254
  return basePath.replace(/\/$/, "") + (subpath ? `/${subpath.replace(/^\//, "")}` : ``);
1490
2255
  }
1491
2256
 
1492
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.P7ZG6EMR.js
2257
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.P7ZG6EMR.js
1493
2258
  var library = {
1494
2259
  name: "default",
1495
2260
  resolver: (name) => getBasePath(`assets/icons/${name}.svg`)
1496
2261
  };
1497
2262
  var library_default_default = library;
1498
2263
 
1499
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3TFKS637.js
2264
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3TFKS637.js
1500
2265
  var icons = {
1501
2266
  caret: `
1502
2267
  <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
@@ -1620,7 +2385,7 @@ var systemLibrary = {
1620
2385
  };
1621
2386
  var library_system_default = systemLibrary;
1622
2387
 
1623
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.ZL53POKZ.js
2388
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.ZL53POKZ.js
1624
2389
  var registry = [library_default_default, library_system_default];
1625
2390
  var watchedIcons = [];
1626
2391
  function watchIcon(icon) {
@@ -1633,23 +2398,7 @@ function getIconLibrary(name) {
1633
2398
  return registry.find((lib) => lib.name === name);
1634
2399
  }
1635
2400
 
1636
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.QLXRCYS4.js
1637
- var icon_styles_default = i`
1638
- :host {
1639
- display: inline-block;
1640
- width: 1em;
1641
- height: 1em;
1642
- box-sizing: content-box !important;
1643
- }
1644
-
1645
- svg {
1646
- display: block;
1647
- height: 100%;
1648
- width: 100%;
1649
- }
1650
- `;
1651
-
1652
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.B3BW2AY6.js
2401
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.KAW7D32O.js
1653
2402
  var __defProp3 = Object.defineProperty;
1654
2403
  var __defProps = Object.defineProperties;
1655
2404
  var __getOwnPropDesc3 = Object.getOwnPropertyDescriptor;
@@ -1657,48 +2406,36 @@ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
1657
2406
  var __getOwnPropSymbols = Object.getOwnPropertySymbols;
1658
2407
  var __hasOwnProp = Object.prototype.hasOwnProperty;
1659
2408
  var __propIsEnum = Object.prototype.propertyIsEnumerable;
2409
+ var __typeError3 = (msg2) => {
2410
+ throw TypeError(msg2);
2411
+ };
1660
2412
  var __defNormalProp3 = (obj, key, value) => key in obj ? __defProp3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
1661
- var __spreadValues = (a3, b3) => {
1662
- for (var prop in b3 || (b3 = {}))
1663
- if (__hasOwnProp.call(b3, prop))
1664
- __defNormalProp3(a3, prop, b3[prop]);
2413
+ var __spreadValues = (a5, b4) => {
2414
+ for (var prop in b4 || (b4 = {}))
2415
+ if (__hasOwnProp.call(b4, prop))
2416
+ __defNormalProp3(a5, prop, b4[prop]);
1665
2417
  if (__getOwnPropSymbols)
1666
- for (var prop of __getOwnPropSymbols(b3)) {
1667
- if (__propIsEnum.call(b3, prop))
1668
- __defNormalProp3(a3, prop, b3[prop]);
2418
+ for (var prop of __getOwnPropSymbols(b4)) {
2419
+ if (__propIsEnum.call(b4, prop))
2420
+ __defNormalProp3(a5, prop, b4[prop]);
1669
2421
  }
1670
- return a3;
2422
+ return a5;
1671
2423
  };
1672
- var __spreadProps = (a3, b3) => __defProps(a3, __getOwnPropDescs(b3));
2424
+ var __spreadProps = (a5, b4) => __defProps(a5, __getOwnPropDescs(b4));
1673
2425
  var __decorateClass = (decorators, target, key, kind) => {
1674
2426
  var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc3(target, key) : target;
1675
- for (var i4 = decorators.length - 1, decorator; i4 >= 0; i4--)
1676
- if (decorator = decorators[i4])
2427
+ for (var i8 = decorators.length - 1, decorator; i8 >= 0; i8--)
2428
+ if (decorator = decorators[i8])
1677
2429
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
1678
- if (kind && result)
1679
- __defProp3(target, key, result);
2430
+ if (kind && result) __defProp3(target, key, result);
1680
2431
  return result;
1681
2432
  };
1682
- var __accessCheck3 = (obj, member, msg) => {
1683
- if (!member.has(obj))
1684
- throw TypeError("Cannot " + msg);
1685
- };
1686
- var __privateGet3 = (obj, member, getter) => {
1687
- __accessCheck3(obj, member, "read from private field");
1688
- return getter ? getter.call(obj) : member.get(obj);
1689
- };
1690
- var __privateAdd3 = (obj, member, value) => {
1691
- if (member.has(obj))
1692
- throw TypeError("Cannot add the same private member more than once");
1693
- member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
1694
- };
1695
- var __privateSet3 = (obj, member, value, setter) => {
1696
- __accessCheck3(obj, member, "write to private field");
1697
- setter ? setter.call(obj, value) : member.set(obj, value);
1698
- return value;
1699
- };
2433
+ var __accessCheck3 = (obj, member, msg2) => member.has(obj) || __typeError3("Cannot " + msg2);
2434
+ var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
2435
+ var __privateAdd3 = (obj, member, value) => member.has(obj) ? __typeError3("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
2436
+ var __privateSet3 = (obj, member, value, setter) => (__accessCheck3(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
1700
2437
 
1701
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.CCJUT23E.js
2438
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GMYPQTFK.js
1702
2439
  function watch(propertyName, options) {
1703
2440
  const resolvedOptions = __spreadValues({
1704
2441
  waitUntilFirstUpdate: false
@@ -1724,7 +2461,7 @@ function watch(propertyName, options) {
1724
2461
  };
1725
2462
  }
1726
2463
 
1727
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.TUVJKY7S.js
2464
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.TUVJKY7S.js
1728
2465
  var component_styles_default = i`
1729
2466
  :host {
1730
2467
  box-sizing: border-box;
@@ -1741,9 +2478,9 @@ var component_styles_default = i`
1741
2478
  }
1742
2479
  `;
1743
2480
 
1744
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.NLWS5DN7.js
2481
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.EMG3ZSPT.js
1745
2482
  var _hasRecordedInitialProperties;
1746
- var ShoelaceElement = class extends h3 {
2483
+ var ShoelaceElement = class extends r4 {
1747
2484
  constructor() {
1748
2485
  super();
1749
2486
  __privateAdd3(this, _hasRecordedInitialProperties, false);
@@ -1812,7 +2549,7 @@ var ShoelaceElement = class extends h3 {
1812
2549
  }
1813
2550
  };
1814
2551
  _hasRecordedInitialProperties = /* @__PURE__ */ new WeakMap();
1815
- ShoelaceElement.version = "2.17.1";
2552
+ ShoelaceElement.version = "2.19.1";
1816
2553
  ShoelaceElement.dependencies = {};
1817
2554
  __decorateClass([
1818
2555
  n5()
@@ -1821,14 +2558,14 @@ __decorateClass([
1821
2558
  n5()
1822
2559
  ], ShoelaceElement.prototype, "lang", 2);
1823
2560
 
1824
- // ../../node_modules/lit/node_modules/lit-html/directive-helpers.js
1825
- var { I: et3 } = si;
1826
- var nt = (o6, t5) => void 0 === t5 ? void 0 !== o6?._$litType$ : o6?._$litType$ === t5;
1827
- var rt = (o6) => void 0 === o6.strings;
1828
- var ht = {};
1829
- var dt = (o6, t5 = ht) => o6._$AH = t5;
2561
+ // node_modules/lit-html/directive-helpers.js
2562
+ var { I: t5 } = Z;
2563
+ var e7 = (o10, t7) => void 0 === t7 ? void 0 !== o10?._$litType$ : o10?._$litType$ === t7;
2564
+ var f4 = (o10) => void 0 === o10.strings;
2565
+ var u4 = {};
2566
+ var m3 = (o10, t7 = u4) => o10._$AH = t7;
1830
2567
 
1831
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.O7VCMB7W.js
2568
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.5YPURQKE.js
1832
2569
  var CACHEABLE_ERROR = Symbol();
1833
2570
  var RETRYABLE_ERROR = Symbol();
1834
2571
  var parser;
@@ -1846,33 +2583,29 @@ var SlIcon = class extends ShoelaceElement {
1846
2583
  var _a4;
1847
2584
  let fileData;
1848
2585
  if (library2 == null ? void 0 : library2.spriteSheet) {
1849
- this.svg = ke`<svg part="svg">
2586
+ this.svg = x`<svg part="svg">
1850
2587
  <use part="use" href="${url}"></use>
1851
2588
  </svg>`;
1852
2589
  return this.svg;
1853
2590
  }
1854
2591
  try {
1855
2592
  fileData = await fetch(url, { mode: "cors" });
1856
- if (!fileData.ok)
1857
- return fileData.status === 410 ? CACHEABLE_ERROR : RETRYABLE_ERROR;
1858
- } catch (e7) {
2593
+ if (!fileData.ok) return fileData.status === 410 ? CACHEABLE_ERROR : RETRYABLE_ERROR;
2594
+ } catch (e10) {
1859
2595
  return RETRYABLE_ERROR;
1860
2596
  }
1861
2597
  try {
1862
2598
  const div = document.createElement("div");
1863
2599
  div.innerHTML = await fileData.text();
1864
2600
  const svg = div.firstElementChild;
1865
- if (((_a4 = svg == null ? void 0 : svg.tagName) == null ? void 0 : _a4.toLowerCase()) !== "svg")
1866
- return CACHEABLE_ERROR;
1867
- if (!parser)
1868
- parser = new DOMParser();
2601
+ if (((_a4 = svg == null ? void 0 : svg.tagName) == null ? void 0 : _a4.toLowerCase()) !== "svg") return CACHEABLE_ERROR;
2602
+ if (!parser) parser = new DOMParser();
1869
2603
  const doc = parser.parseFromString(svg.outerHTML, "text/html");
1870
2604
  const svgEl = doc.body.querySelector("svg");
1871
- if (!svgEl)
1872
- return CACHEABLE_ERROR;
2605
+ if (!svgEl) return CACHEABLE_ERROR;
1873
2606
  svgEl.part.add("svg");
1874
2607
  return document.adoptNode(svgEl);
1875
- } catch (e7) {
2608
+ } catch (e10) {
1876
2609
  return CACHEABLE_ERROR;
1877
2610
  }
1878
2611
  }
@@ -1936,7 +2669,7 @@ var SlIcon = class extends ShoelaceElement {
1936
2669
  if (url !== this.getIconSource().url) {
1937
2670
  return;
1938
2671
  }
1939
- if (nt(svg)) {
2672
+ if (e7(svg)) {
1940
2673
  this.svg = svg;
1941
2674
  if (library2) {
1942
2675
  await this.updateComplete;
@@ -1965,7 +2698,7 @@ var SlIcon = class extends ShoelaceElement {
1965
2698
  };
1966
2699
  SlIcon.styles = [component_styles_default, icon_styles_default];
1967
2700
  __decorateClass([
1968
- r5()
2701
+ r7()
1969
2702
  ], SlIcon.prototype, "svg", 2);
1970
2703
  __decorateClass([
1971
2704
  n5({ reflect: true })
@@ -1986,84 +2719,84 @@ __decorateClass([
1986
2719
  watch(["name", "src", "library"])
1987
2720
  ], SlIcon.prototype, "setIcon", 1);
1988
2721
 
1989
- // ../../node_modules/lit/node_modules/lit-html/directive.js
1990
- var t4 = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4, EVENT: 5, ELEMENT: 6 };
1991
- var e6 = (t5) => (...e7) => ({ _$litDirective$: t5, values: e7 });
1992
- var i3 = class {
1993
- constructor(t5) {
2722
+ // node_modules/lit-html/directive.js
2723
+ var t6 = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4, EVENT: 5, ELEMENT: 6 };
2724
+ var e8 = (t7) => (...e10) => ({ _$litDirective$: t7, values: e10 });
2725
+ var i5 = class {
2726
+ constructor(t7) {
1994
2727
  }
1995
2728
  get _$AU() {
1996
2729
  return this._$AM._$AU;
1997
2730
  }
1998
- _$AT(t5, e7, i4) {
1999
- this.t = t5, this._$AM = e7, this.i = i4;
2731
+ _$AT(t7, e10, i8) {
2732
+ this._$Ct = t7, this._$AM = e10, this._$Ci = i8;
2000
2733
  }
2001
- _$AS(t5, e7) {
2002
- return this.update(t5, e7);
2734
+ _$AS(t7, e10) {
2735
+ return this.update(t7, e10);
2003
2736
  }
2004
- update(t5, e7) {
2005
- return this.render(...e7);
2737
+ update(t7, e10) {
2738
+ return this.render(...e10);
2006
2739
  }
2007
2740
  };
2008
2741
 
2009
- // ../../node_modules/lit/node_modules/lit-html/directives/class-map.js
2010
- var Rt = e6(class extends i3 {
2011
- constructor(s3) {
2012
- if (super(s3), s3.type !== t4.ATTRIBUTE || "class" !== s3.name || s3.strings?.length > 2) throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.");
2742
+ // node_modules/lit-html/directives/class-map.js
2743
+ var e9 = e8(class extends i5 {
2744
+ constructor(t7) {
2745
+ if (super(t7), t7.type !== t6.ATTRIBUTE || "class" !== t7.name || t7.strings?.length > 2) throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.");
2013
2746
  }
2014
- render(t5) {
2015
- return " " + Object.keys(t5).filter((s3) => t5[s3]).join(" ") + " ";
2747
+ render(t7) {
2748
+ return " " + Object.keys(t7).filter((s4) => t7[s4]).join(" ") + " ";
2016
2749
  }
2017
- update(t5, [s3]) {
2750
+ update(s4, [i8]) {
2018
2751
  if (void 0 === this.st) {
2019
- this.st = /* @__PURE__ */ new Set(), void 0 !== t5.strings && (this.nt = new Set(t5.strings.join(" ").split(/\s/).filter((t6) => "" !== t6)));
2020
- for (const t6 in s3) s3[t6] && !this.nt?.has(t6) && this.st.add(t6);
2021
- return this.render(s3);
2752
+ this.st = /* @__PURE__ */ new Set(), void 0 !== s4.strings && (this.nt = new Set(s4.strings.join(" ").split(/\s/).filter((t7) => "" !== t7)));
2753
+ for (const t7 in i8) i8[t7] && !this.nt?.has(t7) && this.st.add(t7);
2754
+ return this.render(i8);
2022
2755
  }
2023
- const i4 = t5.element.classList;
2024
- for (const t6 of this.st) t6 in s3 || (i4.remove(t6), this.st.delete(t6));
2025
- for (const t6 in s3) {
2026
- const r6 = !!s3[t6];
2027
- r6 === this.st.has(t6) || this.nt?.has(t6) || (r6 ? (i4.add(t6), this.st.add(t6)) : (i4.remove(t6), this.st.delete(t6)));
2756
+ const r8 = s4.element.classList;
2757
+ for (const t7 of this.st) t7 in i8 || (r8.remove(t7), this.st.delete(t7));
2758
+ for (const t7 in i8) {
2759
+ const s5 = !!i8[t7];
2760
+ s5 === this.st.has(t7) || this.nt?.has(t7) || (s5 ? (r8.add(t7), this.st.add(t7)) : (r8.remove(t7), this.st.delete(t7)));
2028
2761
  }
2029
- return R;
2762
+ return T;
2030
2763
  }
2031
2764
  });
2032
2765
 
2033
- // ../../node_modules/lit/node_modules/lit-html/static.js
2034
- var $e = Symbol.for("");
2035
- var xe = (t5) => {
2036
- if (t5?.r === $e) return t5?._$litStatic$;
2766
+ // node_modules/lit-html/static.js
2767
+ var a4 = Symbol.for("");
2768
+ var o7 = (t7) => {
2769
+ if (t7?.r === a4) return t7?._$litStatic$;
2037
2770
  };
2038
- var er = (t5, ...r6) => ({ _$litStatic$: r6.reduce((r7, e7, a3) => r7 + ((t6) => {
2039
- if (void 0 !== t6._$litStatic$) return t6._$litStatic$;
2040
- throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t6}. Use 'unsafeStatic' to pass non-literal values, but
2771
+ var i6 = (t7, ...r8) => ({ _$litStatic$: r8.reduce((r9, e10, a5) => r9 + ((t8) => {
2772
+ if (void 0 !== t8._$litStatic$) return t8._$litStatic$;
2773
+ throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t8}. Use 'unsafeStatic' to pass non-literal values, but
2041
2774
  take care to ensure page security.`);
2042
- })(e7) + t5[a3 + 1], t5[0]), r: $e });
2043
- var Te = /* @__PURE__ */ new Map();
2044
- var Ee = (t5) => (r6, ...e7) => {
2045
- const a3 = e7.length;
2046
- let o6, s3;
2047
- const i4 = [], l3 = [];
2048
- let n6, u3 = 0, c5 = false;
2049
- for (; u3 < a3; ) {
2050
- for (n6 = r6[u3]; u3 < a3 && void 0 !== (s3 = e7[u3], o6 = xe(s3)); ) n6 += o6 + r6[++u3], c5 = true;
2051
- u3 !== a3 && l3.push(s3), i4.push(n6), u3++;
2052
- }
2053
- if (u3 === a3 && i4.push(r6[a3]), c5) {
2054
- const t6 = i4.join("$$lit$$");
2055
- void 0 === (r6 = Te.get(t6)) && (i4.raw = i4, Te.set(t6, r6 = i4)), e7 = l3;
2056
- }
2057
- return t5(r6, ...e7);
2775
+ })(e10) + t7[a5 + 1], t7[0]), r: a4 });
2776
+ var l4 = /* @__PURE__ */ new Map();
2777
+ var n6 = (t7) => (r8, ...e10) => {
2778
+ const a5 = e10.length;
2779
+ let s4, i8;
2780
+ const n8 = [], u6 = [];
2781
+ let c6, $4 = 0, f5 = false;
2782
+ for (; $4 < a5; ) {
2783
+ for (c6 = r8[$4]; $4 < a5 && void 0 !== (i8 = e10[$4], s4 = o7(i8)); ) c6 += s4 + r8[++$4], f5 = true;
2784
+ $4 !== a5 && u6.push(i8), n8.push(c6), $4++;
2785
+ }
2786
+ if ($4 === a5 && n8.push(r8[a5]), f5) {
2787
+ const t8 = n8.join("$$lit$$");
2788
+ void 0 === (r8 = l4.get(t8)) && (n8.raw = n8, l4.set(t8, r8 = n8)), e10 = u6;
2789
+ }
2790
+ return t7(r8, ...e10);
2058
2791
  };
2059
- var ke3 = Ee(ke);
2060
- var Oe3 = Ee(Oe);
2061
- var Se3 = Ee(Se);
2792
+ var u5 = n6(x);
2793
+ var c5 = n6(b2);
2794
+ var $3 = n6(w);
2062
2795
 
2063
- // ../../node_modules/lit/node_modules/lit-html/directives/if-defined.js
2064
- var to = (t5) => t5 ?? D;
2796
+ // node_modules/lit-html/directives/if-defined.js
2797
+ var o8 = (o10) => o10 ?? E;
2065
2798
 
2066
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.AYP3HPB7.js
2799
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.MMEGYRNV.js
2067
2800
  var SlIconButton = class extends ShoelaceElement {
2068
2801
  constructor() {
2069
2802
  super(...arguments);
@@ -2099,22 +2832,22 @@ var SlIconButton = class extends ShoelaceElement {
2099
2832
  }
2100
2833
  render() {
2101
2834
  const isLink = this.href ? true : false;
2102
- const tag = isLink ? er`a` : er`button`;
2103
- return ke3`
2835
+ const tag = isLink ? i6`a` : i6`button`;
2836
+ return u5`
2104
2837
  <${tag}
2105
2838
  part="base"
2106
- class=${Rt({
2839
+ class=${e9({
2107
2840
  "icon-button": true,
2108
2841
  "icon-button--disabled": !isLink && this.disabled,
2109
2842
  "icon-button--focused": this.hasFocus
2110
2843
  })}
2111
- ?disabled=${to(isLink ? void 0 : this.disabled)}
2112
- type=${to(isLink ? void 0 : "button")}
2113
- href=${to(isLink ? this.href : void 0)}
2114
- target=${to(isLink ? this.target : void 0)}
2115
- download=${to(isLink ? this.download : void 0)}
2116
- rel=${to(isLink && this.target ? "noreferrer noopener" : void 0)}
2117
- role=${to(isLink ? void 0 : "button")}
2844
+ ?disabled=${o8(isLink ? void 0 : this.disabled)}
2845
+ type=${o8(isLink ? void 0 : "button")}
2846
+ href=${o8(isLink ? this.href : void 0)}
2847
+ target=${o8(isLink ? this.target : void 0)}
2848
+ download=${o8(isLink ? this.download : void 0)}
2849
+ rel=${o8(isLink && this.target ? "noreferrer noopener" : void 0)}
2850
+ role=${o8(isLink ? void 0 : "button")}
2118
2851
  aria-disabled=${this.disabled ? "true" : "false"}
2119
2852
  aria-label="${this.label}"
2120
2853
  tabindex=${this.disabled ? "-1" : "0"}
@@ -2124,9 +2857,9 @@ var SlIconButton = class extends ShoelaceElement {
2124
2857
  >
2125
2858
  <sl-icon
2126
2859
  class="icon-button__icon"
2127
- name=${to(this.name)}
2128
- library=${to(this.library)}
2129
- src=${to(this.src)}
2860
+ name=${o8(this.name)}
2861
+ library=${o8(this.library)}
2862
+ src=${o8(this.src)}
2130
2863
  aria-hidden="true"
2131
2864
  ></sl-icon>
2132
2865
  </${tag}>
@@ -2136,10 +2869,10 @@ var SlIconButton = class extends ShoelaceElement {
2136
2869
  SlIconButton.styles = [component_styles_default, icon_button_styles_default];
2137
2870
  SlIconButton.dependencies = { "sl-icon": SlIcon };
2138
2871
  __decorateClass([
2139
- e5(".icon-button")
2872
+ e6(".icon-button")
2140
2873
  ], SlIconButton.prototype, "button", 2);
2141
2874
  __decorateClass([
2142
- r5()
2875
+ r7()
2143
2876
  ], SlIconButton.prototype, "hasFocus", 2);
2144
2877
  __decorateClass([
2145
2878
  n5()
@@ -2166,7 +2899,7 @@ __decorateClass([
2166
2899
  n5({ type: Boolean, reflect: true })
2167
2900
  ], SlIconButton.prototype, "disabled", 2);
2168
2901
 
2169
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.FXXKMG2P.js
2902
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.FXXKMG2P.js
2170
2903
  var option_styles_default = i`
2171
2904
  :host {
2172
2905
  display: block;
@@ -2253,34 +2986,41 @@ var option_styles_default = i`
2253
2986
  }
2254
2987
  `;
2255
2988
 
2256
- // ../../node_modules/@shoelace-style/localize/dist/index.js
2989
+ // node_modules/@shoelace-style/localize/dist/index.js
2257
2990
  var connectedElements = /* @__PURE__ */ new Set();
2258
- var documentElementObserver = new MutationObserver(update);
2259
2991
  var translations = /* @__PURE__ */ new Map();
2260
- var documentDirection = document.documentElement.dir || "ltr";
2261
- var documentLanguage = document.documentElement.lang || navigator.language;
2262
2992
  var fallback;
2263
- documentElementObserver.observe(document.documentElement, {
2264
- attributes: true,
2265
- attributeFilter: ["dir", "lang"]
2266
- });
2993
+ var documentDirection = "ltr";
2994
+ var documentLanguage = "en";
2995
+ var isClient = typeof MutationObserver !== "undefined" && typeof document !== "undefined" && typeof document.documentElement !== "undefined";
2996
+ if (isClient) {
2997
+ const documentElementObserver = new MutationObserver(update);
2998
+ documentDirection = document.documentElement.dir || "ltr";
2999
+ documentLanguage = document.documentElement.lang || navigator.language;
3000
+ documentElementObserver.observe(document.documentElement, {
3001
+ attributes: true,
3002
+ attributeFilter: ["dir", "lang"]
3003
+ });
3004
+ }
2267
3005
  function registerTranslation(...translation2) {
2268
- translation2.map((t5) => {
2269
- const code = t5.$code.toLowerCase();
3006
+ translation2.map((t7) => {
3007
+ const code = t7.$code.toLowerCase();
2270
3008
  if (translations.has(code)) {
2271
- translations.set(code, Object.assign(Object.assign({}, translations.get(code)), t5));
3009
+ translations.set(code, Object.assign(Object.assign({}, translations.get(code)), t7));
2272
3010
  } else {
2273
- translations.set(code, t5);
3011
+ translations.set(code, t7);
2274
3012
  }
2275
3013
  if (!fallback) {
2276
- fallback = t5;
3014
+ fallback = t7;
2277
3015
  }
2278
3016
  });
2279
3017
  update();
2280
3018
  }
2281
3019
  function update() {
2282
- documentDirection = document.documentElement.dir || "ltr";
2283
- documentLanguage = document.documentElement.lang || navigator.language;
3020
+ if (isClient) {
3021
+ documentDirection = document.documentElement.dir || "ltr";
3022
+ documentLanguage = document.documentElement.lang || navigator.language;
3023
+ }
2284
3024
  [...connectedElements.keys()].map((el) => {
2285
3025
  if (typeof el.requestUpdate === "function") {
2286
3026
  el.requestUpdate();
@@ -2353,7 +3093,7 @@ var LocalizeController = class {
2353
3093
  }
2354
3094
  };
2355
3095
 
2356
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.MAS2SHYD.js
3096
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.7BTDLTNI.js
2357
3097
  var translation = {
2358
3098
  $code: "en",
2359
3099
  $name: "English",
@@ -2370,10 +3110,8 @@ var translation = {
2370
3110
  loading: "Loading",
2371
3111
  nextSlide: "Next slide",
2372
3112
  numOptionsSelected: (num) => {
2373
- if (num === 0)
2374
- return "No options selected";
2375
- if (num === 1)
2376
- return "1 option selected";
3113
+ if (num === 0) return "No options selected";
3114
+ if (num === 1) return "1 option selected";
2377
3115
  return `${num} options selected`;
2378
3116
  },
2379
3117
  previousSlide: "Previous slide",
@@ -2390,12 +3128,12 @@ var translation = {
2390
3128
  registerTranslation(translation);
2391
3129
  var en_default = translation;
2392
3130
 
2393
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.WLV3FVBR.js
3131
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.6CTB5ZDJ.js
2394
3132
  var LocalizeController2 = class extends LocalizeController {
2395
3133
  };
2396
3134
  registerTranslation(en_default);
2397
3135
 
2398
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.4L6M7RA3.js
3136
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.W4UKBSNN.js
2399
3137
  var SlOption = class extends ShoelaceElement {
2400
3138
  constructor() {
2401
3139
  super(...arguments);
@@ -2412,15 +3150,12 @@ var SlOption = class extends ShoelaceElement {
2412
3150
  this.setAttribute("aria-selected", "false");
2413
3151
  }
2414
3152
  handleDefaultSlotChange() {
2415
- const textLabel = this.getTextLabel();
2416
- if (typeof this.cachedTextLabel === "undefined") {
2417
- this.cachedTextLabel = textLabel;
2418
- return;
2419
- }
2420
- if (textLabel !== this.cachedTextLabel) {
2421
- this.cachedTextLabel = textLabel;
2422
- this.emit("slotchange", { bubbles: true, composed: false, cancelable: false });
2423
- }
3153
+ customElements.whenDefined("sl-select").then(() => {
3154
+ const controller = this.closest("sl-select");
3155
+ if (controller) {
3156
+ controller.handleDefaultSlotChange();
3157
+ }
3158
+ });
2424
3159
  }
2425
3160
  handleMouseEnter() {
2426
3161
  this.hasHover = true;
@@ -2460,10 +3195,10 @@ var SlOption = class extends ShoelaceElement {
2460
3195
  return label.trim();
2461
3196
  }
2462
3197
  render() {
2463
- return ke`
3198
+ return x`
2464
3199
  <div
2465
3200
  part="base"
2466
- class=${Rt({
3201
+ class=${e9({
2467
3202
  option: true,
2468
3203
  "option--current": this.current,
2469
3204
  "option--disabled": this.disabled,
@@ -2484,16 +3219,16 @@ var SlOption = class extends ShoelaceElement {
2484
3219
  SlOption.styles = [component_styles_default, option_styles_default];
2485
3220
  SlOption.dependencies = { "sl-icon": SlIcon };
2486
3221
  __decorateClass([
2487
- e5(".option__label")
3222
+ e6(".option__label")
2488
3223
  ], SlOption.prototype, "defaultSlot", 2);
2489
3224
  __decorateClass([
2490
- r5()
3225
+ r7()
2491
3226
  ], SlOption.prototype, "current", 2);
2492
3227
  __decorateClass([
2493
- r5()
3228
+ r7()
2494
3229
  ], SlOption.prototype, "selected", 2);
2495
3230
  __decorateClass([
2496
- r5()
3231
+ r7()
2497
3232
  ], SlOption.prototype, "hasHover", 2);
2498
3233
  __decorateClass([
2499
3234
  n5({ reflect: true })
@@ -2511,19 +3246,19 @@ __decorateClass([
2511
3246
  watch("value")
2512
3247
  ], SlOption.prototype, "handleValueChange", 1);
2513
3248
 
2514
- // ../../node_modules/bootstrap-icons/icons/plus.svg
3249
+ // node_modules/bootstrap-icons/icons/plus.svg
2515
3250
  var plus_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus" viewBox="0 0 16 16">%0A <path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/>%0A</svg>';
2516
3251
 
2517
- // ../../node_modules/bootstrap-icons/icons/slash-circle.svg
3252
+ // node_modules/bootstrap-icons/icons/slash-circle.svg
2518
3253
  var slash_circle_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-slash-circle" viewBox="0 0 16 16">%0A <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/>%0A <path d="M11.354 4.646a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708"/>%0A</svg>';
2519
3254
 
2520
- // ../../node_modules/bootstrap-icons/icons/check-circle.svg
3255
+ // node_modules/bootstrap-icons/icons/check-circle.svg
2521
3256
  var check_circle_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check-circle" viewBox="0 0 16 16">%0A <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/>%0A <path d="m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05"/>%0A</svg>';
2522
3257
 
2523
- // ../../node_modules/bootstrap-icons/icons/x.svg
3258
+ // node_modules/bootstrap-icons/icons/x.svg
2524
3259
  var x_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x" viewBox="0 0 16 16">%0A <path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/>%0A</svg>';
2525
3260
 
2526
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GGT72J62.js
3261
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GGT72J62.js
2527
3262
  var input_styles_default = i`
2528
3263
  :host {
2529
3264
  display: block;
@@ -2812,7 +3547,7 @@ var input_styles_default = i`
2812
3547
  }
2813
3548
  `;
2814
3549
 
2815
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GI7VDIWX.js
3550
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GI7VDIWX.js
2816
3551
  var defaultValue = (propertyName = "value") => (proto, key) => {
2817
3552
  const ctor = proto.constructor;
2818
3553
  const attributeChangedCallback = ctor.prototype.attributeChangedCallback;
@@ -2832,7 +3567,7 @@ var defaultValue = (propertyName = "value") => (proto, key) => {
2832
3567
  };
2833
3568
  };
2834
3569
 
2835
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.SI4ACBFK.js
3570
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.SI4ACBFK.js
2836
3571
  var form_control_styles_default = i`
2837
3572
  .form-control .form-control__label {
2838
3573
  display: none;
@@ -2891,7 +3626,7 @@ var form_control_styles_default = i`
2891
3626
  }
2892
3627
  `;
2893
3628
 
2894
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.2RCF7SLU.js
3629
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3RPBFEDE.js
2895
3630
  var formCollections = /* @__PURE__ */ new WeakMap();
2896
3631
  var reportValidityOverloads = /* @__PURE__ */ new WeakMap();
2897
3632
  var checkValidityOverloads = /* @__PURE__ */ new WeakMap();
@@ -3048,8 +3783,7 @@ var FormControlController = class {
3048
3783
  }
3049
3784
  }
3050
3785
  detachForm() {
3051
- if (!this.form)
3052
- return;
3786
+ if (!this.form) return;
3053
3787
  const formCollection = formCollections.get(this.form);
3054
3788
  if (!formCollection) {
3055
3789
  return;
@@ -3182,7 +3916,7 @@ var customErrorValidityState = Object.freeze(__spreadProps(__spreadValues({}, va
3182
3916
  customError: true
3183
3917
  }));
3184
3918
 
3185
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.NYIIDP5N.js
3919
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.NYIIDP5N.js
3186
3920
  var HasSlotController = class {
3187
3921
  constructor(host, ...slotNames) {
3188
3922
  this.slotNames = [];
@@ -3227,28 +3961,28 @@ var HasSlotController = class {
3227
3961
  }
3228
3962
  };
3229
3963
 
3230
- // ../../node_modules/lit/node_modules/lit-html/directives/live.js
3231
- var Ft = e6(class extends i3 {
3232
- constructor(r6) {
3233
- if (super(r6), r6.type !== t4.PROPERTY && r6.type !== t4.ATTRIBUTE && r6.type !== t4.BOOLEAN_ATTRIBUTE) throw Error("The `live` directive is not allowed on child or event bindings");
3234
- if (!rt(r6)) throw Error("`live` bindings can only contain a single expression");
3235
- }
3236
- render(r6) {
3237
- return r6;
3238
- }
3239
- update(r6, [e7]) {
3240
- if (e7 === R || e7 === D) return e7;
3241
- const i4 = r6.element, n6 = r6.name;
3242
- if (r6.type === t4.PROPERTY) {
3243
- if (e7 === i4[n6]) return R;
3244
- } else if (r6.type === t4.BOOLEAN_ATTRIBUTE) {
3245
- if (!!e7 === i4.hasAttribute(n6)) return R;
3246
- } else if (r6.type === t4.ATTRIBUTE && i4.getAttribute(n6) === e7 + "") return R;
3247
- return dt(r6), e7;
3964
+ // node_modules/lit-html/directives/live.js
3965
+ var l5 = e8(class extends i5 {
3966
+ constructor(r8) {
3967
+ if (super(r8), r8.type !== t6.PROPERTY && r8.type !== t6.ATTRIBUTE && r8.type !== t6.BOOLEAN_ATTRIBUTE) throw Error("The `live` directive is not allowed on child or event bindings");
3968
+ if (!f4(r8)) throw Error("`live` bindings can only contain a single expression");
3969
+ }
3970
+ render(r8) {
3971
+ return r8;
3972
+ }
3973
+ update(i8, [t7]) {
3974
+ if (t7 === T || t7 === E) return t7;
3975
+ const o10 = i8.element, l6 = i8.name;
3976
+ if (i8.type === t6.PROPERTY) {
3977
+ if (t7 === o10[l6]) return T;
3978
+ } else if (i8.type === t6.BOOLEAN_ATTRIBUTE) {
3979
+ if (!!t7 === o10.hasAttribute(l6)) return T;
3980
+ } else if (i8.type === t6.ATTRIBUTE && o10.getAttribute(l6) === t7 + "") return T;
3981
+ return m3(i8), t7;
3248
3982
  }
3249
3983
  });
3250
3984
 
3251
- // ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.4RFB4FGM.js
3985
+ // node_modules/@shoelace-style/shoelace/dist/chunks/chunk.22JN5JYK.js
3252
3986
  var SlInput = class extends ShoelaceElement {
3253
3987
  constructor() {
3254
3988
  super(...arguments);
@@ -3444,10 +4178,10 @@ var SlInput = class extends ShoelaceElement {
3444
4178
  const hasHelpText = this.helpText ? true : !!hasHelpTextSlot;
3445
4179
  const hasClearIcon = this.clearable && !this.disabled && !this.readonly;
3446
4180
  const isClearIconVisible = hasClearIcon && (typeof this.value === "number" || this.value.length > 0);
3447
- return ke`
4181
+ return x`
3448
4182
  <div
3449
4183
  part="form-control"
3450
- class=${Rt({
4184
+ class=${e9({
3451
4185
  "form-control": true,
3452
4186
  "form-control--small": this.size === "small",
3453
4187
  "form-control--medium": this.size === "medium",
@@ -3468,7 +4202,7 @@ var SlInput = class extends ShoelaceElement {
3468
4202
  <div part="form-control-input" class="form-control-input">
3469
4203
  <div
3470
4204
  part="base"
3471
- class=${Rt({
4205
+ class=${e9({
3472
4206
  input: true,
3473
4207
  // Sizes
3474
4208
  "input--small": this.size === "small",
@@ -3494,25 +4228,25 @@ var SlInput = class extends ShoelaceElement {
3494
4228
  class="input__control"
3495
4229
  type=${this.type === "password" && this.passwordVisible ? "text" : this.type}
3496
4230
  title=${this.title}
3497
- name=${to(this.name)}
4231
+ name=${o8(this.name)}
3498
4232
  ?disabled=${this.disabled}
3499
4233
  ?readonly=${this.readonly}
3500
4234
  ?required=${this.required}
3501
- placeholder=${to(this.placeholder)}
3502
- minlength=${to(this.minlength)}
3503
- maxlength=${to(this.maxlength)}
3504
- min=${to(this.min)}
3505
- max=${to(this.max)}
3506
- step=${to(this.step)}
3507
- .value=${Ft(this.value)}
3508
- autocapitalize=${to(this.autocapitalize)}
3509
- autocomplete=${to(this.autocomplete)}
3510
- autocorrect=${to(this.autocorrect)}
4235
+ placeholder=${o8(this.placeholder)}
4236
+ minlength=${o8(this.minlength)}
4237
+ maxlength=${o8(this.maxlength)}
4238
+ min=${o8(this.min)}
4239
+ max=${o8(this.max)}
4240
+ step=${o8(this.step)}
4241
+ .value=${l5(this.value)}
4242
+ autocapitalize=${o8(this.autocapitalize)}
4243
+ autocomplete=${o8(this.autocomplete)}
4244
+ autocorrect=${o8(this.autocorrect)}
3511
4245
  ?autofocus=${this.autofocus}
3512
4246
  spellcheck=${this.spellcheck}
3513
- pattern=${to(this.pattern)}
3514
- enterkeyhint=${to(this.enterkeyhint)}
3515
- inputmode=${to(this.inputmode)}
4247
+ pattern=${o8(this.pattern)}
4248
+ enterkeyhint=${o8(this.enterkeyhint)}
4249
+ inputmode=${o8(this.inputmode)}
3516
4250
  aria-describedby="help-text"
3517
4251
  @change=${this.handleChange}
3518
4252
  @input=${this.handleInput}
@@ -3522,7 +4256,7 @@ var SlInput = class extends ShoelaceElement {
3522
4256
  @blur=${this.handleBlur}
3523
4257
  />
3524
4258
 
3525
- ${isClearIconVisible ? ke`
4259
+ ${isClearIconVisible ? x`
3526
4260
  <button
3527
4261
  part="clear-button"
3528
4262
  class="input__clear"
@@ -3536,7 +4270,7 @@ var SlInput = class extends ShoelaceElement {
3536
4270
  </slot>
3537
4271
  </button>
3538
4272
  ` : ""}
3539
- ${this.passwordToggle && !this.disabled ? ke`
4273
+ ${this.passwordToggle && !this.disabled ? x`
3540
4274
  <button
3541
4275
  part="password-toggle-button"
3542
4276
  class="input__password-toggle"
@@ -3545,11 +4279,11 @@ var SlInput = class extends ShoelaceElement {
3545
4279
  @click=${this.handlePasswordToggle}
3546
4280
  tabindex="-1"
3547
4281
  >
3548
- ${this.passwordVisible ? ke`
4282
+ ${this.passwordVisible ? x`
3549
4283
  <slot name="show-password-icon">
3550
4284
  <sl-icon name="eye-slash" library="system"></sl-icon>
3551
4285
  </slot>
3552
- ` : ke`
4286
+ ` : x`
3553
4287
  <slot name="hide-password-icon">
3554
4288
  <sl-icon name="eye" library="system"></sl-icon>
3555
4289
  </slot>
@@ -3578,10 +4312,10 @@ var SlInput = class extends ShoelaceElement {
3578
4312
  SlInput.styles = [component_styles_default, form_control_styles_default, input_styles_default];
3579
4313
  SlInput.dependencies = { "sl-icon": SlIcon };
3580
4314
  __decorateClass([
3581
- e5(".input__control")
4315
+ e6(".input__control")
3582
4316
  ], SlInput.prototype, "input", 2);
3583
4317
  __decorateClass([
3584
- r5()
4318
+ r7()
3585
4319
  ], SlInput.prototype, "hasFocus", 2);
3586
4320
  __decorateClass([
3587
4321
  n5()
@@ -3696,42 +4430,42 @@ __decorateClass([
3696
4430
  watch("value", { waitUntilFirstUpdate: true })
3697
4431
  ], SlInput.prototype, "handleValueChange", 1);
3698
4432
 
3699
- // ../../node_modules/bootstrap-icons/icons/chevron-down.svg
4433
+ // node_modules/bootstrap-icons/icons/chevron-down.svg
3700
4434
  var chevron_down_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16">%0A <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/>%0A</svg>';
3701
4435
 
3702
- // ../../node_modules/lit/node_modules/lit-html/directives/style-map.js
3703
- var ee = "important";
3704
- var ie = " !" + ee;
3705
- var se = e6(class extends i3 {
3706
- constructor(e7) {
3707
- if (super(e7), e7.type !== t4.ATTRIBUTE || "style" !== e7.name || e7.strings?.length > 2) throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.");
3708
- }
3709
- render(t5) {
3710
- return Object.keys(t5).reduce((e7, r6) => {
3711
- const s3 = t5[r6];
3712
- return null == s3 ? e7 : e7 + `${r6 = r6.includes("-") ? r6 : r6.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g, "-$&").toLowerCase()}:${s3};`;
4436
+ // node_modules/lit-html/directives/style-map.js
4437
+ var n7 = "important";
4438
+ var i7 = " !" + n7;
4439
+ var o9 = e8(class extends i5 {
4440
+ constructor(t7) {
4441
+ if (super(t7), t7.type !== t6.ATTRIBUTE || "style" !== t7.name || t7.strings?.length > 2) throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.");
4442
+ }
4443
+ render(t7) {
4444
+ return Object.keys(t7).reduce((e10, r8) => {
4445
+ const s4 = t7[r8];
4446
+ return null == s4 ? e10 : e10 + `${r8 = r8.includes("-") ? r8 : r8.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g, "-$&").toLowerCase()}:${s4};`;
3713
4447
  }, "");
3714
4448
  }
3715
- update(t5, [e7]) {
3716
- const { style: r6 } = t5.element;
3717
- if (void 0 === this.ft) return this.ft = new Set(Object.keys(e7)), this.render(e7);
3718
- for (const t6 of this.ft) null == e7[t6] && (this.ft.delete(t6), t6.includes("-") ? r6.removeProperty(t6) : r6[t6] = null);
3719
- for (const t6 in e7) {
3720
- const s3 = e7[t6];
3721
- if (null != s3) {
3722
- this.ft.add(t6);
3723
- const e8 = "string" == typeof s3 && s3.endsWith(ie);
3724
- t6.includes("-") || e8 ? r6.setProperty(t6, e8 ? s3.slice(0, -11) : s3, e8 ? ee : "") : r6[t6] = s3;
4449
+ update(e10, [r8]) {
4450
+ const { style: s4 } = e10.element;
4451
+ if (void 0 === this.ft) return this.ft = new Set(Object.keys(r8)), this.render(r8);
4452
+ for (const t7 of this.ft) null == r8[t7] && (this.ft.delete(t7), t7.includes("-") ? s4.removeProperty(t7) : s4[t7] = null);
4453
+ for (const t7 in r8) {
4454
+ const e11 = r8[t7];
4455
+ if (null != e11) {
4456
+ this.ft.add(t7);
4457
+ const r9 = "string" == typeof e11 && e11.endsWith(i7);
4458
+ t7.includes("-") || r9 ? s4.setProperty(t7, r9 ? e11.slice(0, -11) : e11, r9 ? n7 : "") : s4[t7] = e11;
3725
4459
  }
3726
4460
  }
3727
- return R;
4461
+ return T;
3728
4462
  }
3729
4463
  });
3730
4464
 
3731
4465
  // src/lib/combobox.ts
3732
4466
  var _inputEl_dec, _hideEl_dec, _label_dec, _type_dec, _required_dec, _disabled_dec, _autosize_dec, _placement_dec, _separator_dec, _fixLength_dec, _helpText_dec, _suggestions_dec, _open_dec, _emptyValue_dec, _placeholder_dec, _multiple_dec, _inputDisabled_dec, _active_dec, _autocomplete_dec, _optionElements_dec, _slotElement_dec, _toggleButton_dec, _input_dec, _defaultValue_dec, _value_dec, _a2, _Combobox_decorators, _init2, _value, _defaultValue, _input, _toggleButton, _slotElement, _optionElements, _autocomplete, _active, _inputDisabled, _multiple, _placeholder, _emptyValue, _open, _suggestions, _helpText, _fixLength, _separator, _placement, _autosize, _disabled, _required, _type, _label, _hideEl, _inputEl;
3733
- _Combobox_decorators = [t3("ww-combobox")];
3734
- var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })], _defaultValue_dec = [n5({ attribute: false })], _input_dec = [e5("input")], _toggleButton_dec = [e5("#toggle")], _slotElement_dec = [e5("slot:not([name])")], _optionElements_dec = [o5()], _autocomplete_dec = [n5({ type: String, attribute: true })], _active_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _inputDisabled_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _multiple_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _placeholder_dec = [n5({ type: String })], _emptyValue_dec = [n5({ type: String, attribute: true, reflect: true })], _open_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _suggestions_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _helpText_dec = [n5({ type: String, attribute: "help-text" })], _fixLength_dec = [n5({ type: Number, attribute: true })], _separator_dec = [n5({ type: String, attribute: true })], _placement_dec = [n5({ type: String, attribute: true })], _autosize_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _disabled_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _required_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _type_dec = [n5({ type: String, attribute: true, reflect: true })], _label_dec = [n5({ type: String, attribute: true, reflect: true })], _hideEl_dec = [e5("#hide")], _inputEl_dec = [e5("input")], _a2) {
4467
+ _Combobox_decorators = [t4("ww-combobox")];
4468
+ var Combobox = class extends (_a2 = r4, _value_dec = [n5({ attribute: false })], _defaultValue_dec = [n5({ attribute: false })], _input_dec = [e6("input")], _toggleButton_dec = [e6("#toggle")], _slotElement_dec = [e6("slot:not([name])")], _optionElements_dec = [o6()], _autocomplete_dec = [n5({ type: String, attribute: true })], _active_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _inputDisabled_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _multiple_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _placeholder_dec = [n5({ type: String })], _emptyValue_dec = [n5({ type: String, attribute: true, reflect: true })], _open_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _suggestions_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _helpText_dec = [n5({ type: String, attribute: "help-text" })], _fixLength_dec = [n5({ type: Number, attribute: true })], _separator_dec = [n5({ type: String, attribute: true })], _placement_dec = [n5({ type: String, attribute: true })], _autosize_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _disabled_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _required_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _type_dec = [n5({ type: String, attribute: true, reflect: true })], _label_dec = [n5({ type: String, attribute: true, reflect: true })], _hideEl_dec = [e6("#hide")], _inputEl_dec = [e6("input")], _a2) {
3735
4469
  constructor() {
3736
4470
  super();
3737
4471
  __publicField(this, "tabIndex", 0);
@@ -3764,8 +4498,8 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3764
4498
  __privateAdd(this, _required, __runInitializers(_init2, 88, this, false)), __runInitializers(_init2, 91, this);
3765
4499
  __privateAdd(this, _type, __runInitializers(_init2, 92, this)), __runInitializers(_init2, 95, this);
3766
4500
  __privateAdd(this, _label, __runInitializers(_init2, 96, this)), __runInitializers(_init2, 99, this);
3767
- __publicField(this, "handleOptionClick", (e7) => {
3768
- const option = e7.target.closest("sl-option");
4501
+ __publicField(this, "handleOptionClick", (e10) => {
4502
+ const option = e10.target.closest("sl-option");
3769
4503
  if (option) {
3770
4504
  this.value = option.value;
3771
4505
  this.focus();
@@ -3776,14 +4510,14 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3776
4510
  });
3777
4511
  __privateAdd(this, _hideEl, __runInitializers(_init2, 100, this)), __runInitializers(_init2, 103, this);
3778
4512
  __privateAdd(this, _inputEl, __runInitializers(_init2, 104, this)), __runInitializers(_init2, 107, this);
3779
- this.addEventListener("focus", (e7) => {
4513
+ this.addEventListener("focus", (e10) => {
3780
4514
  this.active = true;
3781
4515
  this.open = true;
3782
4516
  });
3783
- this.addEventListener("focusout", (e7) => {
4517
+ this.addEventListener("focusout", (e10) => {
3784
4518
  this.active = this.open = false;
3785
4519
  });
3786
- this.addEventListener("blur", (e7) => {
4520
+ this.addEventListener("blur", (e10) => {
3787
4521
  this.active = this.open = false;
3788
4522
  });
3789
4523
  this.value = this.defaultValue = this.multiple ? [] : "";
@@ -3816,9 +4550,9 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3816
4550
  getForm() {
3817
4551
  return this.input.form;
3818
4552
  }
3819
- handleTextInput(e7) {
3820
- const input = e7.target;
3821
- e7.preventDefault();
4553
+ handleTextInput(e10) {
4554
+ const input = e10.target;
4555
+ e10.preventDefault();
3822
4556
  if (!this.multiple && this.fixLength && input.value.length < this.fixLength) {
3823
4557
  input.value = this.value;
3824
4558
  } else if (!this.multiple) {
@@ -3832,10 +4566,10 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3832
4566
  this.dispatchInput();
3833
4567
  this.setValidity(this.validity.valid);
3834
4568
  }
3835
- handleInputKeydown(e7) {
3836
- const input = e7.target;
3837
- if (this.multiple && e7.key === "Backspace" && input.selectionStart === 0 && input.selectionEnd === 0) {
3838
- e7.preventDefault();
4569
+ handleInputKeydown(e10) {
4570
+ const input = e10.target;
4571
+ if (this.multiple && e10.key === "Backspace" && input.selectionStart === 0 && input.selectionEnd === 0) {
4572
+ e10.preventDefault();
3839
4573
  this.value = this.valueList.slice(0, -1);
3840
4574
  }
3841
4575
  this.requestUpdate();
@@ -3871,11 +4605,11 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3871
4605
  return value !== this.emptyValue ? value : "";
3872
4606
  }
3873
4607
  render() {
3874
- const input = ke`
4608
+ const input = x`
3875
4609
  <input
3876
4610
  part="input"
3877
4611
  type=${this.type}
3878
- size=${to(this.inputSize)}
4612
+ size=${o8(this.inputSize)}
3879
4613
  .value=${this.inputValue}
3880
4614
  placeholder=${this.multiple && this.valueList.length > 1 ? "" : this.placeholder}
3881
4615
  ?disabled=${this.disabled || this.inputDisabled}
@@ -3883,19 +4617,19 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3883
4617
  @change=${this.dispatchChange}
3884
4618
  @keydown=${this.handleInputKeydown}
3885
4619
  autocomplete=${this.autocomplete}
3886
- style=${this.autosize ? se({ width: `calc(${this.inputWidth}px + 2ch)` }) : void 0}
4620
+ style=${this.autosize ? o9({ width: `calc(${this.inputWidth}px + 2ch)` }) : void 0}
3887
4621
  >
3888
4622
  `;
3889
- return ke`
4623
+ return x`
3890
4624
  <slot name="label" part="label" @click=${this.focus}>
3891
4625
  <label>${this.label}</label>
3892
4626
  </slot>
3893
4627
  <div part="base" id="anchor" tabindex=${0}>
3894
4628
  <slot name="prefix"></slot>
3895
- ${this.multiple ? ke`
4629
+ ${this.multiple ? x`
3896
4630
  <span id="values">
3897
4631
  <slot name="values"></slot>
3898
- ${this.valueList.slice(0, -1).map((v3) => ke`
4632
+ ${this.valueList.slice(0, -1).map((v3) => x`
3899
4633
  <sl-tag size="small" variant="primary">${v3}</sl-tag>
3900
4634
  `)}
3901
4635
  ${input}
@@ -3908,14 +4642,14 @@ var Combobox = class extends (_a2 = h3, _value_dec = [n5({ attribute: false })],
3908
4642
  part="trigger"
3909
4643
  id="toggle"
3910
4644
  src=${chevron_down_default}
3911
- @focus=${(e7) => e7.stopPropagation()}
3912
- @click=${(e7) => {
4645
+ @focus=${(e10) => e10.stopPropagation()}
4646
+ @click=${(e10) => {
3913
4647
  this.open = !this.open;
3914
- e7.stopPropagation();
4648
+ e10.stopPropagation();
3915
4649
  }}
3916
- @mousedown=${(e7) => {
3917
- e7.stopPropagation();
3918
- e7.preventDefault();
4650
+ @mousedown=${(e10) => {
4651
+ e10.stopPropagation();
4652
+ e10.preventDefault();
3919
4653
  }}
3920
4654
  ></sl-icon-button>
3921
4655
  </div>
@@ -3982,7 +4716,7 @@ __decorateElement(_init2, 4, "label", _label_dec, Combobox, _label);
3982
4716
  __decorateElement(_init2, 4, "hideEl", _hideEl_dec, Combobox, _hideEl);
3983
4717
  __decorateElement(_init2, 4, "inputEl", _inputEl_dec, Combobox, _inputEl);
3984
4718
  Combobox = __decorateElement(_init2, 0, "Combobox", _Combobox_decorators, Combobox);
3985
- __publicField(Combobox, "shadowRootOptions", { ...h3.shadowRootOptions, delegatesFocus: true });
4719
+ __publicField(Combobox, "shadowRootOptions", { ...r4.shadowRootOptions, delegatesFocus: true });
3986
4720
  __publicField(Combobox, "styles", [SlInput.styles, i`
3987
4721
  * {
3988
4722
  font-family: var(--sl-font-sans);
@@ -4170,48 +4904,309 @@ __publicField(Combobox, "styles", [SlInput.styles, i`
4170
4904
  `]);
4171
4905
  __runInitializers(_init2, 1, Combobox);
4172
4906
 
4907
+ // localization/generated/locale-codes.js
4908
+ var sourceLocale = `en`;
4909
+ var targetLocales = [
4910
+ `bg`,
4911
+ `cs`,
4912
+ `da`,
4913
+ `de`,
4914
+ `el`,
4915
+ `es`,
4916
+ `et`,
4917
+ `fi`,
4918
+ `fr`,
4919
+ `hu`,
4920
+ `id`,
4921
+ `it`,
4922
+ `ja`,
4923
+ `ko`,
4924
+ `lt`,
4925
+ `lv`,
4926
+ `nb`,
4927
+ `nl`,
4928
+ `pl`,
4929
+ `pt-BR`,
4930
+ `pt-PT`,
4931
+ `ro`,
4932
+ `ru`,
4933
+ `sk`,
4934
+ `sl`,
4935
+ `sv`,
4936
+ `tr`,
4937
+ `uk`,
4938
+ `zh-hans`
4939
+ ];
4940
+
4941
+ // node_modules/@lit/localize/internal/locale-status-event.js
4942
+ var LOCALE_STATUS_EVENT = "lit-localize-status";
4943
+
4944
+ // node_modules/@lit/localize/internal/str-tag.js
4945
+ var isStrTagged = (val) => typeof val !== "string" && "strTag" in val;
4946
+ var joinStringsAndValues = (strings, values, valueOrder) => {
4947
+ let concat = strings[0];
4948
+ for (let i8 = 1; i8 < strings.length; i8++) {
4949
+ concat += values[valueOrder ? valueOrder[i8 - 1] : i8 - 1];
4950
+ concat += strings[i8];
4951
+ }
4952
+ return concat;
4953
+ };
4954
+
4955
+ // node_modules/@lit/localize/internal/default-msg.js
4956
+ var defaultMsg = (template) => isStrTagged(template) ? joinStringsAndValues(template.strings, template.values) : template;
4957
+
4958
+ // node_modules/@lit/localize/init/install.js
4959
+ var msg = defaultMsg;
4960
+ var installed = false;
4961
+ function _installMsgImplementation(impl) {
4962
+ if (installed) {
4963
+ throw new Error("lit-localize can only be configured once");
4964
+ }
4965
+ msg = impl;
4966
+ installed = true;
4967
+ }
4968
+
4969
+ // node_modules/@lit/localize/internal/deferred.js
4970
+ var Deferred = class {
4971
+ constructor() {
4972
+ this.settled = false;
4973
+ this.promise = new Promise((resolve, reject) => {
4974
+ this._resolve = resolve;
4975
+ this._reject = reject;
4976
+ });
4977
+ }
4978
+ resolve(value) {
4979
+ this.settled = true;
4980
+ this._resolve(value);
4981
+ }
4982
+ reject(error) {
4983
+ this.settled = true;
4984
+ this._reject(error);
4985
+ }
4986
+ };
4987
+
4988
+ // node_modules/@lit/localize/internal/fnv1a64.js
4989
+ var hl = [];
4990
+ for (let i8 = 0; i8 < 256; i8++) {
4991
+ hl[i8] = (i8 >> 4 & 15).toString(16) + (i8 & 15).toString(16);
4992
+ }
4993
+ function fnv1a64(str) {
4994
+ let t0 = 0, v0 = 8997, t1 = 0, v1 = 33826, t22 = 0, v22 = 40164, t32 = 0, v3 = 52210;
4995
+ for (let i8 = 0; i8 < str.length; i8++) {
4996
+ v0 ^= str.charCodeAt(i8);
4997
+ t0 = v0 * 435;
4998
+ t1 = v1 * 435;
4999
+ t22 = v22 * 435;
5000
+ t32 = v3 * 435;
5001
+ t22 += v0 << 8;
5002
+ t32 += v1 << 8;
5003
+ t1 += t0 >>> 16;
5004
+ v0 = t0 & 65535;
5005
+ t22 += t1 >>> 16;
5006
+ v1 = t1 & 65535;
5007
+ v3 = t32 + (t22 >>> 16) & 65535;
5008
+ v22 = t22 & 65535;
5009
+ }
5010
+ 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];
5011
+ }
5012
+
5013
+ // node_modules/@lit/localize/internal/id-generation.js
5014
+ var HASH_DELIMITER = "";
5015
+ var HTML_PREFIX = "h";
5016
+ var STRING_PREFIX = "s";
5017
+ function generateMsgId(strings, isHtmlTagged) {
5018
+ return (isHtmlTagged ? HTML_PREFIX : STRING_PREFIX) + fnv1a64(typeof strings === "string" ? strings : strings.join(HASH_DELIMITER));
5019
+ }
5020
+
5021
+ // node_modules/@lit/localize/internal/runtime-msg.js
5022
+ var expressionOrders = /* @__PURE__ */ new WeakMap();
5023
+ var hashCache = /* @__PURE__ */ new Map();
5024
+ function runtimeMsg(templates31, template, options) {
5025
+ if (templates31) {
5026
+ const id = options?.id ?? generateId(template);
5027
+ const localized = templates31[id];
5028
+ if (localized) {
5029
+ if (typeof localized === "string") {
5030
+ return localized;
5031
+ } else if ("strTag" in localized) {
5032
+ return joinStringsAndValues(
5033
+ localized.strings,
5034
+ // Cast `template` because its type wasn't automatically narrowed (but
5035
+ // we know it must be the same type as `localized`).
5036
+ template.values,
5037
+ localized.values
5038
+ );
5039
+ } else {
5040
+ let order = expressionOrders.get(localized);
5041
+ if (order === void 0) {
5042
+ order = localized.values;
5043
+ expressionOrders.set(localized, order);
5044
+ }
5045
+ return {
5046
+ ...localized,
5047
+ values: order.map((i8) => template.values[i8])
5048
+ };
5049
+ }
5050
+ }
5051
+ }
5052
+ return defaultMsg(template);
5053
+ }
5054
+ function generateId(template) {
5055
+ const strings = typeof template === "string" ? template : template.strings;
5056
+ let id = hashCache.get(strings);
5057
+ if (id === void 0) {
5058
+ id = generateMsgId(strings, typeof template !== "string" && !("strTag" in template));
5059
+ hashCache.set(strings, id);
5060
+ }
5061
+ return id;
5062
+ }
5063
+
5064
+ // node_modules/@lit/localize/init/runtime.js
5065
+ function dispatchStatusEvent(detail) {
5066
+ window.dispatchEvent(new CustomEvent(LOCALE_STATUS_EVENT, { detail }));
5067
+ }
5068
+ var activeLocale = "";
5069
+ var loadingLocale;
5070
+ var sourceLocale2;
5071
+ var validLocales;
5072
+ var loadLocale;
5073
+ var templates;
5074
+ var loading = new Deferred();
5075
+ loading.resolve();
5076
+ var requestId = 0;
5077
+ var configureLocalization = (config) => {
5078
+ _installMsgImplementation((template, options) => runtimeMsg(templates, template, options));
5079
+ activeLocale = sourceLocale2 = config.sourceLocale;
5080
+ validLocales = new Set(config.targetLocales);
5081
+ validLocales.add(config.sourceLocale);
5082
+ loadLocale = config.loadLocale;
5083
+ return { getLocale, setLocale };
5084
+ };
5085
+ var getLocale = () => {
5086
+ return activeLocale;
5087
+ };
5088
+ var setLocale = (newLocale) => {
5089
+ if (newLocale === (loadingLocale ?? activeLocale)) {
5090
+ return loading.promise;
5091
+ }
5092
+ if (!validLocales || !loadLocale) {
5093
+ throw new Error("Internal error");
5094
+ }
5095
+ if (!validLocales.has(newLocale)) {
5096
+ throw new Error("Invalid locale code");
5097
+ }
5098
+ requestId++;
5099
+ const thisRequestId = requestId;
5100
+ loadingLocale = newLocale;
5101
+ if (loading.settled) {
5102
+ loading = new Deferred();
5103
+ }
5104
+ dispatchStatusEvent({ status: "loading", loadingLocale: newLocale });
5105
+ const localePromise = newLocale === sourceLocale2 ? (
5106
+ // We could switch to the source locale synchronously, but we prefer to
5107
+ // queue it on a microtask so that switching locales is consistently
5108
+ // asynchronous.
5109
+ Promise.resolve({ templates: void 0 })
5110
+ ) : loadLocale(newLocale);
5111
+ localePromise.then((mod) => {
5112
+ if (requestId === thisRequestId) {
5113
+ activeLocale = newLocale;
5114
+ loadingLocale = void 0;
5115
+ templates = mod.templates;
5116
+ dispatchStatusEvent({ status: "ready", readyLocale: newLocale });
5117
+ loading.resolve();
5118
+ }
5119
+ }, (err) => {
5120
+ if (requestId === thisRequestId) {
5121
+ dispatchStatusEvent({
5122
+ status: "error",
5123
+ errorLocale: newLocale,
5124
+ errorMessage: err.toString()
5125
+ });
5126
+ loading.reject(err);
5127
+ }
5128
+ });
5129
+ return loading.promise;
5130
+ };
5131
+
5132
+ // import("./**/*.ts") in localization/generated/index.js
5133
+ var globImport_ts = __glob({
5134
+ "./bg.ts": () => Promise.resolve().then(() => (init_bg(), bg_exports)),
5135
+ "./cs.ts": () => Promise.resolve().then(() => (init_cs(), cs_exports)),
5136
+ "./da.ts": () => Promise.resolve().then(() => (init_da(), da_exports)),
5137
+ "./de.ts": () => Promise.resolve().then(() => (init_de(), de_exports)),
5138
+ "./el.ts": () => Promise.resolve().then(() => (init_el(), el_exports)),
5139
+ "./es.ts": () => Promise.resolve().then(() => (init_es(), es_exports)),
5140
+ "./et.ts": () => Promise.resolve().then(() => (init_et(), et_exports)),
5141
+ "./fi.ts": () => Promise.resolve().then(() => (init_fi(), fi_exports)),
5142
+ "./fr.ts": () => Promise.resolve().then(() => (init_fr(), fr_exports)),
5143
+ "./hu.ts": () => Promise.resolve().then(() => (init_hu(), hu_exports)),
5144
+ "./id.ts": () => Promise.resolve().then(() => (init_id(), id_exports)),
5145
+ "./it.ts": () => Promise.resolve().then(() => (init_it(), it_exports)),
5146
+ "./ja.ts": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
5147
+ "./ko.ts": () => Promise.resolve().then(() => (init_ko(), ko_exports)),
5148
+ "./lt.ts": () => Promise.resolve().then(() => (init_lt(), lt_exports)),
5149
+ "./lv.ts": () => Promise.resolve().then(() => (init_lv(), lv_exports)),
5150
+ "./nb.ts": () => Promise.resolve().then(() => (init_nb(), nb_exports)),
5151
+ "./nl.ts": () => Promise.resolve().then(() => (init_nl(), nl_exports)),
5152
+ "./pl.ts": () => Promise.resolve().then(() => (init_pl(), pl_exports)),
5153
+ "./pt-BR.ts": () => Promise.resolve().then(() => (init_pt_BR(), pt_BR_exports)),
5154
+ "./pt-PT.ts": () => Promise.resolve().then(() => (init_pt_PT(), pt_PT_exports)),
5155
+ "./ro.ts": () => Promise.resolve().then(() => (init_ro(), ro_exports)),
5156
+ "./ru.ts": () => Promise.resolve().then(() => (init_ru(), ru_exports)),
5157
+ "./sk.ts": () => Promise.resolve().then(() => (init_sk(), sk_exports)),
5158
+ "./sl.ts": () => Promise.resolve().then(() => (init_sl(), sl_exports)),
5159
+ "./sv.ts": () => Promise.resolve().then(() => (init_sv(), sv_exports)),
5160
+ "./tr.ts": () => Promise.resolve().then(() => (init_tr(), tr_exports)),
5161
+ "./uk.ts": () => Promise.resolve().then(() => (init_uk(), uk_exports)),
5162
+ "./zh-hans.ts": () => Promise.resolve().then(() => (init_zh_hans(), zh_hans_exports))
5163
+ });
5164
+
5165
+ // localization/generated/index.js
5166
+ var generated_default = configureLocalization({ sourceLocale, targetLocales, loadLocale: (locale) => globImport_ts(`./${locale}.ts`) });
5167
+
4173
5168
  // src/widgets/webwriter-cloze-gap.ts
4174
5169
  var _isAdding_dec, _input_dec2, _showOptions_dec, _distraction_dec, _value_dec2, _solution_dec, _a3, _WebwriterClozeGap_decorators, _init3, _solution, _value2, _distraction, _showOptions, _input2, _isAdding;
4175
- _WebwriterClozeGap_decorators = [t3("webwriter-cloze-gap")];
4176
- var _WebwriterClozeGap = class _WebwriterClozeGap extends (_a3 = LitElementWw, _solution_dec = [n5({ type: Array, attribute: true, reflect: true })], _value_dec2 = [n5({ type: String, attribute: true, reflect: true })], _distraction_dec = [n5({ type: Array, attribute: true, reflect: true })], _showOptions_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _input_dec2 = [e5("ww-combobox")], _isAdding_dec = [n5({ type: Boolean, attribute: false })], _a3) {
5170
+ _WebwriterClozeGap_decorators = [t4("webwriter-cloze-gap")];
5171
+ var WebwriterClozeGap = class extends (_a3 = LitElementWw, _solution_dec = [n5({ type: Array, attribute: true, reflect: true })], _value_dec2 = [n5({ type: String, attribute: true, reflect: true })], _distraction_dec = [n5({ type: Array, attribute: true, reflect: true })], _showOptions_dec = [n5({ type: Boolean, attribute: true, reflect: true })], _input_dec2 = [e6("ww-combobox")], _isAdding_dec = [n5({ type: Boolean, attribute: false })], _a3) {
4177
5172
  constructor() {
4178
5173
  super(...arguments);
5174
+ __publicField(this, "localize", generated_default);
4179
5175
  __privateAdd(this, _solution, __runInitializers(_init3, 8, this)), __runInitializers(_init3, 11, this);
4180
5176
  __privateAdd(this, _value2, __runInitializers(_init3, 12, this)), __runInitializers(_init3, 15, this);
4181
5177
  __privateAdd(this, _distraction, __runInitializers(_init3, 16, this, [])), __runInitializers(_init3, 19, this);
4182
5178
  __privateAdd(this, _showOptions, __runInitializers(_init3, 20, this, false)), __runInitializers(_init3, 23, this);
4183
- __publicField(this, "msg", (str) => this.lang in _WebwriterClozeGap.localization ? _WebwriterClozeGap.localization[this.lang][str] ?? str : str);
4184
5179
  __privateAdd(this, _input2, __runInitializers(_init3, 24, this)), __runInitializers(_init3, 27, this);
4185
- __publicField(this, "handleChange", (e7) => {
4186
- e7.preventDefault();
5180
+ __publicField(this, "handleChange", (e10) => {
5181
+ e10.preventDefault();
4187
5182
  if (!this.isContentEditable) {
4188
5183
  this.value = this.input.value;
4189
5184
  }
4190
5185
  });
4191
- __publicField(this, "handleAddClick", (e7) => {
4192
- e7.stopImmediatePropagation();
4193
- e7.preventDefault();
5186
+ __publicField(this, "handleAddClick", (e10) => {
5187
+ e10.stopImmediatePropagation();
5188
+ e10.preventDefault();
4194
5189
  this.addSolution(this.input.value);
4195
5190
  this.isAdding = true;
4196
5191
  this.input.value = "";
4197
5192
  this.input.open = true;
4198
5193
  });
4199
- __publicField(this, "handleToggleClick", (e7, value) => {
4200
- e7.stopImmediatePropagation();
4201
- e7.preventDefault();
5194
+ __publicField(this, "handleToggleClick", (e10, value) => {
5195
+ e10.stopImmediatePropagation();
5196
+ e10.preventDefault();
4202
5197
  this.toggleOptionType(value);
4203
5198
  });
4204
- __publicField(this, "handleRemoveClick", (e7, value) => {
4205
- e7.stopImmediatePropagation();
4206
- e7.preventDefault();
5199
+ __publicField(this, "handleRemoveClick", (e10, value) => {
5200
+ e10.stopImmediatePropagation();
5201
+ e10.preventDefault();
4207
5202
  this.removeOption(value);
4208
5203
  });
4209
- __publicField(this, "handleKeydown", (e7) => {
4210
- if (e7.key === "Enter") {
4211
- this.handleAddClick(e7);
5204
+ __publicField(this, "handleKeydown", (e10) => {
5205
+ if (e10.key === "Enter") {
5206
+ this.handleAddClick(e10);
4212
5207
  }
4213
5208
  });
4214
- __publicField(this, "handleBlur", (e7) => {
5209
+ __publicField(this, "handleBlur", (e10) => {
4215
5210
  this.isAdding = false;
4216
5211
  if (this.solution.length === 1) {
4217
5212
  this.input.value = this.solution[0];
@@ -4245,21 +5240,21 @@ var _WebwriterClozeGap = class _WebwriterClozeGap extends (_a3 = LitElementWw, _
4245
5240
  return [...this.solution ?? [], ...this.distraction];
4246
5241
  }
4247
5242
  render() {
4248
- return ke`<ww-combobox @blur=${this.handleBlur} ?suggestions=${this.allOptions.length > 1 || this.isAdding || this.distraction.length > 0} size="small" autosize .value=${this.value} @sl-change=${this.handleChange} @sl-input=${() => this.requestUpdate()} @keydown=${this.handleKeydown} >
4249
- <sl-icon-button id="add" title="Add another solution" ?disabled=${this.allOptions.includes(this.input?.value)} ?data-hidden=${!this.input?.value} src=${plus_default} size="small" slot="prefix" @click=${this.handleAddClick} @mousedown=${(e7) => {
4250
- e7.stopPropagation();
4251
- e7.preventDefault();
4252
- }} @focus=${(e7) => e7.stopPropagation()} ></sl-icon-button>
4253
- ${this.allOptions.sort().map((value) => ke`
5243
+ return x`<ww-combobox @blur=${this.handleBlur} ?suggestions=${this.allOptions.length > 1 || this.isAdding || this.distraction.length > 0} size="small" autosize .value=${this.value} @sl-change=${this.handleChange} @sl-input=${() => this.requestUpdate()} @keydown=${this.handleKeydown} >
5244
+ <sl-icon-button id="add" title="Add another solution" ?disabled=${this.allOptions.includes(this.input?.value)} ?data-hidden=${!this.input?.value} src=${plus_default} size="small" slot="prefix" @click=${this.handleAddClick} @mousedown=${(e10) => {
5245
+ e10.stopPropagation();
5246
+ e10.preventDefault();
5247
+ }} @focus=${(e10) => e10.stopPropagation()} ></sl-icon-button>
5248
+ ${this.allOptions.sort().map((value) => x`
4254
5249
  <sl-option size="small" value=${value} class=${this.solution.includes(value) ? "solution" : "distraction"} >
4255
- <sl-icon-button title=${this.solution.includes(value) ? "Change to a distraction" : "Change to a solution"} class="toggle" slot="prefix" src=${this.solution.includes(value) ? check_circle_default : slash_circle_default} @click=${(e7) => this.handleToggleClick(e7, value)} @mousedown=${(e7) => {
4256
- e7.stopPropagation();
4257
- e7.preventDefault();
5250
+ <sl-icon-button title=${this.solution.includes(value) ? "Change to a distraction" : "Change to a solution"} class="toggle" slot="prefix" src=${this.solution.includes(value) ? check_circle_default : slash_circle_default} @click=${(e10) => this.handleToggleClick(e10, value)} @mousedown=${(e10) => {
5251
+ e10.stopPropagation();
5252
+ e10.preventDefault();
4258
5253
  }}></sl-icon-button>
4259
5254
  <span title=${this.solution.includes(value) ? "Solution" : "Distraction"}>${value}</span>
4260
- <sl-icon-button title="Remove" class="remove" slot="suffix" src=${x_default} @click=${(e7) => this.handleRemoveClick(e7, value)} @mousedown=${(e7) => {
4261
- e7.stopPropagation();
4262
- e7.preventDefault();
5255
+ <sl-icon-button title="Remove" class="remove" slot="suffix" src=${x_default} @click=${(e10) => this.handleRemoveClick(e10, value)} @mousedown=${(e10) => {
5256
+ e10.stopPropagation();
5257
+ e10.preventDefault();
4263
5258
  }}></sl-icon-button>
4264
5259
  </sl-option>
4265
5260
  `)}
@@ -4273,20 +5268,19 @@ _distraction = new WeakMap();
4273
5268
  _showOptions = new WeakMap();
4274
5269
  _input2 = new WeakMap();
4275
5270
  _isAdding = new WeakMap();
4276
- __decorateElement(_init3, 4, "solution", _solution_dec, _WebwriterClozeGap, _solution);
4277
- __decorateElement(_init3, 4, "value", _value_dec2, _WebwriterClozeGap, _value2);
4278
- __decorateElement(_init3, 4, "distraction", _distraction_dec, _WebwriterClozeGap, _distraction);
4279
- __decorateElement(_init3, 4, "showOptions", _showOptions_dec, _WebwriterClozeGap, _showOptions);
4280
- __decorateElement(_init3, 4, "input", _input_dec2, _WebwriterClozeGap, _input2);
4281
- __decorateElement(_init3, 4, "isAdding", _isAdding_dec, _WebwriterClozeGap, _isAdding);
4282
- _WebwriterClozeGap = __decorateElement(_init3, 0, "WebwriterClozeGap", _WebwriterClozeGap_decorators, _WebwriterClozeGap);
4283
- __publicField(_WebwriterClozeGap, "localization", {});
4284
- __publicField(_WebwriterClozeGap, "scopedElements", {
5271
+ __decorateElement(_init3, 4, "solution", _solution_dec, WebwriterClozeGap, _solution);
5272
+ __decorateElement(_init3, 4, "value", _value_dec2, WebwriterClozeGap, _value2);
5273
+ __decorateElement(_init3, 4, "distraction", _distraction_dec, WebwriterClozeGap, _distraction);
5274
+ __decorateElement(_init3, 4, "showOptions", _showOptions_dec, WebwriterClozeGap, _showOptions);
5275
+ __decorateElement(_init3, 4, "input", _input_dec2, WebwriterClozeGap, _input2);
5276
+ __decorateElement(_init3, 4, "isAdding", _isAdding_dec, WebwriterClozeGap, _isAdding);
5277
+ WebwriterClozeGap = __decorateElement(_init3, 0, "WebwriterClozeGap", _WebwriterClozeGap_decorators, WebwriterClozeGap);
5278
+ __publicField(WebwriterClozeGap, "scopedElements", {
4285
5279
  "ww-combobox": Combobox,
4286
5280
  "sl-icon-button": SlIconButton,
4287
5281
  "sl-option": SlOption
4288
5282
  });
4289
- __publicField(_WebwriterClozeGap, "styles", i`
5283
+ __publicField(WebwriterClozeGap, "styles", i`
4290
5284
  :host {
4291
5285
  display: inline-block !important;
4292
5286
  vertical-align: top;
@@ -4365,8 +5359,7 @@ __publicField(_WebwriterClozeGap, "styles", i`
4365
5359
 
4366
5360
 
4367
5361
  `);
4368
- __runInitializers(_init3, 1, _WebwriterClozeGap);
4369
- var WebwriterClozeGap = _WebwriterClozeGap;
5362
+ __runInitializers(_init3, 1, WebwriterClozeGap);
4370
5363
  export {
4371
5364
  WebwriterClozeGap
4372
5365
  };
@@ -4407,6 +5400,115 @@ lit-html/is-server.js:
4407
5400
  * SPDX-License-Identifier: BSD-3-Clause
4408
5401
  *)
4409
5402
 
5403
+ @webwriter/lit/index.js:
5404
+ (*! Bundled license information:
5405
+
5406
+ @lit/reactive-element/css-tag.js:
5407
+ (**
5408
+ * @license
5409
+ * Copyright 2019 Google LLC
5410
+ * SPDX-License-Identifier: BSD-3-Clause
5411
+ *)
5412
+
5413
+ @lit/reactive-element/reactive-element.js:
5414
+ (**
5415
+ * @license
5416
+ * Copyright 2017 Google LLC
5417
+ * SPDX-License-Identifier: BSD-3-Clause
5418
+ *)
5419
+
5420
+ lit-html/lit-html.js:
5421
+ (**
5422
+ * @license
5423
+ * Copyright 2017 Google LLC
5424
+ * SPDX-License-Identifier: BSD-3-Clause
5425
+ *)
5426
+
5427
+ lit-element/lit-element.js:
5428
+ (**
5429
+ * @license
5430
+ * Copyright 2017 Google LLC
5431
+ * SPDX-License-Identifier: BSD-3-Clause
5432
+ *)
5433
+
5434
+ lit-html/is-server.js:
5435
+ (**
5436
+ * @license
5437
+ * Copyright 2022 Google LLC
5438
+ * SPDX-License-Identifier: BSD-3-Clause
5439
+ *)
5440
+
5441
+ @lit/reactive-element/decorators/custom-element.js:
5442
+ (**
5443
+ * @license
5444
+ * Copyright 2017 Google LLC
5445
+ * SPDX-License-Identifier: BSD-3-Clause
5446
+ *)
5447
+
5448
+ @lit/reactive-element/decorators/property.js:
5449
+ (**
5450
+ * @license
5451
+ * Copyright 2017 Google LLC
5452
+ * SPDX-License-Identifier: BSD-3-Clause
5453
+ *)
5454
+
5455
+ @lit/reactive-element/decorators/state.js:
5456
+ (**
5457
+ * @license
5458
+ * Copyright 2017 Google LLC
5459
+ * SPDX-License-Identifier: BSD-3-Clause
5460
+ *)
5461
+
5462
+ @lit/reactive-element/decorators/event-options.js:
5463
+ (**
5464
+ * @license
5465
+ * Copyright 2017 Google LLC
5466
+ * SPDX-License-Identifier: BSD-3-Clause
5467
+ *)
5468
+
5469
+ @lit/reactive-element/decorators/base.js:
5470
+ (**
5471
+ * @license
5472
+ * Copyright 2017 Google LLC
5473
+ * SPDX-License-Identifier: BSD-3-Clause
5474
+ *)
5475
+
5476
+ @lit/reactive-element/decorators/query.js:
5477
+ (**
5478
+ * @license
5479
+ * Copyright 2017 Google LLC
5480
+ * SPDX-License-Identifier: BSD-3-Clause
5481
+ *)
5482
+
5483
+ @lit/reactive-element/decorators/query-all.js:
5484
+ (**
5485
+ * @license
5486
+ * Copyright 2017 Google LLC
5487
+ * SPDX-License-Identifier: BSD-3-Clause
5488
+ *)
5489
+
5490
+ @lit/reactive-element/decorators/query-async.js:
5491
+ (**
5492
+ * @license
5493
+ * Copyright 2017 Google LLC
5494
+ * SPDX-License-Identifier: BSD-3-Clause
5495
+ *)
5496
+
5497
+ @lit/reactive-element/decorators/query-assigned-elements.js:
5498
+ (**
5499
+ * @license
5500
+ * Copyright 2021 Google LLC
5501
+ * SPDX-License-Identifier: BSD-3-Clause
5502
+ *)
5503
+
5504
+ @lit/reactive-element/decorators/query-assigned-nodes.js:
5505
+ (**
5506
+ * @license
5507
+ * Copyright 2017 Google LLC
5508
+ * SPDX-License-Identifier: BSD-3-Clause
5509
+ *)
5510
+ *)
5511
+
4410
5512
  @lit/reactive-element/decorators/custom-element.js:
4411
5513
  (**
4412
5514
  * @license
@@ -4476,160 +5578,144 @@ lit-html/is-server.js:
4476
5578
  * Copyright 2017 Google LLC
4477
5579
  * SPDX-License-Identifier: BSD-3-Clause
4478
5580
  *)
4479
- */
4480
- /*! Bundled license information:
4481
-
4482
- @lit/reactive-element/css-tag.js:
4483
- (**
4484
- * @license
4485
- * Copyright 2019 Google LLC
4486
- * SPDX-License-Identifier: BSD-3-Clause
4487
- *)
4488
-
4489
- @lit/reactive-element/reactive-element.js:
4490
- (**
4491
- * @license
4492
- * Copyright 2017 Google LLC
4493
- * SPDX-License-Identifier: BSD-3-Clause
4494
- *)
4495
5581
 
4496
- lit-html/lit-html.js:
5582
+ lit-html/directive-helpers.js:
4497
5583
  (**
4498
5584
  * @license
4499
- * Copyright 2017 Google LLC
5585
+ * Copyright 2020 Google LLC
4500
5586
  * SPDX-License-Identifier: BSD-3-Clause
4501
5587
  *)
4502
5588
 
4503
- lit-element/lit-element.js:
5589
+ lit-html/directive.js:
4504
5590
  (**
4505
5591
  * @license
4506
5592
  * Copyright 2017 Google LLC
4507
5593
  * SPDX-License-Identifier: BSD-3-Clause
4508
5594
  *)
4509
5595
 
4510
- lit-html/is-server.js:
5596
+ lit-html/directives/class-map.js:
4511
5597
  (**
4512
5598
  * @license
4513
- * Copyright 2022 Google LLC
5599
+ * Copyright 2018 Google LLC
4514
5600
  * SPDX-License-Identifier: BSD-3-Clause
4515
5601
  *)
4516
5602
 
4517
- @lit/reactive-element/decorators/custom-element.js:
5603
+ lit-html/static.js:
4518
5604
  (**
4519
5605
  * @license
4520
- * Copyright 2017 Google LLC
5606
+ * Copyright 2020 Google LLC
4521
5607
  * SPDX-License-Identifier: BSD-3-Clause
4522
5608
  *)
4523
5609
 
4524
- @lit/reactive-element/decorators/property.js:
5610
+ lit-html/directives/if-defined.js:
4525
5611
  (**
4526
5612
  * @license
4527
- * Copyright 2017 Google LLC
5613
+ * Copyright 2018 Google LLC
4528
5614
  * SPDX-License-Identifier: BSD-3-Clause
4529
5615
  *)
4530
5616
 
4531
- @lit/reactive-element/decorators/state.js:
5617
+ lit-html/directives/live.js:
4532
5618
  (**
4533
5619
  * @license
4534
- * Copyright 2017 Google LLC
5620
+ * Copyright 2020 Google LLC
4535
5621
  * SPDX-License-Identifier: BSD-3-Clause
4536
5622
  *)
4537
5623
 
4538
- @lit/reactive-element/decorators/event-options.js:
5624
+ lit-html/directives/style-map.js:
4539
5625
  (**
4540
5626
  * @license
4541
- * Copyright 2017 Google LLC
5627
+ * Copyright 2018 Google LLC
4542
5628
  * SPDX-License-Identifier: BSD-3-Clause
4543
5629
  *)
4544
5630
 
4545
- @lit/reactive-element/decorators/base.js:
5631
+ @lit/localize/internal/locale-status-event.js:
4546
5632
  (**
4547
5633
  * @license
4548
- * Copyright 2017 Google LLC
5634
+ * Copyright 2021 Google LLC
4549
5635
  * SPDX-License-Identifier: BSD-3-Clause
4550
5636
  *)
4551
5637
 
4552
- @lit/reactive-element/decorators/query.js:
5638
+ @lit/localize/internal/str-tag.js:
4553
5639
  (**
4554
5640
  * @license
4555
- * Copyright 2017 Google LLC
5641
+ * Copyright 2021 Google LLC
4556
5642
  * SPDX-License-Identifier: BSD-3-Clause
4557
5643
  *)
4558
5644
 
4559
- @lit/reactive-element/decorators/query-all.js:
5645
+ @lit/localize/internal/types.js:
4560
5646
  (**
4561
5647
  * @license
4562
- * Copyright 2017 Google LLC
5648
+ * Copyright 2021 Google LLC
4563
5649
  * SPDX-License-Identifier: BSD-3-Clause
4564
5650
  *)
4565
5651
 
4566
- @lit/reactive-element/decorators/query-async.js:
5652
+ @lit/localize/internal/default-msg.js:
4567
5653
  (**
4568
5654
  * @license
4569
- * Copyright 2017 Google LLC
5655
+ * Copyright 2021 Google LLC
4570
5656
  * SPDX-License-Identifier: BSD-3-Clause
4571
5657
  *)
4572
5658
 
4573
- @lit/reactive-element/decorators/query-assigned-elements.js:
5659
+ @lit/localize/internal/localized-controller.js:
4574
5660
  (**
4575
5661
  * @license
4576
5662
  * Copyright 2021 Google LLC
4577
5663
  * SPDX-License-Identifier: BSD-3-Clause
4578
5664
  *)
4579
5665
 
4580
- @lit/reactive-element/decorators/query-assigned-nodes.js:
5666
+ @lit/localize/internal/localized-decorator.js:
4581
5667
  (**
4582
5668
  * @license
4583
- * Copyright 2017 Google LLC
5669
+ * Copyright 2021 Google LLC
4584
5670
  * SPDX-License-Identifier: BSD-3-Clause
4585
5671
  *)
4586
5672
 
4587
- lit-html/directive-helpers.js:
5673
+ @lit/localize/internal/deferred.js:
4588
5674
  (**
4589
5675
  * @license
4590
5676
  * Copyright 2020 Google LLC
4591
5677
  * SPDX-License-Identifier: BSD-3-Clause
4592
5678
  *)
4593
5679
 
4594
- lit-html/directive.js:
5680
+ @lit/localize/internal/fnv1a64.js:
4595
5681
  (**
4596
5682
  * @license
4597
- * Copyright 2017 Google LLC
4598
- * SPDX-License-Identifier: BSD-3-Clause
5683
+ * Copyright 2014 Travis Webb
5684
+ * SPDX-License-Identifier: MIT
4599
5685
  *)
4600
5686
 
4601
- lit-html/directives/class-map.js:
5687
+ @lit/localize/internal/id-generation.js:
4602
5688
  (**
4603
5689
  * @license
4604
- * Copyright 2018 Google LLC
5690
+ * Copyright 2020 Google LLC
4605
5691
  * SPDX-License-Identifier: BSD-3-Clause
4606
5692
  *)
4607
5693
 
4608
- lit-html/static.js:
5694
+ @lit/localize/internal/runtime-msg.js:
4609
5695
  (**
4610
5696
  * @license
4611
- * Copyright 2020 Google LLC
5697
+ * Copyright 2021 Google LLC
4612
5698
  * SPDX-License-Identifier: BSD-3-Clause
4613
5699
  *)
4614
5700
 
4615
- lit-html/directives/if-defined.js:
5701
+ @lit/localize/init/runtime.js:
4616
5702
  (**
4617
5703
  * @license
4618
- * Copyright 2018 Google LLC
5704
+ * Copyright 2021 Google LLC
4619
5705
  * SPDX-License-Identifier: BSD-3-Clause
4620
5706
  *)
4621
5707
 
4622
- lit-html/directives/live.js:
5708
+ @lit/localize/init/transform.js:
4623
5709
  (**
4624
5710
  * @license
4625
- * Copyright 2020 Google LLC
5711
+ * Copyright 2021 Google LLC
4626
5712
  * SPDX-License-Identifier: BSD-3-Clause
4627
5713
  *)
4628
5714
 
4629
- lit-html/directives/style-map.js:
5715
+ @lit/localize/lit-localize.js:
4630
5716
  (**
4631
5717
  * @license
4632
- * Copyright 2018 Google LLC
5718
+ * Copyright 2020 Google LLC
4633
5719
  * SPDX-License-Identifier: BSD-3-Clause
4634
5720
  *)
4635
5721
  */