@webwriter/quiz 1.1.3 → 2.0.0

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