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